chiark / gitweb /
I'm sure I've done something since I remembered to commit...
authornaath <naath@chiark.greenend.org.uk>
Fri, 23 Sep 2016 16:27:15 +0000 (17:27 +0100)
committernaath <naath@chiark.greenend.org.uk>
Fri, 23 Sep 2016 16:27:15 +0000 (17:27 +0100)
32 files changed:
cgiFiles/ancestorGraph.py
cgiFiles/ancestors.py
cgiFiles/bigGraph.py
cgiFiles/countNames.py
cgiFiles/everyPage.py
cgiFiles/jointAncestorGraph.py
cgiFiles/listAge.py
cgiFiles/listAgeDeath.py
cgiFiles/listChildCount.py
cgiFiles/listPeople.py
cgiFiles/listTerr.py
cgiFiles/make_dot.py
cgiFiles/name.py
cgiFiles/person.py
cgiFiles/searchname.py
cgiFiles/smallGraph.py
cgiFiles/territory.py
cgiFiles/test.py
familyTree/askQuestion.py
familyTree/findYear.py
familyTree/makeDataBase
familyTree/makeMarriageTable.py
familyTree/makeTables.py
familyTree/marriageSQL.py
familyTree/notes [changed mode: 0644->0755]
familyTree/printAncestors.py
familyTree/printLists.py
familyTree/printPerson.py
familyTree/spousesRelated.py
familyTree/text2SQL.py
familyTree/tree [changed mode: 0644->0755]
familyTree/tree.db

index 6c633e0e1a42d69199954697dd737dbf2608b744..cbd5f70297fe4fd4d09f53b2c97da3060842917d 100755 (executable)
@@ -1,8 +1,8 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
-cgitb.enable()
+#import cgitb
+#cgitb.enable()
 import sys
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion as aQ
@@ -37,11 +37,9 @@ def make_graph(ID):
         d.add_highlight(Self)
 
        add_parents(ID,Self)
-
+       d.create_dot()
        d.add_subgraphs()
-
         d.end_dot()
-
         d.render_dot()
 
 form = cgi.FieldStorage()
index 8baf436a8805bfd4f30ebd3d52cfa9f4390830eb..2047761777efebb7b3eb4397e069ee862d7389aa 100755 (executable)
@@ -3,7 +3,7 @@
 
 # enable debugging
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -22,9 +22,9 @@ if ID2 == None:
 else:
        type =2
 
-result = re.match('^[0-9]{1,3}$', str(ID))
+result = re.match('^[0-9]{1,4}$', str(ID))
 if type==2:
-       result2 = re.match('^[0-9]{1,3}$', str(ID2))
+       result2 = re.match('^[0-9]{1,4}$', str(ID2))
 else:
        result2 = 1
 
@@ -35,11 +35,11 @@ else:
                printMe = askQuestion.all_ancestors(ID,'<br>')[0]
         
        else:
-               printMe = askQuestion.common_ancestors(ID,ID2,'<br>')[0]
+               printMe = askQuestion.common_ancestors(ID,ID2,'<br>')
        if len(printMe)<10:
                 printMe =  'sorry, no data <br>'
 
         everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
index 9ec77f97b1f1af207ce0ee6a446de4d55a55309c..082c9967255ac5a9efc2e945097a573412e36aef 100755 (executable)
 #!/usr/bin/python
 
-import cgi
-import cgitb
+#import cgi
+##import cgitb
 import sys
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion as aQ
 import make_dot as d
+from pygraph.classes.digraph import digraph
+import pickle
+import englishUtils as eU
+import graphQuestions as gQ
 
 def add_quotes(s):
         s = str(s)
         return '\"'+s+'\"'
 
-cgitb.enable()
+def an(node):
+       node = int(node)
+       if not g.has_node(node):
+               g.add_node(node)
 
-form = cgi.FieldStorage()
+def ae(edge):
+       iEdge=(int(edge[0]),int(edge[1]))
+       if not g.has_edge(iEdge):
+               g.add_edge(iEdge)
+
+global g
+#cgitb.enable()
+
+#form = cgi.FieldStorage()
 conn = aQ.connect()
 
-famTree = aQ.list_people_parents()
 
 d.start_dot(8)
-for i in range(len(famTree)):
-#for i in range(100):
-       self = famTree[i][0]
+g = digraph()
+
+everyone = 0
+kings = []
+kingsp = []
+s = "SELECT id FROM people"
+for row in aQ.run_query(s,()):
+       sID = int(row[0])
+       print sID
+       self,sID,sN = aQ.find_person(sID)
+       parents,pIDs,pNs = aQ.find_parents(sID)
+       spouses,spIDs,spNs,spDs = aQ.find_spouses(sID)
+
+
+       an(sID)
+
+       if everyone==1:
+               spouses,spIDs,spNs,spDs = aQ.find_spouses(sID)
+               d.add_person(self)
+
+               d.add_marriage(parents[0],parents[1],[self],0)
+               d.add_subgraph(parents)
+               for spouse in spouses:
+                       d.add_marriage(self,spouse,[],0)
+                       d.add_subgraph([self,spouse])
 
-       d.add_person(self)
 
-       ps = []
-       for j in range(len(famTree[i][1])):
-               p = famTree[i][1][j]
-               ps.append(str(p))
+       for pID in pIDs:
+               if pID==0:
+                       continue
+               an(pID)
+               ae((sID,pID))
 
-       if len(ps)==2:
-               d.add_marriage(ps[0],ps[1],[self],0)
-               d.add_subgraph(ps)
 
+       if eU.isKing(self):
+               kings.append(sID)
+               for spID in spIDs:
+                       if int(spID)!=0:
+                               kingsp.append(int(spID))
+               
+filename = '../familyTree/graphedData'
+file = open(filename,'w')
+pickle.dump(g,file)
+file.close()
 
-       for j in range(len(famTree[i][2])):
-                s = famTree[i][2][j]
-                ps = (self,s)
+if everyone==0:
+       gQ.read_graph()
 
-                d.add_marriage(self,s,[],0)
-                d.add_subgraph(ps)
 
+       myNodes = gQ.join_up(kings,kings)
+       myNodes+=gQ.join_up(kingsp,kings)
+       print set(myNodes).difference(set(kings))
+
+       #include people ancestors of wives of kings?
+
+       myNodes = set(myNodes)
+       myNodes = list(myNodes)
+       for sID in myNodes:
+               print sID
+               self,sID,sN = aQ.find_person(sID)
+               parents,pIDs,pNs = aQ.find_parents(sID)
+               spouses,spIDs,spNs,spDs = aQ.find_spouses(sID)
+       
+               d.add_person(self)
+#              if pIDs[0]!=0 or pIDs[1]!=0:
+               if int(pIDs[0]) in myNodes or int(pIDs[1]) in myNodes:
+                       d.add_marriage(parents[0],parents[1],[self],0)
+                       d.add_subgraph(parents)
+
+               else:
+                       print pIDs
+
+               for spouse in spouses:
+                       d.add_marriage(self,spouse,[],0)
+                       d.add_subgraph([self,spouse])
+print myNodes  
+print 'create'
+d.create_dot()
+print 'sub'
 d.add_subgraphs()
+print 'end'
 d.end_dot()
-d.render_dot()         
+print 'render'
+file = '/home/naath/public-html/bigGraph.png'
+d.render_to_file(file)         
+
+aQ.close()
+
 
-aQ.close(conn)
index efd99b0dd221ea0ebb27ee1f7f7f3e7f7dc04a0c..5a8e9e5ea81ec2be2b6c6dc1c9301287cc4d280a 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -21,5 +21,5 @@ else:
         everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
 
index 5ae696dbed22dee0c032a65a59ff755af038863b..c938f9fa46be0f313e8e4c017411ebad9984de8f 100755 (executable)
@@ -1,53 +1,76 @@
 #!/usr/bin/python
+# -*- coding:utf-8 -*-
 import cgi  
 import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion
-import everyPage
+from random import randrange
+import codecs
 
 cgitb.enable()
 def base_url():
        return 'http://www.chiark.greenend.org.uk/ucgi/~naath/'
 
+def make_list(script,text):
+       global pageText
+       if text == 'Random person':
+               npeople = askQuestion.number_people()
+               script+='?ID=%d' %(randrange(npeople))
+
+       if script[:4]=='http':
+               pageText+= '<li><a href=%s>%s</a></li>\n' %(script,text)
+       else:
+               pageText+= '<li><a href = %s%s>%s</a></li>\n' %(base_url(),script,text)
+
 def links():
-       print '<hr>'
-       print '<ul>'
-       print '<li><a href='+base_url() + \
-       'searchname.py> Search for people</a></li>'
-       print '<li><a href='+base_url() + \
-       'listPeople.py> List of people</a></li>'
-       print '<li><a href='+base_url() + \
-       'listTerr.py> List of territories</a></li>'
-       print '<li><a href = bigGraph.py> big graph</a></li>'
-       print '</ul>'
-       print '<ul>'
-       print '<li><a href='+base_url() + \
-       'countNames.py> First names</a></li>'
-       print '<li><a href='+base_url()+ \
-       'listAge.py> Age at haing child</a></li>'
-       print '<li><a href='+base_url()+\
-       'listAgeDeath.py> Age at death</a></li>'
-       print '<li><a href ='+base_url()+\
-       'listChildCount.py> Number of children</a></li>'
-       print '</ul>'
-       print '<hr>'
-       
+       global pageText
+       items = []
+       items.append(('searchname.py','Search for people'))
+       items.append(('listPeople.py','List of people'))
+       items.append(('listTerr.py','List of territories'))
+       items.append(('listFam.py','List of families'))
+       items.append(('http://www.chiark.greenend.org.uk/~naath/bigGraph.png',\
+               'Big Graph'))
+       items.append(('countNames.py','First name'))
+       items.append(('listAge.py','Age at having child'))
+       items.append(('listAgeDeath.py','Age at death'))
+       items.append(('listChildCount.py','Number of children'))
+       items.append(('birthday.py','Birthday calendar'))
+       items.append(('person.py','Random person'))
+       items.append(('aliveOn.py','Alive on date'))
+       items.append((\
+       'http://www.chiark.greenend.org.uk/~naath/spouses-related.html'\
+               ,'Spouses Related'))
+       items.append(('source', 'source code'))
+       pageText+= '<hr>\n'
+       for i in range(len(items)):
+               item = items[i]
+               if i%4==0 and i!=len(items):
+                       if i!=0:
+                               pageText+= '</ul>\n'
+                       pageText+= '<ul>\n'
+               make_list(item[0],item[1])
+       pageText+= '</ul>\n'
+       pageText+= '<hr>\n'
 
 
+
+       
 def footer():
-       print '<hr>'
-       print 'This somewhat silly thing made by '
-       print '<a href=http://www.chiark.greenend.org.uk/~naath>naath</a>'
-       print '<br>'
-       print 'Thanks to <a href=http://www.chiark.greenend.org.uk>chiark</a> for hosting this'
-       print '<br>'
-       print 'Information sourced from <a href = en.wikipedia.org> wikipedia</a>'
-       print 'All errors in transcription are mine.'
-       print 'Reports of errors, or ideas of interesting questions to ask'
-       print 'my database by email to naath@chiark.greenend.org.uk'
-       print "(omissions of people are largely because I haven't got to them yet)."
+       global pageText
+       pageText+= '<hr>\n'
+       pageText+= 'This somewhat silly thing made by \n'
+       pageText+= '<a href=http://www.chiark.greenend.org.uk/~naath>naath</a>\n'
+       pageText+= '<br>\n'
+       pageText+= 'Thanks to <a href=http://www.chiark.greenend.org.uk>chiark</a> for hosting this\n'
+       pageText+= '<br>\n'
+       pageText+= 'Information sourced from <a href = en.wikipedia.org> wikipedia</a>\n'
+       pageText+= 'All errors in transcription are mine.\n'
+       pageText+= 'Reports of errors, or ideas of interesting questions to ask\n'
+       pageText+= 'my database by email to naath@chiark.greenend.org.uk\n'
+       pageText+= "(omissions of people are largely because I haven't got to them yet).\n"
 
 
 
@@ -55,12 +78,14 @@ def title(titleNum):
        return 'Silly toy'
 
 def page_header():
-       print 'This is a silly toy for exploring the genealogy of the monarchs of England'
-def top():
+       global pageText
+       pageText+= 'This is a silly toy for exploring the genealogy of the monarchs of England'
 
+def top():
+       global pageText
 
-       print "Content-Type: text/html;charset=utf-8"
-       print
+       pageText= "Content-Type: text/html;charset=utf-8\n"
+       pageText+= "\n "
 
        conn = askQuestion.connect()
 
@@ -68,32 +93,59 @@ def top():
        return [conn,form]
 
 def html_start(titleNum):
-       print "<html>"
-        print "<head>"
-        print "<title>"+ title(titleNum) +"</title>"
-
-       print "<style>"
-       print "ul\n{list-style-type:none;margin:10;padding:0;}"
-       print "li{display:inline;}"
-       print "</style>"
-
-        print "</head>"
-        print "<body>"
+       global pageText
+       pageText+= "<html>\n"
+       pageText+='<meta charset="UTF-8" />\n'
+        pageText+= "<head>\n"
+        pageText+= "<title>"+ title(titleNum) +"</title>\n"
+
+       pageText+= "<style>\n"
+       pageText+= "ul\n{list-style-type:none;margin:10;padding:0;}\n"
+       pageText+= "li{display:inline;}\n"
+       pageText+= "</style>\n"
+       pageText+= '<script type="text/javascript"'
+       #myScript = '"/home/naath/public-html/sorttable.js"'
+       myScript = 'http://www.chiark.greenend.org.uk/~naath/sorttable.js'
+       pageText+= ' src='+myScript+'></script>'
+
+
+        pageText+= "</head>\n"
+        pageText+= "<body>\n"
        page_header()
        links()
 
 def bad():
+       global pageText
        html_start(1)
-       print 'Go Away'
+       pageText+= 'Go Away\n'
 
 def good(printMe):
+       global pageText
        html_start(2)
-       print printMe
+       pageText+= printMe
 
-def bottom(conn):
+def html_bottom():
+       global pageText
        links() 
        footer()
-       print "</body>"
-        print "</html>"
-       askQuestion.close(conn)
+       pageText+= "</body>\n"
+        pageText+= "</html>\n"
+       askQuestion.close()
+
+def bottom():
+       global pageText
+       html_bottom()
+
+       print pageText.encode('utf-8')
+def to_file(file):
+       global pageText
+       html_bottom()
+       pageText = pageText[39:]
+
+       f = codecs.open(file,mode = 'w',encoding = 'utf-8')
+        f.write(pageText)
+        f.close
+
+global pageText
+pageText = ''
 
index c700ff01eae4833b1d86407cdd106b1dd40c6b84..15515d666abe81753eda5e59095612c5de8b6d3b 100755 (executable)
 #!/usr/bin/python
 
 import cgi
-import cgitb
-cgitb.enable()
+#import cgitb
+#cgitb.enable()
 import sys
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import make_dot as d
 import askQuestion as aQ
+import graphQuestions as gQ
 
-def find_oneside_path(ID,start,stop):
-       global myP
-       global myC
 
-        start = start + 1
-        if start == stop+1:
-                return
 
-        [parents, parentIDs,parentNames] = aQ.find_parents(ID)
-
-       for i in parentIDs:
-               myP.append(i)
-               myC.append(ID)
-
-        for i in range(len(parents)):
-                if parentIDs[i]!=0:
-                        newID = parentIDs[i]
-                       find_oneside_path(newID,start,stop)
-
-def find_path(ID,ID2,LA,LB):
-       global myP
-       global myC
-
-       myP = []
-       myC = []
-       find_oneside_path(ID,0,int(LA))
-       aP = myP + [ID]
-       aC = myC + [ID]
-       myP = []
-       myC = []
-       find_oneside_path(ID2,0,int(LB))
-       bP = myP + [ID2]
-       bC = myC +[ID2]
-
-       z = set([0])
-       cA = set(aP).intersection(set(bP))
-       cA = cA.difference(z)
-
-       for a in cA:
-               i = aP.index(a)
-               c = aC[i]
-
-               while c!=ID:
-
-                       [parents, parentIDs,parentNames] = aQ.find_parents(c)
-                       s = aQ.find_person(c)[0]
-
-                       d.add_marriage(parents[0],parents[1],[s],1)
-
-
-                       i = aP.index(c)
-                       c = aC[i]
+def make_graph(ID,ID2):
+        d.start_dot(8) 
 
-               [parents, parentIDs,parentNames] = aQ.find_parents(c)
-                s = aQ.find_person(c)[0]
 
-                d.add_marriage(parents[0],parents[1],[s],1)
+       mrca,otherRCA,lA,lB = gQ.relationship(ID,ID2)
 
-       for a in cA:
-                i = bP.index(a)
-                c = bC[i]
+       nodes = gQ.join_up([ID,ID2],mrca+otherRCA)
+       
 
-               while c!=ID2:
-                       [parents, parentIDs,parentNames] = aQ.find_parents(c)
-                       s = aQ.find_person(c)[0]
+       for node in nodes:
+               [Self, selfID, selfName] = aQ.find_person(node)
 
-                       d.add_marriage(parents[0],parents[1],[s],1)
-                       i = bP.index(c)
-                       c = bC[i]
-               [parents, parentIDs,parentNames] = aQ.find_parents(c)
-                s = aQ.find_person(c)[0]
+               if node==ID or node==ID2 or node in mrca or node in otherRCA:
+                       d.add_highlight(Self)
 
-                d.add_marriage(parents[0],parents[1],[s],1)
+               [ps,pIDs,pNames] = aQ.find_parents(node)
+               if node not in mrca+otherRCA:
+                       d.add_marriage(ps[0],ps[1],[Self],1)
+               elif (pIDs[0] in mrca+otherRCA) or (pIDs[1] in mrca+otherRCA):
+                       d.add_marriage(ps[0],ps[1],[Self],1)
 
-def make_graph(ID,ID2,LA,LB):
-        d.start_dot(8) 
-       done = 0
 
-       for tID in [ID, ID2]:
-               [Self, selfID, selfName] = aQ.find_person(tID)
-               d.add_highlight(Self)
 
-       find_path(ID,ID2,LA,LB)
 
+       if web==0:
+               return
+       d.create_dot()
        d.add_subgraphs()
        d.end_dot()
        d.render_dot()
        aQ.close(conn)
 
-form = cgi.FieldStorage()
+global web
+global maxLevel
+web = 1
+if web == 1:
+       form = cgi.FieldStorage()
 
-ID = form.getvalue('id')
-ID2 = form.getvalue('id2')
-LA = form.getvalue('LA')
-LB = form.getvalue('LB')
+       ID = int(form.getvalue('id'))
+       ID2 = int(form.getvalue('id2'))
+       maxLevel = int(int(form.getvalue('mL')))
+else:
 
+       ID = 60
+       ID2 = 226
+       maxLevel = 3
 conn = aQ.connect()
-make_graph(ID,ID2,LA,LB)
-aQ.close(conn)
+make_graph(ID,ID2)
+aQ.close()
 
index e1a8d61b7580c628e13f1b58c479d02188572aed..4ab29319cfc9360e1819eabac65f52933b8fdb78 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -31,5 +31,4 @@ else:
                        everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
-
+everyPage.bottom()
index 44a724ca11188f8593cd3a0e0c32dc0cf5be3690..249c03c2330109ba0c7c2af129b2cdeddf35b07a 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -9,7 +9,7 @@ import askQuestion
 import everyPage
 
 [conn,form]=everyPage.top()
-cgitb.enable()
+#cgitb.enable()
 
 age = form.getvalue('age')
 
@@ -21,7 +21,7 @@ if age  == None:
         everyPage.good(printMe)
 
 else:
-       result = re.match('[-]{0,1}[0-9]{1,4}$', str(age))
+       result = re.match('[-]{0,1}[0-9]{1,7}$', str(age))
        if result==None:
                everyPage.bad()
        else:
@@ -32,5 +32,5 @@ else:
 
                everyPage.good(printMe)
 
-everyPage.bottom(conn)
+everyPage.bottom()
 
index 689a5a696841f7e6d8a88b9e0bafe7eadd64c7b5..328576b232171374c8856ffeecf0320c8921a53c 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -31,4 +31,4 @@ else:
                 everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
index d6deedc099d0094bd80ce63fe3fea49972fcde67..c73fa1997bdfef00dc943dc8ae5b839bc8eaed2c 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -9,7 +9,7 @@ import askQuestion
 import everyPage
 
 [conn,form]=everyPage.top()
-cgitb.enable()
+#cgitb.enable()
 
 result = 1
 if result == None:
@@ -22,5 +22,5 @@ else:
         everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
 
index 37d02e0781082981198f96f308a45bc80fd817ec..fec486ba5529ee562445d44e37e11e8fae167c41 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -21,5 +21,5 @@ else:
         everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
 
index 0e7852513731f9177e031f329662a388ed4e706c..6d4f2956931074b144499338ef6494b9132cd8e0 100755 (executable)
@@ -1,47 +1,43 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import gv
 import re
 import sys
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion as aQ
+import englishUtils as eU
 
-
-cgitb.enable()
+#cgitb.enable()
 def add_quotes(s):
         return '\"'+str(s)+'\"'
 
 def add_node(node,node_attr):
-       global dot
-       global nodes
-       node_attr = attr_string(node_attr)
-       if node not in nodes:
-               dot = dot + add_quotes(node) + node_attr + ";\n"
-               nodes.append(node)
+       na = attr_string(node_attr)
+       if not has_node(node):
+               nodes[node] = na
+       elif node_attr[-2][1]==highlight_attr[0][1]:    
+               nodes[node] = na
 
 def has_node(node):
-       if node in nodes:
+       if node in nodes.keys():
                return 1
        else:
                return 0
 def has_edge(edge):
        edge[0] = add_quotes(edge[0])
        edge[1] = add_quotes(edge[1])
-       if edge in edges:
+       if edge in edges.keys():
                return 1
        else:
                return 0
 
 def add_edge(n1,n2,edge_attr):
-       global dot
-       global edges
        edge = (add_quotes(n1),add_quotes(n2))
        edge_attr = attr_string(edge_attr)
-       if edge not in edges:
-               dot = dot + edge[0] + ' -> ' + edge[1] + edge_attr + ";"
-               edges.append(edge)
+       if edge not in edges.keys():
+               edges[edge] = edge_attr
 
 def add_arrow(n1,n2):
        add_edge(n1,n2,edge_attr)
@@ -60,7 +56,6 @@ def add_marriage(n1,n2,children,joinChildren):
        add_person(n1)
        add_person(n2)
 
-       
 
        if len(children)>0 and joinChildren==1:
                cNode = jN + 'c'
@@ -86,71 +81,106 @@ def add_marriage(n1,n2,children,joinChildren):
        for c in children:
                add_person(c)
                add_arrow(tcNode,c)
+
+       m = 1
+       good = 1
+       try:
+               id1 = int(n1.split(',')[-1])
+               id2 = int(n2.split(',')[-1])
+
+               m = aQ.is_married(id1,id2)
+       except:
+               m = 1
+
        for n in [n1, n2]:
-               add_edge(n,jN,marriage_attr)
+               if m==1:
+                       add_edge(n,jN,marriage_attr)
+               else:
+                       add_edge(n,jN,not_marriage_attr)
        add_subgraph([n1,n2])
 
 
 def add_subgraph(myG):
        global subgraphs
-       subgraphs.append(myG)
+       if myG not in subgraphs:
+               subgraphs.append(myG)
        
+
+def start_dot(fs):
+       global nodes
+       global edges
+       global cNodes
+       global dot
+       global subgraphs
+
+       nodes = dict()
+       edges=dict()
+       cNodes={}
+       dot = "digraph G{\n"
+       dot = dot + "ranksep = 0.2 nodesep = 0.1\n"
+       subgraphs=[]
+       set_attr(fs)
+
+def create_dot():
+       global dot
+
+       for node in nodes.keys():
+               dot +=add_quotes(node) + nodes[node] + ";\n"
+
+       for edge in edges.keys():
+               dot += edge[0] + ' -> ' + edge[1] + edges[edge] + ";\n"
+
 def add_subgraphs():
        global dot
        for sg in subgraphs:
                line = "\n{rank=same "
 
                 for n in sg:
-                        line = line +add_quotes(n) + ' '
+                        line  +=add_quotes(n) + ' '
 
-                line = line +"}"
+                line += "}"
 
-                dot = dot + line
+               dot+=line
 
 def end_dot():
        global dot
-
         dot = dot + "}"
 
-def start_dot(fs):
-       global dot
-       global nodes
-       global edges
-       global subgraphs
-       global cNodes
-       nodes=[]
-       edges=[]
-       cNodes={}
-       dot = "digraph G{\n"
-       dot = dot + "ranksep = 0.2 nodesep = 0.1\n"
-       subgraphs=[]
-       set_attr(fs)
+
+def arrange_name(name):
+
+       ln = name.replace('  ',' ')
+        ln = ln.replace(', ','\\n')
+        ln = ln.replace(',','\\n')
+        ln = ln.replace(' ','\\n')
+
+       return str(ln)
 
 def add_highlight(name):
-       global dot
+       try:    
+                k=eU.isKing(name)
+        except: 
+                k=0
 
-       add_person(name)
-       dot = dot +'\n'\
-       'subgraph clusterhl {'+add_quotes(name)+';\n'
-       for a in highlight_attr:
-               dot = dot + a[0] + '=' +a[1] +';\n'
-       dot = dot + '}'
-       
+        myLabel =str(arrange_name(name))
+
+        if k==1:
+                add_node(name,king_attr+[('label',myLabel)]+highlight_attr)
+        else:
+                add_node(name,person_attr+[('label',myLabel)]+highlight_attr)  
 
 def add_person(name):
        try:
-               k=aQ.isKing(name)
+               k=eU.isKing(name)
        except:
                k=0
-       ln = name.replace(', ','\\n')
-       ln = ln.replace(',','\\n')
-       ln = ln.replace(' ','\\n')
-       myLabel = '"'+str(ln)+'"'
+       myLabel = str(arrange_name(name))
 
        if k==1:
-                add_node(name,king_attr+[('label',myLabel)])
+               add_node(name,king_attr+[('label',myLabel)])
        else:
                add_node(name,person_attr+[('label',myLabel)])
+
 def add_spot(name):
        add_node(name,spot_attr)
 
@@ -165,15 +195,13 @@ def set_attr(fs):
         global ignored_attr
         global nodir_attr
        global marriage_attr
+       global not_marriage_attr
        global debug_attr
        global debug_edge_attr
-       zero_size = [('width','0'),('height','0')]
-        person_attr = [('fontsize',str(fs))]+\
-               [('shape','plaintext'),('margin','0'),\
-               ('style','filled'),('fillcolor','white')] +\
+       zero_size = [('width','0'),('height','0'),('fontsize',str(fs))]
+        person_attr = [('shape','plaintext'),('margin','0')] +\
                zero_size
-       highlight_attr =  \
-               [('shape','box'),('color','red'),('style','filled')]
+       highlight_attr =  [('fillcolor','yellow'),('style','filled,bold')]
        king_attr = person_attr +\
                [('fontcolor','purple4'),('shape','house'),('color','purple4')]
        debug_attr = person_attr + [('fontcolor','green')]
@@ -183,13 +211,14 @@ def set_attr(fs):
        invis_attr = edge_attr + [('style','invis')]
        nodir_attr = edge_attr + [('dir','none')]
        marriage_attr = nodir_attr + [('weight','10'),('color','red')]
+       not_marriage_attr = nodir_attr+[('weight','10'),('color','blue')]
        ignored_attr =edge_attr + [('constraint','false')] + nodir_attr
 
 def attr_string(attr):
        
        attr_str = '['
        for a in attr:
-               attr_str = attr_str + a[0] + '=' + a[1]
+               attr_str = attr_str + a[0] + '="' + a[1]+'"'
                if a != attr[-1]:
                        attr_str = attr_str +','
 
@@ -209,3 +238,20 @@ def render_dot():
 
         print "Content-type: image/" + format + "\n"
         print gv.render(gvv,format)
+
+
+def render_to_file(file):
+       f = open('/home/naath/familyTreeProject/cgiFiles/biggraphfile','w')
+       f.write(dot)
+       f.close
+       gvv = gv.readstring(dot)
+       gv.layout(gvv,'dot')
+       format = 'png'
+       gv.render(gvv,format,file)
+
+
+global dot
+global nodes
+global edges
+global subgraphs
+global cNodes
index 4f47ce7ac9203a57d2f3793ed71ed76fb6007ca4..6d329f24552d8a6b4d3bab8a05478eedfa4e2621 100755 (executable)
@@ -3,14 +3,14 @@
 
 # enable debugging
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion
 import everyPage
 
-cgitb.enable()
+#cgitb.enable()
 
 [conn,form]=everyPage.top()
 
@@ -18,7 +18,7 @@ name = form.getvalue('name')
 if name == None:
        name = "Edward"
 
-result = re.match('[a-zA-z-%]*$', name)
+result = re.match('[a-zA-Z\.\']*$', name)
 
 if result == None:
        everyPage.bad()
@@ -30,4 +30,4 @@ else:
        everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
index fb0a08c0e50b1858e2abf870d1cebffb6e98ac1a..3b6e3fbaa27af76014c7014ef67cebde8695c824 100755 (executable)
@@ -3,22 +3,23 @@
 
 # enable debugging
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion
 import everyPage
 
-cgitb.enable()
+#cgitb.enable()
 
 [conn,form]=everyPage.top()
 
 ID = form.getvalue('ID')
 if ID == None:
        ID = 1
+ID = str(ID)
 
-result = re.match('^[0-9]{1,3}$', str(ID))
+result = re.match('^[0-9]{1,4}$', str(ID))
 
 if result == None:
        everyPage.bad()
@@ -28,9 +29,12 @@ else:
        if len(printMe)<10:
                printMe =  'sorry, no data <br>'
        else:
-               url = "<a href= "+everyPage.base_url()+"ancestors.py?ID="+str(ID)+">Ancestors</a>"
-               printMe = printMe + '<br>' + url
+               url = "<a href= "+everyPage.base_url()\
+               +"ancestors.py?ID="+str(ID)+">Ancestors</a>"
+               url2 = "<a href="+everyPage.base_url()\
+               +"descendants.py?ID="+str(ID)+">Descendants</a>"
+               printMe = printMe + '<br>' + url+'<br>'+url2
 
        everyPage.good(printMe)
        
-everyPage.bottom(conn)
+everyPage.bottom()
index b248448f3f5c3aed2dcd02ea409edc005215795f..4f52a9278bb05c52d337ca53c01bf11aced11746 100755 (executable)
@@ -3,7 +3,7 @@
 
 # enable debugging
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -28,7 +28,7 @@ def make_drop_down(n, IDs, Names):
 
        return dd
 
-cgitb.enable()
+#cgitb.enable()
 
 [conn,form]=everyPage.top()
 
@@ -94,5 +94,5 @@ else:
 
        everyPage.good(printMe)
 
-everyPage.bottom(conn)
+everyPage.bottom()
 
index b1bc179300424b6183515f562f9764df88083d6c..7d67e52538b40d9243faa94a37a688ce24279086 100755 (executable)
@@ -1,12 +1,12 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import make_dot as d
 import sys
 sys.path.append('/home/naath/familyTreeProject/familyTree')
 import askQuestion as aQ
-cgitb.enable()
+#cgitb.enable()
 
 def add_parents(ID,s,cl,pl,pos,os):
        Self = aQ.find_person(ID)[0]
@@ -55,7 +55,7 @@ def add_children(ID,cl,os):
 def add_spouses(ID,os,cl):
        Self = aQ.find_person(ID)[0]
 
-       [spouses,spousesID,spousesNames] = aQ.find_spouses(ID)
+       [spouses,spousesID,spousesNames,sD] = aQ.find_spouses(ID)
 
        for s in spouses:
                 d.add_marriage(Self,s,[],1)
@@ -67,6 +67,7 @@ def add_spouses(ID,os,cl):
                                add_spouses(s,0,cl)
                                add_children(s,cl,os)
 
+
 def make_graph(ID,v,fs):
        pl = v[0]
        cl = v[1]
@@ -83,6 +84,7 @@ def make_graph(ID,v,fs):
        add_children(ID,cl,os)
        add_spouses(ID,os,cl)
 
+       d.create_dot()
        d.add_subgraphs()
        
        d.end_dot()
@@ -93,7 +95,7 @@ def check_int(s):
        try:
                return int(s)
        except ValueError:
-               return 1
+               return -1
 
 form = cgi.FieldStorage()
 
@@ -107,19 +109,19 @@ for s in variables:
 
 for i in range(len(values)):
        v = values[i]
-       if v == None:
+       if v == None or v<0:
                v = 0
        v = check_int(v)
-       if v<0:
-               v=0
        values[i] = v
 
 fs = form.getvalue('fs')
 if fs==None:
        fs=8
 fs = check_int(fs)
-if fs==1:
+if fs<0:
        fs=8
+if fs>20:
+       fs=20
 
 conn = aQ.connect()
 make_graph(ID,values,fs)
index 09fc75a9604370fd618ae6d9c0c958e2eea4213d..8f2ca689efe96420af8dd0854d7e1c697a0014b7 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 import sys
 import re
 sys.path.append('/home/naath/familyTreeProject/familyTree')
@@ -13,17 +13,17 @@ import everyPage
 terr = form.getvalue('terr')
 if terr == None:
         terr = 'Wessex'
-result = re.match('^[A-Za-z-]{1,20}$', str(terr))
+result = re.match('^[ A-Za-z-]{1,100}$', str(terr))
 
 
 if result == None:
         everyPage.bad()
 else:   
         printMe = askQuestion.rulers_of(terr,'<br>')
-        if len(printMe)<10:
+        if len(printMe)<1:
                 printMe =  'sorry, no data <br>'
 
         everyPage.good(printMe)
 
 
-everyPage.bottom(conn)
+everyPage.bottom()
index 9e5daf391e407cb6bde67307cf3749c2ccd95c99..76e385c29741b1880c8208b2b9abf7ac3d514d3c 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 import cgi
-import cgitb
+#import cgitb
 
 import pygraph
 from pygraph.classes.graph import graph
index 8dbe0b1eabc81c58f98d77c3de4fce0b63e749c8..f7d60be3ded5f0a03a54ff2d4572e3b709f86142 100755 (executable)
@@ -5,243 +5,386 @@ import findYear
 from string import Template
 import cgi
 import re
+import pickle
+import pygraph.algorithms.accessibility as access
+import englishUtils as eU
+import printUtils as pU
+import graphQuestions as gQ
+import urllib2
+
+global presentYear 
+presentYear= 1000000
+global ageTable
+ageTable = "(SELECT diedYear-bornYear as age, name,ID,diedYear,bornYear"\
+       +" FROM people"\
+       +" WHERE bornYear<>0 AND diedYear<>0 AND (diedMonth>bornMonth"\
+       +" OR (diedMonth==0)"\
+       +" OR (diedMonth = bornMonth AND (diedDay>=bornDay OR diedDay =0)))"\
+        +" UNION"\
+               +" SELECT diedYear-bornYear-1 as age,name,ID,diedYear,bornYear"\
+        +" FROM people"\
+        +" WHERE bornYear<>0 AND diedYear<>0 AND diedMonth<>0"\
+       +" AND (diedMonth<bornMonth"\
+        +" OR (diedMonth = bornMonth AND (diedDay<bornDay AND diedDay <>0)))"\
+        +" )"
+
+global ageNowTable
+ageNowTable = "(SELECT strftime('%Y',date('now'))-bornYear as age,"\
+       +"  name,ID,diedYear,bornYear"\
+        +" FROM people"\
+        +" WHERE bornYear<>0  AND (strftime('%m',date('now'))>bornMonth"\
+        +" OR (strftime('%m',date('now')) = bornMonth AND"\
+       +" (strftime('%d',date('now'))>=bornDay)))"\
+        +" UNION"\
+        +" SELECT strftime('%Y',date('now'))-bornYear-1 as age,"\
+       +" name,ID,strftime('%Y',date('now')),bornYear"\
+        +" FROM people"\
+        +" WHERE bornYear<>0  AND (strftime('%m',date('now'))<bornMonth"\
+        +" OR (strftime('%m',date('now')) = bornMonth"\
+       +" AND (strftime('%d',date('now'))<bornDay)))"\
+        +" )"
+
+global ageChildTable
+ageChildTable = "(SELECT c.bornYear - p.bornYear as age,"\
+       +" c.name as cName,c.ID as cID,"\
+       +" p.name as pname,p.ID as pID,"\
+       +" c.bornYear as bornYear"\
+       +" FROM"\
+       +" parents INNER JOIN people c"\
+       +" ON parents.ID = c.ID"\
+       +" INNER JOIN people p"\
+       +" ON parents.parentID = p.ID"\
+       +" WHERE p.bornYear <>0 AND c.bornYear<>0"\
+       +" AND (c.bornMonth>p.bornMonth"\
+       +" OR (c.bornMonth = p.bornMonth AND c.bornDay>=p.bornDay))"\
+       +" UNION"\
+       +" SELECT c.bornYear - p.bornYear-1 as age,"\
+       +" c.name as cName,c.ID as cID,"\
+       +" p.name as pName,p.ID as pID,"\
+       +" c.bornYear as bornYear"\
+       +" FROM"\
+       +" parents INNER JOIN people c"\
+       +" ON parents.ID = c.ID"\
+       +" INNER JOIN people p"\
+       +" ON parents.parentID = p.ID"\
+       +" WHERE p.bornYear <>0 AND c.bornYear<>0"\
+       +" AND (c.bornMonth<p.bornMonth"\
+       +" OR (c.bornMonth = p.bornMonth AND c.bornDay<p.bornDay))"\
+       +" )"
+
 
-global link_Template 
-link_Template= Template(\
-       "<a href = http://www.chiark.greenend.org.uk/ucgi/~naath/$script"\
-       +" title=$title>$text</a>")
-def add_quotes(s):
-       s = str(s)
-       return "'"+s+"'"
 
 def run_query(s,t):
        c = make_cursor()
        return c.execute(s,t)
 
-def print_row(row,newLine):
+def make_insert(table,fields):
+
+        t = tuple(fields)
+        values = '('
+        for i in range(len(fields)):
+                values = values+'?,'
+        values = values[:-1]+')'
+
+        s = 'INSERT INTO '+table+' VALUES'\
+                +values
+        run_query(s,t)
+
+def number_people():
+       s = 'SELECT max(ID) FROM people;'
+       for r in run_query(s,()):
+               return int(r[0])
+
+def calendar(newLine):
        out = ''
-       for item in row:
-               out = out + str(item)+'|'
-       return out[:-1] + newLine
 
-def print_query(s,t,newLine):
-       printMe = ''
-       for row in run_query(s,t):
-               printMe = printMe + print_row(row,newLine)              
-       return printMe
-
-def is_number(s):
-    try:
-        float(s)
-        return 1
-    except ValueError:
-        return 0
-
-def print_tagged_query(relationship,s,t,newLine):
-       mine = ''
-       for row in run_query(s,t):
-               mine = mine + print_tagged_name(relationship,row,newLine)
-       return mine
+       mLength = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
+       b = 'born'
+       x = 'died'
+       fcstart = '<FONT COLOR = "'
+       fcmid = '">'
+       fcend = '</FONT>'
+       dcol = 'red'
+       dcstart = fcstart+dcol+fcmid
+
+       for m in range(12):
+
+               n = count_born_on(m+1,0,b)
+               o = count_born_on(m+1,0,x)
+               p = count_born_in(m+1,b)
+               q = count_born_in(m+1,x)
+
+               script = 'birthday.py?date=%d-0' %(m+1)
+               d = 0
+               url = pU.link_Template.substitute\
+                                (script = script,title = eU.month_numbers(m+1),\
+                                text = eU.month_numbers(m+1))
+               out += "%s %d %s%d%s %d %s%d%s%s" \
+                       %(url,n,dcstart,o,fcend,p,dcstart,q,fcend,newLine)
+
+
+               out+="<table>"
+               out+="<tr>"
+               for d in range(mLength[m]):
+                       script = 'birthday.py?date=%d-%d' % (m+1,d+1)
+                       url = pU.link_Template.substitute\
+                               (script = script,title = str(d+1),\
+                               text = str(d+1))
+
+                       n = count_born_on(m+1,d+1,b)
+                       o = count_born_on(m+1,d+1,x)
+       
+                       s = "<td>"
+                       e = "</td>"
+                       out+="%s%s%s %s%d%s %s%s%s%s%s " %(s,url,e,\
+                               s,n,e,s,dcstart,o,fcend,e)
+                       if (d+1)%7 ==0 or (d+1)==mLength[m]:
+                               out+="</tr>"
+                               out+="<tr>"
+               out+="</table>"
+               out+=newLine
 
+       script = 'birthday.py?date=0-0'
+        url = pU.link_Template.substitute\
+               (script = script,title = 'unknown',\
+                text = 'unkown')
 
-def relationship_html(ID,ID2,newLine):
-       if newLine=='<br>':
-               relationship = common_ancestors(ID,ID2,newLine)[2]
-                       
-               if relationship[-11:] != 'not related':
-                       script = "ancestors.py?ID=%s&ID2=%s" % (ID,ID2)
-                       url = link_Template.substitute\
-                               (script = script,title = "Common ancestors"\
-                                       ,text = "Common ancestors")
-                       return relationship + ' '+url + newLine
-               else:
-                       return relationship + newLine
-       else:
-               return ''
+       n = count_born_on(0,0,b)
+       o = count_born_on(0,0,x)
+       out+="%s %d %s%d%s%s" %(url,n,dcstart,o,fcend,newLine)
 
-def terr_html(terr,newLine,start,stop):
-       if newLine=='<br>':
-               if start == 0 and stop ==0:
-                       myTitle = add_quotes(terr)
 
-               else:
-                       s = "SELECT name,people.id"\
-                       +" FROM people INNER JOIN territories"\
-                       +" ON people.id = territories.id"\
-                       +" WHERE territory = ? AND stopyear <= ?"\
-                       +" ORDER BY startyear DESC;"
-
-                       t = (terr,start)
-                       myTitle = ''
-                       for row in run_query(s,t):
-                               myTitle += "previous - %s,%s" \
-                               % (row[0],row[1])
-                               break
 
-                       u = "SELECT name,people.id"\
-                        +" FROM people INNER JOIN territories"\
-                       +" ON people.id = territories.id"\
-                        +" WHERE territory = ? AND startyear >= ?"\
-                        +" ORDER BY startyear;"
-               
-                       v = (terr,stop)
-                        for r in run_query(u,v):
-                               myTitle += '&#xA next - %s,%s'\
-                               %(r[0],r[1])
-                                break
+       script = 'birthday.py?date=20-0'
+        url = pU.link_Template.substitute\
+                (script = script,title = 'on their birthday',\
+                text = 'on their birthday')
+       n = count_born_on(20,0,b)
+       out +="%d people died %s%s" %(n,url,newLine)
+
+
+       s = "select diedYear,count(*)"\
+                +" FROM people"\
+                +" WHERE diedYear==?"\
+                +" GROUP BY diedYear;"
+        for row in run_query(s,(presentYear,)):
+                out += pU.print_age_death_count(row,newLine)
+
+       for bd in ('born','died'):
+               out+=newLine
+               s = "SELECT "+bd+", count(*) AS n"\
+                       +" FROM (SELECT "+bd + "," + bd + "Year"\
+                       +" FROM people"\
+                       +" WHERE "+bd+"Month<>0 AND "+bd+"Day<>0)"\
+                       +" GROUP BY "+bd\
+                       +" HAVING n>1"\
+                       +" ORDER BY "+bd+"Year;"
+
+               t = "SELECT name,id"\
+                       +" FROM people"\
+                       +" WHERE "+bd+" = ?;"
+       
+
+               out += "On the following days more than one person %s: %s" \
+                       %(bd,newLine)
+
+               for row in run_query (s,()):
+                       out+=row[0]+":"+newLine
+                       for r in run_query(t,(str(row[0]),)):
+                               out+=pU.name_html(r,newLine)+newLine
+
 
-                       myTitle = add_quotes(myTitle)
 
-               return link_Template.substitute(\
-                       script = "territory.py?terr="+terr, title=myTitle,\
-                       text = terr)
+       return out
+
+def count_born_on(month,day,bd):
+       if month==20:
+               s = "SELECT count(*) FROM people"\
+                       +" WHERE bornMonth==diedMonth"\
+                       +" AND bornDay==diedDay"\
+                       +" AND bornMonth<>0"\
+                       +" AND diedDay<>0;"
+               t = ()
+
        else:
-               return terr
-def name_html(row,html):
-       if html=='<br>':
-               html=1
-       elif html=='\n':
-               html=0
-
-       if row[0] == None:
-               return row[1]
-       elif row[1]==0:
+               s = "SELECT count(*) FROM people"\
+                       +" WHERE "+bd+"Month==?"\
+                       +" AND "+bd+"Day==?"\
+                       +" AND "+bd+"Year<>?;"
+
+               t = (month,day,presentYear)
+
+       for row in run_query(s,t):
                return row[0]
-       else:
-               if html==1:
-                       script = "person.py?ID=%s" %(row[1])
-                       name = row[0]
-                       return link_Template.substitute(script = script\
-                               ,title = add_quotes(name),text = name)
-               else:
-                       return "%s,%s" % (row[0],row[1])
 
-def print_people(n):
-       if n>1:
-               return 'people'
-       else:
-               return 'person'
-def print_children(n):
-       if n>1:
-               return 'children'
-       else:   
-               return 'child'
-
-def print_age_child_count(row,newLine):
-       if newLine == '<br>':
-               script = "listAge.py?age=%s" % (row[0])
-               link = link_Template.substitute(script = \
-                       script, title = add_quotes(row[0]), text = row[0])
+def count_born_in(month,bd):
 
-               out = '%s %s had children at age %s %s'\
-                % (row[1],print_people(row[1]),link,newLine)
-               return out
-       else:
-               return print_row(row,newLine)
-
-def print_age_death_count(row,newLine):
-       if newLine =='<br>':
-               script = "listAgeDeath.py?age=%s" % (row[0])
-               link = link_Template.substitute(script = script,\
-                       title = add_quotes(row[0]),text = row[0])
-               out = "%s %s died at age %s %s " \
-                       %(row[1],print_people(row[1]), link,newLine)
-               return out
-       else:
-               return print_row(row,newLine)
+       s = "SELECT count(*) FROM people"\
+               +" WHERE "+bd+"Month==?"\
+               +" AND "+bd+"Year<>?;"
+       t = (month,presentYear)
 
-def print_name_count(row,newLine):
-       if newLine=='<br>':
-               script = "name.py?name=%s" % (row[0])
-               link = link_Template.substitute(script =\
-                       script, title = add_quotes(row[0]),text = row[0])
-               return "%s people called %s%s"\
-                       %(row[1],link, newLine)
-       else:
-               return print_row(row,newLine)   
+       for row in run_query(s,t):
+               return row[0]
 
-def print_children_count(row,newLine):
-       out = "%s %s had " % (row[0],print_people(row[0]))
+def born_on(date,newLine):
+       month = int(date.split('-')[0])
+       day = int(date.split('-')[1])
 
-       if newLine == '<br>':
-               script = "listChildCount.py?nc="+str(row[1])
-               link = link_Template.substitute(script =\
-                       script, title = add_quotes(row[1]),text = row[1])
+       fcstart = '<FONT COLOR = "'
+        fcmid = '">'
+        fcend = '</FONT>'
+        dcol = 'red'
+        dcstart = fcstart+dcol+fcmid
+
+
+       out = ''
+
+
+       if month==20:
+               n = count_born_on(month,day,'')
+
+               out+="%d %s died on their birthday: %s"\
+                       %(n, eU.print_people(n),newLine)
+
+               s =  "SELECT name,id,bornYear,diedYear,bornMonth,bornDay"\
+                       +" FROM people"\
+                       +" WHERE bornMonth==diedMonth"\
+                       +" AND bornDay==diedDay"\
+                       +" AND bornMonth<>0"\
+                       +" AND diedDay<>0"\
+                       +" ORDER BY diedYear-bornYear;"                 
+               t=()
+               out+="Died on the day they were born:%s"%(newLine)
+               out+=pU.table_header(['link','born and died'],newLine)
+               header=0
+               for row in run_query(s,t):
+                       if row[2]!=row[3] and header==0:
+                               header = 1
+                               out+=pU.table_foot(newLine)
+                               out+="%sDied on a later birthday:%s"\
+                                       %(newLine,newLine)
+                               out+=pU.table_header(['link','born','died','month','day'],\
+                                       newLine)
+                       link = pU.name_html(row,newLine)
+                       born = pU.print_year(row[2])
+                       died = pU.print_year(row[3])
+                       month = eU.month_numbers(row[4])
+                       day = str(row[5])
+                       if row[2]==row[3]:
+                               out+=pU.table_row([link,born],newLine)
+                       else:
+                               out+=pU.table_row([link,born,died,month,day],newLine)
+               out+=pU.table_foot(newLine)
+               return out
+
+       if day!= 0:
+               out += '%s %s %s' \
+               %(eU.month_numbers(month),eU.ordinal_numbers(day),newLine)
        else:
-               link = str(row[1])
+               out +='%s %s'\
+               %(eU.month_numbers(month),newLine)
 
-       out += "%s %s %s" % (link,print_children(row[1]),newLine)
 
-       return out
+       for bd in ['born','died']:
+               s = "SELECT name,id,"+bd+"Year FROM people"\
+                       +" WHERE "+bd+"Month==?"\
+                       +" AND "+bd+"Day==?"\
+                       +" AND "+bd+"Year<>?"\
+                       +" ORDER BY "+bd+"Year;"
 
-def print_tagged_name(relationship,row,newLine):
-       if row[0]==None:
-                       out = relationship + " not yet entered: " + row[1]
-               out = "%s not yet entered: %s" % (relationship,row[1])
-               else:
-               if newLine == '<br>':
-                       html = 1
-               else:
-                       html=0
-               if relationship =='':
-                       out = '%s   ' % (name_html(row,html))
+               t = (month,day,presentYear)
+               n = count_born_on(month,day,bd)
+               
+               if bd=='died':
+                       out+=dcstart
+               if day!=0:
+                       out+="%s %s %s on this day %s" \
+                       %(n,eU.print_people(n),bd, newLine)
+               elif month!=0:
+                       out+="%s %s %s in this month on unknown day %s"\
+                       %(n,eU.print_people(n),bd,newLine)
                else:
-                       out = relationship + ": " + name_html(row,html)
-                       out = '%s: %s' % (relationship,name_html(row,html))
-       return out + newLine
-
-def month_numbers(monthN):
-       if monthN == 0:
-               month ='unknown month'
-       elif monthN == 1:
-               month ='January'
-       elif monthN==2:
-               month ='February'
-       elif monthN==3:
-               month ='March'
-       elif monthN==4:
-               month ='April'
-       elif monthN==5:
-               month ='May'
-       elif monthN==6:
-               month ='June'
-       elif monthN==7:
-               month ='July'
-       elif monthN==8:
-               month ='August'
-       elif monthN==9:
-               month ='September'
-       elif monthN==10:
-               month ='October'
-       elif monthN==11:
-               month ='November'
-       elif monthN==12:
-               month ='December'
-       else:
-               month = 'Incorrectly entered month ' + str(monthN)
-       return month
-
-def ordinal_numbers(number):
-       number = int(number)
-       out = '%d' % (number)
-       if number % 10==1 and number/10 % 10 !=1:
-               out +='st'
-       elif number % 10==2 and number/10 % 10 !=1:
-               out +='nd'
-       elif number % 10==3 and number/10 % 10 !=1:
-               out +='rd'
-       else:
-               out +='th'
+                       out+="%s %s %s in unknown month on unknown day %s"\
+                       %(n,eU.print_people(n),bd,newLine)
+               if bd=='died':
+                       out+=fcend
+               out+=pU.table_header(['id','link',bd],newLine)
+               for row in run_query(s,t):
+                       y = pU.print_year(row[2])
+
+                       link = pU.name_html(row,newLine)
+                       out+=pU.table_row([row[1],link,y],newLine)
+
+               out+=pU.table_foot(newLine)
+               out+=newLine
+
+       if day==0 and month!=0:
+               for bd in ['born','died']:
+                       s = "SELECT name,id,"+bd+"Year FROM people"\
+                        +" WHERE "+bd+"Month==?"\
+                        +" AND "+bd+"Year<>?"\
+                        +" ORDER BY "+bd+"Year;"
+
+                       t = (month,presentYear)
+                       n = count_born_in(month,bd)     
+
+                       if bd=='died':
+                               out+=dcstart
+                       out+="%s %s %s in this month %s" \
+                               %(n,eU.print_people(n),bd, newLine)
+                       if bd=='died':
+                               out+=fcend
+
+                       out+=pU.table_header(['link',bd],newLine)
+                       for row in run_query(s,t):      
+                               link = pU.name_html(row,newLine)
+                               y = pU.print_year(row[2])
+
+                               out+=pU.table_row([link,y],newLine)
+                       out+=pU.table_foot(newLine)
+                       out+=newLine
+                                       
        return out
 
-def list_territories(newLine):
-       s = "SELECT DISTINCT territory"\
-       +" FROM territories"\
-       +" ORDER BY territory;"
 
-       out = ''
-       for row in run_query(s,()):
-               out += terr_html(row[0],newLine,0,0) +newLine
+def alive_on(day,month,year,newLine):
+
+       bornBefore = "(bornMonth<? OR"\
+                       +" (bornMonth==? AND bornDay<=?))"
+
+       diedAfter = "(diedMonth>? OR diedMonth==0"\
+                       +" OR (diedMonth==? AND (diedDay>=? OR diedDay==0)))"
+
+       bornOrder = "bornyear,bornmonth,bornday"
+       diedOrder = "diedyear,diedmonth,diedday"
+       s = "SELECT name,ID,bornYear,diedYear FROM people"\
+               +" WHERE"\
+               +" bornYear<>0 AND diedYear<>0 AND("\
+               +" (bornYear<? AND diedYear>?)"\
+               +" OR"\
+               +" (bornYear==? AND diedYear>? AND "+bornBefore+")"\
+               +" OR"\
+               +" (bornYear<? AND diedYear==? AND "+diedAfter+")"\
+               +" OR"\
+               +" (bornYear==? and diedYear==? AND "\
+               +bornBefore+" AND "+diedAfter+")"\
+               +")"\
+               +"ORDER BY "+bornOrder+"," + diedOrder+";"
+
+       yeart = (year,year)
+       bbt=(month,month,day)
+       dat = (month,month,day)
+       t = yeart+yeart+bbt+yeart+dat+yeart+bbt+dat     
+       out=pU.table_header(['link','born','died'],newLine)
+       for row in run_query(s,t):
+               link=pU.name_html(row,newLine)
+               born = pU.print_year(row[2])
+               died = pU.print_year(row[3])
+               out+=pU.table_row([link,born,died],newLine)
+
+       out+=pU.table_foot(newLine)
+
        return out
 
 def list_people_parents():
@@ -254,7 +397,7 @@ def list_people_parents():
 
                ID = row[1]
                [parents, parentIDs,parentNames] = find_parents(ID)
-               [spouses,spousesID,spousesNames] = find_spouses(ID)
+               [spouses,spousesID,spousesNames,sD] = find_spouses(ID)
                
                [self,myID,myName] = find_person(ID)
                output.append([self,parents,spouses])
@@ -262,542 +405,1097 @@ def list_people_parents():
 
 
 def list_people(newLine):
-       s = "SELECT name,id,bornyear"\
+       s = "SELECT name,id,bornyear,fullname,diedYear,url"\
        +" FROM people"\
-       +" ORDER BY bornyear;"
+       +" ORDER BY bornyear,diedYear;"
 
-       out = ''
+       out = pU.table_header(['ID','link','wiki','name','born','died'],\
+               newLine)
        year = 0
-       out = out + 'born in unknown year:' +newLine
+       out+=pU.table_row(['','',\
+               '<b>Unknown Year</b>',0,0,''],newLine)
        for row in run_query(s,()):
                if row[2]!=0 and row[2]/100==0:
-                       out +='%sborn in 1st century:%s' % (newLine,newLine)
-
+                       out+=pU.table_row(['','','',\
+                       '<b>1st century</b>'\
+                       ,1,100],newLine)
                if row[2]/100!=year/100:
                        century = row[2]/100 + 1
-                       out +='%sborn in %s century: %s'\
-                        %(newLine,ordinal_numbers(century),newLine)
+                       start = century * 100 -99
+                       end = century * 100
+                       out+=pU.table_row(['','','',\
+                        '<b>'+eU.ordinal_numbers(century)+' century</b>',\
+                               start,end],newLine)
 
+               
+               ID = row[1]
+               link = pU.name_html(row,newLine)
+#              if row[5] != '.':
+#                      struct = fetch_page(row[5])
+#                      if struct.has_key('query'):
+#                              pName = struct['query']['pages'].keys()[0]
+#                              wikiName = struct['query']['pages'][pName]['title']
+#                      else:
+#                              wikiName = row[5]
+#              else:
+#                      wikiName = ''
+               wikiName = row[5]
+               wikiLink = "<a href='" + wikiName + "'>"+wikiName+"</a>"
+
+               a = re.search('#',wikiName)
+               if a:
+                       wikiName = '#'
+                       wikiLink = wikiName
+               if row[5]=='.':
+                       wikiName = 'None'
+                       wikiLink = wikiName
+
+
+               name = row[3]
+               born = pU.print_year(row[2])
+               died = pU.print_year(row[4])
+
+               out+=pU.table_row([ID,link,wikiLink,name,born,died],newLine)
+               year = row[2]
+       out+=pU.table_foot(newLine)
+       return out
 
-               out+= name_html(row,newLine) +newLine
+def list_page(newLine):
+       s = "SELECT name,ID,url FROM people ORDER BY ID;"
+       t = ()
+       out = ''
 
-               if row[2] == 0: #unknown year
+       check=[]
+       for row in run_query(s,t):
+               if row[2]!='.':
+                       topLink = "%d   <a href='%s'>%s</a>" %(row[1],row[2],row[0])
+                       print row[1]
+                       myLink = pU.name_html(row,newLine)
+                       topLink = topLink+' '+myLink
+                       url = row[2]
+                       id = row[1]
+                       
+                       [fam,count,checkMe] = find_fam(id,url,newLine)
+                       if checkMe==0:
+                               out+=topLink+newLine+fam+newLine
+                       else:
+                               check.append([id,topLink,url,fam,count])
+
+       outDone = out
+       out = 'MATCHED'+newLine
+       hold = 'CHECK COUNT'+newLine
+       checkAgain=[]
+       for p in check:
+               id = p[0]
+               topLink=p[1]
+               url=p[2]
+               fam=p[3]
+               countF = p[4]
+               print id
+       
+               links,countL = find_links(url)
+               if links:
+                       if links[0]!=-1:
+                               this=topLink+newLine+fam+newLine
+
+                               this+='<ul>'
+                               for l in links:
+                                       this+='<li>'+l+newLine+'\n'
+                               this+='</ul>'
+                               good=1
+                               for i in range(3):
+                                       if countL[i]<countF[i]:
+                                               good = 0;
+                               if good==1:
+                                       out+=this
+                               else:
+                                       hold+=\
+                       this+newLine+str(countF)+str(countL)+newLine
 
-                       t = (row[1],) #person ID
+                       else:
+                               checkAgain.append(p)
+               else:
+                               checkAgain.append(p)
+       outMatched = out
+       outUnMatched = hold
 
+       out=newLine + 'CHECK NO INFO'+newLine
+       for p in checkAgain:
+               id = p[0]
+                topLink=p[1]
+                url=p[2]
+                fam=p[3]
+               print id
 
-                       #died
-                       u = "SELECT diedyear FROM people WHERE ID = ?;"
+               if re.search('#',url):
+                       continue
+               out+=topLink+newLine+fam
 
-                       bornAfter = 0
-                       bornBefore = 0
-                       for r in run_query(u,t):
-                               if r[0] !=0:
-                                       bornAfter = r[0] -100
-                                       bornBefore = r[0]
-                                       out += "Died: %s %s"\
-                                       %(r[0],newLine)
-                       #find children
-                       u = "Select people.bornYear from"\
-                               +" people INNER JOIN parents"\
-                               +" ON people.ID = parents.ID"\
-                               +" WHERE parents.parentID = ?"\
-                               + " ORDER BY people.bornYear;"
-                       
-                       hadChild=[]
-                       
-                       for r in run_query(u,t):
-                               if r[0] != 0:
-                                       hadChild.append(r[0])
-                       
-                       if len(hadChild)!=0:
-                               out += "had children in: "
-                               for c in hadChild:
-                                       out+= '%s,' % (c)
-                               out = out[:-1] + newLine
-                               bornBefore = hadChild[0]-12
-                               if bornAfter==0:
-                                       bornAfter = hadChild[0]-100
-                       
-                       u = "Select styles.startYear, styles.style from"\
-                                +" people INNER JOIN styles"\
-                                +" ON people.ID = styles.ID"\
-                                +" WHERE people.ID = ? and"\
-                                +" styles.startYear <>0"\
-                                +" ORDER BY styles.startYear;"
-
-                        for r in run_query(u,t):
-                               out += "%s from %s %s"\
-                                       %(r[1],r[0],newLine)
-                               if bornAfter ==0:
-                                       bornAfter = r[0] -100
-                                break
-
-                       if bornAfter!=0:
-                               if bornBefore == 0: 
-                                       out += "probably born after %s"\
-                                               %(bornAfter)
+       return [outDone,outMatched,outUnMatched,out]
+
+def find_fam(id,link,newLine):
+       out = ''
+
+       [parents, parentIDs,parentNames] = find_parents(id)
+       [spouses,spousesID,spousesNames,sD] = find_spouses(id)
+       [nodes,IDs,names,childrenBorn] = \
+               find_children(id)
+       
+       relIDs = parentIDs+spousesID
+       for ID in IDs:
+               relIDs.append(ID[0])
+
+       out+='<ul>'
+       findUrl = 'SELECT url,name FROM people WHERE ID=?'
+       findName = 'SELECT name,ID FROM people WHERE ID=?'
+       anyCheck = 0;
+       count = [0, 0, 0]
+       for ID in relIDs:
+               t = (ID,)
+               if ID in parentIDs:
+                       type = 'parent'
+                       count[0]+=1
+               elif ID in spousesID:
+                       type = 'spouse'
+                       count[1]+=1
+               else:
+                       type = 'child'
+                       count[2]+=1
+
+               for row in run_query(findUrl,t):
+                       url = row[0]
+
+                       if url!='.':
+                               url = row[0]
+                               title = row[1]
+                               out+='<li>'+type+" <a href="+url\
+                               +">"+title+"</a>"+newLine
+                       else:
+                               for row in run_query(findName,t):
+#                                      out+='<li>'+pU.name_html(row,newLine)\
+#                                      +'CHECK'+newLine
+                                       name=row[0]
+                                       id = str(row[1])
+                                       out+='<li>'+type+' '+name + ' '+id+\
+                                               ' CHECK'+newLine
+                                       anyCheck = 1
+               
+       out+='</ul>'
+       return [out,count, anyCheck]
+
+def fetch_page(url):
+       import json
+
+       title = url.split('/')[-1]
+        url = 'http://en.wikipedia.org/w/api.php?'\
+                +'format=json&action=query'\
+                +'&titles='+title\
+                +'&prop=revisions&rvprop=content&redirects'
+
+        r = urllib2.urlopen(url)
+        t = r.read()
+        jd = json.JSONDecoder()
+       struct = jd.decode(t)
+
+
+       return struct
+
+def find_infoBox(url):
+       struct = fetch_page(url)
+       try:
+               pages = struct['query']['pages'].keys()
+       except:
+               return
+
+        startPatt = re.compile('{{',re.DOTALL)
+        endPatt = re.compile('}}',re.DOTALL)
+        infoboxPatt = re.compile('{{( )*[Ii]nfobox',re.DOTALL)
+
+       isIBOX = 0
+       for p in pages:
+               try:
+                       page = struct['query']['pages'][p]['revisions'][0]['*']
+               except:
+                       return
+
+               title = struct['query']['pages'][p]['title']            
+               iBox = re.search(infoboxPatt,page)
+                starts = re.finditer(startPatt,page)
+               ends = re.finditer(endPatt,page)
+
+               if iBox==None:  
+                       continue
+
+               myStart = iBox.start()
+               isIBOX=1
+                                       
+               countMe = 0
+               start = -1
+                while start<myStart:
+                       start = starts.next().start()
+                       end = -1
+                while end<myStart:
+                       end = ends.next().start()
+                while 1==1:
+                       if start<end:
+                               countMe+=1
+                               start = starts.next().start()
+                       elif end<start:
+                               countMe-=1
+                               myEnd = end
+                               end = ends.next().start()
+                       if countMe==0:
+                               break
+               info = page[myStart+2:myEnd]
+
+       if isIBOX==1:
+               return info
+       else:
+               return 
+
+def find_links(url):
+
+       info = find_infoBox(url)
+
+       if info:
+               l,c = wikilink_box(info)
+               return l,c
+       else:
+               return [-1],[]  
+
+def wikilink_box(text):
+       linkPatt = "([^=]*?)\[\[(.*?)\]\](.*?)"
+       #linkPatt = "\|(.*?)\[\[(.*?)\]\](.*?)\n"       
+       #linkPatt = "(.*?)\[\[(.*?)\]\]([^<]*?)[\\n|<br.*?>|,]"
+       links = []
+
+       commentPatt = "<!--.*?>"
+       sizePatt = "<[/]*small>"
+       text=re.sub(commentPatt,'',text)
+       text = re.sub(sizePatt,'',text)
+
+       pscPatt = "father|mother|parent|spouse|issue|child"
+       typePatt = "(.*?)="
+       lines = re.split('\\n',text)
+       count = [0, 0,0]
+       for line in lines:
+               if re.search(pscPatt,line):
+                       t = re.search(typePatt,line)
+                       if t is None:
+                               continue
+                       type = t.group(1)
+                       if re.search('father|mother|parent',type):
+                               c=0
+                       elif re.search('spouse',type):
+                               c=1
+                       else:
+                               c=2
+                       people = re.split('<br.*?>',line)
+                       for p in people:
+                               count[c]+=1
+                               if re.search(linkPatt,p):
+                                       l = re.search(linkPatt,p)
+                                       url = wiki_to_url(l.group(2))
+                                       t = l.group(2).split('|')[-1]
+
+                                       myLink = '<a href="%s">%s</a>' \
+                                       %(url,t)
+                                       link = l.group(1)+myLink+l.group(3)
+                                       add=type+link
                                else:
-                                       out +="probably born between %s and %s"\
-                                               %(bornAfter, bornBefore)
-                               out = out + newLine
+                                       add = type+' '+p
+                               links.append(add)
+       return links,count
 
-               year = row[2]
-       return out
 
-def count_names(newLine):
-       s = "SELECT firstName, count(*)"\
-       +" FROM people"\
-       +" GROUP BY firstName"\
-       +" ORDER BY count(*) DESC;"
+def wiki_to_url(wiki):
+       base = 'https://en.wikipedia.org/wiki/'
+       u = wiki.split('|')[0]
+       u = re.sub(' ','_',u)
 
-       out = ''
-       for row in run_query(s,()):
-               out += print_name_count(row,newLine)
+       return base+u   
 
-       return out
+def check_true(newLine):
+       s = "SELECT name,id,url,born,died FROM people WHERE id>? and id<? ORDER BY id;"
+       t = (0,5000)
 
+       out='<table border = "1" style = "width:100%">'
+       out+='<tr>'
+       out+='<th style="width:20%">Name</th>'
+       out+='<th style="width:40%">Toy</th>'
+       out+='<th style="width:40%">Wiki</th>'
+       out+='</tr>'
 
+       for row in run_query(s,t):
+               if row[2]=='.':
+                       continue
+               struct = fetch_page(row[2])
+               try:
+                       p = struct['query']['pages'].keys()[0]
+               except:
+                       continue
+
+               title = struct['query']['pages'][p]['title']            
+                               
+               topLink = "%d   <a href='%s'>%s</a>" %(row[1],row[2],title)
+               
+               myLink = pU.name_html(row,newLine)
+               topLink = topLink+newLine+myLink
+               url = row[2]
+               id = row[1]
+                       
+               [fam,count,checkMe] = find_fam(id,url,newLine)
+               infobox = find_infoBox(url)
 
-def count_children(newLine):
 
-       s = "SELECT count(*),nc"\
-       +" FROM ("\
-       +" SELECT count(*) AS nc"\
-       +" FROM parents"\
-       +" GROUP BY parentID"\
-       +" HAVING parentID <>'?'"\
-       +" AND parentID <> '0')"\
-       +" GROUP BY nc;"
+               if checkMe!=0:
+                       continue
+               out+='<tr>'
+               out+='<td>'+topLink+'</td>'
+       
+               if infobox is None:
+                       out+='</tr>'
+                       continue
 
-       out = ''
-       for row in run_query(s,()):
-               out += print_children_count(row,newLine)
-       return out
+               
 
-def parents_with_children(nChildren,newLine):
-       s = "SELECT name,parentID"\
-       + " FROM parents"\
-       + " LEFT JOIN people"\
-       + " ON parentID = people.ID"\
-       + " GROUP BY parentID"\
-       + " HAVING count(*) = ?"\
-       + " AND parentID <> 0"\
-       + " ORDER BY bornYear;"
+               out+='<td>'+fam+newLine+'born:'+row[3]+newLine\
+                       +'died:'+row[4]+'</td>'
 
 
-       u = "SELECT count(*)"\
-       +" FROM  parents INNER JOIN people"\
-       +" ON parents.ID = people.ID"\
-       +" WHERE parentID = ?"\
-       +" AND (diedyear-bornyear>? OR died='present');"
+               wikiLink='\\[\\[([^\\|\\]]*)\\|*(.*?)\\]\\]'
+               htmlLink=r'<a href="https://en.wikipedia.org/wiki/\1">\1</a>'
 
-       out = "People who had %s %s:%s" \
-               %(nChildren,print_children(nChildren),newLine)
+               htmlBox = re.sub(wikiLink,htmlLink,infobox)
 
-       for row in run_query(s,(nChildren,)):
-               out += name_html(row,newLine)
-               for r in run_query(u,(row[1],1)):       
-                       out += " %d  survived infancy" % r[0]
-               for r in run_query(u,(row[1],18)):
-                       out += " and %s survived to adulthood" % r[0]
-               out = out +newLine
+               place = 0
+               starts = re.finditer('{{',htmlBox)
+               stops = re.finditer('}}',htmlBox)
+               last = len(htmlBox)             
+
+               try:
+                       start = starts.next().start()
+                       stop = stops.next().start()
+               except:
+                       start = last
+                       stop = last
+
+               lines=[]
+               inList= 0
+
+               for i in re.finditer('\|',htmlBox):
+                       if i.start()>start and start<stop:
+                               inList+=1
+                               try:
+                                       start= starts.next().start()
+                               except:
+                                       start = last
+                       elif i.start()>stop and stop<start:
+                               inList-=1
+                               try:
+                                       stop = stops.next().start()
+                               except:
+                                       stop = last
+
+                       if inList==0:
+                               lines.append(htmlBox[place:i.start()])
+                               place = i.start()
+
+                       
+               of_interest = 'father|mother|parent|child|issue'\
+                       +'|spouse|birth_date|death_date'
        
+               out+='<td>'
+
+               parents = []
+               children=[]
+               spouse=[]
+               dates=[]
+
+               for l in lines:
+                       if re.search('father|mother|parent',l):
+                               parents.append(l)
+                       if re.search('child|issue',l):
+                               children.append(l)
+                       if re.search('spouse',l):
+                               spouse.append(l)
+                       if re.search('birth_date|death_date',l):
+                               dates.append(l)
+
+               for p in parents:
+                       out+=p+newLine
+               for s in spouse:
+                       out+=s+newLine
+               for c in children:
+                       out+=c+newLine
+               for d in dates:
+                       out+=d+newLine
+
+               out+='</td></tr>'
+
+       out+='</table>'
        return out
 
+
+
+
 def search_name(name,newLine):
-       s = "SELECT name, ID"\
+       s = "SELECT name, people.ID,fullname,BornYear,DiedYear"\
         +" FROM people"\
-        +" WHERE name LIKE ?;"
+        +" WHERE fullname LIKE ? or name LIKE ?"\
+       +" ORDER BY BornYear;"
+
+       s2 = "SELECT family FROM families where ID=?"
 
        IDs=[]
        names=[]
 
        out = 'Names starting with %s:%s' % (name,newLine)
-       t = (name + '%',)
+       t = (name + '%',name+'%')
        fullIDs=[]
+       out+=pU.table_header(['link','name','born','died','family'],newLine)
        for row in run_query(s,t):
-                out += name_html(row,newLine) + newLine
+               b = pU.print_year(row[3])
+               d = pU.print_year(row[4])
+
+               id = row[1]
+               fams=''
+               for r in run_query(s2,(id,)):
+                       fams+=r[0]+' '
+
+               out+=pU.table_row([pU.name_html(row,newLine),row[2],b,d,fams],\
+                       newLine)
+
                fullIDs.append(row[1])
                names.append(row[0])
                IDs.append(row[1])
+       out+=pU.table_foot(newLine)
 
-        t = ('%' + name + '%',)
+        t = ('%' + name + '%','%'+name+'%')
        out += '%sNames containing %s:%s' %(newLine,name,newLine)
+       out+=pU.table_header(['link','name','born','died','family'],newLine)
         for row in run_query(s,t):
                if row[1] not in fullIDs:
-                       out += name_html(row,newLine) + newLine
-                       names.append(row[0])
+                       b = pU.print_year(row[3])
+                       d = pU.print_year(row[4])
+
+                       id = row[1]
+                       fams=''
+                       for r in run_query(s2,(id,)):
+                               fams+=r[0]+' '
+
+                       out+=pU.table_row([pU.name_html(row,newLine),\
+                               row[2],b,d,fams],newLine)
+                       names.append(row[0]+','+row[2])
                        IDs.append(row[1])
+       out+=pU.table_foot(newLine)
+
+       s = '''SELECT name,people.ID,style,fullname,bornYear, diedYear,
+       startYear,stopYear,family
+       FROM people INNER JOIN styles
+       ON styles.id = people.id
+       LEFT JOIN families ON people.ID = families.ID
+       WHERE style LIKE ?
+       ORDER BY bornYear;'''
        
-       s = "SELECT name,people.ID,style"\
-       +" FROM people INNER JOIN styles"\
-       +" ON styles.id = people.id"\
-       +" WHERE style LIKE ?;"
        out += '%sStyles containing %s:%s' %(newLine,name,newLine)
+       out+=pU.table_header(['link','name','born',\
+               'died','style','from','to','family'],newLine)
+       t = (t[0],)
        for row in run_query(s,t):
-               out +="%s %s %s" %(name_html(row,newLine),row[2],newLine)
+               b = pU.print_year(row[4])
+               d = pU.print_year(row[5])
+               start = pU.print_year(row[6])
+               stop = pU.print_year(row[7])
+               out+=pU.table_row([pU.name_html(row,newLine),\
+                       row[3],b,d,row[2],start,stop,row[8]],newLine)
+
+       out+=pU.table_foot(newLine)
         return [out,names,IDs]
 
+def count_names(newLine):
+       s="SELECT names.name, count(*),"\
+       +" min(nullif(bornYear,0)),max(nullif(bornYear,0))"\
+       +" FROM names INNER JOIN people on people.ID = names.id"\
+       +" group by names.name"\
+
+
+       t = "SELECT count(*) FROM people WHERE firstName = ?"
+       
+       out=pU.table_header(\
+               ['name','count','earliest born',\
+               'latest born','range','count as first name'],\
+               newLine)
+       for row in run_query(s,()):
+               for r in run_query(t,(row[0],)):
+                       c =r[0]
+               if row[3] is not None and row[2] is not None:
+                       range = row[3]-row[2]
+               else:
+                       range = None
+               out+=pU.print_name_count(row,range,c,newLine)
+       out+=pU.table_foot(newLine)
+       
+       return out
 
 def people_with_name(name,newLine):
-       s = "SELECT name, ID"\
+       s = "SELECT name, ID,fullname,bornYear,diedYear"\
        +" FROM people"\
-       +" WHERE firstname = ?;"
-
-       out = ''
+       +" WHERE firstname = ?"\
+       +" ORDER BY bornYear;"
 
        t = (name,)
 
+       out='As a first name'+newLine
+       out += pU.table_header(['ID','name','link','born','died'],newLine)
+       for row in run_query(s,t):
+               myName = pU.name_html(row,newLine)
+               by = pU.print_year(row[3])
+               dy = pU.print_year(row[4])
+               
+               out+=pU.table_row([row[1],row[2],myName,by,dy],newLine)
+
+       out+=pU.table_foot(newLine)
+
+       s = "SELECT people.name, people.ID,fullname,bornYear,diedYear"\
+       +" FROM people"\
+       +" LEFT JOIN names ON people.ID = names.ID"\
+       +" WHERE names.name=? AND firstName<>?"\
+       +" ORDER BY bornYear;"
+
+       t = (name,name)
+       out+=newLine+'As a middle name'+newLine
+       out +=pU.table_header(['ID','name','link','born','died'],newLine)
        for row in run_query(s,t):
-               out += name_html(row,newLine) + newLine
+               myName = pU.name_html(row,newLine)
+               by = pU.print_year(row[3])
+               dy = pU.print_year(row[4])
+               
+               out+=pU.table_row([row[1],row[2],myName,by,dy],newLine)
+
+       out+=pU.table_foot(newLine)
+       
+
 
        return out
 
-def count_birth_month(newLine):
-       s = "SELECT bornMonth, count(*)"\
-               +" FROM people"\
-               +" GROUP BY bornMonth"\
-               +" ORDER BY bornMonth;"
 
-       t = "SELECT * FROM people WHERE bornMonth = ?;"
+def count_children(newLine):
+
+       s = "SELECT count(*),nc"\
+       +" FROM ("\
+       +" SELECT count(*) AS nc"\
+       +" FROM parents INNER JOIN people ON parentID = people.ID"\
+       +" GROUP BY parentID"\
+       +" HAVING parentID <>'?'"\
+       +" AND parentID <> '0')"\
+       +" GROUP BY nc;"
 
        out = ''
        for row in run_query(s,()):
-               month = month_numbers(row[0])
-               out += "%s:%s%s" %( month,row[1],newLine)
-
-               if row[0]>12:
-                       u = (row[0],)
-                       out +=print_query(t,u,newLine)
-               
+               out += pU.print_children_count(row,newLine)
        return out
 
-def count_death_month(newLine):
-        s = "SELECT diedMonth, count(*)"\
-                +" FROM people"\
-                +" GROUP BY diedMonth"\
-                +" ORDER BY diedMonth;"
+def parents_with_children(nChildren,newLine):
+       s = "SELECT name,parentID"\
+       + " FROM parents"\
+       + " INNER JOIN people"\
+       + " ON parentID = people.ID"\
+       + " GROUP BY parentID"\
+       + " HAVING count(*) = ?"\
+       + " AND parentID <> 0"\
+       + " ORDER BY bornYear;"
 
-       t = "SELECT * FROM people WHERE diedMonth = ?;"
 
-        out = ''
-        for row in run_query(s,()):
-                month = month_numbers(row[0])
-                out += '%s:%s%s'%(month,row[1], newLine)
+       u = "SELECT count(*)"\
+       +" FROM  parents INNER JOIN people"\
+       +" ON parents.ID = people.ID"\
+       +" WHERE parentID = ?"\
+       +" AND (diedyear-bornyear>? OR died='present');"
 
-               if row[0]>12:
-                        u = (row[0],)
-                        out +=print_query(t,u,newLine)
+       out = "People who had %s %s:%s" \
+               %(nChildren,eU.print_children(nChildren),newLine)
+
+       out+=pU.table_header(['link','survived infancy','survived to adulthood'],newLine)
+       for row in run_query(s,(nChildren,)):
+               link = pU.name_html(row,newLine)
+               for r in run_query(u,(row[1],1)):       
+                       infant = r[0]
+               for r in run_query(u,(row[1],18)):
+                       adult = r[0]
+               out +=pU.table_row([link,infant,adult],newLine)
+       out+=pU.table_foot(newLine)
+       return out
 
-        return out
 
 def count_age_at_child(newLine):
 
-       s = "select p1.bornYear - p2.bornYear as age, count(*)"\
-               +" FROM"\
-               +" parents INNER JOIN people p1"\
-               +" ON parents.ID = p1.ID"\
-               +" INNER JOIN people p2"\
-               +" ON parents.parentID = p2.ID"\
-               +" WHERE p1.bornYear <> 0 and p2.bornYear<>0"\
-               +" GROUP BY age;"
+       s = "SELECT age,count(*)"\
+               +" FROM "+ageChildTable\
+               +" GROUP BY age ORDER BY age;"
 
        out = ''
        for row in run_query(s,()):
-               out +=print_age_child_count(row,newLine)
+               out +=pU.print_age_child_count(row,newLine)
 
        return out
 
 def people_had_child_at_age(age,newLine):
 
-       s = "select p1.bornYear - p2.bornYear as age, p1.name, p1.ID"\
-                +",p2.name,p2.ID FROM"\
-                +" parents INNER JOIN people p1"\
-                +" ON parents.ID = p1.ID"\
-                +" INNER JOIN people p2"\
-                +" ON parents.parentID = p2.ID"\
-               +" WHERE age = ? AND p1.bornYear<>0 AND p2.bornYear<>0"
 
-       t = (int(age),)
+       s = "SELECT age,cname,cID,pname,pID,bornYear"\
+               +" FROM "+ageChildTable\
+               +" WHERE age = ?;"
 
-       out = ''
+       t = (int(age),)
        out = 'At age ' + str(age) + ' :'
+       out+=pU.table_header(['parent','child','year'],newLine)
        for row in run_query(s,t):
-               parent = name_html([row[3],row[4]],newLine)
-               child = name_html([row[1],row[2]],newLine)
-               out += "%s%s had %s" % (newLine,parent,child)
+               parent = pU.name_html([row[3],row[4]],newLine)
+               child = pU.name_html([row[1],row[2]],newLine)
+               year = pU.print_year(row[5])
+               out+=pU.table_row([parent,child,year],newLine)
+#              out += "%s%s had %s" % (newLine,parent,child)
+       out+=pU.table_foot(newLine)
        return out
 
 def count_age_at_death(newLine):
-       s = "select diedYear-bornYear as age,count(*)"\
-               +" FROM people"\
-               +" WHERE diedYear<>0 AND bornYear<>0"\
+
+
+       s = "SELECT age,count(*)"\
+               +" FROM"\
+               + ageTable\
+               +" WHERE diedYear<>?"\
                +" GROUP BY age;"
+
        out=''
-       for row in run_query(s,()):
-               out += print_age_death_count(row,newLine)
+       for row in run_query(s,(presentYear,)):
+               out += pU.print_age_death_count(row,newLine)
+
+       s = "select diedYear,count(*)"\
+               +" FROM people"\
+               +" WHERE diedYear==?"\
+               +" GROUP BY diedYear;"
+       for row in run_query(s,(presentYear,)):
+               out += pU.print_age_death_count(row,newLine)
 
        return out
 
 def people_died_at_age(age,newLine):
-       s = "SELECT diedYear-bornYear as age, name,ID"\
-               +" FROM people"\
-               +" WHERE age = ? AND bornYear<>0 AND diedYear<>0;"
-       t = (int(age),)
-       out =''
-       out = 'These people died at age ' +str(age) + ' :'
-       for row in run_query(s,t):
-               out += newLine+ name_html([row[1],row[2]],newLine)
+       
+
+       if age != str(presentYear):
+
+               s = "SELECT age,name,ID,diedYear,bornYear"\
+               +" FROM "\
+               + ageTable\
+               +" WHERE age = ?"\
+               +" ORDER BY diedYear;"
+
+
+               t = (int(age),)
+               out = 'Died at age ' +str(age)+newLine
+               out+=pU.table_header(['link','in'],newLine)
+               for row in run_query(s,t):
+                       link = pU.name_html([row[1],row[2]],newLine)
+                       year = pU.print_year(row[3])
+                       out+=pU.table_row([link,year],newLine)
+       else:
+               s = "SELECT diedYear, name,ID,bornYear,url"\
+                       +" FROM people"\
+                       +" WHERE diedYear = ?;"
+               out = 'Still alive'+newLine
+               out+=pU.table_header(['link','born in','wikipedia'],newLine)
+               for row in run_query(s,(presentYear,)):
+                       link = pU.name_html([row[1],row[2]],newLine)
+                       born = pU.print_year(row[3])
+                       if row[4]=='.':
+                               wlink = ''
+                       else:
+                               wlink = '<a href="'+row[4]+'">wikipedia</a>'
+                       out+=pU.table_row([link,born,wlink],newLine)
+       out+=pU.table_foot(newLine)
        return out
 
+
 def all_ancestors(personID,newLine):
-       #find parents
 
-       ancestors = [personID]
-       allAncestors = [personID]
-       trackLevel = [0]
-       level = 0
-
-       t = "SELECT name,id FROM people WHERE id=?"
-       id = (personID,)
-
-       out = "Ancestors of "
-       for row in run_query(t,id):
-               out += name_html(row,newLine)+newLine
-
-       while len(ancestors)>0:
-               level = level+1
-               newA =[]
-               thisout = "%s %s:%s" \
-               % (newLine,parent_level(level,'parent'),newLine)
-
-               for ancestor in ancestors:
-                       [parents, parentIDs,parentNames] \
-                               = find_parents(ancestor)
-                       for i in range(len(parents)):
-                               r = [parentNames[i],parentIDs[i]]
-                               thisout +=name_html(r,newLine)+newLine
-                               
-                               if r[1] not in allAncestors\
-                               and r[1]!=0:
-                                       newA.append(r[1])
-                                       allAncestors.append(r[1])
-                                       trackLevel.append(level)
-                               
-               ancestors = newA
-               out  +=thisout
 
+       s = "SELECT name,id FROM people WHERE id=?"
+       t = (personID,)
+       out=pU.print_tagged_query("Ancestors of ",s,t,newLine)
+
+       names = ['me']
+
+       allAncestors,levelDict = gQ.ancestors(int(personID))
+
+       for level in levelDict.keys():
+
+               out += eU.parent_level(level,'parent')+':'+newLine
+
+               for a in levelDict[level]:
+                       if eU.is_number(a):
+                               for r in run_query(s,(a,)):
+                                       out+=pU.name_html(r,newLine)+newLine
+                       else:
+                               out+=a+newLine
 
        image = "<img src = ancestorGraph.py?id=%s>" %personID
        out +=newLine + image+newLine
-       return [out, allAncestors,trackLevel]
 
+       return [out, allAncestors,levelDict]
+def all_descendants(personID,newLine):
+       s = "SELECT name,id,bornYear,diedYear FROM people WHERE id=?"
+       t = (personID,)
+       out = pU.print_tagged_query("Descendants of ",s,t,newLine)
+       names = ['me']
+       allDescendants,levelDict = gQ.descendants(int(personID))
+       for level in levelDict.keys():
+               out+=eU.parent_level(level,'child')+':'+newLine
+
+
+               out+=pU.table_header(['Name','Born','Died'],newLine)
+               for a in levelDict[level]:
+                       if eU.is_number(a):
+                               for r in run_query(s,(a,)):
+                                       n=pU.name_html(r,newLine)
+                                       b = r[2]
+                                       d = r[3]
+                       else:
+                               n=a
+                               b=0
+                               d=0
+                       if b==0:
+                               b = '?'
+                       if d==0:
+                               d = '?'
+                       out+=pU.table_row([n,b,d],newLine)
 
-def common_ancestors(IDA, IDB,newLine):
-       out = 'Common ancestors of:' + newLine
+               
+               out+=pU.table_foot(newLine)
 
-       s = "SELECT name,id FROM people WHERE id==?"
+       return [out, allDescendants,levelDict]
+def check_relationship(a,b):
+       s = 'SELECT related FROM marriages'\
+               +' WHERE ida =? AND idb=? AND related<>0'
+       t = (min(a,b),max(a,b))
+       for r in run_query(s,t):
+               return r[0]
 
+def update_relationship(a,b,r,commit):
+       s = 'SELECT related FROM marriages'\
+               +' WHERE ida =? AND idb=?'
+       t = (min(a,b),max(a,b))
 
-       names=[]
+       for row in run_query(s,t):
+               u = "UPDATE marriages SET Related = ?"\
+               +" WHERE ida = ? AND idb=?;"
+               v = (r,)+t
+               try:
+                       run_query(u,v)
+                       if commit==1:
+                               commit_changes()
+                       return 
+               except:
+                       return 
+
+
+def find_relationship(IDA,IDB,commit):
+       nameList=[]
+       s  = "SELECT name,id FROM people WHERE id ==?"
        for id in (IDA,IDB):
                t = (id,)
                for row in run_query(s,t):
-                       out += name_html(row,newLine)+newLine
-                       names.append(row[0])
-               if id==IDA:
-                       out += 'and'
-               out = out + newLine
-
-       if len(names)!=2:
-               related = 'No details held on one party'
-               out += related
-               return [out,[],related]
+                       nameList.append(pU.name_html(row,'<br>'))
+                               
        
+       mrca,orca,aL,bL = gQ.relationship(IDA,IDB)
+       related = eU.relationship(aL,bL,nameList)
+       update_relationship(IDA,IDB,related,commit)
+       return related 
 
-       a = all_ancestors(IDA,newLine)
-       b = all_ancestors(IDB,newLine)
+def relation_text(IDA,IDB,newLine):
        
-       ancestorsB = set(b[1])
-       ancestorsA = set(a[1])
-
-       common = ancestorsA.intersection(ancestorsB)
-       common = list(common)
+       IDA = int(IDA)
+       IDB = int(IDB)
+       related = check_relationship(IDA,IDB)
+       
+       if related is None:
+               related = find_relationship(IDA,IDB,1)
+               
+       
+       return related
+
+def common_ancestors(IDA,IDB,newLine):
+       related = relation_text(IDA,IDB,newLine)
+       out = related+newLine
+
+       if related[-11:]!='not related':        
+               mrca,orca,aL,bL = gQ.relationship(int(IDA),int(IDB))            
+               s = 'SELECT name,id FROM people WHERE id=?'
+               cText = 'Most recent common ancestors:'+newLine
+               for c in mrca:
+                       for row in run_query(s,(c,)):
+                               cText+=pU.name_html(row,newLine)+newLine
+               cText+=newLine
+               findName = re.compile('(<a.*?</a>) and (<a.*?</a>).*')
+               findNameP = re.compile('(<a.*?</a>) is (<a.*?</a>).*')
+               found = findName.search(related)
+               if found is None:
+                       found = findNameP.search(related)
+               nameA = found.group(1)
+               nameB = found.group(2)
+               cText+=nameA+"'s "+eU.parent_level(aL,'parent')\
+                       +newLine\
+                       +nameB+"'s "\
+                       +eU.parent_level(bL,'parent')
+
+
+               out += newLine+cText
+       
+               image = "<img src = jointAncestorGraph.py?id=%s&id2=%s&mL=%s>"\
+                       %(IDA,IDB,max(aL,bL))
 
+                       out +=newLine + image
+       out+=newLine
 
-       aLevels=[]
-       bLevels=[]
-       for c in common:
-               i = a[1].index(c)
-               aLevels.append(a[2][i])
-               i = b[1].index(c)
-               bLevels.append(b[2][i])
+        return out
 
-       s = "SELECT Name, ID, bornyear"\
-       +" FROM people"\
-       +" WHERE ID IN ("
-       for i in range(len(common)):
-               s += "?,"
-       if len(common)>0:
-               s = s[:-1]
-       s = s+") ORDER BY bornyear;"
+def list_territories(newLine):
+       s = "SELECT DISTINCT short"\
+       +" FROM styleDecomp"\
+       +" ORDER BY short;"
 
+       out = ''
+       terrs = []
+       for row in run_query(s,()):
+               match = 0
+               
+               for i in range(len(eU.maleStyles)):
+                       m = eU.maleStyles[i]+' '
+                       if re.search(m,row[0]):
+                               match = 1
+                               break
+               if match==1:
+                       t = row[0]
+               else:
+                       t = eU.swap_gender(row[0])                      
 
-       if len(common)==0:
-               related = '%s and %s are not related' %(names[0], names[1])
-               out = out + newLine + related
-               return [out, common,related]
+               if t not in terrs:
+                       terrs.append(t)
 
+       for i in range(len(terrs)):
+               terrs[i] = eU.make_plural(terrs[i])
+       
+       for terr in terrs:
+               out += pU.terr_html(terr,newLine,0,0) +newLine
 
-       out += print_tagged_query('',s,common,newLine)
+       return out
 
-       indexA=[]
-       indexB=[]
 
-       for i in range(len(common)):
-               if aLevels[i] == min(aLevels):
-                       indexA.append(i)
-               if bLevels[i] == min(bLevels):
-                       indexB.append(i)
+def list_families(newLine):
+       s = "SELECT family, count(*)"\
+       +" FROM families GROUP BY family ORDER BY family;"
+       out = pU.table_header(['family','members'],newLine)
        
+       for row in run_query(s,()):
+               link=pU.fam_html(row[0],newLine)
+               count = row[1]
+               out+=pU.table_row([link,count],newLine)
 
 
-       s = "SELECT name, id"\
-       +" FROM people"\
-       +" WHERE id=?"
+       out+=pU.table_foot(newLine)
+       return out
 
-       out  += '%sMost Recent Common Ancestors:%s' %(newLine,newLine)
-       mrca = []
-       for a in indexA:
-               t = (common[a],)
-               mrca.append(common[a])
-               out += print_tagged_query('',s,t,newLine)
-               if a!=indexA[-1]:
-                       out += 'and' + newLine
+def combine_states(aTerritory):
+       p = aTerritory
+       places = []
 
-       out += parent_level(aLevels[indexA[0]],'parent')
-       if len(indexA) >1:
-               out += 's'
+       predeccessorStates = eU.predeccessorStates
+       successorStates = eU.successorStates
+       
+       ap = eU.make_male(aTerritory)
+       while predeccessorStates.has_key(ap):
+               ap = predeccessorStates[ap][0]
+               places.append(ap)
+       
 
-       out +=' of %s%s'%( name_html([names[0],IDA],newLine),newLine)
+       ap = eU.make_male(aTerritory)
+       while successorStates.has_key(ap):
+               ap = successorStates[ap]
+               places.append(ap)
 
-       out += parent_level(bLevels[indexB[0]],'parent')
-       if len(indexB)>1:
-               out += 's'
-       out += ' of %s%s' %(name_html([names[1],IDB],newLine),newLine)
+       return places
 
+def people_in(fam,newLine):
+       s = 'SELECT name,people.id,bornYear,diedYear FROM'\
+       +' people INNER JOIN families'\
+       +' ON people.id = families.id'\
+       +' WHERE family = ? ORDER BY bornYear;'
+       t = (fam,)
 
-       al = aLevels[indexA[0]]
-       bl = bLevels[indexB[0]]
+       out='Family: %s' %fam
+       out+=newLine+newLine
 
-       related = relationship(al,bl,names)
-       out +=newLine + related
+       out += pU.table_header(['id','name','born','died'],newLine)
+       ids=''
+       for row in run_query(s,t):
+               name=pU.name_html(row,newLine)
+               
+               b = row[2]
+               d = row[3]
+               if b==0:
+                       b='?'
+               if d==0:
+                       d = '?'
+               if d==presentYear:
+                       d='present'
+               out+=pU.table_row([row[1],name,b,d],newLine)
+               ids+='%d,' % row[1]
+       ids=ids[:-1]
+       out+=pU.table_foot(newLine)
+
+       image = "<img src = rulersGraph.py?names=%s>"\
+               % ids
+       out+=image
+       return out
 
 
-       image = "<img src = jointAncestorGraph.py?id="+str(IDA)\
-               +"&id2="+str(IDB) + "&LA=" + str(min(aLevels)) \
-               +"&LB=" + str(min(bLevels))+">"
+def rulers_of(aTerritory,newLine):
+       
+       out = pU.terr_html(eU.make_male(aTerritory),newLine,0,0)+newLine
+       
+       otherStates = combine_states(aTerritory)
+       if len(otherStates)>0:
+               out+="Otherwise:"+newLine
+       for s in otherStates:
+               out+=pU.terr_html(s,newLine,0,0)+newLine
 
-       image = "<img src = jointAncestorGraph.py?id=%s&id2=%s&LA=%d&LB=%d>"\
-               %(IDA,IDB,min(aLevels),min(bLevels))
+       out += find_rulers(aTerritory,newLine)[0]
 
 
-        out +=newLine + image+newLine
+       image = "<img src = rulersGraph.py?terr=%s>" \
+               %(re.sub(' ','%20',aTerritory))
+       out+=image
+       return out
 
-       return [out,common,related]
+def find_rulers(aTerritory,newLine):
+       places = [eU.make_singular(aTerritory)]
+       places+=combine_states(aTerritory)
 
-def relationship(level1, level2,names):
+       out = ''
+       fullTerr = []
 
-       if level1==0 and level2==0:
-               return "%s is %s" %(names[0],names[1])
-       if level1==0:
-               return "%s is %s's %s" \
-                       %(names[0],names[1],parent_level(level2,'parent'))
+       for p in places:
+               s = "SELECT DISTINCT short"\
+                       +" FROM styleDecomp"\
+                       +" WHERE short LIKE ?"\
+                       +" OR short LIKE ?"\
+                       +" OR short LIKE?;"
+               t = ('%'+p+'%','%'+eU.swap_gender(p)+'%',\
+               '%'+eU.make_plural(p)+'%')
 
-       if level2==0:
-               return "%s is %s's %s" \
-                       %(names[1],names[0],parent_level(level1,'parent'))
 
+               for row in run_query(s,t):
+                       fullTerr.append(row[0])
 
-       if level1>=level2:
-               remove = level1-level2
-               cousinNum = level2-1
-       else:
-               remove = level2-level1
-               cousinNum = level1-1
-
-       if cousinNum==0:
-               uaLevel =  parent_level(remove,'uncle or aunt')
-               if level1<= level2:
-                       return "%s is %s's %s" % (names[0],names[1],uaLevel)
-
-               if level2<level1:
-                       return "%s is %s's %s" % (names[1],names[0],uaLevel)
-
-       c=ordinal_numbers(cousinNum)
-       if remove == 1:
-               rem = 'once'
-       elif remove ==2:
-               rem = 'twice'
-       else:
-               rem = str(remove) + ' times'            
-
-       r = "%s and %s are %s cousins" % (names[0],names[1],c)
-       if remove !=0:
-               r += ' %s removed' % rem
-
-       return r
-
-def parent_level(level,type):
-       if level == 0:
-               if type=='parent':
-                       return 'self'
-               else:           
-                       return 'sibling'
-       out = type
-       if level ==1:
-               return out
-       if type =='parent':
-               out = 'grand ' + out
-       else:
-               out = 'great '+out
-       if level ==2:
-               return out
-       for i in range(2,level):
-               out = 'great '+out
-       return out
 
-def rulers_of(aTerritory,newLine):
+       if len(fullTerr)==0:
+               return out,[]
+               
+       tq = "SELECT styleDecomp.style,name,people.ID,"\
+               +" startyear,stopyear,short"\
+               +" FROM styleDecomp INNER JOIN styles"\
+               +" ON styleDecomp.style = styles.style"\
+               +" INNER JOIN people"\
+               +" ON people.ID = styles.ID"\
+               +" WHERE short IN ("
+
+       for i in range(len(fullTerr)):
+               tq+='?,'
+       tq = tq[:-1]    
+       tq+=" )ORDER BY startyear,stopyear;"
+       s = ''
+
+       t = tuple(fullTerr)
+       rulers = []
+       out+=pU.table_header(['link','style','from', 'to','house'],newLine)
+       for row in run_query(tq,t):
+               #if row[0]!=s:
+               #       out +=newLine+row[0]+newLine
+               #       s = row[0]
+               fy = pU.print_year(row[3])
+               ft = pU.print_year(row[4])
+               
 
-       tq = "SELECT name, people.ID, startyear,stopyear,territory"\
-               +" FROM territories INNER JOIN people"\
-               +" ON people.ID = territories.ID"\
-               +" WHERE territory LIKE ?"\
-               +" ORDER BY territory,startyear,stopyear;"
+               id = row[2];
+               u = "SELECT family FROM families WHERE id = ?"
+               v = (id,)
+               house = ''
+               for r in run_query(u,v):
+                       house+=pU.fam_html(r[0],newLine)
 
+               out+=pU.table_row([pU.name_html(row[1:],newLine),\
+                       row[0],fy,ft,house],newLine)
+               
+               if row[2] not in rulers:
+#                      rulers.append(row[2])
+                       rulers = [row[2]]+rulers
+       out+=pU.table_foot(newLine)
+       return [out,rulers]
+
+def find_adjacent(terr,start,stop,id):
+       s = "SELECT name,people.id,stopyear"\
+       +" FROM people INNER JOIN styles"\
+       +" ON people.id = styles.id"\
+       +" INNER JOIN styleDecomp"\
+       +" ON styles.style = styleDecomp.style"\
+       +" WHERE short = ? AND stopyear<=? AND stopyear <>0 AND people.id<>?"\
+       +" ORDER BY stopyear DESC, startyear DESC;"
 
 
-       thisT  = ''
-       last = ''
-       out = ''
-       for row in run_query(tq,(aTerritory+'%',)):
-               if row[4]!=last and last!='':
-                       out += 'Rulers of %s:%s%s%s'\
-                       %(terr_html(last,newLine,0,0),newLine,thisT,newLine)
-                       thisT = ''
+       t = (terr,start,id)
+       myPrevious=[]
+       y=0
+       for row in run_query(s,t):
+               myPrevious = row[0:2]
+               y = row[2]
+               break
+
+       t = (eU.swap_gender(terr),start,id)
+       for row in run_query(s,t):
+               if row[2]>y:
+                       myPrevious = row[0:2]
+               break
+
+       u = "SELECT name,people.id,startyear"\
+        +" FROM people INNER JOIN styles"\
+       +" ON people.id = styles.id"\
+               +" INNER JOIN styleDecomp"\
+        +" ON styles.style = styleDecomp.style"\
+        +" WHERE short = ? AND startyear>=? AND startyear <>0 AND people.id<>?"\
+        +" ORDER BY startyear;"
+               
+       v = (terr,stop,id)
+       myNext=[]
+       y=float('inf')
+        for r in run_query(u,v):
+               myNext = r[0:2]
+               y = r[2]
+                break
+
 
-               thisT += "%s from %s to %s%s" \
-               % (name_html(row,newLine),row[2],row[3],newLine)
-               last = row[4]
+       v = (eU.swap_gender(terr),stop,id)
+       for r in run_query(u,v):
+               if r[2]<y:
+                       myNext = r[0:2]
+               break
 
-       out += 'Rulers of %s:%s%s' \
-       % (terr_html(row[4],newLine,0,0),newLine,thisT)
+       return [myPrevious, myNext]
 
-       return out      
 
 def find_person(ID):
-        s = "SELECT name || ','||ID, name, ID FROM people WHERE ID=?"
+        s = "SELECT name||','||ID, name, ID FROM people WHERE ID=?"
         t = (ID,)
 
         for row in run_query(s,t):
@@ -805,19 +1503,7 @@ def find_person(ID):
                selfName = row[1]
                selfID = row[2]
                 return [Self, selfID,selfName]
-def isKing(ID):
-       ID = int(ID.split(',')[-1])
-       s=  "SELECT style FROM styles WHERE ID=?"
-       t = (ID,)       
 
-       k = 0
-       spellingsOfKing = ['King','Queen','king','queen']
-       for row in run_query(s,t):
-               for s in spellingsOfKing:
-                       if re.match('.*'+s,row[0]) != None:
-                               k = 1
-
-       return k
 
 def find_parents(ID):
         s = "SELECT name, parentID"\
@@ -833,7 +1519,7 @@ def find_parents(ID):
         for row in run_query(s,t):
                 if row[0]!=None:
                         p = row[0] + ',' + str(row[1])
-                        pID = row[1]
+                        pID = int(row[1])
                        pN = row[0]
                 else:
                         p = row[1] + ',p' + str(ID)
@@ -843,41 +1529,79 @@ def find_parents(ID):
                 parentIDs.append(pID)
                parentNames.append(pN)
 
-       if parents[1]==parents[0]:
+       if len(parents)>1 and parents[1]==parents[0]:
                parents[1] = parents[1] + ' 2'
 
         return [parents,parentIDs,parentNames]
 
+
+
+def is_married(IDa, IDb):
+       
+       s = "SELECT idb FROM marriages WHERE ida =?;"
+       t = (min(IDa,IDb),)
+
+               
+       for row in run_query(s,t):
+               if int(row[0])==max(IDa,IDb):
+                       return 1
+       return 0        
+
 def find_spouses(ID):
         t = (ID,)
 
-        order = [["IDb","IDa"],["IDa","IDb"]]
 
         spouses = []
         spousesID=[]
        spousesNames=[]
-        for o in order:
-                s = "SELECT name, marriages." + o[0]\
-                +" FROM marriages LEFT JOIN people"\
-                +" ON marriages." +o[0]+" = people.ID"\
-                +" WHERE marriages."+o[1]+" = ?;"
-
-
-                for row in run_query(s,t):
-                        if row[0]!=None:
-                                s = row[0] + "," +str(row[1])
-                                sID = row[1]
-                                       sN = row[0]
-                       elif row[1] !='':
-                                s=row[1] + ",s" +str(ID)
-                                sID = 0
+       spouseDates = []
+
+       s = "SELECT ida,a.name,idb,b.name,marriage,end,"\
+       +" a.bornYear,a.diedYear,b.bornYear,b.diedYear,marriageYear,"\
+       +" a.diedMonth,a.diedDay,b.diedMonth,b.diedDay"\
+       +" FROM marriages"\
+       +" LEFT JOIN people AS a"\
+       +" ON ida = a.ID"\
+       +" LEFT JOIN people AS b"\
+       +" ON idb = b.ID"\
+       +" WHERE ida = ? OR idb = ?"\
+       +" ORDER BY marriageYear;"\
+
+       t = (ID,ID)
+       for row in run_query(s,t):
+               sID = ''
+               if row[0]!=int(ID): #spouse is ida
+                       if row[1]!=None:
+                               s = row[1]+","+str(row[0])
+                               sID = row[0]
                                sN = row[1]
-                        if row[1] !='':
-                                spouses.append(s)
-                                spousesID.append(sID)
-                               spousesNames.append(sN)
-
-        return [spouses,spousesID,spousesNames]
+                       elif row[0]!='':
+                               s = row[0]+",s"+str(ID)
+                               sID = 0
+                               sN = row[0]
+                       myDates = [row[1],row[0],row[4],row[5],row[6],\
+                       row[7],row[11],row[12]]
+               else: #spouse is idb
+                       if row[3]!=None:
+                               s = row[3]+","+str(row[2])
+                               sID = row[2]
+                               sN = row[3]
+                       elif row[2]!='':
+                               s = row[2]+",s"+str(ID)
+                               sID = 0
+                               sN=  row[2]     
+                       myDates = [row[3],row[2],row[4],row[5],row[8],row[9],\
+                               row[13],row[14]]
+                       for i in range(len(myDates)):
+                               if myDates[i] is None:
+                                       myDates[i]=0
+               if sID!='':
+                       spouses.append(s)
+                       spousesID.append(sID)
+                       spousesNames.append(sN)
+                       spouseDates.append(myDates)
+
+        return [spouses,spousesID,spousesNames,spouseDates]
        
 
 def find_children(ID):
@@ -887,11 +1611,11 @@ def find_children(ID):
                 +" ON p1.ID = p2.ID"\
                 +" INNER JOIN parents p3"\
                 +" ON p1.ID = p3.ID"\
-                +" LEFT JOIN people"\
-                +" p4 ON p3.parentID = p4.ID"\
+                +" LEFT JOIN people p4"\
+                +" ON p3.parentID = p4.ID"\
                 +" WHERE p2.parentID = ?"\
                 +" AND p3.parentID<>?"\
-                +" ORDER BY p1.bornYear;"
+                +" ORDER BY p1.bornYear,p1.ID;"
 
         t = (ID,ID)
 
@@ -933,26 +1657,65 @@ def person_info(personID,newLine):
 
        mainDiv = ''    
        #Id, Name, Dates, Style, Style-Dates
-       s = "SELECT * FROM people WHERE ID = ?"
+       s = "SELECT id,name,fullname,url,picture,Born,Died,"\
+               +" bornYear,diedYear,diedMonth,diedDay"\
+               +" FROM people WHERE ID = ?"
+       rows = 0
        for row in run_query(s,t):
+               rows = 1
                mainDiv += startP
-               mainDiv += 'ID: %s%s' %(row[0] ,newLine)
-               mainDiv += print_tagged_name('Name',[row[1], row[0]]\
+               preURL = pU.name_html(['previous',row[0]-1],newLine)
+               postURL =  pU.name_html(['next',row[0]+1],newLine)
+               mainDiv += 'ID: %s(%s %s)%s' %(row[0],preURL,postURL ,newLine)
+               mainDiv += pU.print_tagged_name('Name',[row[1], row[0]]\
                        ,newLine)
+               mainDiv+='Full Name: '+row[2]+newLine
                mainDiv +=endP
+
                name = row[1]
-               url = row[9]
-               picture = row[10]
+               fullname = row[2]
+               url = row[3]
+               picture = row[4]
+               born = row[5]
+               died = row[6]
+               bornYear = row[7]
+               diedYear = row[8]
+               diedMonth = row[9]
+               diedDay = row[10]
 
                mainDiv += startP
-               mainDiv += '%sBorn:%s%s '% (newLine,row[3],newLine)
-               bornYear = row[4]
-               mainDiv +='Died: %s' % row[5]
+               mainDiv += '%sBorn:%s%s '% (newLine,born,newLine)
+
+
+
+               if died!='present':
+                       mainDiv +='Died: %s' % died
+       
+                       if diedYear != 0 and bornYear !=0:
+
+                               u = "SELECT age FROM"+ageTable\
+                                       +" WHERE id = ?"
+                               
+                               for row in run_query(u,t):
+                                       mainDiv += ", aged %s" %(row[0])
+               else:
+                       u = "SELECT age FROM" + ageNowTable\
+                               +" WHERE id = ?"
+
+                       for row in run_query(u,t):
+                               mainDiv +='Still Alive, aged %s' %(row[0])
+
+                       
 
-               if row[6] != 0 and row[4] !=0:
-                       mainDiv += ", aged %s" %(row[6]-row[4])
                mainDiv +=endP
 
+       s = 'SELECT family FROM families WHERE ID = ?'
+       
+       for row in run_query(s,t):
+               mainDiv+='Family: %s' % pU.fam_html(row[0],newLine)
+
+       if rows==0:
+               return ''
 
        s = "SELECT * FROM styles WHERE ID = ?"
        for row in run_query(s,t):
@@ -961,16 +1724,19 @@ def person_info(personID,newLine):
 
                mainDiv += 'Territories:%s' % newLine
 
-               u = "SELECT * FROM territories"\
-               +"  WHERE ID =? AND startYear =? AND stopYear=?"
-               v=(personID,row[3],row[5])
+               w = "SELECT short FROM styleDecomp"\
+               +" WHERE style = ?"
 
-               any = 0
-               for r in run_query(u,v):
-                       mainDiv += terr_html(r[1],newLine,r[3],r[5]) +','
-                       any = 1
-               if any ==1:
-                       mainDiv = mainDiv[:-1] + newLine
+               for r in run_query(w,(row[1],)):
+                       [p,n]=find_adjacent(r[0],row[3],row[5],personID)
+                       if len(p)>0:
+                               mainDiv +='%s|'%(pU.name_html(p,newLine))
+
+                       mainDiv+=pU.terr_html(r[0],newLine,row[3],row[5])
+
+                       if len(n)>0:
+                               mainDiv+='|%s'%(pU.name_html(n,newLine))
+                       mainDiv+=newLine
 
                mainDiv +=  'From: '+row[2] + newLine
                 mainDiv +=  'To: '+row[4]      
@@ -981,13 +1747,6 @@ def person_info(personID,newLine):
 
 
        mainDiv += startP
-       s = "SELECT people.Name,consort "\
-               +"FROM consorts LEFT JOIN people"\
-               +" ON people.ID = consorts.consort"\
-               +" WHERE consorts.ID = ?"
-       for row in run_query(s,t):
-               mainDiv += print_tagged_name\
-               ('Consort of',row,newLine)
        mainDiv += endP
 
        #find parents
@@ -996,22 +1755,118 @@ def person_info(personID,newLine):
        mainDiv += startP
        for i in range(len(parents)):
                r = [parentNames[i],parentIDs[i]]
-               mainDiv += print_tagged_name('Parent',r,newLine)
+               mainDiv += pU.print_tagged_name('Parent',r,newLine)
        mainDiv += endP
 
        #find spouses
 
-       [spouses,spousesID,spousesNames] = find_spouses(personID)
+       [spouses,spousesID,spousesNames,spouseDates] = find_spouses(personID)
 
        mainDiv += startP
 
        for i in range(len(spouses)):
                r = [spousesNames[i],spousesID[i]]
-               mainDiv += print_tagged_name('Spouse',r,newLine)
-               mainDiv += \
-               relationship_html(personID,r[1],newLine)
+               d = spouseDates[i][2:8]
+
+               mainDiv += pU.print_tagged_name('Spouse',r,newLine)
+               if d[0]!='.':
+                       mainDiv+='married: '+d[0]+newLine
+               else:
+                       mainDiv+='marriage dates not yet recorded'\
+                       + newLine
+               if d[1]!='.':
+                       mainDiv+='marriage ended: '+d[1]+newLine
+               elif d[0]!='.':
+                       dPrint = 1
+                       if d[3]<diedYear:
+                               y = pU.print_year(d[3])
+                               
+                               ot = 'their'
+                       elif d[3]==diedYear and diedYear!=presentYear:
+                               y = d[3]
+                               
+                               if d[4]<diedMonth:
+                                       ot = 'their'
+                               elif d[4]>diedMonth:
+                                       ot = 'own'
+                               else:
+                                       if d[5]<diedDay:
+                                               ot = 'their'
+                                       elif d[5]>diedDay:
+                                               ot = 'own'
+                                       else:
+                                               dPrint = 0
+                                               mainDiv+='until both of their deaths in %s%s'\
+                                                       %(str(y),newLine)
+
+                       else:
+                               if diedYear==presentYear:
+                                       dPrint = 0
+                                       mainDiv+='still married%s'%(newLine)
+                               else:
+                                       y = str(pU.print_year(diedYear))
+                                       
+                                       ot='own'
+                       if dPrint==1:
+                               mainDiv+='until %s death in %s%s' %(ot,y,newLine)
+
+               if r[1]!=0:
+                       mainDiv +=''
+                       #mainDiv += \
+                       #       pU.relationship_html(personID,r[1],newLine)\
+                       #       +newLine
+               else:
+                       mainDiv+=newLine
+
+               marriageStyles = ''
+               mStart = int(findYear.find_year(d[0]))
+               mStop = int(findYear.find_year(d[1]))
+               if mStop == 0:
+                       mStop = diedYear
+
+               if mStart==0:
+                       continue
+
+
+               ss = "SELECT styles.style, short,startyear,"\
+               +" stopyear"\
+               +" FROM styles INNER JOIN styledecomp"\
+               +" ON styles.style = styledecomp.style"\
+               +" WHERE  id = ?;"
+               st = (spousesID[i],)
+
+               for sr in run_query(ss,st):
+                       starty = int(sr[2])
+                       stopy = int(sr[3])
+                       
+                       if mStart>stopy:
+                               continue
+                       if mStop<starty and mStop != 0:
+                               continue
 
-       mainDiv  = mainDiv + endP
+
+                       if mStart>starty:
+                               fromy = mStart
+                       else:
+                               fromy = starty
+
+                       if mStop<stopy and mStop !=0:
+                               to = str(mStop)
+                       elif diedYear<=stopy:
+                               to = str(pU.print_year(diedYear))
+                               
+                       else:
+                               to = str(sr[3])
+
+
+                       marriageStyles+='%d to %s: %s%s' \
+                       %(fromy, to,eU.swap_gender(sr[1]),newLine)
+
+               if len(marriageStyles)>0:
+                       mainDiv+="Through this marriage:"+newLine
+                       mainDiv+=marriageStyles+newLine
+
+       mainDiv  = mainDiv + newLine+endP
 
        #find children
        [nodes,IDs,names,childrenBorn] = \
@@ -1020,30 +1875,35 @@ def person_info(personID,newLine):
        top = ''
        for i in range(len(nodes)):
                cr = [names[i][0],IDs[i][0]]
-               thisChild = print_tagged_name('Child',cr,newLine)
+               thisChild = pU.print_tagged_name('Child',cr,newLine)
 
                opr=[names[i][1],IDs[i][1]]
                top = names[i][1]
                if i==0 or  top != names[i-1][1]:
                        mainDiv +=endP
                        mainDiv += startP
-                       mainDiv += print_tagged_name\
+                       mainDiv += pU.print_tagged_name\
                         ('With',opr, newLine)
 
 
                #age when child born
                cb = childrenBorn[i]
                if  cb!=0 and  bornYear != 0:
-                       age = cb-bornYear
-                       thisChild = thisChild[:-4] + \
-                               " at the age of "+str(age) + newLine
+
+                       cs = "SELECT age,pID,cID FROM "+ageChildTable\
+                               +"WHERE pID=? AND cID =?"
+                       ct = (personID,IDs[i][0])
+
+                       for row in run_query(cs,ct):
+                               thisChild = thisChild[:-4]+\
+                               " at the age of "+str(row[0]) +newLine
                mainDiv += thisChild
        
        mainDiv += endP
 
 
        if newLine == '<br>':
-               output = '<div id = "main" style = " float:left">';
+               output = '<div id = "main" style = " float:left;width:75%">';
                output += mainDiv +  "</div>"
 
                output += "<div id = 'image' "\
@@ -1146,11 +2006,14 @@ def connect():
        global conn
        conn = sqlite3.connect\
                ('/home/naath/familyTreeProject/familyTree/tree.db')
-       return conn
+       conn.cursor().execute('PRAGMA journal_mode = WAL')
 
 def make_cursor():
        return conn.cursor()
+
+def commit_changes():
+       conn.commit()
        
-def close(conn):
+def close():
        conn.close
 
index 873d269da6ce017db0f7158400e387550e077ace..26725aca1b5f8377723e9a7760aaf45e9244d153 100755 (executable)
@@ -3,18 +3,13 @@
 import re
 
 def find_year(date):
+       if date == 'present':
+               return 1000000
 
        dates = date.split('/')
 
-       if len(dates)==3:
-               year =  dates[2]
-
-       elif len(dates)==2:
-               year =  dates[1]
-
-       elif len(dates)==1:
-               year = dates[0]
-
+       if len(dates)>0:
+               year = dates[-1]
        else:
                year = 0
 
@@ -26,7 +21,6 @@ def find_year(date):
        else:
                year =  matches.group(0)
 
-
        return year
 
 
@@ -45,3 +39,29 @@ def find_month(date):
        else:
                return 0
 
+def find_day(date):
+       dates = date.split('/')
+       if len(dates)==3:
+               parts = dates[0].split('-')
+               matches = re.search('[0-9]{1,2}',parts[0])
+               if matches == None:
+                       return 0
+               else:
+                       return matches.group(0)
+
+       else:
+               return 0
+
+def reverse_order(date):
+
+       year = find_year(date)
+       if year==0:
+               year = '0000'
+       month = find_month(date)
+       if month==0:
+               month='00'
+       day = find_day(date)
+       if day==0:
+               day = '00'
+
+       return '%s-%s-%s' %(year,month,day)
index 027d96b0dce33fdb99b79bacc08cbf810ab04bb9..bc1f9e33206a3fd38135959033884d17c2a57928 100755 (executable)
@@ -1,6 +1,19 @@
  rm tree.db
+#./readcsv.py
+#echo 'read csv'
 ./makeTables.py | sqlite3 tree.db
 ./makeMarriageTable.py |sqlite3 tree.db
-./marriageSQL.py | sqlite3 tree.db
-./text2SQL.py | sqlite3 tree.db
+echo 'made tables'
+#./marriageSQL.py | sqlite3 tree.db
+#echo 'marriage sql'
+#./text2SQL.py | sqlite3 tree.db
+#echo 'text sql'
+#./csv2sql.py | sqlite3 tree.db
+./csv2sql.py
+echo 'csv2sql'
+./stylesFettling.py
+echo 'styles'
 
+../cgiFiles/bigGraph.py
+echo 'graph'
+#echo 'no graph'
index 900bb386ed2cb80dc0287f490dba1aa2d3c466bf..f5eea8c86df2056dffe938c5670708df7961b236 100755 (executable)
@@ -1,9 +1,19 @@
 #!/usr/bin/python
 
-s = 'CREATE TABLE marriages\n(\nIDa int,\nIDb text);'
+s = 'CREATE TABLE marriages\n(\nIDa int,\nIDb text,'\
+       +'\nMarriage text,\nend text,\nmarriageYear int,'\
+       +'\nstartDate date,\nendDate date,\nRelated text);'
 
 print s
 
-s = 'CREATE TABLE consorts\n(\nID int,\nconsort text);'
+#s = 'CREATE TABLE consorts\n(\nID int,\nconsort text);'
+
+#print s
+
+s = 'CREATE INDEX spid_index ON marriages (IDa);'
+
+print s
+
+s = 'CREATE INDEX spidb_index ON marriages (IDb);'
 
 print s
index ca3f6038afd9677d0326b9446ea83490f57728cb..089031620c3ccc4b6b63f66c31305bea67d1a4e5 100755 (executable)
@@ -2,22 +2,43 @@
 
 s = 'CREATE TABLE people\n(\nID int,\nName text,\nFirstName'\
        +' text,\nBorn text,\nbornYear int,\nDied text,'\
-       +'\ndiedYear int,\nbornMonth int,\ndiedMonth,'\
-       +'\nURL text,\nPicture text);'
+       +'\ndiedYear int,\nbornMonth int,\ndiedMonth int,'\
+       +'\nURL text,\nPicture text,\nPreName text,\nPostName text,'\
+       +'\nfullName text, \nbornDay int,\ndiedDay int);'
 
 print s
 
-s = 'CREATE TABLE styles\n(\nID int,\nStyle text,\nStart text,\nstartYear int'\
-       +',\nStop text,\nstopYear int);'
+s = 'CREATE UNIQUE INDEX id_index ON people (ID);'
+
+print s
+
+s = 'CREATE TABLE names\n(\nID int,\nName text);'
 
 print s
 
-s = 'CREATE TABLE territories\n(\nID int,\nTerritory text,'\
-       +'\nStart text,\nstartYear,\nStop text,\nstopYear);'
+s = 'CREATE TABLE styles\n(\nID int,\nStyle text,\nStart text,\nstartYear int'\
+       +',\nStop text,\nstopYear int,\nstartDate date,\nstopDate date);'
 
 print s
 
+#s = 'CREATE TABLE territories\n(\nID int,\nTerritory text,'\
+#      +'\nStart text,\nstartYear,\nStop text,\nstopYear);'
+#
+#print s
+
 s = 'CREATE TABLE parents\n(\nID int,\nparentID text);'
 
 print s
 
+s = 'CREATE TABLE families\n(\nID int, \nfamily text);'
+
+print s
+
+s = 'CREATE INDEX pid_index ON parents (ID);'
+
+print s
+
+s = 'CREATE INDEX sid_index ON styles (ID);'
+
+print s
+
index fddd6f75106ed1fe2050d24a2169d4e54b8b5bd2..b69be0dea4424c88c42acccd1c462f522a03504d 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/python
 
 def add_quotes(s):
-       return '\''+s+'\''
+       return '"'+s+'"'
 
 def is_number(s):
     try:
@@ -23,32 +23,49 @@ f = open('tree','r')
 lastline='';
 
 s = 0;
+ss=0;
 for line in f:
-       thisline = line
+       thisline = line[:-1]
        if thisline[-2:] == '\r\n':
                thisline = thisline[:-2]
        if lastline=='ID:':
                thisID = is_number(thisline)
-       if s == 1:
-               if thisline =='':
-                       s=0
-                       for spouse in spouses:
+       if s==3:
+               do = 0;
+               try:
+                       if float(thisID)<float(spouse):
+                               do=1
+               except:
+                       do =1
+                       
+               if do==1:
+                       if marriage!='"."':
+                               m = marriage[1:-1].split('/')
                                try:
-                                       if float(thisID) < float(spouse):
-                                               s = make_insert('marriages',
-                                               [thisID,spouse])
-                                               print s
-                               except ValueError:
-                                       s = make_insert('marriages',
-                                       [thisID,spouse])
-                                       print s
-
-               else:
-                       spouses.append(is_number(thisline))
-       if lastline == 'Spouses:':
-               spouses = [is_number(thisline)]
-               s = 1;
+                                       y = int(m[-1])
+                               except:
+                                       y = 0   
+                       s = make_insert('marriages',\
+                       [thisID,spouse,marriage,marriageEnd,str(y)])
 
+                       print s
+               s=0
+
+       if s==2:
+               marriageEnd=add_quotes(thisline)
+               s=3
+       if s==1:
+               marriage = add_quotes(thisline)
+               s=2
+
+       if lastline == 'Spouses:' or (ss==1 and s==0):
+               if len(thisline)>0 and thisline[-1] != ':':
+                       spouse = is_number(thisline)
+                       s = 1;
+                       ss=1;
+               elif len(thisline)>0:
+                       ss=0;
+                       s=0;
 
        if lastline == 'Consort of:':
                consort = is_number(thisline)
old mode 100644 (file)
new mode 100755 (executable)
index 37f583b..a380870
@@ -20,3 +20,12 @@ Check cousin marriages against:
 http://en.wikipedia.org/wiki/List_of_coupled_cousins#Royalty
 
 Fulk DID NOT marry Henry IV!
+
+Eleanor of A overlaps with John?
+
+Lots of people are lacking in styles.
+
+Edward son of Mary de Bohun and Henry IV - fix wikipedia! update database, 
+check other wives for offspring unlisted on husband's pages
+
+Fix king of Franks/France with actual title!
index 685f65429e2d4e80dd8d5d930dc7863131eeb5eb..b1d07efcb0ceee699da408a1490eb5de9b6dbbe4 100755 (executable)
@@ -17,4 +17,4 @@ elif len(sys.argv)==3:
        o = askQuestion.common_ancestors(sys.argv[1],sys.argv[2],'\n')
        print o[0]
        
-askQuestion.close(conn)
+askQuestion.close()
index 75ba3b2884b9be1244b2d41f4ab78f7e510ef690..469c88077913779ffee03a86dc265e89ea9844b0 100755 (executable)
@@ -7,15 +7,15 @@ import sys
 conn = askQuestion.connect()
 
 
-o = askQuestion.count_names('\n')
+#o = askQuestion.count_names('\n')
 
-print o
+#print o
 
-o = askQuestion.count_birth_month('\n')
-print o
+#o = askQuestion.count_birth_month('\n')
+#print o
 
-o = askQuestion.count_death_month('\n')
-print o
+#o = askQuestion.count_death_month('\n')
+#print o
 
 #o = askQuestion.list_territories('\n')
 
@@ -27,4 +27,7 @@ print o
 #o = askQuestion.count_age_at_child('\n')
 #print o
 
+o = askQuestion.count_age_at_death('\n')
+print o
+
 askQuestion.close(conn)
index d2d229074a28ce23487894b4345086b63cf2ad36..e064d398f4c02de602175a17736ee751c42fd78e 100755 (executable)
@@ -4,7 +4,7 @@ import askQuestion
 import sys     
 
 
-conn = askQuestion.connect()
+askQuestion.connect()
 
 
 if len(sys.argv) < 2:
@@ -17,4 +17,4 @@ else:
 print o
 
 
-askQuestion.close(conn)
+askQuestion.close()
index 01c562fcd86a40819828e5b0f87ca33597c771b5..549374dfa14f35d99f357ed6aa6314a445f9e0af 100755 (executable)
@@ -1,25 +1,75 @@
 #!/usr/bin/python
 
-
-import askQuestion
 import sys
 import re
+sys.path.append('/home/naath/familyTreeProject/cgiFiles')
+import askQuestion as aQ
+import graphQuestions as gQ
+import printUtils as pU
+import englishUtils as eU
+import everyPage
+import cgi
+
+[conn,form]=everyPage.top()
+
+
+conn = aQ.connect()
+
+s = "select * from marriages ORDER BY ida;"
+printMe=''
+nPeople = aQ.number_people()
 
-conn = askQuestion.connect()
+th = '<th>'
+eth = '</th>'
+td = '<td>'
+etd = '</td>'
 
 
-s = "select * from marriages;"
+#printMe=pU.table_header(['person 1','ID1','person 2','ID2','relationship','year of marriage'],'<br>')
+printMe=pU.table_header(['person 1','person 2','relationship','year of marriage'],'<br>')
 
-for row in askQuestion.run_query(s,()):
-       ID1=row[0]
-       ID2=row[1]
+cuz = re.compile('(<a.*?</a>) and (<a.*?</a>) are (.*)')
+parent = re.compile('(<a.*?</a>) is (<a.*?</a>)\'s (.*)')
+for row in aQ.run_query(s,()):
+       if not eU.is_number(row[1]):
+               continue
+
+       ID1=int(row[0])
+       ID2=int(row[1])
+       if ID2>nPeople or ID1>nPeople or  ID2==0:
+               continue
+
+       relationship = row[-1]
        
-       back = askQuestion.common_ancestors(ID1,ID2,'\n')
-       if len(back[1])>0:
-               print back[2]
+       if relationship=='0':
+               relationship = aQ.find_relationship(ID1,ID2,0)
+       
+       if relationship[-15:]!='are not related':
+               print relationship
+               marriedYear = pU.print_year(row[4])
+               
+
+               splitR = cuz.search(relationship)
+               if splitR is None:
+                       splitR = parent.search(relationship)
+#need to get ID numbers out of the URL because they are sometimes reversed
+#should be a simple regex              
+#              cols = [splitR.group(1),ID1,splitR.group(2),\
+#                      ID2,splitR.group(3),marriedYear]
+               cols = [splitR.group(1),splitR.group(2),\
+                       splitR.group(3),marriedYear]
 
-askQuestion.close(conn)
+               printMe+=pU.table_row(cols,'<br>')
+               
+               
+printMe+=pU.table_foot('<br>')
+aQ.commit_changes()
 
+aQ.close()
 
+everyPage.good(printMe)
+file = '/home/naath/public-html/spouses-related.html'
+everyPage.to_file(file)
+print 'done'
 
 
index 6185b7f5bde4faf90b800c8a8173f2755bec4d0a..6fec9eddfeff0f7153f2130f3485f025a42792c6 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/python
 import findYear
+import re
 
 def add_quotes(s):
        return '\"'+s+'\"'
@@ -27,20 +28,32 @@ hasStyle = 0;
 terr = 0;
 for line in f:
        thisline = line
+       thisline = thisline[:-1]
+       
        if thisline[-2:] == '\r\n':
                thisline = thisline[:-2]
        if lastline == 'ID:':
                thisID = thisline
+
+       if lastline=='Pre-name style:':
+               prens = thisline
+
+       if lastline=='Post-name style:':
+               postns=thisline
+
        if lastline == 'Name:':
+               a = re.search(' ([A-Z]+[^a-z])',thisline)
                names = thisline.split()
-               if len(names)>0:
-                       notNames = ['Prince','Princess','St']
-                       if names[0] in notNames:
-                               firstName = add_quotes(names[1])
-                       else:
-                               firstName = add_quotes(names[0])
+
+               if a !=None:
+                       name = a.group(1)
+                       firstName = name[0] + name[1:].lower()
                else:
-                       firstName = ''
+                       if len(names)>0:
+                               firstName = names[0]
+                       else:
+                               firstName = ''
+
                thisName = add_quotes(thisline)
        if lastline == 'Born:':
                yb = findYear.find_year(thisline)
@@ -65,9 +78,28 @@ for line in f:
                 print s
        
        if finishedRecord ==1:
+               if prens!='.':
+                       pre = prens+' ' 
+               else:
+                       pre = ''
+               if postns!='.':
+                       post = ' '+postns
+               else:
+                       post = ''
+               titleName =''
+               if pre!='':
+                       titleName += pre + ' '
+               titleName += firstName
+               if post!='':
+                       titleName+=post
+               titleName = add_quotes(titleName)
+                       
+               prens = add_quotes(prens)
+               postns = add_quotes(postns)
+               firstName = add_quotes(firstName)
                s = make_insert('people',\
-               [thisID,thisName,firstName,thisBorn,yb,\
-                       thisDied,yd,mb,md,url,picture])
+               [thisID,titleName,firstName,thisBorn,yb,\
+                       thisDied,yd,mb,md,url,picture,prens,postns,thisName])
                print s
                finishedRecord = 0
        if lastline == 'Style:':
old mode 100644 (file)
new mode 100755 (executable)
index 04f57de..3491189
-ID:\r
-1\r
-\r
-Name:\r
-Alfred the Great\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Alfred_the_Great\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Statue_d%27Alfred_le_Grand_%C3%A0_Winchester.jpg/220px-Statue_d%27Alfred_le_Grand_%C3%A0_Winchester.jpg\r
-\r
-Born:\r
-849\r
-Died:\r
-26/10/899\r
-\r
-Father:\r
-Aethelwulf\r
-Mother:\r
-Osburh\r
-\r
-Spouses:\r
-61\r
-\r
-Style:\r
-King of Wessex\r
-Territories:\r
-Wessex\r
-\r
-From:\r
-871\r
-To:\r
-899\r
-\r
-\r
-\r
-ID:\r
-2\r
-\r
-Name:\r
-Edward the Elder\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_the_Elder\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Edward_the_Elder_-_MS_Royal_14_B_VI.jpg/218px-Edward_the_Elder_-_MS_Royal_14_B_VI.jpg\r
-\r
-Born:\r
-874-877\r
-Died:\r
-17/07/924\r
-\r
-Father:\r
-1\r
-Mother:\r
-61\r
-\r
-Spouses:\r
-62\r
-63\r
-64\r
-\r
-Style:\r
-King of Wessex\r
-Territories:\r
-Wessex\r
-\r
-From:\r
-26/10/899\r
-To:\r
-17/07/924\r
-\r
-\r
-\r
-ID:\r
-3\r
-\r
-Name:\r
-Aethelstan\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/%C3%86thelstan\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Athelstan.jpg/220px-Athelstan.jpg\r
-\r
-Born:\r
-893-895\r
-Died:\r
-27/10/939\r
-\r
-Father:\r
-2\r
-Mother:\r
-62\r
-\r
-Style:\r
-King of the Anlgo-Saxons\r
-Territories:\r
-Anglo-Saxons\r
-\r
-From:\r
-924\r
-To:\r
-927\r
-\r
-Style:\r
-English\r
-Territories:\r
-England\r
-\r
-From:\r
-927\r
-To:\r
-939\r
-\r
-\r
-\r
-ID:\r
-4\r
-\r
-Name:\r
-Edmund I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edmund_I\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Edmund_I_-_MS_Royal_14_B_V.jpg/220px-Edmund_I_-_MS_Royal_14_B_V.jpg\r
-\r
-Born:\r
-921\r
-Died:\r
-26/05/946\r
-\r
-Father:\r
-2\r
-Mother:\r
-64\r
-\r
-Spouses:\r
-65\r
-66\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-936\r
-To:\r
-26/05/946\r
-\r
-\r
-\r
-ID:\r
-5\r
-\r
-Name:\r
-Eadred\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Eadred\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Eadred_penny.jpg/200px-Eadred_penny.jpg\r
-\r
-Born:\r
-?\r
-Died:\r
-23/11/955\r
-\r
-Father:\r
-2\r
-Mother:\r
-64\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-26/05/946\r
-To:\r
-23/11/955\r
-\r
-\r
-\r
-ID:\r
-6\r
-\r
-Name:\r
-Eadwig (Edwy)\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Eadwig\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Eadwig.jpg/220px-Eadwig.jpg\r
-\r
-Born:\r
-941?\r
-Died:\r
-01/10/959\r
-\r
-Father:\r
-4\r
-Mother:\r
-65\r
-\r
-Spouses:\r
-67\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-23/11/955\r
-To:\r
-01/10/959\r
-\r
-\r
-\r
-ID:\r
-7\r
-\r
-Name:\r
-Edgar the Peaceful\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edgar_the_Peaceful\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/c/c2/Edgar_King_of_England.jpg\r
-\r
-Born:\r
-07/08/943\r
-Died:\r
-08/07/975\r
-\r
-Father:\r
-4\r
-Mother:\r
-65\r
-\r
-Spouses:\r
-68\r
-69\r
-70\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-01/10/959\r
-To:\r
-08/07/975\r
-\r
-\r
-\r
-ID:\r
-8\r
-\r
-Name:\r
-Edward the Martyr\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_the_Martyr\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Edward_the_Martyr_by_Edwards_detail.jpg/220px-Edward_the_Martyr_by_Edwards_detail.jpg\r
-\r
-Born:\r
-962\r
-Died:\r
-18/03/978\r
-\r
-Father:\r
-7\r
-Mother:\r
-68 or 69\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-08/07/975\r
-To:\r
-18/03/978\r
-\r
-\r
-\r
-ID:\r
-9\r
-\r
-Name:\r
-Aethelred the Unready\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Ethelred_the_Unready.jpg/220px-Ethelred_the_Unready.jpg\r
-\r
-Born:\r
-966-968\r
-Died:\r
-23/04/1016\r
-\r
-Father:\r
-7\r
-Mother:\r
-70\r
-\r
-Spouses:\r
-71\r
-72\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-18/03/978\r
-To:\r
-1013\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-1014\r
-To:\r
-23/04/1016\r
-\r
-\r
-\r
-ID:\r
-10\r
-\r
-Name:\r
-Sweyn Forkbeard\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Sweyn_Forkbeard\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Sweyn_Forkbeard.jpg/220px-Sweyn_Forkbeard.jpg\r
-\r
-Born:\r
-960\r
-Died:\r
-03/02/1014\r
-\r
-Father:\r
-Harald Bluetooth\r
-Mother:\r
-Gunhild/Tove\r
-\r
-Spouses:\r
-73\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-1013\r
-To:\r
-03/02/1014\r
-\r
-Style:\r
-Denmark\r
-Territories:\r
-Denmark\r
-\r
-From:\r
-986\r
-To:\r
-03/02/1014\r
-\r
-Style:\r
-Norway\r
-Territories:\r
-Norway\r
-\r
-From:\r
-986\r
-To:\r
-995\r
-\r
-Style:\r
-Norway\r
-Territories:\r
-Norway\r
-\r
-From:\r
-999\r
-To:\r
-03/02/14\r
-\r
-\r
-\r
-ID:\r
-11\r
-\r
-Name:\r
-Edmund Ironside\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edmund_Ironside\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/EdmundIronside_Canutethe_Dane1.jpg/220px-EdmundIronside_Canutethe_Dane1.jpg\r
-\r
-Born:\r
-989\r
-Died:\r
-30/11/1016\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-74\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-23/04/1016\r
-To:\r
-30/11/1016\r
-\r
-\r
-\r
-ID:\r
-12\r
-\r
-Name:\r
-Cnut\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Cnut_the_Great\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Cnut_the_Great_Obverse.jpg/220px-Cnut_the_Great_Obverse.jpg\r
-\r
-Born:\r
-985\r
-Died:\r
-12/11/1035\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Spouses:\r
-75\r
-72\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-1016\r
-To:\r
-1035\r
-\r
-Style:\r
-Denmark\r
-Territories:\r
-Denmark\r
-\r
-From:\r
-1018\r
-To:\r
-1035\r
-\r
-Style:\r
-Norway\r
-Territories:\r
-Norway\r
-\r
-From:\r
-1028\r
-To:\r
-1035\r
-\r
-\r
-\r
-ID:\r
-13\r
-\r
-Name:\r
-Harold I Harefoot\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Harold_Harefoot\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Harold1_Harefoot_02.jpg/150px-Harold1_Harefoot_02.jpg\r
-\r
-Born:\r
-c1015\r
-Died:\r
-17/03/1040\r
-\r
-Father:\r
-12\r
-Mother:\r
-75\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-1035\r
-To:\r
-17/03/1040\r
-\r
-\r
-\r
-ID:\r
-14\r
-\r
-Name:\r
-Harthacnut\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Harthacnut\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Coin_danish_and_english_king_Harthacnut%2C_Hardeknut_%281018-1042%29.jpg/220px-Coin_danish_and_english_king_Harthacnut%2C_Hardeknut_%281018-1042%29.jpg\r
-\r
-Born:\r
-c1018\r
-Died:\r
-08/06/1042\r
-\r
-Father:\r
-12\r
-Mother:\r
-72\r
-\r
-Spouses:\r
-0\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-17/03/1040\r
-To:\r
-08/06/1042\r
-\r
-Style:\r
-King of Denmark\r
-Territories:\r
-Denmark\r
-\r
-From:\r
-1035\r
-To:\r
-1042\r
-\r
-\r
-\r
-ID:\r
-15\r
-\r
-Name:\r
-Edward the Confessor\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_the_Confessor\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Bayeux_Tapestry_scene1_EDWARD_REX.jpg/220px-Bayeux_Tapestry_scene1_EDWARD_REX.jpg\r
-\r
-Born:\r
-C1003-1005\r
-Died:\r
-4-5/01/1066\r
-\r
-Father:\r
-9\r
-Mother:\r
-72\r
-\r
-Spouses:\r
-76\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-08/06/1042\r
-To:\r
-4-5/01/1066\r
-\r
-\r
-\r
-ID:\r
-16\r
-\r
-Name:\r
-Harold II Godwinson\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Harold_Godwinson\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/f/fd/Harold2.jpg\r
-\r
-Born:\r
-c1022\r
-Died:\r
-14/10/1066\r
-\r
-Father:\r
-176\r
-Mother:\r
-177\r
-\r
-Spouses:\r
-77\r
-78\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-4-5/01/1066\r
-To:\r
-14/10/1066\r
-\r
-\r
-\r
-ID:\r
-17\r
-\r
-Name:\r
-William I the Conqueror\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/William_the_Conqueror\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Bayeuxtapestrywilliamliftshishelm.jpg/150px-Bayeuxtapestrywilliamliftshishelm.jpg\r
-\r
-Born:\r
-c1028\r
-Died:\r
-09/09/1087\r
-\r
-Father:\r
-128\r
-Mother:\r
-129\r
-\r
-Spouses:\r
-79\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-25/11/1066\r
-To:\r
-09/09/1087\r
-\r
-Style:\r
-Duke of Normandy\r
-Territories:\r
-Normandy\r
-\r
-From:\r
-03/07/1035\r
-To:\r
-09/09/1087\r
-\r
-\r
-\r
-ID:\r
-18\r
-\r
-Name:\r
-William II\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/William_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/9/92/William_II_of_England.jpg/221px-William_II_of_England.jpg\r
-\r
-Born:\r
-c1056\r
-Died:\r
-02/08/1100\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Style:\r
-King of the English\r
-Territories:\r
-England\r
-\r
-From:\r
-09/09/1087\r
-To:\r
-02/08/1100\r
-\r
-\r
-\r
-ID:\r
-19\r
-\r
-Name:\r
-Henry I Beuclerc\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_I_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Henry1.jpg/230px-Henry1.jpg\r
-\r
-Born:\r
-1068\r
-Died:\r
-01/12/1135\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-80\r
-81\r
-\r
-Style:\r
-King of the English, Duke of the Normans\r
-Territories:\r
-England\r
-Normandy\r
-\r
-From:\r
-02/08/1100\r
-To:\r
-01/12/1135\r
-\r
-\r
-\r
-ID:\r
-20\r
-\r
-Name:\r
-Stephen\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Stephen_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Stepan_Blois.jpg/218px-Stepan_Blois.jpg\r
-\r
-Born:\r
-C1092-1096\r
-Died:\r
-25/10/1154\r
-\r
-Father:\r
-130\r
-Mother:\r
-131\r
-\r
-Spouses:\r
-82\r
-\r
-Style:\r
-King of the English, Duke of the Normans\r
-Territories:\r
-England\r
-Normandy\r
-\r
-From:\r
-22/11/1135\r
-To:\r
-?/04/1141\r
-\r
-Style:\r
-King of the English, Duke of the Normans\r
-Territories:\r
-England\r
-\r
-From:\r
-?/11/1141\r
-To:\r
-25/10/1154\r
-\r
-\r
-\r
-ID:\r
-21\r
-\r
-Name:\r
-Matilda\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Empress_Matilda\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Empress_Mathilda.png/220px-Empress_Mathilda.png\r
-\r
-Born:\r
-07/02/1102\r
-Died:\r
-10/09/1167\r
-\r
-Father:\r
-19\r
-Mother:\r
-80\r
-\r
-Spouses:\r
-83\r
-84\r
-\r
-Style:\r
-Queen of England, Duke of Normans\r
-Territories:\r
-England\r
-Normandy\r
-\r
-From:\r
-?/04/1141\r
-To:\r
-?/11/1141\r
-\r
-\r
-\r
-ID:\r
-22\r
-\r
-Name:\r
-Henry II Plantagenet\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Henry_II_of_England_cropped.jpg/211px-Henry_II_of_England_cropped.jpg\r
-\r
-Born:\r
-05/03/1133\r
-Died:\r
-06/07/1189\r
-\r
-Father:\r
-84\r
-Mother:\r
-21\r
-\r
-Spouses:\r
-85\r
-\r
-Style:\r
-King of England, Duke of Normandy, and of Aquitaine and Count of Anjou\r
-Territories:\r
-England\r
-Normandy\r
-Aquitaine\r
-Anjou\r
-\r
-From:\r
-25/10/1154\r
-To:\r
-06/07/1189\r
-\r
-\r
-\r
-ID:\r
-23\r
-\r
-Name:\r
-Henry the young king\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_the_Young_King\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/BL_MS_Royal_14_C_VII_f.9_%28Henry_jr%29.jpg/160px-BL_MS_Royal_14_C_VII_f.9_%28Henry_jr%29.jpg\r
-\r
-Born:\r
-28/02/1155\r
-Died:\r
-11/06/1183\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-86\r
-\r
-Style:\r
-English (junior king)\r
-Territories:\r
-England\r
-\r
-From:\r
-28/02/1155\r
-To:\r
-11/06/1183\r
-\r
-\r
-\r
-ID:\r
-24\r
-\r
-Name:\r
-Richard I Lionheart\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Richard_I_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Church_of_Fontevraud_Abbey_Richard_I_effigy.jpg/220px-Church_of_Fontevraud_Abbey_Richard_I_effigy.jpg\r
-\r
-Born:\r
-08/09/1157\r
-Died:\r
-06/04/1199\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-87\r
-\r
-Style:\r
-King of England, Duke of Normandy, and of Aquitaine and Count of Anjou\r
-Territories:\r
-England\r
-Normandy\r
-Aquitaine\r
-Anjou\r
-\r
-From:\r
-06/07/1189\r
-To:\r
-06/04/1199\r
-\r
-\r
-\r
-ID:\r
-25\r
-\r
-Name:\r
-John\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/John,_King_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Jan_tomb.jpg/220px-Jan_tomb.jpg\r
-\r
-Born:\r
-24/12/1166\r
-Died:\r
-18-19/10/1216\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-88\r
-89\r
-\r
-Style:\r
-King of England, Lord of Ireland, Duke of Normandy and Duke of Aquitaine\r
-Territories:\r
-England\r
-Ireland\r
-Normandy\r
-Aquitaine\r
-\r
-From:\r
-06/04/1199\r
-To:\r
-18-19/10/1216\r
-\r
-\r
-\r
-ID:\r
-26\r
-\r
-Name:\r
-Henry III\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_III_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Henry_III_funeral_head.jpg/220px-Henry_III_funeral_head.jpg\r
-\r
-Born:\r
-01/10/1207\r
-Died:\r
-16/11/1272\r
-\r
-Father:\r
-25\r
-Mother:\r
-89\r
-\r
-Spouses:\r
-90\r
-\r
-Style:\r
-King of England, Lord of Ireland, Duke of Normandy and Duke of Aquitaine\r
-Territories:\r
-England\r
-Ireland\r
-Normandy\r
-Aquitaine\r
-\r
-From:\r
-18-19/10/1216\r
-To:\r
-1259\r
-\r
-Style:\r
-King of England, Lord of Ireland, and Duke of Aquitaine\r
-Territories:\r
-England\r
-Ireland\r
-Aquitaine\r
-\r
-From:\r
-1259\r
-To:\r
-16/11/1272\r
-\r
-\r
-\r
-ID:\r
-27\r
-\r
-Name:\r
-Edward I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_I_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Gal_nations_edward_i.jpg/225px-Gal_nations_edward_i.jpg\r
-\r
-Born:\r
-17/06/1239\r
-Died:\r
-07/07/1307\r
-\r
-Father:\r
-26\r
-Mother:\r
-90\r
-\r
-Spouses:\r
-91\r
-92\r
-\r
-Style:\r
-King of England, Lord of Ireland, and Duke of Aquitaine\r
-Territories:\r
-England\r
-Ireland\r
-Aquitaine\r
-\r
-From:\r
-16/11/1272\r
-To:\r
-07/07/1307\r
-\r
-\r
-\r
-ID:\r
-28\r
-\r
-Name:\r
-Edward II\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Edward_II_-_British_Library_Royal_20_A_ii_f10_%28detail%29.jpg/220px-Edward_II_-_British_Library_Royal_20_A_ii_f10_%28detail%29.jpg\r
-\r
-Born:\r
-25/04/1284\r
-Died:\r
-21/09/1327\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-93\r
-\r
-Style:\r
-King of England, Lord of Ireland, and Duke of Aquitaine\r
-Territories:\r
-England\r
-Ireland\r
-Aquitaine\r
-\r
-From:\r
-07/07/1307\r
-To:\r
-25/01/1327\r
-\r
-\r
-\r
-ID:\r
-29\r
-\r
-Name:\r
-Edward III\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_III_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Edward_III_of_England_%28Order_of_the_Garter%29.jpg/220px-Edward_III_of_England_%28Order_of_the_Garter%29.jpg\r
-\r
-Born:\r
-13/11/1312\r
-Died:\r
-21/06/1377\r
-\r
-Father:\r
-28\r
-Mother:\r
-93\r
-\r
-Spouses:\r
-94\r
-\r
-Style:\r
-King of England, Lord of Ireland, and Duke of Aquitaine\r
-Territories:\r
-England\r
-Ireland\r
-Aquitaine\r
-\r
-From:\r
-25/01/1327\r
-To:\r
-1340\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-1340\r
-To:\r
-21/06/1377\r
-\r
-\r
-\r
-ID:\r
-30\r
-\r
-Name:\r
-Richard II\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Richard_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Richard_II_King_of_England.jpg/220px-Richard_II_King_of_England.jpg\r
-\r
-Born:\r
-06/01/1367\r
-Died:\r
-14/02/1400\r
-\r
-Father:\r
-132\r
-Mother:\r
-133\r
-\r
-Spouses:\r
-95\r
-96\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-21/06/1377\r
-To:\r
-1397\r
-\r
-Style:\r
-King of England and of France, Lord of Ireland, and Prince of Chester\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-Chester\r
-\r
-From:\r
-1397\r
-To:\r
-14/02/1400\r
-\r
-\r
-\r
-ID:\r
-31\r
-\r
-Name:\r
-Henry IV\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_IV_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/King_Henry_IV_from_NPG_%282%29.jpg/180px-King_Henry_IV_from_NPG_%282%29.jpg\r
-\r
-Born:\r
-15/04/1367\r
-Died:\r
-20/03/1413\r
-\r
-Father:\r
-134\r
-Mother:\r
-135\r
-\r
-Spouses:\r
-97\r
-98\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-14/02/1400\r
-To:\r
-20/03/1413\r
-\r
-\r
-\r
-ID:\r
-32\r
-\r
-Name:\r
-Henry V\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_V_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/1/18/King_Henry_V_from_NPG.jpg/220px-King_Henry_V_from_NPG.jpg\r
-\r
-Born:\r
-16/09/1386\r
-Died:\r
-31/08/1422\r
-\r
-Father:\r
-31\r
-Mother:\r
-97\r
-\r
-Spouses:\r
-99\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-20/03/1413\r
-To:\r
-1420\r
-\r
-Style:\r
-King of England, Heir and Regent of France and Lord of Ireland\r
-Territories:\r
-England\r
-Ireland\r
-Aquitaine\r
-\r
-From:\r
-1420\r
-To:\r
-31/08/1422\r
-\r
-\r
-\r
-ID:\r
-33\r
-\r
-Name:\r
-Henry VI\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_VI_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/King_Henry_VI_from_NPG_%282%29.jpg/220px-King_Henry_VI_from_NPG_%282%29.jpg\r
-\r
-Born:\r
-06/11/1421\r
-Died:\r
-21/05/1471\r
-\r
-Father:\r
-32\r
-Mother:\r
-99\r
-\r
-Spouses:\r
-100\r
-\r
-Style:\r
-King of England, Heir and Regent of France and Lord of Ireland\r
-Territories:\r
-England\r
-Ireland\r
-Normandy\r
-Aquitaine\r
-\r
-From:\r
-31/08/1422\r
-To:\r
-1422\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-1422\r
-To:\r
-04/03/1461\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-30/08/1471\r
-To:\r
-11/04/1471\r
-\r
-\r
-\r
-ID:\r
-34\r
-\r
-Name:\r
-Edward IV\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_IV_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Edward4.jpg/229px-Edward4.jpg\r
-\r
-Born:\r
-28/04/1442\r
-Died:\r
-09/04/1483\r
-\r
-Father:\r
-136\r
-Mother:\r
-137\r
-\r
-Spouses:\r
-101\r
-\r
-Style:\r
-King of England, Heir and Regent of France and Lord of Ireland\r
-Territories:\r
-England\r
-Ireland\r
-Normandy\r
-Aquitaine\r
-\r
-From:\r
-04/03/1461\r
-To:\r
-03/10/1470\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-11/04/1471\r
-To:\r
-09/04/1483\r
-\r
-\r
-\r
-ID:\r
-35\r
-\r
-Name:\r
-Edward V\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_V_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/King-edward-v.jpg/200px-King-edward-v.jpg\r
-\r
-Born:\r
-02/11/1470\r
-Died:\r
-c1483\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-09/04/1483\r
-To:\r
-26/06/1483\r
-\r
-\r
-\r
-ID:\r
-36\r
-\r
-Name:\r
-Richard III\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Richard_III_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Richard_III_earliest_surviving_portrait.jpg/230px-Richard_III_earliest_surviving_portrait.jpg\r
-\r
-Born:\r
-02/10/1452\r
-Died:\r
-22/08/1485\r
-\r
-Father:\r
-136\r
-Mother:\r
-137\r
-\r
-Spouses:\r
-102\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-26/06/1483\r
-To:\r
-22/08/1485\r
-\r
-\r
-\r
-ID:\r
-37\r
-\r
-Name:\r
-Henry VII\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_VII_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/King_Henry_VII.jpg/220px-King_Henry_VII.jpg\r
-\r
-Born:\r
-28/01/1457\r
-Died:\r
-21/04/1509\r
-\r
-Father:\r
-142\r
-Mother:\r
-143\r
-\r
-Spouses:\r
-103\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-22/08/1485\r
-To:\r
-21/04/1509\r
-\r
-\r
-\r
-ID:\r
-38\r
-\r
-Name:\r
-Henry VIII\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Henry_VIII_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Workshop_of_Hans_Holbein_the_Younger_-_Portrait_of_Henry_VIII_-_Google_Art_Project.jpg/220px-Workshop_of_Hans_Holbein_the_Younger_-_Portrait_of_Henry_VIII_-_Google_Art_Project.jpg\r
-\r
-Born:\r
-28/06/1491\r
-Died:\r
-28/01/1547\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Spouses:\r
-104\r
-105\r
-106\r
-107\r
-108\r
-109\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-21/04/1509\r
-To:\r
-1521\r
-\r
-Style:\r
-By the Grace of God, King of England and France, Defender of the Faith and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-1521\r
-To:\r
-1535\r
-\r
-Style:\r
-By the Grace of God, King of england and France, Defender of the Faith, Lord of Ireland, and of the Church of England in Earth Supreme Head\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-1535\r
-To:\r
-1536\r
-\r
-Style:\r
-By the Grace of God, King of England and France, Defender of the Faith, Lord of Ireland and of the Church of England and of Ireland in Earth Supreme Head\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-1536\r
-To:\r
-1542\r
-\r
-Style:\r
-By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-1542\r
-To:\r
-28/01/1547\r
-\r
-\r
-\r
-ID:\r
-39\r
-\r
-Name:\r
-Edward VI\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Edward_VI_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Portrait_of_Edward_VI_of_England.jpg/220px-Portrait_of_Edward_VI_of_England.jpg\r
-\r
-Born:\r
-21/10/1537\r
-Died:\r
-06/07/1553\r
-\r
-Father:\r
-38\r
-Mother:\r
-106\r
-\r
-Spouses:\r
-0\r
-\r
-Style:\r
-By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-28/01/1547\r
-To:\r
-06/07/1553\r
-\r
-\r
-\r
-ID:\r
-40\r
-\r
-Name:\r
-Jane Grey\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Lady_Jane_Grey\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Streathamladyjayne.jpg/220px-Streathamladyjayne.jpg\r
-\r
-Born:\r
-C1536-1537\r
-Died:\r
-12/02/1554\r
-\r
-Father:\r
-146\r
-Mother:\r
-147\r
-\r
-Spouses:\r
-110\r
-\r
-Style:\r
-By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-10/07/1553\r
-To:\r
-19/07/1553\r
-\r
-\r
-\r
-ID:\r
-41\r
-\r
-Name:\r
-Mary I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Mary_I_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Maria_Tudor1.jpg/220px-Maria_Tudor1.jpg\r
-\r
-Born:\r
-18/02/1516\r
-Died:\r
-17/11/1558\r
-\r
-Father:\r
-38\r
-Mother:\r
-104\r
-\r
-Spouses:\r
-111\r
-\r
-Style:\r
-By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-19/07/1553\r
-To:\r
-1554\r
-\r
-Style:\r
-By the Grace of God, King and Queen of England and France, Naples, Jerusalem and Ireland, Defenders of the Faith, Princes of Spain and Sicily, Archdukes of Austria, Dukes of Milan, Burgundy, and Brabant, Count and Countess of Habsburg, Flanders, and Tyrol\r
-Territories:\r
-England\r
-France\r
-Naples\r
-Jerusalem\r
-Ireland\r
-Spain\r
-Sicily\r
-Austria\r
-Milan\r
-Burgundy\r
-Brabant\r
-Habsburg\r
-Flanders\r
-Tyrol\r
-\r
-From:\r
-1554\r
-To:\r
-1556\r
-\r
-Style:\r
-By the Grade of God, King and Queen of england, Spain, France, Jerusalem, both the Sicilies and Ireland, Defenders of the Faith, Archduke and Archduchess of Austria, Duke and Duchess of Burgundy, Milan and Brabant, Count and Countess of Habsburg, Flanders and Tyrol\r
-Territories:\r
-England\r
-Spain\r
-France\r
-Jerusalem\r
-Sicilies\r
-Ireland\r
-Austria\r
-Burgundy\r
-Milan\r
-Brabant\r
-Habsburg\r
-Flanders\r
-Tyrol\r
-\r
-From:\r
-1556\r
-To:\r
-17/11/1558\r
-\r
-\r
-\r
-ID:\r
-42\r
-\r
-Name:\r
-Elizabeth I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Elizabeth_I_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Darnley_stage_3.jpg/220px-Darnley_stage_3.jpg\r
-\r
-Born:\r
-07/09/1533\r
-Died:\r
-24/03/1603\r
-\r
-Father:\r
-38\r
-Mother:\r
-105\r
-\r
-Style:\r
-By the Grace of God, Queen of England, France and Ireland, Defender of the Faith, etc\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-17/11/1558\r
-To:\r
-24/03/1603\r
-\r
-\r
-\r
-ID:\r
-43\r
-\r
-Name:\r
-James VI & I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/James_VI_and_I\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/7/72/James_I_of_England_by_Daniel_Mytens.jpg/200px-James_I_of_England_by_Daniel_Mytens.jpg\r
-\r
-Born:\r
-19/06/1566\r
-Died:\r
-27/03/1625\r
-\r
-Father:\r
-150\r
-Mother:\r
-151\r
-\r
-Spouses:\r
-112\r
-\r
-Style:\r
-By the Grace of God, King of England, France, and Ireland, Defender of the Faith etc.\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-24/03/1603\r
-To:\r
-27/03/1625\r
-\r
-Style:\r
-King of Scots\r
-Territories:\r
-Scotland\r
-\r
-From:\r
-24/07/1567\r
-To:\r
-27/03/1625\r
-\r
-\r
-\r
-ID:\r
-44\r
-\r
-Name:\r
-Charles I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Charles_I_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/King_Charles_I_after_original_by_van_Dyck.jpg/220px-King_Charles_I_after_original_by_van_Dyck.jpg\r
-\r
-Born:\r
-19/11/1600\r
-Died:\r
-30/01/1649\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Spouses:\r
-113\r
-\r
-Style:\r
-By the Grace of God, King of England,Scotland, France, and Ireland, Defender of the Faith etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-\r
-From:\r
-27/03/1625\r
-To:\r
-30/01/1649\r
-\r
-Style:\r
-King of Scots\r
-Territories:\r
-Scotland\r
-\r
-From:\r
-27/03/1625\r
-To:\r
-30/01/1649\r
-\r
-\r
-\r
-ID:\r
-45\r
-\r
-Name:\r
-Charles II\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Charles_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/5/51/King_Charles_II_by_John_Michael_Wright_or_studio.jpg/220px-King_Charles_II_by_John_Michael_Wright_or_studio.jpg\r
-\r
-Born:\r
-26/05/1630\r
-Died:\r
-06/02/1685\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-114\r
-\r
-Style:\r
-By the Grace of God, King of England,Scotland, France, and Ireland, Defender of the Faith etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-\r
-From:\r
-29/05/1660\r
-To:\r
-06/02/1685\r
-\r
-Style:\r
-King of Scots\r
-Territories:\r
-Scotland\r
-\r
-From:\r
-30/01/1649\r
-To:\r
-03/09/1651\r
-\r
-\r
-\r
-ID:\r
-46\r
-\r
-Name:\r
-James VII & II\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/James_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/King_James_II_by_Sir_Godfrey_Kneller%2C_Bt.jpg/220px-King_James_II_by_Sir_Godfrey_Kneller%2C_Bt.jpg\r
-\r
-Born:\r
-14/10/1633\r
-Died:\r
-16/09/1701\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-115\r
-116\r
-\r
-Style:\r
-By the Grace of God, King of England,Scotland, France, and Ireland, Defender of the Faith etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-\r
-From:\r
-06/02/1685\r
-To:\r
-11/11/1688\r
-\r
-\r
-\r
-ID:\r
-47\r
-\r
-Name:\r
-Mary II\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Mary_II_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/6/65/1662_Mary_II.jpg/220px-1662_Mary_II.jpg\r
-\r
-Born:\r
-30/04/1662\r
-Died:\r
-28/11/1694\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Spouses:\r
-48\r
-\r
-Style:\r
-By the Grace of God, King and Queen of England, Scotland, France and Ireland, Stadholther of the Republic of the Seven United Netherlands, Prince of Orange, Count of Nassau, Defenders of the Faith, etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-Netherlands\r
-Orange\r
-Nassau\r
-\r
-From:\r
-13/02/1689\r
-To:\r
-28/11/1694\r
-\r
-\r
-\r
-ID:\r
-48\r
-\r
-Name:\r
-William II & III\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/William_III_of_England\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/King_William_III_of_England%2C_%281650-1702%29_%28lighter%29.jpg/220px-King_William_III_of_England%2C_%281650-1702%29_%28lighter%29.jpg\r
-\r
-Born:\r
-04/11/1650\r
-Died:\r
-08/03/1702\r
-\r
-Father:\r
-155\r
-Mother:\r
-156\r
-\r
-Spouses:\r
-47\r
-\r
-Style:\r
-By the Grace of God, King and Queen of England, Scotland, France and Ireland, Stadholther of the Republic of the Seven United Netherlands, Prince of Orange, Count of Nassau, Defenders of the Faith, etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-Netherlands\r
-Orange\r
-Nassau\r
-\r
-From:\r
-13/02/1689\r
-To:\r
-28/11/1694\r
-\r
-Style:\r
-By the Grace of God, King of England, Scotland, France and Ireland, Stadholther of the Republic of the Seven United Netherlands, Prince of Orange, Count of Nassau, Defenders of the Faith, etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-Netherlands\r
-Orange\r
-Nassau\r
-\r
-From:\r
-28/11/1694\r
-To:\r
-08/03/1702\r
-\r
-\r
-\r
-ID:\r
-49\r
-\r
-Name:\r
-Anne\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/Anne,_Queen_of_Great_Britain\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Anne1705.jpg/220px-Anne1705.jpg\r
-\r
-Born:\r
-06/02/1665\r
-Died:\r
-01/08/1714\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Spouses:\r
-117\r
-\r
-Style:\r
-By the Grace of God, Queen of England, Scotland, France and Ireland, Defender of the Faith, etc.\r
-Territories:\r
-England\r
-Scotland\r
-France\r
-Ireland\r
-\r
-From:\r
-08/03/1702\r
-To:\r
-1707\r
-\r
-Style:\r
-By the Grace of God, Queen of Great Britain, France and Ireland, Defender of the Faith, etc.\r
-Territories:\r
-GB\r
-France\r
-Ireland\r
-\r
-From:\r
-1707\r
-To:\r
-01/08/1714\r
-\r
-\r
-\r
-ID:\r
-50\r
-\r
-Name:\r
-George I\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/George_I_of_Great_Britain\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/King_George_I_by_Sir_Godfrey_Kneller%2C_Bt_%283%29.jpg/226px-King_George_I_by_Sir_Godfrey_Kneller%2C_Bt_%283%29.jpg\r
-\r
-Born:\r
-28/05/1660\r
-Died:\r
-11/06/1727\r
-\r
-Father:\r
-157\r
-Mother:\r
-158\r
-\r
-Spouses:\r
-118\r
-\r
-Style:\r
-By the Grace of God, King of Great Britain, France and Ireland, Defender of the Faith, Archtreasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg\r
-Territories:\r
-GB\r
-France\r
-Ireland\r
-Elector of HRE\r
-Brunswick-Luneburg\r
-\r
-From:\r
-01/08/1714\r
-To:\r
-11/06/1727\r
-\r
-Style:\r
-Hanover\r
-Territories:\r
-Hanover\r
-\r
-From:\r
-23/01/1698\r
-To:\r
-11/06/1727\r
-\r
-\r
-\r
-ID:\r
-51\r
-\r
-Name:\r
-George II \r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/George_II_of_Great_Britain\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/George_II_by_Thomas_Hudson.jpg/220px-George_II_by_Thomas_Hudson.jpg\r
-\r
-Born:\r
-10/11/1683\r
-Died:\r
-25/10/1760\r
-\r
-Father:\r
-50\r
-Mother:\r
-118\r
-\r
-Spouses:\r
-119\r
-\r
-Style:\r
-By the Grace of God, King of Great Britain, France and Ireland, Defender of the Faith, Archtreasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg\r
-Territories:\r
-GB\r
-France\r
-Ireland\r
-Elector of HRE\r
-Brunswick-Luneburg\r
-\r
-From:\r
-11/06/1727\r
-To:\r
-25/10/1760\r
-\r
-\r
-\r
-ID:\r
-52\r
-\r
-Name:\r
-George III\r
-\r
-URL:\r
-http://en.wikipedia.org/wiki/George_III_of_the_United_Kingdom\r
-\r
-Picture:\r
-http://upload.wikimedia.org/wikipedia/commons/thumb/5/54/George_III_in_Coronation_edit.jpg/250px-George_III_in_Coronation_edit.jpg\r
-\r
-Born:\r
-04/06/1738\r
-Died:\r
-29/01/1820\r
-\r
-Father:\r
-160\r
-Mother:\r
-161\r
-\r
-Spouses:\r
-120\r
-\r
-Style:\r
-By the Grace of God, King of Great Britain, France and Ireland, Defender of the Faith, Archtreasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg\r
-Territories:\r
-GB\r
-France\r
-Ireland\r
-Elector of HRE\r
-Brunswick-Luneburg\r
-\r
-From:\r
-25/10/1760\r
-To:\r
-1801\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, Arch-treasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg\r
-Territories:\r
-UK\r
-Brunswick-Luneburg\r
-\r
-From:\r
-1801\r
-To:\r
-1814\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, King of Hanover, Duke of Brunswick\r
-Territories:\r
-UK\r
-Ireland\r
-Hanover\r
-Brunswick\r
-\r
-From:\r
-1814\r
-To:\r
-29/01/1820\r
-\r
-\r
-\r
-ID:\r
-53\r
-\r
-Name:\r
-George IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/08/1762\r
-Died:\r
-26/06/1830\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-121\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, King of Hanover, Duke of Brunswick\r
-Territories:\r
-UK\r
-Hanover\r
-Brunswick\r
-\r
-From:\r
-29/01/1820\r
-To:\r
-26/06/1830\r
-\r
-\r
-\r
-ID:\r
-54\r
-\r
-Name:\r
-William IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/08/1765\r
-Died:\r
-20/06/1837\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-122\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, King of Hanover, Duke of Brunswick\r
-Territories:\r
-UK\r
-Hanover\r
-Brunswick\r
-\r
-From:\r
-26/06/1830\r
-To:\r
-20/06/1837\r
-\r
-\r
-\r
-ID:\r
-55\r
-\r
-Name:\r
-Victoria\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/05/1819\r
-Died:\r
-22/01/1901\r
-\r
-Father:\r
-162\r
-Mother:\r
-227\r
-\r
-Spouses:\r
-123\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland Queen, Defender of the Faith\r
-Territories:\r
-UK\r
-\r
-From:\r
-20/06/1837\r
-To:\r
-1876\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland Queen, Defender of the Faith, Empress of India\r
-Territories:\r
-UK\r
-India\r
-\r
-From:\r
-1876\r
-To:\r
-22/01/1901\r
-\r
-\r
-\r
-ID:\r
-56\r
-\r
-Name:\r
-Edward VII\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-09/11/1841\r
-Died:\r
-06/05/1910\r
-\r
-Father:\r
-123\r
-Mother:\r
-55\r
-\r
-Spouses:\r
-124\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland and of the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India\r
-Territories:\r
-UK\r
-British Dominions\r
-India\r
-\r
-From:\r
-22/01/1901\r
-To:\r
-06/05/1910\r
-\r
-\r
-\r
-ID:\r
-57\r
-\r
-Name:\r
-George V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/06/1865\r
-Died:\r
-20/01/1936\r
-\r
-Father:\r
-56\r
-Mother:\r
-124\r
-\r
-Spouses:\r
-125\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Ireland and of the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India\r
-Territories:\r
-UK\r
-British Dominions\r
-India\r
-\r
-From:\r
-06/05/1910\r
-To:\r
-1927\r
-\r
-Style:\r
-By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India\r
-Territories:\r
-GB\r
-Ireland\r
-Dominions\r
-India\r
-\r
-From:\r
-1927\r
-To:\r
-20/01/1936\r
-\r
-\r
-\r
-ID:\r
-58\r
-\r
-Name:\r
-Edward VIII\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-23/06/1894\r
-Died:\r
-28/05/1972\r
-\r
-Father:\r
-57\r
-Mother:\r
-125\r
-\r
-Spouses:\r
-126\r
-\r
-Style:\r
-By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India\r
-Territories:\r
-GB\r
-Ireland\r
-British Dominions\r
-India\r
-\r
-From:\r
-20/01/1936\r
-To:\r
-11/11/1936\r
-\r
-\r
-\r
-ID:\r
-59\r
-\r
-Name:\r
-George VI\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/11/1895\r
-Died:\r
-06/02/1952\r
-\r
-Father:\r
-57\r
-Mother:\r
-125\r
-\r
-Spouses:\r
-127\r
-\r
-Style:\r
-By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India\r
-Territories:\r
-GB\r
-Ireland\r
-British Dominions\r
-India\r
-\r
-From:\r
-11/11/1936\r
-To:\r
-1948\r
-\r
-Style:\r
-By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith\r
-Territories:\r
-GB\r
-Ireland\r
-Dominions\r
-\r
-From:\r
-1948\r
-To:\r
-06/02/1952\r
-\r
-\r
-\r
-ID:\r
-60\r
-\r
-Name:\r
-Elizabeth II\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/04/1926\r
-Died:\r
-present\r
-\r
-Father:\r
-59\r
-Mother:\r
-127\r
-\r
-Spouses:\r
-226\r
-\r
-Style:\r
-By the Grace of God, of the United Kingdom of Great Britain and Northern Ireland and of Her other Realms and Territories Queen, Head of the Commonwealth, Defender of the Faith\r
-Territories:\r
-UK\r
-Realms and Territories\r
-Commonwealth\r
-\r
-From:\r
-06/02/1952\r
-To:\r
-present\r
-\r
-\r
-\r
-ID:\r
-61\r
-\r
-Name:\r
-Ealhswith\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-05/11/902\r
-\r
-Father:\r
-Aethelred Mucel\r
-Mother:\r
-Eadburh\r
-\r
-Spouses:\r
-1\r
-\r
-\r
-\r
-ID:\r
-62\r
-\r
-Name:\r
-Ecgwyn\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-2\r
-\r
-\r
-\r
-ID:\r
-63\r
-\r
-Name:\r
-Aelfflaed\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-2\r
-\r
-Consort of:\r
-2\r
-\r
-\r
-ID:\r
-64\r
-\r
-Name:\r
-Eadgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-~903\r
-Died:\r
-~966\r
-\r
-Father:\r
-163\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-2\r
-\r
-Consort of:\r
-2\r
-\r
-\r
-ID:\r
-65\r
-\r
-Name:\r
-Aelfgifu of Shaftsbury\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-~944\r
-\r
-Father:\r
-?\r
-Mother:\r
-164\r
-\r
-Spouses:\r
-4\r
-\r
-Consort of:\r
-4\r
-\r
-\r
-ID:\r
-66\r
-\r
-Name:\r
-Aethelflaed of Damerham\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-165\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-4\r
-\r
-Consort of:\r
-4\r
-\r
-\r
-ID:\r
-67\r
-\r
-Name:\r
-Aelfgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-166\r
-\r
-Spouses:\r
-6\r
-\r
-Consort of:\r
-6\r
-\r
-\r
-ID:\r
-68\r
-\r
-Name:\r
-Aethelflaed\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-7\r
-\r
-\r
-\r
-ID:\r
-69\r
-\r
-Name:\r
-Wulthryth\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-7\r
-\r
-\r
-\r
-ID:\r
-70\r
-\r
-Name:\r
-Aelfthryth\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c.945\r
-Died:\r
-c1000\r
-\r
-Father:\r
-167\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-168\r
-7\r
-\r
-Consort of:\r
-7\r
-\r
-\r
-ID:\r
-71\r
-\r
-Name:\r
-Aelfgifu of York\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c. 970\r
-Died:\r
-1002\r
-\r
-Father:\r
-169\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-9\r
-\r
-Consort of:\r
-9\r
-\r
-\r
-ID:\r
-72\r
-\r
-Name:\r
-Emma of Normandy\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c. 985\r
-Died:\r
-06/03/1052\r
-\r
-Father:\r
-170\r
-Mother:\r
-171\r
-\r
-Spouses:\r
-9\r
-12\r
-\r
-Consort of:\r
-9\r
-Consort of:\r
-12\r
-\r
-\r
-ID:\r
-73\r
-\r
-Name:\r
-Sigrid the Haughty\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-172\r
-Mother:\r
-173\r
-\r
-Spouses:\r
-174\r
-10\r
-\r
-Consort of:\r
-10\r
-\r
-\r
-ID:\r
-74\r
-\r
-Name:\r
-Ealdgyth\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c. 992\r
-Died:\r
-Post 1016\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-Sigeferth\r
-11\r
-\r
-Consort of:\r
-11\r
-\r
-\r
-ID:\r
-75\r
-\r
-Name:\r
-Aelfgifu of Northampton\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c. 990\r
-Died:\r
-Post 1040\r
-\r
-Father:\r
-175\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-12\r
-\r
-\r
-\r
-ID:\r
-76\r
-\r
-Name:\r
-Edith of Wessex\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1025\r
-Died:\r
-18/12/1075\r
-\r
-Father:\r
-176\r
-Mother:\r
-177\r
-\r
-Spouses:\r
-15\r
-\r
-Consort of:\r
-15\r
-\r
-\r
-ID:\r
-77\r
-\r
-Name:\r
-Edith the Fair\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1025\r
-Died:\r
-1086\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-16\r
-\r
-\r
-\r
-ID:\r
-78\r
-\r
-Name:\r
-Edith of Mercia\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1066\r
-\r
-Father:\r
-178\r
-Mother:\r
-228\r
-\r
-Spouses:\r
-179\r
-16\r
-\r
-Consort of:\r
-16\r
-\r
-\r
-ID:\r
-79\r
-\r
-Name:\r
-Matilda of Flanders\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1031\r
-Died:\r
-02/11/1083\r
-\r
-Father:\r
-180\r
-Mother:\r
-181\r
-\r
-Spouses:\r
-17\r
-\r
-Consort of:\r
-17\r
-\r
-\r
-ID:\r
-80\r
-\r
-Name:\r
-Matilda of Scotland\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1080\r
-Died:\r
-01/05/1118\r
-\r
-Father:\r
-182\r
-Mother:\r
-183\r
-\r
-Spouses:\r
-19\r
-\r
-Consort of:\r
-19\r
-\r
-\r
-ID:\r
-81\r
-\r
-Name:\r
-Adeliza of Louvain\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1103\r
-Died:\r
-23/04/1151\r
-\r
-Father:\r
-184\r
-Mother:\r
-185\r
-\r
-Spouses:\r
-19\r
-186\r
-\r
-Consort of:\r
-19\r
-\r
-\r
-ID:\r
-82\r
-\r
-Name:\r
-Matilda of Boulogne\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-? 1105\r
-Died:\r
-03/05/1152\r
-\r
-Father:\r
-187\r
-Mother:\r
-188\r
-\r
-Spouses:\r
-20\r
-\r
-Consort of:\r
-20\r
-Style:\r
-Countess of Boulogne\r
-Territories:\r
-Boulogne\r
-\r
-From:\r
-C 1125\r
-To:\r
-03/05/1152\r
-\r
-\r
-\r
-ID:\r
-83\r
-\r
-Name:\r
-Henry V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/08/1086\r
-Died:\r
-23/05/1125\r
-\r
-Father:\r
-189\r
-Mother:\r
-229\r
-\r
-Spouses:\r
-21\r
-\r
-Style:\r
-Holy Roman Emperor\r
-Territories:\r
-HRE\r
-\r
-From:\r
-1111\r
-To:\r
-1125\r
-\r
-Style:\r
-King of Germany\r
-Territories:\r
-Germany\r
-\r
-From:\r
-1099\r
-To:\r
-1125\r
-\r
-Style:\r
-King of Italy\r
-Territories:\r
-Italy\r
-\r
-From:\r
-1098\r
-To:\r
-1125\r
-\r
-\r
-\r
-ID:\r
-84\r
-\r
-Name:\r
-Geoffrey V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/08/1113\r
-Died:\r
-07/09/1151\r
-\r
-Father:\r
-190\r
-Mother:\r
-191\r
-\r
-Spouses:\r
-21\r
-\r
-Style:\r
-Count of Anjou\r
-Territories:\r
-Anjou\r
-\r
-From:\r
-1129\r
-To:\r
-07/09/1151\r
-\r
-\r
-\r
-ID:\r
-85\r
-\r
-Name:\r
-Eleanor of Aquitaine\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1122-1124\r
-Died:\r
-01/04/1204\r
-\r
-Father:\r
-192\r
-Mother:\r
-193\r
-\r
-Spouses:\r
-194\r
-22\r
-\r
-Consort of:\r
-194\r
-Consort of:\r
-22\r
-Style:\r
-Duchess of Aquitaine\r
-Territories:\r
-Aquitaine\r
-\r
-From:\r
-09/04/37\r
-To:\r
-01/04/1204\r
-\r
-\r
-\r
-ID:\r
-86\r
-\r
-Name:\r
-Margaret of France\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?/11/1157\r
-Died:\r
-08-09/1197\r
-\r
-Father:\r
-194\r
-Mother:\r
-195\r
-\r
-Spouses:\r
-23\r
-196\r
-\r
-Consort of:\r
-96\r
-Consort of:\r
-231\r
-\r
-\r
-ID:\r
-87\r
-\r
-Name:\r
-Berengaria of Navarre\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1165-1170\r
-Died:\r
-23/11/1230\r
-\r
-Father:\r
-197\r
-Mother:\r
-198\r
-\r
-Spouses:\r
-24\r
-\r
-Consort of:\r
-24\r
-\r
-\r
-ID:\r
-88\r
-\r
-Name:\r
-Isabella of Gloucester\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1173\r
-Died:\r
-14/10/1217\r
-\r
-Father:\r
-199\r
-Mother:\r
-200\r
-\r
-Spouses:\r
-25\r
-201\r
-202\r
-\r
-\r
-\r
-ID:\r
-89\r
-\r
-Name:\r
-Isabella of Angouleme\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1188\r
-Died:\r
-04/06/1246\r
-\r
-Father:\r
-203\r
-Mother:\r
-204\r
-\r
-Spouses:\r
-25\r
-205\r
-\r
-Style:\r
-Countess of Angouleme\r
-Territories:\r
-Angouleme\r
-\r
-From:\r
-16/05/1202\r
-To:\r
-04/06/1246\r
-\r
-Consort of:\r
-25\r
-\r
-\r
-ID:\r
-90\r
-\r
-Name:\r
-Eleanor of Provence\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1223\r
-Died:\r
-24-25/05/1291\r
-\r
-Father:\r
-206\r
-Mother:\r
-207\r
-\r
-Spouses:\r
-26\r
-\r
-Consort of:\r
-26\r
-\r
-\r
-ID:\r
-91\r
-\r
-Name:\r
-Eleanor of Castile\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1241\r
-Died:\r
-28/11/1290\r
-\r
-Father:\r
-208\r
-Mother:\r
-211\r
-\r
-Spouses:\r
-27\r
-\r
-Consort of:\r
-27\r
-Style:\r
-Countess of Ponthieu\r
-Territories:\r
-Ponthieu\r
-\r
-From:\r
-1279\r
-To:\r
-1290\r
-\r
-\r
-\r
-ID:\r
-92\r
-\r
-Name:\r
-Margaret of France\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1279\r
-Died:\r
-14/02/1318\r
-\r
-Father:\r
-209\r
-Mother:\r
-210\r
-\r
-Spouses:\r
-27\r
-\r
-Consort of:\r
-27\r
-\r
-\r
-ID:\r
-93\r
-\r
-Name:\r
-Isabella of France\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1295\r
-Died:\r
-22/08/1358\r
-\r
-Father:\r
-212\r
-Mother:\r
-213\r
-\r
-Spouses:\r
-28\r
-\r
-Consort of:\r
-28\r
-\r
-\r
-ID:\r
-94\r
-\r
-Name:\r
-Philippa of Hainault\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/06/1314\r
-Died:\r
-15/08/1369\r
-\r
-Father:\r
-230\r
-Mother:\r
-214\r
-\r
-Spouses:\r
-29\r
-\r
-Consort of:\r
-29\r
-\r
-\r
-ID:\r
-95\r
-\r
-Name:\r
-Anne of Bohemia\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/05/1366\r
-Died:\r
-07/06/1394\r
-\r
-Father:\r
-215\r
-Mother:\r
-216\r
-\r
-Spouses:\r
-30\r
-\r
-Consort of:\r
-30\r
-\r
-\r
-ID:\r
-96\r
-\r
-Name:\r
-Isabella of Valois\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-09/11/1389\r
-Died:\r
-13/09/1409\r
-\r
-Father:\r
-217\r
-Mother:\r
-218\r
-\r
-Spouses:\r
-30\r
-219\r
-\r
-Consort of:\r
-30\r
-\r
-\r
-ID:\r
-97\r
-\r
-Name:\r
-Mary de Bohun\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1368\r
-Died:\r
-04/06/1394\r
-\r
-Father:\r
-224\r
-Mother:\r
-225\r
-\r
-Spouses:\r
-31\r
-\r
-\r
-\r
-ID:\r
-98\r
-\r
-Name:\r
-Joanna of Navarre\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1370\r
-Died:\r
-10/06/1437\r
-\r
-Father:\r
-220\r
-Mother:\r
-221\r
-\r
-Spouses:\r
-222\r
-31\r
-\r
-Consort of:\r
-221\r
-Consort of:\r
-31\r
-\r
-\r
-ID:\r
-99\r
-\r
-Name:\r
-Catherine of Valois\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-27/10/1401\r
-Died:\r
-03/01/1437\r
-\r
-Father:\r
-217\r
-Mother:\r
-218\r
-\r
-Spouses:\r
-32\r
-223\r
-\r
-Consort of:\r
-32\r
-\r
-\r
-ID:\r
-100\r
-\r
-Name:\r
-Margaret of Anjou\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-23/03/1430\r
-Died:\r
-25/08/1482\r
-\r
-Father:\r
-231\r
-Mother:\r
+ID:
+1
+
+Pre-name style:
+King
+
+Name:
+Alfred
+
+Post-name style:
+the Great
+
+URL:
+http://en.wikipedia.org/wiki/Alfred_the_Great
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Statue_d%27Alfred_le_Grand_%C3%A0_Winchester.jpg/220px-Statue_d%27Alfred_le_Grand_%C3%A0_Winchester.jpg
+
+Born:
+849
+
+Died:
+26/10/899
+
+Father:
+Aethelwulf
+
+Mother:
+Osburh
+
+Spouses:
+61
+868
+.
+
+Style:
+King of Wessex
+Territories:
+Wessex
+
+From:
+871
+To:
+899
+Style:
+King of the Anglo-Saxons
+Territories:
+Anglo-Saxons
+
+From:
+878
+To:
+899
+
+
+ID:
+2
+
+Pre-name style:
+King
+
+Name:
+Edward
+
+Post-name style:
+the Elder
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Elder
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Edward_the_Elder_-_MS_Royal_14_B_VI.jpg/218px-Edward_the_Elder_-_MS_Royal_14_B_VI.jpg
+
+Born:
+874-877
+
+Died:
+17/07/924
+
+Father:
+1
+
+Mother:
+61
+
+Spouses:
+62
+893
+.
+
+63
+899
+.
+
+64
+919
+.
+
+Style:
+King of Wessex
+Territories:
+Wessex
+
+From:
+26/10/899
+To:
+17/07/924
+Style:
+King of the Anglo-Saxons
+Territories:
+Anglo-Saxons
+
+From:
+899
+To:
+924
+
+
+ID:
+3
+
+Pre-name style:
+King
+
+Name:
+Aethelstan
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelstan
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Athelstan.jpg/220px-Athelstan.jpg
+
+Born:
+893-895
+
+Died:
+27/10/939
+
+Father:
+2
+
+Mother:
+62
+
+Style:
+King of the Anglo-Saxons
+Territories:
+Anglo-Saxons
+
+From:
+924
+To:
+927
+Style:
+King of the English
+Territories:
+England
+
+From:
+927
+To:
+939
+
+
+ID:
+4
+
+Pre-name style:
+King
+
+Name:
+Edmund
+
+Post-name style:
+I
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_I
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Edmund_I_-_MS_Royal_14_B_V.jpg/220px-Edmund_I_-_MS_Royal_14_B_V.jpg
+
+Born:
+921
+
+Died:
+26/05/946
+
+Father:
+2
+
+Mother:
+64
+
+Spouses:
+65
+940?
+.
+
+66
+944
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+936
+To:
+26/05/946
+
+
+ID:
+5
+
+Pre-name style:
+King
+
+Name:
+Eadred
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Eadred
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Eadred_penny.jpg/200px-Eadred_penny.jpg
+
+Born:
+?
+
+Died:
+23/11/955
+
+Father:
+2
+
+Mother:
+64
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+26/05/946
+To:
+23/11/955
+
+
+ID:
+6
+
+Pre-name style:
+King
+
+Name:
+Eadwig (Edwy)
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Eadwig
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Eadwig.jpg/220px-Eadwig.jpg
+
+Born:
+941?
+
+Died:
+01/10/959
+
+Father:
+4
+
+Mother:
+65
+
+Spouses:
+67
+955?
+957?
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+23/11/955
+To:
+01/10/959
+
+
+ID:
+7
+
+Pre-name style:
+King
+
+Name:
+Edgar
+
+Post-name style:
+the Peaceful
+
+URL:
+http://en.wikipedia.org/wiki/Edgar_the_Peaceful
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/c/c2/Edgar_King_of_England.jpg
+
+Born:
+07/08/943
+
+Died:
+08/07/975
+
+Father:
+4
+
+Mother:
+65
+
+Spouses:
+68
+?
+.
+
+69
+?
+.
+
+70
+964/5
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+01/10/959
+To:
+08/07/975
+
+
+ID:
+8
+
+Pre-name style:
+King
+
+Name:
+Edward
+
+Post-name style:
+the Martyr
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Martyr
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Edward_the_Martyr_by_Edwards_detail.jpg/220px-Edward_the_Martyr_by_Edwards_detail.jpg
+
+Born:
+c962
+
+Died:
+18/03/978
+
+Father:
+7
+
+Mother:
+68 or 69
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+08/07/975
+To:
+18/03/978
+
+
+ID:
+9
+
+Pre-name style:
+King
+
+Name:
+Aethelred
+
+Post-name style:
+the Unready
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Ethelred_the_Unready.jpg/220px-Ethelred_the_Unready.jpg
+
+Born:
+966-968
+
+Died:
+23/04/1016
+
+Father:
+7
+
+Mother:
+70
+
+Spouses:
+71
+980?
+.
+
+72
+1002
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+18/03/978
+To:
+1013
+Style:
+King of the English
+Territories:
+England
+
+From:
+1014
+To:
+23/04/1016
+
+
+ID:
+10
+
+Pre-name style:
+King
+
+Name:
+Sweyn Forkbeard
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Sweyn_Forkbeard
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Sweyn_Forkbeard.jpg/220px-Sweyn_Forkbeard.jpg
+
+Born:
+c960
+
+Died:
+03/02/1014
+
+Father:
+507
+
+Mother:
+508
+
+Spouses:
+73
+?
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+1013
+To:
+03/02/1014
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+986
+To:
+03/02/1014
+Style:
+King of Norway
+Territories:
+Norway
+
+From:
+986
+To:
+995
+Style:
+King of Norway
+Territories:
+Norway
+
+From:
+999
+To:
+03/02/14
+
+
+ID:
+11
+
+Pre-name style:
+King
+
+Name:
+Edmund
+
+Post-name style:
+Ironside
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_Ironside
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/EdmundIronside_Canutethe_Dane1.jpg/220px-EdmundIronside_Canutethe_Dane1.jpg
+
+Born:
+c989
+
+Died:
+30/11/1016
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+74
+23/04/1016
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+23/04/1016
+To:
+30/11/1016
+
+
+ID:
+12
+
+Pre-name style:
+King
+
+Name:
+Cnut
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Cnut_the_Great
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Cnut_the_Great_Obverse.jpg/220px-Cnut_the_Great_Obverse.jpg
+
+Born:
+c985
+
+Died:
+12/11/1035
+
+Father:
+10
+
+Mother:
+73
+
+Spouses:
+75
+1013
+.
+
+72
+1017?
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+1016
+To:
+1035
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+1018
+To:
+1035
+Style:
+King of Norway
+Territories:
+Norway
+
+From:
+1028
+To:
+1035
+
+
+ID:
+13
+
+Pre-name style:
+King
+
+Name:
+Harold
+
+Post-name style:
+I Harefoot
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Harefoot
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Harold1_Harefoot_02.jpg/150px-Harold1_Harefoot_02.jpg
+
+Born:
+c1015
+
+Died:
+17/03/1040
+
+Father:
+12
+
+Mother:
+75
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+1035
+To:
+17/03/1040
+
+
+ID:
+14
+
+Pre-name style:
+King
+
+Name:
+Harthacnut
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Harthacnut
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Coin_danish_and_english_king_Harthacnut%2C_Hardeknut_%281018-1042%29.jpg/220px-Coin_danish_and_english_king_Harthacnut%2C_Hardeknut_%281018-1042%29.jpg
+
+Born:
+c1018
+
+Died:
+08/06/1042
+
+Father:
+12
+
+Mother:
+72
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+17/03/1040
+To:
+08/06/1042
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+1035
+To:
+1042
+
+
+ID:
+15
+
+Pre-name style:
+King
+
+Name:
+Edward
+
+Post-name style:
+the Confessor
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Confessor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Bayeux_Tapestry_scene1_EDWARD_REX.jpg/220px-Bayeux_Tapestry_scene1_EDWARD_REX.jpg
+
+Born:
+C1003-1005
+
+Died:
+4-5/01/1066
+
+Father:
+9
+
+Mother:
+72
+
+Spouses:
+76
+23/01/1045
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+08/06/1042
+To:
+4-5/01/1066
+
+
+ID:
+16
+
+Pre-name style:
+King
+
+Name:
+Harold
+
+Post-name style:
+II Godwinson
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Godwinson
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/f/fd/Harold2.jpg
+
+Born:
+c1022
+
+Died:
+14/10/1066
+
+Father:
+176
+
+Mother:
+177
+
+Spouses:
+77
+?
+.
+
+78
+1066
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+4-5/01/1066
+To:
+14/10/1066
+
+
+ID:
+17
+
+Pre-name style:
+King
+
+Name:
+William
+
+Post-name style:
+I the Conqueror
+
+URL:
+http://en.wikipedia.org/wiki/William_the_Conqueror
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Bayeuxtapestrywilliamliftshishelm.jpg/150px-Bayeuxtapestrywilliamliftshishelm.jpg
+
+Born:
+c1028
+
+Died:
+09/09/1087
+
+Father:
+128
+
+Mother:
+129
+
+Spouses:
+79
+1051/2
+.
+
+Style:
+King of the English
+Territories:
+England
+
+From:
+25/11/1066
+To:
+09/09/1087
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+03/07/1035
+To:
+09/09/1087
+
+
+ID:
+18
+
+Pre-name style:
+King
+
+Name:
+William
+
+Post-name style:
+II of England
+
+URL:
+http://en.wikipedia.org/wiki/William_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/92/William_II_of_England.jpg/221px-William_II_of_England.jpg
+
+Born:
+c1056
+
+Died:
+02/08/1100
+
+Father:
+17
+
+Mother:
+79
+
+Style:
+By the Grace of God King of the English
+Territories:
+England
+
+From:
+09/09/1087
+To:
+02/08/1100
+
+
+ID:
+19
+
+Pre-name style:
+King
+
+Name:
+Henry Beuclerc
+
+Post-name style:
+I Beuclerc
+
+URL:
+http://en.wikipedia.org/wiki/Henry_I_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Henry1.jpg/230px-Henry1.jpg
+
+Born:
+c1068
+
+Died:
+01/12/1135
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+80
+11/11/1100
+.
+
+81
+ 24/01/1121
+.
+
+Style:
+King of the English, Duke of the Normans
+Territories:
+England
+Normandy
+
+From:
+02/08/1100
+To:
+01/12/1135
+
+
+ID:
+20
+
+Pre-name style:
+King
+
+Name:
+Stephen of Blois
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Stephen_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Stepan_Blois.jpg/218px-Stepan_Blois.jpg
+
+Born:
+C1092-1096
+
+Died:
+25/10/1154
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+82
+1125
+.
+
+Style:
+King of the English, Duke of the Normans
+Territories:
+England
+Normandy
+
+From:
+22/11/1135
+To:
+?/04/1141
+Style:
+King of the English, Duke of the Normans
+Territories:
+England
+
+From:
+?/11/1141
+To:
+25/10/1154
+
+
+ID:
+21
+
+Pre-name style:
+Empress
+
+Name:
+Matilda (Maud)
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Empress_Matilda
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Empress_Mathilda.png/220px-Empress_Mathilda.png
+
+Born:
+07/02/1102
+
+Died:
+10/09/1167
+
+Father:
+19
+
+Mother:
+80
+
+Spouses:
+83
+1114
+.
+
+84
+1128
+.
+
+Style:
+Lady of the English,Queen of England and Duke of Normans
+Territories:
+England
+Normandy
+
+From:
+?/04/1141
+To:
+?/11/1141
+
+
+ID:
+22
+
+Pre-name style:
+King
+
+Name:
+Henry 'Curtmantle' Plantagenet
+
+Post-name style:
+II of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Henry_II_of_England_cropped.jpg/211px-Henry_II_of_England_cropped.jpg
+
+Born:
+05/03/1133
+
+Died:
+06/07/1189
+
+Father:
+84
+
+Mother:
+21
+
+Spouses:
+85
+1152
+.
+
+Style:
+King of England, Duke of Normandy, and of Aquitaine and Count of Anjou
+Territories:
+England
+Normandy
+Aquitaine
+Anjou
+
+From:
+25/10/1154
+To:
+06/07/1189
+
+
+ID:
+23
+
+Pre-name style:
+.
+
+Name:
+Henry Plantagenet
+
+Post-name style:
+the young king
+
+URL:
+http://en.wikipedia.org/wiki/Henry_the_Young_King
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/BL_MS_Royal_14_C_VII_f.9_%28Henry_jr%29.jpg/160px-BL_MS_Royal_14_C_VII_f.9_%28Henry_jr%29.jpg
+
+Born:
+28/02/1155
+
+Died:
+11/06/1183
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+86
+27/08/1172
+.
+
+Style:
+Junior King of the English
+Territories:
+England
+
+From:
+28/02/1155
+To:
+11/06/1183
+
+
+ID:
+24
+
+Pre-name style:
+King
+
+Name:
+Richard Plantagenet
+
+Post-name style:
+Lionheart
+
+URL:
+http://en.wikipedia.org/wiki/Richard_I_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Church_of_Fontevraud_Abbey_Richard_I_effigy.jpg/220px-Church_of_Fontevraud_Abbey_Richard_I_effigy.jpg
+
+Born:
+08/09/1157
+
+Died:
+06/04/1199
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+87
+12/05/1191
+.
+
+Style:
+King of England, Duke of Normandy, and of Aquitaine and Count of Anjou
+Territories:
+England
+Normandy
+Aquitaine
+Anjou
+
+From:
+06/07/1189
+To:
+06/04/1199
+
+
+ID:
+25
+
+Pre-name style:
+King
+
+Name:
+John Plantagenet
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/John,_King_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Jan_tomb.jpg/220px-Jan_tomb.jpg
+
+Born:
+24/12/1166
+
+Died:
+18-19/10/1216
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+88
+29/08/1189
+1199
+
+89
+24/08/1200
+.
+
+Style:
+King of England, Lord of Ireland, Duke of Normandy and Duke of Aquitaine
+Territories:
+England
+Ireland
+Normandy
+Aquitaine
+
+From:
+06/04/1199
+To:
+18-19/10/1216
+
+
+ID:
+26
+
+Pre-name style:
+King
+
+Name:
+Henry Plantagenet
+
+Post-name style:
+III of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_III_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Henry_III_funeral_head.jpg/220px-Henry_III_funeral_head.jpg
+
+Born:
+01/10/1207
+
+Died:
+16/11/1272
+
+Father:
+25
+
+Mother:
+89
+
+Spouses:
+90
+14/01/1236
+.
+
+Style:
+King of England, Lord of Ireland, Duke of Normandy and Duke of Aquitaine
+Territories:
+England
+Ireland
+Normandy
+Aquitaine
+
+From:
+18-19/10/1216
+To:
+1259
+Style:
+King of England, Lord of Ireland, and Duke of Aquitaine
+Territories:
+England
+Ireland
+Aquitaine
+
+From:
+1259
+To:
+16/11/1272
+
+
+ID:
+27
+
+Pre-name style:
+King
+
+Name:
+Edward Plantagenet
+
+Post-name style:
+I of England
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Gal_nations_edward_i.jpg/225px-Gal_nations_edward_i.jpg
+
+Born:
+17/06/1239
+
+Died:
+07/07/1307
+
+Father:
+26
+
+Mother:
+90
+
+Spouses:
+91
+01/11/1254
+.
+
+92
+08/09/1299
+.
+
+Style:
+King of England, Lord of Ireland, and Duke of Aquitaine
+Territories:
+England
+Ireland
+Aquitaine
+
+From:
+16/11/1272
+To:
+07/07/1307
+
+
+ID:
+28
+
+Pre-name style:
+King
+
+Name:
+Edward Plantagenet
+
+Post-name style:
+II of England
+
+URL:
+http://en.wikipedia.org/wiki/Edward_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Edward_II_-_British_Library_Royal_20_A_ii_f10_%28detail%29.jpg/220px-Edward_II_-_British_Library_Royal_20_A_ii_f10_%28detail%29.jpg
+
+Born:
+25/04/1284
+
+Died:
+21/09/1327
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+93
+01/1308
+.
+
+Style:
+King of England, Lord of Ireland, and Duke of Aquitaine
+Territories:
+England
+Ireland
+Aquitaine
+
+From:
+07/07/1307
+To:
+25/01/1327
+
+
+ID:
+29
+
+Pre-name style:
+King
+
+Name:
+Edward Plantagenet
+
+Post-name style:
+III of England
+
+URL:
+http://en.wikipedia.org/wiki/Edward_III_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Edward_III_of_England_%28Order_of_the_Garter%29.jpg/220px-Edward_III_of_England_%28Order_of_the_Garter%29.jpg
+
+Born:
+13/11/1312
+
+Died:
+21/06/1377
+
+Father:
+28
+
+Mother:
+93
+
+Spouses:
+94
+24/01/1328
+.
+
+Style:
+King of England, Lord of Ireland, and Duke of Aquitaine
+Territories:
+England
+Ireland
+Aquitaine
+
+From:
+25/01/1327
+To:
+1340
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+1340
+To:
+21/06/1377
+
+
+ID:
+30
+
+Pre-name style:
+King
+
+Name:
+Richard Plantagenet
+
+Post-name style:
+II of England
+
+URL:
+http://en.wikipedia.org/wiki/Richard_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Richard_II_King_of_England.jpg/220px-Richard_II_King_of_England.jpg
+
+Born:
+06/01/1367
+
+Died:
+14/02/1400
+
+Father:
+132
+
+Mother:
+133
+
+Spouses:
+95
+20/01/1382
+.
+
+96
+31/10/1396
+.
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+21/06/1377
+To:
+1397
+Style:
+King of England and of France, Lord of Ireland, and Prince of Chester
+Territories:
+England
+France
+Ireland
+Chester
+
+From:
+1397
+To:
+14/02/1400
+
+
+ID:
+31
+
+Pre-name style:
+King
+
+Name:
+Henry of Lancaster
+
+Post-name style:
+IV of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_IV_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/King_Henry_IV_from_NPG_%282%29.jpg/180px-King_Henry_IV_from_NPG_%282%29.jpg
+
+Born:
+15/04/1367
+
+Died:
+20/03/1413
+
+Father:
+134
+
+Mother:
+135
+
+Spouses:
+97
+05/02/1381
+.
+
+98
+07/02/1403
+.
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+14/02/1400
+To:
+20/03/1413
+
+
+ID:
+32
+
+Pre-name style:
+King
+
+Name:
+Henry of Lancaster
+
+Post-name style:
+V of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_V_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/18/King_Henry_V_from_NPG.jpg/220px-King_Henry_V_from_NPG.jpg
+
+Born:
+16/09/1386
+
+Died:
+31/08/1422
+
+Father:
+31
+
+Mother:
+97
+
+Spouses:
+99
+1420
+.
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+20/03/1413
+To:
+1420
+Style:
+King of England, Heir and Regent of France and Lord of Ireland
+Territories:
+England
+Ireland
+Aquitaine
+
+From:
+1420
+To:
+31/08/1422
+
+
+ID:
+33
+
+Pre-name style:
+King
+
+Name:
+Henry of Lancaster
+
+Post-name style:
+VI of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VI_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/King_Henry_VI_from_NPG_%282%29.jpg/220px-King_Henry_VI_from_NPG_%282%29.jpg
+
+Born:
+06/11/1421
+
+Died:
+21/05/1471
+
+Father:
+32
+
+Mother:
+99
+
+Spouses:
+100
+23/04/1445
+.
+
+Style:
+King of England, Heir and Regent of France and Lord of Ireland
+Territories:
+England
+Ireland
+Normandy
+Aquitaine
+
+From:
+31/08/1422
+To:
+1422
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+1422
+To:
+04/03/1461
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+30/08/1471
+To:
+11/04/1471
+
+
+ID:
+34
+
+Pre-name style:
+King
+
+Name:
+Edward of York
+
+Post-name style:
+IV of England
+
+URL:
+http://en.wikipedia.org/wiki/Edward_IV_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Edward4.jpg/229px-Edward4.jpg
+
+Born:
+28/04/1442
+
+Died:
+09/04/1483
+
+Father:
+136
+
+Mother:
+137
+
+Spouses:
+101
+01/05/1464
+.
+
+Style:
+King of England, Heir and Regent of France and Lord of Ireland
+Territories:
+England
+Ireland
+Normandy
+Aquitaine
+
+From:
+04/03/1461
+To:
+03/10/1470
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+11/04/1471
+To:
+09/04/1483
+
+
+ID:
+35
+
+Pre-name style:
+King
+
+Name:
+Edward of York
+
+Post-name style:
+V of England
+
+URL:
+http://en.wikipedia.org/wiki/Edward_V_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/King-edward-v.jpg/200px-King-edward-v.jpg
+
+Born:
+02/11/1470
+
+Died:
+c1483
+
+Father:
+34
+
+Mother:
+101
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+09/04/1483
+To:
+26/06/1483
+
+
+ID:
+36
+
+Pre-name style:
+King
+
+Name:
+Richard of York
+
+Post-name style:
+III of England
+
+URL:
+http://en.wikipedia.org/wiki/Richard_III_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Richard_III_earliest_surviving_portrait.jpg/230px-Richard_III_earliest_surviving_portrait.jpg
+
+Born:
+02/10/1452
+
+Died:
+22/08/1485
+
+Father:
+136
+
+Mother:
+137
+
+Spouses:
+102
+12/07/1472
+.
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+26/06/1483
+To:
+22/08/1485
+
+
+ID:
+37
+
+Pre-name style:
+King
+
+Name:
+Henry Tudor
+
+Post-name style:
+VII of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VII_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/King_Henry_VII.jpg/220px-King_Henry_VII.jpg
+
+Born:
+28/01/1457
+
+Died:
+21/04/1509
+
+Father:
+142
+
+Mother:
+143
+
+Spouses:
+103
+18/01/1486
+.
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+22/08/1485
+To:
+21/04/1509
+
+
+ID:
+38
+
+Pre-name style:
+King
+
+Name:
+Henry Tudor
+
+Post-name style:
+VIII of England
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VIII_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Workshop_of_Hans_Holbein_the_Younger_-_Portrait_of_Henry_VIII_-_Google_Art_Project.jpg/220px-Workshop_of_Hans_Holbein_the_Younger_-_Portrait_of_Henry_VIII_-_Google_Art_Project.jpg
+
+Born:
+28/06/1491
+
+Died:
+28/01/1547
+
+Father:
+37
+
+Mother:
+103
+
+Spouses:
+104
+11/06/1509
+23/05/1533
+
+105
+25/01/1533
+17/05/1536
+
+106
+30/05/1536
+.
+
+107
+06/01/1540
+09/07/1540
+
+108
+25/11/1541
+23/11/1541
+
+109
+12/07/1543
+.
+
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+21/04/1509
+To:
+1521
+Style:
+By the Grace of God, King of England and France, Defender of the Faith and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+1521
+To:
+1535
+Style:
+By the Grace of God, King of England and France, Defender of the Faith, Lord of Ireland, and of the Church of England in Earth Supreme Head
+Territories:
+England
+France
+Ireland
+
+From:
+1535
+To:
+1536
+Style:
+By the Grace of God, King of England and France, Defender of the Faith, Lord of Ireland and of the Church of England and of Ireland in Earth Supreme Head
+Territories:
+England
+France
+Ireland
+
+From:
+1536
+To:
+1542
+Style:
+By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head
+Territories:
+England
+France
+Ireland
+
+From:
+1542
+To:
+28/01/1547
+
+
+ID:
+39
+
+Pre-name style:
+King
+
+Name:
+Edward Tudor
+
+Post-name style:
+VI of England
+
+URL:
+http://en.wikipedia.org/wiki/Edward_VI_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Portrait_of_Edward_VI_of_England.jpg/220px-Portrait_of_Edward_VI_of_England.jpg
+
+Born:
+21/10/1537
+
+Died:
+06/07/1553
+
+Father:
+38
+
+Mother:
+106
+
+Style:
+By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head
+Territories:
+England
+France
+Ireland
+
+From:
+28/01/1547
+To:
+06/07/1553
+
+
+ID:
+40
+
+Pre-name style:
+Queen
+
+Name:
+Jane Grey
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Lady_Jane_Grey
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Streathamladyjayne.jpg/220px-Streathamladyjayne.jpg
+
+Born:
+C1536-1537
+
+Died:
+12/02/1554
+
+Father:
+146
+
+Mother:
+147
+
+Spouses:
+110
+25/05/1553
+.
+
+Style:
+By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head
+Territories:
+England
+France
+Ireland
+
+From:
+10/07/1553
+To:
+19/07/1553
+
+
+ID:
+41
+
+Pre-name style:
+Queen
+
+Name:
+Mary Tudor
+
+Post-name style:
+I of England
+
+URL:
+http://en.wikipedia.org/wiki/Mary_I_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Maria_Tudor1.jpg/220px-Maria_Tudor1.jpg
+
+Born:
+18/02/1516
+
+Died:
+17/11/1558
+
+Father:
+38
+
+Mother:
+104
+
+Spouses:
+111
+25/07/1554
+.
+
+Style:
+By the Grace of God, King of England, France and Ireland, Defender of the Faith, and of the Church of England and of Ireland in Earth Supreme Head
+Territories:
+England
+France
+Ireland
+
+From:
+19/07/1553
+To:
+1554
+Style:
+By the Grace of God, King and Queen of England and France, Naples, Jerusalem and Ireland, Defenders of the Faith, Princes of Spain and Sicily, Archdukes of Austria, Dukes of Milan, Burgundy, and Brabant, Count and Countess of Habsburg, Flanders, and Tyrol
+Territories:
+England
+France
+Naples
+Jerusalem
+Ireland
+Spain
+Sicily
+Austria
+Milan
+Burgundy
+Brabant
+Habsburg
+Flanders
+Tyrol
+
+From:
+1554
+To:
+1556
+Style:
+By the Grace of God, King and Queen of England, Spain, France, Jerusalem, both the Sicilies and Ireland, Defenders of the Faith, Archduke and Archduchess of Austria, Duke and Duchess of Burgundy, Milan and Brabant, Count and Countess of Habsburg, Flanders and Tyrol
+Territories:
+England
+Spain
+France
+Jerusalem
+Sicilies
+Ireland
+Austria
+Burgundy
+Milan
+Brabant
+Habsburg
+Flanders
+Tyrol
+
+From:
+1556
+To:
+17/11/1558
+
+
+ID:
+42
+
+Pre-name style:
+Queen
+
+Name:
+Elizabeth Tudor
+
+Post-name style:
+I of England
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_I_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Darnley_stage_3.jpg/220px-Darnley_stage_3.jpg
+
+Born:
+07/09/1533
+
+Died:
+24/03/1603
+
+Father:
+38
+
+Mother:
+105
+
+Style:
+By the Grace of God, Queen of England, France and Ireland, Defender of the Faith, etc
+Territories:
+England
+France
+Ireland
+
+From:
+17/11/1558
+To:
+24/03/1603
+
+
+ID:
+43
+
+Pre-name style:
+King
+
+Name:
+James Stuart
+
+Post-name style:
+VI of Scotland & I of England
+
+URL:
+http://en.wikipedia.org/wiki/James_VI_and_I
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/72/James_I_of_England_by_Daniel_Mytens.jpg/200px-James_I_of_England_by_Daniel_Mytens.jpg
+
+Born:
+19/06/1566
+
+Died:
+27/03/1625
+
+Father:
+150
+
+Mother:
+151
+
+Spouses:
+112
+23/11/1589
+.
+
+Style:
+By the Grace of God, King of England, France, and Ireland, Defender of the Faith etc.
+Territories:
+England
+France
+Ireland
+
+From:
+24/03/1603
+To:
+27/03/1625
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+24/07/1567
+To:
+27/03/1625
+
+
+ID:
+44
+
+Pre-name style:
+King
+
+Name:
+Charles Stuart
+
+Post-name style:
+I of England
+
+URL:
+http://en.wikipedia.org/wiki/Charles_I_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/King_Charles_I_after_original_by_van_Dyck.jpg/220px-King_Charles_I_after_original_by_van_Dyck.jpg
+
+Born:
+19/11/1600
+
+Died:
+30/01/1649
+
+Father:
+43
+
+Mother:
+112
+
+Spouses:
+113
+13/06/1625
+.
+
+Style:
+By the Grace of God, King of England,Scotland, France, and Ireland, Defender of the Faith etc.
+Territories:
+England
+Scotland
+France
+Ireland
+
+From:
+27/03/1625
+To:
+30/01/1649
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+27/03/1625
+To:
+30/01/1649
+
+
+ID:
+45
+
+Pre-name style:
+King
+
+Name:
+Charles Stuart
+
+Post-name style:
+II of England
+
+URL:
+http://en.wikipedia.org/wiki/Charles_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/51/King_Charles_II_by_John_Michael_Wright_or_studio.jpg/220px-King_Charles_II_by_John_Michael_Wright_or_studio.jpg
+
+Born:
+26/05/1630
+
+Died:
+06/02/1685
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+114
+21/05/1662
+.
+
+Style:
+By the Grace of God, King of England,Scotland, France, and Ireland, Defender of the Faith etc.
+Territories:
+England
+Scotland
+France
+Ireland
+
+From:
+29/05/1660
+To:
+06/02/1685
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+30/01/1649
+To:
+03/09/1651
+
+
+ID:
+46
+
+Pre-name style:
+King
+
+Name:
+James Stuart
+
+Post-name style:
+VII of Scotland &II of England
+
+URL:
+http://en.wikipedia.org/wiki/James_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/King_James_II_by_Sir_Godfrey_Kneller%2C_Bt.jpg/220px-King_James_II_by_Sir_Godfrey_Kneller%2C_Bt.jpg
+
+Born:
+14/10/1633
+
+Died:
+16/09/1701
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+115
+03/09/1660
+
+
+116
+20/09/1673
+.
+
+Style:
+By the Grace of God, King of England,Scotland, France, and Ireland, Defender of the Faith etc.
+Territories:
+England
+Scotland
+France
+Ireland
+
+From:
+06/02/1685
+To:
+11/11/1688
+
+
+ID:
+47
+
+Pre-name style:
+Queen
+
+Name:
+Mary Stuart
+
+Post-name style:
+II of England
+
+URL:
+http://en.wikipedia.org/wiki/Mary_II_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/65/1662_Mary_II.jpg/220px-1662_Mary_II.jpg
+
+Born:
+30/04/1662
+
+Died:
+28/11/1694
+
+Father:
+46
+
+Mother:
+115
+
+Spouses:
+48
+04/11/1677
+.
+
+Style:
+By the Grace of God, King and Queen of England, Scotland, France and Ireland, Stadholther of the Republic of the Seven United Netherlands, Prince of Orange, Count of Nassau, Defenders of the Faith, etc.
+Territories:
+England
+Scotland
+France
+Ireland
+Netherlands
+Orange
+Nassau
+
+From:
+13/02/1689
+To:
+28/11/1694
+
+
+ID:
+48
+
+Pre-name style:
+King
+
+Name:
+William of Orange-Nassau
+
+Post-name style:
+II of Scotland &III of England
+
+URL:
+http://en.wikipedia.org/wiki/William_III_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/King_William_III_of_England%2C_%281650-1702%29_%28lighter%29.jpg/220px-King_William_III_of_England%2C_%281650-1702%29_%28lighter%29.jpg
+
+Born:
+04/11/1650
+
+Died:
+08/03/1702
+
+Father:
+155
+
+Mother:
+156
+
+Spouses:
+47
+.
+.
+
+Style:
+By the Grace of God, King and Queen of England, Scotland, France and Ireland, Stadholther of the Republic of the Seven United Netherlands, Prince of Orange, Count of Nassau, Defenders of the Faith, etc.
+Territories:
+England
+Scotland
+France
+Ireland
+Netherlands
+Orange
+Nassau
+
+From:
+13/02/1689
+To:
+28/11/1694
+Style:
+By the Grace of God, King of England, Scotland, France and Ireland, Stadholther of the Republic of the Seven United Netherlands, Prince of Orange, Count of Nassau, Defenders of the Faith, etc.
+Territories:
+England
+Scotland
+France
+Ireland
+Netherlands
+Orange
+Nassau
+
+From:
+28/11/1694
+To:
+08/03/1702
+
+
+ID:
+49
+
+Pre-name style:
+Queen
+
+Name:
+Anne Stuart
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Anne,_Queen_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Anne1705.jpg/220px-Anne1705.jpg
+
+Born:
+06/02/1665
+
+Died:
+01/08/1714
+
+Father:
+46
+
+Mother:
+115
+
+Spouses:
+117
+28/07/1683
+.
+
+Style:
+By the Grace of God, Queen of England, Scotland, France and Ireland, Defender of the Faith, etc.
+Territories:
+England
+Scotland
+France
+Ireland
+
+From:
+08/03/1702
+To:
+1707
+Style:
+By the Grace of God, Queen of Great Britain, France and Ireland, Defender of the Faith, etc.
+Territories:
+GB
+France
+Ireland
+
+From:
+1707
+To:
+01/08/1714
+
+
+ID:
+50
+
+Pre-name style:
+King
+
+Name:
+George Ludwig of Hanover
+
+Post-name style:
+I of GB
+
+URL:
+http://en.wikipedia.org/wiki/George_I_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/King_George_I_by_Sir_Godfrey_Kneller%2C_Bt_%283%29.jpg/226px-King_George_I_by_Sir_Godfrey_Kneller%2C_Bt_%283%29.jpg
+
+Born:
+28/05/1660
+
+Died:
+11/06/1727
+
+Father:
+157
+
+Mother:
+158
+
+Spouses:
+118
+1682
+.
+
+Style:
+By the Grace of God, King of Great Britain, France and Ireland, Defender of the Faith, Archtreasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg
+Territories:
+GB
+France
+Ireland
+Elector of HRE
+Brunswick-Luneburg
+
+From:
+01/08/1714
+To:
+11/06/1727
+Style:
+Elector of Hanover
+Territories:
+Hanover
+
+From:
+23/01/1698
+To:
+11/06/1727
+
+
+ID:
+51
+
+Pre-name style:
+King
+
+Name:
+George Augustus of Hanover
+
+Post-name style:
+II of GB
+
+URL:
+http://en.wikipedia.org/wiki/George_II_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/George_II_by_Thomas_Hudson.jpg/220px-George_II_by_Thomas_Hudson.jpg
+
+Born:
+10/11/1683
+
+Died:
+25/10/1760
+
+Father:
+50
+
+Mother:
+118
+
+Spouses:
+119
+02/09/1705
+.
+
+Style:
+By the Grace of God, King of Great Britain, France and Ireland, Defender of the Faith, Archtreasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg
+Territories:
+GB
+France
+Ireland
+Elector of HRE
+Brunswick-Luneburg
+
+From:
+11/06/1727
+To:
+25/10/1760
+
+
+ID:
+52
+
+Pre-name style:
+King
+
+Name:
+George William Frederick of Hanover
+
+Post-name style:
+III of UK
+
+URL:
+http://en.wikipedia.org/wiki/George_III_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/54/George_III_in_Coronation_edit.jpg/250px-George_III_in_Coronation_edit.jpg
+
+Born:
+04/06/1738
+
+Died:
+29/01/1820
+
+Father:
+160
+
+Mother:
+161
+
+Spouses:
+120
+08/09/1761
+.
+
+Style:
+By the Grace of God, King of Great Britain, France and Ireland, Defender of the Faith, Archtreasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg
+Territories:
+GB
+France
+Ireland
+Elector of HRE
+Brunswick-Luneburg
+
+From:
+25/10/1760
+To:
+1801
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, Arch-treasurer and Prince-Elector of the Holy Roman Empire, Duke of Brunswick-Luneburg
+Territories:
+UK
+Brunswick-Luneburg
+
+From:
+1801
+To:
+1814
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, King of Hanover, Duke of Brunswick
+Territories:
+UK
+Ireland
+Hanover
+Brunswick
+
+From:
+1814
+To:
+29/01/1820
+
+
+ID:
+53
+
+Pre-name style:
+King
+
+Name:
+George Augustus Frederick of Hanover
+
+Post-name style:
+IV of UK
+
+URL:
+http://en.wikipedia.org/wiki/George_IV_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/George_IV_1821_color.jpg/220px-George_IV_1821_color.jpg
+
+Born:
+12/08/1762
+
+Died:
+26/06/1830
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+121
+08/04/1795
+.
+
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, King of Hanover, Duke of Brunswick
+Territories:
+UK
+Hanover
+Brunswick
+
+From:
+29/01/1820
+To:
+26/06/1830
+
+
+ID:
+54
+
+Pre-name style:
+King
+
+Name:
+William Henry of Hanover
+
+Post-name style:
+IV of UK
+
+URL:
+http://en.wikipedia.org/wiki/William_IV_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/47/William_IV_crop.jpg/220px-William_IV_crop.jpg
+
+Born:
+21/08/1765
+
+Died:
+20/06/1837
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+122
+11/07/1818
+.
+
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland King, Defender of the Faith, King of Hanover, Duke of Brunswick
+Territories:
+UK
+Hanover
+Brunswick
+
+From:
+26/06/1830
+To:
+20/06/1837
+
+
+ID:
+55
+
+Pre-name style:
+Queen
+
+Name:
+Alexandrina VICTORIA of Hanover
+
+Post-name style:
+of UK
+
+URL:
+http://en.wikipedia.org/wiki/Queen_Victoria
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Queen_Victoria_by_Bassano.jpg/220px-Queen_Victoria_by_Bassano.jpg
+
+Born:
+24/05/1819
+
+Died:
+22/01/1901
+
+Father:
+162
+
+Mother:
+227
+
+Spouses:
+123
+10/02/1840
+.
+
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland Queen, Defender of the Faith
+Territories:
+UK
+
+From:
+20/06/1837
+To:
+1876
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland Queen, Defender of the Faith, Empress of India
+Territories:
+UK
+India
+
+From:
+1876
+To:
+22/01/1901
+
+
+ID:
+56
+
+Pre-name style:
+King
+
+Name:
+Albert EDWARD of Saxe-Coburg and Gotha
+
+Post-name style:
+VII of UK
+
+URL:
+http://en.wikipedia.org/wiki/Edward_VII
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Edward_VII_in_coronation_robes.jpg/220px-Edward_VII_in_coronation_robes.jpg
+
+Born:
+09/11/1841
+
+Died:
+06/05/1910
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+124
+10/03/1863
+.
+
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland and of the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India
+Territories:
+UK
+British Dominions
+India
+
+From:
+22/01/1901
+To:
+06/05/1910
+
+
+ID:
+57
+
+Pre-name style:
+King
+
+Name:
+George Frederick Ernest Albert of Saxe-Coburg and Gotha
+
+Post-name style:
+V of the UK
+
+URL:
+http://en.wikipedia.org/wiki/George_V
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/King_George_V_1911_color-crop.jpg/214px-King_George_V_1911_color-crop.jpg
+
+Born:
+03/06/1865
+
+Died:
+20/01/1936
+
+Father:
+56
+
+Mother:
+124
+
+Spouses:
+125
+06/07/1893
+.
+
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Ireland and of the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India
+Territories:
+UK
+British Dominions
+India
+
+From:
+06/05/1910
+To:
+1927
+Style:
+By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India
+Territories:
+GB
+Ireland
+Dominions
+India
+
+From:
+1927
+To:
+20/01/1936
+
+
+ID:
+58
+
+Pre-name style:
+King
+
+Name:
+Edward Albert Christian George Andrew Patrick David Windsor
+
+Post-name style:
+VIII of GB
+
+URL:
+http://en.wikipedia.org/wiki/Edward_VIII
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/A022344.jpg/220px-A022344.jpg
+
+Born:
+23/06/1894
+
+Died:
+28/05/1972
+
+Father:
+57
+
+Mother:
+125
+
+Spouses:
+126
+03/06/1937
+.
+
+Style:
+By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India
+Territories:
+GB
+Ireland
+British Dominions
+India
+
+From:
+20/01/1936
+To:
+11/11/1936
+
+
+ID:
+59
+
+Pre-name style:
+King
+
+Name:
+Albert Frederick Arthur GEORGE Windsor
+
+Post-name style:
+VI of GB
+
+URL:
+http://en.wikipedia.org/wiki/George_VI
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/King_George_VI_of_England%2C_formal_photo_portrait%2C_circa_1940-1946.jpg/220px-King_George_VI_of_England%2C_formal_photo_portrait%2C_circa_1940-1946.jpg
+
+Born:
+14/11/1895
+
+Died:
+06/02/1952
+
+Father:
+57
+
+Mother:
+125
+
+Spouses:
+127
+26/04/1923
+.
+
+Style:
+By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith, Emperor of India
+Territories:
+GB
+Ireland
+British Dominions
+India
+
+From:
+11/11/1936
+To:
+1948
+Style:
+By the Grace of God, of Great Britain, Ireland and the British Dominions beyond the Seas King, Defender of the Faith
+Territories:
+GB
+Ireland
+Dominions
+
+From:
+1948
+To:
+06/02/1952
+
+
+ID:
+60
+
+Pre-name style:
+Queen
+
+Name:
+Elizabeth Alexandra Mary Windsor
+
+Post-name style:
+II of UK
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_II
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Elizabeth_II_greets_NASA_GSFC_employees%2C_May_8%2C_2007_edit.jpg/220px-Elizabeth_II_greets_NASA_GSFC_employees%2C_May_8%2C_2007_edit.jpg
+
+Born:
+21/04/1926
+
+Died:
+present
+
+Father:
+59
+
+Mother:
+127
+
+Spouses:
+226
+20/11/1947
+.
+
+Style:
+By the Grace of God, of the United Kingdom of Great Britain and Northern Ireland and of Her other Realms and Territories Queen, Head of the Commonwealth, Defender of the Faith
+Territories:
+UK
+Realms and Territories
+Commonwealth
+
+From:
+06/02/1952
+To:
+present
+
+
+ID:
+61
+
+Pre-name style:
+.
+
+Name:
+Ealhswith
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Ealhswith
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/ab/Queen.png
+
+Born:
+?
+
+Died:
+05/11/902
+
+Father:
+Aethelred Mucel
+
+Mother:
+Eadburh
+
+Spouses:
+1
+.
+.
+
+
+
+ID:
+62
+
+Pre-name style:
+.
+
+Name:
+Ecgwyn
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Ecgwynn
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+2
+.
+.
+
+
+
+ID:
+63
+
+Pre-name style:
+.
+
+Name:
+Aelfflaed
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lffl%C3%A6d,_wife_of_Edward_the_Elder
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+2
+.
+.
+
+Consort of:
+2
+
+
+ID:
+64
+
+Pre-name style:
+.
+
+Name:
+Eadgifu
+
+Post-name style:
+of Kent
+
+URL:
+http://en.wikipedia.org/wiki/Eadgifu_of_Kent
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Picture_of_Queen_Ediva.jpg/220px-Picture_of_Queen_Ediva.jpg
+
+Born:
+~903
+
+Died:
+~966
+
+Father:
+163
+
+Mother:
+?
+
+Spouses:
+2
+.
+.
+
+Consort of:
+2
+
+
+ID:
+65
+
+Pre-name style:
+.
+
+Name:
+Aelfgifu
+
+Post-name style:
+of Shaftsbury
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgifu_of_Shaftesbury
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+~944
+
+Father:
+?
+
+Mother:
+164
+
+Spouses:
+4
+.
+.
+
+Consort of:
+4
+
+
+ID:
+66
+
+Pre-name style:
+.
+
+Name:
+Aethelflaed 
+
+Post-name style:
+of Damerham
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelfl%C3%A6d_of_Damerham
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+165
+
+Mother:
+?
+
+Spouses:
+4
+.
+.
+
+Consort of:
+4
+
+
+ID:
+67
+
+Pre-name style:
+.
+
+Name:
+Aelfgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgifu,_wife_of_Eadwig
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+166
+
+Spouses:
+6
+.
+.
+
+Consort of:
+6
+
+
+ID:
+68
+
+Pre-name style:
+.
+
+Name:
+Aethelflaed
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edgar_the_Peaceful
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+7
+.
+.
+
+
+
+ID:
+69
+
+Pre-name style:
+.
+
+Name:
+Wulthryth
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edgar_the_Peaceful
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+7
+.
+.
+
+
+
+ID:
+70
+
+Pre-name style:
+.
+
+Name:
+Aelfthryth
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfthryth,_Queen_of_England
+
+Picture:
+.
+
+Born:
+c.945
+
+Died:
+c1000
+
+Father:
+167
+
+Mother:
+?
+
+Spouses:
+168
+?
+.
+
+7
+.
+.
+
+Consort of:
+7
+
+
+ID:
+71
+
+Pre-name style:
+.
+
+Name:
+Aelfgifu
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgifu_of_York
+
+Picture:
+.
+
+Born:
+c. 970
+
+Died:
+1002
+
+Father:
+169
+
+Mother:
+?
+
+Spouses:
+9
+.
+.
+
+Consort of:
+9
+
+
+ID:
+72
+
+Pre-name style:
+.
+
+Name:
+Emma
+
+Post-name style:
+of Normandy
+
+URL:
+http://en.wikipedia.org/wiki/Emma_of_Normandy
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/1/1e/Emma_ReceivingThe_Encomium.jpeg/200px-Emma_ReceivingThe_Encomium.jpeg
+
+Born:
+c. 985
+
+Died:
+06/03/1052
+
+Father:
+170
+
+Mother:
+171
+
+Spouses:
+9
+.
+.
+
+12
+.
+.
+
+Consort of:
+9
+Consort of:
+12
+
+
+ID:
+73
+
+Pre-name style:
+.
+
+Name:
+Sigrid
+
+Post-name style:
+the Haughty
+
+URL:
+http://en.wikipedia.org/wiki/Sigrid_the_Haughty
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Sigrid_and_olaf.jpg/220px-Sigrid_and_olaf.jpg
+
+Born:
+?
+
+Died:
+?
+
+Father:
+172
+
+Mother:
+173
+
+Spouses:
+174
+?
+.
+
+10
+.
+.
+
+Consort of:
+10
+
+
+ID:
+74
+
+Pre-name style:
+.
+
+Name:
+Ealdgyth
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Ealdgyth_%28floruit_1015%E2%80%931016%29
+
+Picture:
+.
+
+Born:
+c. 992
+
+Died:
+Post 1016
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+509
+?
+.
+
+11
+.
+.
+
+Consort of:
+11
+
+
+ID:
+75
+
+Pre-name style:
+.
+
+Name:
+Aelfgifu
+
+Post-name style:
+of Northampton
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgifu_of_Northampton
+
+Picture:
+.
+
+Born:
+c. 990
+
+Died:
+Post 1040
+
+Father:
+175
+
+Mother:
+?
+
+Spouses:
+12
+.
+.
+
+
+
+ID:
+76
+
+Pre-name style:
+.
+
+Name:
+Edith
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/Edith_of_Wessex
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/b/be/Edith_z_Wessexu.gif
+
+Born:
+C 1025
+
+Died:
+18/12/1075
+
+Father:
+176
+
+Mother:
+177
+
+Spouses:
+15
+.
+.
+
+Consort of:
+15
+
+
+ID:
+77
+
+Pre-name style:
+.
+
+Name:
+Edith
+
+Post-name style:
+the Fair
+
+URL:
+http://en.wikipedia.org/wiki/Edith_Swanneck
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Edith_discovering_the_body_of_Harold.jpg/220px-Edith_discovering_the_body_of_Harold.jpg
+
+Born:
+C 1025
+
+Died:
+1086
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+16
+.
+.
+
+
+
+ID:
+78
+
+Pre-name style:
+.
+
+Name:
+Edith
+
+Post-name style:
+of Mercia
+
+URL:
+http://en.wikipedia.org/wiki/Edith_of_Mercia
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1066
+
+Father:
+178
+
+Mother:
+228
+
+Spouses:
+179
+1057
+
+
+16
+.
+.
+
+Consort of:
+16
+
+
+ID:
+79
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+of Flanders
+
+URL:
+http://en.wikipedia.org/wiki/Matilda_of_Flanders
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/d/d1/Matilda-flanders_sm.png
+
+Born:
+C 1031
+
+Died:
+02/11/1083
+
+Father:
+180
+
+Mother:
+181
+
+Spouses:
+17
+.
+.
+
+Consort of:
+17
+
+
+ID:
+80
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+of Scotland
+
+URL:
+http://en.wikipedia.org/wiki/Matilda_of_Scotland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Matylda_zena.jpg/220px-Matylda_zena.jpg
+
+Born:
+C 1080
+
+Died:
+01/05/1118
+
+Father:
+182
+
+Mother:
+183
+
+Spouses:
+19
+.
+.
+
+Consort of:
+19
+
+
+ID:
+81
+
+Pre-name style:
+.
+
+Name:
+Adeliza
+
+Post-name style:
+of Louvain
+
+URL:
+http://en.wikipedia.org/wiki/Adeliza_of_Louvain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Queen_Adeliza.jpg/220px-Queen_Adeliza.jpg
+
+Born:
+C 1103
+
+Died:
+23/04/1151
+
+Father:
+184
+
+Mother:
+185
+
+Spouses:
+19
+
+
+
+186
+.1138
+.
+
+Consort of:
+19
+
+
+ID:
+82
+
+Pre-name style:
+Countess
+
+Name:
+Matilda
+
+Post-name style:
+of Boulougne
+
+URL:
+http://en.wikipedia.org/wiki/Matilda_of_Boulogne
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Matilda_of_Boulogne.jpg/220px-Matilda_of_Boulogne.jpg
+
+Born:
+? 1105
+
+Died:
+03/05/1152
+
+Father:
+187
+
+Mother:
+188
+
+Spouses:
+20
+.
+.
+
+Consort of:
+20
+Style:
+Countess of Boulogne
+Territories:
+Boulogne
+
+From:
+C 1125
+To:
+03/05/1152
+
+
+ID:
+83
+
+Pre-name style:
+Emperor
+
+Name:
+Henry
+
+Post-name style:
+V of HRE
+
+URL:
+http://en.wikipedia.org/wiki/Henry_V,_Holy_Roman_Emperor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Henry_V_edit.jpg/220px-Henry_V_edit.jpg
+
+Born:
+11/08/1086
+
+Died:
+23/05/1125
+
+Father:
+189
+
+Mother:
+229
+
+Spouses:
+21
+.
+.
+
+Style:
+Holy Roman Emperor
+Territories:
+HRE
+
+From:
+1111
+To:
+1125
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+1099
+To:
+1125
+Style:
+King of Italy
+Territories:
+Italy
+
+From:
+1098
+To:
+1125
+
+
+ID:
+84
+
+Pre-name style:
+Count
+
+Name:
+Geoffrey Plantagenet
+
+Post-name style:
+V of Anjou
+
+URL:
+http://en.wikipedia.org/wiki/Geoffrey_V,_Count_of_Anjou
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Geoffrey_of_Anjou_Monument.jpg/220px-Geoffrey_of_Anjou_Monument.jpg
+
+Born:
+24/08/1113
+
+Died:
+07/09/1151
+
+Father:
+190
+
+Mother:
+191
+
+Spouses:
+21
+.
+.
+
+Style:
+Count of Anjou,Touraine and Maine
+Territories:
+Anjour
+Touraine
+Maine
+
+From:
+1129
+To:
+07/09/1151
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+1144
+To:
+1151
+
+
+ID:
+85
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Aquitaine
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_Aquitaine
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Church_of_Fontevraud_Abbey_Eleanor_of_Aquitaine_effigy.jpg/220px-Church_of_Fontevraud_Abbey_Eleanor_of_Aquitaine_effigy.jpg
+
+Born:
+1122-1124
+
+Died:
+01/04/1204
+
+Father:
+192
+
+Mother:
+193
+
+Spouses:
+194
+25/07/1137
+21/03/1152.
+
+22
+.
+
+
+Consort of:
+194
+Consort of:
+22
+Style:
+Duchess of Aquitaine
+Territories:
+Aquitaine
+
+From:
+09/04/37
+To:
+01/04/1204
+
+
+ID:
+86
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of France
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_France,_Queen_of_England_and_Hungary
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/f/fd/Margaret_of_France_%281197%29.jpg
+
+Born:
+?/11/1157
+
+Died:
+08-09/1197
+
+Father:
+194
+
+Mother:
+195
+
+Spouses:
+23
+
+
+
+196
+.1186
+.
+
+Consort of:
+96
+Consort of:
+231
+
+
+ID:
+87
+
+Pre-name style:
+.
+
+Name:
+Berengaria
+
+Post-name style:
+of Navarre
+
+URL:
+http://en.wikipedia.org/wiki/Berengaria_of_Navarre
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Abbaye_de_l%27Epau_-2.JPG/220px-Abbaye_de_l%27Epau_-2.JPG
+
+Born:
+C 1165-1170
+
+Died:
+23/11/1230
+
+Father:
+197
+
+Mother:
+198
+
+Spouses:
+24
+.
+.
+
+Consort of:
+24
+
+
+ID:
+88
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Gloucester
+
+URL:
+http://en.wikipedia.org/wiki/Isabella,_Countess_of_Gloucester
+
+Picture:
+.
+
+Born:
+C 1173
+
+Died:
+14/10/1217
+
+Father:
+199
+
+Mother:
+200
+
+Spouses:
+25
+
+.
+
+201
+.20/01/1214
+.
+
+202
+09/1217
+.
+
+Style:
+Countess of Gloucester
+Territories:
+Gloucester
+
+From:
+1183
+To:
+1217
+
+
+ID:
+89
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Angouleme
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_of_Angoul%C3%AAme
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/58/IsabelledAngouleme.jpg/210px-IsabelledAngouleme.jpg
+
+Born:
+C 1188
+
+Died:
+04/06/1246
+
+Father:
+203
+
+Mother:
+204
+
+Spouses:
+25
+.
+.
+
+205
+1220
+.
+
+Style:
+Countess of Angouleme
+Territories:
+Angouleme
+
+From:
+16/05/1202
+To:
+04/06/1246
+Consort of:
+25
+
+
+ID:
+90
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Provence
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_Provence
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/d/d6/Eleonor_Provence.jpg
+
+Born:
+C 1223
+
+Died:
+24-25/05/1291
+
+Father:
+206
+
+Mother:
+207
+
+Spouses:
+26
+.
+.
+
+Consort of:
+26
+
+
+ID:
+91
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Castile
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_Castile
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Eleonora_Eduard1.jpg/220px-Eleonora_Eduard1.jpg
+
+Born:
+1241
+
+Died:
+28/11/1290
+
+Father:
+208
+
+Mother:
+211
+
+Spouses:
+27
+.
+.
+
+Consort of:
+27
+Style:
+Countess of Ponthieu
+Territories:
+Ponthieu
+
+From:
+1279
+To:
+1290
+
+
+ID:
+92
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of France
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_France_%28died_1318%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Marguerite_of_france.jpg/200px-Marguerite_of_france.jpg
+
+Born:
+C 1279
+
+Died:
+14/02/1318
+
+Father:
+209
+
+Mother:
+210
+
+Spouses:
+27
+.
+.
+
+Consort of:
+27
+
+
+ID:
+93
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of France
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/b/bb/Isabella_of_France.jpg
+
+Born:
+1295
+
+Died:
+22/08/1358
+
+Father:
+212
+
+Mother:
+213
+
+Spouses:
+28
+.
+.
+
+Consort of:
+28
+
+
+ID:
+94
+
+Pre-name style:
+.
+
+Name:
+Philippa
+
+Post-name style:
+of Hainault
+
+URL:
+http://en.wikipedia.org/wiki/Philippa_of_Hainault
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/ad/Philippa_of_Hainault-mini.gif
+
+Born:
+24/06/1314
+
+Died:
+15/08/1369
+
+Father:
+230
+
+Mother:
+214
+
+Spouses:
+29
+.
+.
+
+Consort of:
+29
+
+
+ID:
+95
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Bohemia
+
+URL:
+http://en.wikipedia.org/wiki/Anne_of_Bohemia
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/7/79/AnnaofLuxembourg.jpg
+
+Born:
+11/05/1366
+
+Died:
+07/06/1394
+
+Father:
+215
+
+Mother:
+216
+
+Spouses:
+30
+.
+.
+
+Consort of:
+30
+
+
+ID:
+96
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Valois
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_of_Valois
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/e/e6/Marriage_of_Isabella_and_Richard_II.jpg/220px-Marriage_of_Isabella_and_Richard_II.jpg
+
+Born:
+09/11/1389
+
+Died:
+13/09/1409
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+30
+.
+.
+
+219
+29/06/1406
+.
+
+Consort of:
+30
+
+
+ID:
+97
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+de Bohun
+
+URL:
+http://en.wikipedia.org/wiki/Mary_de_Bohun
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/a0/Psalter_of_Mary_de_Bohun_and_Henry_Bolingbroke_1380-85_Abigail.jpg
+
+Born:
+C 1368
+
+Died:
+04/06/1394
+
+Father:
+224
+
+Mother:
+225
+
+Spouses:
+31
+.
+.
+
+
+
+ID:
+98
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Navarre
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_Navarre,_Queen_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/5/51/Joana_Canterbury.jpg
+
+Born:
+c1370
+
+Died:
+10/06/1437
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+222
+02/10/1386
+.
+
+31
+.
+.
+
+Consort of:
+221
+Consort of:
+31
+
+
+ID:
+99
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+of Valois
+
+URL:
+http://en.wikipedia.org/wiki/Catherine_of_Valois
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Catherine_of_France.jpg/220px-Catherine_of_France.jpg
+
+Born:
+27/10/1401
+
+Died:
+03/01/1437
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+32
+.
+.
+
+223
+?
+.
+
+Consort of:
+32
+
+
+ID:
+100
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Anjou
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_Anjou
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/MargaretAnjou.jpg/220px-MargaretAnjou.jpg
+
+Born:
+23/03/1430
+
+Died:
+25/08/1482
+
+Father:
+231
+
+Mother:
+232
+
+Spouses:
+33
+.
+.
+
+Consort of:
+33
+
+
+ID:
+101
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Woodville
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_Woodville
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/19/ElizabethWoodville.JPG/220px-ElizabethWoodville.JPG
+
+Born:
+c1437
+
+Died:
+08/06/1492
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+235
+1452
+.
+
+34
+.
+.
+
+Consort of:
+34
+
+
+ID:
+102
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Neville
+
+URL:
+http://en.wikipedia.org/wiki/Anne_Neville
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/f/f6/Anne_Neville_portrait.jpg
+
+Born:
+11/06/1456
+
+Died:
+06/03/1485
+
+Father:
+236
+
+Mother:
+237
+
+Spouses:
+238
+13/12/1470
+.
+
+36
+.
+.
+
+Consort of:
+36
+
+
+ID:
+103
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Elizabeth_of_York_from_Kings_and_Queens_of_England.jpg/220px-Elizabeth_of_York_from_Kings_and_Queens_of_England.jpg
+
+Born:
+11/02/1466
+
+Died:
+11/02/1503
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+37
+.
+.
+
+Consort of:
+37
+
+
+ID:
+104
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+of Aragon
+
+URL:
+http://en.wikipedia.org/wiki/Catherine_of_Aragon
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Catherine_aragon.jpg/220px-Catherine_aragon.jpg
+
+Born:
+16/12/1485
+
+Died:
+07/0/1536
+
+Father:
+239
+
+Mother:
+240
+
+Spouses:
+241
+14/11/1501
+.
+
+38
+.
+.
+
+Consort of:
+241,38
+
+
+ID:
+105
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Boleyn
+
+URL:
+http://en.wikipedia.org/wiki/Anne_Boleyn
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Anneboleyn2.jpg/220px-Anneboleyn2.jpg
+
+Born:
+c1501
+
+Died:
+19/05/1536
+
+Father:
+242
+
+Mother:
+243
+
+Spouses:
+38
+.
+.
+
+Consort of:
+38
+
+
+ID:
+106
+
+Pre-name style:
+.
+
+Name:
+Jane
+
+Post-name style:
+Seymour
+
+URL:
+http://en.wikipedia.org/wiki/Jane_Seymour
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/14/Hans_Holbein_the_Younger_-_Jane_Seymour%2C_Queen_of_England_-_Google_Art_Project.jpg/220px-Hans_Holbein_the_Younger_-_Jane_Seymour%2C_Queen_of_England_-_Google_Art_Project.jpg
+
+Born:
+c1508
+
+Died:
+24/10/1537
+
+Father:
+244
+
+Mother:
+245
+
+Spouses:
+38
+.
+.
+
+Consort of:
+38
+
+
+ID:
+107
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Cleves
+
+URL:
+http://en.wikipedia.org/wiki/Anne_of_Cleves
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Anne_of_Cleves%2C_by_Hans_Holbein_the_Younger.jpg/220px-Anne_of_Cleves%2C_by_Hans_Holbein_the_Younger.jpg
+
+Born:
+22/09/1515
+
+Died:
+16/07/1557
+
+Father:
+246
+
+Mother:
+247
+
+Spouses:
+38
+.
+.
+
+Consort of:
+38
+
+
+ID:
+108
+
+Pre-name style:
+.
+
+Name:
+Katherine
+
+Post-name style:
+Howard
+
+URL:
+http://en.wikipedia.org/wiki/Catherine_Howard
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/3/32/HowardCatherine02.jpeg
+
+Born:
+c1523
+
+Died:
+13/02/1542
+
+Father:
+248
+
+Mother:
+249
+
+Spouses:
+38
+.
+.
+
+Consort of:
+38
+
+
+ID:
+109
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+Parr
+
+URL:
+http://en.wikipedia.org/wiki/Catherine_Parr
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Catherine_Parr_from_NPG.jpg/220px-Catherine_Parr_from_NPG.jpg
+
+Born:
+1512
+
+Died:
+05/09/1548
+
+Father:
+250
+
+Mother:
+251
+
+Spouses:
+252
+1529
+.
+
+253
+1534
+.
+
+38
+.
+.
+
+254
+1547
+.
+
+Consort of:
+252,253,38,254
+
+
+ID:
+110
+
+Pre-name style:
+.
+
+Name:
+Guildford
+
+Post-name style:
+Dudley
+
+URL:
+http://en.wikipedia.org/wiki/Lord_Guildford_Dudley
+
+Picture:
+.
+
+Born:
+1535
+
+Died:
+12/02/1554
+
+Father:
+255
+
+Mother:
+256
+
+Spouses:
+40
+.
+.
+
+
+
+ID:
+111
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+II of Spain
+
+URL:
+http://en.wikipedia.org/wiki/Philip_II_of_Spain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Portrait_of_Philip_II_of_Spain_by_Sofonisba_Anguissola_-_002b.jpg/220px-Portrait_of_Philip_II_of_Spain_by_Sofonisba_Anguissola_-_002b.jpg
+
+Born:
+21/05/1527
+
+Died:
+13/09/1598
+
+Father:
+257
+
+Mother:
+258
+
+Spouses:
+259
+12/11/1543
+.
+
+41
+.
+.
+
+260
+1559
+.
+
+261
+1570
+.
+
+Style:
+King of Naples
+Territories:
+Naples
+
+From:
+25/07/1544
+To:
+13/09/1598
+Style:
+King of England and of France and Lord of Ireland
+Territories:
+England
+France
+Ireland
+
+From:
+25/07/1554
+To:
+17/11/1558
+Style:
+King of Spain
+Territories:
+Spain
+
+From:
+16/01/1556
+To:
+13/09/1598
+Style:
+King of Portugal and the Algarves
+Territories:
+Portugal
+Algarves
+
+From:
+25/03/1581
+To:
+13/09/1598
+
+
+ID:
+112
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Anne_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Anne_of_Denmark_in_mourning.jpg/220px-Anne_of_Denmark_in_mourning.jpg
+
+Born:
+12/12/1574
+
+Died:
+02/03/1619
+
+Father:
+262
+
+Mother:
+263
+
+Spouses:
+43
+.
+.
+
+Consort of:
+43
+
+
+ID:
+113
+
+Pre-name style:
+.
+
+Name:
+Henrietta Maria
+
+Post-name style:
+of France
+
+URL:
+http://en.wikipedia.org/wiki/Henrietta_Maria_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/HenriettaMariaofFrance02.jpg/220px-HenriettaMariaofFrance02.jpg
+
+Born:
+25/11/1609
+
+Died:
+10/09/1669
+
+Father:
+264
+
+Mother:
+265
+
+Spouses:
+44
+.
+.
+
+Consort of:
+44
+
+
+ID:
+114
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+of Braganza
+
+URL:
+http://en.wikipedia.org/wiki/Catherine_of_Braganza
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Catherine_of_Braganza_-_Lely_1663-65.jpg/220px-Catherine_of_Braganza_-_Lely_1663-65.jpg
+
+Born:
+25/11/1638
+
+Died:
+31/12/1705
+
+Father:
+266
+
+Mother:
+267
+
+Spouses:
+45
+.
+.
+
+Consort of:
+45
+
+
+ID:
+115
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Hyde
+
+URL:
+http://en.wikipedia.org/wiki/Anne_Hyde
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Anne_Hyde_by_Sir_Peter_Lely.JPG/220px-Anne_Hyde_by_Sir_Peter_Lely.JPG
+
+Born:
+12/03/1637
+
+Died:
+31/03/1671
+
+Father:
+268
+
+Mother:
+269
+
+Spouses:
+46
+.
+.
+
+
+
+ID:
+116
+
+Pre-name style:
+.
+
+Name:
+Maria (MARY) Beatrice Anna Margherita Isabella d'Este
+
+Post-name style:
+of Modena
+
+URL:
+http://en.wikipedia.org/wiki/Mary_of_Modena
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Mary_of_Modena_Pietersz.jpg/220px-Mary_of_Modena_Pietersz.jpg
+
+Born:
+05/10/1658
+
+Died:
+07/05/1718
+
+Father:
+270
+
+Mother:
+271
+
+Spouses:
+46
+.
+.
+
+Consort of:
+46
+
+
+ID:
+117
+
+Pre-name style:
+Prince
+
+Name:
+George
+
+Post-name style:
+of Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Prince_George_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/George%2C_Prince_of_Denmark_by_Michael_Dahl.jpg/220px-George%2C_Prince_of_Denmark_by_Michael_Dahl.jpg
+
+Born:
+02/04/1653
+
+Died:
+28/10/1708
+
+Father:
+272
+
+Mother:
+273
+
+Spouses:
+49
+.
+.
+
+Style:
+Duke of Cumberland
+Territories:
+Cumberland
+
+From:
+?
+To:
+?
+
+
+ID:
+118
+
+Pre-name style:
+.
+
+Name:
+Sophia Dorothea
+
+Post-name style:
+of Celle
+
+URL:
+http://en.wikipedia.org/wiki/Sophia_Dorothea_of_Celle
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Sophie_Dorothea_Prinzessin_von_Ahlden.jpg/200px-Sophie_Dorothea_Prinzessin_von_Ahlden.jpg
+
+Born:
+15/09/1666
+
+Died:
+13/11/1726
+
+Father:
+274
+
+Mother:
+295
+
+Spouses:
+50
+.
+.
+
+Consort of:
+50
+
+
+ID:
+119
+
+Pre-name style:
+.
+
+Name:
+Wilhelmina Charlotte CAROLINE 
+
+Post-name style:
+of Ansbach
+
+URL:
+http://en.wikipedia.org/wiki/Caroline_of_Ansbach
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Caroline_Wilhelmina_of_Brandenburg-Ansbach_by_Jacopo_Amigoni.jpg/220px-Caroline_Wilhelmina_of_Brandenburg-Ansbach_by_Jacopo_Amigoni.jpg
+
+Born:
+01/03/1683
+
+Died:
+20/11/1737
+
+Father:
+275
+
+Mother:
+276
+
+Spouses:
+51
+.
+.
+
+Consort of:
+51
+
+
+ID:
+120
+
+Pre-name style:
+Princess
+
+Name:
+Charlotte
+
+Post-name style:
+of Mecklenburg-Strelitz
+
+URL:
+http://en.wikipedia.org/wiki/Charlotte_of_Mecklenburg-Strelitz
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Queen_Charlotte_by_studio_of_Allan_Ramsay.jpg/220px-Queen_Charlotte_by_studio_of_Allan_Ramsay.jpg
+
+Born:
+19/05/1744
+
+Died:
+17/11/1818
+
+Father:
+296
+
+Mother:
+297
+
+Spouses:
+52
+.
+.
+
+Consort of:
+52
+
+
+ID:
+121
+
+Pre-name style:
+.
+
+Name:
+Caroline Amelia Elizabeth
+
+Post-name style:
+of Brunswick
+
+URL:
+http://en.wikipedia.org/wiki/Caroline_of_Brunswick
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/98/QueenCaroline1820.jpg/200px-QueenCaroline1820.jpg
+
+Born:
+17/05/1768
+
+Died:
+07/08/1821
+
+Father:
+277
+
+Mother:
+278
+
+Spouses:
+53
+.
+.
+
+Consort of:
+53
+
+
+ID:
+122
+
+Pre-name style:
+.
+
+Name:
+Adelaide Amelia Louise Theresa Caroline
+
+Post-name style:
+of Saxe Meiningen
+
+URL:
+http://en.wikipedia.org/wiki/Adelaide_of_Saxe-Meiningen
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Adelaide_Amelia_Louisa_Theresa_Caroline_of_Saxe-Coburg_Meiningen_by_Sir_William_Beechey.jpg/220px-Adelaide_Amelia_Louisa_Theresa_Caroline_of_Saxe-Coburg_Meiningen_by_Sir_William_Beechey.jpg
+
+Born:
+13/08/1792
+
+Died:
+02/12/1849
+
+Father:
+279
+
+Mother:
+280
+
+Spouses:
+54
+.
+.
+
+Consort of:
+54
+
+
+ID:
+123
+
+Pre-name style:
+Prince
+
+Name:
+Francis ALBERT Augustus Charles Emmanuel
+
+Post-name style:
+of Saxe-Coburg and Gotha
+
+URL:
+http://en.wikipedia.org/wiki/Albert,_Prince_Consort
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Prince_Albert_405130.jpg/220px-Prince_Albert_405130.jpg
+
+Born:
+26/08/1819
+
+Died:
+14/12/1861
+
+Father:
+281
+
+Mother:
+282
+
+Spouses:
+55
+.
+.
+
+Consort of:
+55
+
+
+ID:
+124
+
+Pre-name style:
+.
+
+Name:
+Alexandra Caroline Marie Charlotte Louise Julia
+
+Post-name style:
+of Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Alexandra_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Queen_Alexandra%2C_the_Princess_of_Wales.jpg/220px-Queen_Alexandra%2C_the_Princess_of_Wales.jpg
+
+Born:
+01/12/1844
+
+Died:
+20/11/1925
+
+Father:
+283
+
+Mother:
+284
+
+Spouses:
+56
+.
+.
+
+Consort of:
+56
+
+
+ID:
+125
+
+Pre-name style:
+.
+
+Name:
+Victoria MARY Augusta Louise Olga Pauline Claudine Agnes
+
+Post-name style:
+of Teck
+
+URL:
+http://en.wikipedia.org/wiki/Mary_of_Teck
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/fe/Queenmaryformalportrait_edit3.jpg/220px-Queenmaryformalportrait_edit3.jpg
+
+Born:
+26/05/1867
+
+Died:
+24/03/1953
+
+Father:
+285
+
+Mother:
+286
+
+Spouses:
+57
+.
+.
+
+Consort of:
+57
+
+
+ID:
+126
+
+Pre-name style:
+.
+
+Name:
+Wallis
+
+Post-name style:
+Simpson
+
+URL:
+http://en.wikipedia.org/wiki/Wallis_Simpson
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Wallis_Simpson_-1936.JPG/220px-Wallis_Simpson_-1936.JPG
+
+Born:
+19/06/1896
+
+Died:
+23/04/1986
+
+Father:
+287
+
+Mother:
+288
+
+Spouses:
+289
+08/11/1916
+10/12/1927
+
+290
+21/07/1928
+05/1937
+
+58
+.
+.
+
+
+
+ID:
+127
+
+Pre-name style:
+.
+
+Name:
+Elizabeth Angela Marguerite
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+http://en.wikipedia.org/wiki/Queen_Elizabeth_The_Queen_Mother
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Queen_Elizabeth_the_Queen_Mother_portrait.jpg/220px-Queen_Elizabeth_the_Queen_Mother_portrait.jpg
+
+Born:
+04/08/1900
+
+Died:
+30/03/2002
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+59
+.
+.
+
+Consort of:
+59
+
+
+ID:
+128
+
+Pre-name style:
+Duke
+
+Name:
+Robert
+
+Post-name style:
+I of Normandy
+
+URL:
+http://en.wikipedia.org/wiki/Robert_I_of_Normandy
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Robert_magnificent_statue_in_falaise.JPG/220px-Robert_magnificent_statue_in_falaise.JPG
+
+Born:
+22/06/1000
+
+Died:
+1-3/07/1035
+
+Father:
+552
+
+Mother:
+553
+
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+1027
+To:
+1035
+
+
+ID:
+129
+
+Pre-name style:
+.
+
+Name:
+Herleva
+
+Post-name style:
+of Falaise
+
+URL:
+http://en.wikipedia.org/wiki/Herleva
+
+Picture:
+.
+
+Born:
+1003
+
+Died:
+1050
+
+Father:
+557
+
+Mother:
+?
+
+Spouses:
+558
+1031
+.
+
+
+
+ID:
+130
+
+Pre-name style:
+Count
+
+Name:
+Stephen
+
+Post-name style:
+II of Blois
+
+URL:
+http://en.wikipedia.org/wiki/Stephen,_Count_of_Blois
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/26/StepanBlois_1089.jpg/220px-StepanBlois_1089.jpg
+
+Born:
+c1045
+
+Died:
+19/05/1102
+
+Father:
+560
+
+Mother:
+561
+
+Spouses:
+131
+1080
+.
+
+Style:
+Count of Blois
+Territories:
+Blois
+
+From:
+1089
+To:
+19/05/1102
+Style:
+Count of Chartres
+Territories:
+Chartres
+
+From:
+?
+To:
+?
+
+
+ID:
+131
+
+Pre-name style:
+.
+
+Name:
+Adela
+
+Post-name style:
+of Normandy
+
+URL:
+http://en.wikipedia.org/wiki/Adela_of_Normandy
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Adela.jpg/220px-Adela.jpg
+
+Born:
+c1067
+
+Died:
+08/03/1137
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+130
+.
+.
+
+Consort of:
+130
+
+
+ID:
+132
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+the Black Prince
+
+URL:
+http://en.wikipedia.org/wiki/Edward,_the_Black_Prince
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Cernoch.jpg/220px-Cernoch.jpg
+
+Born:
+15/06/1330
+
+Died:
+08/06/1376
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+133
+10/10/1361
+.
+
+Style:
+Prince of Wales, Prince of Aquitaine, Duke of Cornwall
+Territories:
+Wales
+Aquitaine
+Cornwall
+
+From:
+?
+To:
+?
+
+
+ID:
+133
+
+Pre-name style:
+Countess
+
+Name:
+Joan
+
+Post-name style:
+of Kent
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_Kent
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/c/cf/Joan_of_Kent.jpg
+
+Born:
+19/09/1328
+
+Died:
+07/08/1385
+
+Father:
+390
+
+Mother:
+573
+
+Spouses:
+574
+1340
+.
+
+132
+.
+.
+
+580
+1341
+1349
+
+Style:
+Countess of Kent, Baroness of Liddell
+Territories:
+Kent
+Liddel
+
+From:
+?
+To:
+?
+
+
+ID:
+134
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Gaunt
+
+URL:
+http://en.wikipedia.org/wiki/John_of_Gaunt
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Johnofgaunt.jpg/200px-Johnofgaunt.jpg
+
+Born:
+06/03/1340
+
+Died:
+03/02/1399
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+135
+19/05/1359
+.
+
+588
+1371
+.
+
+591
+1396
+.
+
+Style:
+Duke of Lancaster, Duke of Aquitaine
+Territories:
+Lancaster
+Acquitaine
+
+From:
+?
+To:
+?
+
+
+ID:
+135
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of Lancaster
+
+URL:
+http://en.wikipedia.org/wiki/Blanche_of_Lancaster
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Marriage_of_blanche_of_lancster_and_john_of_gaunt_1359.jpg/240px-Marriage_of_blanche_of_lancster_and_john_of_gaunt_1359.jpg
+
+Born:
+25/03/1345
+
+Died:
+12/09/1368
+
+Father:
+595
+
+Mother:
+596
+
+Spouses:
+134
+.
+.
+
+
+
+ID:
+136
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Plantagenet
+
+URL:
+http://en.wikipedia.org/wiki/Richard_Plantagenet,_3rd_Duke_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Richard_Plantagenet%2C_3rd_Duke_of_York.jpg/220px-Richard_Plantagenet%2C_3rd_Duke_of_York.jpg
+
+Born:
+21/09/1411
+
+Died:
+30/12/1460
+
+Father:
+138
+
+Mother:
+139
+
+Spouses:
+137
+1429
+.
+
+
+
+ID:
+137
+
+Pre-name style:
+.
+
+Name:
+Cecily
+
+Post-name style:
+Neville
+
+URL:
+http://en.wikipedia.org/wiki/Cecily_Neville
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Cecily_neville.jpg/220px-Cecily_neville.jpg
+
+Born:
+03/05/1415
+
+Died:
+31/05/1495
+
+Father:
+602
+
+Mother:
+594
+
+Spouses:
+136
+.
+.
+
+
+
+ID:
+138
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+of Consiburgh
+
+URL:
+http://en.wikipedia.org/wiki/Richard_of_Conisburgh,_3rd_Earl_of_Cambridge
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/f/f3/Richard_of_Conisburgh%2C_3rd_Earl_of_Cambridge.jpg
+
+Born:
+20/07/1375
+
+Died:
+05/08/1415
+
+Father:
+140
+
+Mother:
+141
+
+Spouses:
+139
+1408
+.
+
+605
+1412
+.
+
+
+
+ID:
+139
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+de Mortimer
+
+URL:
+http://en.wikipedia.org/wiki/Anne_de_Mortimer
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Arms_of_Anne_de_Mortimer%2C_Countess_of_Cambridge.svg/220px-Arms_of_Anne_de_Mortimer%2C_Countess_of_Cambridge.svg.png
+
+Born:
+27/12/1390
+
+Died:
+21/09/1411
+
+Father:
+607
+
+Mother:
+608
+
+Spouses:
+138
+.
+.
+
+
+
+ID:
+140
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+of Langley
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_of_Langley,_1st_Duke_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Edmund_of_Langley_2C_Duke_of_York.jpg/180px-Edmund_of_Langley_2C_Duke_of_York.jpg
+
+Born:
+05/06/1341
+
+Died:
+01/08/1402
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+141
+11/07/1372
+.
+
+611
+1393
+.
+
+Style:
+Duke of York
+Territories:
+York
+
+From:
+?
+To:
+?
+
+
+ID:
+141
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Castile
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_of_Castile,_Duchess_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/5/51/Isabella_of_Castile-Langley.JPG
+
+Born:
+1355
+
+Died:
+23/12/1392
+
+Father:
+612
+
+Mother:
+613
+
+Spouses:
+140
+.
+.
+
+
+
+ID:
+142
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_Tudor,_1st_Earl_of_Richmond
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/d/d0/Eddytudor.jpg
+
+Born:
+1430?
+
+Died:
+01-03/11/1456
+
+Father:
+223
+
+Mother:
+99
+
+Spouses:
+143
+01/11/1455
+.
+
+Style:
+Earl of Richmond
+Territories:
+Richmond
+
+From:
+?
+To:
+?
+
+
+ID:
+143
+
+Pre-name style:
+Lady
+
+Name:
+Margaret
+
+Post-name style:
+Beaufort
+
+URL:
+http://en.wikipedia.org/wiki/Lady_Margaret_Beaufort
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Lady_Margaret_Beaufort_from_NPG.jpg/220px-Lady_Margaret_Beaufort_from_NPG.jpg
+
+Born:
+31/05/1443
+
+Died:
+29/06/1509
+
+Father:
+144
+
+Mother:
+614
+
+Spouses:
+142
+.
+.
+
+615
+03/01/1458
+.
+
+616
+1472
+.
+
+
+
+ID:
+144
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Beaufort
+
+URL:
+http://en.wikipedia.org/wiki/John_Beaufort,_1st_Duke_of_Somerset
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Arms_of_Lady_Margaret_Beaufort.svg/125px-Arms_of_Lady_Margaret_Beaufort.svg.png
+
+Born:
+1403
+
+Died:
+27/05/1444
+
+Father:
+145
+
+Mother:
+409
+
+Spouses:
+614
+1439
+.
+
+Style:
+Duke of Somerset
+Territories:
+Somerset
+
+From:
+?
+To:
+?
+
+
+ID:
+145
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Beaufort
+
+URL:
+http://en.wikipedia.org/wiki/John_Beaufort,_1st_Earl_of_Somerset
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Arms_of_John_Beaufort%2C_1st_Earl_of_Somerset.svg/125px-Arms_of_John_Beaufort%2C_1st_Earl_of_Somerset.svg.png
+
+Born:
+1373
+
+Died:
+21/04/1410
+
+Father:
+134
+
+Mother:
+591
+
+Spouses:
+409
+1399
+.
+
+Style:
+Earl of Somerset
+Territories:
+Somerset
+
+From:
+?
+To:
+?
+
+
+ID:
+146
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Grey
+
+URL:
+http://en.wikipedia.org/wiki/Henry_Grey,_1st_Duke_of_Suffolk
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Coat_of_arms_of_Sir_Henry_Grey%2C_1st_Duke_of_Suffolk%2C_KG.png/243px-Coat_of_arms_of_Sir_Henry_Grey%2C_1st_Duke_of_Suffolk%2C_KG.png
+
+Born:
+17/01/1517
+
+Died:
+23/02/1554
+
+Father:
+622
+
+Mother:
+623
+
+Spouses:
+147
+1533
+.
+
+
+
+ID:
+147
+
+Pre-name style:
+Lady
+
+Name:
+Frances
+
+Post-name style:
+Brandon
+
+URL:
+http://en.wikipedia.org/wiki/Lady_Frances_Brandon
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Frances_Brandon.jpg/220px-Frances_Brandon.jpg
+
+Born:
+16/07/1517
+
+Died:
+20/11/1559
+
+Father:
+148
+
+Mother:
+149
+
+Spouses:
+146
+.
+.
+
+626
+1555
+.
+
+
+
+ID:
+148
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+Brandon
+
+URL:
+http://en.wikipedia.org/wiki/Charles_Brandon,_1st_Duke_of_Suffolk
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Charles_Brandon_Duke_of_Suffolk.jpg/240px-Charles_Brandon_Duke_of_Suffolk.jpg
+
+Born:
+1484
+
+Died:
+22/08/1545
+
+Father:
+628
+
+Mother:
+629
+
+Spouses:
+630
+.
+.
+
+631
+.
+.
+
+149
+.
+.
+
+637
+.
+.
+
+
+
+ID:
+149
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Mary_Tudor,_Queen_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/e/e9/MaryTudor112.jpg
+
+Born:
+18/03/1496
+
+Died:
+25/06/1533
+
+Father:
+37
+
+Mother:
+103
+
+Spouses:
+640
+.
+.
+
+148
+.
+.
+
+
+
+ID:
+150
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Lord Darnley
+
+URL:
+http://en.wikipedia.org/wiki/Henry_Stuart,_Lord_Darnley
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/45/Henry-stuart-darnley.jpg/220px-Henry-stuart-darnley.jpg
+
+Born:
+07/12/1545
+
+Died:
+10/02/1567
+
+Father:
+641
+
+Mother:
+152
+
+Spouses:
+151
+.
+.
+
+Style:
+Duke of Albany
+Territories:
+Albany
+
+From:
+?
+To:
+?
+Style:
+Earl of Ross
+Territories:
+Ross
+
+From:
+?
+To:
+?
+
+
+ID:
+151
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Queen of Scots
+
+URL:
+http://en.wikipedia.org/wiki/Mary,_Queen_of_Scots
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Mary_Stuart_Queen.jpg/220px-Mary_Stuart_Queen.jpg
+
+Born:
+7-8/12/1542
+
+Died:
+08/02/1587
+
+Father:
+153
+
+Mother:
+642
+
+Spouses:
+643
+.
+.
+
+150
+.
+.
+
+644
+.
+.
+
+Style:
+Queen of Scots
+Territories:
+Scotland
+
+From:
+14/12/42
+To:
+24/07/1567
+Consort of:
+Francis II France
+
+
+ID:
+152
+
+Pre-name style:
+Lady
+
+Name:
+Margaret
+
+Post-name style:
+Douglas
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_Douglas
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Margaret_Douglas.jpg/220px-Margaret_Douglas.jpg
+
+Born:
+08/10/1515
+
+Died:
+07/03/1578
+
+Father:
+645
+
+Mother:
+154
+
+Spouses:
+641
+.
+.
+
+
+
+ID:
+153
+
+Pre-name style:
+King
+
+Name:
+James
+
+Post-name style:
+V of Scotland
+
+URL:
+http://en.wikipedia.org/wiki/James_V_of_Scotland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/James_V_of_Scotland2.jpg/201px-James_V_of_Scotland2.jpg
+
+Born:
+10/04/1512
+
+Died:
+14/12/1542
+
+Father:
+647
+
+Mother:
+154
+
+Spouses:
+648
+.
+.
+
+642
+.
+.
+
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+09/09/1513
+To:
+14/12/1542
+
+
+ID:
+154
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_Tudor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Margaret_Tudor.jpg/220px-Margaret_Tudor.jpg
+
+Born:
+28/11/1489
+
+Died:
+18/10/1541
+
+Father:
+37
+
+Mother:
+103
+
+Spouses:
+647
+.
+.
+
+645
+.
+.
+
+652
+.
+.
+
+Consort of:
+James IV Scotland
+
+
+ID:
+155
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+II Prince of Orange
+
+URL:
+http://en.wikipedia.org/wiki/William_II,_Prince_of_Orange
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Workshop_of_Gerard_van_Honthorst_001.jpg/220px-Workshop_of_Gerard_van_Honthorst_001.jpg
+
+Born:
+27/05/1626
+
+Died:
+06/11/1650
+
+Father:
+654
+
+Mother:
+655
+
+Spouses:
+156
+.
+.
+
+Style:
+Prince of Orange
+Territories:
+Orange
+
+From:
+14/03/1647
+To:
+06/11/1650
+
+
+ID:
+156
+
+Pre-name style:
+.
+
+Name:
+Mary Henrietta
+
+Post-name style:
+Princess Royal
+
+URL:
+http://en.wikipedia.org/wiki/Mary,_Princess_Royal_and_Princess_of_Orange
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Mary_Princess_of_Orange.jpg/220px-Mary_Princess_of_Orange.jpg
+
+Born:
+04/11/1631
+
+Died:
+24/12/1660
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+155
+.
+.
+
+
+
+ID:
+157
+
+Pre-name style:
+.
+
+Name:
+Ernest Augustus
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Ernest_Augustus,_Elector_of_Hanover
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/0/02/Ernst_augus_hanover.jpg/220px-Ernst_augus_hanover.jpg
+
+Born:
+20/11/1629
+
+Died:
+23/01/1698
+
+Father:
+656
+
+Mother:
+657
+
+Spouses:
+158
+.
+.
+
+
+
+ID:
+158
+
+Pre-name style:
+.
+
+Name:
+Sophia
+
+Post-name style:
+of Hanover
+
+URL:
+http://en.wikipedia.org/wiki/Sophia_of_Hanover
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/15/SophiaofHanover.jpg/220px-SophiaofHanover.jpg
+
+Born:
+14/10/1630
+
+Died:
+08/06/1714
+
+Father:
+664
+
+Mother:
+159
+
+Spouses:
+157
+.
+.
+
+
+
+ID:
+159
+
+Pre-name style:
+.
+
+Name:
+Elizabeth Stuart
+
+Post-name style:
+the Winter Queen
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_of_Bohemia
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Elizabeth%2C_Queen_of_Bohemia_from_NPG.jpg/220px-Elizabeth%2C_Queen_of_Bohemia_from_NPG.jpg
+
+Born:
+19/08/1596
+
+Died:
+13/02/1662
+
+Father:
+43
+
+Mother:
+112
+
+Spouses:
+664
+.
+.
+
+Consort of:
+Frederick V
+
+
+ID:
+160
+
+Pre-name style:
+.
+
+Name:
+Frederick
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Frederick,_Prince_of_Wales
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Frederick_Prince_of_Wales.jpg/220px-Frederick_Prince_of_Wales.jpg
+
+Born:
+01/02/1707
+
+Died:
+20/03/1751
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+161
+.
+.
+
+Style:
+Prince of Wales
+Territories:
+Wales
+
+From:
+?
+To:
+?
+
+
+ID:
+161
+
+Pre-name style:
+Princess
+
+Name:
+Augusta
+
+Post-name style:
+of Saxe-Gotha
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Augusta_of_Saxe-Gotha
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Augusta_of_Saxe-Gotha%2C_Princess_of_Wales_by_Charles_Philips_cropped.jpg/220px-Augusta_of_Saxe-Gotha%2C_Princess_of_Wales_by_Charles_Philips_cropped.jpg
+
+Born:
+30/11/1719
+
+Died:
+08/02/1772
+
+Father:
+684
+
+Mother:
+685
+
+Spouses:
+160
+.
+.
+
+
+
+ID:
+162
+
+Pre-name style:
+Prince
+
+Name:
+Edward
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Edward,_Duke_of_Kent_and_Strathearn
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Edward%2C_Duke_of_Kent_and_Strathearn_by_Sir_William_Beechey.jpg/220px-Edward%2C_Duke_of_Kent_and_Strathearn_by_Sir_William_Beechey.jpg
+
+Born:
+02/11/1767
+
+Died:
+23/01/1820
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+227
+.
+.
+
+Style:
+Duke of Kent and Strathearn
+Territories:
+Kent
+Strathearn
+
+From:
+02/11/1767
+To:
+23/01/1820
+
+
+ID:
+163
+
+Pre-name style:
+.
+
+Name:
+Sigehelm
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Eadgifu_of_Kent
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+13/12/902
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of Kent
+Territories:
+Kent
+
+From:
+.
+To:
+.
+
+
+ID:
+164
+
+Pre-name style:
+.
+
+Name:
+Wynflaed
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgifu_of_Shaftesbury
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+
+
+ID:
+165
+
+Pre-name style:
+.
+
+Name:
+Aelfgar
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelfl%C3%A6d_of_Damerham
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of Essex
+Territories:
+Essex
+
+From:
+?
+To:
+?
+
+
+ID:
+166
+
+Pre-name style:
+.
+
+Name:
+Aethelgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgifu,_wife_of_Eadwig#Family_background
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+
+
+ID:
+167
+
+Pre-name style:
+.
+
+Name:
+Ordgar
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Ordgar,_Ealdorman_of_Devon
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+971
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of Devon
+Territories:
+Devon
+
+From:
+?
+To:
+?
+
+
+ID:
+168
+
+Pre-name style:
+.
+
+Name:
+Aethelwald
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelwald,_Ealdorman_of_East_Anglia
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Deadmans_Plack_Monument_-_geograph.org.uk_-_18224.jpg/220px-Deadmans_Plack_Monument_-_geograph.org.uk_-_18224.jpg
+
+Born:
+?
+
+Died:
+962
+
+Father:
+?
+
+Mother:
+693
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of East Anglia
+Territories:
+East Anglia
+
+From:
+?
+To:
+?
+
+
+ID:
+169
+
+Pre-name style:
+.
+
+Name:
+Thored
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Thored
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+992-994
+
+Father:
+694
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of York
+Territories:
+York
+
+From:
+964-1967-979
+To:
+992-994
+
+
+ID:
+170
+
+Pre-name style:
+Duke
+
+Name:
+Richard
+
+Post-name style:
+I of Normandy 'the Fearless'
+
+URL:
+http://en.wikipedia.org/wiki/Richard_I_of_Normandy
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Richar_fearless_statue_in_falaise.jpg/220px-Richar_fearless_statue_in_falaise.jpg
+
+Born:
+933
+
+Died:
+996
+
+Father:
+695
+
+Mother:
+696
+
+Spouses:
+697
+.
+.
+
+171
+.
+.
+
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+17/12/942
+To:
+20/11/996
+
+
+ID:
+171
+
+Pre-name style:
+.
+
+Name:
+Gunnora
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Gunnor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Gonnor_de_crepon.jpg/220px-Gonnor_de_crepon.jpg
+
+Born:
+c950
+
+Died:
+c1031
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+170
+.
+.
+
+Consort of:
+170
+
+
+ID:
+172
+
+Pre-name style:
+Duke
+
+Name:
+Mieszko
+
+Post-name style:
+I of Poland
+
+URL:
+http://en.wikipedia.org/wiki/Mieszko_I_of_Poland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/08/MieszkoDagome.jpg/220px-MieszkoDagome.jpg
+
+Born:
+c940
+
+Died:
+25/05/992
+
+Father:
+704
+
+Mother:
+?
+
+Spouses:
+173
+.
+.
+
+706
+.
+.
+
+Style:
+Duke of Poland
+Territories:
+Poland
+
+From:
+962
+To:
+992
+
+
+ID:
+173
+
+Pre-name style:
+.
+
+Name:
+Dobrawa
+
+Post-name style:
+of Bohemia
+
+URL:
+http://en.wikipedia.org/wiki/Dobrawa_of_Bohemia
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Dobrawa.jpg/220px-Dobrawa.jpg
+
+Born:
+C940-945
+
+Died:
+977
+
+Father:
+710
+
+Mother:
+711
+
+Spouses:
+172
+.
+.
+
+Consort of:
+172
+
+
+ID:
+174
+
+Pre-name style:
+King
+
+Name:
+Erik
+
+Post-name style:
+the Victorious
+
+URL:
+http://en.wikipedia.org/wiki/Eric_the_Victorious
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/8/8e/Eric_the_victorious.jpg
+
+Born:
+c945
+
+Died:
+c995
+
+Father:
+712
+
+Mother:
+?
+
+Spouses:
+73
+.
+.
+
+Style:
+King of Sweden
+Territories:
+Sweden
+
+From:
+975
+To:
+995
+
+
+ID:
+175
+
+Pre-name style:
+.
+
+Name:
+Aelfhelm
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfhelm,_Ealdorman_of_York
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1006
+
+Father:
+?
+
+Mother:
+714
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of York
+Territories:
+York
+
+From:
+994
+To:
+1006
+
+
+ID:
+176
+
+Pre-name style:
+.
+
+Name:
+Godwin
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Godwin,_Earl_of_Wessex
+
+Picture:
+.
+
+Born:
+1001
+
+Died:
+15/04/1053
+
+Father:
+717
+
+Mother:
+?
+
+Spouses:
+177
+.
+.
+
+718
+.
+.
+
+Style:
+Earl of Wessex
+Territories:
+Wessex
+
+From:
+1020
+To:
+1053
+
+
+ID:
+177
+
+Pre-name style:
+.
+
+Name:
+Gytha
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Gytha_Thorkelsd%C3%B3ttir
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Countess_Gytha_St_Nectans.jpg/220px-Countess_Gytha_St_Nectans.jpg
+
+Born:
+c997
+
+Died:
+c1069
+
+Father:
+728
+
+Mother:
+?
+
+Spouses:
+176
+.
+.
+
+
+
+ID:
+178
+
+Pre-name style:
+.
+
+Name:
+Aelfgar
+
+Post-name style:
+of Mercia
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgar,_Earl_of_Mercia
+
+Picture:
+.
+
+Born:
+c1000
+
+Died:
+c1062
+
+Father:
+730
+
+Mother:
+729
+
+Spouses:
+228
+.
+.
+
+Style:
+Earl of Mercia
+Territories:
+Mercia
+
+From:
+1057
+To:
+1062
+
+
+ID:
+179
+
+Pre-name style:
+King
+
+Name:
+Grufford
+
+Post-name style:
+ap Llewelyn
+
+URL:
+http://en.wikipedia.org/wiki/Gruffudd_ap_Llywelyn
+
+Picture:
+.
+
+Born:
+c1007
+
+Died:
+1063-1064
+
+Father:
+735
+
+Mother:
+736
+
+Spouses:
+78
+.
+.
+
+Style:
+King of Gwynedd & Powys
+Territories:
+Gwynedd
+Powys
+
+From:
+1039
+To:
+1063
+Style:
+King of Deheubarth
+Territories:
+Deheubarth
+
+From:
+1055
+To:
+1063
+Style:
+King of Morgannwg
+Territories:
+Morgannwg
+
+From:
+1058
+To:
+1063
+
+
+ID:
+180
+
+Pre-name style:
+Count
+
+Name:
+Baldwin
+
+Post-name style:
+V of Flanders
+
+URL:
+http://en.wikipedia.org/wiki/Baldwin_V,_Count_of_Flanders
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/1/14/Balduin5Flandry.jpg
+
+Born:
+19/08/1012
+
+Died:
+01/09/1067
+
+Father:
+739
+
+Mother:
+740
+
+Spouses:
+181
+.
+.
+
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+1035
+To:
+1/09/1067
+
+
+ID:
+181
+
+Pre-name style:
+.
+
+Name:
+Adela
+
+Post-name style:
+of France
+
+URL:
+http://en.wikipedia.org/wiki/Adela_of_France,_Countess_of_Flanders
+
+Picture:
+.
+
+Born:
+1009
+
+Died:
+08/01/1079
+
+Father:
+744
+
+Mother:
+745
+
+Spouses:
+180
+.
+.
+
+556
+.
+.
+
+Consort of:
+556
+Consort of:
+180
+
+
+ID:
+182
+
+Pre-name style:
+King
+
+Name:
+Malcolm
+
+Post-name style:
+III of Scotland
+
+URL:
+http://en.wikipedia.org/wiki/Malcolm_III_of_Scotland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/a3/Margaret_and_Malcolm_Canmore.jpg
+
+Born:
+?
+
+Died:
+?1093
+
+Father:
+746
+
+Mother:
+747
+
+Spouses:
+748
+.
+.
+
+183
+.
+.
+
+Style:
+King of Scotland
+Territories:
+Scotland
+
+From:
+1058
+To:
+1093
+
+
+ID:
+183
+
+Pre-name style:
+St
+
+Name:
+Margaret
+
+Post-name style:
+of Scotland
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_Wessex
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/StMargareth_edinburgh_castle2.jpg/220px-StMargareth_edinburgh_castle2.jpg
+
+Born:
+C 1045
+
+Died:
+16/11/1093
+
+Father:
+331
+
+Mother:
+758
+
+Spouses:
+182
+.
+.
+
+Consort of:
+182
+
+
+ID:
+184
+
+Pre-name style:
+Count
+
+Name:
+Godfrey
+
+Post-name style:
+I of Louvain
+
+URL:
+http://en.wikipedia.org/wiki/Godfrey_I,_Count_of_Louvain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Godfrid1.jpg/220px-Godfrid1.jpg
+
+Born:
+C 1060
+
+Died:
+25/01/1139
+
+Father:
+759
+
+Mother:
+760
+
+Spouses:
+185
+.
+.
+
+761
+.
+.
+
+Style:
+Count of Louvaine and Brussels
+Territories:
+Louvaine
+Brussels
+
+From:
+1095
+To:
+1139
+Style:
+Landgrave of Brabant
+Territories:
+Brabant
+
+From:
+?
+To:
+?
+Style:
+Duke of Lower Lorraine
+Territories:
+Lower Lorraine
+
+From:
+?
+To:
+?
+
+
+ID:
+185
+
+Pre-name style:
+.
+
+Name:
+Ida
+
+Post-name style:
+of Namur (Chiny)
+
+URL:
+http://en.wikipedia.org/wiki/Godfrey_I,_Count_of_Louvain
+
+Picture:
+.
+
+Born:
+1078
+
+Died:
+1117
+
+Father:
+769
+
+Mother:
+770
+
+Spouses:
+184
+.
+.
+
+
+
+ID:
+186
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+d'Aubigny
+
+URL:
+http://en.wikipedia.org/wiki/William_d%27Aubigny,_1st_Earl_of_Arundel
+
+Picture:
+.
+
+Born:
+c1109
+
+Died:
+12/10/1176
+
+Father:
+767
+
+Mother:
+768
+
+Spouses:
+81
+.
+.
+
+Style:
+Earl of Arundel
+Territories:
+Arundel
+
+From:
+?
+To:
+?
+Style:
+Earl of Lincoln
+Territories:
+Lincoln
+
+From:
+?
+To:
+?
+
+
+ID:
+187
+
+Pre-name style:
+Count
+
+Name:
+Eustance
+
+Post-name style:
+III of Boulogn
+
+URL:
+http://en.wikipedia.org/wiki/Eustace_III,_Count_of_Boulogne
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/dc/Godefroy_de_Bouillon.jpg/220px-Godefroy_de_Bouillon.jpg
+
+Born:
+?
+
+Died:
+c1125
+
+Father:
+771
+
+Mother:
+772
+
+Spouses:
+188
+.
+.
+
+Style:
+Count of Boulogn
+Territories:
+Boulogn
+
+From:
+
+To:
+
+
+
+ID:
+188
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+of Scotland
+
+URL:
+http://en.wikipedia.org/wiki/Mary_of_Scotland,_Countess_of_Boulogne
+
+Picture:
+.
+
+Born:
+1082
+
+Died:
+1116
+
+Father:
+182
+
+Mother:
+183
+
+Spouses:
+187
+.
+.
+
+
+
+ID:
+189
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+IV, Holy Roman Emperor
+
+URL:
+http://en.wikipedia.org/wiki/Henry_IV,_Holy_Roman_Emperor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/7/7b/Heinrich_4_g.jpg
+
+Born:
+11/11/1050
+
+Died:
+07/08/1106
+
+Father:
+773
+
+Mother:
+774
+
+Spouses:
+229
+.
+.
+
+779
+.
+.
+
+Style:
+King of the Romans, Holy Roman Emperor
+Territories:
+Romans
+
+From:
+1084
+To:
+1105
+
+
+ID:
+190
+
+Pre-name style:
+Count
+
+Name:
+Fulk
+
+Post-name style:
+V of Anjou
+
+URL:
+http://en.wikipedia.org/wiki/Fulk,_King_of_Jerusalem
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Melisende_and_Fulk_of_Jerusalem.jpg/220px-Melisende_and_Fulk_of_Jerusalem.jpg
+
+Born:
+1089-1092
+
+Died:
+13/1/1143
+
+Father:
+782
+
+Mother:
+783
+
+Spouses:
+191
+.
+.
+
+787
+.
+.
+
+Style:
+King of Jerusalem
+Territories:
+Jerusalem
+
+From:
+1131
+To:
+1143
+Style:
+Count of Anjou
+Territories:
+Anjou
+
+From:
+1106
+To:
+1129
+
+
+ID:
+191
+
+Pre-name style:
+.
+
+Name:
+Ermengarde
+
+Post-name style:
+of Maine
+
+URL:
+http://en.wikipedia.org/wiki/Ermengarde_of_Maine
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1126
+
+Father:
+790
+
+Mother:
+791
+
+Spouses:
+190
+.
+.
+
+
+
+ID:
+192
+
+Pre-name style:
+Duke
+
+Name:
+William
+
+Post-name style:
+X of Aquitaine
+
+URL:
+http://en.wikipedia.org/wiki/William_X_of_Aquitaine
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Bernardus_van_Clairvaux_bekeert_Willem_van_Aquitani%C3%AB.jpg/220px-Bernardus_van_Clairvaux_bekeert_Willem_van_Aquitani%C3%AB.jpg
+
+Born:
+1099
+
+Died:
+19/04/1137
+
+Father:
+797
+
+Mother:
+792
+
+Spouses:
+193
+.
+.
+
+Style:
+Duke of Aquitaine
+Territories:
+Aquitaine
+
+From:
+1126
+To:
+1137
+
+
+ID:
+193
+
+Pre-name style:
+.
+
+Name:
+Aenor
+
+Post-name style:
+de Chatellerault
+
+URL:
+http://en.wikipedia.org/wiki/Aenor_de_Ch%C3%A2tellerault
+
+Picture:
+.
+
+Born:
+c1103
+
+Died:
+03/1130
+
+Father:
+796
+
+Mother:
+798
+
+Spouses:
+192
+.
+.
+
+
+
+ID:
+194
+
+Pre-name style:
+King
+
+Name:
+Louis
+
+Post-name style:
+VII of France
+
+URL:
+http://en.wikipedia.org/wiki/Louis_VII_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Louis_VII_denier_Bourges_1137_1180.jpg/220px-Louis_VII_denier_Bourges_1137_1180.jpg
+
+Born:
+1120
+
+Died:
+18/09/1180
+
+Father:
+799
+
+Mother:
+800
+
+Spouses:
+85
+.
+.
+
+195
+.
+.
+
+Style:
+Junior King of France
+Territories:
+France (junior)
+
+From:
+25/10/1131
+To:
+01/08/1137
+Style:
+King of France
+Territories:
+France
+
+From:
+01/08/1137
+To:
+18/09/1180
+
+
+ID:
+195
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of Castile
+
+URL:
+http://en.wikipedia.org/wiki/Constance_of_Castile_%281141-1160%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Constance_Castile_odLouise7.jpg/160px-Constance_Castile_odLouise7.jpg
+
+Born:
+c1140
+
+Died:
+04/010/1160
+
+Father:
+805
+
+Mother:
+806
+
+Spouses:
+194
+.
+.
+
+
+
+ID:
+196
+
+Pre-name style:
+King
+
+Name:
+Bela
+
+Post-name style:
+III of Hungary
+
+URL:
+http://en.wikipedia.org/wiki/B%C3%A9la_III_of_Hungary
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Bela3.jpg/220px-Bela3.jpg
+
+Born:
+c1148
+
+Died:
+23/04/1196
+
+Father:
+807
+
+Mother:
+808
+
+Spouses:
+86
+.
+.
+
+Style:
+King of Hungary and Croatia
+Territories:
+Hungary
+Croatia
+
+From:
+04/03/1172
+To:
+23/04/1196
+
+
+ID:
+197
+
+Pre-name style:
+King
+
+Name:
+Sancho
+
+Post-name style:
+VI of Navarre
+
+URL:
+http://en.wikipedia.org/wiki/Sancho_VI_of_Navarre
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Sello_de_Sancho_el_Sabio.svg/220px-Sello_de_Sancho_el_Sabio.svg.png
+
+Born:
+21/04/1132
+
+Died:
+27/06/1195
+
+Father:
+814
+
+Mother:
+815
+
+Spouses:
+198
+.
+.
+
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+1150
+To:
+1194
+
+
+ID:
+198
+
+Pre-name style:
+.
+
+Name:
+Sancha
+
+Post-name style:
+of Castile
+
+URL:
+http://en.wikipedia.org/wiki/Sancha_of_Castile,_Queen_of_Navarre
+
+Picture:
+.
+
+Born:
+C 1139
+
+Died:
+1179
+
+Father:
+805
+
+Mother:
+806
+
+Spouses:
+197
+.
+.
+
+Consort of:
+197
+
+
+ID:
+199
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Fitz Robert
+
+URL:
+http://en.wikipedia.org/wiki/William_Fitz_Robert,_2nd_Earl_of_Gloucester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/08/William2ndEarl_OfGloucester_PresentsGreatCharter_ToTewkesburyAbbey.JPG/220px-William2ndEarl_OfGloucester_PresentsGreatCharter_ToTewkesburyAbbey.JPG
+
+Born:
+?
+
+Died:
+1183
+
+Father:
+821
+
+Mother:
+822
+
+Spouses:
+200
+.
+.
+
+Style:
+Earl of Gloucester
+Territories:
+Gloucester
+
+From:
+31/10/1147
+To:
+23/11/1183
+
+
+ID:
+200
+
+Pre-name style:
+.
+
+Name:
+Hawise
+
+Post-name style:
+de Beaumont
+
+URL:
+http://en.wikipedia.org/wiki/William_Fitz_Robert,_2nd_Earl_of_Gloucester
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+826
+
+Mother:
+827
+
+Spouses:
+199
+.
+.
+
+
+
+ID:
+201
+
+Pre-name style:
+.
+
+Name:
+Geoffrey
+
+Post-name style:
+Fitz Geoffrey
+
+URL:
+http://en.wikipedia.org/wiki/Geoffrey_FitzGeoffrey_de_Mandeville,_2nd_Earl_of_Essex
+
+Picture:
+.
+
+Born:
+c1191
+
+Died:
+23/02/1216
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+88
+.
+.
+
+Style:
+Earl of Essex
+Territories:
+Essex
+
+From:
+1213
+To:
+1216
+Style:
+Earl of Gloucester
+Territories:
+Gloucester
+
+From:
+1213
+To:
+1216
+
+
+ID:
+202
+
+Pre-name style:
+.
+
+Name:
+Hubert
+
+Post-name style:
+de Burgh
+
+URL:
+http://en.wikipedia.org/wiki/Hubert_de_Burgh,_1st_Earl_of_Kent
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Hubert_de_Burgh-Paris.jpg/220px-Hubert_de_Burgh-Paris.jpg
+
+Born:
+C 1160
+
+Died:
+1243
+
+Father:
+828
+
+Mother:
+?
+
+Spouses:
+88
+.
+.
+
+830
+.
+.
+
+829
+.
+.
+
+Style:
+Earl of Kent
+Territories:
+Kent
+
+From:
+?
+To:
+?
+
+
+ID:
+203
+
+Pre-name style:
+.
+
+Name:
+Aymer
+
+Post-name style:
+of Angoleme
+
+URL:
+http://en.wikipedia.org/wiki/Aymer,_Count_of_Angoul%C3%AAme
+
+Picture:
+.
+
+Born:
+C 1160
+
+Died:
+16/07/1202
+
+Father:
+832
+
+Mother:
+833
+
+Spouses:
+204
+.
+.
+
+Style:
+Count of Angouleme
+Territories:
+Angouleme
+
+From:
+?
+To:
+?
+
+
+ID:
+204
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+of Courtenay
+
+URL:
+http://en.wikipedia.org/wiki/Alice_of_Courtenay
+
+Picture:
+.
+
+Born:
+1160
+
+Died:
+12/02/1218
+
+Father:
+834
+
+Mother:
+835
+
+Spouses:
+836
+.
+.
+
+203
+.
+.
+
+Consort of:
+204
+
+
+ID:
+205
+
+Pre-name style:
+.
+
+Name:
+Hugh 
+
+Post-name style:
+X of Lusignan
+
+URL:
+http://en.wikipedia.org/wiki/Hugh_X_of_Lusignan
+
+Picture:
+.
+
+Born:
+C 1183-1195
+
+Died:
+C 05/06/1249
+
+Father:
+837
+
+Mother:
+838
+
+Spouses:
+89
+.
+.
+
+Style:
+Count of La Marche
+Territories:
+La Marche
+
+From:
+?
+To:
+?
+
+
+ID:
+206
+
+Pre-name style:
+Count
+
+Name:
+Ramon Berenguer
+
+Post-name style:
+IV of Provence
+
+URL:
+http://en.wikipedia.org/wiki/Ramon_Berenguer_IV,_Count_of_Provence
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Statue_Raimond_B%C3%A9renger_IV.JPG/200px-Statue_Raimond_B%C3%A9renger_IV.JPG
+
+Born:
+1198
+
+Died:
+19/08/1245
+
+Father:
+839
+
+Mother:
+840
+
+Spouses:
+207
+.
+.
+
+Style:
+Count of Provence
+Territories:
+Provence
+
+From:
+1209
+To:
+1245
+Style:
+Count of Forcalquier
+Territories:
+Forcalquier
+
+From:
+1217-1220
+To:
+1245
+
+
+ID:
+207
+
+Pre-name style:
+.
+
+Name:
+Beatrice
+
+Post-name style:
+of Savoy
+
+URL:
+http://en.wikipedia.org/wiki/Beatrice_of_Savoy
+
+Picture:
+.
+
+Born:
+1205
+
+Died:
+04/01/1267
+
+Father:
+844
+
+Mother:
+845
+
+Spouses:
+206
+.
+.
+
+
+
+ID:
+208
+
+Pre-name style:
+King
+
+Name:
+Ferdinand
+
+Post-name style:
+III of Castile
+
+URL:
+http://en.wikipedia.org/wiki/Ferdinand_III_of_Castile
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Fernando_III_de_Castilla_02.jpg/200px-Fernando_III_de_Castilla_02.jpg
+
+Born:
+05/08/1199
+
+Died:
+30/05/1252
+
+Father:
+846
+
+Mother:
+847
+
+Spouses:
+211
+.
+.
+
+Style:
+King of Castile and Toledo
+Territories:
+Castile
+Toledo
+
+From:
+1217
+To:
+1252
+Style:
+King of Leon and Galicia
+Territories:
+Leon
+Galicia
+
+From:
+1230
+To:
+1252
+
+
+ID:
+209
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+III of France
+
+URL:
+http://en.wikipedia.org/wiki/Philip_III_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Miniature_Philippe_III_Courronement.jpg/220px-Miniature_Philippe_III_Courronement.jpg
+
+Born:
+30/04/1245
+
+Died:
+05/10/1285
+
+Father:
+863
+
+Mother:
+841
+
+Spouses:
+210
+.
+.
+
+865
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+25/08/1270
+To:
+05/10/1285
+
+
+ID:
+210
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of Brabant
+
+URL:
+http://en.wikipedia.org/wiki/Marie_of_Brabant,_Queen_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/MariaofBrabant.jpg/150px-MariaofBrabant.jpg
+
+Born:
+13/05/1254
+
+Died:
+12/01/1321
+
+Father:
+870
+
+Mother:
+871
+
+Spouses:
+209
+.
+.
+
+Consort of:
+209
+
+
+ID:
+211
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Joan,_Countess_of_Ponthieu
+
+Picture:
+.
+
+Born:
+C 1220
+
+Died:
+16/03/1279
+
+Father:
+872
+
+Mother:
+873
+
+Spouses:
+206
+.
+.
+
+874
+.
+.
+
+Consort of:
+206
+Style:
+Countess of Ponthieu
+Territories:
+Ponthieu
+
+From:
+1251
+To:
+1279
+Style:
+Countess of Aumale
+Territories:
+Aumale
+
+From:
+1239
+To:
+1279
+
+
+ID:
+212
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+IV of France
+
+URL:
+http://en.wikipedia.org/wiki/Philip_IV_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/d/d1/Filippoilbello.gif
+
+Born:
+04-06/1268
+
+Died:
+29/11/1314
+
+Father:
+209
+
+Mother:
+865
+
+Spouses:
+213
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+05/10/1285
+To:
+29/11/1314
+Consort of:
+213
+
+
+ID:
+213
+
+Pre-name style:
+Queen
+
+Name:
+Joan
+
+Post-name style:
+I of Navarre
+
+URL:
+http://en.wikipedia.org/wiki/Joan_I_of_Navarre
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/JanaNavarra_BNf.jpg/220px-JanaNavarra_BNf.jpg
+
+Born:
+14/01/1273
+
+Died:
+03-04/1305
+
+Father:
+878
+
+Mother:
+879
+
+Spouses:
+212
+.
+.
+
+Consort of:
+212
+Style:
+Queen of Navarre Countess of Champagne
+Territories:
+Navarre
+Champagne
+
+From:
+1274
+To:
+1305
+
+
+ID:
+214
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Valois
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_Valois_%281294-1352%29
+
+Picture:
+.
+
+Born:
+C 1294
+
+Died:
+07/03/1342
+
+Father:
+868
+
+Mother:
+889
+
+Spouses:
+230
+.
+.
+
+
+
+ID:
+215
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+IV of Bohemia
+
+URL:
+http://en.wikipedia.org/wiki/Charles_IV,_Holy_Roman_Emperor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/16/Charles_IV-John_Ocko_votive_picture-fragment.jpg/180px-Charles_IV-John_Ocko_votive_picture-fragment.jpg
+
+Born:
+14/05/1316
+
+Died:
+29/11/1378
+
+Father:
+890
+
+Mother:
+891
+
+Spouses:
+892
+.
+.
+
+895
+.
+.
+
+897
+.
+.
+
+216
+.
+.
+
+Style:
+King of Bohemia
+Territories:
+Bohemia
+
+From:
+26/08/1346
+To:
+29/11/1378
+Style:
+King of Romans
+Territories:
+Romans
+
+From:
+11/07/1346
+To:
+29/11/1378
+Style:
+Holy Roman Emperor, King of Italy
+Territories:
+HRE
+Italy
+
+From:
+01-04/1355
+To:
+29/11/1378
+Style:
+King of Burgundy
+Territories:
+Burgundy
+
+From:
+04/06/1385
+To:
+29/11/1378
+
+
+ID:
+216
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Pomerania
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_of_Pomerania
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/2/21/Eli%C5%A1ka_Pomo%C5%99ansk%C3%A1.jpg
+
+Born:
+1347
+
+Died:
+15/04/1393
+
+Father:
+905
+
+Mother:
+906
+
+Spouses:
+215
+.
+.
+
+Consort of:
+215
+
+
+ID:
+217
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+VI of France
+
+URL:
+http://en.wikipedia.org/wiki/Charles_VI_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Carlo_VI_di_Francia%2C_Maestro_di_Boucicaut%2C_codice_Ms._Fran%C3%A7ais_165_della_Biblioteca_Universitaria_di_Ginevra.jpg/220px-Carlo_VI_di_Francia%2C_Maestro_di_Boucicaut%2C_codice_Ms._Fran%C3%A7ais_165_della_Biblioteca_Universitaria_di_Ginevra.jpg
+
+Born:
+03/12/1368
+
+Died:
+21/10/1422
+
+Father:
+907
+
+Mother:
+908
+
+Spouses:
+218
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+16/09/1380
+To:
+21/10/1422
+
+
+ID:
+218
+
+Pre-name style:
+.
+
+Name:
+Isabeau
+
+Post-name style:
+of Bavaria
+
+URL:
+http://en.wikipedia.org/wiki/Isabeau_of_Bavaria
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/86/Isabeau_de_Baviere-smrt.jpg/270px-Isabeau_de_Baviere-smrt.jpg
+
+Born:
+C 1370
+
+Died:
+24/09/1435
+
+Father:
+919
+
+Mother:
+920
+
+Spouses:
+217
+.
+.
+
+Consort of:
+217
+
+
+ID:
+219
+
+Pre-name style:
+Duke
+
+Name:
+Charles
+
+Post-name style:
+of Orleans
+
+URL:
+http://en.wikipedia.org/wiki/Charles,_Duke_of_Orl%C3%A9ans
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Charles_Ier_d%27Orl%C3%A9ans.jpg/220px-Charles_Ier_d%27Orl%C3%A9ans.jpg
+
+Born:
+24/11/1394
+
+Died:
+05/01/1465
+
+Father:
+921
+
+Mother:
+922
+
+Spouses:
+96
+.
+.
+
+923
+.
+.
+
+924
+.
+.
+
+Style:
+Duke of Orleans
+Territories:
+Orleans
+
+From:
+1407
+To:
+1465
+
+
+ID:
+220
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+II of Navarre
+
+URL:
+http://en.wikipedia.org/wiki/Charles_II_of_Navarre
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/f/f5/Charles_Navarra.jpg
+
+Born:
+10/10/1332
+
+Died:
+01/01/1387
+
+Father:
+927
+
+Mother:
+928
+
+Spouses:
+221
+.
+.
+
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+1349
+To:
+1387
+Style:
+Count of Evreux
+Territories:
+Evreux
+
+From:
+1343
+To:
+1387
+
+
+ID:
+221
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Valois
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_Valois,_Queen_of_Navarre
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/f/fe/Jeanne_Mantes_la_Jolie.jpg
+
+Born:
+24/06/1343
+
+Died:
+03/11/1373
+
+Father:
+935
+
+Mother:
+936
+
+Spouses:
+220
+.
+.
+
+Consort of:
+220
+
+
+ID:
+222
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+V of Brittany
+
+URL:
+http://en.wikipedia.org/wiki/John_V,_Duke_of_Brittany
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/a6/Jan5Bretan.jpg
+
+Born:
+1339
+
+Died:
+01/11/1399
+
+Father:
+937
+
+Mother:
+938
+
+Spouses:
+400
+.
+.
+
+577
+.
+.
+
+98
+.
+.
+
+Style:
+Duke of Brittany
+Territories:
+Brittany
+
+From:
+1345
+To:
+1399
+
+
+ID:
+223
+
+Pre-name style:
+.
+
+Name:
+Owen
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Owen_Tudor
+
+Picture:
+.
+
+Born:
+C 1400
+
+Died:
+04/02/1461
+
+Father:
+939
+
+Mother:
+940
+
+Spouses:
+99
+.
+.
+
+
+
+ID:
+224
+
+Pre-name style:
+.
+
+Name:
+Humphrey
+
+Post-name style:
+de Bohun
+
+URL:
+http://en.wikipedia.org/wiki/Humphrey_de_Bohun,_7th_Earl_of_Hereford
+
+Picture:
+.
+
+Born:
+25/03/1341
+
+Died:
+16/01/1373
+
+Father:
+941
+
+Mother:
+942
+
+Spouses:
+225
+.
+.
+
+Style:
+Earl of Hereford, Essex and Northampton
+Territories:
+Hereford
+Essex
+Northampton
+
+From:
+?
+To:
+?
+
+
+ID:
+225
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+FitzAlan
+
+URL:
+http://en.wikipedia.org/wiki/Joan_Fitzalan
+
+Picture:
+.
+
+Born:
+1347
+
+Died:
+07/04/1419
+
+Father:
+945
+
+Mother:
+946
+
+Spouses:
+224
+.
+.
+
+
+
+ID:
+226
+
+Pre-name style:
+Prince
+
+Name:
+Philip
+
+Post-name style:
+Mountbatten
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Philip,_Duke_of_Edinburgh
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Duke_of_Edinburgh_33_Allan_Warren.jpg/220px-Duke_of_Edinburgh_33_Allan_Warren.jpg
+
+Born:
+10/06/1921
+
+Died:
+present
+
+Father:
+293
+
+Mother:
+294
+
+Spouses:
+60
+.
+.
+
+
+
+ID:
+227
+
+Pre-name style:
+Princess
+
+Name:
+Mary Louise VICTORIA
+
+Post-name style:
+of Saxe-Coburg-Saalfeld
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Victoria_of_Saxe-Coburg-Saalfeld
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Victoria_of_Saxe-Coburg-Saalfeld_-_Rothwell_1832.jpg/220px-Victoria_of_Saxe-Coburg-Saalfeld_-_Rothwell_1832.jpg
+
+Born:
+17/08/1786
+
+Died:
+16/03/1861
+
+Father:
+686
+
+Mother:
+687
+
+Spouses:
+162
+.
+.
+
+688
+.
+.
+
+
+
+ID:
+228
+
+Pre-name style:
+.
+
+Name:
+Aelfgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfgar,_Earl_of_Mercia
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+178
+.
+.
+
+
+
+ID:
+229
+
+Pre-name style:
+.
+
+Name:
+Bertha
+
+Post-name style:
+of Savoy
+
+URL:
+http://en.wikipedia.org/wiki/Bertha_of_Savoy
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/b/b2/Bertha_of_Savoy%2C_Holy_Roman_Empress.jpg
+
+Born:
+21/09/1051
+
+Died:
+27/11/1087
+
+Father:
+780
+
+Mother:
+781
+
+Spouses:
+189
+.
+.
+
+
+
+ID:
+230
+
+Pre-name style:
+.
+
+Name:
+William 
+
+Post-name style:
+I, Count of Hainaut
+
+URL:
+http://en.wikipedia.org/wiki/William_I,_Count_of_Hainaut
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Guillaume_Ier_de_Hainaut.png/220px-Guillaume_Ier_de_Hainaut.png
+
+Born:
+C 1286
+
+Died:
+07/06/1337
+
+Father:
+880
+
+Mother:
+881
+
+Spouses:
+214
+.
+.
+
+Style:
+Count of Aesnes, Holland, Zeeland
+Territories:
+Aesnos
+Holland
+Zeeland
+
+From:
+1304
+To:
+1337
+
+
+ID:
+231
+
+Pre-name style:
+King
+
+Name:
+Rene
+
+Post-name style:
+I of Naples
+
+URL:
+http://en.wikipedia.org/wiki/Rene_of_Anjou
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/d/da/Renedesanjou.jpg/220px-Renedesanjou.jpg
+
+Born:
+16/01/1409
+
+Died:
+10/07/1480
+
+Father:
+947
+
+Mother:
+948
+
+Spouses:
+232
+.
+.
+
+960
+.
+.
+
+Style:
+Duke of Anjou 
+Territories:
+Anjou
+
+From:
+1434
+To:
+10/07/1480
+Style:
+Count of Provence
+Territories:
+Provence
+
+From:
+1434
+To:
+10/07/1480
+Style:
+Count of Piedmont , Duke of Bar
+Territories:
+Piedmont
+Bar
+
+From:
+1430
+To:
+10/07/1480
+Style:
+King of Naples 
+Territories:
+Naples
+
+From:
+1435
+To:
+10/07/1480
+Style:
+King of Jerusalem
+Territories:
+Jerusalem
+
+From:
+1438
+To:
+10/07/1480
+Style:
+King of Aragon, Sicily, Majorca and Corsica
+Territories:
+Aragon
+Sicily
+Majorca
+Corsica
+
+From:
+1466
+To:
+1480
+Consort of:
 232\r
-\r
-Spouses:\r
-33\r
-\r
-Consort of:\r
-33\r
-\r
-\r
-ID:\r
-101\r
-\r
-Name:\r
-Elizabeth Woodville\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1437\r
-Died:\r
-08/06/1492\r
-\r
-Father:\r
-233\r
-Mother:\r
-234\r
-\r
-Spouses:\r
-235\r
-34\r
-\r
-Consort of:\r
-34\r
-\r
-\r
-ID:\r
-102\r
-\r
-Name:\r
-Anne Neville\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/06/1456\r
-Died:\r
-06/03/1485\r
-\r
-Father:\r
-236\r
-Mother:\r
-237\r
-\r
-Spouses:\r
-238\r
-36\r
-\r
-Consort of:\r
-36\r
-\r
-\r
-ID:\r
-103\r
-\r
-Name:\r
-Elizabeth of York\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/02/1466\r
-Died:\r
-11/02/1503\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-37\r
-\r
-Consort of:\r
-37\r
-\r
-\r
-ID:\r
-104\r
-\r
-Name:\r
-Catherine of Aragon\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/12/1485\r
-Died:\r
-07/0/1536\r
-\r
-Father:\r
-239\r
-Mother:\r
-240\r
-\r
-Spouses:\r
-38\r
-241\r
-\r
-Consort of:\r
-38,241\r
-\r
-\r
-ID:\r
-105\r
-\r
-Name:\r
-Anne Boleyn\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1501\r
-Died:\r
-19/05/1536\r
-\r
-Father:\r
-242\r
-Mother:\r
-243\r
-\r
-Spouses:\r
-38\r
-\r
-Consort of:\r
-38\r
-\r
-\r
-ID:\r
-106\r
-\r
-Name:\r
-Jane Seymour\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1508\r
-Died:\r
-24/10/1537\r
-\r
-Father:\r
-244\r
-Mother:\r
-245\r
-\r
-Spouses:\r
-38\r
-\r
-Consort of:\r
-38\r
-\r
-\r
-ID:\r
-107\r
-\r
-Name:\r
-Anne of Cleves\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/09/1515\r
-Died:\r
-16/07/1557\r
-\r
-Father:\r
-246\r
-Mother:\r
-247\r
-\r
-Spouses:\r
-38\r
-\r
-Consort of:\r
-38\r
-\r
-\r
-ID:\r
-108\r
-\r
-Name:\r
-Catherine Howard\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1523\r
-Died:\r
-13/02/1542\r
-\r
-Father:\r
-248\r
-Mother:\r
-249\r
-\r
-Spouses:\r
-38\r
-\r
-Consort of:\r
-38\r
-\r
-\r
-ID:\r
-109\r
-\r
-Name:\r
-Catherine Parr\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1512\r
-Died:\r
-05/09/1548\r
-\r
-Father:\r
-250\r
-Mother:\r
-251\r
-\r
-Spouses:\r
-252\r
-253\r
-38\r
-254\r
-\r
-Consort of:\r
-252,253,38,254\r
-\r
-\r
-ID:\r
-110\r
-\r
-Name:\r
-Guildford Dudley\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1535\r
-Died:\r
-12/02/1554\r
-\r
-Father:\r
-255\r
-Mother:\r
-256\r
-\r
-Spouses:\r
-40\r
-\r
-\r
-\r
-ID:\r
-111\r
-\r
-Name:\r
-Philip II of Spain\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/05/1527\r
-Died:\r
-13/09/1598\r
-\r
-Father:\r
-257\r
-Mother:\r
-258\r
-\r
-Spouses:\r
-259\r
-41\r
-260\r
-261\r
-\r
-Style:\r
-King of Naples\r
-Territories:\r
-Naples\r
-\r
-From:\r
-25/07/1544\r
-To:\r
-13/09/1598\r
-\r
-Style:\r
-King of England and of France and Lord of Ireland\r
-Territories:\r
-England\r
-France\r
-Ireland\r
-\r
-From:\r
-25/07/1554\r
-To:\r
-17/11/1558\r
-\r
-Style:\r
-King of Spain\r
-Territories:\r
-Spain\r
-\r
-From:\r
-16/01/1556\r
-To:\r
-13/09/1598\r
-\r
-Style:\r
-King of Portugal and the Algarves\r
-Territories:\r
-Portugal\r
-Algarves\r
-\r
-From:\r
-25/03/1581\r
-To:\r
-13/09/1598\r
-\r
-\r
-\r
-ID:\r
-112\r
-\r
-Name:\r
-Anne of Denmark\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/12/1574\r
-Died:\r
-02/03/1619\r
-\r
-Father:\r
-262\r
-Mother:\r
-263\r
-\r
-Spouses:\r
-43\r
-\r
-Consort of:\r
-43\r
-\r
-\r
-ID:\r
-113\r
-\r
-Name:\r
-Henrietta Maria\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/11/1609\r
-Died:\r
-10/09/1669\r
-\r
-Father:\r
-264\r
-Mother:\r
-265\r
-\r
-Spouses:\r
-44\r
-\r
-Consort of:\r
-44\r
-\r
-\r
-ID:\r
-114\r
-\r
-Name:\r
-Catherine of Braganza\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/11/1638\r
-Died:\r
-31/12/1705\r
-\r
-Father:\r
-266\r
-Mother:\r
-267\r
-\r
-Spouses:\r
-45\r
-\r
-Consort of:\r
-45\r
-\r
-\r
-ID:\r
-115\r
-\r
-Name:\r
-Anne Hyde\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/03/1637\r
-Died:\r
-31/03/1671\r
-\r
-Father:\r
-268\r
-Mother:\r
-269\r
-\r
-Spouses:\r
-46\r
-\r
-\r
-\r
-ID:\r
-116\r
-\r
-Name:\r
-Mary of Modena\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/10/1658\r
-Died:\r
-07/05/1718\r
-\r
-Father:\r
-270\r
-Mother:\r
-271\r
-\r
-Spouses:\r
-46\r
-\r
-Consort of:\r
-46\r
-\r
-\r
-ID:\r
-117\r
-\r
-Name:\r
-George of Denmark\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/04/1653\r
-Died:\r
-28/10/1708\r
-\r
-Father:\r
-272\r
-Mother:\r
-273\r
-\r
-Spouses:\r
-49\r
-\r
-\r
-\r
-ID:\r
-118\r
-\r
-Name:\r
-Sophia Dorothea\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-15/09/1666\r
-Died:\r
-13/11/1726\r
-\r
-Father:\r
-274\r
-Mother:\r
-295\r
-\r
-Spouses:\r
-50\r
-\r
-Consort of:\r
-50\r
-\r
-\r
-ID:\r
-119\r
-\r
-Name:\r
-Caroline of Ansbach\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/03/1683\r
-Died:\r
-20/11/1737\r
-\r
-Father:\r
-275\r
-Mother:\r
-276\r
-\r
-Spouses:\r
-51\r
-\r
-Consort of:\r
-51\r
-\r
-\r
-ID:\r
-120\r
-\r
-Name:\r
-Charlotte of Mecklenburg-Strelitz\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/05/1744\r
-Died:\r
-17/11/1818\r
-\r
-Father:\r
-296\r
-Mother:\r
-297\r
-\r
-Spouses:\r
-52\r
-\r
-Consort of:\r
-52\r
-\r
-\r
-ID:\r
-121\r
-\r
-Name:\r
-Caroline of Brunswick\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/05/1768\r
-Died:\r
-07/08/1821\r
-\r
-Father:\r
-277\r
-Mother:\r
-278\r
-\r
-Spouses:\r
-53\r
-\r
-Consort of:\r
-53\r
-\r
-\r
-ID:\r
-122\r
-\r
-Name:\r
-Adelaide of Saxe Meiningen\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/08/1792\r
-Died:\r
-02/12/1849\r
-\r
-Father:\r
-279\r
-Mother:\r
-580\r
-\r
-Spouses:\r
-54\r
-\r
-Consort of:\r
-54\r
-\r
-\r
-ID:\r
-123\r
-\r
-Name:\r
-Albert\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/08/1819\r
-Died:\r
-14/12/1861\r
-\r
-Father:\r
-281\r
-Mother:\r
-282\r
-\r
-Spouses:\r
-55\r
-\r
-Consort of:\r
-55\r
-\r
-\r
-ID:\r
-124\r
-\r
-Name:\r
-Alexandra\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/12/1844\r
-Died:\r
-20/11/1925\r
-\r
-Father:\r
-283\r
-Mother:\r
-284\r
-\r
-Spouses:\r
-56\r
-\r
-Consort of:\r
-56\r
-\r
-\r
-ID:\r
-125\r
-\r
-Name:\r
-Mary of Teck\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/05/1867\r
-Died:\r
-24/03/1953\r
-\r
-Father:\r
-285\r
-Mother:\r
-286\r
-\r
-Spouses:\r
-57\r
-\r
-Consort of:\r
-57\r
-\r
-\r
-ID:\r
-126\r
-\r
-Name:\r
-Wallis Simpson\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/06/1896\r
-Died:\r
-23/04/1986\r
-\r
-Father:\r
-287\r
-Mother:\r
-288\r
-\r
-Spouses:\r
-289\r
-290\r
-58\r
-\r
-\r
-\r
-ID:\r
-127\r
-\r
-Name:\r
-Elizabeth Bowes-Lyon\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/08/1900\r
-Died:\r
-30/03/2002\r
-\r
-Father:\r
-291\r
-Mother:\r
-292\r
-\r
-Spouses:\r
-59\r
-\r
-Consort of:\r
-59\r
-\r
-\r
-ID:\r
-128\r
-\r
-Name:\r
-Robert I Duke of Normandy\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/06/1000\r
-Died:\r
-1-3/07/1035\r
-\r
-Father:\r
-Richard II\r
-Mother:\r
-Judith\r
-\r
-Style:\r
-Duke of Normandy\r
-Territories:\r
-Normandy\r
-\r
-From:\r
-1027\r
-To:\r
-1035\r
-\r
-\r
-\r
-ID:\r
-129\r
-\r
-Name:\r
-Herleva\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1003\r
-Died:\r
-1050\r
-\r
-Father:\r
-Fulbert\r
-Mother:\r
-?\r
-\r
-\r
-\r
-ID:\r
-130\r
-\r
-Name:\r
-Stephen II\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1045\r
-Died:\r
-19/05/1102\r
-\r
-Father:\r
-Theobald III\r
-Mother:\r
-Garsinde\r
-\r
-Spouses:\r
-131\r
-\r
-Style:\r
-Count of Blois\r
-Territories:\r
-Blois\r
-\r
-From:\r
-1089\r
-To:\r
-19/05/1102\r
-\r
-Style:\r
-Count of Chartres\r
-Territories:\r
-Chartres\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-131\r
-\r
-Name:\r
-Adela of Normandy\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1067\r
-Died:\r
-08/03/1137\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-130\r
-\r
-Consort of:\r
-130\r
-\r
-\r
-ID:\r
-132\r
-\r
-Name:\r
-Edward the Black Prince\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-15/06/1330\r
-Died:\r
-08/06/1376\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-133\r
-\r
-\r
-\r
-ID:\r
-133\r
-\r
-Name:\r
-Joan of Kent\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/09/1328\r
-Died:\r
-07/08/1385\r
-\r
-Father:\r
-Edmund\r
-Mother:\r
-Margaret\r
-\r
-Spouses:\r
-132\r
-\r
-\r
-\r
-ID:\r
-134\r
-\r
-Name:\r
-John of Gaunt\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-06/03/1340\r
-Died:\r
-03/02/1399\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-135\r
-\r
-\r
-\r
-ID:\r
-135\r
-\r
-Name:\r
-Blanche of Lancaster\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/03/1345\r
-Died:\r
-12/09/1368\r
-\r
-Father:\r
-0\r
-Mother:\r
-0\r
-\r
-Spouses:\r
-134\r
-\r
-\r
-\r
-ID:\r
-136\r
-\r
-Name:\r
-Richard Plantagenet\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/09/1411\r
-Died:\r
-30/12/1460\r
-\r
-Father:\r
-138\r
-Mother:\r
-139\r
-\r
-Spouses:\r
-137\r
-\r
-\r
-\r
-ID:\r
-137\r
-\r
-Name:\r
-Cecily Neville\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/05/1415\r
-Died:\r
-31/05/1495\r
-\r
-Father:\r
-Ralph\r
-Mother:\r
-Joan\r
-\r
-Spouses:\r
-136\r
-\r
-\r
-\r
-ID:\r
-138\r
-\r
-Name:\r
-Richard of Conisburgh\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/07/1375\r
-Died:\r
-05/08/1415\r
-\r
-Father:\r
-140\r
-Mother:\r
-141\r
-\r
-Spouses:\r
-139\r
-\r
-\r
-\r
-ID:\r
-139\r
-\r
-Name:\r
-Anne de Mortimer\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-27/12/1390\r
-Died:\r
-21/09/1411\r
-\r
-Father:\r
-Roger\r
-Mother:\r
-Eleanor\r
-\r
-Spouses:\r
-138\r
-\r
-\r
-\r
-ID:\r
-140\r
-\r
-Name:\r
-Edmund of Langley\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/06/1341\r
-Died:\r
-01/08/1402\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-141\r
-\r
-Style:\r
-Duke of York\r
-Territories:\r
-York\r
-\r
-From:\r
-.\r
-To:\r
-.\r
-\r
-\r
-\r
-ID:\r
-141\r
-\r
-Name:\r
-Isabella of Castile\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1355\r
-Died:\r
-23/12/1392\r
-\r
-Father:\r
-Peter\r
-Mother:\r
-Maria\r
-\r
-Spouses:\r
-140\r
-\r
-\r
-\r
-ID:\r
-142\r
-\r
-Name:\r
-Edmund Tudor\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1430?\r
-Died:\r
-01-03/11/1456\r
-\r
-Father:\r
-223\r
-Mother:\r
-99\r
-\r
-Spouses:\r
-143\r
-\r
-\r
-\r
-ID:\r
-143\r
-\r
-Name:\r
-Margaret Beaufort\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-31/05/1443\r
-Died:\r
-29/06/1509\r
-\r
-Father:\r
-144\r
-Mother:\r
-Margaret\r
-\r
-Spouses:\r
-142\r
-\r
-\r
-\r
-ID:\r
-144\r
-\r
-Name:\r
-John Beaufort\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1403\r
-Died:\r
-27/05/1444\r
-\r
-Father:\r
-145\r
-Mother:\r
-409\r
-\r
-Spouses:\r
-Margaret Beauchamp\r
-\r
-\r
-\r
-ID:\r
-145\r
-\r
-Name:\r
-John Beaufort\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1373\r
-Died:\r
-21/04/1410\r
-\r
-Father:\r
-134\r
-Mother:\r
-Katherine Swynford\r
-\r
-Spouses:\r
-409\r
-\r
-\r
-\r
-ID:\r
-146\r
-\r
-Name:\r
-Henry Grey\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/01/1517\r
-Died:\r
-23/02/1554\r
-\r
-Father:\r
-Thomas\r
-Mother:\r
-Margaret\r
-\r
-Spouses:\r
-147\r
-\r
-\r
-\r
-ID:\r
-147\r
-\r
-Name:\r
-Frances Brandon\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/07/1517\r
-Died:\r
-20/11/1559\r
-\r
-Father:\r
-148\r
-Mother:\r
-149\r
-\r
-Spouses:\r
-146\r
-\r
-\r
-\r
-ID:\r
-148\r
-\r
-Name:\r
-Charles Brandon\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1484\r
-Died:\r
-22/08/1545\r
-\r
-Father:\r
-William\r
-Mother:\r
-Elizabeth\r
-\r
-Spouses:\r
-149\r
-\r
-\r
-\r
-ID:\r
-149\r
-\r
-Name:\r
-Mary Tudor\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/03/1496\r
-Died:\r
-25/06/1533\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Spouses:\r
-148\r
-\r
-\r
-\r
-ID:\r
-150\r
-\r
-Name:\r
-Henry Stuart\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-07/12/1545\r
-Died:\r
-10/02/1567\r
-\r
-Father:\r
-Matthew\r
-Mother:\r
-152\r
-\r
-Spouses:\r
-151\r
-\r
-Style:\r
-Duke of Albany\r
-Territories:\r
-Albany\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-Style:\r
-Earl of Ross\r
-Territories:\r
-Ross\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-151\r
-\r
-Name:\r
-Mary Queen of Scots\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-7-8/12/1542\r
-Died:\r
-08/02/1587\r
-\r
-Father:\r
-153\r
-Mother:\r
-Mary\r
-\r
-Spouses:\r
-150\r
-\r
-Style:\r
-Queen of Scotland\r
-Territories:\r
-Scotland\r
-\r
-From:\r
-14/12/42\r
-To:\r
-24/07/1567\r
-\r
-Consort of:\r
-Francis II France\r
-\r
-\r
-ID:\r
-152\r
-\r
-Name:\r
-Margaret Douglas\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-08/10/1515\r
-Died:\r
-07/03/1578\r
-\r
-Father:\r
-Archibald\r
-Mother:\r
-154\r
-\r
-Spouses:\r
-Matthew\r
-\r
-\r
-\r
-ID:\r
-153\r
-\r
-Name:\r
-James V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/04/1512\r
-Died:\r
-14/12/1542\r
-\r
-Father:\r
-James IV\r
-Mother:\r
-154\r
-\r
-Spouses:\r
-Mary \r
-\r
-Style:\r
-King of Scots\r
-Territories:\r
-Scotland\r
-\r
-From:\r
-09/09/1513\r
-To:\r
-14/12/1542\r
-\r
-\r
-\r
-ID:\r
-154\r
-\r
-Name:\r
-Margaret Tudor\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-28/11/1489\r
-Died:\r
-18/10/1541\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Spouses:\r
-James IV\r
-\r
-Consort of:\r
-James IV Scotland\r
-\r
-\r
-ID:\r
-155\r
-\r
-Name:\r
-William II Prince of Orange\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-27/05/1626\r
-Died:\r
-06/11/1650\r
-\r
-Father:\r
-Frederick\r
-Mother:\r
-Amalia\r
-\r
-Spouses:\r
-156\r
-\r
-Style:\r
-Prince of Orange\r
-Territories:\r
-Orange\r
-\r
-From:\r
-14/03/1647\r
-To:\r
-06/11/1650\r
-\r
-\r
-\r
-ID:\r
-156\r
-\r
-Name:\r
-Mary, Princess Royal\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/11/1631\r
-Died:\r
-24/12/1660\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-155\r
-\r
-\r
-\r
-ID:\r
-157\r
-\r
-Name:\r
-Ernest Augustus\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/11/1629\r
-Died:\r
-23/01/1698\r
-\r
-Father:\r
-George\r
-Mother:\r
-Anne\r
-\r
-Spouses:\r
-158\r
-\r
-\r
-\r
-ID:\r
-158\r
-\r
-Name:\r
-Sophia of Hanover\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/10/1630\r
-Died:\r
-08/06/1714\r
-\r
-Father:\r
-Frederick V\r
-Mother:\r
-159\r
-\r
-Spouses:\r
-157\r
-\r
-\r
-\r
-ID:\r
-159\r
-\r
-Name:\r
-Elizabeth Stuart\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/08/1596\r
-Died:\r
-13/02/1662\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Spouses:\r
-Frederick V\r
-\r
-Consort of:\r
-Frederick V\r
-\r
-\r
-ID:\r
-160\r
-\r
-Name:\r
-Frederick\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/02/1707\r
-Died:\r
-20/03/1751\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-161\r
-\r
-\r
-\r
-ID:\r
-161\r
-\r
-Name:\r
-Augusta of Saxe-Gotha\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-30/11/1719\r
-Died:\r
-08/02/1772\r
-\r
-Father:\r
-Frederick II\r
-Mother:\r
-Magdalena\r
-\r
-Spouses:\r
-160\r
-\r
-\r
-\r
-ID:\r
-162\r
-\r
-Name:\r
-Prince Edward\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/11/1767\r
-Died:\r
-23/01/1820\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-227\r
-\r
-Style:\r
-Duke of Kent and Strathearn\r
-Territories:\r
-Kent\r
-Strathearn\r
-\r
-From:\r
-02/11/1767\r
-To:\r
-23/01/1820\r
-\r
-\r
-\r
-ID:\r
-163\r
-\r
-Name:\r
-Sigehelm\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-13/12/902\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-?\r
-\r
-Style:\r
-Ealdorman of Kent\r
-Territories:\r
-Kent\r
-\r
-From:\r
-.\r
-To:\r
-.\r
-\r
-\r
-\r
-ID:\r
-164\r
-\r
-Name:\r
-Wynflaed\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-\r
-\r
-ID:\r
-165\r
-\r
-Name:\r
-Aelfgar\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-?\r
-\r
-Style:\r
-Ealdorman of Essex\r
-Territories:\r
-Essex\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-166\r
-\r
-Name:\r
-Aelfgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-\r
-\r
-ID:\r
-167\r
-\r
-Name:\r
-Ordgar\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-971\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-?\r
-\r
-Style:\r
-Ealdorman of Devon\r
-Territories:\r
-Devon\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-168\r
-\r
-Name:\r
-Aethelwald\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-962\r
-\r
-Father:\r
-?\r
-Mother:\r
-Aethelstan Half-King\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-169\r
-\r
-Name:\r
-Thored\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-992-994\r
-\r
-Father:\r
-Gunnar or Oslac\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-?\r
-\r
-Style:\r
-Ealdorman of York\r
-Territories:\r
-York\r
-\r
-From:\r
-964-1967-979\r
-To:\r
-992-994\r
-\r
-\r
-\r
-ID:\r
-170\r
-\r
-Name:\r
-Richard the Fearless\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-933\r
-Died:\r
-996\r
-\r
-Father:\r
-William I Normandy\r
-Mother:\r
-Sprota\r
-\r
-Spouses:\r
-171\r
-\r
-Style:\r
-Duke of Normandy\r
-Territories:\r
-Normandy\r
-\r
-From:\r
-17/12/942\r
-To:\r
-20/11/996\r
-\r
-\r
-\r
-ID:\r
-171\r
-\r
-Name:\r
-Gunnora\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c950\r
-Died:\r
-c1031\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-170\r
-\r
-Consort of:\r
-170\r
-\r
-\r
-ID:\r
-172\r
-\r
-Name:\r
-Mieszko I of Poland\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c940\r
-Died:\r
-25/05/992\r
-\r
-Father:\r
-Siemomyst\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-173\r
-\r
-Style:\r
-Duke of Poland\r
-Territories:\r
-Poland\r
-\r
-From:\r
-962\r
-To:\r
-992\r
-\r
-\r
-\r
-ID:\r
-173\r
-\r
-Name:\r
-Dobrawa of Bohemia\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C940-945\r
-Died:\r
-977\r
-\r
-Father:\r
-Boleslaus\r
-Mother:\r
-Biagota\r
-\r
-Spouses:\r
-172\r
-\r
-Consort of:\r
-172\r
-\r
-\r
-ID:\r
-174\r
-\r
-Name:\r
-Erik the Victorious\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c945\r
-Died:\r
-c995\r
-\r
-Father:\r
-Bjorn III\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-73\r
-\r
-Style:\r
-King of Sweden\r
-Territories:\r
-Sweden\r
-\r
-From:\r
-975\r
-To:\r
-995\r
-\r
-\r
-\r
-ID:\r
-175\r
-\r
-Name:\r
-Aelfhelm\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1006\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-Wulfrun\r
-\r
-Style:\r
-Ealdorman of York\r
-Territories:\r
-York\r
-\r
-From:\r
-994\r
-To:\r
-1006\r
-\r
-\r
-\r
-ID:\r
-176\r
-\r
-Name:\r
-Godwin\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1001\r
-Died:\r
-15/04/1053\r
-\r
-Father:\r
-Wulfnorth\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-177\r
-\r
-Style:\r
-Earl of Wessex\r
-Territories:\r
-Wessex\r
-\r
-From:\r
-1020\r
-To:\r
-1053\r
-\r
-\r
-\r
-ID:\r
-177\r
-\r
-Name:\r
-Gytha\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c977\r
-Died:\r
-c1069\r
-\r
-Father:\r
-Thorgin\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-176\r
-\r
-\r
-\r
-ID:\r
-178\r
-\r
-Name:\r
-Aelfgar of Mercia\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1000\r
-Died:\r
-c1062\r
-\r
-Father:\r
-Leofric\r
-Mother:\r
-Godiva\r
-\r
-Spouses:\r
-228\r
-\r
-Style:\r
-Earl of Mercia\r
-Territories:\r
-Mercia\r
-\r
-From:\r
-1057\r
-To:\r
-1062\r
-\r
-\r
-\r
-ID:\r
-179\r
-\r
-Name:\r
-Gruffodd ap Llwelyn\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1007\r
-Died:\r
-1063-1064\r
-\r
-Father:\r
-Llwelyn ap Seisyll\r
-Mother:\r
-Angharad ferch Maredudd\r
-\r
-Spouses:\r
-78\r
-\r
-Style:\r
-King of Gwynedd & Powys\r
-Territories:\r
-Gwynedd\r
-Powys\r
-\r
-From:\r
-1039\r
-To:\r
-1063\r
-\r
-Style:\r
-King of Deheubarth\r
-Territories:\r
-Deheubarth\r
-\r
-From:\r
-1055\r
-To:\r
-1063\r
-\r
-Style:\r
-King of Morgannwg\r
-Territories:\r
-Morgannwg\r
-\r
-From:\r
-1058\r
-To:\r
-1063\r
-\r
-\r
-\r
-ID:\r
-180\r
-\r
-Name:\r
-Baldwin V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/08/1012\r
-Died:\r
-01/09/1067\r
-\r
-Father:\r
-Baldwin IV\r
-Mother:\r
-Ogive\r
-\r
-Spouses:\r
-181\r
-\r
-Style:\r
-Count of Flanders\r
-Territories:\r
-Flanders\r
-\r
-From:\r
-1035\r
-To:\r
-1/09/1067\r
-\r
-\r
-\r
-ID:\r
-181\r
-\r
-Name:\r
-Adela of France\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1009\r
-Died:\r
-08/01/1079\r
-\r
-Father:\r
-Robert II\r
-Mother:\r
-Constance\r
-\r
-Spouses:\r
-180\r
-\r
-Consort of:\r
-Richard III Normandy\r
-Consort of:\r
-180\r
-\r
-\r
-ID:\r
-182\r
-\r
-Name:\r
-Malcolm III\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-Duncan I\r
-Mother:\r
-Suthen\r
-\r
-Spouses:\r
-183\r
-\r
-Style:\r
-King of Scotland\r
-Territories:\r
-Scotland\r
-\r
-From:\r
-1058\r
-To:\r
-1093\r
-\r
-\r
-\r
-ID:\r
-183\r
-\r
-Name:\r
-St Margaret of Scotland\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1045\r
-Died:\r
-16/11/1093\r
-\r
-Father:\r
-Edward the Exile\r
-Mother:\r
-Agatha\r
-\r
-Spouses:\r
-182\r
-\r
-Consort of:\r
-182\r
-\r
-\r
-ID:\r
-184\r
-\r
-Name:\r
-Godfrey I\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1060\r
-Died:\r
-25/01/1139\r
-\r
-Father:\r
-Henry II Louvain\r
-Mother:\r
-Aele of Orthen\r
-\r
-Spouses:\r
-185\r
-\r
-Style:\r
-Count of Louvain\r
-Territories:\r
-Louvain\r
-\r
-From:\r
-1095\r
-To:\r
-1139\r
-\r
-\r
-\r
-ID:\r
-185\r
-\r
-Name:\r
-Ida of Namur\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1078\r
-Died:\r
-1117\r
-\r
-Father:\r
-Otto\r
-Mother:\r
-Adelaide\r
-\r
-Spouses:\r
-184\r
-\r
-\r
-\r
-ID:\r
-186\r
-\r
-Name:\r
-William d'Aubigny\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1109\r
-Died:\r
-12/10/1176\r
-\r
-Father:\r
-William d'Aubigny\r
-Mother:\r
-Maud Bigod\r
-\r
-Spouses:\r
-81\r
-\r
-Style:\r
-Earl of Arundel\r
-Territories:\r
-Arundel\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-Style:\r
-Earl of Lincoln\r
-Territories:\r
-Lincoln\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-187\r
-\r
-Name:\r
-Eustace III\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-c1125\r
-\r
-Father:\r
-Eustace II\r
-Mother:\r
-Ida of Lorraine\r
-\r
-Spouses:\r
-188\r
-\r
-Style:\r
-County of Boulogn\r
-Territories:\r
-Boulogn\r
-\r
-From:\r
-\r
-\r
-\r
-ID:\r
-188\r
-\r
-Name:\r
-Mary of Scotland\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1082\r
-Died:\r
-1116\r
-\r
-Father:\r
-182\r
-Mother:\r
-183\r
-\r
-Spouses:\r
-187\r
-\r
-\r
-\r
-ID:\r
-189\r
-\r
-Name:\r
-Henry IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/11/1050\r
-Died:\r
-07/08/1106\r
-\r
-Father:\r
-Henry III\r
-Mother:\r
-Agnes of Poitou\r
-\r
-Spouses:\r
-190\r
-\r
-Style:\r
-King of the Romans, Holy Roman Emperor\r
-Territories:\r
-Romans\r
-\r
-From:\r
-1084\r
-To:\r
-1105\r
-\r
-\r
-\r
-ID:\r
-190\r
-\r
-Name:\r
-Fulk\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1089-1092\r
-Died:\r
-13/1/1143\r
-\r
-Father:\r
-Fulk IV\r
-Mother:\r
-Bertade\r
-\r
-Spouses:\r
-191\r
-\r
-Style:\r
-King of Jerusalem\r
-Territories:\r
-Jerusalem\r
-\r
-From:\r
-1131\r
-To:\r
-1143\r
-\r
-Style:\r
-Count of Anjou\r
-Territories:\r
-Anjou\r
-\r
-From:\r
-1106\r
-To:\r
-1129\r
-\r
-\r
-\r
-ID:\r
-191\r
-\r
-Name:\r
-Ermengarde\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1126\r
-\r
-Father:\r
-Elias I\r
-Mother:\r
-Mathilda\r
-\r
-Spouses:\r
-190\r
-\r
-\r
-\r
-ID:\r
-192\r
-\r
-Name:\r
-William X\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1099\r
-Died:\r
-19/04/1137\r
-\r
-Father:\r
-William IX\r
-Mother:\r
-Philippa\r
-\r
-Spouses:\r
-193\r
-\r
-Style:\r
-Duke of Aquitaine\r
-Territories:\r
-Aquitaine\r
-\r
-From:\r
-1126\r
-To:\r
-1137\r
-\r
-\r
-\r
-ID:\r
-193\r
-\r
-Name:\r
-Aenor de Chatellerault\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1103\r
-Died:\r
-03/1130\r
-\r
-Father:\r
-Aimery I\r
-Mother:\r
-Dangereuse de L'isle Bouchard\r
-\r
-Spouses:\r
-192\r
-\r
-\r
-\r
-ID:\r
-194\r
-\r
-Name:\r
-Louis VII\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1120\r
-Died:\r
-18/09/1180\r
-\r
-Father:\r
-Louis VI\r
-Mother:\r
-Adelaide of Maurienne\r
-\r
-Spouses:\r
-85\r
-195\r
-\r
-Style:\r
-Junior King of France\r
-Territories:\r
-France (junior)\r
-\r
-From:\r
-25/10/1131\r
-To:\r
-01/08/1137\r
-\r
-Style:\r
-King of France\r
-Territories:\r
-France\r
-\r
-From:\r
-01/08/1137\r
-To:\r
-18/09/1180\r
-\r
-\r
-\r
-ID:\r
-195\r
-\r
-Name:\r
-Constance of Castile\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1140\r
-Died:\r
-04/010/1160\r
-\r
-Father:\r
-Alfonso VII\r
-Mother:\r
-Berenguela\r
-\r
-Spouses:\r
-194\r
-\r
-\r
-\r
-ID:\r
-196\r
-\r
-Name:\r
-Bela III of Hungary\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1148\r
-Died:\r
-23/04/1196\r
-\r
-Father:\r
-Geza II\r
-Mother:\r
-Euphrosyne of Kiev\r
-\r
-Spouses:\r
-86\r
-\r
-Style:\r
-King of Hungary and Croatia\r
-Territories:\r
-Hungary\r
-Croatia\r
-\r
-From:\r
-04/03/1172\r
-To:\r
-23/04/1196\r
-\r
-\r
-\r
-ID:\r
-197\r
-\r
-Name:\r
-Sancho VI\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/04/1132\r
-Died:\r
-27/06/1195\r
-\r
-Father:\r
-Garcia\r
-Mother:\r
-Margaret\r
-\r
-Spouses:\r
-198\r
-\r
-Style:\r
-King of Navarre\r
-Territories:\r
-Navarre\r
-\r
-From:\r
-1150\r
-To:\r
-1194\r
-\r
-\r
-\r
-ID:\r
-198\r
-\r
-Name:\r
-Sancha of Castine\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1139\r
-Died:\r
-1179\r
-\r
-Father:\r
-Alfonso VII\r
-Mother:\r
-Berenguela\r
-\r
-Spouses:\r
-197\r
-\r
-Consort of:\r
-197\r
-\r
-\r
-ID:\r
-199\r
-\r
-Name:\r
-William Fitz Robert\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1183\r
-\r
-Father:\r
-Sir Robert\r
-Mother:\r
-Mabel FitzHamon\r
-\r
-Spouses:\r
-200\r
-\r
-Style:\r
-Earl of Gloucester\r
-Territories:\r
-Gloucester\r
-\r
-From:\r
-31/10/1147\r
-To:\r
-23/11/1183\r
-\r
-\r
-\r
-ID:\r
-200\r
-\r
-Name:\r
-Hawise de Beaumont\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-Robert de Beaumont\r
-Mother:\r
-Amica de Gael \r
-\r
-Spouses:\r
-199\r
-\r
-\r
-\r
-ID:\r
-201\r
-\r
-Name:\r
-Geoffrey Fitz Geoffrey\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1191\r
-Died:\r
-23/02/1216\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-88\r
-\r
-Style:\r
-Earl of Essex\r
-Territories:\r
-Essex\r
-\r
-From:\r
-1213\r
-To:\r
-1216\r
-\r
-Style:\r
-Earl of Gloucester\r
-Territories:\r
-Gloucester\r
-\r
-From:\r
-1213\r
-To:\r
-1216\r
-\r
-\r
-\r
-ID:\r
-202\r
-\r
-Name:\r
-Hubert de Burgh\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1160\r
-Died:\r
-1243\r
-\r
-Father:\r
-Walter de Burgh\r
-Mother:\r
-Beatrice de Warrenne\r
-\r
-Spouses:\r
-88\r
-\r
-Style:\r
-Earl of Kent\r
-Territories:\r
-Kent\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-203\r
-\r
-Name:\r
-Aymer of Angouleme\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1160\r
-Died:\r
-16/07/1202\r
-\r
-Father:\r
-William VI\r
-Mother:\r
-Marguerite\r
-\r
-Spouses:\r
-204\r
-\r
-Style:\r
-Count of Angouleme\r
-Territories:\r
-Angouleme\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-204\r
-\r
-Name:\r
-Alice of Courtenay\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1160\r
-Died:\r
-12/02/1218\r
-\r
-Father:\r
-Peter I\r
-Mother:\r
-Elisabeth\r
-\r
-Spouses:\r
-203\r
-\r
-Consort of:\r
-204\r
-\r
-\r
-ID:\r
-205\r
-\r
-Name:\r
-Hugh X of Lusignan\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1183-1195\r
-Died:\r
-C 05/06/1249\r
-\r
-Father:\r
-Hugh IX\r
-Mother:\r
-Mathilda\r
-\r
-Spouses:\r
-89\r
-\r
-Style:\r
-Count of La Marche\r
-Territories:\r
-La Marche\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-206\r
-\r
-Name:\r
-Ramon Berenguer IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1198\r
-Died:\r
-19/08/1245\r
-\r
-Father:\r
-Alfonso II\r
-Mother:\r
-Garsenda\r
-\r
-Spouses:\r
-207\r
-\r
-Style:\r
-Count of Provence\r
-Territories:\r
-Provence\r
-\r
-From:\r
-1209\r
-To:\r
-1245\r
-\r
-Style:\r
-Count of Forcalquier\r
-Territories:\r
-Forcalquier\r
-\r
-From:\r
-1217-1220\r
-To:\r
-1245\r
-\r
-\r
-\r
-ID:\r
-207\r
-\r
-Name:\r
-Beatrice of Savoy\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1205\r
-Died:\r
-04/01/1267\r
-\r
-Father:\r
-Thomas I\r
-Mother:\r
-Margaret of Geneva\r
-\r
-Spouses:\r
-206\r
-\r
-\r
-\r
-ID:\r
-208\r
-\r
-Name:\r
-Ferdinand III\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/08/1199\r
-Died:\r
-30/05/1252\r
-\r
-Father:\r
-Alfonso IX\r
-Mother:\r
-Berengaria of Castile\r
-\r
-Spouses:\r
-211\r
-\r
-Style:\r
-King of Castile and Toledo\r
-Territories:\r
-Castile\r
-Toledo\r
-\r
-From:\r
-1217\r
-To:\r
-1252\r
-\r
-Style:\r
-King of Leon and Galicia\r
-Territories:\r
-Leon\r
-Galicia\r
-\r
-From:\r
-1230\r
-To:\r
-1252\r
-\r
-\r
-\r
-ID:\r
-209\r
-\r
-Name:\r
-Philip III\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-30/04/1245\r
-Died:\r
-05/10/1285\r
-\r
-Father:\r
-Louis IX\r
-Mother:\r
-Margaret of Provence\r
-\r
-Spouses:\r
-210\r
-Isabella\r
-\r
-Style:\r
-King of France\r
-Territories:\r
-France\r
-\r
-From:\r
-25/08/1270\r
-To:\r
-05/10/1285\r
-\r
-\r
-\r
-ID:\r
-210\r
-\r
-Name:\r
-Marie of Brabant\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/05/1254\r
-Died:\r
-12/01/1321\r
-\r
-Father:\r
-Henry III Duke of Brabant\r
-Mother:\r
-Adelaide of Burgundy\r
-\r
-Spouses:\r
-209\r
-\r
-Consort of:\r
-209\r
-\r
-\r
-ID:\r
-211\r
-\r
-Name:\r
-Joan\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1220\r
-Died:\r
-16/03/1279\r
-\r
-Father:\r
-Simon, Count Aumale\r
-Mother:\r
-Marie, Countess Ponthieu\r
-\r
-Spouses:\r
-206\r
-\r
-Consort of:\r
-206\r
-Style:\r
-Countess Ponthieu\r
-Territories:\r
-Ponthieu\r
-\r
-From:\r
-1251\r
-To:\r
-1279\r
-\r
-Style:\r
-Countess of Aumale\r
-Territories:\r
-Aumale\r
-\r
-From:\r
-1239\r
-To:\r
-1279\r
-\r
-\r
-\r
-ID:\r
-212\r
-\r
-Name:\r
-Philip IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04-06/1268\r
-Died:\r
-29/11/1314\r
-\r
-Father:\r
-209\r
-Mother:\r
-Isabella\r
-\r
-Spouses:\r
-213\r
-\r
-Style:\r
-King of France\r
-Territories:\r
-France\r
-\r
-From:\r
-05/10/1285\r
-To:\r
-29/11/1314\r
-\r
-Consort of:\r
-213\r
-\r
-\r
-ID:\r
-213\r
-\r
-Name:\r
-Joan I\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/01/1273\r
-Died:\r
-03-04/1305\r
-\r
-Father:\r
-Henry I Navarre\r
-Mother:\r
-Blanche\r
-\r
-Spouses:\r
-212\r
-\r
-Consort of:\r
-212\r
-Style:\r
-Queen of Navarre Countess of Champagne\r
-Territories:\r
-Navarre\r
-Champagne\r
-\r
-From:\r
-1274\r
-To:\r
-1305\r
-\r
-\r
-\r
-ID:\r
-214\r
-\r
-Name:\r
-Joan of Valois\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1294\r
-Died:\r
-07/03/1342\r
-\r
-Father:\r
-Charles of Valois\r
-Mother:\r
-Margaret\r
-\r
-Spouses:\r
-230\r
-\r
-\r
-\r
-ID:\r
-215\r
-\r
-Name:\r
-Charles IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/05/1316\r
-Died:\r
-29/11/1378\r
-\r
-Father:\r
-John of Bohemia\r
-Mother:\r
-Elizabeth of Bohemia\r
-\r
-Spouses:\r
-216\r
-\r
-Style:\r
-King of Bohemia\r
-Territories:\r
-Bohemia\r
-\r
-From:\r
-26/08/1346\r
-To:\r
-29/11/1378\r
-\r
-Style:\r
-King of Romans\r
-Territories:\r
-Romans\r
-\r
-From:\r
-11/07/1346\r
-To:\r
-29/11/1378\r
-\r
-Style:\r
-Holy Roman Emperor, King of Italy\r
-Territories:\r
-HRE\r
-Italy\r
-\r
-From:\r
-01-04/1355\r
-To:\r
-29/11/1378\r
-\r
-Style:\r
-King of Burgundy\r
-Territories:\r
-Burgundy\r
-\r
-From:\r
-04/06/1385\r
-To:\r
-29/11/1378\r
-\r
-\r
-\r
-ID:\r
-216\r
-\r
-Name:\r
-Elizabeth of Pomerania\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1347\r
-Died:\r
-15/04/1393\r
-\r
-Father:\r
-Bogislaw V\r
-Mother:\r
-Elisabeth of Poland\r
-\r
-Spouses:\r
-215\r
-\r
-Consort of:\r
-215\r
-\r
-\r
-ID:\r
-217\r
-\r
-Name:\r
-Charles VI\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/12/1368\r
-Died:\r
-21/10/1422\r
-\r
-Father:\r
-Charles V\r
-Mother:\r
-Joan of Bourbon\r
-\r
-Spouses:\r
-218\r
-\r
-Style:\r
-King of France\r
-Territories:\r
-France\r
-\r
-From:\r
-16/09/1380\r
-To:\r
-21/10/1422\r
-\r
-\r
-\r
-ID:\r
-218\r
-\r
-Name:\r
-Isabeau of Bavaria\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1370\r
-Died:\r
-24/09/1435\r
-\r
-Father:\r
-Stephen III\r
-Mother:\r
-Taddea Visconti\r
-\r
-Spouses:\r
-217\r
-\r
-Consort of:\r
-217\r
-\r
-\r
-ID:\r
-219\r
-\r
-Name:\r
-Charles\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/11/1394\r
-Died:\r
-05/01/1465\r
-\r
-Father:\r
-Louis I Orleans\r
-Mother:\r
-Valentina Visconti\r
-\r
-Spouses:\r
-96\r
-\r
-Style:\r
-Duke Orleans\r
-Territories:\r
-Orleans\r
-\r
-From:\r
-1407\r
-To:\r
-1465\r
-\r
-\r
-\r
-ID:\r
-220\r
-\r
-Name:\r
-Charles II\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/10/1332\r
-Died:\r
-01/01/1387\r
-\r
-Father:\r
-Philip III\r
-Mother:\r
-Joan II\r
-\r
-Spouses:\r
-221\r
-\r
-Style:\r
-King of Navarre\r
-Territories:\r
-Navarre\r
-\r
-From:\r
-1349\r
-To:\r
-1387\r
-\r
-Style:\r
-Count Evreux\r
-Territories:\r
-Evreux\r
-\r
-From:\r
-1343\r
-To:\r
-1387\r
-\r
-\r
-\r
-ID:\r
-221\r
-\r
-Name:\r
-Joan of Valois\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/06/1343\r
-Died:\r
-03/11/1373\r
-\r
-Father:\r
-John II France\r
-Mother:\r
-Bonne of Luxembour\r
-\r
-Spouses:\r
-220\r
-\r
-Consort of:\r
-220\r
-\r
-\r
-ID:\r
-222\r
-\r
-Name:\r
-John V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1339\r
-Died:\r
-01/11/1399\r
-\r
-Father:\r
-John de Montfort\r
-Mother:\r
-Joanna of Flanders\r
-\r
-Spouses:\r
-98\r
-\r
-Style:\r
-Duke of Brittany\r
-Territories:\r
-Brittany\r
-\r
-From:\r
-1345\r
-To:\r
-1399\r
-\r
-\r
-\r
-ID:\r
-223\r
-\r
-Name:\r
-Owen Tudor\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1400\r
-Died:\r
-04/02/1461\r
-\r
-Father:\r
-Maredudd ap Tudor\r
-Mother:\r
-Margaret ferch Dafydd\r
-\r
-Spouses:\r
-99\r
-\r
-\r
-\r
-ID:\r
-224\r
-\r
-Name:\r
-Humphrey de Bohun\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/03/1341\r
-Died:\r
-16/01/1373\r
-\r
-Father:\r
-William de Bohun\r
-Mother:\r
-Elizabeth de Badlesmere\r
-\r
-Spouses:\r
-225\r
-\r
-Style:\r
-Earl of Hereford, Essex and Northampton\r
-Territories:\r
-Hereford\r
-Essex\r
-Northampton\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-225\r
-\r
-Name:\r
-Joan\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1347\r
-Died:\r
-07/04/1419\r
-\r
-Father:\r
-Richard Fitzalan\r
-Mother:\r
-Eleanor of Lancaster\r
-\r
-Spouses:\r
-224\r
-\r
-\r
-\r
-ID:\r
-226\r
-\r
-Name:\r
-Philip\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/06/1921\r
-Died:\r
-present\r
-\r
-Father:\r
-293\r
-Mother:\r
-294\r
-\r
-Spouses:\r
-60\r
-\r
-\r
-\r
-ID:\r
-227\r
-\r
-Name:\r
-Princess Victoria\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/08/1786\r
-Died:\r
-16/03/1861\r
-\r
-Father:\r
-Francis\r
-Mother:\r
-Augusta\r
-\r
-Spouses:\r
-162\r
-\r
-\r
-\r
-ID:\r
-228\r
-\r
-Name:\r
-Aelfgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-?\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-178\r
-\r
-\r
-\r
-ID:\r
-229\r
-\r
-Name:\r
-Bertha of Savoy\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/09/1051\r
-Died:\r
-27/11/1087\r
-\r
-Father:\r
-Otto\r
-Mother:\r
-Adelaide\r
-\r
-Spouses:\r
-189\r
-\r
-\r
-\r
-ID:\r
-230\r
-\r
-Name:\r
-William I, Count of Hainaut\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1286\r
-Died:\r
-07/06/1337\r
-\r
-Father:\r
-John II\r
-Mother:\r
-Philippa of Luxembourg\r
-\r
-Spouses:\r
-214\r
-\r
-Style:\r
-Count of Aesnes, Holland, Zeeland\r
-Territories:\r
-Aesnos\r
-Holland\r
-Zeeland\r
-\r
-From:\r
-1304\r
-To:\r
-1337\r
-\r
-\r
-\r
-ID:\r
-231\r
-\r
-Name:\r
-Rene\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/01/1409\r
-Died:\r
-10/07/1480\r
-\r
-Father:\r
-Louis II Anjou\r
-Mother:\r
-Yolande of Aragon\r
-\r
-Spouses:\r
-232\r
-\r
-Style:\r
-Duke of Anjou \r
-Territories:\r
-Anjou\r
-\r
-From:\r
-1434\r
-To:\r
-10/07/1480\r
-\r
-Style:\r
-Count of Provence\r
-Territories:\r
-Provence\r
-\r
-From:\r
-1434\r
-To:\r
-10/07/1480\r
-\r
-Style:\r
-Count Piedmont and Duke of Bar\r
-Territories:\r
-Piedmont\r
-Bar\r
-\r
-From:\r
-1430\r
-To:\r
-10/07/1480\r
-\r
-Style:\r
-King of Naples \r
-Territories:\r
-Naples\r
-\r
-From:\r
-1435\r
-To:\r
-10/07/1480\r
-\r
-Style:\r
-King of Jerusalem\r
-Territories:\r
-Jerusalem\r
-\r
-From:\r
-1438\r
-To:\r
-10/07/1480\r
-\r
-Style:\r
-King of Aragon, Sicily, Majorca and Corsice\r
-Territories:\r
-Aragon\r
-Sicily\r
-Majorca\r
-Corsica\r
-\r
-From:\r
-1466\r
-To:\r
-1480\r
-\r
-Consort of:\r
-232\r
-\r
-\r
-ID:\r
-232\r
-\r
-Name:\r
-Isabella of Lorraine\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1400\r
-Died:\r
-28/02/1453\r
-\r
-Father:\r
-Charles II Lorraine\r
-Mother:\r
-Margaret of the Palatinate\r
-\r
-Spouses:\r
-231\r
-\r
-Style:\r
-Duches of Lorraine\r
-Territories:\r
-Lorraine\r
-\r
-From:\r
-25/01/1431\r
-To:\r
-28/02/1453\r
-\r
-\r
-\r
-ID:\r
-233\r
-\r
-Name:\r
-Richard Woodville\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1405\r
-Died:\r
-12/08/1469\r
-\r
-Father:\r
-Richard Wydeville\r
-Mother:\r
-Joan Bedlisgate\r
-\r
-Spouses:\r
-234\r
-\r
-Style:\r
-Earl Rivers\r
-Territories:\r
-Rivers\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-234\r
-\r
-Name:\r
-Jacquetta of Luxembourg\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1415-1416\r
-Died:\r
-30/05/1472\r
-\r
-Father:\r
-Peter I Count St Pol\r
-Mother:\r
-Margherita\r
-\r
-Spouses:\r
-133\r
-405\r
-\r
-\r
-\r
-ID:\r
-235\r
-\r
-Name:\r
-Sir John Grey\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c.1432\r
-Died:\r
-17/02/1461\r
-\r
-Father:\r
-Edward Grey\r
-Mother:\r
-Elizabeth Ferrers\r
-\r
-Spouses:\r
-101\r
-\r
-\r
-\r
-ID:\r
-236\r
-\r
-Name:\r
-Richard Neville\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/11/1428\r
-Died:\r
-14/04/1471\r
-\r
-Father:\r
-Richard Neville\r
-Mother:\r
-Alice Montague\r
-\r
-Spouses:\r
-237\r
-\r
-Style:\r
-Earl of Salisbury\r
-Territories:\r
-Salisbury\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-237\r
-\r
-Name:\r
-Anne de Beauchamp\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/07/1426\r
-Died:\r
-20/09/1492\r
-\r
-Father:\r
-Richard de Beauchamp\r
-Mother:\r
-Isabel le Despenser\r
-\r
-Spouses:\r
-236\r
-\r
-Style:\r
-Countess of Warwick\r
-Territories:\r
-Warwick\r
-\r
-From:\r
-?\r
-To:\r
-1492\r
-\r
-\r
-\r
-ID:\r
-238\r
-\r
-Name:\r
-Edward of Westminster\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/10/1453\r
-Died:\r
-04/05/1471\r
-\r
-Father:\r
-33\r
-Mother:\r
-100\r
-\r
-Spouses:\r
-102\r
-\r
-Style:\r
-Prince of Wales\r
-Territories:\r
-Wales\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-239\r
-\r
-Name:\r
-Ferdinand II\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/03/1452\r
-Died:\r
-23/01/1516\r
-\r
-Father:\r
-John II Aragon\r
-Mother:\r
-Juanna Enriquez\r
-\r
-Spouses:\r
-240\r
-\r
-Style:\r
-King of Sicily \r
-Territories:\r
-Sicily\r
-\r
-From:\r
-1468\r
-To:\r
-23/01/1516\r
-\r
-Style:\r
-King of Aragon\r
-Territories:\r
-Aragon\r
-\r
-From:\r
-1479\r
-To:\r
-23/01/1516\r
-\r
-Consort of:\r
-240\r
-\r
-\r
-ID:\r
-240\r
-\r
-Name:\r
-Isabella I\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/04/1451\r
-Died:\r
-26/11/1504\r
-\r
-Father:\r
-John II Castile\r
-Mother:\r
-Isabella of Portugal\r
-\r
-Spouses:\r
-239\r
-\r
-Style:\r
-Queen of Castile and Leon\r
-Territories:\r
-Castile\r
-Leon\r
-\r
-From:\r
-11/11/1474\r
-To:\r
-26/11/1504\r
-\r
-\r
-\r
-ID:\r
-241\r
-\r
-Name:\r
-Arthur\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/09/1486\r
-Died:\r
-02/03/1502\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Spouses:\r
-104\r
-\r
-Style:\r
-Print of Wales, Earl of Chester, Duke of Cornwall\r
-Territories:\r
-Wales\r
-Chester\r
-Cornwall\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-242\r
-\r
-Name:\r
-Thomas Boleyn\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1477\r
-Died:\r
-12/03/1539\r
-\r
-Father:\r
-William Boleyn\r
-Mother:\r
-Margaret Butler\r
-\r
-Spouses:\r
-243\r
-\r
-\r
-\r
-ID:\r
-243\r
-\r
-Name:\r
-Lady Elizabeth Howard\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1480\r
-Died:\r
-03/04/1538\r
-\r
-Father:\r
-Thomas Howard\r
-Mother:\r
-Elizabeth Tilney\r
-\r
-Spouses:\r
-105\r
-\r
-\r
-\r
-ID:\r
-244\r
-\r
-Name:\r
-John Seymour\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1471\r
-Died:\r
-21/12/1536\r
-\r
-Father:\r
-John Seymour\r
-Mother:\r
-Elizabeth Darrell\r
-\r
-Spouses:\r
-245\r
-\r
-\r
-\r
-ID:\r
-245\r
-\r
-Name:\r
-Margery Wentworth\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1478\r
-Died:\r
-C10/1550\r
-\r
-Father:\r
-Henry Wentworth\r
-Mother:\r
-Anne Say\r
-\r
-Spouses:\r
-244\r
-\r
-\r
-\r
-ID:\r
-246\r
-\r
-Name:\r
-John III\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/11/1490\r
-Died:\r
-06/02/1538-1539\r
-\r
-Father:\r
-John II of Cleves\r
-Mother:\r
-Mathilda of Hesse\r
-\r
-Spouses:\r
-247\r
-\r
-Style:\r
-Duke of Cleves\r
-Territories:\r
-Cleves\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-247\r
-\r
-Name:\r
-Maria of Julich-Berg\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/08/1491\r
-Died:\r
-29/10/1543\r
-\r
-Father:\r
-William IV\r
-Mother:\r
-Sibylle\r
-\r
-Spouses:\r
-246\r
-\r
-\r
-\r
-ID:\r
-248\r
-\r
-Name:\r
-Edmund Howard\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1478\r
-Died:\r
-19/03/1539\r
-\r
-Father:\r
-Thomas Howard\r
-Mother:\r
-Elizabeth Tilney\r
-\r
-Spouses:\r
-249\r
-\r
-\r
-\r
-ID:\r
-249\r
-\r
-Name:\r
-Joyce Culpepper\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1480\r
-Died:\r
-c1531\r
-\r
-Father:\r
-Richard Culpeper\r
-Mother:\r
-Isabel Worsley\r
-\r
-Spouses:\r
-248\r
-\r
-\r
-\r
-ID:\r
-250\r
-\r
-Name:\r
-Thomas Parr\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1483\r
-Died:\r
-11/11/1517\r
-\r
-Father:\r
-William Parr\r
-Mother:\r
-Elizabeth FitzHugh\r
-\r
-Spouses:\r
-251\r
-\r
-\r
-\r
-ID:\r
-251\r
-\r
-Name:\r
-Maud Green\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-06/04/1492\r
-Died:\r
-01/12/1531\r
-\r
-Father:\r
-Thomas Green \r
-Mother:\r
-Joan Fogge\r
-\r
-Spouses:\r
-250\r
-\r
-\r
-\r
-ID:\r
-252\r
-\r
-Name:\r
-Edward Burgh\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-Before 04/1533\r
-\r
-Father:\r
-Thomas Burgh\r
-Mother:\r
-Agnes Tyrwhitt\r
-\r
-Spouses:\r
-109\r
-\r
-\r
-\r
-ID:\r
-253\r
-\r
-Name:\r
-John Neville\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/11/1493\r
-Died:\r
-02/03/1543\r
-\r
-Father:\r
-Richard Neville\r
-Mother:\r
-Anne Staford\r
-\r
-Spouses:\r
-109\r
-\r
-\r
-\r
-ID:\r
-254\r
-\r
-Name:\r
-Thomas Seymour\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1508\r
-Died:\r
-20/03/1549\r
-\r
-Father:\r
-244\r
-Mother:\r
-245\r
-\r
-Spouses:\r
-109\r
-\r
-\r
-\r
-ID:\r
-255\r
-\r
-Name:\r
-John Dudley\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1504\r
-Died:\r
-22/08/1553\r
-\r
-Father:\r
-Edmund Dudley\r
-Mother:\r
-Elizabeth Grey\r
-\r
-Spouses:\r
-256\r
-\r
-Style:\r
-Duke of Northumberland\r
-Territories:\r
-Northumberland\r
-\r
-From:\r
-1551\r
-To:\r
-1553\r
-\r
-\r
-\r
-ID:\r
-256\r
-\r
-Name:\r
-Jane Guildford\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1508-1509\r
-Died:\r
-1555\r
-\r
-Father:\r
-Edward Guildford\r
-Mother:\r
-Eleanor West\r
-\r
-Spouses:\r
-255\r
-\r
-\r
-\r
-ID:\r
-257\r
-\r
-Name:\r
-Charles V\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/02/1500\r
-Died:\r
-21/09/1558\r
-\r
-Father:\r
-Philip I\r
-Mother:\r
-Joanna of Castile\r
-\r
-Spouses:\r
-258\r
-\r
-Style:\r
-HRE, King of Germany, King of Italy\r
-Territories:\r
-HRE\r
-Germany\r
-Italy\r
-\r
-From:\r
-28/06/1519\r
-To:\r
-17/08/1556\r
-\r
-Style:\r
-King of Spain\r
-Territories:\r
-Spain\r
-\r
-From:\r
-23/01/1516\r
-To:\r
-16/01/1556\r
-\r
-Style:\r
-Lord of the Netherlands and Count Palatine of Burgundy\r
-Territories:\r
-Netherlands\r
-Burgundy\r
-\r
-From:\r
-25/09/1506\r
-To:\r
-25/10/1555\r
-\r
-\r
-\r
-ID:\r
-258\r
-\r
-Name:\r
-Isabella of Portugal\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/10/1503\r
-Died:\r
-01/05/1539\r
-\r
-Father:\r
-Manuel I\r
-Mother:\r
-Maria of Aragon\r
-\r
-Spouses:\r
-257\r
-\r
-\r
-\r
-ID:\r
-259\r
-\r
-Name:\r
-Maria Manuela\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1527\r
-Died:\r
-1545\r
-\r
-Father:\r
-John III\r
-Mother:\r
-Catherine of Austria\r
-\r
-Spouses:\r
-111\r
-\r
-\r
-\r
-ID:\r
-260\r
-\r
-Name:\r
-Elizabeth of Valois\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/04/1545\r
-Died:\r
-03/08/1568\r
-\r
-Father:\r
-Henry II\r
-Mother:\r
-Catherine de'Medici\r
-\r
-Spouses:\r
-111\r
-\r
-\r
-\r
-ID:\r
-261\r
-\r
-Name:\r
-Anna of Austria\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/11/1549\r
-Died:\r
-26/10/1580\r
-\r
-Father:\r
-Maximilian II\r
-Mother:\r
-Maria of Spain\r
-\r
-Spouses:\r
-111\r
-\r
-\r
-\r
-ID:\r
-262\r
-\r
-Name:\r
-Frederick II\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/07/1534\r
-Died:\r
-04/04/1588\r
-\r
-Father:\r
-Christian III\r
-Mother:\r
-Dorothea of Saxe-Lauenberg\r
-\r
-Spouses:\r
-263\r
-\r
-Style:\r
-King of Denmark and Norway\r
-Territories:\r
-Denmark\r
-Norway\r
-\r
-From:\r
-1559\r
-To:\r
-1588\r
-\r
-\r
-\r
-ID:\r
-263\r
-\r
-Name:\r
-Sophie of Mecklenburg-Gustrow\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/09/1557\r
-Died:\r
-14/10/1631\r
-\r
-Father:\r
-Ulrich III\r
-Mother:\r
-Elizabeth of Denmark\r
-\r
-Spouses:\r
-262\r
-\r
-\r
-\r
-ID:\r
-264\r
-\r
-Name:\r
-Henry IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/12/1553\r
-Died:\r
-14/05/1610\r
-\r
-Father:\r
-Antoine de Bourbon\r
-Mother:\r
-Jeanne III Navarre\r
-\r
-Spouses:\r
-265\r
-\r
-Style:\r
-King of France\r
-Territories:\r
-France\r
-\r
-From:\r
-02/08/1589\r
-To:\r
-14/05/1610\r
-\r
-Style:\r
-King of Navarre\r
-Territories:\r
-Navarre\r
-\r
-From:\r
-09/06/1572\r
-To:\r
-14/05/1610\r
-\r
-\r
-\r
-ID:\r
-265\r
-\r
-Name:\r
-Marie de'Medici\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/04/1575\r
-Died:\r
-03/07/1642\r
-\r
-Father:\r
-Francesco I\r
-Mother:\r
-Joanna of Austria\r
-\r
-Spouses:\r
-264\r
-\r
-\r
-\r
-ID:\r
-266\r
-\r
-Name:\r
-John IV\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/03/1604\r
-Died:\r
-06/11/1656\r
-\r
-Father:\r
-Teodosco II\r
-Mother:\r
-Ana de Velasco y Giron\r
-\r
-Spouses:\r
-267\r
-\r
-Style:\r
-King of Portugal and the Algarves\r
-Territories:\r
-Portugal\r
-Algarves\r
-\r
-From:\r
-01/12/1640\r
-To:\r
-06/11/1656\r
-\r
-Style:\r
-Duke of Braganza\r
-Territories:\r
-Baganza\r
-\r
-From:\r
-29/11/1630\r
-To:\r
-01/12/1640\r
-\r
-\r
-\r
-ID:\r
-267\r
-\r
-Name:\r
-Luisa de Guzman\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/10/1613\r
-Died:\r
-27/02/1666\r
-\r
-Father:\r
-Juan Manuel Perez\r
-Mother:\r
-Juana Lorenza\r
-\r
-Spouses:\r
-266\r
-\r
-\r
-\r
-ID:\r
-268\r
-\r
-Name:\r
-Edward Hyde\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/02/1609\r
-Died:\r
-09/12/1674\r
-\r
-Father:\r
-Henry Hyde\r
-Mother:\r
-Mary Langford\r
-\r
-Spouses:\r
-269\r
-\r
-Style:\r
-Earl of Clarendon\r
-Territories:\r
-Clarendon\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-269\r
-\r
-Name:\r
-Frances Aylesbury\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/08/1617\r
-Died:\r
-08/08/1667\r
-\r
-Father:\r
-Thomas Aylesbury\r
-Mother:\r
-Anne Denman\r
-\r
-Spouses:\r
-268\r
-\r
-\r
-\r
-ID:\r
-270\r
-\r
-Name:\r
-Alfonso IV\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/10/1634\r
-Died:\r
-16/07/1662\r
-\r
-Father:\r
-Francesco I\r
-Mother:\r
-Maria\r
-\r
-Spouses:\r
-271\r
-\r
-Style:\r
-Duke of Modena\r
-Territories:\r
-Modena\r
-\r
-From:\r
-1658\r
-To:\r
-1662\r
-\r
-\r
-\r
-ID:\r
-271\r
-\r
-Name:\r
-Laura Martinozzi\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/05/1639\r
-Died:\r
-19/07/1687\r
-\r
-Father:\r
-Girolamo Martinozzi\r
-Mother:\r
-Laura Mazarini\r
-\r
-Spouses:\r
-270\r
-\r
-\r
-\r
-ID:\r
-272\r
-\r
-Name:\r
-Frederick III\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/03/1609\r
-Died:\r
-09/02/1670\r
-\r
-Father:\r
-Christian IV\r
-Mother:\r
-Anne Catherine\r
-\r
-Spouses:\r
-273\r
-\r
-Style:\r
-King of Denmark and Norway\r
-Territories:\r
-Denmark\r
-Norway\r
-\r
-From:\r
-01/05/1648\r
-To:\r
-09/02/1670\r
-\r
-Style:\r
-Prince Bishop of Verden\r
-Territories:\r
-Verden\r
-\r
-From:\r
-1623\r
-To:\r
-1629\r
-\r
-Style:\r
-Prince Bishop of Verden\r
-Territories:\r
-Verden\r
-\r
-From:\r
-1635\r
-To:\r
-1645\r
-\r
-Style:\r
-Prince-Archbishop of Bremen\r
-Territories:\r
-Bremen\r
-\r
-From:\r
-1635\r
-To:\r
-1645\r
-\r
-\r
-\r
-ID:\r
-273\r
-\r
-Name:\r
-Sophie Amalie of Brunswick-Luneburg\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/03/1628\r
-Died:\r
-20/02/1685\r
-\r
-Father:\r
-George\r
-Mother:\r
-Anne Eleonore\r
-\r
-Spouses:\r
-272\r
-\r
-\r
-\r
-ID:\r
-274\r
-\r
-Name:\r
-George William\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/01/1624\r
-Died:\r
-28/08/1705\r
-\r
-Father:\r
-George\r
-Mother:\r
-Anne\r
-\r
-Spouses:\r
-295\r
-\r
-Style:\r
-Duke of Burnswick Luneburg\r
-Territories:\r
-Burnswick-Luneburg\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-275\r
-\r
-Name:\r
-John Frederick\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/10/1654\r
-Died:\r
-22/03/1686\r
-\r
-Father:\r
-Albert II\r
-Mother:\r
-Sophie Margarete\r
-\r
-Spouses:\r
-276\r
-\r
-Style:\r
-Margrave of Brandenburg-Ansbach\r
-Territories:\r
-Brandenburg-Ansbach\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-276\r
-\r
-Name:\r
-Princess Eleonore Erdmuth of Saxe-Eisenach\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/04/1662\r
-Died:\r
-09/09/1696\r
-\r
-Father:\r
-John George I\r
-Mother:\r
-Joanna of Sayn-Wittgenstein\r
-\r
-Spouses:\r
-275\r
-\r
-\r
-\r
-ID:\r
-277\r
-\r
-Name:\r
-Charles William Ferdinand\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-09/10/1735\r
-Died:\r
-10/11/1806\r
-\r
-Father:\r
-Charles I of Brunswick-Wolfenbuttel\r
-Mother:\r
-Philippine Charlotte\r
-\r
-Spouses:\r
-278\r
-\r
-Style:\r
-Duke of Burnswick-Wolfenbuttel\r
-Territories:\r
-Brunswick-Wolfenbuttel\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-278\r
-\r
-Name:\r
-Princess Augusta Frederica\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-31/07/1737\r
-Died:\r
-23/03/1813\r
-\r
-Father:\r
-160\r
-Mother:\r
-161\r
-\r
-Spouses:\r
-277\r
-\r
-\r
-\r
-ID:\r
-279\r
-\r
-Name:\r
-George I\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/02/1761\r
-Died:\r
-24/12/1803\r
-\r
-Father:\r
-Anton Ulrich\r
-Mother:\r
-Charlotte Amalie\r
-\r
-Spouses:\r
-280\r
-\r
-Style:\r
-Duke of Saxe-Meiningen\r
-Territories:\r
-Saxe-Meiningen\r
-\r
-From:\r
-1782\r
-To:\r
-1803\r
-\r
-\r
-\r
-ID:\r
-280\r
-\r
-Name:\r
-Luise Eleonore of Hohenlohe-Langenburg\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/08/1763\r
-Died:\r
-30/04/1837\r
-\r
-Father:\r
-Christian Albert\r
-Mother:\r
-Caroline\r
-\r
-Spouses:\r
-279\r
-\r
-\r
-\r
-ID:\r
-281\r
-\r
-Name:\r
-Ernest I\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/01/1784\r
-Died:\r
-29/01/1844\r
-\r
-Father:\r
-Francis \r
-Mother:\r
-Augusta\r
-\r
-Spouses:\r
-282\r
-\r
-Style:\r
-Duke of Sake Coburg Saalfeld\r
-Territories:\r
-Saxe-Coburt-Saalfeld\r
-\r
-From:\r
-1806\r
-To:\r
-1826\r
-\r
-Style:\r
-Duke of Saxe-Coburg-Gotha\r
-Territories:\r
-Saxe-Coburg-Gotha\r
-\r
-From:\r
-1826\r
-To:\r
-1844\r
-\r
-\r
-\r
-ID:\r
-282\r
-\r
-Name:\r
-Louise\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/12/1800\r
-Died:\r
-30/10/1831\r
-\r
-Father:\r
-Augustus\r
-Mother:\r
-Louise Charlotte\r
-\r
-Spouses:\r
-281\r
-\r
-\r
-\r
-ID:\r
-283\r
-\r
-Name:\r
-Christian IX\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-08/04/1818\r
-Died:\r
-29/01/1906\r
-\r
-Father:\r
-Friedrich Wilhelm\r
-Mother:\r
-Louise\r
-\r
-Spouses:\r
-284\r
-\r
-Style:\r
-King of Denmark\r
-Territories:\r
-Denmark\r
-\r
-From:\r
-15/11/1863\r
-To:\r
-29/01/1906\r
-\r
-\r
-\r
-ID:\r
-284\r
-\r
-Name:\r
-Louise of Hesse-Kassel\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-07/09/1817\r
-Died:\r
-29/09/1898\r
-\r
-Father:\r
-William of Hesse\r
-Mother:\r
-Charlotte of Denmark\r
-\r
-Spouses:\r
-283\r
-\r
-\r
-\r
-ID:\r
-285\r
-\r
-Name:\r
-Francis\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-28/08/1837\r
-Died:\r
-21/01/1900\r
-\r
-Father:\r
-Alexander\r
-Mother:\r
-Claudin Redey\r
-\r
-Spouses:\r
-286\r
-\r
-Style:\r
-Duke of Teck\r
-Territories:\r
-Teck\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-286\r
-\r
-Name:\r
-Princess Mary Adelaid\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-27/11/1833\r
-Died:\r
-27/10/1897\r
-\r
-Father:\r
-Adolphus, Duke of Cambridge\r
-Mother:\r
-Princess Augusta\r
-\r
-Spouses:\r
-285\r
-\r
-\r
-\r
-ID:\r
-287\r
-\r
-Name:\r
-Teackle Wallis Warfield\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-Henry Mactier Warfield\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-288\r
-\r
-\r
-\r
-ID:\r
-288\r
-\r
-Name:\r
-Alice Montague\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-William Montague\r
-Mother:\r
-?\r
-\r
-Spouses:\r
-287\r
-\r
-\r
-\r
-ID:\r
-289\r
-\r
-Name:\r
-Earl Winfield Spencer\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/09/1888\r
-Died:\r
-29/05/1950\r
-\r
-Father:\r
-Earl Winfield Spence\r
-Mother:\r
-Agnes Lucy Hughes\r
-\r
-Spouses:\r
-126\r
-\r
-\r
-\r
-ID:\r
-290\r
-\r
-Name:\r
-Erest Aldrich Simpson\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/05/1897\r
-Died:\r
-30/11/1958\r
-\r
-Father:\r
-Ernest Louis Simpson\r
-Mother:\r
-Charlotte Woodward Gaines\r
-\r
-Spouses:\r
-126\r
-\r
-\r
-\r
-ID:\r
-291\r
-\r
-Name:\r
-Claude Bowes-Lion\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/03/1855\r
-Died:\r
-07/11/1944\r
-\r
-Father:\r
-Claude Bowes Lyon\r
-Mother:\r
-Frances Dora Smith\r
-\r
-Spouses:\r
-292\r
-\r
-Style:\r
-Earl of Strathmore and Kinghorne\r
-Territories:\r
-Strathmore\r
-Kinghorne\r
-\r
-From:\r
-1937\r
-To:\r
-1944\r
-\r
-\r
-\r
-ID:\r
-292\r
-\r
-Name:\r
-Cecilia Cavendish-Bentinck\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/09/1862\r
-Died:\r
-23/06/1938\r
-\r
-Father:\r
-Charles Cavendish-Bentinck\r
-Mother:\r
-Lousia Burnaby\r
-\r
-Spouses:\r
-291\r
-\r
-\r
-\r
-ID:\r
-293\r
-\r
-Name:\r
-Prince Andrew\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/02/1882\r
-Died:\r
-03/11/1944\r
-\r
-Father:\r
-George I of Greece\r
-Mother:\r
-Olga Konstantinova\r
-\r
-Spouses:\r
-294\r
-\r
-\r
-\r
-ID:\r
-294\r
-\r
-Name:\r
-Princess Alice\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/02/1885\r
-Died:\r
-05/11/1969\r
-\r
-Father:\r
-Pince Louis\r
-Mother:\r
-Princess Victoria\r
-\r
-Spouses:\r
-293\r
-\r
-\r
-\r
-ID:\r
-295\r
-\r
-Name:\r
-Eleonore Desmier d'Olbreuse\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/01/1639\r
-Died:\r
-05/02/1722\r
-\r
-Father:\r
-Alexander Desmier\r
-Mother:\r
-Jacquette Pousard\r
-\r
-Spouses:\r
-274\r
-\r
-\r
-\r
-ID:\r
-296\r
-\r
-Name:\r
-Charles Louis Frederick\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-23/02/1708\r
-Died:\r
-25/06/1752\r
-\r
-Father:\r
-Adolf Frederick II\r
-Mother:\r
-Pincess Christiane Emilie\r
-\r
-Spouses:\r
-297\r
-\r
-Style:\r
-Ducke of Mecklenburg\r
-Territories:\r
-Mecklenburg\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-Style:\r
-Pince of Mirow\r
-Territories:\r
-Mirow\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-297\r
-\r
-Name:\r
-Pincess Elizabeth-Albertine\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/08/1713\r
-Died:\r
-29/06/1761\r
-\r
-Father:\r
-Ernst Frederick I\r
-Mother:\r
-Sophia Albertine\r
-\r
-Spouses:\r
-296\r
-\r
-\r
-\r
-ID:\r
-298\r
-\r
-Name:\r
-Aethelflaed\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-12/06/918\r
-\r
-Father:\r
-1\r
-Mother:\r
-61\r
-\r
-Spouses:\r
-Aetelred\r
-\r
-Style:\r
-Lady of the Mercians\r
-Territories:\r
-Mercia\r
-\r
-From:\r
-911\r
-To:\r
-918\r
-\r
-\r
-\r
-ID:\r
-299\r
-\r
-Name:\r
-Aethelgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-1\r
-Mother:\r
-61\r
-\r
-Style:\r
-Abbess of Shaftesbury\r
-Territories:\r
-Shaftsbury\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-300\r
-\r
-Name:\r
-Aethelweard\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 880\r
-Died:\r
-920-922\r
-\r
-Father:\r
-1\r
-Mother:\r
-61\r
-\r
-Spouses:\r
-?\r
-\r
-\r
-\r
-ID:\r
-301\r
-\r
-Name:\r
-Aelthryth\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-877\r
-Died:\r
-07/06/929\r
-\r
-Father:\r
-1\r
-Mother:\r
-61\r
-\r
-Spouses:\r
-Baldwin II\r
-\r
-\r
-\r
-ID:\r
-302\r
-\r
-Name:\r
-daughter\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-2\r
-Mother:\r
-62\r
-\r
-Spouses:\r
-Sihtric Caech\r
-\r
-\r
-\r
-ID:\r
-303\r
-\r
-Name:\r
-Eadgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-902\r
-Died:\r
-After 955\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-Charles II\r
- Herbert the Old\r
-\r
-\r
-\r
-ID:\r
-304\r
-\r
-Name:\r
-Aelfweard\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c902\r
-Died:\r
-02/08/924\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-305\r
-\r
-Name:\r
-Eadgyth\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-910\r
-Died:\r
-26/01/946\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-Otto I\r
-\r
-\r
-\r
-ID:\r
-306\r
-\r
-Name:\r
-Eadhild\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-937\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-Hugh\r
-\r
-\r
-\r
-ID:\r
-307\r
-\r
-Name:\r
-Aelgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-a print near the alps\r
-\r
-\r
-\r
-ID:\r
-308\r
-\r
-Name:\r
-Eadflaed\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-309\r
-\r
-Name:\r
-Edwin of Wessex\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-933\r
-\r
-Father:\r
-2\r
-Mother:\r
-63\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-310\r
-\r
-Name:\r
-St Eadburh of Winchester\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-15/06/960\r
-\r
-Father:\r
-2\r
-Mother:\r
-64\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-311\r
-\r
-Name:\r
-Eadhgifu\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-2\r
-Mother:\r
-64\r
-\r
-Spouses:\r
-Louis prince of Aquitaine\r
-\r
-\r
-\r
-ID:\r
-312\r
-\r
-Name:\r
-St Edith of Wilton\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-961\r
-Died:\r
-15/09/984\r
-\r
-Father:\r
-7\r
-Mother:\r
-69\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-313\r
-\r
-Name:\r
-Edmund\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-7\r
-Mother:\r
-70\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-314\r
-\r
-Name:\r
-Aethelstan Aetheling\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-25/06/1014\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-315\r
-\r
-Name:\r
-Ecgberht Aetheling\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-C 1005\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-316\r
-\r
-Name:\r
-Eadred Aetheling\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1012\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-317\r
-\r
-Name:\r
-Eadwig Aetheling\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-c1017\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-318\r
-\r
-Name:\r
-Edgar Aetheling\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-C 1008\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-319\r
-\r
-Name:\r
-Eadgyth\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-Eadric Steona\r
-\r
-\r
-\r
-ID:\r
-320\r
-\r
-Name:\r
-Aelfgifu\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-Uchtred the Bold\r
-\r
-\r
-\r
-ID:\r
-321\r
-\r
-Name:\r
-Wulfhilda\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Spouses:\r
-Ulfcytel Snillingr\r
-\r
-\r
-\r
-ID:\r
-322\r
-\r
-Name:\r
-daughter\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-9\r
-Mother:\r
-71\r
-\r
-Style:\r
-Abbess of Wherwall Abbey\r
-Territories:\r
-Wherwall\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-323\r
-\r
-Name:\r
-Alfred Aetheling\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1036\r
-\r
-Father:\r
-9\r
-Mother:\r
-72\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-324\r
-\r
-Name:\r
-Goda of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1004\r
-Died:\r
-c1047\r
-\r
-Father:\r
-9\r
-Mother:\r
-72\r
-\r
-Spouses:\r
-Drogo of Mantes\r
- Eustace II\r
-\r
-\r
-\r
-ID:\r
-325\r
-\r
-Name:\r
-Harald II\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1018\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Style:\r
-King of Denmark\r
-Territories:\r
-Denmark\r
-\r
-From:\r
-1014\r
-To:\r
-1018\r
-\r
-\r
-\r
-ID:\r
-326\r
-\r
-Name:\r
-Gytha\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-327\r
-\r
-Name:\r
-Gunnhild\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-328\r
-\r
-Name:\r
-Santslaue\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-329\r
-\r
-Name:\r
-Thyra\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-330\r
-\r
-Name:\r
-Estrid Svendsdatter\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-990-997\r
-Died:\r
-1057-1073\r
-\r
-Father:\r
-10\r
-Mother:\r
-73\r
-\r
-Spouses:\r
-a Russian prince\r
- Ulf Jarl\r
-\r
-\r
-\r
-ID:\r
-331\r
-\r
-Name:\r
-Edward the Exile\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1016\r
-Died:\r
-08/1057\r
-\r
-Father:\r
-11\r
-Mother:\r
-74\r
-\r
-Spouses:\r
-Agatha\r
-\r
-\r
-\r
-ID:\r
-332\r
-\r
-Name:\r
-Edmund Aetheling\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C1015-1017\r
-Died:\r
-1046-1054\r
-\r
-Father:\r
-11\r
-Mother:\r
-74\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-333\r
-\r
-Name:\r
-Sweyn Knutsson\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1016\r
-Died:\r
-1035\r
-\r
-Father:\r
-12\r
-Mother:\r
-75\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-334\r
-\r
-Name:\r
-Gunhilda of Denmark\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1020\r
-Died:\r
-18/07/1038\r
-\r
-Father:\r
-12\r
-Mother:\r
-72\r
-\r
-Spouses:\r
-Henry III\r
-\r
-\r
-\r
-ID:\r
-335\r
-\r
-Name:\r
-Godwine\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1049\r
-Died:\r
-?\r
-\r
-Father:\r
-16\r
-Mother:\r
-77\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-336\r
-\r
-Name:\r
-Edmund\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1049\r
-Died:\r
-?\r
-\r
-Father:\r
-16\r
-Mother:\r
-77\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-337\r
-\r
-Name:\r
-Magnus\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1051\r
-Died:\r
-?\r
-\r
-Father:\r
-16\r
-Mother:\r
-77\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-338\r
-\r
-Name:\r
-Gunhild\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1055\r
-Died:\r
-1097\r
-\r
-Father:\r
-16\r
-Mother:\r
-77\r
-\r
-Spouses:\r
-Alan Rufus\r
-\r
-\r
-\r
-ID:\r
-339\r
-\r
-Name:\r
-Gytha of Wessex\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-1098-1107\r
-\r
-Father:\r
-16\r
-Mother:\r
-77\r
-\r
-Spouses:\r
-Vladimir\r
-\r
-\r
-\r
-ID:\r
-340\r
-\r
-Name:\r
-Harold\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1067\r
-Died:\r
-1098\r
-\r
-Father:\r
-16\r
-Mother:\r
-78\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-341\r
-\r
-Name:\r
-Ulf\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1066\r
-Died:\r
-After 1087\r
-\r
-Father:\r
-16\r
-Mother:\r
-78\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-342\r
-\r
-Name:\r
-Robert Curthose\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1054\r
-Died:\r
-03/02/1134\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-Sybilla\r
-\r
-Style:\r
-Duke of Normandy\r
-Territories:\r
-Normandy\r
-\r
-From:\r
-1087\r
-To:\r
-1106\r
-\r
-\r
-\r
-ID:\r
-343\r
-\r
-Name:\r
-Richard of Normandy\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1054\r
-Died:\r
-1069-1075\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-344\r
-\r
-Name:\r
-Adeliza\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-Before 1113\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-345\r
-\r
-Name:\r
-Cecilia\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1056\r
-Died:\r
-30/06/1126\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Style:\r
-Abbess of Holy Trinity\r
-Territories:\r
-Holy Trinity\r
-\r
-From:\r
-1112\r
-To:\r
-1126\r
-\r
-\r
-\r
-ID:\r
-346\r
-\r
-Name:\r
-Matilda\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1061\r
-Died:\r
-c1086\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-347\r
-\r
-Name:\r
-Constance of Normandy\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1057-1061\r
-Died:\r
-13/08/1090\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-Alan IV\r
-\r
-\r
-\r
-ID:\r
-348\r
-\r
-Name:\r
-Agatha\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-17\r
-Mother:\r
-79\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-349\r
-\r
-Name:\r
-William Adelin\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1103\r
-Died:\r
-1120\r
-\r
-Father:\r
-19\r
-Mother:\r
-80\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-350\r
-\r
-Name:\r
-Richard\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-?\r
-\r
-Father:\r
-19\r
-Mother:\r
-80\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-351\r
-\r
-Name:\r
-Eustace IV\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1129\r
-Died:\r
-17/08/1153\r
-\r
-Father:\r
-20\r
-Mother:\r
-82\r
-\r
-Spouses:\r
-Constance\r
-\r
-Style:\r
-Count of Boulogne\r
-Territories:\r
-Boulogne\r
-\r
-From:\r
-25/12/1146\r
-To:\r
-17/08/1153\r
-\r
-\r
-\r
-ID:\r
-352\r
-\r
-Name:\r
-Matilda\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-Before 1141\r
-\r
-Father:\r
-20\r
-Mother:\r
-82\r
-\r
-Spouses:\r
-Waleran de Beaumont\r
-\r
-\r
-\r
-ID:\r
-353\r
-\r
-Name:\r
-Marie I\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1136\r
-Died:\r
-25/07/1182\r
-\r
-Father:\r
-20\r
-Mother:\r
-82\r
-\r
-Spouses:\r
-Matthew of Alsace\r
-\r
-Style:\r
-Countess of Boulogne\r
-Territories:\r
-Boulogne\r
-\r
-From:\r
-1159\r
-To:\r
-1170\r
-\r
-\r
-\r
-ID:\r
-354\r
-\r
-Name:\r
-Baldwin\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-Before 1135\r
-\r
-Father:\r
-20\r
-Mother:\r
-82\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-355\r
-\r
-Name:\r
-Adela\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-?\r
-Died:\r
-Before 1146\r
-\r
-Father:\r
-20\r
-Mother:\r
-82\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-356\r
-\r
-Name:\r
-William I\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-C 1137\r
-Died:\r
-11/10/1159\r
-\r
-Father:\r
-20\r
-Mother:\r
-82\r
-\r
-Spouses:\r
-Isabel de Warenne\r
-\r
-Style:\r
-Count of Boulogne\r
-Territories:\r
-Boulogne\r
-\r
-From:\r
-1153\r
-To:\r
-1159\r
-\r
-\r
-\r
-ID:\r
-357\r
-\r
-Name:\r
-Geoffrey\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/06/1134\r
-Died:\r
-27/07/1158\r
-\r
-Father:\r
-84\r
-Mother:\r
-21\r
-\r
-Style:\r
-Count of Nantes\r
-Territories:\r
-Nantes\r
-\r
-From:\r
-1156\r
-To:\r
-1158\r
-\r
-\r
-\r
-ID:\r
-358\r
-\r
-Name:\r
-William FitzEmpress\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/07/1136\r
-Died:\r
-30/01/1163-1164\r
-\r
-Father:\r
-84\r
-Mother:\r
-21\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-359\r
-\r
-Name:\r
-Geoffrey\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1152\r
-Died:\r
-12/12/1212\r
-\r
-Father:\r
-22\r
-Mother:\r
-Ykenai\r
-\r
-Style:\r
-Archbishop of York\r
-Territories:\r
-York\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-360\r
-\r
-Name:\r
-William IX\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/08/1153\r
-Died:\r
-04/1156\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Style:\r
-Count of Poitiers\r
-Territories:\r
-Poitiers\r
-\r
-From:\r
-17/08/1153\r
-To:\r
-04/1156\r
-\r
-\r
-\r
-ID:\r
-361\r
-\r
-Name:\r
-Matilda / Maud\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1156\r
-Died:\r
-28/08/1189\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-Henry the Lion\r
-\r
-\r
-\r
-ID:\r
-362\r
-\r
-Name:\r
-Geoffrey II\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-23/09/1158\r
-Died:\r
-19/08/1186\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-Constance\r
-\r
-\r
-\r
-ID:\r
-363\r
-\r
-Name:\r
-Eleanor of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/10/1162\r
-Died:\r
-31/10/1214\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-Alfonso VIII\r
-\r
-\r
-\r
-ID:\r
-364\r
-\r
-Name:\r
-Joan of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/1165\r
-Died:\r
-04/09/1199\r
-\r
-Father:\r
-22\r
-Mother:\r
-85\r
-\r
-Spouses:\r
-William II\r
- Raymond VI\r
-\r
-\r
-\r
-ID:\r
-365\r
-\r
-Name:\r
-William Longespee\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-c1176\r
-Died:\r
-07/03/1226\r
-\r
-Father:\r
-22\r
-Mother:\r
-Ida de Tosny\r
-\r
-Spouses:\r
-Ela\r
-\r
-\r
-\r
-ID:\r
-366\r
-\r
-Name:\r
-Richard\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/01/1209\r
-Died:\r
-02/04/1272\r
-\r
-Father:\r
-25\r
-Mother:\r
-89\r
-\r
-Spouses:\r
-Isabel Marshal\r
-Sanchia\r
-Beatrice of Falkenburg\r
-\r
-Style:\r
-Count of Poitou\r
-Territories:\r
-Poitou\r
-\r
-From:\r
-1225\r
-To:\r
-1243\r
-\r
-Style:\r
-Earl of Cornwall\r
-Territories:\r
-Cornwall\r
-\r
-From:\r
-1225\r
-To:\r
-1272\r
-\r
-Style:\r
-King of the Romans\r
-Territories:\r
-Germany\r
-\r
-From:\r
-13/01/1257\r
-To:\r
-02/04/1272\r
-\r
-\r
-\r
-ID:\r
-367\r
-\r
-Name:\r
-Joan of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/07/1210\r
-Died:\r
-04/03/1238\r
-\r
-Father:\r
-25\r
-Mother:\r
-89\r
-\r
-Spouses:\r
-Alexander II\r
-\r
-\r
-\r
-ID:\r
-368\r
-\r
-Name:\r
-Isabella\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1214\r
-Died:\r
-01/12/1241\r
-\r
-Father:\r
-25\r
-Mother:\r
-89\r
-\r
-Spouses:\r
-Frederick II\r
-\r
-\r
-\r
-ID:\r
-369\r
-\r
-Name:\r
-Eleanor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1215\r
-Died:\r
-13/04/1275\r
-\r
-Father:\r
-25\r
-Mother:\r
-89\r
-\r
-Spouses:\r
-William Marshal\r
- Simon de Montfort\r
-\r
-\r
-\r
-ID:\r
-370\r
-\r
-Name:\r
-Margaret\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-29/09/1240\r
-Died:\r
-26/02/1275\r
-\r
-Father:\r
-26\r
-Mother:\r
-90\r
-\r
-Spouses:\r
-Alexander III\r
-\r
-\r
-\r
-ID:\r
-371\r
-\r
-Name:\r
-Beatrice\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/06/1242\r
-Died:\r
-24/03/1275\r
-\r
-Father:\r
-26\r
-Mother:\r
-90\r
-\r
-Spouses:\r
-John II\r
-\r
-\r
-\r
-ID:\r
-372\r
-\r
-Name:\r
-Edmund\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/01/1245\r
-Died:\r
-05/06/1296\r
-\r
-Father:\r
-26\r
-Mother:\r
-90\r
-\r
-Spouses:\r
-Aveline de Forz\r
- Blanche of Artois\r
-\r
-Style:\r
-Earl of Lancaster and Leicester\r
-Territories:\r
-Lancaster\r
-Leicester\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-373\r
-\r
-Name:\r
-Katherine\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/11/1253\r
-Died:\r
-03/05/1257\r
-\r
-Father:\r
-26\r
-Mother:\r
-90\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-374\r
-\r
-Name:\r
-daughter\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/1255\r
-Died:\r
-29/05/1255\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-375\r
-\r
-Name:\r
-Katherine\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-Before 17/06/1264\r
-Died:\r
-05/09/1264\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-376\r
-\r
-Name:\r
-Joan\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-summer or Januarry 1265\r
-Died:\r
-Before 07/09/1265\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-377\r
-\r
-Name:\r
-John\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/07/1266\r
-Died:\r
-03/08/1271\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-378\r
-\r
-Name:\r
-Henry\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/07/1267\r
-Died:\r
-14/10/1274\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-379\r
-\r
-Name:\r
-Eleanor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/06/1269\r
-Died:\r
-29/08/1298\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-Henry III\r
-\r
-\r
-\r
-ID:\r
-380\r
-\r
-Name:\r
-Juliana\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-After 05/1271\r
-Died:\r
-05/09/1271\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-381\r
-\r
-Name:\r
-Joan\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/1272\r
-Died:\r
-23/04/1307\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-Gilbert de Clare\r
- Ralph de Monthermer\r
-\r
-\r
-\r
-ID:\r
-382\r
-\r
-Name:\r
-Alphonso\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/11/1273\r
-Died:\r
-19/08/1284\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Style:\r
-Earl of Chester\r
-Territories:\r
-Chester\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-383\r
-\r
-Name:\r
-Margaret\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-15/03/1275\r
-Died:\r
-After 1333\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-John II\r
-\r
-\r
-\r
-ID:\r
-384\r
-\r
-Name:\r
-Berengaria\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/05/1276\r
-Died:\r
-1277-1278\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-385\r
-\r
-Name:\r
-daughter\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/1277\r
-Died:\r
-01/1278\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-386\r
-\r
-Name:\r
-Mary\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11-12/03/1279\r
-Died:\r
-c1332\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-387\r
-\r
-Name:\r
-son\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1280-1281\r
-Died:\r
-1280-1281\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-388\r
-\r
-Name:\r
-Elizabeth\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-07/08/1282\r
-Died:\r
-05/05/1316\r
-\r
-Father:\r
-27\r
-Mother:\r
-91\r
-\r
-Spouses:\r
-John I\r
- Humphrey de Bohun\r
-\r
-\r
-\r
-ID:\r
-389\r
-\r
-Name:\r
-Thomas\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/06/1300\r
-Died:\r
-08/1338\r
-\r
-Father:\r
-27\r
-Mother:\r
-92\r
-\r
-Spouses:\r
-Alice de Hales\r
- Mary de Brewes\r
-\r
-\r
-\r
-ID:\r
-390\r
-\r
-Name:\r
-Edmund\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/08/1301\r
-Died:\r
-19/03/1330\r
-\r
-Father:\r
-27\r
-Mother:\r
-92\r
-\r
-Spouses:\r
-Margaret Wake\r
-\r
-\r
-\r
-ID:\r
-391\r
-\r
-Name:\r
-Eleanor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-06/05/1306\r
-Died:\r
-1310\r
-\r
-Father:\r
-27\r
-Mother:\r
-92\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-392\r
-\r
-Name:\r
-John of Eltham\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-15/08/1316\r
-Died:\r
-13/09/1336\r
-\r
-Father:\r
-28\r
-Mother:\r
-93\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-393\r
-\r
-Name:\r
-Eleanor of Woodstock\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/06/1318\r
-Died:\r
-22/04/1355\r
-\r
-Father:\r
-28\r
-Mother:\r
-93\r
-\r
-Spouses:\r
-Reginald II\r
-\r
-\r
-\r
-ID:\r
-394\r
-\r
-Name:\r
-Joan\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/07/1321\r
-Died:\r
-07/09/1362\r
-\r
-Father:\r
-28\r
-Mother:\r
-93\r
-\r
-Spouses:\r
-David II\r
-\r
-\r
-\r
-ID:\r
-395\r
-\r
-Name:\r
-Isabella\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/06/1332\r
-Died:\r
-1379-1382\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-Enguerrand VII\r
-\r
-\r
-\r
-ID:\r
-396\r
-\r
-Name:\r
-Joan\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1333-1334\r
-Died:\r
-01/07/1348\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-397\r
-\r
-Name:\r
-William of Hatfield\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/02/1337\r
-Died:\r
-After 03/03/1337\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-398\r
-\r
-Name:\r
-Lionel of Antwerp\r
-\r
-URL:\r
-.\r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-29/11/1338\r
-Died:\r
-07/10/1368\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-Elizabeth de Burgh\r
- Violante\r
-\r
-Style:\r
-Duke of Clarence\r
-Territories:\r
-Clarence\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-399\r
-\r
-Name:\r
-Blanche\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/13472\r
-Died:\r
-03/1342\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-400\r
-\r
-Name:\r
-Mary of Waltham\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/10/1344\r
-Died:\r
-09/1361\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-John V\r
-\r
-\r
-\r
-ID:\r
-401\r
-\r
-Name:\r
-Margaret\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/07/1346\r
-Died:\r
-10-12/1361\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-John Hastings\r
-\r
-\r
-\r
-ID:\r
-402\r
-\r
-Name:\r
-Thomas of Windsor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1347\r
-Died:\r
-09/1348\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-403\r
-\r
-Name:\r
-Thomas of Woodstock\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-07/01/1355\r
-Died:\r
-08-09/09/1397\r
-\r
-Father:\r
-29\r
-Mother:\r
-94\r
-\r
-Spouses:\r
-Eleanor de Bohun\r
-\r
-\r
-\r
-ID:\r
-404\r
-\r
-Name:\r
-Thomas of Lancaster\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1387\r
-Died:\r
-22/03/1421\r
-\r
-Father:\r
-31\r
-Mother:\r
-97\r
-\r
-Spouses:\r
-409\r
-\r
-\r
-\r
-ID:\r
-405\r
-\r
-Name:\r
-John of Lancaster\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/06/1389\r
-Died:\r
-14/09/1435\r
-\r
-Father:\r
-31\r
-Mother:\r
-97\r
-\r
-Spouses:\r
-Anne\r
-234\r
-\r
-Style:\r
-Duke of Bedford\r
-Territories:\r
-Bedford\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-406\r
-\r
-Name:\r
-Humphrey of Lancaster\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/10/1390\r
-Died:\r
-23/02/1447\r
-\r
-Father:\r
-31\r
-Mother:\r
-97\r
-\r
-Spouses:\r
-Jacqueline\r
-Eleanor Cobham\r
-\r
-Style:\r
-Duke of Gloucester\r
-Territories:\r
-Gloucester\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-407\r
-\r
-Name:\r
-Blanche of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-Spring 1392\r
-Died:\r
-22/05/1409\r
-\r
-Father:\r
-31\r
-Mother:\r
-97\r
-\r
-Spouses:\r
-Louis III\r
-\r
-\r
-\r
-ID:\r
-408\r
-\r
-Name:\r
-Philippa\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/06/1394\r
-Died:\r
-05/01/1430\r
-\r
-Father:\r
-31\r
-Mother:\r
-97\r
-\r
-Spouses:\r
-Eric\r
-\r
-\r
-\r
-ID:\r
-409\r
-\r
-Name:\r
-Margaret Holland\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1385\r
-Died:\r
-31/12/1439\r
-\r
-Father:\r
-Thomas Holland\r
-Mother:\r
-Alice Fitzalan\r
-\r
-Spouses:\r
-145\r
-404\r
-\r
-\r
-\r
-ID:\r
-410\r
-\r
-Name:\r
-Mary of York\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/08/1467\r
-Died:\r
-23/05/1482\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-411\r
-\r
-Name:\r
-Cecily of York\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-20/03/1469\r
-Died:\r
-24/08/1507\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-Ralph Scrope\r
-JohnWelles\r
-Thomas Kyme\r
-\r
-\r
-\r
-ID:\r
-412\r
-\r
-Name:\r
-Margaret of York\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/04/1472\r
-Died:\r
-11/12/1472\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-413\r
-\r
-Name:\r
-Richard of Shrewsbury\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/08/1473\r
-Died:\r
-?\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-Anne de Mowbray\r
-\r
-Style:\r
-Duke of York\r
-Territories:\r
-York\r
-\r
-From:\r
-05/1474\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-414\r
-\r
-Name:\r
-Anne of York\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-2/11/1475\r
-Died:\r
-23/11/1511\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-Thomas Howard\r
-\r
-\r
-\r
-ID:\r
-415\r
-\r
-Name:\r
-George Plantagenet\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/1477\r
-Died:\r
-03/1479\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Style:\r
-Duke of Bedford\r
-Territories:\r
-Bedford\r
-\r
-From:\r
-\r
-\r
-\r
-ID:\r
-416\r
-\r
-Name:\r
-Catherine of York\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/08/1479\r
-Died:\r
-15/11/1527\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-William Courtenay\r
-\r
-\r
-\r
-ID:\r
-417\r
-\r
-Name:\r
-Bridget of York\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/11/1480\r
-Died:\r
-1517\r
-\r
-Father:\r
-34\r
-Mother:\r
-101\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-418\r
-\r
-Name:\r
-Edward of Middleham\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/1473\r
-Died:\r
-09/04/1484\r
-\r
-Father:\r
-36\r
-Mother:\r
-102\r
-\r
-Style:\r
-Prince of Wales, Duke of Cornwall, Earl of Chester, Earl of Salisbury\r
-Territories:\r
-Wales\r
-Cornwall\r
-Chester\r
-Salisbury\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-419\r
-\r
-Name:\r
-Elizabeth Tudor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/07/1492\r
-Died:\r
-14/09/1495\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-420\r
-\r
-Name:\r
-Edmund Tudor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-21/02/1499\r
-Died:\r
-19/06/1500\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Style:\r
-Duke of Somerset\r
-Territories:\r
-Somerset\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-421\r
-\r
-Name:\r
-Katherine Tudor\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/02/1503\r
-Died:\r
-10/02/1503\r
-\r
-Father:\r
-37\r
-Mother:\r
-103\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-422\r
-\r
-Name:\r
-daughter\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-31/01/1510\r
-Died:\r
-31/01/1510\r
-\r
-Father:\r
-38\r
-Mother:\r
-104\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-423\r
-\r
-Name:\r
-Henry\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-01/01/1511\r
-Died:\r
-22/02/1511\r
-\r
-Father:\r
-38\r
-Mother:\r
-104\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-424\r
-\r
-Name:\r
-son\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/1513\r
-Died:\r
-11/1513\r
-\r
-Father:\r
-38\r
-Mother:\r
-104\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-425\r
-\r
-Name:\r
-Henry\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/1514\r
-Died:\r
-12/1514\r
-\r
-Father:\r
-38\r
-Mother:\r
-104\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-426\r
-\r
-Name:\r
-daughter\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-11/1518\r
-Died:\r
-11/1518\r
-\r
-Father:\r
-38\r
-Mother:\r
-104\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-427\r
-\r
-Name:\r
-Henry\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-08/1534\r
-Died:\r
-08/1534\r
-\r
-Father:\r
-38\r
-Mother:\r
-105\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-428\r
-\r
-Name:\r
-Henry Frederick\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-19/02/1594\r
-Died:\r
-06/11/1612\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Style:\r
-Prince of Wales, Duke of Cornwall, Earl of Chester\r
-Territories:\r
-Wales\r
-Cornwall\r
-Chester\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-429\r
-\r
-Name:\r
-Margaret Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/12/1598\r
-Died:\r
-03/1600\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-430\r
-\r
-Name:\r
-Robert\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-18/01/1602\r
-Died:\r
-24/05/1602\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-431\r
-\r
-Name:\r
-Mary Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-08/04/1605\r
-Died:\r
-06/09/1607\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-432\r
-\r
-Name:\r
-Sophia of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/06/1606\r
-Died:\r
-23/06/1606\r
-\r
-Father:\r
-43\r
-Mother:\r
-112\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-433\r
-\r
-Name:\r
-Charles James\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/05/1629\r
-Died:\r
-13/05/1629\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-434\r
-\r
-Name:\r
-Elizabeth\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-28/12/1635\r
-Died:\r
-08/09/1650\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-435\r
-\r
-Name:\r
-Anne of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/03/1637\r
-Died:\r
-05/11/1640\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-436\r
-\r
-Name:\r
-Henry Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-08/07/1640\r
-Died:\r
-13/09/1660\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Style:\r
-Duke of Gloucester\r
-Territories:\r
-Gloucester\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-437\r
-\r
-Name:\r
-Henrietta of England\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/06/16344\r
-Died:\r
-30/06/1670\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-Philippe of France\r
-\r
-\r
-\r
-ID:\r
-438\r
-\r
-Name:\r
-Catherine\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-29/06/1639\r
-Died:\r
-29/06/1639\r
-\r
-Father:\r
-44\r
-Mother:\r
-113\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-439\r
-\r
-Name:\r
-Charles Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/10/1660\r
-Died:\r
-05/05/1661\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Style:\r
-Duke of Cambridge\r
-Territories:\r
-Cambridge\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-440\r
-\r
-Name:\r
-James Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/07/1663\r
-Died:\r
-20/06/1667\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Style:\r
-Duke of Cambridge\r
-Territories:\r
-Cambridge\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-441\r
-\r
-Name:\r
-Charles Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-04/07/1666\r
-Died:\r
-22/05/1667\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Style:\r
-Duke of Kendal\r
-Territories:\r
-Kendal\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-442\r
-\r
-Name:\r
-Edgar Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/09/1667\r
-Died:\r
-08/06/1674\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Style:\r
-Duke of Cambridge\r
-Territories:\r
-Cambridge\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-443\r
-\r
-Name:\r
-Henrietta\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/01/1669\r
-Died:\r
-15/01/1669\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-444\r
-\r
-Name:\r
-Catherine\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-09/02/1671\r
-Died:\r
-05/12/1671\r
-\r
-Father:\r
-46\r
-Mother:\r
-115\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-446\r
-\r
-Name:\r
-Catherine Laura\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/08/1682\r
-Died:\r
-16/10/1682\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-447\r
-\r
-Name:\r
-Isabel Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-28/08/1676\r
-Died:\r
-02/03/1681\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-448\r
-\r
-Name:\r
-Charles Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-07/11/1677\r
-Died:\r
-12/12/1677\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Style:\r
-Duke of Cambridge\r
-Territories:\r
-Cambridge\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-449\r
-\r
-Name:\r
-Elizabeth\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-1678\r
-Died:\r
-1678\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-450\r
-\r
-Name:\r
-Charlotte Maria\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/08/1682\r
-Died:\r
-16/08/1682\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-451\r
-\r
-Name:\r
-James Francis Edward Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/06/1688\r
-Died:\r
-01/01/1766\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Spouses:\r
-Maria Clementina Sobieska\r
-\r
-\r
-\r
-ID:\r
-452\r
-\r
-Name:\r
-Louisa Maria Teresa Stuart\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-28/06/1692\r
-Died:\r
-18/04/1712\r
-\r
-Father:\r
-46\r
-Mother:\r
-116\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-453\r
-\r
-Name:\r
-Mary\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/06/1685\r
-Died:\r
-08/02/1687\r
-\r
-Father:\r
-117\r
-Mother:\r
-49\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-454\r
-\r
-Name:\r
-Anne Sophia\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-12/05/1686\r
-Died:\r
-02/02/1687\r
-\r
-Father:\r
-117\r
-Mother:\r
-49\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-455\r
-\r
-Name:\r
-William\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/07/1689\r
-Died:\r
-30/07/1700\r
-\r
-Father:\r
-117\r
-Mother:\r
-49\r
-\r
-Style:\r
-Duke of Gloucester\r
-Territories:\r
-Gloucester\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-456\r
-\r
-Name:\r
-Mary\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-14/10/1690\r
-Died:\r
-14/10/1690\r
-\r
-Father:\r
-117\r
-Mother:\r
-49\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-457\r
-\r
-Name:\r
-George\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-17/04/1692\r
-Died:\r
-17/04/1692\r
-\r
-Father:\r
-117\r
-Mother:\r
-49\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-458\r
-\r
-Name:\r
-Sophia Dorothea of Hanover\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/03/1687\r
-Died:\r
-28/06/1757\r
-\r
-Father:\r
-50\r
-Mother:\r
-118\r
-\r
-Spouses:\r
-Frederick of Prussia\r
-\r
-\r
-\r
-ID:\r
-459\r
-\r
-Name:\r
-Anne\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-02/11/1709\r
-Died:\r
-12/01/1759\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-William IV of Orange\r
-\r
-\r
-\r
-ID:\r
-460\r
-\r
-Name:\r
-Amelia\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-30/05/1711\r
-Died:\r
-31/10/1786\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-461\r
-\r
-Name:\r
-Caroline\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-10/06/1713\r
-Died:\r
-28/11/1757\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-462\r
-\r
-Name:\r
-son\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-30/11/1716\r
-Died:\r
-30/11/1716\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-463\r
-\r
-Name:\r
-George William\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-13/11/1717\r
-Died:\r
-17/02/1718\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-464\r
-\r
-Name:\r
-William\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-26/04/1721\r
-Died:\r
-31/10/1765\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Style:\r
-Duke of Cumberland\r
-Territories:\r
-Cumberland\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-465\r
-\r
-Name:\r
-Princess Mary\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/03/1723\r
-Died:\r
-14/01/1772\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-Frederick II\r
-\r
-\r
-\r
-ID:\r
-466\r
-\r
-Name:\r
-Louise\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-107/12/1724\r
-Died:\r
-19/12/1751\r
-\r
-Father:\r
-51\r
-Mother:\r
-119\r
-\r
-Spouses:\r
-Frederick V\r
-\r
-\r
-\r
-ID:\r
-467\r
-\r
-Name:\r
-Charlotte\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-29/09/1766\r
-Died:\r
-05/10/1828\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-Frederick II\r
-\r
-\r
-\r
-ID:\r
-468\r
-\r
-Name:\r
-Augusta Sophia\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-08/11/1768\r
-Died:\r
-22/09/1840\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-469\r
-\r
-Name:\r
-Elizabeth\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/05/1770\r
-Died:\r
-10/01/1840\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-Frederick VI\r
-\r
-\r
-\r
-ID:\r
-470\r
-\r
-Name:\r
-Ernest Augustus\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-05/06/1771\r
-Died:\r
-18/11/1851\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-Frederica\r
-\r
-Style:\r
-King of Hanover\r
-Territories:\r
-Hanover\r
-\r
-From:\r
-20/06/1837\r
-To:\r
-18/11/1851\r
-\r
-\r
-\r
-ID:\r
-471\r
-\r
-Name:\r
-Augustus Frederick\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-27/01/1773\r
-Died:\r
-21/04/1843\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-Augusta Murray\r
-Cecilia Letitia Buggin\r
-\r
-Style:\r
-Duke of Sussex\r
-Territories:\r
-Sussex\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-472\r
-\r
-Name:\r
-Adolphus Frederick\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-24/02/1774\r
-Died:\r
-08/07/1850\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-Augusta\r
-\r
-Style:\r
-Duke of Cambridge\r
-Territories:\r
-Cambridge\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
-ID:\r
-473\r
-\r
-Name:\r
-Mary\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-25/04/1776\r
-Died:\r
-30/04/1857\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-William Frederick\r
-\r
-\r
-\r
-ID:\r
-474\r
-\r
-Name:\r
-Sophia\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-03/11/1777\r
-Died:\r
-27/05/1848\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-475\r
-\r
-Name:\r
-Octavius\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-23/02/1779\r
-Died:\r
-03/05/1783\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-476\r
-\r
-Name:\r
-Alfred\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-22/09/1780\r
-Died:\r
-20/08/1782\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-477\r
-\r
-Name:\r
-Amelia\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-07/08/1783\r
-Died:\r
-02/11/1810\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-\r
-\r
-\r
-\r
-ID:\r
-478\r
-\r
-Name:\r
-Frederick\r
-\r
-URL:\r
-. \r
-\r
-Picture:\r
-.\r
-\r
-Born:\r
-16/08/1763\r
-Died:\r
-05/01/1827\r
-\r
-Father:\r
-52\r
-Mother:\r
-120\r
-\r
-Spouses:\r
-Frederica Charlotte\r
-\r
-Style:\r
-Duke of York and Albany\r
-Territories:\r
-Albany\r
-York\r
-\r
-From:\r
-?\r
-To:\r
-?\r
-\r
-\r
-\r
+
+
+
+ID:
+232
+
+Pre-name style:
+Duchess
+
+Name:
+Isabella
+
+Post-name style:
+of Lorraine
+
+URL:
+http://en.wikipedia.org/wiki/Isabella,_duchess_of_Lorraine
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Ambito_francese_-_Isabella_di_Lorena%2C_regina_di_Napoli.jpg/220px-Ambito_francese_-_Isabella_di_Lorena%2C_regina_di_Napoli.jpg
+
+Born:
+1400
+
+Died:
+28/02/1453
+
+Father:
+958
+
+Mother:
+959
+
+Spouses:
+231
+.
+.
+
+Style:
+Duches of Lorraine
+Territories:
+Lorraine
+
+From:
+25/01/1431
+To:
+28/02/1453
+
+
+ID:
+233
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Woodville
+
+URL:
+http://en.wikipedia.org/wiki/Richard_Woodville,_1st_Earl_Rivers
+
+Picture:
+.
+
+Born:
+1405
+
+Died:
+12/08/1469
+
+Father:
+961
+
+Mother:
+962
+
+Spouses:
+234
+.
+.
+
+Style:
+Earl Rivers
+Territories:
+.
+
+From:
+?
+To:
+?
+
+
+ID:
+234
+
+Pre-name style:
+.
+
+Name:
+Jacquetta
+
+Post-name style:
+of Luxembourg
+
+URL:
+http://en.wikipedia.org/wiki/Jacquetta_of_Luxembourg
+
+Picture:
+.
+
+Born:
+1415-1416
+
+Died:
+30/05/1472
+
+Father:
+976
+
+Mother:
+977
+
+Spouses:
+133
+.
+.
+
+405
+.
+.
+
+
+
+ID:
+235
+
+Pre-name style:
+Sir
+
+Name:
+John
+
+Post-name style:
+Grey
+
+URL:
+http://en.wikipedia.org/wiki/John_Grey_of_Groby
+
+Picture:
+.
+
+Born:
+c.1432
+
+Died:
+17/02/1461
+
+Father:
+978
+
+Mother:
+979
+
+Spouses:
+101
+.
+.
+
+
+
+ID:
+236
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Neville
+
+URL:
+http://en.wikipedia.org/wiki/Richard_Neville,_16th_Earl_of_Warwick
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Richard_Neville.jpg/220px-Richard_Neville.jpg
+
+Born:
+22/11/1428
+
+Died:
+14/04/1471
+
+Father:
+980
+
+Mother:
+981
+
+Spouses:
+237
+.
+.
+
+Style:
+Earl of Salisbury
+Territories:
+Salisbury
+
+From:
+?
+To:
+?
+
+
+ID:
+237
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+de Beauchamp
+
+URL:
+http://en.wikipedia.org/wiki/Anne_Neville,_16th_Countess_of_Warwick
+
+Picture:
+.
+
+Born:
+13/07/1426
+
+Died:
+20/09/1492
+
+Father:
+983
+
+Mother:
+984
+
+Spouses:
+236
+.
+.
+
+Style:
+Countess of Warwick
+Territories:
+Warwick
+
+From:
+?
+To:
+1492
+
+
+ID:
+238
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+of Westminster
+
+URL:
+http://en.wikipedia.org/wiki/Edward_of_Westminster,_Prince_of_Wales
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Edward_of_Westminster.jpg/220px-Edward_of_Westminster.jpg
+
+Born:
+13/10/1453
+
+Died:
+04/05/1471
+
+Father:
+33
+
+Mother:
+100
+
+Spouses:
+102
+.
+.
+
+Style:
+Prince of Wales
+Territories:
+Wales
+
+From:
+?
+To:
+?
+
+
+ID:
+239
+
+Pre-name style:
+King
+
+Name:
+Ferdinand
+
+Post-name style:
+II of Aragon
+
+URL:
+http://en.wikipedia.org/wiki/Ferdinand_II_of_Aragon
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Michel_Sittow_004.jpg/220px-Michel_Sittow_004.jpg
+
+Born:
+10/03/1452
+
+Died:
+23/01/1516
+
+Father:
+985
+
+Mother:
+986
+
+Spouses:
+240
+.
+.
+
+992
+.
+.
+
+Style:
+King of Sicily 
+Territories:
+Sicily
+
+From:
+1468
+To:
+23/01/1516
+Style:
+King of Aragon
+Territories:
+Aragon
+
+From:
+1479
+To:
+23/01/1516
+Consort of:
+240
+
+
+ID:
+240
+
+Pre-name style:
+Queen
+
+Name:
+Isabella
+
+Post-name style:
+I of Castile
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_I_of_Castile
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Isabel_la_Cat%C3%B3lica-2.jpg/220px-Isabel_la_Cat%C3%B3lica-2.jpg
+
+Born:
+22/04/1451
+
+Died:
+26/11/1504
+
+Father:
+994
+
+Mother:
+995
+
+Spouses:
+239
+.
+.
+
+Style:
+Queen of Castile and Leon
+Territories:
+Castile
+Leon
+
+From:
+11/11/1474
+To:
+26/11/1504
+
+
+ID:
+241
+
+Pre-name style:
+.
+
+Name:
+Arthur
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Arthur,_Prince_of_Wales
+
+Picture:
+http://en.wikipedia.org/wiki/File:Arthur_Prince_of_Wales_c_1500.jpg
+
+Born:
+20/09/1486
+
+Died:
+02/03/1502
+
+Father:
+37
+
+Mother:
+103
+
+Spouses:
+104
+.
+.
+
+Style:
+Prince of Wales, Earl of Chester, Duke of Cornwall
+Territories:
+Wales
+Chester
+Cornwall
+
+From:
+?
+To:
+?
+
+
+ID:
+242
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Boleyn
+
+URL:
+http://en.wikipedia.org/wiki/Thomas_Boleyn,_1st_Earl_of_Wiltshire
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/c/c9/Thomas-Boleyn.JPG
+
+Born:
+c1477
+
+Died:
+12/03/1539
+
+Father:
+996
+
+Mother:
+997
+
+Spouses:
+243
+.
+.
+
+
+
+ID:
+243
+
+Pre-name style:
+Lady
+
+Name:
+Elizabeth
+
+Post-name style:
+Howard
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_Boleyn,_Countess_of_Wiltshire
+
+Picture:
+.
+
+Born:
+c1480
+
+Died:
+03/04/1538
+
+Father:
+1002
+
+Mother:
+1003
+
+Spouses:
+105
+.
+.
+
+
+
+ID:
+244
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Seymour
+
+URL:
+http://en.wikipedia.org/wiki/Sir_John_Seymour_%281474-1536%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/6/60/SeymourArms.JPG
+
+Born:
+c1471
+
+Died:
+21/12/1536
+
+Father:
+1004
+
+Mother:
+1005
+
+Spouses:
+245
+.
+.
+
+
+
+ID:
+245
+
+Pre-name style:
+.
+
+Name:
+Margery
+
+Post-name style:
+Wentworth
+
+URL:
+http://en.wikipedia.org/wiki/Margery_Wentworth
+
+Picture:
+.
+
+Born:
+c1478
+
+Died:
+C10/1550
+
+Father:
+1011
+
+Mother:
+1012
+
+Spouses:
+244
+.
+.
+
+
+
+ID:
+246
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+III of Cleves
+
+URL:
+http://en.wikipedia.org/wiki/John_III,_Duke_of_Cleves
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Johann_III_von_Kleve-J%C3%BClich-Berg.jpg/220px-Johann_III_von_Kleve-J%C3%BClich-Berg.jpg
+
+Born:
+10/11/1490
+
+Died:
+06/02/1538-1539
+
+Father:
+1013
+
+Mother:
+1014
+
+Spouses:
+247
+.
+.
+
+Style:
+Duke of Cleves
+Territories:
+Cleves
+
+From:
+?
+To:
+?
+
+
+ID:
+247
+
+Pre-name style:
+.
+
+Name:
+Maria
+
+Post-name style:
+of Julich-Berg
+
+URL:
+http://en.wikipedia.org/wiki/Maria_of_J%C3%BClich-Berg
+
+Picture:
+.
+
+Born:
+03/08/1491
+
+Died:
+29/10/1543
+
+Father:
+1018
+
+Mother:
+1019
+
+Spouses:
+246
+.
+.
+
+
+
+ID:
+248
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Howard
+
+URL:
+http://en.wikipedia.org/wiki/Lord_Edmund_Howard
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/6/60/Jorg_Breu_Sr_Tournament.jpg/220px-Jorg_Breu_Sr_Tournament.jpg
+
+Born:
+c1478
+
+Died:
+19/03/1539
+
+Father:
+1002
+
+Mother:
+1003
+
+Spouses:
+249
+.
+.
+
+1025
+.
+.
+
+1026
+.
+.
+
+
+
+ID:
+249
+
+Pre-name style:
+.
+
+Name:
+Joyce
+
+Post-name style:
+Culpepper
+
+URL:
+http://en.wikipedia.org/wiki/Joyce_Culpeper
+
+Picture:
+.
+
+Born:
+C 1480
+
+Died:
+c1531
+
+Father:
+1027
+
+Mother:
+1028
+
+Spouses:
+1029
+.
+.
+
+248
+.
+.
+
+
+
+ID:
+250
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Parr
+
+URL:
+http://en.wikipedia.org/wiki/Sir_Thomas_Parr
+
+Picture:
+.
+
+Born:
+c1483
+
+Died:
+11/11/1517
+
+Father:
+1035
+
+Mother:
+1036
+
+Spouses:
+251
+.
+.
+
+
+
+ID:
+251
+
+Pre-name style:
+.
+
+Name:
+Maud
+
+Post-name style:
+Green
+
+URL:
+http://en.wikipedia.org/wiki/Maud_Green,_Lady_Parr
+
+Picture:
+.
+
+Born:
+06/04/1492
+
+Died:
+01/12/1531
+
+Father:
+1039
+
+Mother:
+1040
+
+Spouses:
+250
+.
+.
+
+
+
+ID:
+252
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Burgh
+
+URL:
+http://en.wikipedia.org/wiki/Sir_Edward_Burgh
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+Before 04/1533
+
+Father:
+1041
+
+Mother:
+1042
+
+Spouses:
+109
+.
+.
+
+
+
+ID:
+253
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Neville
+
+URL:
+http://en.wikipedia.org/wiki/John_Nevill,_3rd_Baron_Latimer
+
+Picture:
+.
+
+Born:
+17/11/1493
+
+Died:
+02/03/1543
+
+Father:
+1043
+
+Mother:
+1044
+
+Spouses:
+109
+.
+.
+
+
+
+ID:
+254
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Seymour
+
+URL:
+http://en.wikipedia.org/wiki/Thomas_Seymour,_1st_Baron_Seymour_of_Sudeley
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Thomas_Seymour_Denizot.jpg/250px-Thomas_Seymour_Denizot.jpg
+
+Born:
+c1508
+
+Died:
+20/03/1549
+
+Father:
+244
+
+Mother:
+245
+
+Spouses:
+109
+.
+.
+
+
+
+ID:
+255
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Dudley
+
+URL:
+http://en.wikipedia.org/wiki/John_Dudley,_1st_Duke_of_Northumberland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/John_Dudley%2C_1st_Duke_of_Northumberland.png/250px-John_Dudley%2C_1st_Duke_of_Northumberland.png
+
+Born:
+1504
+
+Died:
+22/08/1553
+
+Father:
+1049
+
+Mother:
+1050
+
+Spouses:
+256
+.
+.
+
+Style:
+Duke of Northumberland
+Territories:
+Northumberland
+
+From:
+1551
+To:
+1553
+
+
+ID:
+256
+
+Pre-name style:
+.
+
+Name:
+Jane
+
+Post-name style:
+Guildford
+
+URL:
+http://en.wikipedia.org/wiki/Jane_Dudley,_Duchess_of_Northumberland
+
+Picture:
+.
+
+Born:
+1508-1509
+
+Died:
+1555
+
+Father:
+1058
+
+Mother:
+1059
+
+Spouses:
+255
+.
+.
+
+
+
+ID:
+257
+
+Pre-name style:
+Emperor
+
+Name:
+Charles
+
+Post-name style:
+V
+
+URL:
+http://en.wikipedia.org/wiki/Charles_V,_Holy_Roman_Emperor
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Titian_-_Portrait_of_Charles_V_Seated_-_WGA22964.jpg/220px-Titian_-_Portrait_of_Charles_V_Seated_-_WGA22964.jpg
+
+Born:
+24/02/1500
+
+Died:
+21/09/1558
+
+Father:
+1060
+
+Mother:
+989
+
+Spouses:
+258
+.
+.
+
+Style:
+HRE, King of Germany, King of Italy
+Territories:
+HRE
+Germany
+Italy
+
+From:
+28/06/1519
+To:
+17/08/1556
+Style:
+King of Spain
+Territories:
+Spain
+
+From:
+23/01/1516
+To:
+16/01/1556
+Style:
+Lord of the Netherlands and Count Palatine of Burgundy
+Territories:
+Netherlands
+Burgundy
+
+From:
+25/09/1506
+To:
+25/10/1555
+
+
+ID:
+258
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Portugal
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_of_Portugal
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Isabella_of_Portugal_by_Titian.jpg/220px-Isabella_of_Portugal_by_Titian.jpg
+
+Born:
+24/10/1503
+
+Died:
+01/05/1539
+
+Father:
+1063
+
+Mother:
+990
+
+Spouses:
+257
+.
+.
+
+
+
+ID:
+259
+
+Pre-name style:
+.
+
+Name:
+Maria Manuela
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Maria_Manuela,_Princess_of_Portugal
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Reina_Maria_de_Portugal.jpg/220px-Reina_Maria_de_Portugal.jpg
+
+Born:
+1527
+
+Died:
+1545
+
+Father:
+1064
+
+Mother:
+10565
+
+Spouses:
+111
+.
+.
+
+
+
+ID:
+260
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Valois
+
+URL:
+http://en.wikipedia.org/wiki/Elisabeth_of_Valois
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Isabel_de_Valois2..jpg/220px-Isabel_de_Valois2..jpg
+
+Born:
+02/04/1545
+
+Died:
+03/08/1568
+
+Father:
+1066
+
+Mother:
+1067
+
+Spouses:
+111
+.
+.
+
+
+
+ID:
+261
+
+Pre-name style:
+.
+
+Name:
+Anna
+
+Post-name style:
+of Austria
+
+URL:
+http://en.wikipedia.org/wiki/Anna_of_Austria,_Queen_of_Spain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Alonso_S%C3%A1nchez_Coello_003b.jpg/220px-Alonso_S%C3%A1nchez_Coello_003b.jpg
+
+Born:
+01/11/1549
+
+Died:
+26/10/1580
+
+Father:
+1068
+
+Mother:
+1061
+
+Spouses:
+111
+.
+.
+
+
+
+ID:
+262
+
+Pre-name style:
+King
+
+Name:
+Frederick
+
+Post-name style:
+II of Denmark and Norway
+
+URL:
+http://en.wikipedia.org/wiki/Frederick_II_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/1581_Frederik_2..jpg/220px-1581_Frederik_2..jpg
+
+Born:
+01/07/1534
+
+Died:
+04/04/1588
+
+Father:
+1069
+
+Mother:
+1070
+
+Spouses:
+263
+.
+.
+
+Style:
+King of Denmark and Norway
+Territories:
+Denmark
+Norway
+
+From:
+1559
+To:
+1588
+
+
+ID:
+263
+
+Pre-name style:
+.
+
+Name:
+Sophie
+
+Post-name style:
+of Mecklenburg-Gustrow
+
+URL:
+http://en.wikipedia.org/wiki/Sofie_of_Mecklenburg-Schwerin_%28d._1631%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Sophiemecklenburgdenmark.jpg/220px-Sophiemecklenburgdenmark.jpg
+
+Born:
+04/09/1557
+
+Died:
+14/10/1631
+
+Father:
+1078
+
+Mother:
+1079
+
+Spouses:
+262
+.
+.
+
+
+
+ID:
+264
+
+Pre-name style:
+King
+
+Name:
+Henry
+
+Post-name style:
+IV of France
+
+URL:
+http://en.wikipedia.org/wiki/Henry_IV_of_France
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/da/King_Henry_IV_of_France.jpg/220px-King_Henry_IV_of_France.jpg
+
+Born:
+13/12/1553
+
+Died:
+14/05/1610
+
+Father:
+1080
+
+Mother:
+1081
+
+Spouses:
+1082
+.
+.
+
+265
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+02/08/1589
+To:
+14/05/1610
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+09/06/1572
+To:
+14/05/1610
+
+
+ID:
+265
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+de'Medici
+
+URL:
+http://en.wikipedia.org/wiki/Marie_de%27_Medici
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/96/0_Marie_de_M%C3%A9dicis_-_Frans_Pourbus_le_Jeune_-_Louvre_%28INV1710%29_-_%282%29.JPG/220px-0_Marie_de_M%C3%A9dicis_-_Frans_Pourbus_le_Jeune_-_Louvre_%28INV1710%29_-_%282%29.JPG
+
+Born:
+26/04/1575
+
+Died:
+03/07/1642
+
+Father:
+1088
+
+Mother:
+1089
+
+Spouses:
+264
+.
+.
+
+
+
+ID:
+266
+
+Pre-name style:
+King
+
+Name:
+John
+
+Post-name style:
+IV of Portugal
+
+URL:
+http://en.wikipedia.org/wiki/John_IV_of_Portugal
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Joao_IV.jpg/235px-Joao_IV.jpg
+
+Born:
+19/03/1604
+
+Died:
+06/11/1656
+
+Father:
+1090
+
+Mother:
+1091
+
+Spouses:
+267
+.
+.
+
+Style:
+King of Portugal and the Algarves
+Territories:
+Portugal
+Algarves
+
+From:
+01/12/1640
+To:
+06/11/1656
+Style:
+Duke of Braganza
+Territories:
+Baganza
+
+From:
+29/11/1630
+To:
+01/12/1640
+
+
+ID:
+267
+
+Pre-name style:
+.
+
+Name:
+Luisa
+
+Post-name style:
+de Guzman
+
+URL:
+http://en.wikipedia.org/wiki/Luisa_de_Guzm%C3%A1n
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Jos%C3%A9_de_Avelar_Rebelo_-_Retrato_da_Rainha_D.Luisa_de_Gusm%C3%A3o.jpg/220px-Jos%C3%A9_de_Avelar_Rebelo_-_Retrato_da_Rainha_D.Luisa_de_Gusm%C3%A3o.jpg
+
+Born:
+13/10/1613
+
+Died:
+27/02/1666
+
+Father:
+1098
+
+Mother:
+1999
+
+Spouses:
+266
+.
+.
+
+
+
+ID:
+268
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Hyde
+
+URL:
+http://en.wikipedia.org/wiki/Edward_Hyde,_1st_Earl_of_Clarendon
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/WH_1st_Earl_of_Clarendon.png/220px-WH_1st_Earl_of_Clarendon.png
+
+Born:
+18/02/1609
+
+Died:
+09/12/1674
+
+Father:
+1100
+
+Mother:
+1101
+
+Spouses:
+1102
+.
+.
+
+269
+.
+.
+
+Style:
+Earl of Clarendon
+Territories:
+Clarendon
+
+From:
+?
+To:
+?
+
+
+ID:
+269
+
+Pre-name style:
+.
+
+Name:
+Frances
+
+Post-name style:
+Aylesbury
+
+URL:
+http://en.wikipedia.org/wiki/Frances_Hyde,_Countess_of_Clarendon
+
+Picture:
+.
+
+Born:
+25/08/1617
+
+Died:
+08/08/1667
+
+Father:
+1108
+
+Mother:
+1109
+
+Spouses:
+268
+.
+.
+
+
+
+ID:
+270
+
+Pre-name style:
+Duke
+
+Name:
+Alfonso
+
+Post-name style:
+IV of Modena
+
+URL:
+http://en.wikipedia.org/wiki/Alfonso_IV_d%27Este,_Duke_of_Modena
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/3/39/Alfonso_IV_d%27Este.gif/220px-Alfonso_IV_d%27Este.gif
+
+Born:
+14/10/1634
+
+Died:
+16/07/1662
+
+Father:
+1110
+
+Mother:
+1111
+
+Spouses:
+271
+.
+.
+
+Style:
+Duke of Modena
+Territories:
+Modena
+
+From:
+1658
+To:
+1662
+
+
+ID:
+271
+
+Pre-name style:
+.
+
+Name:
+Laura
+
+Post-name style:
+Martinozzi
+
+URL:
+http://en.wikipedia.org/wiki/Laura_Martinozzi
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/LauraMartinozzi.jpg/220px-LauraMartinozzi.jpg
+
+Born:
+24/05/1639
+
+Died:
+19/07/1687
+
+Father:
+1115
+
+Mother:
+1116
+
+Spouses:
+270
+.
+.
+
+
+
+ID:
+272
+
+Pre-name style:
+King
+
+Name:
+Frederick 
+
+Post-name style:
+III of Denmark and Norway
+
+URL:
+http://en.wikipedia.org/wiki/Frederick_III_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Frederik_3_by_window.jpg/220px-Frederik_3_by_window.jpg
+
+Born:
+18/03/1609
+
+Died:
+09/02/1670
+
+Father:
+1071
+
+Mother:
+1117
+
+Spouses:
+273
+.
+.
+
+Style:
+King of Denmark and Norway
+Territories:
+Denmark
+Norway
+
+From:
+01/05/1648
+To:
+09/02/1670
+Style:
+Prince Bishop of Verden
+Territories:
+Verden
+
+From:
+1623
+To:
+1629
+Style:
+Prince Bishop of Verden
+Territories:
+Verden
+
+From:
+1635
+To:
+1645
+Style:
+Prince-Archbishop of Bremen
+Territories:
+Bremen
+
+From:
+1635
+To:
+1645
+
+
+ID:
+273
+
+Pre-name style:
+.
+
+Name:
+Sophie Amalie 
+
+Post-name style:
+of Brunswick-Luneburg
+
+URL:
+http://en.wikipedia.org/wiki/Sophie_Amalie_of_Brunswick-L%C3%BCneburg
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Sophieamalieluneburg_queen_of_denmark.jpg/220px-Sophieamalieluneburg_queen_of_denmark.jpg
+
+Born:
+24/03/1628
+
+Died:
+20/02/1685
+
+Father:
+656
+
+Mother:
+657
+
+Spouses:
+272
+.
+.
+
+
+
+ID:
+274
+
+Pre-name style:
+Duke
+
+Name:
+George William
+
+Post-name style:
+of Brunswick-Luneburg
+
+URL:
+http://en.wikipedia.org/wiki/George_William,_Duke_of_Brunswick-L%C3%BCneburg
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Georg-Wilhelm.jpg/220px-Georg-Wilhelm.jpg
+
+Born:
+26/01/1624
+
+Died:
+28/08/1705
+
+Father:
+656
+
+Mother:
+657
+
+Spouses:
+295
+.
+.
+
+Style:
+Duke of Burnswick Luneburg
+Territories:
+Burnswick-Luneburg
+
+From:
+?
+To:
+?
+
+
+ID:
+275
+
+Pre-name style:
+Margrave
+
+Name:
+John Frederick
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+http://en.wikipedia.org/wiki/John_Frederick,_Margrave_of_Brandenburg-Ansbach
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/e/e1/JohannfriedrichBrandansb.jpg
+
+Born:
+18/10/1654
+
+Died:
+22/03/1686
+
+Father:
+1125
+
+Mother:
+1126
+
+Spouses:
+276
+.
+.
+
+Style:
+Margrave of Brandenburg-Ansbach
+Territories:
+Brandenburg-Ansbach
+
+From:
+?
+To:
+?
+
+
+ID:
+276
+
+Pre-name style:
+Princess
+
+Name:
+Eleonore Erdmuth Louise
+
+Post-name style:
+of Saxe-Eisenach
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Eleonore_Erdmuthe_of_Saxe-Eisenach
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Eleonore_Erdmuthe_Louise_von_Sachsen-Eisenach.jpg/220px-Eleonore_Erdmuthe_Louise_von_Sachsen-Eisenach.jpg
+
+Born:
+13/04/1662
+
+Died:
+09/09/1696
+
+Father:
+1135
+
+Mother:
+1136
+
+Spouses:
+275
+.
+.
+
+1137
+.
+.
+
+
+
+ID:
+277
+
+Pre-name style:
+Duke
+
+Name:
+Charles William Ferdinand
+
+Post-name style:
+of Brunswick-Wolfenbuttel
+
+URL:
+http://en.wikipedia.org/wiki/Charles_William_Ferdinand,_Duke_of_Brunswick-Wolfenb%C3%BCttel
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/BraunschweigLKWF.jpg/220px-BraunschweigLKWF.jpg
+
+Born:
+09/10/1735
+
+Died:
+10/11/1806
+
+Father:
+1138
+
+Mother:
+1139
+
+Spouses:
+278
+.
+.
+
+Style:
+Duke of Burnswick-Wolfenbuttel
+Territories:
+Brunswick-Wolfenbuttel
+
+From:
+?
+To:
+?
+
+
+ID:
+278
+
+Pre-name style:
+Princess
+
+Name:
+Augusta Frederica
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Augusta_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Augusta_of_Great_Britain%2C_duchess_of_Brunswick-Wolfenb%C3%BCttel.jpg/220px-Augusta_of_Great_Britain%2C_duchess_of_Brunswick-Wolfenb%C3%BCttel.jpg
+
+Born:
+31/07/1737
+
+Died:
+23/03/1813
+
+Father:
+160
+
+Mother:
+161
+
+Spouses:
+277
+.
+.
+
+
+
+ID:
+279
+
+Pre-name style:
+Duke
+
+Name:
+George Frederick Karl
+
+Post-name style:
+I of Saxe-Meiningen
+
+URL:
+http://en.wikipedia.org/wiki/Georg_I,_Duke_of_Saxe-Meiningen
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/GeorgIsamei.JPG/220px-GeorgIsamei.JPG
+
+Born:
+04/02/1761
+
+Died:
+24/12/1803
+
+Father:
+1146
+
+Mother:
+1147
+
+Spouses:
+280
+.
+.
+
+Style:
+Duke of Saxe-Meiningen
+Territories:
+Saxe-Meiningen
+
+From:
+1782
+To:
+1803
+
+
+ID:
+280
+
+Pre-name style:
+.
+
+Name:
+Luise Eleonore
+
+Post-name style:
+of Hohenlohe-Langenburg
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Louise_Eleonore_of_Hohenlohe-Langenburg
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/a9/LouiseEleonoreSaMei.JPG
+
+Born:
+11/08/1763
+
+Died:
+30/04/1837
+
+Father:
+1150
+
+Mother:
+1151
+
+Spouses:
+279
+.
+.
+
+
+
+ID:
+281
+
+Pre-name style:
+Duke
+
+Name:
+Ernest Anton Karl Ludwig Herzog
+
+Post-name style:
+I of Saxe Coburg Saalfield
+
+URL:
+http://en.wikipedia.org/wiki/Ernest_I,_Duke_of_Saxe-Coburg_and_Gotha
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Ernst_I%2C_Duke_of_Saxe-Coburg_and_Gotha_-_Dawe_1818-19.jpg/220px-Ernst_I%2C_Duke_of_Saxe-Coburg_and_Gotha_-_Dawe_1818-19.jpg
+
+Born:
+02/01/1784
+
+Died:
+29/01/1844
+
+Father:
+686
+
+Mother:
+687
+
+Spouses:
+282
+.
+.
+
+Style:
+Duke of Sake Coburg Saalfeld
+Territories:
+Saxe-Coburt-Saalfeld
+
+From:
+1806
+To:
+1826
+Style:
+Duke of Saxe-Coburg-Gotha
+Territories:
+Saxe-Coburg-Gotha
+
+From:
+1826
+To:
+1844
+
+
+ID:
+282
+
+Pre-name style:
+Princess
+
+Name:
+Louise Dorothea Pauline Charlotte Fredericka Auguste
+
+Post-name style:
+of Saxe-Gotha-Altenburg
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Louise_of_Saxe-Gotha-Altenburg_%281800%E2%80%931831%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/be/Luise_of_Saxe-Gotha-Altenburg.jpg/225px-Luise_of_Saxe-Gotha-Altenburg.jpg
+
+Born:
+21/12/1800
+
+Died:
+30/10/1831
+
+Father:
+1153
+
+Mother:
+1154
+
+Spouses:
+281
+.
+.
+
+1155
+.
+.
+
+
+
+ID:
+283
+
+Pre-name style:
+King
+
+Name:
+Christian
+
+Post-name style:
+IX of Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Christian_IX_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Christian_IX_af_Henrik_Olrik.jpg/220px-Christian_IX_af_Henrik_Olrik.jpg
+
+Born:
+08/04/1818
+
+Died:
+29/01/1906
+
+Father:
+1156
+
+Mother:
+1157
+
+Spouses:
+284
+.
+.
+
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+15/11/1863
+To:
+29/01/1906
+
+
+ID:
+284
+
+Pre-name style:
+.
+
+Name:
+Louise
+
+Post-name style:
+of Hesse-Kassel
+
+URL:
+http://en.wikipedia.org/wiki/Louise_of_Hesse-Kassel
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Luisa_wife_of_Ch9.jpg/220px-Luisa_wife_of_Ch9.jpg
+
+Born:
+07/09/1817
+
+Died:
+29/09/1898
+
+Father:
+1163
+
+Mother:
+1164
+
+Spouses:
+283
+.
+.
+
+
+
+ID:
+285
+
+Pre-name style:
+Duke
+
+Name:
+Francis Paul Charles Louis Alexander
+
+Post-name style:
+of Teck
+
+URL:
+http://en.wikipedia.org/wiki/Francis,_Duke_of_Teck
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Francis%2C_Duke_of_Teck%2C_Vanity_Fair%2C_1902-05-29.jpg/200px-Francis%2C_Duke_of_Teck%2C_Vanity_Fair%2C_1902-05-29.jpg
+
+Born:
+28/08/1837
+
+Died:
+21/01/1900
+
+Father:
+1165
+
+Mother:
+1166
+
+Spouses:
+286
+.
+.
+
+Style:
+Duke of Teck
+Territories:
+Teck
+
+From:
+?
+To:
+?
+
+
+ID:
+286
+
+Pre-name style:
+Pricness
+
+Name:
+Mary AdelaideWilhemina Elizabeth
+
+Post-name style:
+of Cambridge
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Mary_Adelaide_of_Cambridge
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/e/e2/Mary-Hannover-1897.jpg
+
+Born:
+27/11/1833
+
+Died:
+27/10/1897
+
+Father:
+472
+
+Mother:
+1170
+
+Spouses:
+285
+.
+.
+
+
+
+ID:
+287
+
+Pre-name style:
+.
+
+Name:
+Teackle Wallis
+
+Post-name style:
+Warfield
+
+URL:
+http://en.wikipedia.org/wiki/Wallis_Simpson#Early_life
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1171
+
+Mother:
+?
+
+Spouses:
+288
+.
+.
+
+
+
+ID:
+288
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+Montague
+
+URL:
+http://en.wikipedia.org/wiki/Wallis_Simpson#Early_life
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1172
+
+Mother:
+?
+
+Spouses:
+287
+.
+.
+
+
+
+ID:
+289
+
+Pre-name style:
+
+
+Name:
+Earl Winfield
+
+Post-name style:
+Spencer Jr.
+
+URL:
+http://en.wikipedia.org/wiki/Earl_Winfield_Spencer,_Jr.
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Spencer_2.jpg/220px-Spencer_2.jpg
+
+Born:
+20/09/1888
+
+Died:
+29/05/1950
+
+Father:
+1173
+
+Mother:
+1174
+
+Spouses:
+126
+.
+.
+
+1175
+.
+.
+
+1176
+.
+.
+
+1177
+.
+.
+
+
+
+ID:
+290
+
+Pre-name style:
+.
+
+Name:
+Ernst Aldrich
+
+Post-name style:
+Simpson
+
+URL:
+http://en.wikipedia.org/wiki/Ernest_Aldrich_Simpson
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Ernest_Simpson_1937.jpg/220px-Ernest_Simpson_1937.jpg
+
+Born:
+26/05/1897
+
+Died:
+30/11/1958
+
+Father:
+1178
+
+Mother:
+1179
+
+Spouses:
+1180
+.
+.
+
+126
+.
+.
+
+1182
+.
+.
+
+1184
+.
+.
+
+
+
+ID:
+291
+
+Pre-name style:
+.
+
+Name:
+Claude
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+http://en.wikipedia.org/wiki/Claude_Bowes-Lyon,_14th_Earl_of_Strathmore_and_Kinghorne
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/1/15/StrathmoreColor.jpg
+
+Born:
+14/03/1855
+
+Died:
+07/11/1944
+
+Father:
+1185
+
+Mother:
+1186
+
+Spouses:
+292
+.
+.
+
+Style:
+Earl of Strathmore and Kinghorne
+Territories:
+Strathmore
+Kinghorne
+
+From:
+1937
+To:
+1944
+
+
+ID:
+292
+
+Pre-name style:
+.
+
+Name:
+Cecilia
+
+Post-name style:
+Cavendish-Bentinck
+
+URL:
+http://en.wikipedia.org/wiki/Cecilia_Bowes-Lyon,_Countess_of_Strathmore_and_Kinghorne
+
+Picture:
+.
+
+Born:
+11/09/1862
+
+Died:
+23/06/1938
+
+Father:
+1196
+
+Mother:
+1197
+
+Spouses:
+291
+.
+.
+
+
+
+ID:
+293
+
+Pre-name style:
+Prince
+
+Name:
+Andrew
+
+Post-name style:
+of Greece and Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Andrew_of_Greece_and_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Laszlo_-_Prince_Andrew_of_Greece.jpg/220px-Laszlo_-_Prince_Andrew_of_Greece.jpg
+
+Born:
+02/02/1882
+
+Died:
+03/11/1944
+
+Father:
+1159
+
+Mother:
+1198
+
+Spouses:
+294
+.
+.
+
+
+
+ID:
+294
+
+Pre-name style:
+Princess
+
+Name:
+Victoria ALICE Elizabeth Julia Marie
+
+Post-name style:
+of Battenberg
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Alice_of_Battenberg
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/1885_Alice.jpg/225px-1885_Alice.jpg
+
+Born:
+25/02/1885
+
+Died:
+05/11/1969
+
+Father:
+1203
+
+Mother:
+1204
+
+Spouses:
+293
+.
+.
+
+
+
+ID:
+295
+
+Pre-name style:
+.
+
+Name:
+Eleonore Desmier
+
+Post-name style:
+d'Olbreuse
+
+URL:
+http://en.wikipedia.org/wiki/%C3%89l%C3%A9onore_Desmier_d%27Olbreuse
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Eleonore%2C_Duchess_of_Brunswick-L%C3%BCneburg.jpg/220px-Eleonore%2C_Duchess_of_Brunswick-L%C3%BCneburg.jpg
+
+Born:
+03/01/1639
+
+Died:
+05/02/1722
+
+Father:
+1205
+
+Mother:
+1206
+
+Spouses:
+274
+.
+.
+
+
+
+ID:
+296
+
+Pre-name style:
+Duke
+
+Name:
+Charles Louis Frederick
+
+Post-name style:
+of Mecklenburg
+
+URL:
+http://en.wikipedia.org/wiki/Duke_Charles_Louis_Frederick_of_Mecklenburg
+
+Picture:
+.
+
+Born:
+23/02/1708
+
+Died:
+25/06/1752
+
+Father:
+1207
+
+Mother:
+1208
+
+Spouses:
+297
+.
+.
+
+Style:
+Duke of Mecklenburg
+Territories:
+Mecklenburg
+
+From:
+?
+To:
+?
+Style:
+Pince of Mirow
+Territories:
+Mirow
+
+From:
+?
+To:
+?
+
+
+ID:
+297
+
+Pre-name style:
+Princess
+
+Name:
+Elizabeth-Albertine
+
+Post-name style:
+of Saxe-Hildburghausen
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Elisabeth_Albertine_of_Saxe-Hildburghausen
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/15/Elizabeth_Albertine_of_Saxe-Hildburghausen.jpg/220px-Elizabeth_Albertine_of_Saxe-Hildburghausen.jpg
+
+Born:
+04/08/1713
+
+Died:
+29/06/1761
+
+Father:
+1218
+
+Mother:
+1219
+
+Spouses:
+296
+.
+.
+
+
+
+ID:
+298
+
+Pre-name style:
+.
+
+Name:
+Aethelflaed
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelfl%C3%A6d
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/3/34/%C3%86thelfl%C3%A6d_as_depicted_in_the_cartulary_of_Abingdon_Abbey.png
+
+Born:
+?
+
+Died:
+12/06/918
+
+Father:
+1
+
+Mother:
+61
+
+Spouses:
+1220
+.
+.
+
+Style:
+Lady of the Mercians
+Territories:
+Mercia
+
+From:
+911
+To:
+918
+
+
+ID:
+299
+
+Pre-name style:
+.
+
+Name:
+Aethelgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Alfred_the_Great#Family
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1
+
+Mother:
+61
+
+Style:
+Abbess of Shaftesbury
+Territories:
+Shaftsbury
+
+From:
+?
+To:
+?
+
+
+ID:
+300
+
+Pre-name style:
+.
+
+Name:
+Aethelweard
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelweard_%28son_of_Alfred%29
+
+Picture:
+.
+
+Born:
+C 880
+
+Died:
+920-922
+
+Father:
+1
+
+Mother:
+61
+
+Spouses:
+?
+.
+.
+
+
+
+ID:
+301
+
+Pre-name style:
+.
+
+Name:
+Aelthryth
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfthryth,_Countess_of_Flanders
+
+Picture:
+.
+
+Born:
+877
+
+Died:
+07/06/929
+
+Father:
+1
+
+Mother:
+61
+
+Spouses:
+1224
+.
+.
+
+
+
+ID:
+302
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Elder#Family
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+2
+
+Mother:
+62
+
+Spouses:
+1229
+.
+.
+
+
+
+ID:
+303
+
+Pre-name style:
+.
+
+Name:
+Eadgifu
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/Eadgifu_of_Wessex
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/b/b9/Eadgifu_of_England_ludvik4_mini.jpg
+
+Born:
+902
+
+Died:
+After 955
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+1230
+.
+.
+
+1232
+.
+.
+
+
+
+ID:
+304
+
+Pre-name style:
+.
+
+Name:
+Aelfweard
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86lfweard_of_Wessex
+
+Picture:
+.
+
+Born:
+c902
+
+Died:
+02/08/924
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+305
+
+Pre-name style:
+.
+
+Name:
+Eadgyth
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Eadgyth
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/HerscherpaarMagdeburgCathedral.jpg/220px-HerscherpaarMagdeburgCathedral.jpg
+
+Born:
+910
+
+Died:
+26/01/946
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+1233
+.
+.
+
+
+
+ID:
+306
+
+Pre-name style:
+.
+
+Name:
+Eadhild
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Eadhild
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+937
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+1236
+.
+.
+
+
+
+ID:
+307
+
+Pre-name style:
+.
+
+Name:
+Aelgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Elder#Family
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+a prince near the alps
+.
+.
+
+
+
+ID:
+308
+
+Pre-name style:
+.
+
+Name:
+Eadflaed
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Elder#Family
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+309
+
+Pre-name style:
+.
+
+Name:
+Edwin
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/Edwin,_son_of_Edward_the_Elder
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+933
+
+Father:
+2
+
+Mother:
+63
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+310
+
+Pre-name style:
+St
+
+Name:
+Eadburh
+
+Post-name style:
+of Winchester
+
+URL:
+http://en.wikipedia.org/wiki/Eadburh_of_Winchester
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+15/06/960
+
+Father:
+2
+
+Mother:
+64
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+311
+
+Pre-name style:
+.
+
+Name:
+Eadgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Eadburh_of_Winchester
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+2
+
+Mother:
+64
+
+Spouses:
+Louis prince of Aquitaine
+.
+.
+
+
+
+ID:
+312
+
+Pre-name style:
+St
+
+Name:
+Edith
+
+Post-name style:
+of Wilton
+
+URL:
+http://en.wikipedia.org/wiki/Edith_of_Wilton
+
+Picture:
+.
+
+Born:
+961
+
+Died:
+15/09/984
+
+Father:
+7
+
+Mother:
+69
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+313
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edgar_the_Peaceful#cite_note-2
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+7
+
+Mother:
+70
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+314
+
+Pre-name style:
+.
+
+Name:
+Aethelstan
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelstan_%C3%86theling
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+25/06/1014
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+315
+
+Pre-name style:
+.
+
+Name:
+Ecgberht
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+C 1005
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+316
+
+Pre-name style:
+.
+
+Name:
+Eadred
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/Eadred_%C3%86theling
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1012
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+317
+
+Pre-name style:
+.
+
+Name:
+Eadwig
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/Eadwig_%C3%86theling
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1017
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+318
+
+Pre-name style:
+.
+
+Name:
+Edgar
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+C 1008
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+319
+
+Pre-name style:
+.
+
+Name:
+Eadgyth
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+1237
+.
+.
+
+
+
+ID:
+320
+
+Pre-name style:
+.
+
+Name:
+Aelfgifu
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+1238
+.
+.
+
+
+
+ID:
+321
+
+Pre-name style:
+.
+
+Name:
+Wulfhilda
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/%C3%86thelred_the_Unready#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+9
+
+Mother:
+71
+
+Spouses:
+1240
+.
+.
+
+
+
+ID:
+322
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+9
+
+Mother:
+71
+
+Style:
+Abbess of Wherwall Abbey
+Territories:
+Wherwall
+
+From:
+?
+To:
+?
+
+
+ID:
+323
+
+Pre-name style:
+.
+
+Name:
+Alfred
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/Alfred_Aetheling
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1036
+
+Father:
+9
+
+Mother:
+72
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+324
+
+Pre-name style:
+.
+
+Name:
+Goda
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Godgifu,_daughter_of_%C3%86thelred_the_Unready
+
+Picture:
+.
+
+Born:
+1004
+
+Died:
+c1047
+
+Father:
+9
+
+Mother:
+72
+
+Spouses:
+1241
+.
+.
+
+771
+.
+.
+
+
+
+ID:
+325
+
+Pre-name style:
+King
+
+Name:
+Harald
+
+Post-name style:
+II of Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Harald_II_of_Denmark
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1018
+
+Father:
+10
+
+Mother:
+73
+
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+1014
+To:
+1018
+
+
+ID:
+326
+
+Pre-name style:
+.
+
+Name:
+Gytha
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Sweyn_Forkbeard#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+10
+
+Mother:
+73
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+327
+
+Pre-name style:
+.
+
+Name:
+Gunnhild
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Sweyn_Forkbeard#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+10
+
+Mother:
+73
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+328
+
+Pre-name style:
+.
+
+Name:
+Santslaue
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Sweyn_Forkbeard#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+10
+
+Mother:
+73
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+329
+
+Pre-name style:
+.
+
+Name:
+Thyra
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Sweyn_Forkbeard#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+10
+
+Mother:
+73
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+330
+
+Pre-name style:
+.
+
+Name:
+Estrid
+
+Post-name style:
+Svendsdatter
+
+URL:
+http://en.wikipedia.org/wiki/Estrid_Svendsdatter
+
+Picture:
+.
+
+Born:
+990-997
+
+Died:
+1057-1073
+
+Father:
+10
+
+Mother:
+73
+
+Spouses:
+a Russian prince
+.
+.
+
+1245
+.
+.
+
+
+
+ID:
+331
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+the Exile
+
+URL:
+http://en.wikipedia.org/wiki/Edward_the_Exile
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Edward_the_Exile.jpg/220px-Edward_the_Exile.jpg
+
+Born:
+1016
+
+Died:
+08/1057
+
+Father:
+11
+
+Mother:
+74
+
+Spouses:
+758
+.
+.
+
+
+
+ID:
+332
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Aetheling
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_%C3%86theling
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Edmund%2C_son_of_Edmund_Ironside.jpg/220px-Edmund%2C_son_of_Edmund_Ironside.jpg
+
+Born:
+C1015-1017
+
+Died:
+1046-1054
+
+Father:
+11
+
+Mother:
+74
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+333
+
+Pre-name style:
+.
+
+Name:
+Sweyn
+
+Post-name style:
+Knutsson
+
+URL:
+http://en.wikipedia.org/wiki/Svein_Knutsson
+
+Picture:
+.
+
+Born:
+c1016
+
+Died:
+1035
+
+Father:
+12
+
+Mother:
+75
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+334
+
+Pre-name style:
+.
+
+Name:
+Gunhilda
+
+Post-name style:
+of Denmark
+
+URL:
+http://en.wikipedia.org/wiki/Gunhilda_of_Denmark
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/1/1e/Gunhilda.jpg
+
+Born:
+c1020
+
+Died:
+18/07/1038
+
+Father:
+12
+
+Mother:
+72
+
+Spouses:
+773
+.
+.
+
+
+
+ID:
+335
+
+Pre-name style:
+.
+
+Name:
+Godwine
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Godwinson#Marriages_and_children
+
+Picture:
+.
+
+Born:
+1049
+
+Died:
+?
+
+Father:
+16
+
+Mother:
+77
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+336
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Godwinson#Marriages_and_children
+
+Picture:
+.
+
+Born:
+1049
+
+Died:
+?
+
+Father:
+16
+
+Mother:
+77
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+337
+
+Pre-name style:
+.
+
+Name:
+Magnus
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Godwinson#Marriages_and_children
+
+Picture:
+.
+
+Born:
+1051
+
+Died:
+?
+
+Father:
+16
+
+Mother:
+77
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+338
+
+Pre-name style:
+.
+
+Name:
+Gunhild
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/Gunhild_of_Wessex
+
+Picture:
+.
+
+Born:
+1055
+
+Died:
+1097
+
+Father:
+16
+
+Mother:
+77
+
+Spouses:
+1250
+.
+.
+
+
+
+ID:
+339
+
+Pre-name style:
+.
+
+Name:
+Gytha
+
+Post-name style:
+of Wessex
+
+URL:
+http://en.wikipedia.org/wiki/Gytha_of_Wessex
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1098-1107
+
+Father:
+16
+
+Mother:
+77
+
+Spouses:
+1251
+.
+.
+
+
+
+ID:
+340
+
+Pre-name style:
+.
+
+Name:
+Harold
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Godwinson#Marriages_and_children
+
+Picture:
+.
+
+Born:
+1067
+
+Died:
+1098
+
+Father:
+16
+
+Mother:
+78
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+341
+
+Pre-name style:
+.
+
+Name:
+Ulf
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Harold_Godwinson#Marriages_and_children
+
+Picture:
+.
+
+Born:
+1066
+
+Died:
+After 1087
+
+Father:
+16
+
+Mother:
+78
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+342
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+Curthose
+
+URL:
+http://en.wikipedia.org/wiki/Robert_Curthose
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Curthose.jpg/220px-Curthose.jpg
+
+Born:
+c1054
+
+Died:
+03/02/1134
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+1257
+.
+.
+
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+1087
+To:
+1106
+
+
+ID:
+343
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+of Normandy
+
+URL:
+http://en.wikipedia.org/wiki/Richard_of_Normandy
+
+Picture:
+.
+
+Born:
+c1054
+
+Died:
+1069-1075
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+344
+
+Pre-name style:
+.
+
+Name:
+Adeliza
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Adeliza
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+Before 1113
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+345
+
+Pre-name style:
+.
+
+Name:
+Cecilia
+
+Post-name style:
+of Normandy
+
+URL:
+http://en.wikipedia.org/wiki/Cecilia_of_Normandy
+
+Picture:
+.
+
+Born:
+c1056
+
+Died:
+30/06/1126
+
+Father:
+17
+
+Mother:
+79
+
+Style:
+Abbess of Holy Trinity
+Territories:
+Holy Trinity
+
+From:
+1112
+To:
+1126
+
+
+ID:
+346
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/William_the_Conqueror#Family_and_children
+
+Picture:
+.
+
+Born:
+c1061
+
+Died:
+c1086
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+347
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of Normandy
+
+URL:
+http://en.wikipedia.org/wiki/Constance_of_Normandy
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/6/69/Constance_of_Normandy.jpg
+
+Born:
+1057-1061
+
+Died:
+13/08/1090
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+1259
+.
+.
+
+
+
+ID:
+348
+
+Pre-name style:
+.
+
+Name:
+Agatha
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/William_the_Conqueror#Family_and_children
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+17
+
+Mother:
+79
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+349
+
+Pre-name style:
+.
+
+Name:
+William Adelin
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_I_of_England#Family_and_children
+
+Picture:
+.
+
+Born:
+1103
+
+Died:
+1120
+
+Father:
+19
+
+Mother:
+80
+
+Spouses:
+785
+.
+.
+
+
+
+ID:
+350
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_I_of_England#Family_and_children
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+19
+
+Mother:
+80
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+351
+
+Pre-name style:
+Count
+
+Name:
+Eustace
+
+Post-name style:
+IV of Boulogne
+
+URL:
+http://en.wikipedia.org/wiki/Eustace_IV,_Count_of_Boulogne
+
+Picture:
+.
+
+Born:
+c1129
+
+Died:
+17/08/1153
+
+Father:
+20
+
+Mother:
+82
+
+Spouses:
+1260
+.
+.
+
+Style:
+Count of Boulogne
+Territories:
+Boulogne
+
+From:
+25/12/1146
+To:
+17/08/1153
+
+
+ID:
+352
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Stephen,_King_of_England#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+Before 1141
+
+Father:
+20
+
+Mother:
+82
+
+Spouses:
+1261
+.
+.
+
+
+
+ID:
+353
+
+Pre-name style:
+Countess
+
+Name:
+Marie
+
+Post-name style:
+I of Boulogne
+
+URL:
+http://en.wikipedia.org/wiki/Marie_I,_Countess_of_Boulogne
+
+Picture:
+.
+
+Born:
+1136
+
+Died:
+25/07/1182
+
+Father:
+20
+
+Mother:
+82
+
+Spouses:
+1262
+.
+.
+
+Style:
+Countess of Boulogne
+Territories:
+Boulogne
+
+From:
+1159
+To:
+1170
+
+
+ID:
+354
+
+Pre-name style:
+.
+
+Name:
+Baldwin
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Stephen,_King_of_England#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+Before 1135
+
+Father:
+20
+
+Mother:
+82
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+355
+
+Pre-name style:
+.
+
+Name:
+Adela
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Stephen,_King_of_England#Issue
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+Before 1146
+
+Father:
+20
+
+Mother:
+82
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+356
+
+Pre-name style:
+Count
+
+Name:
+William
+
+Post-name style:
+I of Boulogne
+
+URL:
+http://en.wikipedia.org/wiki/William_I,_Count_of_Boulogne
+
+Picture:
+.
+
+Born:
+C 1137
+
+Died:
+11/10/1159
+
+Father:
+20
+
+Mother:
+82
+
+Spouses:
+1265
+.
+.
+
+Style:
+Count of Boulogne
+Territories:
+Boulogne
+
+From:
+1153
+To:
+1159
+
+
+ID:
+357
+
+Pre-name style:
+.
+
+Name:
+Geoffrey
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Geoffrey,_Count_of_Nantes
+
+Picture:
+.
+
+Born:
+01/06/1134
+
+Died:
+27/07/1158
+
+Father:
+84
+
+Mother:
+21
+
+Style:
+Count of Nantes
+Territories:
+Nantes
+
+From:
+1156
+To:
+1158
+
+
+ID:
+358
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+FitzEmpress
+
+URL:
+http://en.wikipedia.org/wiki/William_FitzEmpress
+
+Picture:
+.
+
+Born:
+22/07/1136
+
+Died:
+30/01/1163-1164
+
+Father:
+84
+
+Mother:
+21
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+359
+
+Pre-name style:
+.
+
+Name:
+Geoffrey
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Geoffrey_%28archbishop_of_York%29
+
+Picture:
+.
+
+Born:
+c1152
+
+Died:
+12/12/1212
+
+Father:
+22
+
+Mother:
+Ykenai
+
+Style:
+Archbishop of York
+Territories:
+York
+
+From:
+?
+To:
+?
+
+
+ID:
+360
+
+Pre-name style:
+Count
+
+Name:
+William
+
+Post-name style:
+IX of Pointiers
+
+URL:
+http://en.wikipedia.org/wiki/William_IX,_Count_of_Poitiers
+
+Picture:
+.
+
+Born:
+17/08/1153
+
+Died:
+04/1156
+
+Father:
+22
+
+Mother:
+85
+
+Style:
+Count of Poitiers
+Territories:
+Poitiers
+
+From:
+17/08/1153
+To:
+04/1156
+
+
+ID:
+361
+
+Pre-name style:
+.
+
+Name:
+Matilda / Maud
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Matilda_of_England,_Duchess_of_Saxony
+
+Picture:
+.
+
+Born:
+1156
+
+Died:
+28/08/1189
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+1266
+.
+.
+
+
+
+ID:
+362
+
+Pre-name style:
+.
+
+Name:
+Geoffrey
+
+Post-name style:
+II
+
+URL:
+http://en.wikipedia.org/wiki/Geoffrey_II,_Duke_of_Brittany
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/2/21/Geoffrey2.jpg
+
+Born:
+23/09/1158
+
+Died:
+19/08/1186
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+1272
+.
+.
+
+
+
+ID:
+363
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_England,_Queen_of_Castile
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/5/54/EleonoraAngl.jpg
+
+Born:
+13/10/1162
+
+Died:
+31/10/1214
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+1275
+.
+.
+
+
+
+ID:
+364
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_England,_Queen_of_Sicily
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Richard_I_and_Joan_greeting_Philip_Augustus.jpg/220px-Richard_I_and_Joan_greeting_Philip_Augustus.jpg
+
+Born:
+10/1165
+
+Died:
+04/09/1199
+
+Father:
+22
+
+Mother:
+85
+
+Spouses:
+1286
+.
+.
+
+1288
+.
+.
+
+
+
+ID:
+365
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Longespee
+
+URL:
+http://en.wikipedia.org/wiki/William_Longesp%C3%A9e,_3rd_Earl_of_Salisbury
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/b/bd/William_Salisbury.jpg
+
+Born:
+c1176
+
+Died:
+07/03/1226
+
+Father:
+22
+
+Mother:
+1292
+
+Spouses:
+1293
+.
+.
+
+
+
+ID:
+366
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Richard,_1st_Earl_of_Cornwall
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Richard_of_Cornwall_.jpg/220px-Richard_of_Cornwall_.jpg
+
+Born:
+05/01/1209
+
+Died:
+02/04/1272
+
+Father:
+25
+
+Mother:
+89
+
+Spouses:
+1303
+.
+.
+
+842
+.
+.
+
+1309
+.
+.
+
+Style:
+Count of Poitou
+Territories:
+Poitou
+
+From:
+1225
+To:
+1243
+Style:
+Earl of Cornwall
+Territories:
+Cornwall
+
+From:
+1225
+To:
+1272
+Style:
+King of the Romans
+Territories:
+Germany
+
+From:
+13/01/1257
+To:
+02/04/1272
+
+
+ID:
+367
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_England,_Queen_of_Scotland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/f/f2/JoanEngland.jpg
+
+Born:
+22/07/1210
+
+Died:
+04/03/1238
+
+Father:
+25
+
+Mother:
+89
+
+Spouses:
+1310
+.
+.
+
+
+
+ID:
+368
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/3/36/BritLibRoyal14CVIIFol123FredIIAndIsabellaWed.jpg/220px-BritLibRoyal14CVIIFol123FredIIAndIsabellaWed.jpg
+
+Born:
+1214
+
+Died:
+01/12/1241
+
+Father:
+25
+
+Mother:
+89
+
+Spouses:
+1311
+.
+.
+
+
+
+ID:
+369
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Leicester
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_Leicester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/5/50/Eleanor_Plantagenet%2C_Countess_of_Leicester.jpg
+
+Born:
+1215
+
+Died:
+13/04/1275
+
+Father:
+25
+
+Mother:
+89
+
+Spouses:
+1316
+.
+.
+
+1317
+.
+.
+
+
+
+ID:
+370
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/b/be/Margaret_Plantagenet%2C_Queen_of_Scotland.JPG/220px-Margaret_Plantagenet%2C_Queen_of_Scotland.JPG
+
+Born:
+29/09/1240
+
+Died:
+26/02/1275
+
+Father:
+26
+
+Mother:
+90
+
+Spouses:
+1325
+.
+.
+
+
+
+ID:
+371
+
+Pre-name style:
+.
+
+Name:
+Beatrice
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Beatrice_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Beatrix_Engl.jpg/220px-Beatrix_Engl.jpg
+
+Born:
+25/06/1242
+
+Died:
+24/03/1275
+
+Father:
+26
+
+Mother:
+90
+
+Spouses:
+1329
+.
+.
+
+
+
+ID:
+372
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Crouchback
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_Crouchback
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/BodleianDouce231Fol1rEdCrouchbackAndStGeorge.jpg/220px-BodleianDouce231Fol1rEdCrouchbackAndStGeorge.jpg
+
+Born:
+16/01/1245
+
+Died:
+05/06/1296
+
+Father:
+26
+
+Mother:
+90
+
+Spouses:
+1336
+.
+.
+
+879
+.
+.
+
+Style:
+Earl of Lancaster and Leicester
+Territories:
+Lancaster
+Leicester
+
+From:
+?
+To:
+?
+
+
+ID:
+373
+
+Pre-name style:
+.
+
+Name:
+Katherine
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Katherine_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/d/de/Katherine_of_England.jpg
+
+Born:
+25/11/1253
+
+Died:
+03/05/1257
+
+Father:
+26
+
+Mother:
+90
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+374
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+05/1255
+
+Died:
+29/05/1255
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+375
+
+Pre-name style:
+.
+
+Name:
+Katherine
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+Before 17/06/1264
+
+Died:
+05/09/1264
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+376
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+summer or Januarry 1265
+
+Died:
+Before 07/09/1265
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+377
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+13/07/1266
+
+Died:
+03/08/1271
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+378
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry,_son_of_Edward_I
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Henry%2C_Prince_of_England.jpg/170px-Henry%2C_Prince_of_England.jpg
+
+Born:
+13/07/1267
+
+Died:
+14/10/1274
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+379
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_England,_Countess_of_Bar
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/e/e4/Eleanor%2C_Countess_of_Bar.jpg
+
+Born:
+18/06/1269
+
+Died:
+29/08/1298
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+1340
+.
+.
+
+
+
+ID:
+380
+
+Pre-name style:
+.
+
+Name:
+Juliana
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+After 05/1271
+
+Died:
+05/09/1271
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+381
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Acre
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_Acre
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/4/44/Joan_of_Acre.jpg
+
+Born:
+04/1272
+
+Died:
+23/04/1307
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+1343
+.
+.
+
+1348
+.
+.
+
+
+
+ID:
+382
+
+Pre-name style:
+.
+
+Name:
+Alphonso
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Alphonso,_Earl_of_Chester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/0/02/Alphonso_of_England.jpg
+
+Born:
+24/11/1273
+
+Died:
+19/08/1284
+
+Father:
+27
+
+Mother:
+91
+
+Style:
+Earl of Chester
+Territories:
+Chester
+
+From:
+?
+To:
+?
+
+
+ID:
+383
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_England,_Duchess_of_Brabant
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/5/58/Margaret%2C_Duchess_of_Brabant.jpg
+
+Born:
+15/03/1275
+
+Died:
+After 1333
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+1353
+.
+.
+
+
+
+ID:
+384
+
+Pre-name style:
+.
+
+Name:
+Berengaria
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+01/05/1276
+
+Died:
+1277-1278
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+385
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+12/1277
+
+Died:
+01/1278
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+386
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+of Woodstock
+
+URL:
+http://en.wikipedia.org/wiki/Mary_of_Woodstock
+
+Picture:
+.
+
+Born:
+11-12/03/1279
+
+Died:
+c1332
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+387
+
+Pre-name style:
+.
+
+Name:
+son
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+1280-1281
+
+Died:
+1280-1281
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+388
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Rhuddlan
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_of_Rhuddlan
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/d/dc/Elizabeth_from_Rhuddlan.jpg
+
+Born:
+07/08/1282
+
+Died:
+05/05/1316
+
+Father:
+27
+
+Mother:
+91
+
+Spouses:
+1355
+.
+.
+
+1356
+.
+.
+
+
+
+ID:
+389
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+of Brotherton
+
+URL:
+http://en.wikipedia.org/wiki/Thomas_of_Brotherton,_1st_Earl_of_Norfolk
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/86/Arms_of_Thomas_of_Brotherton%2C_1st_Earl_of_Norfolk.svg/160px-Arms_of_Thomas_of_Brotherton%2C_1st_Earl_of_Norfolk.svg.png
+
+Born:
+01/06/1300
+
+Died:
+08/1338
+
+Father:
+27
+
+Mother:
+92
+
+Spouses:
+1367
+.
+.
+
+1371
+.
+.
+
+
+
+ID:
+390
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+of Woodstock
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_of_Woodstock,_1st_Earl_of_Kent
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Arms_of_Edmund_of_Woodstock%2C_1st_Earl_of_Kent.svg/220px-Arms_of_Edmund_of_Woodstock%2C_1st_Earl_of_Kent.svg.png
+
+Born:
+05/08/1301
+
+Died:
+19/03/1330
+
+Father:
+27
+
+Mother:
+92
+
+Spouses:
+573
+.
+.
+
+
+
+ID:
+391
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Edward_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+06/05/1306
+
+Died:
+1310
+
+Father:
+27
+
+Mother:
+92
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+392
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Eltham
+
+URL:
+http://en.wikipedia.org/wiki/John_of_Eltham,_Earl_of_Cornwall
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/9/92/John_of_Eltham.jpg
+
+Born:
+15/08/1316
+
+Died:
+13/09/1336
+
+Father:
+28
+
+Mother:
+93
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+393
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Woodstock
+
+URL:
+http://en.wikipedia.org/wiki/Eleanor_of_Woodstock
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/4/4f/Eleanor_of_Woodstock%2Ctree.jpg
+
+Born:
+18/06/1318
+
+Died:
+22/04/1355
+
+Father:
+28
+
+Mother:
+93
+
+Spouses:
+1357
+.
+.
+
+
+
+ID:
+394
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of the Tower
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_the_Tower
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/a/a0/Joan_of_the_Tower.jpg
+
+Born:
+05/07/1321
+
+Died:
+07/09/1362
+
+Father:
+28
+
+Mother:
+93
+
+Spouses:
+1378
+.
+.
+
+
+
+ID:
+395
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+de Coucy
+
+URL:
+http://en.wikipedia.org/wiki/Isabella_de_Coucy
+
+Picture:
+.
+
+Born:
+16/06/1332
+
+Died:
+1379-1382
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+1379
+.
+.
+
+
+
+ID:
+396
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Joan_of_England_%281335%E2%80%931348%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/b/b3/Lady_Joan_Plantagenet.jpg/220px-Lady_Joan_Plantagenet.jpg
+
+Born:
+1333-1334
+
+Died:
+01/07/1348
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+397
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+of Hatfield
+
+URL:
+http://en.wikipedia.org/wiki/Edward_III_of_England#Issue
+
+Picture:
+.
+
+Born:
+16/02/1337
+
+Died:
+After 03/03/1337
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+398
+
+Pre-name style:
+.
+
+Name:
+Lionel
+
+Post-name style:
+of Antwerp
+
+URL:
+http://en.wikipedia.org/wiki/Lionel_of_Antwerp,_1st_Duke_of_Clarence
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/LionelDukeOfClarenceAtWestminster.jpg/220px-LionelDukeOfClarenceAtWestminster.jpg
+
+Born:
+29/11/1338
+
+Died:
+07/10/1368
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+1382
+.
+.
+
+1384
+.
+.
+
+Style:
+Duke of Clarence
+Territories:
+Clarence
+
+From:
+?
+To:
+?
+
+
+ID:
+399
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of the Tower
+
+URL:
+http://en.wikipedia.org/wiki/Edward_III_of_England#Issue
+
+Picture:
+.
+
+Born:
+03/1342
+
+Died:
+03/1342
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+400
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+of Waltham
+
+URL:
+http://en.wikipedia.org/wiki/Mary_of_Waltham
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/d/d7/Mary_Plantagenet_of_Brittany.jpg/220px-Mary_Plantagenet_of_Brittany.jpg
+
+Born:
+10/10/1344
+
+Died:
+09/1361
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+222
+.
+.
+
+
+
+ID:
+401
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Margaret,_Countess_of_Pembroke
+
+Picture:
+.
+
+Born:
+20/07/1346
+
+Died:
+10-12/1361
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+1385
+.
+.
+
+
+
+ID:
+402
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+of Windsor
+
+URL:
+http://en.wikipedia.org/wiki/Edward_III_of_England#Issue
+
+Picture:
+.
+
+Born:
+1347
+
+Died:
+09/1348
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+403
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+of Woodstock
+
+URL:
+http://en.wikipedia.org/wiki/Thomas_of_Woodstock,_1st_Duke_of_Gloucester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/ThomasWoodstock.jpg/200px-ThomasWoodstock.jpg
+
+Born:
+07/01/1355
+
+Died:
+08-09/09/1397
+
+Father:
+29
+
+Mother:
+94
+
+Spouses:
+943
+.
+.
+
+
+
+ID:
+404
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+of Lancaster
+
+URL:
+http://en.wikipedia.org/wiki/Thomas_of_Lancaster,_1st_Duke_of_Clarence
+
+Picture:
+.
+
+Born:
+1387
+
+Died:
+22/03/1421
+
+Father:
+31
+
+Mother:
+97
+
+Spouses:
+409
+.
+.
+
+
+
+ID:
+405
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Lancaster
+
+URL:
+http://en.wikipedia.org/wiki/John_of_Lancaster,_1st_Duke_of_Bedford
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/John%2C_Duke_of_Bedford_-_British_Library_Add_MS_18850_f256v_-_detail.jpg/220px-John%2C_Duke_of_Bedford_-_British_Library_Add_MS_18850_f256v_-_detail.jpg
+
+Born:
+20/06/1389
+
+Died:
+14/09/1435
+
+Father:
+31
+
+Mother:
+97
+
+Spouses:
+1391
+.
+.
+
+234
+.
+.
+
+Style:
+Duke of Bedford
+Territories:
+Bedford
+
+From:
+?
+To:
+?
+
+
+ID:
+406
+
+Pre-name style:
+.
+
+Name:
+Humphrey
+
+Post-name style:
+of Lancaster
+
+URL:
+http://en.wikipedia.org/wiki/Humphrey_of_Lancaster,_1st_Duke_of_Gloucester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/2/28/HumphreyGloucester.jpg/120px-HumphreyGloucester.jpg
+
+Born:
+03/10/1390
+
+Died:
+23/02/1447
+
+Father:
+31
+
+Mother:
+97
+
+Spouses:
+1392
+.
+.
+
+1393
+.
+.
+
+Style:
+Duke of Gloucester
+Territories:
+Gloucester
+
+From:
+?
+To:
+?
+
+
+ID:
+407
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Blanche_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/4/49/Blanche_of_England.jpg/220px-Blanche_of_England.jpg
+
+Born:
+Spring 1392
+
+Died:
+22/05/1409
+
+Father:
+31
+
+Mother:
+97
+
+Spouses:
+1396
+.
+.
+
+
+
+ID:
+408
+
+Pre-name style:
+.
+
+Name:
+Philippa
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Philippa_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Philippa_vadstena.JPG/220px-Philippa_vadstena.JPG
+
+Born:
+04/06/1394
+
+Died:
+05/01/1430
+
+Father:
+31
+
+Mother:
+97
+
+Spouses:
+1398
+.
+.
+
+
+
+ID:
+409
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Holland
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_Holland,_Duchess_of_Clarence
+
+Picture:
+.
+
+Born:
+1385
+
+Died:
+31/12/1439
+
+Father:
+575
+
+Mother:
+581
+
+Spouses:
+145
+.
+.
+
+404
+.
+.
+
+
+
+ID:
+410
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Mary_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/c/ce/Mary_of_York.JPG
+
+Born:
+11/08/1467
+
+Died:
+23/05/1482
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+411
+
+Pre-name style:
+.
+
+Name:
+Cecily
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Cecily_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/0/04/Cecily_of_York.JPG
+
+Born:
+20/03/1469
+
+Died:
+24/08/1507
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+1400
+.
+.
+
+1401
+.
+.
+
+1405
+.
+.
+
+
+
+ID:
+412
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_of_York_%281472%29
+
+Picture:
+.
+
+Born:
+10/04/1472
+
+Died:
+11/12/1472
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+413
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+of Shrewsbury
+
+URL:
+http://en.wikipedia.org/wiki/Richard_of_Shrewsbury,_Duke_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Richard_of_Shrewsbury.jpg/150px-Richard_of_Shrewsbury.jpg
+
+Born:
+17/08/1473
+
+Died:
+?
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+1408
+.
+.
+
+Style:
+Duke of York
+Territories:
+York
+
+From:
+05/1474
+To:
+?
+
+
+ID:
+414
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Anne_of_York,_Lady_Howard
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/e/ee/The_Daughters_of_Edward_IV.jpg/220px-The_Daughters_of_Edward_IV.jpg
+
+Born:
+2/11/1475
+
+Died:
+23/11/1511
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+1409
+.
+.
+
+
+
+ID:
+415
+
+Pre-name style:
+.
+
+Name:
+George
+
+Post-name style:
+Plantagenet
+
+URL:
+http://en.wikipedia.org/wiki/George_Plantagenet,_1st_Duke_of_Bedford
+
+Picture:
+.
+
+Born:
+03/1477
+
+Died:
+03/1479
+
+Father:
+34
+
+Mother:
+101
+
+Style:
+Duke of Bedford
+Territories:
+Bedford
+
+From:
+
+To:
+
+
+
+ID:
+416
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Catherine_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/9/9e/Katherine_of_York.jpg
+
+Born:
+14/08/1479
+
+Died:
+15/11/1527
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+1411
+.
+.
+
+
+
+ID:
+417
+
+Pre-name style:
+.
+
+Name:
+Bridget
+
+Post-name style:
+of York
+
+URL:
+http://en.wikipedia.org/wiki/Bridget_of_York
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/7/7e/Brig%C3%ADdaYork01.JPG
+
+Born:
+10/11/1480
+
+Died:
+1517
+
+Father:
+34
+
+Mother:
+101
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+418
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+of Middleham
+
+URL:
+http://en.wikipedia.org/wiki/Edward_of_Middleham,_Prince_of_Wales
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Mw123655.jpg/220px-Mw123655.jpg
+
+Born:
+11/1473
+
+Died:
+09/04/1484
+
+Father:
+36
+
+Mother:
+102
+
+Style:
+Prince of Wales, Duke of Cornwall, Earl of Chester, Earl of Salisbury
+Territories:
+Wales
+Cornwall
+Chester
+Salisbury
+
+From:
+?
+To:
+?
+
+
+ID:
+419
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_Tudor_%281492%E2%80%931495%29
+
+Picture:
+.
+
+Born:
+02/07/1492
+
+Died:
+14/09/1495
+
+Father:
+37
+
+Mother:
+103
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+420
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Edmund_Tudor,_Duke_of_Somerset
+
+Picture:
+.
+
+Born:
+21/02/1499
+
+Died:
+19/06/1500
+
+Father:
+37
+
+Mother:
+103
+
+Style:
+Duke of Somerset
+Territories:
+Somerset
+
+From:
+?
+To:
+?
+
+
+ID:
+421
+
+Pre-name style:
+.
+
+Name:
+Katherine
+
+Post-name style:
+Tudor
+
+URL:
+http://en.wikipedia.org/wiki/Katherine_Tudor_%281503%29
+
+Picture:
+.
+
+Born:
+02/02/1503
+
+Died:
+10/02/1503
+
+Father:
+37
+
+Mother:
+103
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+422
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VIII_of_England#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+31/01/1510
+
+Died:
+31/01/1510
+
+Father:
+38
+
+Mother:
+104
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+423
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry,_Duke_of_Cornwall#The_first_Henry.2C_Duke_of_Cornwall
+
+Picture:
+.
+
+Born:
+01/01/1511
+
+Died:
+22/02/1511
+
+Father:
+38
+
+Mother:
+104
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+424
+
+Pre-name style:
+.
+
+Name:
+son
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VIII_of_England#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+11/1513
+
+Died:
+11/1513
+
+Father:
+38
+
+Mother:
+104
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+425
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry,_Duke_of_Cornwall#The_second_Henry.2C_Duke_of_Cornwall
+
+Picture:
+.
+
+Born:
+12/1514
+
+Died:
+12/1514
+
+Father:
+38
+
+Mother:
+104
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+426
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VIII_of_England#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+11/1518
+
+Died:
+11/1518
+
+Father:
+38
+
+Mother:
+104
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+427
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_VIII_of_England#Marriages_and_issue
+
+Picture:
+.
+
+Born:
+08/1534
+
+Died:
+08/1534
+
+Father:
+38
+
+Mother:
+105
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+428
+
+Pre-name style:
+.
+
+Name:
+Henry Frederick
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Henry_Frederick,_Prince_of_Wales
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Henry_Prince_of_Wales_after_Isaac_Oliver.jpg/220px-Henry_Prince_of_Wales_after_Isaac_Oliver.jpg
+
+Born:
+19/02/1594
+
+Died:
+06/11/1612
+
+Father:
+43
+
+Mother:
+112
+
+Style:
+Prince of Wales, Duke of Cornwall, Earl of Chester
+Territories:
+Wales
+Cornwall
+Chester
+
+From:
+?
+To:
+?
+
+
+ID:
+429
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Margaret_Stuart_%281598%E2%80%931600%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Princess_Margaret_%281598-1600%29.jpg/220px-Princess_Margaret_%281598-1600%29.jpg
+
+Born:
+24/12/1598
+
+Died:
+03/1600
+
+Father:
+43
+
+Mother:
+112
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+430
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Robert_Stuart,_Duke_of_Kintyre_and_Lorne
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/a/a3/Robertkintyre.jpg/220px-Robertkintyre.jpg
+
+Born:
+18/01/1602
+
+Died:
+24/05/1602
+
+Father:
+43
+
+Mother:
+112
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+431
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Mary_Stuart_%281605%E2%80%931607%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Princess_Mary_%281605-1607%29.jpg/220px-Princess_Mary_%281605-1607%29.jpg
+
+Born:
+08/04/1605
+
+Died:
+06/09/1607
+
+Father:
+43
+
+Mother:
+112
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+432
+
+Pre-name style:
+.
+
+Name:
+Sophia
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Sophia_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/a/a4/Sophia1605.jpg
+
+Born:
+22/06/1606
+
+Died:
+23/06/1606
+
+Father:
+43
+
+Mother:
+112
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+433
+
+Pre-name style:
+.
+
+Name:
+Charles James
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Charles_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+13/05/1629
+
+Died:
+13/05/1629
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+434
+
+Pre-name style:
+Princess
+
+Name:
+Elizabeth
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Elizabeth_Stuart_%281635%E2%80%931650%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Princess_Elizabeth_-_NPG_D28654.jpg/220px-Princess_Elizabeth_-_NPG_D28654.jpg
+
+Born:
+28/12/1635
+
+Died:
+08/09/1650
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+435
+
+Pre-name style:
+Princess
+
+Name:
+Anne
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Anne_of_England_%281637%E2%80%931640%29
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Princess_Anne_-_NPG_D26443.jpg/220px-Princess_Anne_-_NPG_D26443.jpg
+
+Born:
+17/03/1637
+
+Died:
+05/11/1640
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+436
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Henry_Stuart,_Duke_of_Gloucester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Henry%2C_Duke_of_Gloucester.jpg/220px-Henry%2C_Duke_of_Gloucester.jpg
+
+Born:
+08/07/1640
+
+Died:
+13/09/1660
+
+Father:
+44
+
+Mother:
+113
+
+Style:
+Duke of Gloucester
+Territories:
+Gloucester
+
+From:
+?
+To:
+?
+
+
+ID:
+437
+
+Pre-name style:
+.
+
+Name:
+Henrietta
+
+Post-name style:
+of England
+
+URL:
+http://en.wikipedia.org/wiki/Henrietta_of_England
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Henrietta_Anne%2C_Duchess_of_Orleans_by_Pierre_Mignard.jpg/200px-Henrietta_Anne%2C_Duchess_of_Orleans_by_Pierre_Mignard.jpg
+
+Born:
+16/06/1644
+
+Died:
+30/06/1670
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+1415
+.
+.
+
+
+
+ID:
+438
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Charles_I_of_England#Issue
+
+Picture:
+.
+
+Born:
+29/06/1639
+
+Died:
+29/06/1639
+
+Father:
+44
+
+Mother:
+113
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+439
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Charles_Stuart,_Duke_of_Cambridge_%281660%E2%80%931661%29
+
+Picture:
+.
+
+Born:
+22/10/1660
+
+Died:
+05/05/1661
+
+Father:
+46
+
+Mother:
+115
+
+Style:
+Duke of Cambridge
+Territories:
+Cambridge
+
+From:
+?
+To:
+?
+
+
+ID:
+440
+
+Pre-name style:
+.
+
+Name:
+James
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/James_Stuart,_Duke_of_Cambridge
+
+Picture:
+.
+
+Born:
+12/07/1663
+
+Died:
+20/06/1667
+
+Father:
+46
+
+Mother:
+115
+
+Style:
+Duke of Cambridge
+Territories:
+Cambridge
+
+From:
+?
+To:
+?
+
+
+ID:
+441
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Charles_Stuart,_Duke_of_Kendal
+
+Picture:
+.
+
+Born:
+04/07/1666
+
+Died:
+22/05/1667
+
+Father:
+46
+
+Mother:
+115
+
+Style:
+Duke of Kendal
+Territories:
+Kendal
+
+From:
+?
+To:
+?
+
+
+ID:
+442
+
+Pre-name style:
+.
+
+Name:
+Edgar
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Edgar_Stuart,_Duke_of_Cambridge
+
+Picture:
+.
+
+Born:
+14/09/1667
+
+Died:
+08/06/1674
+
+Father:
+46
+
+Mother:
+115
+
+Style:
+Duke of Cambridge
+Territories:
+Cambridge
+
+From:
+?
+To:
+?
+
+
+ID:
+443
+
+Pre-name style:
+.
+
+Name:
+Henrietta
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/James_II_of_England#Issue
+
+Picture:
+.
+
+Born:
+14/01/1669
+
+Died:
+15/01/1669
+
+Father:
+46
+
+Mother:
+115
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+444
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/James_II_of_England#Issue
+
+Picture:
+.
+
+Born:
+09/02/1671
+
+Died:
+05/12/1671
+
+Father:
+46
+
+Mother:
+115
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+446
+
+Pre-name style:
+.
+
+Name:
+Catherine Laura
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/James_II_of_England#Issue
+
+Picture:
+.
+
+Born:
+16/08/1682
+
+Died:
+16/10/1682
+
+Father:
+46
+
+Mother:
+116
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+447
+
+Pre-name style:
+.
+
+Name:
+Isabel 
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Isabel_Stuart
+
+Picture:
+.
+
+Born:
+28/08/1676
+
+Died:
+02/03/1681
+
+Father:
+46
+
+Mother:
+116
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+448
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Charles_Stuart,_Duke_of_Cambridge_%281677%29
+
+Picture:
+.
+
+Born:
+07/11/1677
+
+Died:
+12/12/1677
+
+Father:
+46
+
+Mother:
+116
+
+Style:
+Duke of Cambridge
+Territories:
+Cambridge
+
+From:
+?
+To:
+?
+
+
+ID:
+449
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/James_II_of_England#Issue
+
+Picture:
+.
+
+Born:
+1678
+
+Died:
+1678
+
+Father:
+46
+
+Mother:
+116
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+450
+
+Pre-name style:
+.
+
+Name:
+Charlotte Maria
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/James_II_of_England#Issue
+
+Picture:
+.
+
+Born:
+16/08/1682
+
+Died:
+16/08/1682
+
+Father:
+46
+
+Mother:
+116
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+451
+
+Pre-name style:
+.
+
+Name:
+James Francis Edward
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/James_Francis_Edward_Stuart
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Prince_James_Francis_Edward_Stuart_by_Alexis_Simon_Belle.jpg/220px-Prince_James_Francis_Edward_Stuart_by_Alexis_Simon_Belle.jpg
+
+Born:
+10/06/1688
+
+Died:
+01/01/1766
+
+Father:
+46
+
+Mother:
+116
+
+Spouses:
+1419
+.
+.
+
+
+
+ID:
+452
+
+Pre-name style:
+.
+
+Name:
+Louisa Maria Teresa
+
+Post-name style:
+Stuart
+
+URL:
+http://en.wikipedia.org/wiki/Louisa_Maria_Teresa_Stuart
+
+Picture:
+.
+
+Born:
+28/06/1692
+
+Died:
+18/04/1712
+
+Father:
+46
+
+Mother:
+116
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+453
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_George_of_Denmark#Issue
+
+Picture:
+.
+
+Born:
+02/06/1685
+
+Died:
+08/02/1687
+
+Father:
+117
+
+Mother:
+49
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+454
+
+Pre-name style:
+.
+
+Name:
+Anne Sophia
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_George_of_Denmark#Issue
+
+Picture:
+.
+
+Born:
+12/05/1686
+
+Died:
+02/02/1687
+
+Father:
+117
+
+Mother:
+49
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+455
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_William,_Duke_of_Gloucester
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Prince_William_of_Denmark.jpg/220px-Prince_William_of_Denmark.jpg
+
+Born:
+24/07/1689
+
+Died:
+30/07/1700
+
+Father:
+117
+
+Mother:
+49
+
+Style:
+Duke of Gloucester
+Territories:
+Gloucester
+
+From:
+?
+To:
+?
+
+
+ID:
+456
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_George_of_Denmark#Issue
+
+Picture:
+.
+
+Born:
+14/10/1690
+
+Died:
+14/10/1690
+
+Father:
+117
+
+Mother:
+49
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+457
+
+Pre-name style:
+.
+
+Name:
+George
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_George_of_Denmark#Issue
+
+Picture:
+.
+
+Born:
+17/04/1692
+
+Died:
+17/04/1692
+
+Father:
+117
+
+Mother:
+49
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+458
+
+Pre-name style:
+.
+
+Name:
+Sophia Dorothea
+
+Post-name style:
+of Hanover
+
+URL:
+http://en.wikipedia.org/wiki/Sophia_Dorothea_of_Hanover
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Queen_Sophie_Dorothea_of_Prussia.jpg/220px-Queen_Sophie_Dorothea_of_Prussia.jpg
+
+Born:
+26/03/1687
+
+Died:
+28/06/1757
+
+Father:
+50
+
+Mother:
+118
+
+Spouses:
+1422
+.
+.
+
+
+
+ID:
+459
+
+Pre-name style:
+Princess
+
+Name:
+Anne
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Anne,_Princess_Royal_and_Princess_of_Orange
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Accama_Anna_van_Hannover.jpg/200px-Accama_Anna_van_Hannover.jpg
+
+Born:
+02/11/1709
+
+Died:
+12/01/1759
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+1436
+.
+.
+
+
+
+ID:
+460
+
+Pre-name style:
+Princess
+
+Name:
+Amelia
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Amelia_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Princess_Amellia_of_Great_Britain_%281711-1786%29_by_Jean%3DBaptiste_van_Loo.jpg/220px-Princess_Amellia_of_Great_Britain_%281711-1786%29_by_Jean%3DBaptiste_van_Loo.jpg
+
+Born:
+30/05/1711
+
+Died:
+31/10/1786
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+461
+
+Pre-name style:
+Princess
+
+Name:
+Caroline
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Caroline_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Princess_Caroline_Elizabeth_%281713-1757%29%2C_by_Jacopo_Amigoni.jpg/220px-Princess_Caroline_Elizabeth_%281713-1757%29%2C_by_Jacopo_Amigoni.jpg
+
+Born:
+10/06/1713
+
+Died:
+28/11/1757
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+462
+
+Pre-name style:
+.
+
+Name:
+son
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/George_II_of_Great_Britain#Issue
+
+Picture:
+.
+
+Born:
+30/11/1716
+
+Died:
+30/11/1716
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+463
+
+Pre-name style:
+Prince
+
+Name:
+George William
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Prince_George_William_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Prince_George_William_by_John_Simon.jpg/170px-Prince_George_William_by_John_Simon.jpg
+
+Born:
+13/11/1717
+
+Died:
+17/02/1718
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+464
+
+Pre-name style:
+Prince
+
+Name:
+William
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Prince_William,_Duke_of_Cumberland
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Cumberland-Reynolds.jpg/220px-Cumberland-Reynolds.jpg
+
+Born:
+26/04/1721
+
+Died:
+31/10/1765
+
+Father:
+51
+
+Mother:
+119
+
+Style:
+Duke of Cumberland
+Territories:
+Cumberland
+
+From:
+?
+To:
+?
+
+
+ID:
+465
+
+Pre-name style:
+Princess
+
+Name:
+Mary
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Mary_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/PrincessMaryofGreatBritain_LandgravineofHesse.jpg/220px-PrincessMaryofGreatBritain_LandgravineofHesse.jpg
+
+Born:
+05/03/1723
+
+Died:
+14/01/1772
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+1440
+.
+.
+
+
+
+ID:
+466
+
+Pre-name style:
+Princess
+
+Name:
+Louise
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Louise_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Louise_of_Great_Britain%2C_Queen_of_Denmark_and_Norway.jpg/220px-Louise_of_Great_Britain%2C_Queen_of_Denmark_and_Norway.jpg
+
+Born:
+107/12/1724
+
+Died:
+19/12/1751
+
+Father:
+51
+
+Mother:
+119
+
+Spouses:
+1444
+.
+.
+
+
+
+ID:
+467
+
+Pre-name style:
+.
+
+Name:
+Charlotte
+
+Post-name style:
+Princess Royal
+
+URL:
+http://en.wikipedia.org/wiki/Charlotte,_Princess_Royal
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Charlotte_Mathilde_von_England.jpg/220px-Charlotte_Mathilde_von_England.jpg
+
+Born:
+29/09/1766
+
+Died:
+05/10/1828
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1450
+.
+.
+
+
+
+ID:
+468
+
+Pre-name style:
+Princess
+
+Name:
+Augusta Sophia
+
+Post-name style:
+of the United Kingdom
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Augusta_Sophia_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Princess_Augusta%2C_c.1802.jpg/220px-Princess_Augusta%2C_c.1802.jpg
+
+Born:
+08/11/1768
+
+Died:
+22/09/1840
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+469
+
+Pre-name style:
+Princess
+
+Name:
+Elizabeth
+
+Post-name style:
+of the United Kingdom
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Elizabeth_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Princess_elizabeth_of_the_united_kingdom.jpg/187px-Princess_elizabeth_of_the_united_kingdom.jpg
+
+Born:
+22/05/1770
+
+Died:
+10/01/1840
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1451
+.
+.
+
+
+
+ID:
+470
+
+Pre-name style:
+King
+
+Name:
+Ernest Augustus
+
+Post-name style:
+of Hanover
+
+URL:
+http://en.wikipedia.org/wiki/Ernest_Augustus_I_of_Hanover
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Ernest_Augustus_I_of_Hanover.PNG/220px-Ernest_Augustus_I_of_Hanover.PNG
+
+Born:
+05/06/1771
+
+Died:
+18/11/1851
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1452
+.
+.
+
+Style:
+King of Hanover
+Territories:
+Hanover
+
+From:
+20/06/1837
+To:
+18/11/1851
+
+
+ID:
+471
+
+Pre-name style:
+Prince
+
+Name:
+Augustus Frederick
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Augustus_Frederick,_Duke_of_Sussex
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Prince_Augustus_Frederick%2C_Duke_of_Sussex_by_Guy_Head.jpg/220px-Prince_Augustus_Frederick%2C_Duke_of_Sussex_by_Guy_Head.jpg
+
+Born:
+27/01/1773
+
+Died:
+21/04/1843
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1454
+.
+.
+
+1457
+.
+.
+
+Style:
+Duke of Sussex
+Territories:
+Sussex
+
+From:
+?
+To:
+?
+
+
+ID:
+472
+
+Pre-name style:
+Prince
+
+Name:
+Adolphus Frederick
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Adolphus,_Duke_of_Cambridge
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Adolphus_Frederick_Duke_of_Cambridge.JPG/187px-Adolphus_Frederick_Duke_of_Cambridge.JPG
+
+Born:
+24/02/1774
+
+Died:
+08/07/1850
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1170
+.
+.
+
+Style:
+Duke of Cambridge
+Territories:
+Cambridge
+
+From:
+?
+To:
+?
+
+
+ID:
+473
+
+Pre-name style:
+Princess
+
+Name:
+Mary
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Mary,_Duchess_of_Gloucester_and_Edinburgh
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Cuii_pec_pd0024_large.jpg/220px-Cuii_pec_pd0024_large.jpg
+
+Born:
+25/04/1776
+
+Died:
+30/04/1857
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1460
+.
+.
+
+
+
+ID:
+474
+
+Pre-name style:
+Princess
+
+Name:
+Sophia
+
+Post-name style:
+of the United Kingdom
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Sophia_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/en/thumb/e/e8/Princess_Sophia_%281777-1848%29.jpg/200px-Princess_Sophia_%281777-1848%29.jpg
+
+Born:
+03/11/1777
+
+Died:
+27/05/1848
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+475
+
+Pre-name style:
+Prince
+
+Name:
+Octavius
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Octavius_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Octavius_of_Great_Britain_-_West_1783.jpg/220px-Octavius_of_Great_Britain_-_West_1783.jpg
+
+Born:
+23/02/1779
+
+Died:
+03/05/1783
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+476
+
+Pre-name style:
+Prince
+
+Name:
+Alfred
+
+Post-name style:
+of Great Britain
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Alfred_of_Great_Britain
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Prince_Alfred_of_Great_Britain.jpg/220px-Prince_Alfred_of_Great_Britain.jpg
+
+Born:
+22/09/1780
+
+Died:
+20/08/1782
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+477
+
+Pre-name style:
+Princess
+
+Name:
+Amelia
+
+Post-name style:
+of the United Kingdom
+
+URL:
+http://en.wikipedia.org/wiki/Princess_Amelia_of_the_United_Kingdom
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/9/9a/Princess_Amelia_of_the_United_Kingdom_%281%29.jpg
+
+Born:
+07/08/1783
+
+Died:
+02/11/1810
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+478
+
+Pre-name style:
+Prince
+
+Name:
+Frederick
+
+Post-name style:
+.
+
+URL:
+http://en.wikipedia.org/wiki/Prince_Frederick,_Duke_of_York_and_Albany
+
+Picture:
+http://upload.wikimedia.org/wikipedia/commons/thumb/b/b5/Frederick%2C_Duke_of_York_in_Garter_Robes.jpg/200px-Frederick%2C_Duke_of_York_in_Garter_Robes.jpg
+
+Born:
+16/08/1763
+
+Died:
+05/01/1827
+
+Father:
+52
+
+Mother:
+120
+
+Spouses:
+1461
+.
+.
+
+Style:
+Duke of York and Albany
+Territories:
+Albany
+York
+
+From:
+?
+To:
+?
+
+
+ID:
+479
+
+Pre-name style:
+Princess
+
+Name:
+Charlotte
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+07/01/1796
+
+Died:
+06/11/1817
+
+Father:
+53
+
+Mother:
+121
+
+Spouses:
+Prince Leopold
+.
+.
+
+
+
+ID:
+480
+
+Pre-name style:
+.
+
+Name:
+Charlotte Augusta Louisa
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+27/03/1819
+
+Died:
+27/03/1819
+
+Father:
+54
+
+Mother:
+122
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+481
+
+Pre-name style:
+.
+
+Name:
+child
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+05/09/1819
+
+Died:
+05/09/1819
+
+Father:
+54
+
+Mother:
+122
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+482
+
+Pre-name style:
+.
+
+Name:
+Elizabeth Georgiana Adelaide
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/12/1820
+
+Died:
+04/03/1821
+
+Father:
+54
+
+Mother:
+122
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+483
+
+Pre-name style:
+.
+
+Name:
+child
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+23/04/1822
+
+Died:
+23/04/1822
+
+Father:
+54
+
+Mother:
+122
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+484
+
+Pre-name style:
+.
+
+Name:
+twins
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1824
+
+Died:
+1824
+
+Father:
+54
+
+Mother:
+122
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+485
+
+Pre-name style:
+.
+
+Name:
+Victoria Adelaide Mary Louisa
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/11/1840
+
+Died:
+05/08/1901
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+486
+
+Pre-name style:
+.
+
+Name:
+Alice Maud Mary
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/04/1843
+
+Died:
+14/12/1878
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+487
+
+Pre-name style:
+.
+
+Name:
+Alfred Ernest Albert
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+06/08/1844
+
+Died:
+30/07/1900
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+Maria Alexandrovna
+.
+.
+
+Style:
+Duke of Sake-Coburg and Gotha
+Territories:
+Saxe-Coburg-Gotha
+
+From:
+1893
+To:
+1900
+
+
+ID:
+488
+
+Pre-name style:
+.
+
+Name:
+Helena Augusta Victoria
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/05/1846
+
+Died:
+09/06/1923
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+Christian
+.
+.
+
+
+
+ID:
+489
+
+Pre-name style:
+.
+
+Name:
+Louise Caroline Alberta
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+18/03/1848
+
+Died:
+03/12/1939
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+John Campbell
+.
+.
+
+
+
+ID:
+490
+
+Pre-name style:
+.
+
+Name:
+Arthur William Patrick Albert
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+01/05/1850
+
+Died:
+16/01/1942
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+Louise Margaret
+.
+.
+
+Style:
+Duke of Connaught & Strathearn
+Territories:
+Connaught
+Strathearn
+
+From:
+
+To:
+
+
+
+ID:
+491
+
+Pre-name style:
+.
+
+Name:
+Leopold George Duncian Albert
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+07/04/1853
+
+Died:
+28/03/1884
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+Helena
+.
+.
+
+Style:
+Duke of Albany
+Territories:
+Albany
+
+From:
+
+To:
+
+
+
+ID:
+492
+
+Pre-name style:
+.
+
+Name:
+Beatrice Mary Victoria Feodore
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+14/04/1857
+
+Died:
+26/10/1944
+
+Father:
+123
+
+Mother:
+55
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+493
+
+Pre-name style:
+.
+
+Name:
+Albert Victor
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+08/01/1864
+
+Died:
+14/01/1892
+
+Father:
+56
+
+Mother:
+124
+
+Style:
+Duke of Clarence and Avondale
+Territories:
+Clarence
+Avondale
+
+From:
+
+To:
+
+
+
+ID:
+494
+
+Pre-name style:
+.
+
+Name:
+Louise Victoria Alexandra Dagmar
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+20/02/1867
+
+Died:
+04/01/1931
+
+Father:
+56
+
+Mother:
+124
+
+Spouses:
+Alexander Duff
+.
+.
+
+
+
+ID:
+495
+
+Pre-name style:
+.
+
+Name:
+Victoria Alexandra Olga Mary
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+01/07/1868
+
+Died:
+03/12/1935
+
+Father:
+56
+
+Mother:
+124
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+496
+
+Pre-name style:
+.
+
+Name:
+Maud Charlotte Mary Victoria
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+26/11/1869
+
+Died:
+20/11/1938
+
+Father:
+56
+
+Mother:
+124
+
+Spouses:
+Haakon VII
+.
+.
+
+
+
+ID:
+497
+
+Pre-name style:
+.
+
+Name:
+Alexander John
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+06/04/1871
+
+Died:
+07/04/1871
+
+Father:
+56
+
+Mother:
+124
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+498
+
+Pre-name style:
+.
+
+Name:
+Victoria Alexandra Alice Mary
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/04/1897
+
+Died:
+28/03/1965
+
+Father:
+57
+
+Mother:
+125
+
+Spouses:
+Henry Lascelles
+.
+.
+
+
+
+ID:
+499
+
+Pre-name style:
+.
+
+Name:
+Henry William Frederick Albert
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+31/03/1900
+
+Died:
+10/06/1974
+
+Father:
+57
+
+Mother:
+125
+
+Spouses:
+Alice Montague Douglas Scott
+.
+.
+
+Style:
+Duke of Gloucester
+Territories:
+Gloucester
+
+From:
+?
+To:
+?
+
+
+ID:
+500
+
+Pre-name style:
+.
+
+Name:
+George Edward Alexander Edmund
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+20/12/1902
+
+Died:
+25/08/1942
+
+Father:
+57
+
+Mother:
+125
+
+Spouses:
+Marina
+.
+.
+
+Style:
+Duke of Kent
+Territories:
+Kent
+
+From:
+?
+To:
+?
+
+
+ID:
+501
+
+Pre-name style:
+.
+
+Name:
+John Charles Francis
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/07/1905
+
+Died:
+18/01/1919
+
+Father:
+57
+
+Mother:
+125
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+502
+
+Pre-name style:
+.
+
+Name:
+Margaret Rose
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/08/1930
+
+Died:
+09/02/2002
+
+Father:
+59
+
+Mother:
+127
+
+Spouses:
+Antony armstrong-Jones
+.
+.
+
+
+
+ID:
+503
+
+Pre-name style:
+.
+
+Name:
+Charles Philip Arthur George
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+14/11/1948
+
+Died:
+present
+
+Father:
+60
+
+Mother:
+226
+
+Spouses:
+Diana Spencer
+.
+.
+
+Camilla Shand
+.
+.
+
+Style:
+Duke of Rothsay, Prince of Wales
+Territories:
+Rothsay
+Wales
+
+From:
+?
+To:
+?
+
+
+ID:
+504
+
+Pre-name style:
+.
+
+Name:
+Anne Elizabeth Alice Louise
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+15/08/1950
+
+Died:
+present
+
+Father:
+60
+
+Mother:
+226
+
+Spouses:
+Mark Phillips
+.
+.
+
+ Timothy Laurence
+.
+.
+
+
+
+ID:
+505
+
+Pre-name style:
+.
+
+Name:
+Andrew Albert Christian Edward 
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/02/1960
+
+Died:
+present
+
+Father:
+60
+
+Mother:
+226
+
+Spouses:
+Sarah Ferguson
+.
+.
+
+
+
+ID:
+506
+
+Pre-name style:
+.
+
+Name:
+Edward Antony Richard Louis
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/03/1964
+
+Died:
+present
+
+Father:
+60
+
+Mother:
+226
+
+Spouses:
+Sophie Rhys-Jones
+.
+.
+
+
+
+ID:
+507
+
+Pre-name style:
+King
+
+Name:
+Harald
+
+Post-name style:
+'Bluetooth' Gormsson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c935
+
+Died:
+986
+
+Father:
+Gorm
+
+Mother:
+Thyra
+
+Spouses:
+508
+.
+.
+
+Tove
+.
+.
+
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+c958
+To:
+c986
+Style:
+King of Norway
+Territories:
+Norway
+
+From:
+c970
+To:
+C975/986
+
+
+ID:
+508
+
+Pre-name style:
+.
+
+Name:
+Gyrid
+
+Post-name style:
+of Sweden
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Olof II
+
+Mother:
+Ingeborg Thrandsdotter
+
+Spouses:
+507
+.
+.
+
+
+
+ID:
+509
+
+Pre-name style:
+.
+
+Name:
+Sigeferth
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1015
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+74
+.
+.
+
+
+
+ID:
+510
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+11/09/1188
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+511
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+24/12/1193
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+Matilda St Hilary de Harcouet
+.
+.
+
+Style:
+Earl of Arundel
+Territories:
+Arundel
+
+From:
+?
+To:
+?
+
+
+ID:
+512
+
+Pre-name style:
+.
+
+Name:
+Olivia
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+513
+
+Pre-name style:
+.
+
+Name:
+Reynor
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+514
+
+Pre-name style:
+.
+
+Name:
+Geoffrey
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+515
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+516
+
+Pre-name style:
+.
+
+Name:
+Agatha
+
+Post-name style:
+d'Aubigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+186
+
+Mother:
+81
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+517
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1145
+
+Died:
+11/03/1198
+
+Father:
+194
+
+Mother:
+85
+
+Spouses:
+Henry I of Champagne
+.
+.
+
+
+
+ID:
+518
+
+Pre-name style:
+.
+
+Name:
+Alix
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+07-08/1150
+
+Died:
+1197-1198
+
+Father:
+194
+
+Mother:
+85
+
+Spouses:
+Theobald V of Blois
+.
+.
+
+
+
+ID:
+519
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1177
+
+Died:
+?
+
+Father:
+196
+
+Mother:
+86
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+520
+
+Pre-name style:
+.
+
+Name:
+Hugh
+
+Post-name style:
+XI of Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1221
+
+Died:
+06/04/1250
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+Yoland of Brittany
+.
+.
+
+Style:
+Count of Angauleme
+Territories:
+Angauleme
+
+From:
+1246
+To:
+1250
+Style:
+Count of La Marche
+Territories:
+La Marche
+
+From:
+1249
+To:
+1250
+
+
+ID:
+521
+
+Pre-name style:
+.
+
+Name:
+Aymer
+
+Post-name style:
+de Valence
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1222
+
+Died:
+05/12/1260
+
+Father:
+205
+
+Mother:
+89
+
+Style:
+Bishop of Winchester
+Territories:
+Winchester
+
+From:
+?
+To:
+?
+
+
+ID:
+522
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+de Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1223
+
+Died:
+1269
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+William II de Chavigny
+.
+.
+
+
+
+ID:
+523
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+de Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1224
+
+Died:
+09/02/1256
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+John de Warenne
+.
+.
+
+
+
+ID:
+524
+
+Pre-name style:
+.
+
+Name:
+Guy
+
+Post-name style:
+de Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1225
+
+Died:
+1264
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+525
+
+Pre-name style:
+.
+
+Name:
+Geoffrey
+
+Post-name style:
+de Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1226
+
+Died:
+1274
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+Jeanne
+.
+.
+
+
+
+ID:
+526
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+de Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1224
+
+Died:
+14/01/1300
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+Maurice IV
+.
+.
+
+ Geoffry de Rancon
+.
+.
+
+
+
+ID:
+527
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+de Valence
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1225-1230
+
+Died:
+16-18/05/1296
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+Jean de Munchensi
+.
+.
+
+Style:
+Earl of Pembroke
+Territories:
+Pembroke
+
+From:
+?
+To:
+?
+
+
+ID:
+528
+
+Pre-name style:
+.
+
+Name:
+Marguerite
+
+Post-name style:
+de Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1229
+
+Died:
+1288
+
+Father:
+205
+
+Mother:
+89
+
+Spouses:
+Raymond VII Toulouse
+.
+.
+
+ Aimery XI Thouars
+.
+.
+
+
+
+ID:
+529
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Valois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+13/09/1409
+
+Died:
+19/05/1432
+
+Father:
+219
+
+Mother:
+96
+
+Spouses:
+John II Alencon
+.
+.
+
+
+
+ID:
+530
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/08/1387
+
+Died:
+07/11/1388
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+531
+
+Pre-name style:
+.
+
+Name:
+daughter
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1388
+
+Died:
+1388
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+532
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+VI of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+24/12/1389
+
+Died:
+29/08/1442
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+Joan
+.
+.
+
+Style:
+Duke of Brittany and Count of Montfort
+Territories:
+Brittany
+Montfort
+
+From:
+1/11/1399
+To:
+29/08/1442
+
+
+ID:
+533
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+18/02/1391
+
+Died:
+18/12/1446
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+John I Alencon
+.
+.
+
+
+
+ID:
+534
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1392
+
+Died:
+13/04/1428
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+Alain IX
+.
+.
+
+
+
+ID:
+535
+
+Pre-name style:
+Duke
+
+Name:
+Arthur
+
+Post-name style:
+III of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+24/08/1393
+
+Died:
+26/12/1458
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+Margaret of Burgundy
+.
+.
+
+Style:
+Duke of Brittany
+Territories:
+Brittany22/09/1457
+
+From:
+26/12/1458
+To:
+
+
+
+ID:
+536
+
+Pre-name style:
+.
+
+Name:
+Gilles
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1394
+
+Died:
+19/07/1412
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+537
+
+Pre-name style:
+.
+
+Name:
+Richard 
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1396
+
+Died:
+02/06/1438
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+Marguerite
+.
+.
+
+Style:
+Count of Montfort, Vertus and Etampes
+Territories:
+
+From:
+?
+To:
+?
+
+
+ID:
+538
+
+Pre-name style:
+.
+
+Name:
+Blanche 
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1397
+
+Died:
+?1419
+
+Father:
+222
+
+Mother:
+98
+
+Spouses:
+John IV Argmagnac
+.
+.
+
+
+
+ID:
+539
+
+Pre-name style:
+.
+
+Name:
+Jasper
+
+Post-name style:
+Tudor
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1431
+
+Died:
+21-26/12/1495
+
+Father:
+223
+
+Mother:
+99
+
+Spouses:
+Catherine Woodville
+.
+.
+
+Style:
+Duke of Bedford and Earl of Pembroke
+Territories:
+Bedford
+Pembroke
+
+From:
+?
+To:
+?
+
+
+ID:
+540
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Tudor
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+223
+
+Mother:
+99
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+541
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Tudor
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+223
+
+Mother:
+99
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+542
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Grey
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1455
+
+Died:
+20/09/1501
+
+Father:
+235
+
+Mother:
+101
+
+Spouses:
+Anne Holland
+.
+.
+
+ Cecily Bonville
+.
+.
+
+Style:
+Marquess of Dorset
+Territories:
+Dorset
+
+From:
+?
+To:
+?
+
+
+ID:
+543
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Grey
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1457
+
+Died:
+25/06/1483
+
+Father:
+235
+
+Mother:
+101
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+544
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Seymour
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+30/08/1548
+
+Died:
+c. 1550
+
+Father:
+254
+
+Mother:
+109
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+545
+
+Pre-name style:
+.
+
+Name:
+Carlos
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+08/07/1545
+
+Died:
+24/07/1565
+
+Father:
+111
+
+Mother:
+259
+
+Style:
+Prince of Asturias
+Territories:
+Asturias
+
+From:
+?
+To:
+?
+
+
+ID:
+546
+
+Pre-name style:
+Infanta
+
+Name:
+Isabella Clara Eugenia
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/08/1566
+
+Died:
+01/12/1633
+
+Father:
+111
+
+Mother:
+260
+
+Spouses:
+Albert VII
+.
+.
+
+Style:
+Duchess of Lothier, Brabant, Limburg, Luxembourg and Guelders, Margravine of Namur,Countess Palatine of Burgundy, Countess of Artois,Flanders,Charolais and Hainaut
+Territories:
+lots
+
+From:
+?
+To:
+?
+
+
+ID:
+547
+
+Pre-name style:
+Infanta
+
+Name:
+Catherine Michelle
+
+Post-name style:
+of Spain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/10/1567
+
+Died:
+06/11/1597
+
+Father:
+111
+
+Mother:
+260
+
+Spouses:
+Charles Emmanuel I of Savoy
+.
+.
+
+
+
+ID:
+548
+
+Pre-name style:
+.
+
+Name:
+Ferdinand
+
+Post-name style:
+of Austria
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+04/12/1571
+
+Died:
+18/10/1578
+
+Father:
+111
+
+Mother:
+261
+
+Style:
+Prince of Asturias
+Territories:
+Asturias
+
+From:
+?
+To:
+?
+
+
+ID:
+549
+
+Pre-name style:
+.
+
+Name:
+Charles Laurence
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/08/1573
+
+Died:
+30/07/1575
+
+Father:
+111
+
+Mother:
+261
+
+Style:
+Prince of Asturias and Portugal
+Territories:
+Asturias
+Portugal
+
+From:
+?
+To:
+?
+
+
+ID:
+550
+
+Pre-name style:
+.
+
+Name:
+Diego Felix
+
+Post-name style:
+of Austria
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+15/08/1575
+
+Died:
+21/11/1582
+
+Father:
+111
+
+Mother:
+261
+
+
+
+ID:
+551
+
+Pre-name style:
+King
+
+Name:
+Philip 
+
+Post-name style:
+III of Spain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+14/04/1578
+
+Died:
+31/03/1621
+
+Father:
+111
+
+Mother:
+261
+
+Spouses:
+Margaret of Austria
+.
+.
+
+Style:
+King of Spain and Portugal
+Territories:
+Spain
+Portugal
+
+From:
+13/09/1598
+To:
+31/03/1621
+
+
+ID:
+552
+
+Pre-name style:
+Duke
+
+Name:
+Richard
+
+Post-name style:
+II of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+978-983
+
+Died:
+1026
+
+Father:
+170
+
+Mother:
+171
+
+Spouses:
+553
+.
+.
+
+ Poppa
+.
+.
+
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+?
+To:
+?
+
+
+ID:
+553
+
+Pre-name style:
+.
+
+Name:
+Judith
+
+Post-name style:
+of Brittany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+982
+
+Died:
+1017
+
+Father:
+Conan I
+
+Mother:
+Ermengarde
+
+Spouses:
+552
+.
+.
+
+
+
+ID:
+554
+
+Pre-name style:
+.
+
+Name:
+Adelaide 
+
+Post-name style:
+of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1030
+
+Died:
+?1092
+
+Father:
+128
+
+Mother:
+129
+
+Spouses:
+Enguerrand II
+.
+.
+
+ Lambert II
+.
+.
+
+ Odo
+.
+.
+
+Style:
+Countess of Aumale
+Territories:
+Aumale
+
+From:
+?
+To:
+?
+
+
+ID:
+555
+
+Pre-name style:
+
+
+Name:
+Odo
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1030
+
+Died:
+1097
+
+Father:
+558
+
+Mother:
+129
+
+Style:
+Earl of Kent
+Territories:
+Kent
+
+From:
+?
+To:
+?
+
+
+ID:
+556
+
+Pre-name style:
+Duke
+
+Name:
+Richard
+
+Post-name style:
+III of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1001
+
+Died:
+1027
+
+Father:
+552
+
+Mother:
+Judith
+
+Spouses:
+181
+.
+.
+
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+1026
+To:
+1027
+
+
+ID:
+557
+
+Pre-name style:
+.
+
+Name:
+Fulbert
+
+Post-name style:
+of Falaise
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+
+
+ID:
+558
+
+Pre-name style:
+.
+
+Name:
+Herluin
+
+Post-name style:
+de Conteville
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1001
+
+Died:
+1066
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+129
+.
+.
+
+Fredesendis
+.
+.
+
+
+
+ID:
+559
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1031
+
+Died:
+1090
+
+Father:
+558
+
+Mother:
+129
+
+Spouses:
+Matilda 
+.
+.
+
+ Almondis
+.
+.
+
+Style:
+Count of Mortain, Earl of Conwall
+Territories:
+Mortain
+Cornwall
+
+From:
+?
+To:
+?
+
+
+ID:
+560
+
+Pre-name style:
+.
+
+Name:
+Theobald
+
+Post-name style:
+III of Blois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1012
+
+Died:
+1089
+
+Father:
+Odo II
+
+Mother:
+Ermengarde
+
+Spouses:
+561
+.
+.
+
+Style:
+Count of Blois, Meaux and Troyes
+Territories:
+Blois
+Meaux
+Troyes
+
+From:
+?
+To:
+?
+
+
+ID:
+561
+
+Pre-name style:
+.
+
+Name:
+Garsende
+
+Post-name style:
+of Maine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Herber I
+
+Mother:
+?
+
+Spouses:
+560
+.
+.
+
+
+
+ID:
+562
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1085
+
+Died:
+c1150
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Agnes
+.
+.
+
+Style:
+Count of Blois and Chartres
+Territories:
+Blois
+Chartres
+
+From:
+1102
+To:
+1107
+
+
+ID:
+563
+
+Pre-name style:
+.
+
+Name:
+Theobald
+
+Post-name style:
+II of Champagne
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1090
+
+Died:
+1152
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Matilda
+.
+.
+
+Style:
+Count of Blois and Chartres
+Territories:
+Blois
+Chartres
+
+From:
+1102
+To:
+1152
+Style:
+Count of Champagne and Brie
+Territories:
+Champagne
+Brie
+
+From:
+1125
+To:
+1152
+
+
+ID:
+564
+
+Pre-name style:
+.
+
+Name:
+Ode (Humbert)
+
+Post-name style:
+of Blois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+130
+
+Mother:
+131
+
+
+
+ID:
+565
+
+Pre-name style:
+.
+
+Name:
+Philip
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1100
+
+Father:
+130
+
+Mother:
+131
+
+Style:
+Bishop of Chalons-sur-Marne
+Territories:
+Chalons-sur-Marne
+
+From:
+?
+To:
+?
+
+
+ID:
+566
+
+Pre-name style:
+.
+
+Name:
+Lucia-Mahout
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+25/11/1120
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Richard d'Aranches
+.
+.
+
+
+
+ID:
+567
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Hugh de Puiset
+.
+.
+
+
+
+ID:
+568
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1147
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Raoul I
+.
+.
+
+
+
+ID:
+569
+
+Pre-name style:
+.
+
+Name:
+Alix
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1145
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Renaud II of Joigni
+.
+.
+
+
+
+ID:
+570
+
+Pre-name style:
+.
+
+Name:
+Adela
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+130
+
+Mother:
+131
+
+Spouses:
+Milo II of Montlhery
+.
+.
+
+
+
+ID:
+571
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1101
+
+Died:
+1171
+
+Father:
+130
+
+Mother:
+131
+
+Style:
+Bishop of Winchester
+Territories:
+Winchester
+
+From:
+?
+To:
+?
+
+
+ID:
+572
+
+Pre-name style:
+.
+
+Name:
+Edward 
+
+Post-name style:
+of Angoleme
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+27/01/1365
+
+Died:
+c.20/09/1370
+
+Father:
+132
+
+Mother:
+133
+
+
+
+ID:
+573
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Wake
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1297
+
+Died:
+29/09/1349
+
+Father:
+John Wake
+
+Mother:
+Joan de Fiennes
+
+Spouses:
+John IV Comyn
+.
+.
+
+390
+.
+.
+
+John de Forbes
+.
+.
+
+Style:
+Countess of Kent, Baroness of Liddell
+Territories:
+Kent
+Liddel
+
+From:
+?
+To:
+?
+
+
+ID:
+574
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1314
+
+Died:
+26/12/1360
+
+Father:
+Robert
+
+Mother:
+Maud la Zouche
+
+Spouses:
+133
+.
+.
+
+
+
+ID:
+575
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1350-1354
+
+Died:
+25/04/1397
+
+Father:
+574
+
+Mother:
+133
+
+Spouses:
+581
+.
+.
+
+Style:
+Earl of Kent
+Territories:
+Kent
+
+From:
+?
+To:
+?
+
+
+ID:
+576
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1352
+
+Died:
+16/01/1400
+
+Father:
+574
+
+Mother:
+133
+
+Spouses:
+584
+.
+.
+
+Style:
+Duke of Exeter, Earl of Huntingdon
+Territories:
+Exeter
+Huntingdon
+
+From:
+?
+To:
+?
+
+
+ID:
+577
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1350
+
+Died:
+1384
+
+Father:
+574
+
+Mother:
+133
+
+Spouses:
+222
+.
+.
+
+
+
+ID:
+578
+
+Pre-name style:
+.
+
+Name:
+Maud
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1359
+
+Died:
+1391
+
+Father:
+574
+
+Mother:
+133
+
+Spouses:
+Hugh Courtenay
+.
+.
+
+ Waleran III
+.
+.
+
+
+
+ID:
+579
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1354
+
+Died:
+?
+
+Father:
+574
+
+Mother:
+133
+
+
+
+ID:
+580
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+de Montacute
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/06/1328
+
+Died:
+03/06/1397
+
+Father:
+William Montacute
+
+Mother:
+Catherine Gradison
+
+Spouses:
+133
+.
+.
+
+ Elizabeth de Mohun
+.
+.
+
+Style:
+Earl of Salisbury
+Territories:
+Salisbury
+
+From:
+30/01/1341
+To:
+03/06/1397
+
+
+ID:
+581
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+FitzAlan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1350
+
+Died:
+17/03/1416
+
+Father:
+945
+
+Mother:
+946
+
+Spouses:
+575
+.
+.
+
+
+
+ID:
+582
+
+Pre-name style:
+.
+
+Name:
+Philippa
+
+Post-name style:
+of Lancaster
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+31/03/1360
+
+Died:
+19/07/1415
+
+Father:
+134
+
+Mother:
+135
+
+Spouses:
+John I of Portugal
+.
+.
+
+
+
+ID:
+583
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Lancaster
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1362
+
+Died:
+1365
+
+Father:
+134
+
+Mother:
+135
+
+
+
+ID:
+584
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Lancaster
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?21/02/1363
+
+Died:
+24/11/1426
+
+Father:
+134
+
+Mother:
+135
+
+Spouses:
+John Hastings
+.
+.
+
+576
+.
+.
+
+ John Cromwell
+.
+.
+
+
+
+ID:
+585
+
+Pre-name style:
+.
+
+Name:
+Edward 
+
+Post-name style:
+of Lancaster
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1365
+
+Died:
+1365
+
+Father:
+134
+
+Mother:
+135
+
+
+
+ID:
+586
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Lancaster
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1366
+
+Died:
+1367
+
+Father:
+134
+
+Mother:
+135
+
+
+
+ID:
+587
+
+Pre-name style:
+.
+
+Name:
+Isabel 
+
+Post-name style:
+of Lancaster
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1368
+
+Died:
+1368
+
+Father:
+134
+
+Mother:
+135
+
+
+
+ID:
+588
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1354
+
+Died:
+24/03/1394
+
+Father:
+Peter of Castile
+
+Mother:
+Maria de Padilla
+
+Spouses:
+134
+.
+.
+
+
+
+ID:
+589
+
+Pre-name style:
+.
+
+Name:
+Catherine 
+
+Post-name style:
+of Lancaster
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+-192383
+
+Died:
+-175884
+
+Father:
+134
+
+Mother:
+588
+
+Spouses:
+Henry III of Castile
+.
+.
+
+
+
+ID:
+590
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Plantagenet
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1374
+
+Died:
+1375
+
+Father:
+134
+
+Mother:
+588
+
+
+
+ID:
+591
+
+Pre-name style:
+.
+
+Name:
+Katherine
+
+Post-name style:
+Swynford
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Payne de Roet
+
+Mother:
+?
+
+Spouses:
+Hugh Swynford
+.
+.
+
+134
+.
+.
+
+
+
+ID:
+592
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1377
+
+Died:
+11/04/1447
+
+Father:
+134
+
+Mother:
+591
+
+Style:
+Bishop of Winchester
+Territories:
+Winchester
+
+From:
+?
+To:
+?
+
+
+ID:
+593
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1377
+
+Died:
+C31/12/1426
+
+Father:
+134
+
+Mother:
+591
+
+Spouses:
+Margaret Neville
+.
+.
+
+
+
+ID:
+594
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+Beaufort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1379
+
+Died:
+-167684
+
+Father:
+134
+
+Mother:
+591
+
+Spouses:
+Robert Ferrers
+.
+.
+
+ Ralph de Neville
+.
+.
+
+
+
+ID:
+595
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+of Grosmont
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1310
+
+Died:
+23/03/1361
+
+Father:
+Henry
+
+Mother:
+Maud Chaworth
+
+Spouses:
+596
+.
+.
+
+Style:
+Duke of Lancaster, Earl of Leicester and Lancaster
+Territories:
+Lancaster
+Leicester
+
+From:
+?
+To:
+?
+
+
+ID:
+596
+
+Pre-name style:
+.
+
+Name:
+Isabel 
+
+Post-name style:
+of Beaumont
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1320
+
+Died:
+1361
+
+Father:
+Henry
+
+Mother:
+Alice Comyn
+
+Spouses:
+595
+.
+.
+
+
+
+ID:
+597
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of York
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/08/1439
+
+Died:
+14/01/1476
+
+Father:
+136
+
+Mother:
+137
+
+Spouses:
+Henry Holland
+.
+.
+
+Thomas St Leger
+.
+.
+
+
+
+ID:
+598
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+of York
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/05/1443
+
+Died:
+30/12/1460
+
+Father:
+136
+
+Mother:
+137
+
+Style:
+Earl of Rutland
+Territories:
+Rutland
+
+From:
+?
+To:
+?
+
+
+ID:
+599
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of York
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/04/1444
+
+Died:
+c1503
+
+Father:
+136
+
+Mother:
+137
+
+Spouses:
+John de la Pole
+.
+.
+
+
+
+ID:
+600
+
+Pre-name style:
+.
+
+Name:
+Margaret 
+
+Post-name style:
+of York
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+03/05/1446
+
+Died:
+23/11/1503
+
+Father:
+136
+
+Mother:
+137
+
+Spouses:
+Charles the Bold
+.
+.
+
+
+
+ID:
+601
+
+Pre-name style:
+.
+
+Name:
+George
+
+Post-name style:
+Plantagenet
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/10/1449
+
+Died:
+18/02/1478
+
+Father:
+136
+
+Mother:
+137
+
+Spouses:
+Isabella Neville
+.
+.
+
+Style:
+Duke of Clarence
+Territories:
+Clarence
+
+From:
+?
+To:
+?
+
+
+ID:
+602
+
+Pre-name style:
+.
+
+Name:
+Ralph
+
+Post-name style:
+Neville
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1364
+
+Died:
+21/10/1425
+
+Father:
+John Neville
+
+Mother:
+Maud Percy
+
+Spouses:
+Margaret Stafford
+.
+.
+
+ 594
+.
+.
+
+Style:
+Earl of Westmorland
+Territories:
+Westmorland
+
+From:
+?
+To:
+?
+
+
+ID:
+603
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+of Cambridge
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1409
+
+Died:
+02/10/1484
+
+Father:
+138
+
+Mother:
+139
+
+Spouses:
+Henry Bourchier
+.
+.
+
+
+
+ID:
+604
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+of York
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+138
+
+Mother:
+139
+
+
+
+ID:
+605
+
+Pre-name style:
+.
+
+Name:
+Maud
+
+Post-name style:
+Clifford
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Thomas
+
+Mother:
+Elizabeth
+
+Spouses:
+John Neville
+.
+.
+
+138
+.
+.
+
+
+
+ID:
+606
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+138
+
+Mother:
+605
+
+Spouses:
+Thomas Musgrave
+.
+.
+
+
+
+ID:
+607
+
+Pre-name style:
+.
+
+Name:
+Roger
+
+Post-name style:
+Mortimer
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+11/04/1374
+
+Died:
+20/07/1398
+
+Father:
+Edmund Mortimer
+
+Mother:
+Philippa
+
+Spouses:
+608
+.
+.
+
+
+
+ID:
+608
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+13/10/1370
+
+Died:
+10/1405
+
+Father:
+575
+
+Mother:
+581
+
+Spouses:
+607
+.
+.
+
+Edward Charleton
+.
+.
+
+
+
+ID:
+609
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+of Norwich
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1373
+
+Died:
+25/10/1415
+
+Father:
+140
+
+Mother:
+141
+
+Spouses:
+Beatrice
+.
+.
+
+Philippa
+.
+.
+
+Style:
+Duke of York
+Territories:
+York
+
+From:
+
+To:
+
+
+
+ID:
+610
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of York
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1374
+
+Died:
+28/11/1416
+
+Father:
+140
+
+Mother:
+141
+
+Spouses:
+Thomas le Despenser
+.
+.
+
+
+
+ID:
+611
+
+Pre-name style:
+Lady
+
+Name:
+Joan
+
+Post-name style:
+Holland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1380
+
+Died:
+12/04/1434
+
+Father:
+575
+
+Mother:
+581
+
+Spouses:
+140
+.
+.
+
+William Willoughby
+.
+.
+
+Henry Le Scrope
+.
+.
+
+Henry Bromflete
+.
+.
+
+
+
+ID:
+612
+
+Pre-name style:
+King
+
+Name:
+Peter
+
+Post-name style:
+'the Cruel' of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+30/08/1334
+
+Died:
+23/03/1369
+
+Father:
+Alfonso XI
+
+Mother:
+Maria of Portugal
+
+Spouses:
+613
+.
+.
+
+Blanche
+.
+.
+
+Juana de Castro
+.
+.
+
+Style:
+King of Castile and Leon
+Territories:
+Castile
+Leon
+
+From:
+1350
+To:
+1366
+Style:
+King of Castile and Leon
+Territories:
+Castile
+Leon
+
+From:
+1367
+To:
+1369
+
+
+ID:
+613
+
+Pre-name style:
+.
+
+Name:
+Maria
+
+Post-name style:
+de Padilla
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1334
+
+Died:
+07/1361
+
+Father:
+Juan Garcia
+
+Mother:
+Maria Gonzalez
+
+Spouses:
+612
+.
+.
+
+
+
+ID:
+614
+
+Pre-name style:
+.
+
+Name:
+Margaret Beauchamy
+
+Post-name style:
+of Bletso
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1410
+
+Died:
+?03/06/1482
+
+Father:
+John Beauchamp
+
+Mother:
+Edith Stourton
+
+Spouses:
+Oliver St John
+.
+.
+
+144
+.
+.
+
+Lionel de Welles
+.
+.
+
+
+
+ID:
+615
+
+Pre-name style:
+Sir
+
+Name:
+Henry
+
+Post-name style:
+Stafford
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1425
+
+Died:
+1471
+
+Father:
+Humphrey
+
+Mother:
+Anne Neville
+
+Spouses:
+143
+.
+.
+
+
+
+ID:
+616
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Stanley
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1435
+
+Died:
+29/07/1504
+
+Father:
+Thomas Stanley
+
+Mother:
+Joan Goushill
+
+Spouses:
+Eleanor Neville
+.
+.
+
+143
+.
+.
+
+Style:
+Earl of Derby
+Territories:
+Derby
+
+From:
+?
+To:
+?
+
+
+ID:
+617
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1401
+
+Died:
+25/11/1418
+
+Father:
+145
+
+Mother:
+409
+
+Style:
+Earl of Somerset
+Territories:
+Somerset
+
+From:
+?
+To:
+?
+
+
+ID:
+618
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1404
+
+Died:
+15/07/1445
+
+Father:
+145
+
+Mother:
+409
+
+Spouses:
+James I of Scotland
+.
+.
+
+ James Stewart
+.
+.
+
+
+
+ID:
+619
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1405
+
+Died:
+03/10/1431
+
+Father:
+145
+
+Mother:
+409
+
+Style:
+Count of Perche
+Territories:
+Perche
+
+From:
+?
+To:
+?
+
+
+ID:
+620
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1406
+
+Died:
+22/05/1455
+
+Father:
+145
+
+Mother:
+409
+
+Spouses:
+Eleanor Beauchamp
+.
+.
+
+
+
+ID:
+621
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Beaufort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1409
+
+Died:
+1449
+
+Father:
+145
+
+Mother:
+409
+
+Spouses:
+Thomas de Courtenay
+.
+.
+
+
+
+ID:
+622
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Grey
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/06/1477
+
+Died:
+10/10/1530
+
+Father:
+542
+
+Mother:
+Cecily Bonville
+
+Spouses:
+Eleanor St John
+.
+.
+
+ 623
+.
+.
+
+
+
+ID:
+623
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Wotton
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1487
+
+Died:
+1541
+
+Father:
+Robert Wotton
+
+Mother:
+Anne Belknap
+
+Spouses:
+William Medley
+.
+.
+
+622
+.
+.
+
+
+
+ID:
+624
+
+Pre-name style:
+Lady
+
+Name:
+Catherine
+
+Post-name style:
+Grey
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/08/1540
+
+Died:
+26/01/1568
+
+Father:
+146
+
+Mother:
+147
+
+Spouses:
+Henry Herbert
+.
+.
+
+ Edward Seymour
+.
+.
+
+
+
+ID:
+625
+
+Pre-name style:
+Lady
+
+Name:
+Mary
+
+Post-name style:
+Grey
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1545
+
+Died:
+20/04/1578
+
+Father:
+146
+
+Mother:
+147
+
+Spouses:
+Thomas Keys
+.
+.
+
+
+
+ID:
+626
+
+Pre-name style:
+.
+
+Name:
+Adrien
+
+Post-name style:
+Stokes
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+04/03/1519
+
+Died:
+30/11/1586
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+147
+.
+.
+
+ Anne Carew
+.
+.
+
+
+
+ID:
+627
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Stokes
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+16/07/1555
+
+Died:
+07/02/1556
+
+Father:
+626
+
+Mother:
+147
+
+
+
+ID:
+628
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1456
+
+Died:
+22/08/1485
+
+Father:
+William Brandon
+
+Mother:
+Elizabeth Wingfield
+
+Spouses:
+629
+.
+.
+
+
+
+ID:
+629
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Bruyn
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+07/03/1494
+
+Father:
+Henry Bruyn
+
+Mother:
+?
+
+Spouses:
+Thomas Tyrrell
+.
+.
+
+ 628
+.
+.
+
+ William Mallory
+.
+.
+
+
+
+ID:
+630
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Neville
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1466
+
+Died:
+?
+
+Father:
+John Neville
+
+Mother:
+Isabel Ingaldesthorpe
+
+Spouses:
+148
+.
+.
+
+Robert Downes
+.
+.
+
+
+
+ID:
+631
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Browne
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1511
+
+Father:
+Anthony Browne
+
+Mother:
+Eleanor Ughrted
+
+Spouses:
+148
+.
+.
+
+Robert Downes
+.
+.
+
+
+
+ID:
+632
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1507
+
+Died:
+01/1558
+
+Father:
+148
+
+Mother:
+631
+
+Spouses:
+Edward Grey
+.
+.
+
+Randal Haworth
+.
+.
+
+
+
+ID:
+633
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+02/06/1510
+
+Died:
+1540-1544
+
+Father:
+148
+
+Mother:
+631
+
+Spouses:
+Thomas Stanley
+.
+.
+
+
+
+ID:
+634
+
+Pre-name style:
+Lord
+
+Name:
+Henry
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+11/03/1516
+
+Died:
+1522
+
+Father:
+148
+
+Mother:
+149
+
+
+
+ID:
+635
+
+Pre-name style:
+Lady
+
+Name:
+Eleanor
+
+Post-name style:
+Clifford
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1519
+
+Died:
+27/09/1547
+
+Father:
+148
+
+Mother:
+149
+
+Spouses:
+Henry Clifford
+.
+.
+
+
+
+ID:
+636
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1523
+
+Died:
+01/03/1534
+
+Father:
+148
+
+Mother:
+149
+
+Style:
+Earl of Lincoln
+Territories:
+Lincoln
+
+From:
+?
+To:
+?
+
+
+ID:
+637
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+Willoughby
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/03/1519
+
+Died:
+19/09/1580
+
+Father:
+William Willoughby
+
+Mother:
+Maria de Salinas
+
+Spouses:
+148
+.
+.
+
+Richard Bertie
+.
+.
+
+
+
+ID:
+638
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+18/09/1535
+
+Died:
+14/07/1551
+
+Father:
+148
+
+Mother:
+637
+
+Style:
+Duke of Suffolk
+Territories:
+Suffolk
+
+From:
+22/08/1545
+To:
+14/07/1551
+
+
+ID:
+639
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+Brandon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1537-1538
+
+Died:
+14/07/1551
+
+Father:
+148
+
+Mother:
+637
+
+Style:
+Duke of Suffolk
+Territories:
+Suffolk
+
+From:
+14/07/1551
+To:
+14/07/1551
+
+
+ID:
+640
+
+Pre-name style:
+King
+
+Name:
+Louis 
+
+Post-name style:
+XII of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+27/07/1462
+
+Died:
+01/101/1515
+
+Father:
+219
+
+Mother:
+Marie of Cleves
+
+Spouses:
+Joan of France
+.
+.
+
+ Anne of Brittany
+.
+.
+
+ 149
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+07/04/1498
+To:
+01/01/1515
+
+
+ID:
+641
+
+Pre-name style:
+.
+
+Name:
+Matthew
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/09/1516
+
+Died:
+04/09/1571
+
+Father:
+John Stewart
+
+Mother:
+Elizabeth Stewart
+
+Spouses:
+152
+.
+.
+
+Style:
+Earl of Lennox
+Territories:
+Lennox
+
+From:
+?
+To:
+?
+
+
+ID:
+642
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+of Guise
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/11/1515
+
+Died:
+11/06/1560
+
+Father:
+Claude
+
+Mother:
+Antoinette de Bourbon
+
+Spouses:
+Louis II
+.
+.
+
+153
+.
+.
+
+
+
+ID:
+643
+
+Pre-name style:
+King
+
+Name:
+Francis
+
+Post-name style:
+II of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/01/1544
+
+Died:
+05/12/1560
+
+Father:
+1066
+
+Mother:
+1067
+
+Spouses:
+151
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+10/07/1559
+To:
+05/12/1560
+
+
+ID:
+644
+
+Pre-name style:
+.
+
+Name:
+James
+
+Post-name style:
+Hepburn
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c. 1534
+
+Died:
+14/04/1578
+
+Father:
+Patrick Hepburn
+
+Mother:
+Agnes Sinclair
+
+Spouses:
+Jean Gordon
+.
+.
+
+151
+.
+.
+
+ Anna Throndsen
+.
+.
+
+Style:
+Duke of Orkney, Earl of Bothwell
+Territories:
+Orkney
+Bothwell
+
+From:
+?
+To:
+?
+
+
+ID:
+645
+
+Pre-name style:
+.
+
+Name:
+Archibald
+
+Post-name style:
+Douglas
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C1489
+
+Died:
+22/01/1557
+
+Father:
+George Douglas
+
+Mother:
+Elizabeth Drummond
+
+Spouses:
+154
+.
+.
+
+Style:
+Earl of Angus
+Territories:
+Angus
+
+From:
+?
+To:
+?
+
+
+ID:
+646
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1555
+
+Died:
+1576
+
+Father:
+641
+
+Mother:
+152
+
+Style:
+Earl of Lennox
+Territories:
+Lennox
+
+From:
+?
+To:
+?
+
+
+ID:
+647
+
+Pre-name style:
+King
+
+Name:
+James
+
+Post-name style:
+IV of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/03/1473
+
+Died:
+09/09/1513
+
+Father:
+James III
+
+Mother:
+Margaret of Denmark
+
+Spouses:
+154
+.
+.
+
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+11/06/1488
+To:
+09/09/1513
+
+
+ID:
+648
+
+Pre-name style:
+.
+
+Name:
+Madeleine
+
+Post-name style:
+of Valois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/08/1520
+
+Died:
+07/07/1537
+
+Father:
+Francis I of France
+
+Mother:
+Claude
+
+Spouses:
+153
+.
+.
+
+
+
+ID:
+649
+
+Pre-name style:
+.
+
+Name:
+James
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/02/1507
+
+Died:
+27/02/1508
+
+Father:
+647
+
+Mother:
+154
+
+Style:
+Duke of Rothesay
+Territories:
+Rothesay
+
+From:
+?
+To:
+?
+
+
+ID:
+650
+
+Pre-name style:
+.
+
+Name:
+Arthur 
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+20/10/1509
+
+Died:
+14/07/1510
+
+Father:
+647
+
+Mother:
+154
+
+Style:
+Duke of Rothesay
+Territories:
+Rothesay
+
+From:
+?
+To:
+?
+
+
+ID:
+651
+
+Pre-name style:
+.
+
+Name:
+Alexander
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+30/04/1514
+
+Died:
+18/12/1515
+
+Father:
+647
+
+Mother:
+154
+
+Style:
+Duke of Ross
+Territories:
+Ross
+
+From:
+?
+To:
+?
+
+
+ID:
+652
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1495
+
+Died:
+1552
+
+Father:
+Andrew Stewart
+
+Mother:
+Margaret Kennedy
+
+Spouses:
+154
+.
+.
+
+ Janet Stewart
+.
+.
+
+
+
+ID:
+653
+
+Pre-name style:
+.
+
+Name:
+Dorothea
+
+Post-name style:
+Stewart
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+652
+
+Mother:
+154
+
+
+
+ID:
+654
+
+Pre-name style:
+.
+
+Name:
+Frederick
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+29/01/1585
+
+Died:
+14/03/1647
+
+Father:
+William the Silent
+
+Mother:
+Louise de Coligny
+
+Spouses:
+655
+.
+.
+
+Style:
+Prince of Orange
+Territories:
+Orange
+
+From:
+1625
+To:
+1647
+Style:
+Stadtholder of Holland,Zeeland,Utrecht,Guelders and Overijssel
+Territories:
+Holland
+Zeeland
+Utrecht
+Guelders
+Overijssel
+
+From:
+1625
+To:
+1647
+
+
+ID:
+655
+
+Pre-name style:
+.
+
+Name:
+Amalia
+
+Post-name style:
+of Solms-Braunfels
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+31/08/1602
+
+Died:
+08/09/1675
+
+Father:
+John Albert
+
+Mother:
+Agnes
+
+Spouses:
+654
+.
+.
+
+
+
+ID:
+656
+
+Pre-name style:
+.
+
+Name:
+George
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/11/1582
+
+Died:
+02/04/1641
+
+Father:
+William D. B-L
+
+Mother:
+Dorothea of Denmark
+
+Spouses:
+657
+.
+.
+
+Style:
+Duke of Brunswick-Lunenburg
+Territories:
+B-L
+
+From:
+?
+To:
+?
+
+
+ID:
+657
+
+Pre-name style:
+.
+
+Name:
+Anne Eleonore
+
+Post-name style:
+of Hess Darmstadt
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+30/07/1601
+
+Died:
+06/05/1659
+
+Father:
+Louis V H-D
+
+Mother:
+Magdalena von Brandenburg
+
+Spouses:
+656
+.
+.
+
+
+
+ID:
+658
+
+Pre-name style:
+.
+
+Name:
+Friedrich Augustus
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+03/08/1661
+
+Died:
+31/12/1690
+
+Father:
+157
+
+Mother:
+158
+
+
+
+ID:
+659
+
+Pre-name style:
+.
+
+Name:
+Maximiliam William 
+
+Post-name style:
+of Brunswick-Luneburg
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+13/12/1666
+
+Died:
+16/07/1726
+
+Father:
+157
+
+Mother:
+158
+
+
+
+ID:
+660
+
+Pre-name style:
+.
+
+Name:
+Sophia Charlotte
+
+Post-name style:
+of Hanover
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+30/10/1668
+
+Died:
+01/02/1705
+
+Father:
+157
+
+Mother:
+158
+
+Spouses:
+Frederick I of Prussia
+.
+.
+
+
+
+ID:
+661
+
+Pre-name style:
+.
+
+Name:
+Karl Philipp
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+03/10/1669
+
+Died:
+31/12/1690
+
+Father:
+157
+
+Mother:
+158
+
+
+
+ID:
+662
+
+Pre-name style:
+.
+
+Name:
+Christian Heinrich
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/09/1671
+
+Died:
+31/07/1703
+
+Father:
+157
+
+Mother:
+158
+
+
+
+ID:
+663
+
+Pre-name style:
+.
+
+Name:
+Ernest Augustus
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/09/1674
+
+Died:
+14/08/1728
+
+Father:
+157
+
+Mother:
+158
+
+Style:
+Duke of York and Albany
+Territories:
+York
+Albany
+
+From:
+?
+To:
+?
+
+
+ID:
+664
+
+Pre-name style:
+.
+
+Name:
+Frederick 
+
+Post-name style:
+V Elector Palatine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+26/08/1596
+
+Died:
+29/11/1632
+
+Father:
+Frederick IV
+
+Mother:
+Louise Juliana
+
+Spouses:
+159
+.
+.
+
+Style:
+Elector Palatine
+Territories:
+EP
+
+From:
+19/09/1610
+To:
+23/02/1623
+Style:
+King of Bohemia
+Territories:
+Bohemia
+
+From:
+26/08/1619
+To:
+08/11/1620
+
+
+ID:
+665
+
+Pre-name style:
+.
+
+Name:
+Henry Frederick
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+01/01/1614
+
+Died:
+07/01/1629
+
+Father:
+664
+
+Mother:
+159
+
+Style:
+Prince of the Palatinate
+Territories:
+PP
+
+From:
+?
+To:
+?
+
+
+ID:
+666
+
+Pre-name style:
+.
+
+Name:
+Charels Louis
+
+Post-name style:
+I Elector Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/12/1617
+
+Died:
+28/08/1680
+
+Father:
+664
+
+Mother:
+159
+
+Spouses:
+Charlotte of H-K
+.
+.
+
+ Marie Luise von Degenfeld
+.
+.
+
+Elizabeth Hollander
+.
+.
+
+Style:
+Elector Palatine
+Territories:
+EP
+
+From:
+?
+To:
+?
+
+
+ID:
+667
+
+Pre-name style:
+Princess
+
+Name:
+Elizabeth
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+26/12/1618
+
+Died:
+11/02/1680
+
+Father:
+664
+
+Mother:
+159
+
+
+
+ID:
+668
+
+Pre-name style:
+Prince
+
+Name:
+Rupert
+
+Post-name style:
+of the Rhine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/12/1619
+
+Died:
+29/11/1682
+
+Father:
+664
+
+Mother:
+159
+
+Style:
+Duke of Cumberland, Earl of Holderness
+Territories:
+Cumberland
+Holderness
+
+From:
+?
+To:
+?
+
+
+ID:
+669
+
+Pre-name style:
+Prince
+
+Name:
+Maurice
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/12/1620
+
+Died:
+09/1652
+
+Father:
+664
+
+Mother:
+159
+
+Style:
+Count Palatine of the Rhine
+Territories:
+CP
+
+From:
+?
+To:
+?
+
+
+ID:
+670
+
+Pre-name style:
+Princess
+
+Name:
+Louise Hollandine
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+18/04/1622
+
+Died:
+11/02/1709
+
+Father:
+664
+
+Mother:
+159
+
+
+
+ID:
+671
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/08/1624
+
+Died:
+24/12/1624
+
+Father:
+664
+
+Mother:
+159
+
+
+
+ID:
+672
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+05/10/1625
+
+Died:
+10/03/1663
+
+Father:
+664
+
+Mother:
+159
+
+Spouses:
+Anna Gonzaga
+.
+.
+
+
+
+ID:
+673
+
+Pre-name style:
+.
+
+Name:
+Henriette Marie
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/07/1626
+
+Died:
+18/09/1651
+
+Father:
+664
+
+Mother:
+159
+
+Spouses:
+Sigismund Rakoczi
+.
+.
+
+
+
+ID:
+674
+
+Pre-name style:
+.
+
+Name:
+Philip Frederick
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+16/09/1627
+
+Died:
+16/12/1650
+
+Father:
+664
+
+Mother:
+159
+
+
+
+ID:
+675
+
+Pre-name style:
+.
+
+Name:
+Charlotte
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/12/1628
+
+Died:
+14/01/1631
+
+Father:
+664
+
+Mother:
+159
+
+
+
+ID:
+676
+
+Pre-name style:
+.
+
+Name:
+Gustavus Adolphus
+
+Post-name style:
+of the Palatinate
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+14/01/1632
+
+Died:
+1641
+
+Father:
+664
+
+Mother:
+159
+
+
+
+ID:
+677
+
+Pre-name style:
+Prince
+
+Name:
+Edward Augustus
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/03/1739
+
+Died:
+17/09/1767
+
+Father:
+160
+
+Mother:
+161
+
+Style:
+Duke of York and Albany
+Territories:
+York
+Albany
+
+From:
+?
+To:
+?
+
+
+ID:
+678
+
+Pre-name style:
+Princess
+
+Name:
+Elizabeth Caroline
+
+Post-name style:
+of Great Britain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/01/1741
+
+Died:
+04/09/1759
+
+Father:
+160
+
+Mother:
+161
+
+
+
+ID:
+679
+
+Pre-name style:
+Prince
+
+Name:
+William Henry
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/11/1743
+
+Died:
+25/08/1805
+
+Father:
+160
+
+Mother:
+161
+
+Spouses:
+Maria Walpole
+.
+.
+
+Style:
+Duke of Gloucester and Edinburgh
+Territories:
+Gloucester
+Edinburgh
+
+From:
+?
+To:
+?
+
+
+ID:
+680
+
+Pre-name style:
+Prince
+
+Name:
+Henry Frederick
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+07/11/1745
+
+Died:
+18/09/1790
+
+Father:
+160
+
+Mother:
+161
+
+Spouses:
+Anne Horton
+.
+.
+
+
+
+ID:
+681
+
+Pre-name style:
+Princess
+
+Name:
+Louisa Anne
+
+Post-name style:
+of Great Britain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/03/1749
+
+Died:
+13/05/1768
+
+Father:
+160
+
+Mother:
+161
+
+
+
+ID:
+682
+
+Pre-name style:
+Prince
+
+Name:
+Frederick William
+
+Post-name style:
+of Great Britain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+13/05/1750
+
+Died:
+29/12/1765
+
+Father:
+160
+
+Mother:
+161
+
+
+
+ID:
+683
+
+Pre-name style:
+Princess
+
+Name:
+Caroline Matilda
+
+Post-name style:
+of Great Britain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+11/07/1751
+
+Died:
+10/05/1775
+
+Father:
+160
+
+Mother:
+161
+
+Spouses:
+Christian VII of Denmark
+.
+.
+
+
+
+ID:
+684
+
+Pre-name style:
+.
+
+Name:
+Frederick
+
+Post-name style:
+II of Saxe-Gotha-Altenburg
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+28/07/1676
+
+Died:
+23/03/1732
+
+Father:
+Frederick I S-G-A
+
+Mother:
+Magdalene Sibylee
+
+Spouses:
+685
+.
+.
+
+Style:
+Duke of Saxe-Gotha-Altenburg
+Territories:
+S-G-A
+
+From:
+?
+To:
+?
+
+
+ID:
+685
+
+Pre-name style:
+Princess
+
+Name:
+Magdalena Augusta
+
+Post-name style:
+of Anhalt-Zerbst
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+13/10/1679
+
+Died:
+11/10/1740
+
+Father:
+Karl of A-Z
+
+Mother:
+Sophia of S-W
+
+Spouses:
+684
+.
+.
+
+
+
+ID:
+686
+
+Pre-name style:
+.
+
+Name:
+Franz Frederick Anton
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+15/07/1750
+
+Died:
+09/12/1806
+
+Father:
+Ernst Frederick
+
+Mother:
+Sophia Antonia
+
+Spouses:
+Sophio of S-H
+.
+.
+
+ 687
+.
+.
+
+Style:
+Duke of Saxe-Coburg-Saalfeld
+Territories:
+S-C-S
+
+From:
+1800
+To:
+1806
+
+
+ID:
+687
+
+Pre-name style:
+Countess
+
+Name:
+Aughusta Caroline Sopie Reuss
+
+Post-name style:
+of Ebersdorf
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/01/1757
+
+Died:
+16/11/1831
+
+Father:
+Heinrich XXIV
+
+Mother:
+Karoline Ernestine
+
+Spouses:
+686
+.
+.
+
+
+
+ID:
+688
+
+Pre-name style:
+.
+
+Name:
+Emich Carl
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+27/09/1763
+
+Died:
+04/07/1814
+
+Father:
+Carl Friedrich
+
+Mother:
+Christiane Wilhelmine
+
+Spouses:
+Henrietta
+.
+.
+
+227
+.
+.
+
+Style:
+Prince of Leiningen
+Territories:
+Leiningen
+
+From:
+04/07/1814
+To:
+09/01/1807
+
+
+ID:
+689
+
+Pre-name style:
+.
+
+Name:
+Carl Friedrich Wilhelm Emich
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/09/1804
+
+Died:
+13/11/1856
+
+Father:
+688
+
+Mother:
+227
+
+Spouses:
+Maria Klebelsberg
+.
+.
+
+Style:
+Prince of Leiningen
+Territories:
+Leiningen
+
+From:
+04/07/1814
+To:
+13/11/1856
+
+
+ID:
+690
+
+Pre-name style:
+Princess
+
+Name:
+Anna FEODORA Auguste Charlotte Wilhelmine
+
+Post-name style:
+of Leiningen
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+07/12/1807
+
+Died:
+23/09/1872
+
+Father:
+688
+
+Mother:
+227
+
+Spouses:
+Ernest I H-L
+.
+.
+
+
+
+ID:
+691
+
+Pre-name style:
+.
+
+Name:
+Aelfflaed
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1002
+
+Father:
+165
+
+Mother:
+?
+
+Spouses:
+692
+.
+.
+
+
+
+ID:
+692
+
+Pre-name style:
+.
+
+Name:
+Byrhtnoth
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+956
+
+Died:
+991
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+691
+.
+.
+
+Style:
+Ealdorman of Essex
+Territories:
+Essex
+
+From:
+?
+To:
+?
+
+
+ID:
+693
+
+Pre-name style:
+.
+
+Name:
+Aethelstan
+
+Post-name style:
+Half-King
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+956
+
+Father:
+Aethelfrith
+
+Mother:
+Aethelgyth
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of East Anglia
+Territories:
+East Anglia
+
+From:
+c932
+To:
+956
+
+
+ID:
+694
+
+Pre-name style:
+.
+
+Name:
+Oslac
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+After 975
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+Ealdorman of York
+Territories:
+York
+
+From:
+966
+To:
+975
+
+
+ID:
+695
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+I of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c900
+
+Died:
+942
+
+Father:
+Rollo
+
+Mother:
+Poppa
+
+Spouses:
+Luitgarde
+.
+.
+
+696
+.
+.
+
+Style:
+Duke of Normandy
+Territories:
+Normandy
+
+From:
+927
+To:
+942
+
+
+ID:
+696
+
+Pre-name style:
+.
+
+Name:
+Sprota
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+695
+.
+.
+
+Esperling of Vaudreuil
+.
+.
+
+
+
+ID:
+697
+
+Pre-name style:
+.
+
+Name:
+Emma
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c968
+
+Father:
+Hugh 'the Great' of France
+
+Mother:
+Hedwig von Sachsen
+
+Spouses:
+170
+.
+.
+
+
+
+ID:
+698
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+II
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+Before 989
+
+Died:
+1037
+
+Father:
+170
+
+Mother:
+171
+
+Spouses:
+Herlevea
+.
+.
+
+Style:
+Archibishop of Rouen
+Territories:
+Rouen
+
+From:
+989
+To:
+1037
+Style:
+Count of Evreux
+Territories:
+Evreux
+
+From:
+c989
+To:
+1037
+
+
+ID:
+699
+
+Pre-name style:
+.
+
+Name:
+Mauger
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+170
+
+Mother:
+171
+
+Spouses:
+Germaine de Corbeil
+.
+.
+
+
+
+ID:
+700
+
+Pre-name style:
+.
+
+Name:
+Maud
+
+Post-name style:
+of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1006
+
+Father:
+170
+
+Mother:
+171
+
+Spouses:
+Odo II of Blois
+.
+.
+
+
+
+ID:
+701
+
+Pre-name style:
+.
+
+Name:
+Hawise
+
+Post-name style:
+of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+21-02-1034
+
+Father:
+170
+
+Mother:
+171
+
+Spouses:
+Geoffrey I of Brittany
+.
+.
+
+
+
+ID:
+702
+
+Pre-name style:
+.
+
+Name:
+Papia
+
+Post-name style:
+of Normandy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+170
+
+Mother:
+171
+
+
+
+ID:
+703
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+170
+
+Mother:
+171
+
+Style:
+Count of Eu
+Territories:
+Eu
+
+From:
+?
+To:
+?
+
+
+ID:
+704
+
+Pre-name style:
+.
+
+Name:
+Siemomysl
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c955
+
+Father:
+Lestek
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+Duke of the Polans
+Territories:
+Poland
+
+From:
+c930
+To:
+c955
+
+
+ID:
+705
+
+Pre-name style:
+.
+
+Name:
+Beloslaw
+
+Post-name style:
+I Chroby of Poland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+967
+
+Died:
+17/06/1025
+
+Father:
+704
+
+Mother:
+173
+
+Spouses:
+Hunilda
+.
+.
+
+Bezpryn
+.
+.
+
+Ennilda
+.
+.
+
+Oda
+.
+.
+
+Style:
+Duke of Poland
+Territories:
+Poland
+
+From:
+992
+To:
+18/04/1025
+Style:
+King of Poland
+Territories:
+Poland
+
+From:
+18/04/1025
+To:
+17/06/1025
+
+
+ID:
+706
+
+Pre-name style:
+.
+
+Name:
+Oda
+
+Post-name style:
+of Haldensleben
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c955
+
+Died:
+1023
+
+Father:
+Dietrich of Haldensleben
+
+Mother:
+?
+
+Spouses:
+172
+.
+.
+
+
+
+ID:
+707
+
+Pre-name style:
+.
+
+Name:
+Mieszko
+
+Post-name style:
+Mieszbowic
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+979-984
+
+Died:
+After 992
+
+Father:
+172
+
+Mother:
+706
+
+
+
+ID:
+708
+
+Pre-name style:
+.
+
+Name:
+Swietopelk
+
+Post-name style:
+Mieskowic
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c980
+
+Died:
+Before 991
+
+Father:
+172
+
+Mother:
+706
+
+
+
+ID:
+709
+
+Pre-name style:
+.
+
+Name:
+Lambert
+
+Post-name style:
+Mieskowic
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c981
+
+Died:
+After 992
+
+Father:
+172
+
+Mother:
+706
+
+
+
+ID:
+710
+
+Pre-name style:
+.
+
+Name:
+Boleslaus
+
+Post-name style:
+I of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c915
+
+Died:
+15/07/967
+
+Father:
+Vratislaus
+
+Mother:
+Drahomira
+
+Spouses:
+711
+.
+.
+
+Style:
+Duke of Bohemia
+Territories:
+Bohemia
+
+From:
+935
+To:
+967
+
+
+ID:
+711
+
+Pre-name style:
+.
+
+Name:
+Biagota
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+710
+.
+.
+
+
+
+ID:
+712
+
+Pre-name style:
+King
+
+Name:
+Bjorn
+
+Post-name style:
+(III) Erikson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+932
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+Style:
+King of Sweden
+Territories:
+Sweden
+
+From:
+882
+To:
+932
+
+
+ID:
+713
+
+Pre-name style:
+King
+
+Name:
+Olof 
+
+Post-name style:
+Skotkonung
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 980
+
+Died:
+1022
+
+Father:
+174
+
+Mother:
+73
+
+Spouses:
+Estrid
+.
+.
+
+Edla
+.
+.
+
+Style:
+King of Sweden
+Territories:
+Sweden
+
+From:
+995
+To:
+1022
+
+
+ID:
+714
+
+Pre-name style:
+.
+
+Name:
+Wulfrun
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c935
+
+Died:
+1005
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+
+
+ID:
+715
+
+Pre-name style:
+.
+
+Name:
+Wulfheah
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+175
+
+Mother:
+?
+
+
+
+ID:
+716
+
+Pre-name style:
+.
+
+Name:
+Ulfegeat
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+175
+
+Mother:
+?
+
+
+
+ID:
+717
+
+Pre-name style:
+.
+
+Name:
+Wulfnoth
+
+Post-name style:
+Cild
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1014
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+
+
+ID:
+718
+
+Pre-name style:
+.
+
+Name:
+Thyra
+
+Post-name style:
+Sveinsdottir
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+176
+.
+.
+
+
+
+ID:
+719
+
+Pre-name style:
+.
+
+Name:
+Sweyn
+
+Post-name style:
+Godwinson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1020
+
+Died:
+1050
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+720
+
+Pre-name style:
+.
+
+Name:
+Tostig
+
+Post-name style:
+Godwinson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+25/09/1066
+
+Father:
+176
+
+Mother:
+177
+
+Spouses:
+Judith of Flanders
+.
+.
+
+
+
+ID:
+721
+
+Pre-name style:
+.
+
+Name:
+Gyrth
+
+Post-name style:
+Godwinson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1032
+
+Died:
+14/10/1066
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+722
+
+Pre-name style:
+.
+
+Name:
+Leofwine
+
+Post-name style:
+Godwinson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1035
+
+Died:
+14/10/1066
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+723
+
+Pre-name style:
+.
+
+Name:
+Wulfnoth
+
+Post-name style:
+Godwinson
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1040
+
+Died:
+1094
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+724
+
+Pre-name style:
+.
+
+Name:
+Edgiva
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+725
+
+Pre-name style:
+.
+
+Name:
+Gunhilda
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+24/08/1087
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+726
+
+Pre-name style:
+.
+
+Name:
+Alfgar
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+727
+
+Pre-name style:
+.
+
+Name:
+Elgiva
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1066
+
+Father:
+176
+
+Mother:
+177
+
+
+
+ID:
+728
+
+Pre-name style:
+.
+
+Name:
+Thorgil
+
+Post-name style:
+Sprakling
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+
+
+ID:
+729
+
+Pre-name style:
+Lady
+
+Name:
+Godiva
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1066-1086
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+730
+.
+.
+
+
+
+ID:
+730
+
+Pre-name style:
+.
+
+Name:
+Leofric
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+08-09/1057
+
+Father:
+Leofwine
+
+Mother:
+Alwara
+
+
+
+ID:
+731
+
+Pre-name style:
+.
+
+Name:
+Edwin
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1071
+
+Father:
+178
+
+Mother:
+228
+
+
+
+ID:
+732
+
+Pre-name style:
+.
+
+Name:
+Morcar
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+After 1087
+
+Father:
+178
+
+Mother:
+228
+
+
+
+ID:
+733
+
+Pre-name style:
+.
+
+Name:
+Burcheard
+
+Post-name style:
+of Mercia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+178
+
+Mother:
+228
+
+
+
+ID:
+734
+
+Pre-name style:
+.
+
+Name:
+Nesta
+
+Post-name style:
+ferch Gruffydd
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+179
+
+Mother:
+78
+
+Spouses:
+Osbern FitzRichard
+.
+.
+
+
+
+ID:
+735
+
+Pre-name style:
+King
+
+Name:
+Llywelyn
+
+Post-name style:
+ap Seisyll
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1023
+
+Father:
+Seisyll
+
+Mother:
+?
+
+Spouses:
+736
+.
+.
+
+Style:
+King of Gwynedd, King of Deheubarth
+Territories:
+Gwynedd
+Deheubarth
+
+From:
+1018
+To:
+1023
+
+
+ID:
+736
+
+Pre-name style:
+.
+
+Name:
+Angharad
+
+Post-name style:
+ferch Maredudd
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Mareddudd ab Owain
+
+Mother:
+?
+
+Spouses:
+179
+.
+.
+
+
+
+ID:
+737
+
+Pre-name style:
+.
+
+Name:
+Maredudd
+
+Post-name style:
+ap Gruffydd
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1069
+
+Father:
+179
+
+Mother:
+78
+
+
+
+ID:
+738
+
+Pre-name style:
+.
+
+Name:
+Idwal
+
+Post-name style:
+ap Gruffydd
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1069
+
+Father:
+179
+
+Mother:
+78
+
+
+
+ID:
+739
+
+Pre-name style:
+Count
+
+Name:
+Baldwin
+
+Post-name style:
+IV of Flanders
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+980
+
+Died:
+30/05/1035
+
+Father:
+Arnulf II
+
+Mother:
+Rozala of Italy
+
+Spouses:
+740
+.
+.
+
+Eleanor of Normandy
+.
+.
+
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+987
+To:
+1035
+
+
+ID:
+740
+
+Pre-name style:
+.
+
+Name:
+Ogive
+
+Post-name style:
+of Luxumbourg
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+739
+.
+.
+
+
+
+ID:
+741
+
+Pre-name style:
+Count
+
+Name:
+Baldwin
+
+Post-name style:
+VI of Flanders
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1030
+
+Died:
+17/07/1070
+
+Father:
+180
+
+Mother:
+181
+
+Spouses:
+Richilde
+.
+.
+
+Style:
+Count of Hainaut
+Territories:
+Hainaut
+
+From:
+1051
+To:
+1070
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+1067
+To:
+1070
+
+
+ID:
+742
+
+Pre-name style:
+Count
+
+Name:
+Robert
+
+Post-name style:
+I of Flanders
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1035
+
+Died:
+1093
+
+Father:
+180
+
+Mother:
+181
+
+Spouses:
+Gertrude of Saxony
+.
+.
+
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+1071
+To:
+1093
+
+
+ID:
+743
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+the Forester
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+180
+
+Mother:
+181
+
+
+
+ID:
+744
+
+Pre-name style:
+King
+
+Name:
+Robert
+
+Post-name style:
+II of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+27/03/972
+
+Died:
+20/07/1031
+
+Father:
+Hugh Capet
+
+Mother:
+Adelaide of Aquitaine
+
+Spouses:
+Rozala of Italy
+.
+.
+
+ Bertha of Burgundy
+.
+.
+
+745
+.
+.
+
+Style:
+King of the Franks
+Territories:
+France
+
+From:
+20/12/987
+To:
+20/07/1031
+
+
+ID:
+745
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of Arles
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 986
+
+Died:
+28/07/1032
+
+Father:
+William I of Provence
+
+Mother:
+Adelaide-Blanche of Anjou
+
+Spouses:
+744
+.
+.
+
+
+
+ID:
+746
+
+Pre-name style:
+King
+
+Name:
+Duncan
+
+Post-name style:
+I of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1001
+
+Died:
+14/08/1040
+
+Father:
+Crinan
+
+Mother:
+Bethoc
+
+Spouses:
+747
+.
+.
+
+Style:
+King of Scotland
+Territories:
+Scotland
+
+From:
+1034
+To:
+1040
+
+
+ID:
+747
+
+Pre-name style:
+.
+
+Name:
+Suthen
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+746
+.
+.
+
+
+
+ID:
+748
+
+Pre-name style:
+.
+
+Name:
+Ingiborg
+
+Post-name style:
+Finnsdottir
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+After 1069
+
+Father:
+Finn Arnesson
+
+Mother:
+Bergljot Halvdansdottir
+
+Spouses:
+Thorfinn Sigurdsson
+.
+.
+
+182
+.
+.
+
+
+
+ID:
+749
+
+Pre-name style:
+King
+
+Name:
+Duncan
+
+Post-name style:
+II of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1060
+
+Died:
+12/11/1094
+
+Father:
+182
+
+Mother:
+748
+
+Spouses:
+Uchtreda of Northumbria
+.
+.
+
+Style:
+King of Scotland
+Territories:
+Scotland
+
+From:
+1094
+To:
+1094
+
+
+ID:
+750
+
+Pre-name style:
+.
+
+Name:
+Donald
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1094
+
+Father:
+182
+
+Mother:
+748
+
+
+
+ID:
+751
+
+Pre-name style:
+.
+
+Name:
+Malcolm
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1085
+
+Father:
+182
+
+Mother:
+748
+
+
+
+ID:
+752
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1093
+
+Father:
+182
+
+Mother:
+183
+
+
+
+ID:
+753
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+After 1070
+
+Died:
+After 1097
+
+Father:
+182
+
+Mother:
+183
+
+
+
+ID:
+754
+
+Pre-name style:
+.
+
+Name:
+Ethelred
+
+Post-name style:
+of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+182
+
+Mother:
+183
+
+
+
+ID:
+755
+
+Pre-name style:
+King
+
+Name:
+Edgar
+
+Post-name style:
+of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1074
+
+Died:
+08/01/1107
+
+Father:
+182
+
+Mother:
+183
+
+Style:
+King of Scotland
+Territories:
+Scotland
+
+From:
+1097
+To:
+1107
+
+
+ID:
+756
+
+Pre-name style:
+King
+
+Name:
+Alexander
+
+Post-name style:
+I of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1078
+
+Died:
+23/04/1124
+
+Father:
+182
+
+Mother:
+183
+
+Spouses:
+Sybilla de Normandy
+.
+.
+
+Style:
+King of Scotland
+Territories:
+Scotland
+
+From:
+1107
+To:
+1124
+
+
+ID:
+757
+
+Pre-name style:
+King
+
+Name:
+David
+
+Post-name style:
+I of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1084
+
+Died:
+24/05/1153
+
+Father:
+182
+
+Mother:
+183
+
+Spouses:
+Matilda of Huntingdon
+.
+.
+
+Style:
+King of Scotland
+Territories:
+Scotland
+
+From:
+1124
+To:
+24/05/1153
+
+
+ID:
+758
+
+Pre-name style:
+.
+
+Name:
+Agatha
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+Before 1030
+
+Died:
+After 1070
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+331
+.
+.
+
+
+
+ID:
+759
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+II of Louvain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1020
+
+Died:
+1078
+
+Father:
+Lambert II
+
+Mother:
+Oda of Verdun
+
+Spouses:
+760
+.
+.
+
+Style:
+Count of Louvain and Brussels
+Territories:
+Louvaine
+Brussels
+
+From:
+1054
+To:
+1071?
+
+
+ID:
+760
+
+Pre-name style:
+.
+
+Name:
+Adela
+
+Post-name style:
+of Orthen
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Everard of Orthen
+
+Mother:
+?
+
+Spouses:
+759
+.
+.
+
+
+
+ID:
+761
+
+Pre-name style:
+.
+
+Name:
+Clementina
+
+Post-name style:
+of Burgundy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1078
+
+Died:
+c1133
+
+Father:
+William I
+
+Mother:
+Stephanie
+
+Spouses:
+Robert II
+.
+.
+
+184
+.
+.
+
+
+
+ID:
+762
+
+Pre-name style:
+.
+
+Name:
+Godfrey
+
+Post-name style:
+II of Louvaine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1110
+
+Died:
+13/06/1142
+
+Father:
+184
+
+Mother:
+185
+
+Spouses:
+Luitgarde of Sulzbach
+.
+.
+
+Style:
+Count of Louvain and Brussels
+Territories:
+Louvaine
+Brussels
+
+From:
+23/01/1139
+To:
+13/06/1142
+Style:
+Landgrave of Brabant
+Territories:
+Brabant
+
+From:
+23/01/1139
+To:
+13/06/1142
+Style:
+Duke of Lower Lorraine
+Territories:
+Lower Lorraine
+
+From:
+?
+To:
+?
+
+
+ID:
+763
+
+Pre-name style:
+.
+
+Name:
+Clarissa
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1140
+
+Father:
+184
+
+Mother:
+185
+
+
+
+ID:
+764
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1141
+
+Father:
+184
+
+Mother:
+185
+
+
+
+ID:
+765
+
+Pre-name style:
+.
+
+Name:
+Ida
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1162
+
+Father:
+184
+
+Mother:
+184
+
+Spouses:
+Arnold II of Cleves
+.
+.
+
+
+
+ID:
+766
+
+Pre-name style:
+.
+
+Name:
+Joscelin
+
+Post-name style:
+of Louvaine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1121
+
+Died:
+1180
+
+Father:
+184
+
+Mother:
+185
+
+Spouses:
+Agnes de Percy
+.
+.
+
+
+
+ID:
+767
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+d'Aubigny 'Pincerna'
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1139
+
+Father:
+Rogedr d'Aubigny
+
+Mother:
+Amice
+
+Spouses:
+768
+.
+.
+
+
+
+ID:
+768
+
+Pre-name style:
+.
+
+Name:
+Maud
+
+Post-name style:
+Bigod
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Roger Bigod
+
+Mother:
+?
+
+Spouses:
+767
+.
+.
+
+
+
+ID:
+769
+
+Pre-name style:
+Count
+
+Name:
+Otto
+
+Post-name style:
+II of Namur
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+770
+.
+.
+
+Style:
+Count of Chiny
+Territories:
+Chiny
+
+From:
+?
+To:
+?
+
+
+ID:
+770
+
+Pre-name style:
+.
+
+Name:
+Adelaide
+
+Post-name style:
+of Namur
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+769
+.
+.
+
+
+
+ID:
+771
+
+Pre-name style:
+Count
+
+Name:
+Eustace
+
+Post-name style:
+II of Boulogne
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1015
+
+Died:
+c1087
+
+Father:
+Eustace I
+
+Mother:
+Matilda of Leuve
+
+Spouses:
+Goda
+.
+.
+
+772
+.
+.
+
+Style:
+Count of Boulogne
+Territories:
+Boulogne
+
+From:
+?
+To:
+?
+
+
+ID:
+772
+
+Pre-name style:
+.
+
+Name:
+Ida
+
+Post-name style:
+of Lorraine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1039
+
+Died:
+13/04/1113
+
+Father:
+Godfrey III
+
+Mother:
+Doda
+
+Spouses:
+771
+.
+.
+
+
+
+ID:
+773
+
+Pre-name style:
+Emperor
+
+Name:
+Henry
+
+Post-name style:
+III, Holy Roman Emperor
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+28/10/1017
+
+Died:
+05/10/1056
+
+Father:
+Conrad II
+
+Mother:
+Gisela of Swabia
+
+Spouses:
+334
+.
+.
+
+774
+.
+.
+
+Style:
+HRE
+Territories:
+HRE
+
+From:
+1046
+To:
+05/10/1056
+
+
+ID:
+774
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+of Poitou
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1025
+
+Died:
+14/12/1077
+
+Father:
+William V of Aquitaine
+
+Mother:
+Agnes of Burgundy
+
+Spouses:
+773
+.
+.
+
+
+
+ID:
+775
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+of Germany
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1072-1073
+
+Died:
+24/09/1143
+
+Father:
+189
+
+Mother:
+229
+
+Spouses:
+Frederick I of Swabia
+.
+.
+
+Leopold III of Austria
+.
+.
+
+
+
+ID:
+776
+
+Pre-name style:
+King
+
+Name:
+Conrad
+
+Post-name style:
+II of Italy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/02/1074
+
+Died:
+27/07/1101
+
+Father:
+189
+
+Mother:
+229
+
+Style:
+Duke of Lower Lorraine
+Territories:
+Lower Lorraine
+
+From:
+1076
+To:
+1087
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+1087
+To:
+1098
+Style:
+King of Italy
+Territories:
+Italy
+
+From:
+1093
+To:
+1098
+
+
+ID:
+777
+
+Pre-name style:
+.
+
+Name:
+Adelheid
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1070
+
+Died:
+04/06/1079
+
+Father:
+189
+
+Mother:
+229
+
+
+
+ID:
+778
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1071
+
+Died:
+02/08/1071
+
+Father:
+189
+
+Mother:
+229
+
+
+
+ID:
+779
+
+Pre-name style:
+.
+
+Name:
+Eupraxia 
+
+Post-name style:
+of Kiev
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C1067-1070
+
+Died:
+10/07/1109
+
+Father:
+Vsevalad I of Kiev
+
+Mother:
+?
+
+Spouses:
+Henry the Long
+.
+.
+
+189
+.
+.
+
+
+
+ID:
+780
+
+Pre-name style:
+Count
+
+Name:
+Otto
+
+Post-name style:
+I of Savoy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1010-1020
+
+Died:
+c1057
+
+Father:
+Humbert I
+
+Mother:
+Ancilla of Lenzburg
+
+Spouses:
+781
+.
+.
+
+Style:
+Count of Savoy
+Territories:
+Savoy
+
+From:
+c1051
+To:
+c1057
+
+
+ID:
+781
+
+Pre-name style:
+.
+
+Name:
+Adelaide
+
+Post-name style:
+of Susa
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C1014-1020
+
+Died:
+19/12/1097
+
+Father:
+Ulric Manfred II
+
+Mother:
+Bertha of Milan
+
+Spouses:
+Herman IV
+.
+.
+
+ Henry of Montferrat
+.
+.
+
+780
+.
+.
+
+Style:
+Marchioness of Turin
+Territories:
+Turin
+
+From:
+1034
+To:
+1097
+
+
+ID:
+782
+
+Pre-name style:
+Count
+
+Name:
+Fulk
+
+Post-name style:
+IV of Anjou
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1043
+
+Died:
+14/04/1109
+
+Father:
+Geoffrey
+
+Mother:
+Ermengarde
+
+Spouses:
+Hildegarde
+.
+.
+
+Ermengarde
+.
+.
+
+Orengarde
+.
+.
+
+Mantie
+.
+.
+
+783
+.
+.
+
+Style:
+Count of Anjou
+Territories:
+Anjou
+
+From:
+1068
+To:
+1109
+
+
+ID:
+783
+
+Pre-name style:
+.
+
+Name:
+Bertrade
+
+Post-name style:
+de Montfort
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1070
+
+Died:
+14/02/1117
+
+Father:
+Simon I
+
+Mother:
+Agnes
+
+Spouses:
+782
+.
+.
+
+Philip I of France
+.
+.
+
+
+
+ID:
+784
+
+Pre-name style:
+.
+
+Name:
+Sibylla
+
+Post-name style:
+of Anjou
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1112
+
+Died:
+1166
+
+Father:
+190
+
+Mother:
+191
+
+Spouses:
+William
+.
+.
+
+Thierry
+.
+.
+
+
+
+ID:
+785
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+of Anjou
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1111
+
+Died:
+1154
+
+Father:
+190
+
+Mother:
+191
+
+Spouses:
+349
+.
+.
+
+
+
+ID:
+786
+
+Pre-name style:
+Count
+
+Name:
+Elias
+
+Post-name style:
+II of Maine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+15/01/1151
+
+Father:
+190
+
+Mother:
+191
+
+Spouses:
+Philippa
+.
+.
+
+Style:
+Count of Maine
+Territories:
+Maine
+
+From:
+?
+To:
+?
+
+
+ID:
+787
+
+Pre-name style:
+.
+
+Name:
+Melisende
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1105
+
+Died:
+11/09/1161
+
+Father:
+Baldwin II
+
+Mother:
+Morphia
+
+Spouses:
+190
+.
+.
+
+
+
+ID:
+788
+
+Pre-name style:
+King
+
+Name:
+Baldwin
+
+Post-name style:
+III of Jerusalem
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1130
+
+Died:
+10/02/1163
+
+Father:
+190
+
+Mother:
+787
+
+Spouses:
+Theodora
+.
+.
+
+Style:
+King of Jerusalem
+Territories:
+Jerusalem
+
+From:
+1143
+To:
+1163
+
+
+ID:
+789
+
+Pre-name style:
+King
+
+Name:
+Amalric
+
+Post-name style:
+I of Jerusalem
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1136
+
+Died:
+11/07/1174
+
+Father:
+190
+
+Mother:
+787
+
+Spouses:
+Agnes
+.
+.
+
+Maria
+.
+.
+
+Style:
+King of Jerusalem
+Territories:
+Jerusalem
+
+From:
+1163
+To:
+1174
+
+
+ID:
+790
+
+Pre-name style:
+Count
+
+Name:
+Elias
+
+Post-name style:
+I of Maine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+11/07/1110
+
+Father:
+Jean de la Fleche
+
+Mother:
+Paula
+
+Spouses:
+791
+.
+.
+
+Agnes
+.
+.
+
+Style:
+Count of Maine
+Territories:
+Maine
+
+From:
+?
+To:
+?
+
+
+ID:
+791
+
+Pre-name style:
+.
+
+Name:
+Mathilda
+
+Post-name style:
+of Chateau-du-Loire
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Gervais II
+
+Mother:
+?
+
+Spouses:
+790
+.
+.
+
+
+
+ID:
+792
+
+Pre-name style:
+.
+
+Name:
+Philippa Maude
+
+Post-name style:
+of Toulouse
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1073
+
+Died:
+28/11/1118
+
+Father:
+William IV
+
+Mother:
+Emma
+
+Spouses:
+797
+.
+.
+
+Style:
+Countess of Toulouse
+Territories:
+Toulouse
+
+From:
+1094
+To:
+1116
+
+
+ID:
+793
+
+Pre-name style:
+.
+
+Name:
+Petronilla
+
+Post-name style:
+of Aquitaine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1125
+
+Died:
+1193
+
+Father:
+192
+
+Mother:
+193
+
+Spouses:
+Raoul I
+.
+.
+
+
+
+ID:
+794
+
+Pre-name style:
+
+
+Name:
+William Aigret
+
+Post-name style:
+
+
+URL:
+
+
+Picture:
+
+
+Born:
+c1126
+
+Died:
+1130
+
+Father:
+192
+
+Mother:
+193
+
+
+
+ID:
+795
+
+Pre-name style:
+.
+
+Name:
+Ermengarde
+
+Post-name style:
+of Anjou
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1086
+
+Died:
+01/06/1146
+
+Father:
+Fulk IV
+
+Mother:
+Hildegarde of Beaugency
+
+Spouses:
+797
+.
+.
+
+ Alan IV of Brittany
+.
+.
+
+
+
+ID:
+796
+
+Pre-name style:
+.
+
+Name:
+Aimery
+
+Post-name style:
+I de Rouchefoucould
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1075
+
+Died:
+07/11/1151
+
+Father:
+Boson II
+
+Mother:
+Aleanor
+
+Spouses:
+798
+.
+.
+
+Style:
+Viscount of Chatellerault
+Territories:
+Chatellerault
+
+From:
+?
+To:
+?
+
+
+ID:
+797
+
+Pre-name style:
+Duke
+
+Name:
+William 
+
+Post-name style:
+IX of Aquitaine
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/10/1071
+
+Died:
+10/02/1126
+
+Father:
+William VIII
+
+Mother:
+Hildegarde of Burdgundy
+
+Spouses:
+795
+.
+.
+
+792
+.
+.
+
+Style:
+Duke of Aquitaine and Gascony and Count of Poitou
+Territories:
+Aquitaine
+Gascony
+Poitou
+
+From:
+1086
+To:
+1126
+
+
+ID:
+798
+
+Pre-name style:
+.
+
+Name:
+Dangereuse
+
+Post-name style:
+de l'Isle Bouchard
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1079
+
+Died:
+1151
+
+Father:
+Bartholomew
+
+Mother:
+?
+
+Spouses:
+796
+.
+.
+
+
+
+ID:
+799
+
+Pre-name style:
+King
+
+Name:
+Louis
+
+Post-name style:
+VI of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+01/12/1081
+
+Died:
+01/08/1137
+
+Father:
+Philip I
+
+Mother:
+Bertha
+
+Spouses:
+Lucienne
+.
+.
+
+800
+.
+.
+
+Style:
+King of the Franks
+Territories:
+France
+
+From:
+29/07/1108
+To:
+01/08/1137
+
+
+ID:
+800
+
+Pre-name style:
+.
+
+Name:
+Adelaide
+
+Post-name style:
+of Maurienne
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1092
+
+Died:
+18/11/1154
+
+Father:
+Humbert II
+
+Mother:
+Gisela
+
+Spouses:
+799
+.
+.
+
+Matthieu I
+.
+.
+
+
+
+ID:
+801
+
+Pre-name style:
+.
+
+Name:
+Alys
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+04/10/1160
+
+Died:
+c1220
+
+Father:
+194
+
+Mother:
+195
+
+Spouses:
+William IV
+.
+.
+
+Style:
+Countess of the Vexin
+Territories:
+Vexin
+
+From:
+1195
+To:
+1220
+
+
+ID:
+802
+
+Pre-name style:
+.
+
+Name:
+Adele
+
+Post-name style:
+of Champagne
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1140
+
+Died:
+04/06/1206
+
+Father:
+Theobald II
+
+Mother:
+Matilda
+
+Spouses:
+194
+.
+.
+
+
+
+ID:
+803
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+II of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/08/1165
+
+Died:
+14/07/1223
+
+Father:
+194
+
+Mother:
+802
+
+Spouses:
+Isabella
+.
+.
+
+Ingeborg
+.
+.
+
+Agnes
+.
+.
+
+Style:
+King of the Franks
+Territories:
+France
+
+From:
+1180
+To:
+1190
+Style:
+King of France
+Territories:
+France
+
+From:
+1190
+To:
+1223
+
+
+ID:
+804
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1171
+
+Died:
+After 1204
+
+Father:
+194
+
+Mother:
+802
+
+Spouses:
+Alexios II
+.
+.
+
+ Andronikos I
+.
+.
+
+ Theodore
+.
+.
+
+
+
+ID:
+805
+
+Pre-name style:
+King
+
+Name:
+Alfonso
+
+Post-name style:
+VII of Spain
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+01/03/1105
+
+Died:
+241/08/1157
+
+Father:
+Raymond
+
+Mother:
+Urraca
+
+Spouses:
+806
+.
+.
+
+Richeza
+.
+.
+
+Style:
+King of Galicia
+Territories:
+Galicia
+
+From:
+1111
+To:
+1157
+Style:
+King of Leon and Castile
+Territories:
+Leon
+Castile
+
+From:
+1226
+To:
+1157
+Style:
+Emperor of All Spain
+Territories:
+Spain
+
+From:
+1135
+To:
+1157
+
+
+ID:
+806
+
+Pre-name style:
+.
+
+Name:
+Berengaria
+
+Post-name style:
+of Barcelona
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1116
+
+Died:
+15/01/1149
+
+Father:
+Ramon Berenguer III
+
+Mother:
+Douce I
+
+Spouses:
+805
+.
+.
+
+
+
+ID:
+807
+
+Pre-name style:
+King
+
+Name:
+Geza
+
+Post-name style:
+II of Hungary
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1130
+
+Died:
+31/05/1162
+
+Father:
+Bela II
+
+Mother:
+Helena
+
+Spouses:
+808
+.
+.
+
+Style:
+King of Hungary and Croatia
+Territories:
+Hungary
+Croatia
+
+From:
+1141
+To:
+1162
+
+
+ID:
+808
+
+Pre-name style:
+.
+
+Name:
+Euphrosyne
+
+Post-name style:
+of Kiev
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1130
+
+Died:
+c1193
+
+Father:
+Mstislav I
+
+Mother:
+ Liubava
+
+Spouses:
+807
+.
+.
+
+
+
+ID:
+809
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+of Antioch
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1154
+
+Died:
+c1184
+
+Father:
+Raynald
+
+Mother:
+Constance
+
+Spouses:
+196
+.
+.
+
+
+
+ID:
+810
+
+Pre-name style:
+King
+
+Name:
+Emeric
+
+Post-name style:
+of Hungary
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1174
+
+Died:
+-253866
+
+Father:
+196
+
+Mother:
+809
+
+Spouses:
+Constance
+.
+.
+
+Style:
+King of Hungary and Croatia
+Territories:
+Hungary
+Croatia
+
+From:
+1182
+To:
+1204
+
+
+ID:
+811
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Hungary
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1175
+
+Died:
+After 1223
+
+Father:
+196
+
+Mother:
+809
+
+Spouses:
+Isaac II
+.
+.
+
+ Boniface
+.
+.
+
+Nicholas
+.
+.
+
+
+
+ID:
+812
+
+Pre-name style:
+.
+
+Name:
+Andrew
+
+Post-name style:
+II
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1177
+
+Died:
+21/09/1235
+
+Father:
+196
+
+Mother:
+809
+
+Spouses:
+Gertrude
+.
+.
+
+Yolanda
+.
+.
+
+Beatrice
+.
+.
+
+
+
+ID:
+813
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of Hungary
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1180
+
+Died:
+06/12/1240
+
+Father:
+196
+
+Mother:
+809
+
+Spouses:
+Ottokar I of Bohemia
+.
+.
+
+
+
+ID:
+814
+
+Pre-name style:
+.
+
+Name:
+Garcia Ramirez
+
+Post-name style:
+of Navarre
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1112
+
+Died:
+21/11/1150
+
+Father:
+Ramiro Sanchez
+
+Mother:
+Christina Rodriguez
+
+Spouses:
+815
+.
+.
+
+Urraca
+.
+.
+
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+1134
+To:
+1150
+
+
+ID:
+815
+
+Pre-name style:
+.
+
+Name:
+Margaret 
+
+Post-name style:
+of L'Aigle
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1141
+
+Father:
+Gilbert
+
+Mother:
+Juliana
+
+Spouses:
+814
+.
+.
+
+
+
+ID:
+816
+
+Pre-name style:
+.
+
+Name:
+Sancho
+
+Post-name style:
+VII of Navarre
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/04/1154
+
+Died:
+07/04/1234
+
+Father:
+197
+
+Mother:
+198
+
+Spouses:
+Constance
+.
+.
+
+
+
+ID:
+817
+
+Pre-name style:
+.
+
+Name:
+Ferdinand
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+197
+
+Mother:
+198
+
+Spouses:
+
+
+
+
+
+
+ID:
+818
+
+Pre-name style:
+.
+
+Name:
+Ramiro
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+197
+
+Mother:
+198
+
+Style:
+Bishop of Pamplona
+Territories:
+Pamplona
+
+From:
+?
+To:
+?
+
+
+ID:
+819
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+197
+
+Mother:
+198
+
+
+
+ID:
+820
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of Navarre
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1177
+
+Died:
+1229
+
+Father:
+197
+
+Mother:
+198
+
+Spouses:
+Theobald III of Champagne
+.
+.
+
+
+
+ID:
+821
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+Fitzroy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+Before 1100
+
+Died:
+31/10/1147
+
+Father:
+19
+
+Mother:
+?
+
+Spouses:
+822
+.
+.
+
+Style:
+Earl of Gloucester
+Territories:
+Gloucester
+
+From:
+?
+To:
+?
+
+
+ID:
+822
+
+Pre-name style:
+.
+
+Name:
+Mabel
+
+Post-name style:
+FitzRobert
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1090
+
+Died:
+29/09/1157
+
+Father:
+Robert FitzHamon
+
+Mother:
+Sybil de Montgomery
+
+Spouses:
+821
+.
+.
+
+
+
+ID:
+823
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+FitzWilliam
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1151
+
+Died:
+1166
+
+Father:
+199
+
+Mother:
+200
+
+
+
+ID:
+824
+
+Pre-name style:
+.
+
+Name:
+Mabel
+
+Post-name style:
+FitzWilliam
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+199
+
+Mother:
+200
+
+Spouses:
+Amaury V de Montfort
+.
+.
+
+
+
+ID:
+825
+
+Pre-name style:
+.
+
+Name:
+Amice
+
+Post-name style:
+FitzWilliam
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1220
+
+Father:
+199
+
+Mother:
+200
+
+Spouses:
+Richard de Clare
+.
+.
+
+
+
+ID:
+826
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+de Beaumont
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1104
+
+Died:
+05/04/1168
+
+Father:
+Robert de Beaumont
+
+Mother:
+Elizabeth de Vermanctis
+
+Spouses:
+827
+.
+.
+
+Style:
+Earl of Leicester
+Territories:
+Leicester
+
+From:
+?
+To:
+?
+
+
+ID:
+827
+
+Pre-name style:
+.
+
+Name:
+Amice
+
+Post-name style:
+de Gael
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Raoul II de Montfort
+
+Mother:
+?
+
+Spouses:
+826
+.
+.
+
+
+
+ID:
+828
+
+Pre-name style:
+.
+
+Name:
+Welter
+
+Post-name style:
+de Burgh
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+
+
+ID:
+829
+
+Pre-name style:
+.
+
+Name:
+Beatrice
+
+Post-name style:
+de Warrenne
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+William de Warrenne
+
+Mother:
+?
+
+Spouses:
+202
+.
+.
+
+
+
+ID:
+830
+
+Pre-name style:
+Princess
+
+Name:
+Margaret
+
+Post-name style:
+of Scotland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1193
+
+Died:
+1259
+
+Father:
+William I
+
+Mother:
+Ermengarde
+
+Spouses:
+202
+.
+.
+
+
+
+ID:
+831
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+de Burgh
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1227
+
+Died:
+1237
+
+Father:
+202
+
+Mother:
+830
+
+Spouses:
+Richard de Clare
+.
+.
+
+
+
+ID:
+832
+
+Pre-name style:
+Count
+
+Name:
+William
+
+Post-name style:
+VI of angouleme
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1179
+
+Father:
+Wulgrin II
+
+Mother:
+?
+
+Spouses:
+833
+.
+.
+
+Style:
+Count of Angouleme
+Territories:
+Angouleme
+
+From:
+1140
+To:
+1179
+
+
+ID:
+833
+
+Pre-name style:
+.
+
+Name:
+Marguerite
+
+Post-name style:
+de Turenne
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+832
+.
+.
+
+
+
+ID:
+834
+
+Pre-name style:
+.
+
+Name:
+Peter
+
+Post-name style:
+I of Courtenay
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+09/1126
+
+Died:
+10/04/1183
+
+Father:
+799
+
+Mother:
+800
+
+Spouses:
+Elizabeth
+.
+.
+
+
+
+ID:
+835
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+de Courtenay
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1127
+
+Died:
+09/1205
+
+Father:
+Renauld de Courtenay
+
+Mother:
+Hawise du Donjon
+
+Spouses:
+834
+.
+.
+
+
+
+ID:
+836
+
+Pre-name style:
+.
+
+Name:
+Guillaume
+
+Post-name style:
+I of Joigny
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+204
+.
+.
+
+
+
+ID:
+837
+
+Pre-name style:
+Count
+
+Name:
+Hugh
+
+Post-name style:
+IX of Lusignan
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1163
+
+Died:
+05/11/1219
+
+Father:
+Hugh
+
+Mother:
+Agathe
+
+Spouses:
+838
+.
+.
+
+
+
+ID:
+838
+
+Pre-name style:
+.
+
+Name:
+Mathilde
+
+Post-name style:
+of Angouleme
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1181
+
+Died:
+1233
+
+Father:
+Wulgrin III
+
+Mother:
+?
+
+Spouses:
+837
+.
+.
+
+
+
+ID:
+839
+
+Pre-name style:
+Count
+
+Name:
+Alfonso
+
+Post-name style:
+II of Provence
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1174
+
+Died:
+01/12/1209
+
+Father:
+Alfonso II of Aragon
+
+Mother:
+Sancha of Castile
+
+Spouses:
+840
+.
+.
+
+Style:
+Count of Provence
+Territories:
+Provence
+
+From:
+1185
+To:
+1209
+
+
+ID:
+840
+
+Pre-name style:
+.
+
+Name:
+Garsenda
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1180
+
+Died:
+1242
+
+Father:
+Rainou
+
+Mother:
+Garsenda
+
+Spouses:
+839
+.
+.
+
+Style:
+Countess of Forcalquier
+Territories:
+Forcalquier
+
+From:
+1209
+To:
+1242
+
+
+ID:
+841
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Provence
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1221
+
+Died:
+20/12/1295
+
+Father:
+206
+
+Mother:
+207
+
+Spouses:
+863
+.
+.
+
+
+
+ID:
+842
+
+Pre-name style:
+.
+
+Name:
+Sanchia
+
+Post-name style:
+of Provence
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1228
+
+Died:
+09/11/1261
+
+Father:
+206
+
+Mother:
+207
+
+Spouses:
+366
+.
+.
+
+
+
+ID:
+843
+
+Pre-name style:
+.
+
+Name:
+Beatrice
+
+Post-name style:
+of Provence
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1231
+
+Died:
+23/09/1267
+
+Father:
+206
+
+Mother:
+207
+
+Spouses:
+Charles I of Sicily
+.
+.
+
+
+
+ID:
+844
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+of Savoy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1178
+
+Died:
+01/03/1233
+
+Father:
+Humbert III
+
+Mother:
+Beatrice
+
+Spouses:
+845
+.
+.
+
+Style:
+Count of Savoy
+Territories:
+Savoy
+
+From:
+1189
+To:
+1233
+
+
+ID:
+845
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Geneva
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1252
+
+Father:
+William I
+
+Mother:
+Beatrice
+
+Spouses:
+844
+.
+.
+
+
+
+ID:
+846
+
+Pre-name style:
+King
+
+Name:
+Alfonso
+
+Post-name style:
+IX of Leon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+15/08/1171
+
+Died:
+26-24/09/1230
+
+Father:
+Ferdinand II
+
+Mother:
+Urraca of Portugal
+
+Spouses:
+Theresa
+.
+.
+
+847
+.
+.
+
+Style:
+King of Leon and Galicia
+Territories:
+Leon
+Galicia
+
+From:
+1188
+To:
+1230
+
+
+ID:
+847
+
+Pre-name style:
+.
+
+Name:
+Berengaria
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1179-1180
+
+Died:
+08/11/1246
+
+Father:
+Alfonso VIII
+
+Mother:
+363
+
+Spouses:
+846
+.
+.
+
+Style:
+Queen of Castile and Toledo
+Territories:
+Castile
+Toledo
+
+From:
+06/06/1217
+To:
+31/08/1217
+
+
+ID:
+848
+
+Pre-name style:
+.
+
+Name:
+Elizabeth (Beatrice)
+
+Post-name style:
+of Swabia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1203
+
+Died:
+05/11/1235
+
+Father:
+Philip
+
+Mother:
+Irene
+
+Spouses:
+208
+.
+.
+
+
+
+ID:
+849
+
+Pre-name style:
+King
+
+Name:
+Alfonso
+
+Post-name style:
+X of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+23/11/1221
+
+Died:
+04/04/1284
+
+Father:
+208
+
+Mother:
+848
+
+Spouses:
+Violant
+.
+.
+
+Style:
+King of Castile,Leon and Galicia
+Territories:
+Castile
+Leon
+Galicia
+
+From:
+30/05/1252
+To:
+04/04/1284
+
+
+ID:
+850
+
+Pre-name style:
+.
+
+Name:
+Frederick
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1223
+
+Died:
+1277
+
+Father:
+208
+
+Mother:
+848
+
+
+
+ID:
+851
+
+Pre-name style:
+.
+
+Name:
+Ferdinand
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1225
+
+Died:
+1243-1248
+
+Father:
+208
+
+Mother:
+848
+
+
+
+ID:
+852
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1227
+
+Died:
+?
+
+Father:
+208
+
+Mother:
+848
+
+
+
+ID:
+853
+
+Pre-name style:
+.
+
+Name:
+Berengaria
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1228
+
+Died:
+1288-1289
+
+Father:
+208
+
+Mother:
+848
+
+
+
+ID:
+854
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+03/1230
+
+Died:
+08/08/1303
+
+Father:
+208
+
+Mother:
+848
+
+Spouses:
+Juana Nunez
+.
+.
+
+
+
+ID:
+855
+
+Pre-name style:
+.
+
+Name:
+Philip
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1231
+
+Died:
+28/11/1274
+
+Father:
+208
+
+Mother:
+848
+
+Spouses:
+Christina
+.
+.
+
+Ines
+.
+.
+
+Leonor
+.
+.
+
+
+
+ID:
+856
+
+Pre-name style:
+.
+
+Name:
+Sancho
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1233
+
+Died:
+27/10/1261
+
+Father:
+208
+
+Mother:
+848
+
+Style:
+Archbishop of Toledo
+Territories:
+Toledo
+
+From:
+?
+To:
+?
+
+
+ID:
+857
+
+Pre-name style:
+.
+
+Name:
+Manuel
+
+Post-name style:
+of Castile
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1234
+
+Died:
+25/12/1283
+
+Father:
+208
+
+Mother:
+848
+
+Spouses:
+Constance
+.
+.
+
+Beatrice
+.
+.
+
+
+
+ID:
+858
+
+Pre-name style:
+.
+
+Name:
+Maria
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1235
+
+Died:
+11/1235
+
+Father:
+208
+
+Mother:
+848
+
+
+
+ID:
+859
+
+Pre-name style:
+.
+
+Name:
+Ferdinand
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1239
+
+Died:
+1260
+
+Father:
+208
+
+Mother:
+211
+
+Style:
+Count of Aumale
+Territories:
+Aumale
+
+From:
+?
+To:
+?
+
+
+ID:
+860
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1243
+
+Died:
+1269
+
+Father:
+208
+
+Mother:
+211
+
+
+
+ID:
+861
+
+Pre-name style:
+.
+
+Name:
+Simon
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1244
+
+Died:
+1244
+
+Father:
+208
+
+Mother:
+211
+
+
+
+ID:
+862
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1245
+
+Died:
+1245
+
+Father:
+208
+
+Mother:
+211
+
+
+
+ID:
+863
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+IX of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/04/1214
+
+Died:
+25/08/1270
+
+Father:
+Louis VIII
+
+Mother:
+Blanche of Castile
+
+Spouses:
+841
+.
+.
+
+Style:
+King of France
+Territories:
+France1226
+
+From:
+1270
+To:
+
+
+
+ID:
+864
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1278
+
+Died:
+01/03/1305
+
+Father:
+209
+
+Mother:
+210
+
+Spouses:
+Rudolph
+.
+.
+
+
+
+ID:
+865
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Aragon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1248
+
+Died:
+28/01/1271
+
+Father:
+James I
+
+Mother:
+Violant
+
+Spouses:
+209
+.
+.
+
+
+
+ID:
+866
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1263-1264
+
+Died:
+1276
+
+Father:
+209
+
+Mother:
+865
+
+
+
+ID:
+867
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1269
+
+Died:
+1271
+
+Father:
+209
+
+Mother:
+865
+
+
+
+ID:
+868
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+of Valois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+12/03/1270
+
+Died:
+16/12/1325
+
+Father:
+209
+
+Mother:
+865
+
+Spouses:
+Margaret
+.
+.
+
+Catherine
+.
+.
+
+Mahaut
+.
+.
+
+Style:
+Count of Valois
+Territories:
+Valois
+
+From:
+1284
+To:
+1325
+
+
+ID:
+869
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+of Evreux
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+03/05/1276
+
+Died:
+19/05/1319
+
+Father:
+209
+
+Mother:
+210
+
+
+
+ID:
+870
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+III of Brabant
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1230
+
+Died:
+28/02/1261
+
+Father:
+Henry II
+
+Mother:
+Marie
+
+Spouses:
+871
+.
+.
+
+Style:
+Duke of Brabant
+Territories:
+Brabant
+
+From:
+1248
+To:
+1261
+Style:
+Duke of Lothier
+Territories:
+Lothier
+
+From:
+?
+To:
+?
+
+
+ID:
+871
+
+Pre-name style:
+.
+
+Name:
+Adelaide
+
+Post-name style:
+of Burgundy
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1233
+
+Died:
+23/10/1273
+
+Father:
+Hugh IV
+
+Mother:
+Yolande
+
+Spouses:
+870
+.
+.
+
+
+
+ID:
+872
+
+Pre-name style:
+.
+
+Name:
+Simon
+
+Post-name style:
+of Dammartin
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1180
+
+Died:
+21/09/1239
+
+Father:
+Alberic II
+
+Mother:
+Mathildis
+
+Spouses:
+873
+.
+.
+
+
+
+ID:
+873
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of Ponthieu
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+17/04/1199
+
+Died:
+1251
+
+Father:
+William IV
+
+Mother:
+801
+
+Spouses:
+872
+.
+.
+
+Mathieu
+.
+.
+
+Style:
+Countess of Ponthieu and Montreuil
+Territories:
+Ponthieu
+Montreuil
+
+From:
+1221
+To:
+1251
+
+
+ID:
+874
+
+Pre-name style:
+.
+
+Name:
+Jean
+
+Post-name style:
+de Nesle
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+211
+.
+.
+
+
+
+ID:
+875
+
+Pre-name style:
+King
+
+Name:
+Louis
+
+Post-name style:
+X of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+04/10/1289
+
+Died:
+05/06/1316
+
+Father:
+212
+
+Mother:
+213
+
+Spouses:
+Margaret
+.
+.
+
+Clementia
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+29/11/1314
+To:
+05/06/1316
+
+
+ID:
+876
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+V of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+C 1292-3
+
+Died:
+03/01/1322
+
+Father:
+212
+
+Mother:
+213
+
+Spouses:
+Joan II Burgundy
+.
+.
+
+Style:
+King of France and Navarre
+Territories:
+France
+Navarre
+
+From:
+20/11/1316
+To:
+03/01/1322
+
+
+ID:
+877
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+IV of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+18-19/06/1294
+
+Died:
+01/02/1328
+
+Father:
+212
+
+Mother:
+213
+
+Spouses:
+Blanche
+.
+.
+
+Marie
+.
+.
+
+Jeanne
+.
+.
+
+Style:
+King of France and Navarre
+Territories:
+France
+Navarre
+
+From:
+03/01/1322
+To:
+01/02/1328
+
+
+ID:
+878
+
+Pre-name style:
+King
+
+Name:
+Henry
+
+Post-name style:
+I of Navarre
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1244
+
+Died:
+-228430
+
+Father:
+Theobald I
+
+Mother:
+Margaret
+
+Spouses:
+879
+.
+.
+
+Style:
+King of Navarre, Count of Champagne
+Territories:
+1270
+
+From:
+1274
+To:
+
+
+
+ID:
+879
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of Artois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1248
+
+Died:
+02/05/1302
+
+Father:
+Robert
+
+Mother:
+Matilda
+
+Spouses:
+878
+.
+.
+
+372
+.
+.
+
+
+
+ID:
+880
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+II, Count of Hainaut
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1247
+
+Died:
+22/08/1304
+
+Father:
+John I
+
+Mother:
+Adelaide
+
+Spouses:
+881
+.
+.
+
+Style:
+Count of Hainaut, Holland, and Zeeland
+Territories:
+Hainaut
+Holland
+Zeeland
+
+From:
+
+To:
+
+
+
+ID:
+881
+
+Pre-name style:
+.
+
+Name:
+Philippa
+
+Post-name style:
+of Luxembourg
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1252
+
+Died:
+06/04/1311
+
+Father:
+Henry V, Luxembourg
+
+Mother:
+Moarguerite
+
+Spouses:
+880
+.
+.
+
+
+
+ID:
+882
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+II, Count of Hainaut
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1307
+
+Died:
+26/09/1345
+
+Father:
+230
+
+Mother:
+214
+
+Spouses:
+Joanna
+.
+.
+
+Style:
+Count of Hainaut
+Territories:
+Hainaut
+
+From:
+
+To:
+
+
+
+ID:
+883
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1316
+
+Father:
+230
+
+Mother:
+214
+
+
+
+ID:
+884
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+II,Countess of Hainaut
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1311
+
+Died:
+23/06/1356
+
+Father:
+230
+
+Mother:
+214
+
+Spouses:
+Louis IV HRE
+.
+.
+
+Style:
+Countess of Hainaut
+Territories:
+Hainaut
+
+From:
+
+To:
+
+
+
+ID:
+885
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1327
+
+Father:
+230
+
+Mother:
+214
+
+
+
+ID:
+886
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+of Hainaut
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1315
+
+Died:
+1374
+
+Father:
+230
+
+Mother:
+214
+
+Spouses:
+William V of Julich
+.
+.
+
+
+
+ID:
+887
+
+Pre-name style:
+.
+
+Name:
+Isabelle
+
+Post-name style:
+of Hainaut
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1323
+
+Died:
+1361
+
+Father:
+230
+
+Mother:
+214
+
+Spouses:
+Robert of Namur
+.
+.
+
+
+
+ID:
+888
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1325
+
+Died:
+1328
+
+Father:
+230
+
+Mother:
+214
+
+
+
+ID:
+889
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Anjou
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1273
+
+Died:
+31/12/1299
+
+Father:
+Charles II of Naples
+
+Mother:
+Mary of Hungary
+
+Spouses:
+868
+.
+.
+
+Style:
+Countess of Anjou and Maine
+Territories:
+Anjou
+Maine
+
+From:
+1290
+To:
+1299
+
+
+ID:
+890
+
+Pre-name style:
+King
+
+Name:
+John
+
+Post-name style:
+of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/08/1296
+
+Died:
+26/08/1346
+
+Father:
+Henry VII HRE
+
+Mother:
+Margaret
+
+Spouses:
+891
+.
+.
+
+Beatrice
+.
+.
+
+Style:
+King of Bohemia
+Territories:
+Bohemia
+
+From:
+1310
+To:
+1346
+Style:
+Count of Luxembourg,Arlon and Burbuy
+Territories:
+Lux
+Ar
+Dur
+
+From:
+1313
+To:
+1346
+
+
+ID:
+891
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+20/01/1292
+
+Died:
+28/09/1330
+
+Father:
+wenceslaus II
+
+Mother:
+Judith
+
+Spouses:
+890
+.
+.
+
+
+
+ID:
+892
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of Valois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1316
+
+Died:
+1348
+
+Father:
+868
+
+Mother:
+Mahaut
+
+Spouses:
+215
+.
+.
+
+
+
+ID:
+893
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+24/05/1335
+
+Died:
+1349
+
+Father:
+215
+
+Mother:
+892
+
+Spouses:
+Louis I of Hungary
+.
+.
+
+
+
+ID:
+894
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+19/08/1342
+
+Died:
+26/04/1395
+
+Father:
+215
+
+Mother:
+892
+
+Spouses:
+Rudolf IV
+.
+.
+
+OttoV
+.
+.
+
+
+
+ID:
+895
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Bavaria
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+26/09/1329
+
+Died:
+02/02/1353
+
+Father:
+Rudolf II
+
+Mother:
+Anne
+
+Spouses:
+215
+.
+.
+
+
+
+ID:
+896
+
+Pre-name style:
+.
+
+Name:
+Wenceslaus
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1350
+
+Died:
+1351
+
+Father:
+215
+
+Mother:
+895
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+897
+
+Pre-name style:
+.
+
+Name:
+Anna
+
+Post-name style:
+von Schgweidnitz
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1339
+
+Died:
+11/07/1362
+
+Father:
+Henry
+
+Mother:
+Katharina
+
+Spouses:
+215
+.
+.
+
+
+
+ID:
+898
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1358
+
+Died:
+1373
+
+Father:
+215
+
+Mother:
+897
+
+Spouses:
+Albert III
+.
+.
+
+
+
+ID:
+899
+
+Pre-name style:
+King
+
+Name:
+Wenceslaus
+
+Post-name style:
+IV of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+26/02/1361
+
+Died:
+16/08/1419
+
+Father:
+215
+
+Mother:
+897
+
+Spouses:
+Joanna
+.
+.
+
+Sophia
+.
+.
+
+Style:
+King of Bohemia
+Territories:
+Bohemia
+
+From:
+29/11/78
+To:
+16/08/19
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+10/06/76
+To:
+20/08/00
+Style:
+Elector of Brandenburg
+Territories:
+Brandenburg
+
+From:
+02/10/73
+To:
+29/11/78
+Style:
+Duke of Luxembourg
+Territories:
+Lux
+
+From:
+07/12/83
+To:
+1388
+
+
+ID:
+900
+
+Pre-name style:
+Emperor
+
+Name:
+Sigismund
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+14/02/1368
+
+Died:
+09/11/1437
+
+Father:
+215
+
+Mother:
+216
+
+Spouses:
+Mary
+.
+.
+
+Barbara
+.
+.
+
+Style:
+King of Hungary and Croatian
+Territories:
+Hungary
+Croatia
+
+From:
+1387
+To:
+1437
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+1411
+To:
+1437
+Style:
+King of Bohemia
+Territories:
+Bohemia
+
+From:
+1419
+To:
+1437
+Style:
+HRE
+Territories:
+HRE
+
+From:
+1433
+To:
+1437
+
+
+ID:
+901
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Gorlitz
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/06/1370
+
+Died:
+01/03/1396
+
+Father:
+215
+
+Mother:
+216
+
+Spouses:
+Richardis Catherine
+.
+.
+
+
+
+ID:
+902
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+13/03/1372
+
+Died:
+24/07/1373
+
+Father:
+215
+
+Mother:
+216
+
+
+
+ID:
+903
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Bohemia
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+29/09/1373
+
+Died:
+04/06/1410
+
+Father:
+215
+
+Mother:
+216
+
+Spouses:
+John III
+.
+.
+
+
+
+ID:
+904
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1377
+
+Died:
+1378
+
+Father:
+215
+
+Mother:
+216
+
+
+
+ID:
+905
+
+Pre-name style:
+Duke
+
+Name:
+Bogislaw
+
+Post-name style:
+V of Pomerania
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+c1318
+
+Died:
+23/04/1374
+
+Father:
+Wartislaw IV
+
+Mother:
+Elizabeth
+
+Spouses:
+896
+.
+.
+
+adelheid
+.
+.
+
+Style:
+Duke of Pomerania
+Territories:
+Pomerania
+
+From:
+?
+To:
+?
+
+
+ID:
+906
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Poland
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1326
+
+Died:
+1361
+
+Father:
+Casimir III
+
+Mother:
+Aldona
+
+Spouses:
+895
+.
+.
+
+
+
+ID:
+907
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+V of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+21/01/1338
+
+Died:
+16/09/1380
+
+Father:
+935
+
+Mother:
+936
+
+Spouses:
+898
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+08/04/1364
+To:
+16/09/1380
+
+
+ID:
+908
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+of Bourbon
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+03/02/1338
+
+Died:
+06/02/1378
+
+Father:
+Peter I
+
+Mother:
+Isabella
+
+Spouses:
+897
+.
+.
+
+
+
+ID:
+909
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+25/09/1386
+
+Died:
+28/11/1386
+
+Father:
+217
+
+Mother:
+218
+
+
+
+ID:
+910
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+14/06/1388
+
+Died:
+1390
+
+Father:
+217
+
+Mother:
+218
+
+
+
+ID:
+911
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+24/01/1391
+
+Died:
+27/09/1433
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+532
+.
+.
+
+
+
+ID:
+912
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+06/02/1392
+
+Died:
+13/01/1401
+
+Father:
+217
+
+Mother:
+218
+
+
+
+ID:
+913
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of Valois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1393
+
+Died:
+19/08/1438
+
+Father:
+217
+
+Mother:
+218
+
+
+
+ID:
+914
+
+Pre-name style:
+.
+
+Name:
+Michelle
+
+Post-name style:
+of Valois
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+11/01/1395
+
+Died:
+08/07/1422
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+Philip III
+.
+.
+
+
+
+ID:
+915
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/01/1397
+
+Died:
+18/12/1415
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+Margaret
+.
+.
+
+
+
+ID:
+916
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+31/08/1398
+
+Died:
+05/04/1417
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+Jacqueline
+.
+.
+
+
+
+ID:
+917
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+VII of France
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+22/02/1403
+
+Died:
+22/07/1461
+
+Father:
+217
+
+Mother:
+218
+
+Spouses:
+Marie
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+21/10/1422
+To:
+22/07/1461
+
+
+ID:
+918
+
+Pre-name style:
+.
+
+Name:
+Philip
+
+Post-name style:
+.
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+10/11/1407
+
+Died:
+11/1407
+
+Father:
+217
+
+Mother:
+218
+
+
+
+ID:
+919
+
+Pre-name style:
+Duke
+
+Name:
+Stephen
+
+Post-name style:
+III of Bavaria
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1337
+
+Died:
+26/09/1412
+
+Father:
+Stephen II
+
+Mother:
+Elizabeth
+
+Spouses:
+910
+.
+.
+
+Elizabeth
+.
+.
+
+Style:
+Duke of Bavaria
+Territories:
+Bavaria
+
+From:
+1375
+To:
+1413
+
+
+ID:
+920
+
+Pre-name style:
+.
+
+Name:
+Taddea
+
+Post-name style:
+Visconti
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1351
+
+Died:
+28/09/1381
+
+Father:
+Bernabo Visconti
+
+Mother:
+Beatrice
+
+Spouses:
+909
+.
+.
+
+
+
+ID:
+921
+
+Pre-name style:
+Duke
+
+Name:
+Louis
+
+Post-name style:
+I of Orleans
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/03/1372
+
+Died:
+23/11/1407
+
+Father:
+907
+
+Mother:
+908
+
+Spouses:
+922
+.
+.
+
+Style:
+Duke of Orleans
+Territories:
+Orleans
+
+From:
+1392
+To:
+1407
+Style:
+Count of Valois and Duke of Touraine
+Territories:
+Valois
+
+From:
+1386
+To:
+1407
+Style:
+Count of Blois
+Territories:
+Blois
+
+From:
+1397
+To:
+1407
+Style:
+Count of Angouleme
+Territories:
+Angouleme
+
+From:
+1404
+To:
+1407
+Style:
+Count of Perrgord
+Territories:
+Perrgord
+
+From:
+1400
+To:
+1407
+Style:
+Count of Soissons
+Territories:
+Soissons
+
+From:
+1404
+To:
+1407
+
+
+ID:
+922
+
+Pre-name style:
+.
+
+Name:
+Valentina
+
+Post-name style:
+Visconti
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1368
+
+Died:
+04/12/1408
+
+Father:
+Giangaleazzo
+
+Mother:
+Isabelle of Valois
+
+Spouses:
+921
+.
+.
+
+Style:
+Countess of Vertuis
+Territories:
+Vertuis
+
+From:
+?
+To:
+?
+
+
+ID:
+923
+
+Pre-name style:
+.
+
+Name:
+Bonne
+
+Post-name style:
+of armagnac
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+19/02/1399
+
+Died:
+1430-1435
+
+Father:
+Brenard VII
+
+Mother:
+Bonne
+
+Spouses:
+219
+.
+.
+
+
+
+ID:
+924
+
+Pre-name style:
+.
+
+Name:
+Maria
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+19/09/1426
+
+Died:
+23/08/1487
+
+Father:
+Adolph
+
+Mother:
+Marie
+
+Spouses:
+219
+.
+.
+
+
+
+ID:
+925
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of Orleans
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1457
+
+Died:
+1493
+
+Father:
+219
+
+Mother:
+924
+
+Spouses:
+John of Foix
+.
+.
+
+
+
+ID:
+926
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Orleans
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1464
+
+Died:
+1491
+
+Father:
+219
+
+Mother:
+924
+
+Style:
+Abess of Fontevraud
+Territories:
+Fontevraud
+
+From:
+1477
+To:
+1491
+
+
+ID:
+927
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+III of Navarre
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/03/1306
+
+Died:
+16/09/1343
+
+Father:
+869
+
+Mother:
+Margaret
+
+Spouses:
+928
+.
+.
+
+Style:
+Count of Evreux
+Territories:
+Evreux
+
+From:
+1319
+To:
+1343
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+1328
+To:
+1343
+
+
+ID:
+928
+
+Pre-name style:
+Queen
+
+Name:
+Joan
+
+Post-name style:
+II of Navarre
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+28/01/1312
+
+Died:
+06/10/1349
+
+Father:
+875
+
+Mother:
+Margaret
+
+Spouses:
+927
+.
+.
+
+Style:
+Queen of Navarre
+Territories:
+Navarre
+
+From:
+1328
+To:
+1349
+
+
+ID:
+929
+
+Pre-name style:
+King
+
+Name:
+Charles
+
+Post-name style:
+III of Navarre
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1361
+
+Died:
+08/09/1425
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+Eleanor
+.
+.
+
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+1387
+To:
+1425
+Style:
+Count of Evreux
+Territories:
+Evreux
+
+From:
+1387
+To:
+1404
+
+
+ID:
+930
+
+Pre-name style:
+.
+
+Name:
+Peter
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/03/1366
+
+Died:
+29/07/1412
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+Catherine of Alencon
+.
+.
+
+Style:
+Count of Mortain
+Territories:
+Mortain
+
+From:
+?
+To:
+?
+
+
+ID:
+931
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1360
+
+Died:
+1400
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+Alfonso d'Aragona
+.
+.
+
+
+
+ID:
+932
+
+Pre-name style:
+.
+
+Name:
+Bonne
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1364
+
+Died:
+1389
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+933
+
+Pre-name style:
+.
+
+Name:
+Philip
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1368
+
+Died:
+?
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+934
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1372
+
+Died:
+1385
+
+Father:
+220
+
+Mother:
+221
+
+Spouses:
+
+.
+.
+
+
+
+ID:
+935
+
+Pre-name style:
+King
+
+Name:
+John
+
+Post-name style:
+II of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/04/1319
+
+Died:
+08/04/1364
+
+Father:
+Philip VI
+
+Mother:
+Joan
+
+Spouses:
+936
+.
+.
+
+Joanna
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+22/08/50
+To:
+08/04/64
+
+
+ID:
+936
+
+Pre-name style:
+.
+
+Name:
+Bonne
+
+Post-name style:
+of Bohemia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+20/05/1315
+
+Died:
+11/09/1349
+
+Father:
+890
+
+Mother:
+891
+
+Spouses:
+935
+.
+.
+
+
+
+ID:
+937
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+IV of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1295
+
+Died:
+16/09/1345
+
+Father:
+arthur
+
+Mother:
+Yolande
+
+Spouses:
+938
+.
+.
+
+Style:
+Duke of Brittany, Earl of Richmond
+Territories:
+Brittany
+Richmond
+
+From:
+1341
+To:
+1345
+
+
+ID:
+938
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+of Flanders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1295
+
+Died:
+09/1374
+
+Father:
+Louis
+
+Mother:
+Joan
+
+Spouses:
+937
+.
+.
+
+
+
+ID:
+939
+
+Pre-name style:
+.
+
+Name:
+Maredudd
+
+Post-name style:
+ap Tudor
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1406
+
+Father:
+Tudur ap Goronwy
+
+Mother:
+Marged ferch Tomos
+
+Spouses:
+940
+.
+.
+
+
+
+ID:
+940
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+ferch Dafydd
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Dafydd Fychan
+
+Mother:
+Nest ferch Ieuan
+
+Spouses:
+939
+.
+.
+
+
+
+ID:
+941
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1312
+
+Died:
+16/09/1360
+
+Father:
+Humphrey
+
+Mother:
+388
+
+Spouses:
+942
+.
+.
+
+Style:
+Earl of Northampton
+Territories:
+Northampton
+
+From:
+?
+To:
+?
+
+
+ID:
+942
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+de Badlesmere
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1313
+
+Died:
+08/06/1356
+
+Father:
+Barthomew
+
+Mother:
+Margaret
+
+Spouses:
+Edmund
+.
+.
+
+224
+.
+.
+
+
+
+ID:
+943
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1366
+
+Died:
+03/10/1399
+
+Father:
+224
+
+Mother:
+225
+
+Spouses:
+403
+.
+.
+
+
+
+ID:
+944
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+224
+
+Mother:
+225
+
+
+
+ID:
+945
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+FitsAlan
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1306
+
+Died:
+24/01/1376
+
+Father:
+Edmund
+
+Mother:
+Alice
+
+Spouses:
+Isabel
+.
+.
+
+946
+.
+.
+
+Style:
+Earl of Arundel and Surrey
+Territories:
+Arundel
+Surrey
+
+From:
+?
+To:
+?
+
+
+ID:
+946
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Lancaster
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1311-1318
+
+Died:
+11/01/1372
+
+Father:
+Henry
+
+Mother:
+Maud
+
+Spouses:
+John
+.
+.
+
+945
+.
+.
+
+
+
+ID:
+947
+
+Pre-name style:
+King
+
+Name:
+Louis
+
+Post-name style:
+II of Naples
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1377
+
+Died:
+29/04/1417
+
+Father:
+Louis
+
+Mother:
+Marie
+
+Spouses:
+948
+.
+.
+
+Style:
+King of Naples
+Territories:
+Naples
+
+From:
+1389
+To:
+1399
+Style:
+Duke of Anjou
+Territories:
+Anjou
+
+From:
+1384
+To:
+1417
+
+
+ID:
+948
+
+Pre-name style:
+.
+
+Name:
+Yolande
+
+Post-name style:
+of Aragon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/08/1384
+
+Died:
+14/11/1442
+
+Father:
+John
+
+Mother:
+Yolande
+
+Spouses:
+947
+.
+.
+
+
+
+ID:
+949
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+II of Anjou
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/08/1424
+
+Died:
+16/12/1470
+
+Father:
+231
+
+Mother:
+232
+
+Spouses:
+Marie
+.
+.
+
+Style:
+Duke of Lorraine
+Territories:
+Lorraine
+
+From:
+1453
+To:
+1470
+
+
+ID:
+950
+
+Pre-name style:
+.
+
+Name:
+Rene
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1426
+
+Died:
+?
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+951
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+of Anjou
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/10/1427
+
+Died:
+1444
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+952
+
+Pre-name style:
+.
+
+Name:
+Nicholas
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1428
+
+Died:
+?
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+953
+
+Pre-name style:
+.
+
+Name:
+Yolande
+
+Post-name style:
+de Bar
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/11/1428
+
+Died:
+23/03/1483
+
+Father:
+231
+
+Mother:
+232
+
+Spouses:
+Frederick
+.
+.
+
+
+
+ID:
+954
+
+Pre-name style:
+.
+
+Name:
+Charles
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1431
+
+Died:
+1432
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+955
+
+Pre-name style:
+.
+
+Name:
+Isabelle
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+956
+
+Pre-name style:
+.
+
+Name:
+Louise
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1436
+
+Died:
+?
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+957
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1437
+
+Died:
+?
+
+Father:
+231
+
+Mother:
+232
+
+
+
+ID:
+958
+
+Pre-name style:
+Duke
+
+Name:
+Charles
+
+Post-name style:
+II of Lorraine
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1364
+
+Died:
+25/01/1431
+
+Father:
+John
+
+Mother:
+Sopie
+
+Spouses:
+959
+.
+.
+
+Style:
+Duke of Lorraine
+Territories:
+Lorraine
+
+From:
+1390
+To:
+1431
+
+
+ID:
+959
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of the Palatinate
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1376
+
+Died:
+26/08/1434
+
+Father:
+Rupert
+
+Mother:
+Elisabeth
+
+Spouses:
+958
+.
+.
+
+
+
+ID:
+960
+
+Pre-name style:
+.
+
+Name:
+Jeanne
+
+Post-name style:
+de Laval
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/11/1433
+
+Died:
+19/12/1498
+
+Father:
+Guy XIV
+
+Mother:
+Isabella
+
+Spouses:
+231
+.
+.
+
+
+
+ID:
+961
+
+Pre-name style:
+Sir
+
+Name:
+Richard
+
+Post-name style:
+Wydeville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+962
+.
+.
+
+
+
+ID:
+962
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+Bedlisgate
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+961
+.
+.
+
+
+
+ID:
+963
+
+Pre-name style:
+.
+
+Name:
+Anthony
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1440
+
+Died:
+25/06/1483
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+Elizabeth
+.
+.
+
+Mary
+.
+.
+
+Style:
+Earl Rivers
+Territories:
+Rivers
+
+From:
+?
+To:
+?
+
+
+ID:
+964
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1454
+
+Died:
+1490
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+Thomas Fitzalan
+.
+.
+
+
+
+ID:
+965
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1445
+
+Died:
+12/08/1469
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+Catherine Neville
+.
+.
+
+
+
+ID:
+966
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1458
+
+Died:
+18/05/1497
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+Henry Stafford
+.
+.
+
+539
+.
+.
+
+Richard Wingfield
+.
+.
+
+
+
+ID:
+967
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1438
+
+Died:
+30/07/1489
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+William
+.
+.
+
+George
+.
+.
+
+Richard
+.
+.
+
+
+
+ID:
+968
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1452
+
+Died:
+1512
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+Anthony
+.
+.
+
+
+
+ID:
+969
+
+Pre-name style:
+.
+
+Name:
+Jacquetta
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1444
+
+Died:
+1509
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+John le Strange
+.
+.
+
+
+
+ID:
+970
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1456
+
+Died:
+1481
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+William Herbert
+.
+.
+
+
+
+ID:
+971
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+C1454-1458
+
+Died:
+28/07/1488
+
+Father:
+233
+
+Mother:
+234
+
+Style:
+Lord Scales
+Territories:
+Scales
+
+From:
+?
+To:
+?
+
+
+ID:
+972
+
+Pre-name style:
+.
+
+Name:
+Lionel
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1446
+
+Died:
+1484
+
+Father:
+233
+
+Mother:
+234
+
+Style:
+Bishop of Salisbury
+Territories:
+Salisbury
+
+From:
+1482
+To:
+1484
+
+
+ID:
+973
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1453
+
+Died:
+06/03/1491
+
+Father:
+233
+
+Mother:
+234
+
+Style:
+Earl Rivers
+Territories:
+Rivers
+
+From:
+?
+To:
+?
+
+
+ID:
+974
+
+Pre-name style:
+.
+
+Name:
+Lewis
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1438
+
+Died:
+?
+
+Father:
+233
+
+Mother:
+234
+
+
+
+ID:
+975
+
+Pre-name style:
+.
+
+Name:
+Martha
+
+Post-name style:
+Woodville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1500
+
+Father:
+233
+
+Mother:
+234
+
+Spouses:
+Sir John Bromley
+.
+.
+
+
+
+ID:
+976
+
+Pre-name style:
+Count
+
+Name:
+Peter
+
+Post-name style:
+I of Luxembourg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1390
+
+Died:
+31/08/1433
+
+Father:
+John
+
+Mother:
+Marguerite
+
+Spouses:
+977
+.
+.
+
+Style:
+Count of Saint-Pol
+Territories:
+Saint-Pol
+
+From:
+?
+To:
+?
+
+
+ID:
+977
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Baux
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1394
+
+Died:
+15/11/1469
+
+Father:
+Francis
+
+Mother:
+Sueva
+
+Spouses:
+976
+.
+.
+
+
+
+ID:
+978
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Grey
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1415
+
+Died:
+1457
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+979
+.
+.
+
+
+
+ID:
+979
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Ferrers
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1419
+
+Died:
+1483
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+978
+.
+.
+
+
+
+ID:
+980
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Neville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1400
+
+Died:
+31/12/1460
+
+Father:
+Ralph
+
+Mother:
+594
+
+Spouses:
+981
+.
+.
+
+Style:
+Earl of Salisbury
+Territories:
+Salisbury
+
+From:
+?
+To:
+?
+
+
+ID:
+981
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+Montacute
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1407
+
+Died:
+c1462
+
+Father:
+Thomas
+
+Mother:
+Eleanor Holland
+
+Spouses:
+980
+.
+.
+
+
+
+ID:
+982
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+Neville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/09/1451
+
+Died:
+22/12/1476
+
+Father:
+236
+
+Mother:
+237
+
+Spouses:
+601
+.
+.
+
+
+
+ID:
+983
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+de Beauchamp
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/1382
+
+Died:
+30/04/1439
+
+Father:
+Thomas
+
+Mother:
+Margaret
+
+Spouses:
+Elizabeth
+.
+.
+
+984
+.
+.
+
+Style:
+Earl of Warwick
+Territories:
+Warwick
+
+From:
+?
+To:
+?
+
+
+ID:
+984
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+le Despenser
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/07/1400
+
+Died:
+1439
+
+Father:
+Thomas
+
+Mother:
+610
+
+Spouses:
+Richard
+.
+.
+
+983
+.
+.
+
+
+
+ID:
+985
+
+Pre-name style:
+King
+
+Name:
+John
+
+Post-name style:
+II of Aragon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/06/1398
+
+Died:
+20/01/1479
+
+Father:
+Ferdinand
+
+Mother:
+Eleanor
+
+Spouses:
+Blanche
+.
+.
+
+986
+.
+.
+
+Style:
+King of Aragon
+Territories:
+Aragon
+
+From:
+1458
+To:
+1479
+
+
+ID:
+986
+
+Pre-name style:
+.
+
+Name:
+Juana
+
+Post-name style:
+Enriquez
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1425
+
+Died:
+13/02/1468
+
+Father:
+Fadrique
+
+Mother:
+Mariana
+
+Spouses:
+985
+.
+.
+
+
+
+ID:
+987
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Aragon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/10/1470
+
+Died:
+23/08/1498
+
+Father:
+239
+
+Mother:
+240
+
+Spouses:
+Alfonso
+.
+.
+
+ Manuel
+.
+.
+
+
+
+ID:
+988
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Prince of Asturias
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/06/1478
+
+Died:
+04/10/1497
+
+Father:
+239
+
+Mother:
+240
+
+Spouses:
+Margaret
+.
+.
+
+
+
+ID:
+989
+
+Pre-name style:
+Queen
+
+Name:
+Joanna
+
+Post-name style:
+of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/11/1479
+
+Died:
+12/04/1555
+
+Father:
+239
+
+Mother:
+240
+
+Spouses:
+Philip
+.
+.
+
+Style:
+Queen of Castile and Leon
+Territories:
+Castile
+Leon1504
+
+From:
+1504
+To:
+1555
+Style:
+Queen of Aragon
+Territories:
+Aragon
+
+From:
+1516
+To:
+1555
+
+
+ID:
+990
+
+Pre-name style:
+.
+
+Name:
+Maria
+
+Post-name style:
+of Aragon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/06/1482
+
+Died:
+07/03/1517
+
+Father:
+239
+
+Mother:
+240
+
+Spouses:
+Manuel
+.
+.
+
+
+
+ID:
+991
+
+Pre-name style:
+.
+
+Name:
+Anna
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1482
+
+Died:
+1482
+
+Father:
+239
+
+Mother:
+240
+
+
+
+ID:
+992
+
+Pre-name style:
+.
+
+Name:
+Germaine
+
+Post-name style:
+of Foix
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1488
+
+Died:
+18/10/1538
+
+Father:
+John
+
+Mother:
+925
+
+Spouses:
+239
+.
+.
+
+Johann
+.
+.
+
+Ferdinand
+.
+.
+
+
+
+ID:
+993
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/05/1509
+
+Died:
+03/05/1509
+
+Father:
+239
+
+Mother:
+992
+
+
+
+ID:
+994
+
+Pre-name style:
+King
+
+Name:
+John
+
+Post-name style:
+II of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/03/1405
+
+Died:
+20/07/1454
+
+Father:
+Henry
+
+Mother:
+589
+
+Spouses:
+Maria
+.
+.
+
+995
+.
+.
+
+Style:
+King of Castile and Leon
+Territories:
+Castile
+Leon25/12/1406
+
+From:
+20/07/1454
+To:
+
+
+
+ID:
+995
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Portugal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1428
+
+Died:
+15/08/1496
+
+Father:
+John
+
+Mother:
+Isabella
+
+Spouses:
+994
+.
+.
+
+
+
+ID:
+996
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Boleyn
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1451
+
+Died:
+10/10/1505
+
+Father:
+Geoffrey
+
+Mother:
+Anne Hoo
+
+Spouses:
+997
+.
+.
+
+
+
+ID:
+997
+
+Pre-name style:
+Lady
+
+Name:
+Margaret
+
+Post-name style:
+Butler
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1454
+
+Died:
+1539
+
+Father:
+Thomas
+
+Mother:
+Anne
+
+Spouses:
+996
+.
+.
+
+
+
+ID:
+998
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Boleyn
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1499
+
+Died:
+19/07/1543
+
+Father:
+242
+
+Mother:
+243
+
+Spouses:
+William Carey
+.
+.
+
+William Stafford
+.
+.
+
+
+
+ID:
+999
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Boleyn
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1500
+
+Died:
+?
+
+Father:
+242
+
+Mother:
+243
+
+
+
+ID:
+1000
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Boleyn
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1502
+
+Died:
+?
+
+Father:
+242
+
+Mother:
+243
+
+
+
+ID:
+1001
+
+Pre-name style:
+.
+
+Name:
+George
+
+Post-name style:
+Boleyn
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1504
+
+Died:
+17/05/1536
+
+Father:
+242
+
+Mother:
+243
+
+Spouses:
+Jane Parker
+.
+.
+
+
+
+ID:
+1002
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1443
+
+Died:
+21/05/1524
+
+Father:
+John Howard
+
+Mother:
+Katherine
+
+Spouses:
+1003
+.
+.
+
+Agnes
+.
+.
+
+Style:
+Duke of Norfolk
+Territories:
+Norfolk
+
+From:
+?
+To:
+?
+
+
+ID:
+1003
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Tilney
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+Before 1445
+
+Died:
+-147088
+
+Father:
+Frederick
+
+Mother:
+Elizabeth
+
+Spouses:
+Humphrey
+.
+.
+
+1002
+.
+.
+
+
+
+ID:
+1004
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Seymour
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1450
+
+Died:
+26/10/1491
+
+Father:
+John
+
+Mother:
+Elizabeth
+
+Spouses:
+1005
+.
+.
+
+?
+.
+.
+
+
+
+ID:
+1005
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Darrel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1451
+
+Died:
+?
+
+Father:
+George
+
+Mother:
+Margaret
+
+Spouses:
+1004
+.
+.
+
+
+
+ID:
+1006
+
+Pre-name style:
+.
+
+Name:
+Margery
+
+Post-name style:
+Seymour
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1528
+
+Father:
+244
+
+Mother:
+245
+
+
+
+ID:
+1007
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Seymour
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+15/07/1510
+
+Father:
+244
+
+Mother:
+245
+
+
+
+ID:
+1008
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Seymour
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1500
+
+Died:
+22/01/1552
+
+Father:
+244
+
+Mother:
+245
+
+Spouses:
+Catherine
+.
+.
+
+Anne
+.
+.
+
+Style:
+Duke of Somerset
+Territories:
+Somerset
+
+From:
+?
+To:
+?
+
+
+ID:
+1009
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Seymour
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1518
+
+Died:
+19/03/1568
+
+Father:
+244
+
+Mother:
+245
+
+
+
+ID:
+1010
+
+Pre-name style:
+Sir
+
+Name:
+Henry
+
+Post-name style:
+Seymour
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1503
+
+Died:
+05/04/1578
+
+Father:
+244
+
+Mother:
+245
+
+Spouses:
+Barbara
+.
+.
+
+
+
+ID:
+1011
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Wentworth
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1448
+
+Died:
+c1500
+
+Father:
+Philip
+
+Mother:
+Mary
+
+Spouses:
+1012
+.
+.
+
+Elizabeth
+.
+.
+
+
+
+ID:
+1012
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Say
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c1494
+
+Father:
+John
+
+Mother:
+Elizabeth
+
+Spouses:
+1011
+.
+.
+
+
+
+ID:
+1013
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+II of Cleves
+
+URL:
+. 
+
+Picture:
+.
+
+Born:
+1458
+
+Died:
+1521
+
+Father:
+John I
+
+Mother:
+Elizabeth
+
+Spouses:
+1014
+.
+.
+
+Style:
+Duke of Cleves
+Territories:
+Cleves
+
+From:
+1481
+To:
+1521
+
+
+ID:
+1014
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+of Hesse
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+04/07/1473
+
+Died:
+19/02/1505
+
+Father:
+Henry III
+
+Mother:
+Anna
+
+Spouses:
+1013
+.
+.
+
+
+
+ID:
+1015
+
+Pre-name style:
+.
+
+Name:
+Sibylle
+
+Post-name style:
+of Cleves
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/01/1512
+
+Died:
+21/02/1554
+
+Father:
+1013
+
+Mother:
+1014
+
+Spouses:
+John Frederick
+.
+.
+
+
+
+ID:
+1016
+
+Pre-name style:
+Duke
+
+Name:
+William
+
+Post-name style:
+of Julich-Cleves-Berg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+28/07/1516
+
+Died:
+05/01/1592
+
+Father:
+1013
+
+Mother:
+1014
+
+Spouses:
+1081
+.
+.
+
+Style:
+Duke of Julich-Cleves-Berg
+Territories:
+Julich-Cleves-Berg
+
+From:
+1539
+To:
+1592
+
+
+ID:
+1017
+
+Pre-name style:
+.
+
+Name:
+Amalia
+
+Post-name style:
+of Cleves
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/10/1517
+
+Died:
+01/03/1586
+
+Father:
+1013
+
+Mother:
+1014
+
+
+
+ID:
+1018
+
+Pre-name style:
+Duke
+
+Name:
+William
+
+Post-name style:
+IV of Julich-Berg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/01/1455
+
+Died:
+06/09/1511
+
+Father:
+Gerhard VII
+
+Mother:
+Sophie
+
+Spouses:
+1019
+.
+.
+
+Style:
+Duke of Julich-Berg
+Territories:
+Julich-Berg
+
+From:
+1475
+To:
+1511
+
+
+ID:
+1019
+
+Pre-name style:
+.
+
+Name:
+Sibylle
+
+Post-name style:
+of Brandenburgh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/05/1467
+
+Died:
+09/07/1524
+
+Father:
+Albrecht
+
+Mother:
+Anna
+
+Spouses:
+1018
+.
+.
+
+
+
+ID:
+1020
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+248
+
+Mother:
+249
+
+
+
+ID:
+1021
+
+Pre-name style:
+Sir
+
+Name:
+Charles
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+248
+
+Mother:
+249
+
+
+
+ID:
+1022
+
+Pre-name style:
+Sir
+
+Name:
+George
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1519
+
+Died:
+1580
+
+Father:
+248
+
+Mother:
+249
+
+
+
+ID:
+1023
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1515
+
+Died:
+10/10/1572
+
+Father:
+248
+
+Mother:
+249
+
+Spouses:
+Thomas
+.
+.
+
+
+
+ID:
+1024
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+248
+
+Mother:
+249
+
+Spouses:
+Edmund
+.
+.
+
+
+
+ID:
+1025
+
+Pre-name style:
+.
+
+Name:
+Dorothy
+
+Post-name style:
+Troyes
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Thomas Troyes
+
+Mother:
+?
+
+Spouses:
+248
+.
+.
+
+
+
+ID:
+1026
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Munday
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+John Munday
+
+Mother:
+?
+
+Spouses:
+Nicholas Jennings
+.
+.
+
+248
+.
+.
+
+
+
+ID:
+1027
+
+Pre-name style:
+Sir
+
+Name:
+Richard
+
+Post-name style:
+Culpepper
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+04/10/1484
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1028
+.
+.
+
+
+
+ID:
+1028
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+Worsley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1460
+
+Died:
+18/04/1527
+
+Father:
+Otewell Worsley
+
+Mother:
+Rose Trevor
+
+Spouses:
+1027
+.
+.
+
+
+
+ID:
+1029
+
+Pre-name style:
+.
+
+Name:
+Ralph
+
+Post-name style:
+Leigh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Ralph Leigh
+
+Mother:
+Elizabeth Langley
+
+Spouses:
+249
+.
+.
+
+
+
+ID:
+1030
+
+Pre-name style:
+Sir
+
+Name:
+John
+
+Post-name style:
+Leigh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1502
+
+Died:
+1564
+
+Father:
+1029
+
+Mother:
+249
+
+Spouses:
+Elizabeth
+.
+.
+
+
+
+ID:
+1031
+
+Pre-name style:
+.
+
+Name:
+Ralph
+
+Post-name style:
+Leigh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1029
+
+Mother:
+249
+
+Spouses:
+Margaret Ireland
+.
+.
+
+
+
+ID:
+1032
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+Leigh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1495
+
+Died:
+16/02/1573
+
+Father:
+1029
+
+Mother:
+249
+
+Spouses:
+Edward Baynton
+.
+.
+
+
+
+ID:
+1033
+
+Pre-name style:
+.
+
+Name:
+Joyce
+
+Post-name style:
+Leigh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1029
+
+Mother:
+249
+
+Spouses:
+John Stanney
+.
+.
+
+
+
+ID:
+1034
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Leigh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1029
+
+Mother:
+249
+
+Spouses:
+? Rice
+.
+.
+
+
+
+ID:
+1035
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Parr
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1434
+
+Died:
+1483
+
+Father:
+Thomas Parr
+
+Mother:
+Alice
+
+Spouses:
+Joan Trusbut
+.
+.
+
+ 1036
+.
+.
+
+
+
+ID:
+1036
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+FitzHugh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1455
+
+Died:
+r1507
+
+Father:
+Henry
+
+Mother:
+Alice Neville
+
+Spouses:
+1035
+.
+.
+
+Nicholas
+.
+.
+
+
+
+ID:
+1037
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Parr
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/08/1513
+
+Died:
+28/10/1571
+
+Father:
+250
+
+Mother:
+251
+
+Spouses:
+Anne
+.
+.
+
+Elizabeth
+.
+.
+
+Helena
+.
+.
+
+
+
+ID:
+1038
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Herbert
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+15/06/1515
+
+Died:
+20/02/1553
+
+Father:
+250
+
+Mother:
+251
+
+Spouses:
+William
+.
+.
+
+
+
+ID:
+1039
+
+Pre-name style:
+Sir
+
+Name:
+Thomas
+
+Post-name style:
+Green
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1461
+
+Died:
+09/11/1506
+
+Father:
+Thomas Green
+
+Mother:
+Matilda Throckmorton
+
+Spouses:
+1040
+.
+.
+
+
+
+ID:
+1040
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+Fogge
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1466
+
+Died:
+?
+
+Father:
+John Fogge
+
+Mother:
+?
+
+Spouses:
+1039
+.
+.
+
+
+
+ID:
+1041
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Burgh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1488
+
+Died:
+28/02/1550
+
+Father:
+Edward Burgh
+
+Mother:
+Anne
+
+Spouses:
+1042
+.
+.
+
+Alice
+.
+.
+
+
+
+ID:
+1042
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+Tyrwhitt
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+William Tyrwhitt
+
+Mother:
+?
+
+Spouses:
+1041
+.
+.
+
+
+
+ID:
+1043
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+Neville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1468
+
+Died:
+c1530
+
+Father:
+Henry Neville
+
+Mother:
+Joan Bourchier
+
+Spouses:
+1044
+.
+.
+
+Margaret
+.
+.
+
+
+
+ID:
+1044
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Stafford
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Humphrey
+
+Mother:
+Katherine
+
+Spouses:
+1043
+.
+.
+
+
+
+ID:
+1045
+
+Pre-name style:
+.
+
+Name:
+Dorothy
+
+Post-name style:
+de Vere
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+07/02/1527
+
+Father:
+George
+
+Mother:
+Margaret
+
+Spouses:
+253
+.
+.
+
+
+
+ID:
+1046
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Neville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1520
+
+Died:
+22/04/1577
+
+Father:
+253
+
+Mother:
+1045
+
+Spouses:
+Lucy
+.
+.
+
+
+
+ID:
+1047
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Neville
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1525
+
+Died:
+1546
+
+Father:
+253
+
+Mother:
+1045
+
+
+
+ID:
+1048
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Musgrave
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Edward Musgrave
+
+Mother:
+?
+
+Spouses:
+253
+.
+.
+
+
+
+ID:
+1049
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+Dudley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1462
+
+Died:
+17/08/1510
+
+Father:
+John Dudley
+
+Mother:
+Elizabeth
+
+Spouses:
+Anne
+.
+.
+
+1050
+.
+.
+
+
+
+ID:
+1050
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Grey
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Edward
+
+Mother:
+Elizabeth
+
+Spouses:
+1049
+.
+.
+
+Arthur
+.
+.
+
+
+
+ID:
+1051
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Dudley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+255
+
+Mother:
+256
+
+
+
+ID:
+1052
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Dudley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+255
+
+Mother:
+256
+
+
+
+ID:
+1053
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Dudley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1527
+
+Died:
+21/10/1554
+
+Father:
+255
+
+Mother:
+256
+
+Spouses:
+Anne Seymour
+.
+.
+
+
+
+ID:
+1054
+
+Pre-name style:
+.
+
+Name:
+Ambrose
+
+Post-name style:
+Dudley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1530
+
+Died:
+21/02/1590
+
+Father:
+255
+
+Mother:
+256
+
+Spouses:
+Anne
+.
+.
+
+Elizabeth
+.
+.
+
+Anne
+.
+.
+
+
+
+ID:
+1055
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+Dudley
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/06/1532
+
+Died:
+04/09/1588
+
+Father:
+255
+
+Mother:
+256
+
+Spouses:
+Amy Robsart
+.
+.
+
+Lettice Knollys
+.
+.
+
+Style:
+Earl of Leicester
+Territories:
+Leicester
+
+From:
+?
+To:
+?
+
+
+ID:
+1056
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Sidney
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1530
+
+Died:
+09/08/1586
+
+Father:
+255
+
+Mother:
+256
+
+Spouses:
+Henry Sidney
+.
+.
+
+
+
+ID:
+1057
+
+Pre-name style:
+.
+
+Name:
+Katherine
+
+Post-name style:
+Hastings
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1538
+
+Died:
+14/08/1620
+
+Father:
+255
+
+Mother:
+256
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+1058
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Guildford
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1474
+
+Died:
+1534
+
+Father:
+Richard
+
+Mother:
+Anne
+
+Spouses:
+1059
+.
+.
+
+Joan
+.
+.
+
+
+
+ID:
+1059
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+West
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Thomas
+
+Mother:
+?
+
+Spouses:
+1058
+.
+.
+
+
+
+ID:
+1060
+
+Pre-name style:
+King
+
+Name:
+Philip
+
+Post-name style:
+I of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/07/1478
+
+Died:
+25/09/1506
+
+Father:
+Maximilian
+
+Mother:
+Mary
+
+Spouses:
+989
+.
+.
+
+Style:
+King of Castile and Leon
+Territories:
+Castile
+Leon
+
+From:
+27/06/1506
+To:
+25/09/1506
+Style:
+Duke of Luxembourg
+Territories:
+Luxembourg
+
+From:
+27/03/1482
+To:
+25/09/1506
+
+
+ID:
+1061
+
+Pre-name style:
+.
+
+Name:
+Maria
+
+Post-name style:
+of Austria
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/06/1528
+
+Died:
+26/02/1603
+
+Father:
+257
+
+Mother:
+258
+
+Spouses:
+1068
+.
+.
+
+
+
+ID:
+1062
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+of Austria
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/06/1535
+
+Died:
+07/09/1573
+
+Father:
+257
+
+Mother:
+258
+
+Spouses:
+John Manuel
+.
+.
+
+
+
+ID:
+1063
+
+Pre-name style:
+.
+
+Name:
+Manuel
+
+Post-name style:
+I of Portugal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/05/1469
+
+Died:
+13/12/1521
+
+Father:
+Ferdinand
+
+Mother:
+Beatrices
+
+Spouses:
+Isabella
+.
+.
+
+990
+.
+.
+
+Eleanor
+.
+.
+
+
+
+ID:
+1064
+
+Pre-name style:
+King
+
+Name:
+John
+
+Post-name style:
+III of Portugal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+-145198
+
+Died:
+-125075
+
+Father:
+1063
+
+Mother:
+990
+
+Spouses:
+1065
+
+
+
+Style:
+King of Portugal and the Algarves
+Territories:
+Portugal
+Algarves
+
+From:
+?
+To:
+?
+
+
+ID:
+1065
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+of Austria
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/01/1507
+
+Died:
+12/02/1578
+
+Father:
+1060
+
+Mother:
+989
+
+Spouses:
+1064
+.
+.
+
+
+
+ID:
+1066
+
+Pre-name style:
+King
+
+Name:
+Henry
+
+Post-name style:
+II of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/03/1519
+
+Died:
+10/07/1559
+
+Father:
+Francis I
+
+Mother:
+Claude
+
+Spouses:
+1067
+.
+.
+
+Style:
+King of France
+Territories:
+France
+
+From:
+31/03/1547
+To:
+10/07/1559
+
+
+ID:
+1067
+
+Pre-name style:
+.
+
+Name:
+Catherine
+
+Post-name style:
+de'Medici
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/04/1519
+
+Died:
+05/01/1589
+
+Father:
+Lorenzo II de'Medici
+
+Mother:
+Madelaine de La Tour d'Auvergne
+
+Spouses:
+1066
+.
+.
+
+
+
+ID:
+1068
+
+Pre-name style:
+Emperor
+
+Name:
+Maximilian
+
+Post-name style:
+II
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/07/1527
+
+Died:
+12/10/1576
+
+Father:
+Ferdinand I
+
+Mother:
+Anna of Behemia
+
+Spouses:
+1061
+.
+.
+
+Style:
+King of Bohemia
+Territories:
+Bohemia
+
+From:
+20/09/1563
+To:
+12/10/1576
+Style:
+King of Hungary and Croatia
+Territories:
+Hungary
+Croatia
+
+From:
+08/09/1563
+To:
+12/10/1576
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+25/11/1562
+To:
+12/10/1576
+Style:
+HRE, Archduke of Austria
+Territories:
+HRE
+Austria
+
+From:
+25/07/1564
+To:
+12/10/1576
+
+
+ID:
+1069
+
+Pre-name style:
+King
+
+Name:
+Christian
+
+Post-name style:
+III of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+12/08/1503
+
+Died:
+101/01/1559
+
+Father:
+Frederick I
+
+Mother:
+Anna of Brandenburg
+
+Spouses:
+1070
+.
+.
+
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+1534
+To:
+1559
+Style:
+King of Norway
+Territories:
+Norway
+
+From:
+1537
+To:
+1559
+
+
+ID:
+1070
+
+Pre-name style:
+.
+
+Name:
+Dorothea
+
+Post-name style:
+of Saxe-Lauenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/07/1511
+
+Died:
+07/10/1571
+
+Father:
+Magnus
+
+Mother:
+Catherine
+
+Spouses:
+1069
+.
+.
+
+
+
+ID:
+1071
+
+Pre-name style:
+King
+
+Name:
+Christian
+
+Post-name style:
+IV of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+12/04/1577
+
+Died:
+28/02/1648
+
+Father:
+262
+
+Mother:
+263
+
+Spouses:
+Anne
+.
+.
+
+Kirsten
+.
+.
+
+Style:
+King of Denmark and Norway
+Territories:
+Denmark
+Norway
+
+From:
+04/04/1588
+To:
+28/02/1648
+
+
+ID:
+1072
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/08/1573
+
+Died:
+19/06/1626
+
+Father:
+262
+
+Mother:
+263
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+1073
+
+Pre-name style:
+.
+
+Name:
+Augusta
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+08/04/1580
+
+Died:
+05/02/1639
+
+Father:
+262
+
+Mother:
+263
+
+Spouses:
+John Adolf
+.
+.
+
+
+
+ID:
+1074
+
+Pre-name style:
+.
+
+Name:
+Hedwig
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/08/1581
+
+Died:
+26/11/1641
+
+Father:
+262
+
+Mother:
+263
+
+Spouses:
+Christian II
+.
+.
+
+
+
+ID:
+1075
+
+Pre-name style:
+.
+
+Name:
+John 
+
+Post-name style:
+of Scleswig-Holstein
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/07/1583
+
+Died:
+28/10/1602
+
+Father:
+262
+
+Mother:
+263
+
+
+
+ID:
+1076
+
+Pre-name style:
+.
+
+Name:
+Ulrik John
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/12/1578
+
+Died:
+27/03/1624
+
+Father:
+262
+
+Mother:
+263
+
+
+
+ID:
+1077
+
+Pre-name style:
+.
+
+Name:
+John August
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1579
+
+Died:
+1579
+
+Father:
+262
+
+Mother:
+263
+
+
+
+ID:
+1078
+
+Pre-name style:
+Duke
+
+Name:
+Ulrich
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/03/1527
+
+Died:
+14/03/1603
+
+Father:
+Albert VII
+
+Mother:
+Anna
+
+Spouses:
+1079
+.
+.
+
+Style:
+Duke of Mecklenburg
+Territories:
+Mecklenburg
+
+From:
+1555
+To:
+1603
+
+
+ID:
+1079
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/10/1524
+
+Died:
+15/10/1586
+
+Father:
+Frederick I
+
+Mother:
+Sophie
+
+Spouses:
+1078
+.
+.
+
+
+
+ID:
+1080
+
+Pre-name style:
+King
+
+Name:
+Antoine Bourbon
+
+Post-name style:
+of Navarre
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/04/1518
+
+Died:
+17/1/1562
+
+Father:
+Charles
+
+Mother:
+Francoise
+
+Spouses:
+1081
+.
+.
+
+Style:
+King of Navarre
+Territories:
+Navarre
+
+From:
+25/05/1555
+To:
+17/11/1562
+
+
+ID:
+1081
+
+Pre-name style:
+Queen
+
+Name:
+Jeanne d'Albret
+
+Post-name style:
+of Navarre
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+07/01/1528
+
+Died:
+09/06/1572
+
+Father:
+Henry
+
+Mother:
+Margaret
+
+Spouses:
+1016
+.
+.
+
+1080
+.
+.
+
+Style:
+Queen of Navarre
+Territories:
+Navarre
+
+From:
+25/05/1555
+To:
+09/06/1572
+
+
+ID:
+1082
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Valois
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/05/1553
+
+Died:
+27/03/1615
+
+Father:
+1066
+
+Mother:
+1067
+
+Spouses:
+264
+.
+.
+
+
+
+ID:
+1083
+
+Pre-name style:
+King
+
+Name:
+Louis Bourbon
+
+Post-name style:
+XIII of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/09/1601
+
+Died:
+14/05/1643
+
+Father:
+264
+
+Mother:
+265
+
+Spouses:
+Anne
+.
+.
+
+Style:
+King of France and Navarre
+Territories:
+France
+Navarre
+
+From:
+14/05/1610
+To:
+14/05/1643
+
+
+ID:
+1084
+
+Pre-name style:
+.
+
+Name:
+Elisabeth
+
+Post-name style:
+of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/11/1602
+
+Died:
+06/10/1644
+
+Father:
+264
+
+Mother:
+265
+
+Spouses:
+Philip
+.
+.
+
+
+
+ID:
+1085
+
+Pre-name style:
+.
+
+Name:
+Christine Marie
+
+Post-name style:
+of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/02/1606
+
+Died:
+27/12/1663
+
+Father:
+264
+
+Mother:
+265
+
+Spouses:
+Victor
+.
+.
+
+
+
+ID:
+1086
+
+Pre-name style:
+.
+
+Name:
+Nicolas Henri
+
+Post-name style:
+de France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/04/1607
+
+Died:
+17/11/1611
+
+Father:
+264
+
+Mother:
+265
+
+Style:
+Duke of Orleans
+Territories:
+Orleans
+
+From:
+?
+To:
+?
+
+
+ID:
+1087
+
+Pre-name style:
+.
+
+Name:
+Gaston Jean-Baptiste
+
+Post-name style:
+of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/04/1608
+
+Died:
+02/02/1660
+
+Father:
+264
+
+Mother:
+265
+
+Spouses:
+Marie
+.
+.
+
+Marguerite
+.
+.
+
+Style:
+Duke of Orleans
+Territories:
+Orleans
+
+From:
+06/08/1626
+To:
+02/02/1660
+
+
+ID:
+1088
+
+Pre-name style:
+Grand Duke
+
+Name:
+Francestco
+
+Post-name style:
+I de'Medici
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/03/1541
+
+Died:
+17/10/1587
+
+Father:
+Cosimo I
+
+Mother:
+Eleanor
+
+Spouses:
+1089
+.
+.
+
+Bianca
+.
+.
+
+Style:
+Grand Duke of Tuscany
+Territories:
+Tuscany
+
+From:
+21/04/1574
+To:
+17/10/1587
+
+
+ID:
+1089
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+of Austria
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/01/1547
+
+Died:
+11/04/1578
+
+Father:
+Ferdinand
+
+Mother:
+Anna
+
+Spouses:
+1088
+.
+.
+
+
+
+ID:
+1090
+
+Pre-name style:
+Duke
+
+Name:
+Teodosio
+
+Post-name style:
+II of Braganza
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+28/04/1568
+
+Died:
+29/11/1630
+
+Father:
+Joao
+
+Mother:
+Catherine
+
+Spouses:
+1091
+.
+.
+
+Style:
+Duke of Braganza
+Territories:
+Braganza
+
+From:
+1583
+To:
+1630
+
+
+ID:
+1091
+
+Pre-name style:
+.
+
+Name:
+Ana
+
+Post-name style:
+de Valasco y Giron
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1585
+
+Died:
+07/11/1607
+
+Father:
+Juan
+
+Mother:
+Maria
+
+Spouses:
+1090
+.
+.
+
+
+
+ID:
+1092
+
+Pre-name style:
+Prince
+
+Name:
+Teodosio
+
+Post-name style:
+of Brazil
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+08/02/1634
+
+Died:
+13/05/1653
+
+Father:
+266
+
+Mother:
+267
+
+Style:
+Prince of Brazil and Duke of Braganza
+Territories:
+Brazil
+Braganza
+
+From:
+01/12/1640
+To:
+13/05/1653
+
+
+ID:
+1093
+
+Pre-name style:
+Infanta
+
+Name:
+Joanna
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/09/1635
+
+Died:
+17/11/1653
+
+Father:
+266
+
+Mother:
+267
+
+
+
+ID:
+1094
+
+Pre-name style:
+King
+
+Name:
+Alfonso
+
+Post-name style:
+IV of Portugal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/08/1643
+
+Died:
+12/09/1683
+
+Father:
+266
+
+Mother:
+267
+
+Spouses:
+Maria
+.
+.
+
+Style:
+King of Portugal and the Algarves
+Territories:
+Portugal
+Algarves
+
+From:
+06/11/1653
+To:
+12/09/1683
+
+
+ID:
+1095
+
+Pre-name style:
+King
+
+Name:
+Peter
+
+Post-name style:
+II of Portugal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/04/1648
+
+Died:
+09/12/1706
+
+Father:
+266
+
+Mother:
+267
+
+Spouses:
+Marie
+.
+.
+
+ Maria
+.
+.
+
+Style:
+King of Portugal and the Algarves
+Territories:
+Portugal
+Algarves
+
+From:
+12/09/1683
+To:
+09/12/1706
+
+
+ID:
+1096
+
+Pre-name style:
+.
+
+Name:
+Ana
+
+Post-name style:
+de Braganca
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/01/1635
+
+Died:
+21/01/1635
+
+Father:
+266
+
+Mother:
+267
+
+
+
+ID:
+1097
+
+Pre-name style:
+.
+
+Name:
+Manuel
+
+Post-name style:
+de Braganca
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/09/1640
+
+Died:
+06/09/1640
+
+Father:
+266
+
+Mother:
+267
+
+
+
+ID:
+1098
+
+Pre-name style:
+.
+
+Name:
+Juan Manuel Perez
+
+Post-name style:
+de Guzman
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+07/01/1579
+
+Died:
+1636
+
+Father:
+Alonso
+
+Mother:
+Ana de Silva y Mendoza
+
+Spouses:
+1099
+.
+.
+
+
+
+ID:
+1099
+
+Pre-name style:
+.
+
+Name:
+Juana Lorenza Gomez
+
+Post-name style:
+de Sandoval y la Cerda
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1098
+.
+.
+
+
+
+ID:
+1100
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Hyde
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1563
+
+Died:
+29/09/1634
+
+Father:
+Laurence
+
+Mother:
+Anne
+
+Spouses:
+1101
+.
+.
+
+
+
+ID:
+1101
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Langford
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Edward
+
+Mother:
+Mary
+
+Spouses:
+1100
+.
+.
+
+
+
+ID:
+1102
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Ayliffe
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1629
+
+Father:
+George
+
+Mother:
+?
+
+Spouses:
+268
+.
+.
+
+
+
+ID:
+1103
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Hyde
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/06/1638
+
+Died:
+31/10/1709
+
+Father:
+268
+
+Mother:
+269
+
+Spouses:
+Theodosia
+.
+.
+
+ Flower
+.
+.
+
+Style:
+Earl of Clarendon
+Territories:
+Clarendon
+
+From:
+?
+To:
+?
+
+
+ID:
+1104
+
+Pre-name style:
+.
+
+Name:
+Laurence
+
+Post-name style:
+Hyde
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/1641
+
+Died:
+02/05/1711
+
+Father:
+268
+
+Mother:
+269
+
+Style:
+Earl of Rochester
+Territories:
+Rochester
+
+From:
+?
+To:
+?
+
+
+ID:
+1105
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Hyde
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+268
+
+Mother:
+269
+
+
+
+ID:
+1106
+
+Pre-name style:
+.
+
+Name:
+James
+
+Post-name style:
+Hyde
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+268
+
+Mother:
+269
+
+
+
+ID:
+1107
+
+Pre-name style:
+.
+
+Name:
+Frances
+
+Post-name style:
+Hyde
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+268
+
+Mother:
+269
+
+
+
+ID:
+1108
+
+Pre-name style:
+Sir
+
+Name:
+Thomas
+
+Post-name style:
+Aylesbury
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1576
+
+Died:
+1657
+
+Father:
+William
+
+Mother:
+Anne
+
+Spouses:
+1109
+.
+.
+
+
+
+ID:
+1109
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Denman
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1108
+.
+.
+
+
+
+ID:
+1110
+
+Pre-name style:
+Duke
+
+Name:
+Francesco
+
+Post-name style:
+I d'Este
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/09/1610
+
+Died:
+14/10/1658
+
+Father:
+Alfonso
+
+Mother:
+Isabella
+
+Spouses:
+1111
+.
+.
+
+Vittoria
+.
+.
+
+Lucrezia
+.
+.
+
+Style:
+Duke of Modena and Reggio
+Territories:
+Modena
+Reggio
+
+From:
+1629
+To:
+1658
+
+
+ID:
+1111
+
+Pre-name style:
+.
+
+Name:
+Maria Caterina
+
+Post-name style:
+Fornese
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/02/1615
+
+Died:
+25/07/1646
+
+Father:
+Ranuccio
+
+Mother:
+Margherita
+
+Spouses:
+1110
+.
+.
+
+
+
+ID:
+1112
+
+Pre-name style:
+.
+
+Name:
+Francesco
+
+Post-name style:
+d'Este
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1657
+
+Died:
+1658
+
+Father:
+270
+
+Mother:
+271
+
+
+
+ID:
+1113
+
+Pre-name style:
+.
+
+Name:
+Francesco
+
+Post-name style:
+II d'Este
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1660
+
+Died:
+1694
+
+Father:
+270
+
+Mother:
+271
+
+Spouses:
+Margherita
+.
+.
+
+Style:
+Duke of Modena and Reggio
+Territories:
+Modena
+Reggio
+
+From:
+1662
+To:
+1694
+
+
+ID:
+1114
+
+Pre-name style:
+.
+
+Name:
+Elizabeth Margaret Anne Catherine
+
+Post-name style:
+d'Este
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1661
+
+Died:
+1734
+
+Father:
+270
+
+Mother:
+271
+
+
+
+ID:
+1115
+
+Pre-name style:
+.
+
+Name:
+Girolamo
+
+Post-name style:
+Mantinozzi
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1116
+.
+.
+
+
+
+ID:
+1116
+
+Pre-name style:
+.
+
+Name:
+Laura Margherita
+
+Post-name style:
+Mazzarini
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1608
+
+Died:
+09/6/1685
+
+Father:
+Pietro
+
+Mother:
+Ortensia
+
+Spouses:
+1115
+.
+.
+
+
+
+ID:
+1117
+
+Pre-name style:
+.
+
+Name:
+Anne Catherine
+
+Post-name style:
+of Brandenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/06/1575
+
+Died:
+08/04/1612
+
+Father:
+Joachim
+
+Mother:
+Catherine
+
+Spouses:
+1071
+.
+.
+
+
+
+ID:
+1118
+
+Pre-name style:
+King
+
+Name:
+Christian
+
+Post-name style:
+V of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+15/04/1646
+
+Died:
+25/08/1699
+
+Father:
+272
+
+Mother:
+273
+
+Spouses:
+Charlotte
+.
+.
+
+Style:
+King of Denmark and Norway
+Territories:
+Denmark
+Norway
+
+From:
+1670
+To:
+1699
+
+
+ID:
+1119
+
+Pre-name style:
+Princess
+
+Name:
+Anna Sophie
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/09/1647
+
+Died:
+01/07/1717
+
+Father:
+272
+
+Mother:
+273
+
+Spouses:
+John George III
+.
+.
+
+
+
+ID:
+1120
+
+Pre-name style:
+Princess
+
+Name:
+Frederica Amalia
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/04/1649
+
+Died:
+30/10/1704
+
+Father:
+272
+
+Mother:
+273
+
+Spouses:
+Christian
+.
+.
+
+
+
+ID:
+1121
+
+Pre-name style:
+Princess
+
+Name:
+Wilhelmine Ernestine
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/1650
+
+Died:
+04/1706
+
+Father:
+272
+
+Mother:
+273
+
+Spouses:
+Charles
+.
+.
+
+
+
+ID:
+1122
+
+Pre-name style:
+.
+
+Name:
+Ulrika Eleonora
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/09/1656
+
+Died:
+26/07/1693
+
+Father:
+272
+
+Mother:
+273
+
+Spouses:
+Charles XI
+.
+.
+
+
+
+ID:
+1123
+
+Pre-name style:
+.
+
+Name:
+Frederick
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/10/1651
+
+Died:
+14/03/1652
+
+Father:
+272
+
+Mother:
+273
+
+
+
+ID:
+1124
+
+Pre-name style:
+.
+
+Name:
+Dorothea
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/11/1657
+
+Died:
+15/05/1658
+
+Father:
+272
+
+Mother:
+273
+
+
+
+ID:
+1125
+
+Pre-name style:
+Margrave
+
+Name:
+Albert
+
+Post-name style:
+II of Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/09/1620
+
+Died:
+22/10/1667
+
+Father:
+Joachim
+
+Mother:
+Sopie
+
+Spouses:
+Henriette
+.
+.
+
+1126
+.
+.
+
+Christine
+.
+.
+
+Style:
+Margrave of Ansbach
+Territories:
+Ansbach
+
+From:
+1634
+To:
+1667
+
+
+ID:
+1126
+
+Pre-name style:
+.
+
+Name:
+Sophie Margarete
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1634
+
+Died:
+1664
+
+Father:
+Joachim Erst
+
+Mother:
+?
+
+Spouses:
+1125
+.
+.
+
+
+
+ID:
+1127
+
+Pre-name style:
+.
+
+Name:
+Johanna Elisabeth
+
+Post-name style:
+of Baden-Durlach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Frederick VI
+
+Mother:
+Christina
+
+Spouses:
+275
+.
+.
+
+
+
+ID:
+1128
+
+Pre-name style:
+Margrave
+
+Name:
+Leopoldh Frederick
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/05/1674
+
+Died:
+21/08/1676
+
+Father:
+275
+
+Mother:
+1127
+
+
+
+ID:
+1129
+
+Pre-name style:
+Margrave
+
+Name:
+Christian Albert
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/09/1675
+
+Died:
+16/10/1692
+
+Father:
+275
+
+Mother:
+1127
+
+
+
+ID:
+1130
+
+Pre-name style:
+Margravine
+
+Name:
+Dorothea Friederike
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+12/08/1676
+
+Died:
+13/03/1731
+
+Father:
+275
+
+Mother:
+1127
+
+Spouses:
+Johann
+.
+.
+
+
+
+ID:
+1131
+
+Pre-name style:
+Margrave
+
+Name:
+George Friederick
+
+Post-name style:
+II of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/05/1678
+
+Died:
+29/03/1703
+
+Father:
+275
+
+Mother:
+1127
+
+
+
+ID:
+1132
+
+Pre-name style:
+Margravine
+
+Name:
+Charlotte Sophie
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/06/1679
+
+Died:
+24/01/1680
+
+Father:
+275
+
+Mother:
+1127
+
+
+
+ID:
+1133
+
+Pre-name style:
+Margrave
+
+Name:
+Frederick Augustus
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/01/1685
+
+Died:
+30/01/1685
+
+Father:
+275
+
+Mother:
+276
+
+
+
+ID:
+1134
+
+Pre-name style:
+Margrave
+
+Name:
+William Frederick
+
+Post-name style:
+of Brandenburg-Ansbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+08/01/1686
+
+Died:
+07/01/1723
+
+Father:
+275
+
+Mother:
+276
+
+Spouses:
+Christiane
+.
+.
+
+
+
+ID:
+1135
+
+Pre-name style:
+Duke
+
+Name:
+John George
+
+Post-name style:
+I of Saxe-Eisenach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+12/07/1634
+
+Died:
+19/09/1686
+
+Father:
+Wilhelm
+
+Mother:
+Eleonor
+
+Spouses:
+1136
+.
+.
+
+
+
+ID:
+1136
+
+Pre-name style:
+.
+
+Name:
+Johannetta
+
+Post-name style:
+of Sayn-Wittgenstein
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1135
+.
+.
+
+
+
+ID:
+1137
+
+Pre-name style:
+Elector
+
+Name:
+John George
+
+Post-name style:
+IV of Saxony
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/10/1668
+
+Died:
+27/04/1694
+
+Father:
+John
+
+Mother:
+1119
+
+Spouses:
+276
+.
+.
+
+Style:
+Elector of Saxony
+Territories:
+Saxony
+
+From:
+1691
+To:
+1694
+
+
+ID:
+1138
+
+Pre-name style:
+Duke
+
+Name:
+Charles
+
+Post-name style:
+I of Brunswick-Wolfenbuttel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/08/1713
+
+Died:
+26/03/1780
+
+Father:
+Ferdinand
+
+Mother:
+Antoinette
+
+Spouses:
+1139
+.
+.
+
+Style:
+Duke of Brunswick-Wolfenbuttel
+Territories:
+Brunswick-Wolfenbuttel
+
+From:
+1735
+To:
+1780
+
+
+ID:
+1139
+
+Pre-name style:
+Princess
+
+Name:
+Philippine Charlotte
+
+Post-name style:
+of prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/03/1716
+
+Died:
+17/02/1801
+
+Father:
+Frederick
+
+Mother:
+458
+
+Spouses:
+1138
+.
+.
+
+
+
+ID:
+1140
+
+Pre-name style:
+Duchess
+
+Name:
+Augusta Caroline Friederika Luise
+
+Post-name style:
+of Brunswick-Wolfenbuttel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/12/1764
+
+Died:
+27/09/1788
+
+Father:
+277
+
+Mother:
+278
+
+Spouses:
+Frederick
+.
+.
+
+
+
+ID:
+1141
+
+Pre-name style:
+.
+
+Name:
+Karl Georg August
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+08/02/1766
+
+Died:
+20/09/1806
+
+Father:
+277
+
+Mother:
+278
+
+Spouses:
+Frederika
+.
+.
+
+
+
+ID:
+1142
+
+Pre-name style:
+.
+
+Name:
+Georg Wilhelm Christian
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/06/1769
+
+Died:
+16/09/1811
+
+Father:
+277
+
+Mother:
+278
+
+
+
+ID:
+1143
+
+Pre-name style:
+.
+
+Name:
+Augustus
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/08/1770
+
+Died:
+18/12/1822
+
+Father:
+277
+
+Mother:
+278
+
+
+
+ID:
+1144
+
+Pre-name style:
+Duke
+
+Name:
+Frederick William
+
+Post-name style:
+of Brunswick-Wolfenbuttel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/10/1771
+
+Died:
+16/06/1815
+
+Father:
+277
+
+Mother:
+278
+
+Spouses:
+Marie
+.
+.
+
+Style:
+Duke of Brunswick-Wolfenbuttel
+Territories:
+Brunswick-Wolfenbuttel
+
+From:
+16/10/1806
+To:
+16/06/1815
+
+
+ID:
+1145
+
+Pre-name style:
+.
+
+Name:
+Amelie Karoline Dorothea Luise
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/11/1772
+
+Died:
+02/04/1773
+
+Father:
+277
+
+Mother:
+278
+
+
+
+ID:
+1146
+
+Pre-name style:
+Duke
+
+Name:
+Anton Ulrich
+
+Post-name style:
+of Saxe-Meiningen
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/10/1687
+
+Died:
+27/01/1763
+
+Father:
+Bernhard
+
+Mother:
+Elizabeth
+
+Spouses:
+Philippine
+.
+.
+
+1147
+.
+.
+
+Style:
+Duke of Saxe-Meiningen
+Territories:
+Saxe-Meiningen
+
+From:
+1746
+To:
+1763
+
+
+ID:
+1147
+
+Pre-name style:
+Princess
+
+Name:
+Charlotte Amalie
+
+Post-name style:
+of Hesse-Philippsthal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/08/1730
+
+Died:
+07/09/1801
+
+Father:
+Charles
+
+Mother:
+Christina
+
+Spouses:
+1146
+.
+.
+
+
+
+ID:
+1148
+
+Pre-name style:
+Princess
+
+Name:
+Ida
+
+Post-name style:
+of Saxe-Meiningen
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/06/1794
+
+Died:
+04/04/1852
+
+Father:
+279
+
+Mother:
+280
+
+Spouses:
+Bernhard
+.
+.
+
+
+
+ID:
+1149
+
+Pre-name style:
+Duke
+
+Name:
+Bernhard Erich Freund
+
+Post-name style:
+II of Saxe-Meiningen
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/12/1800
+
+Died:
+03/12/1882
+
+Father:
+279
+
+Mother:
+280
+
+Spouses:
+Marie
+.
+.
+
+Style:
+Duke of Saxe-Meiningen
+Territories:
+Saxe-Meiningen
+
+From:
+1803
+To:
+1866
+
+
+ID:
+1150
+
+Pre-name style:
+Prince
+
+Name:
+Christian Albrecht
+
+Post-name style:
+of Hohenlohe-Langenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/03/1726
+
+Died:
+04/07/1789
+
+Father:
+Ludwig
+
+Mother:
+Eleonore
+
+Spouses:
+1151
+.
+.
+
+
+
+ID:
+1151
+
+Pre-name style:
+Princess
+
+Name:
+Caroline
+
+Post-name style:
+of Stolberg-Geden
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/06/1731
+
+Died:
+28/05/1796
+
+Father:
+Frederick
+
+Mother:
+Louise
+
+Spouses:
+1150
+.
+.
+
+
+
+ID:
+1152
+
+Pre-name style:
+Duke
+
+Name:
+Ernest August Karl Johann Leopold Alexander Eduard
+
+Post-name style:
+II of Saxe-Coburg and Gotha
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/06/1818
+
+Died:
+22/08/1893
+
+Father:
+281
+
+Mother:
+282
+
+Spouses:
+Alexandrine
+.
+.
+
+Style:
+Duke of Saxe-Coburg and Gotha
+Territories:
+Saxe-Coburg and Gotha
+
+From:
+1844
+To:
+1893
+
+
+ID:
+1153
+
+Pre-name style:
+Duke
+
+Name:
+Emil Leopold AUGUST
+
+Post-name style:
+of Saxe-Gotha-Altenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+23/11/1772
+
+Died:
+27/05/1822
+
+Father:
+Ernst
+
+Mother:
+Charlotte
+
+Spouses:
+1154
+.
+.
+
+Karoline
+.
+.
+
+Style:
+Duke of Saxe-Gotha-Altenburg
+Territories:
+Saxe-Gotha-Altenburg
+
+From:
+1804
+To:
+1822
+
+
+ID:
+1154
+
+Pre-name style:
+Duchess
+
+Name:
+Louise Charlotte
+
+Post-name style:
+of Mecklenburg-Schwein
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+19/11/1779
+
+Died:
+04/01/1801
+
+Father:
+Frederick
+
+Mother:
+Louise
+
+Spouses:
+1153
+.
+.
+
+
+
+ID:
+1155
+
+Pre-name style:
+Count
+
+Name:
+Alexander
+
+Post-name style:
+von Hanstein
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/06/1804
+
+Died:
+18/04/1884
+
+Father:
+Friedrich
+
+Mother:
+Anna
+
+Spouses:
+282
+.
+.
+
+Marie
+.
+.
+
+
+
+ID:
+1156
+
+Pre-name style:
+Duke
+
+Name:
+Friedrich Wilhelm PaulLeopold
+
+Post-name style:
+of Schleswig-Holstein-Sonderburg-Gucksburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+04/01/1785
+
+Died:
+17/02/1831
+
+Father:
+Friedrich
+
+Mother:
+Friedericke
+
+Spouses:
+1157
+.
+.
+
+Style:
+Duke of Schleswig-Holstein-Sonderburg-Gucksburg
+Territories:
+Schleswig-Holstein-SonderburgsGucksburg
+
+From:
+25/03/1816
+To:
+17/02/1831
+
+
+ID:
+1157
+
+Pre-name style:
+Princess
+
+Name:
+Louise Caroline
+
+Post-name style:
+of Hesse-Kassel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+28/09/1789
+
+Died:
+13/03/1867
+
+Father:
+Charles
+
+Mother:
+Louise
+
+Spouses:
+1156
+.
+.
+
+
+
+ID:
+1158
+
+Pre-name style:
+King
+
+Name:
+Christian FREDERICK Vilhulm Carl
+
+Post-name style:
+VIII of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/06/1843
+
+Died:
+14/04/1912
+
+Father:
+283
+
+Mother:
+284
+
+Spouses:
+Louise
+.
+.
+
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+1906
+To:
+1912
+
+
+ID:
+1159
+
+Pre-name style:
+King
+
+Name:
+George
+
+Post-name style:
+I of Greece
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/12/1845
+
+Died:
+18/03/1913
+
+Father:
+283
+
+Mother:
+284
+
+Spouses:
+1198
+.
+.
+
+Style:
+King of Greece
+Territories:
+Greece
+
+From:
+1863
+To:
+1913
+
+
+ID:
+1160
+
+Pre-name style:
+.
+
+Name:
+Maria Feodorovna Dagmar
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/11/1847
+
+Died:
+13/10/1928
+
+Father:
+283
+
+Mother:
+284
+
+Spouses:
+Alexander III
+.
+.
+
+
+
+ID:
+1161
+
+Pre-name style:
+Princess
+
+Name:
+Thyra
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/09/1853
+
+Died:
+26/02/1933
+
+Father:
+283
+
+Mother:
+284
+
+Spouses:
+Ernest
+.
+.
+
+
+
+ID:
+1162
+
+Pre-name style:
+Prince
+
+Name:
+Valdemar
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/10/1858
+
+Died:
+14/01/1939
+
+Father:
+283
+
+Mother:
+284
+
+Spouses:
+Marie
+.
+.
+
+
+
+ID:
+1163
+
+Pre-name style:
+Prince
+
+Name:
+William
+
+Post-name style:
+of Hesse-Kessel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/12/1787
+
+Died:
+05/09/1867
+
+Father:
+Frederick
+
+Mother:
+Caroline
+
+Spouses:
+1164
+.
+.
+
+
+
+ID:
+1164
+
+Pre-name style:
+Princess
+
+Name:
+Louise Charlotte
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/10/1789
+
+Died:
+28/03/1864
+
+Father:
+Frederick
+
+Mother:
+Sophia
+
+Spouses:
+1163
+.
+.
+
+
+
+ID:
+1165
+
+Pre-name style:
+Duke
+
+Name:
+Alexander
+
+Post-name style:
+of Wurttenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/09/1804
+
+Died:
+04/07/1885
+
+Father:
+Louis
+
+Mother:
+Henrietta
+
+Spouses:
+1166
+.
+.
+
+
+
+ID:
+1166
+
+Pre-name style:
+Countess
+
+Name:
+Claudine Rhedey
+
+Post-name style:
+von Kis-Rhede
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/09/1812
+
+Died:
+01/10/1841
+
+Father:
+Laszlo
+
+Mother:
+Agnes
+
+Spouses:
+1165
+.
+.
+
+
+
+ID:
+1167
+
+Pre-name style:
+.
+
+Name:
+Adolphus
+
+Post-name style:
+Cambridge
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/08/1868
+
+Died:
+23/10/1927
+
+Father:
+285
+
+Mother:
+286
+
+Spouses:
+Margaret
+.
+.
+
+
+
+ID:
+1168
+
+Pre-name style:
+Prince
+
+Name:
+Francis
+
+Post-name style:
+of Teck
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/01/1870
+
+Died:
+22/10/1910
+
+Father:
+285
+
+Mother:
+286
+
+
+
+ID:
+1169
+
+Pre-name style:
+.
+
+Name:
+Alexander Augustus Frederick William Alfred George
+
+Post-name style:
+Cambridge
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/04/1874
+
+Died:
+16/01/1957
+
+Father:
+285
+
+Mother:
+286
+
+Spouses:
+Alice
+.
+.
+
+
+
+ID:
+1170
+
+Pre-name style:
+Princess
+
+Name:
+Augusta Wilhelmine Luise
+
+Post-name style:
+of Hesse-Kassel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/07/1797
+
+Died:
+06/04/1889
+
+Father:
+Frederick
+
+Mother:
+Caroline
+
+Spouses:
+472
+.
+.
+
+
+
+ID:
+1171
+
+Pre-name style:
+.
+
+Name:
+Henry Mactier
+
+Post-name style:
+Warfield
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+
+
+ID:
+1172
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Montague
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+?
+.
+.
+
+
+
+ID:
+1173
+
+Pre-name style:
+.
+
+Name:
+Earl Winfield
+
+Post-name style:
+Spencer
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1174
+.
+.
+
+
+
+ID:
+1174
+
+Pre-name style:
+.
+
+Name:
+Agnes Lucy
+
+Post-name style:
+Hughes
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1173
+.
+.
+
+
+
+ID:
+1175
+
+Pre-name style:
+.
+
+Name:
+Mariam Caro
+
+Post-name style:
+Maze
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1895
+
+Died:
+1997
+
+Father:
+Simon
+
+Mother:
+?
+
+Spouses:
+Albert
+.
+.
+
+ 289
+.
+.
+
+Arthur
+.
+.
+
+
+
+ID:
+1176
+
+Pre-name style:
+.
+
+Name:
+Norma
+
+Post-name style:
+Johnson
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1892
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+Homer
+.
+.
+
+289
+.
+.
+
+
+
+ID:
+1177
+
+Pre-name style:
+.
+
+Name:
+Lillian
+
+Post-name style:
+Phillips
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1892
+
+Died:
+1981
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+289
+.
+.
+
+
+
+ID:
+1178
+
+Pre-name style:
+.
+
+Name:
+Ernest Louis
+
+Post-name style:
+Simpson
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1179
+.
+.
+
+
+
+ID:
+1179
+
+Pre-name style:
+.
+
+Name:
+Charlotte Woodward
+
+Post-name style:
+Gaines
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1178
+.
+.
+
+
+
+ID:
+1180
+
+Pre-name style:
+.
+
+Name:
+Dorothea
+
+Post-name style:
+Dechert
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1967
+
+Father:
+arthur
+
+Mother:
+Frances
+
+Spouses:
+James
+.
+.
+
+290
+.
+.
+
+
+
+ID:
+1181
+
+Pre-name style:
+.
+
+Name:
+Audrey C. C.
+
+Post-name style:
+Simpson
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1924
+
+Died:
+?
+
+Father:
+290
+
+Mother:
+1180
+
+Spouses:
+Murray
+.
+.
+
+Edmund
+.
+.
+
+
+
+ID:
+1182
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Raffray
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1896
+
+Died:
+1941
+
+Father:
+Henry
+
+Mother:
+Edith
+
+Spouses:
+Jacques
+.
+.
+
+290
+.
+.
+
+
+
+ID:
+1183
+
+Pre-name style:
+.
+
+Name:
+Ernest Henry Child
+
+Post-name style:
+Simpson
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/09/1939
+
+Died:
+present
+
+Father:
+290
+
+Mother:
+1182
+
+
+
+ID:
+1184
+
+Pre-name style:
+.
+
+Name:
+Avril
+
+Post-name style:
+Leveson-Gower
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1910
+
+Died:
+28/11/1978
+
+Father:
+John
+
+Mother:
+Evelyne
+
+Spouses:
+Hugh
+.
+.
+
+George
+.
+.
+
+290
+.
+.
+
+
+
+ID:
+1185
+
+Pre-name style:
+.
+
+Name:
+Claude
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/07/1824
+
+Died:
+16/02/1904
+
+Father:
+Thomas
+
+Mother:
+Charlotte
+
+Spouses:
+1186
+.
+.
+
+
+
+ID:
+1186
+
+Pre-name style:
+.
+
+Name:
+Frances Dora
+
+Post-name style:
+Smith
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/07/1832
+
+Died:
+05/02/1922
+
+Father:
+Oswald
+
+Mother:
+Henrietta
+
+Spouses:
+1185
+.
+.
+
+
+
+ID:
+1187
+
+Pre-name style:
+.
+
+Name:
+Violet Hyacinth
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/04/1882
+
+Died:
+17/10/1893
+
+Father:
+291
+
+Mother:
+292
+
+
+
+ID:
+1188
+
+Pre-name style:
+Lady
+
+Name:
+Mary Frances
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/08/1883
+
+Died:
+08/02/1961
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+Sidney
+.
+.
+
+
+
+ID:
+1189
+
+Pre-name style:
+.
+
+Name:
+Patrick
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/09/1884
+
+Died:
+25/05/1949
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+Dorothy
+.
+.
+
+
+
+ID:
+1190
+
+Pre-name style:
+.
+
+Name:
+John Herbert
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/04/1886
+
+Died:
+07/02/1930
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+Fenella
+.
+.
+
+
+
+ID:
+1191
+
+Pre-name style:
+.
+
+Name:
+Alexander Francis
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/04/1887
+
+Died:
+19/10/1911
+
+Father:
+291
+
+Mother:
+292
+
+
+
+ID:
+1192
+
+Pre-name style:
+.
+
+Name:
+Fergus
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/04/1889
+
+Died:
+27/09/1915
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+Christina
+.
+.
+
+
+
+ID:
+1193
+
+Pre-name style:
+.
+
+Name:
+Rose Constance
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/05/1890
+
+Died:
+17/11/1967
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+William
+.
+.
+
+
+
+ID:
+1194
+
+Pre-name style:
+.
+
+Name:
+Michael Claude Hamilton
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/10/1893
+
+Died:
+01/05/1953
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+Elizabeth
+.
+.
+
+
+
+ID:
+1195
+
+Pre-name style:
+.
+
+Name:
+David
+
+Post-name style:
+Bowes-Lyon
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/05/1902
+
+Died:
+13/09/1961
+
+Father:
+291
+
+Mother:
+292
+
+Spouses:
+Rachel
+.
+.
+
+
+
+ID:
+1196
+
+Pre-name style:
+Reverend
+
+Name:
+Charles William Frederick
+
+Post-name style:
+Cavendish-Bentinck
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+08/11/1817
+
+Died:
+17/08/1865
+
+Father:
+Charles
+
+Mother:
+Anne
+
+Spouses:
+Sinetta
+.
+.
+
+1197
+.
+.
+
+
+
+ID:
+1197
+
+Pre-name style:
+.
+
+Name:
+Caroline LOUISA 
+
+Post-name style:
+Barnaby
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1831
+
+Died:
+06/07/1918
+
+Father:
+Edwyn
+
+Mother:
+Anne
+
+Spouses:
+1196
+.
+.
+
+
+
+ID:
+1198
+
+Pre-name style:
+Grand Duchess
+
+Name:
+Olga
+
+Post-name style:
+Constantinovna
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/09/1851
+
+Died:
+18/06/1926
+
+Father:
+Contantine
+
+Mother:
+Alexandra
+
+Spouses:
+1159
+.
+.
+
+
+
+ID:
+1199
+
+Pre-name style:
+Princess
+
+Name:
+Margarita
+
+Post-name style:
+of Greece and Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/04/1905
+
+Died:
+24/04/1981
+
+Father:
+293
+
+Mother:
+294
+
+Spouses:
+Gottfried
+.
+.
+
+
+
+ID:
+1200
+
+Pre-name style:
+Princess
+
+Name:
+Theodora
+
+Post-name style:
+of Greece and Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/05/1906
+
+Died:
+19/10/1969
+
+Father:
+293
+
+Mother:
+294
+
+Spouses:
+Berthold
+.
+.
+
+
+
+ID:
+1201
+
+Pre-name style:
+Princess
+
+Name:
+Cecilie
+
+Post-name style:
+of Greece and Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/06/1911
+
+Died:
+16/11/1937
+
+Father:
+293
+
+Mother:
+294
+
+Spouses:
+Georg
+.
+.
+
+
+
+ID:
+1202
+
+Pre-name style:
+Princess
+
+Name:
+Sophie
+
+Post-name style:
+of Greece and Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/06/1914
+
+Died:
+03/11/2001
+
+Father:
+293
+
+Mother:
+294
+
+Spouses:
+Christoph
+.
+.
+
+George
+.
+.
+
+
+
+ID:
+1203
+
+Pre-name style:
+Prince
+
+Name:
+Louis Alexander Mountbatten
+
+Post-name style:
+of Battenberg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/05/1854
+
+Died:
+11/09/1921
+
+Father:
+Alexander
+
+Mother:
+Julia
+
+Spouses:
+1204
+.
+.
+
+
+
+ID:
+1204
+
+Pre-name style:
+Princess
+
+Name:
+Victoria Alberta Elisabeth Mathilde Marie
+
+Post-name style:
+of Hesse and by Rhine
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/04/1863
+
+Died:
+24/09/1950
+
+Father:
+Louis IV
+
+Mother:
+486
+
+Spouses:
+1203
+.
+.
+
+
+
+ID:
+1205
+
+Pre-name style:
+.
+
+Name:
+Alexandre
+
+Post-name style:
+Desmier
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1206
+.
+.
+
+
+
+ID:
+1206
+
+Pre-name style:
+.
+
+Name:
+Jacquete
+
+Post-name style:
+Poussard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+1205
+.
+.
+
+
+
+ID:
+1207
+
+Pre-name style:
+Duke
+
+Name:
+Adolphus Frederick
+
+Post-name style:
+II of Mecklenburg-Strelitz
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+19/10/1658
+
+Died:
+12/05/1708
+
+Father:
+Adolph
+
+Mother:
+Katharina
+
+Spouses:
+Maria
+.
+.
+
+Johanna
+.
+.
+
+1208
+.
+.
+
+Style:
+Duke of Mecklenburg-Strelitz
+Territories:
+Mecklenburg-Strelitz
+
+From:
+1701
+To:
+1708
+
+
+ID:
+1208
+
+Pre-name style:
+Princess
+
+Name:
+Christiane Emilie
+
+Post-name style:
+of Schwarzburg-Sondershausen
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/03/1681
+
+Died:
+01/11/1751
+
+Father:
+Christian
+
+Mother:
+Antonie
+
+Spouses:
+1207
+.
+.
+
+
+
+ID:
+1209
+
+Pre-name style:
+Duchess
+
+Name:
+Christiane
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/12/1735
+
+Died:
+31/08/1794
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1210
+
+Pre-name style:
+Duchess
+
+Name:
+Karoline
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/12/1736
+
+Died:
+22/12/1736
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1211
+
+Pre-name style:
+Duke
+
+Name:
+Adolphus Frederick
+
+Post-name style:
+IV of Mecklenburg-Strelitz
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/05/1738
+
+Died:
+02/06/1794
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1212
+
+Pre-name style:
+Duchess
+
+Name:
+Elizabeth Christine
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/04/1739
+
+Died:
+09/04/1741
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1213
+
+Pre-name style:
+Duchess
+
+Name:
+Sophie Louise
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/05/1740
+
+Died:
+31/01/1742
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1214
+
+Pre-name style:
+Grand Duke
+
+Name:
+Charles
+
+Post-name style:
+II of Mecklenburg-Strelitz
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/10/1741
+
+Died:
+06/11/1816
+
+Father:
+296
+
+Mother:
+297
+
+Spouses:
+Friederike
+.
+.
+
+ Charlotte
+.
+.
+
+Style:
+Grand Duke of Mecklenburg-Strelitz
+Territories:
+Mecklenburg-Strelitz
+
+From:
+1794
+To:
+1816
+
+
+ID:
+1215
+
+Pre-name style:
+Duke
+
+Name:
+Ernest Gottlob Albert
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/08/1742
+
+Died:
+27/01/1814
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1216
+
+Pre-name style:
+Duke
+
+Name:
+Gotthelf
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/10/1745
+
+Died:
+31/10/1745
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1217
+
+Pre-name style:
+Duke
+
+Name:
+George Augustus
+
+Post-name style:
+of Mecklenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/08/1748
+
+Died:
+14/11/1785
+
+Father:
+296
+
+Mother:
+297
+
+
+
+ID:
+1218
+
+Pre-name style:
+Duke
+
+Name:
+Ernest Frederick
+
+Post-name style:
+I of Saxe-Hildhurghausen
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/08/1681
+
+Died:
+09/03/1724
+
+Father:
+Ernest
+
+Mother:
+Sophie
+
+Spouses:
+1219
+.
+.
+
+Style:
+Duke of Saxe-Hildburghausen
+Territories:
+Saxe-Hildburghausen
+
+From:
+1715
+To:
+1724
+
+
+ID:
+1219
+
+Pre-name style:
+Countess
+
+Name:
+Sophia Albertine
+
+Post-name style:
+of Erbach-Erbach
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/07/1683
+
+Died:
+04/09/1742
+
+Father:
+George
+
+Mother:
+Amalia
+
+Spouses:
+1218
+.
+.
+
+
+
+ID:
+1220
+
+Pre-name style:
+.
+
+Name:
+Aethelred
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c881
+
+Died:
+911
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+298
+.
+.
+
+
+
+ID:
+1221
+
+Pre-name style:
+.
+
+Name:
+Aelfwynn
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1220
+
+Mother:
+298
+
+Style:
+Lady of the Mercians
+Territories:
+Mercians
+
+From:
+12/069/918
+To:
+12/918
+
+
+ID:
+1222
+
+Pre-name style:
+.
+
+Name:
+Aethelwine
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+937
+
+Father:
+300
+
+Mother:
+?
+
+
+
+ID:
+1223
+
+Pre-name style:
+.
+
+Name:
+Aelfwine
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+937
+
+Father:
+300
+
+Mother:
+?
+
+
+
+ID:
+1224
+
+Pre-name style:
+Count
+
+Name:
+Baldwin
+
+Post-name style:
+II of Flanders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c865
+
+Died:
+10/09/918
+
+Father:
+Baldwin
+
+Mother:
+Judith
+
+Spouses:
+301
+.
+.
+
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+879
+To:
+918
+
+
+ID:
+1225
+
+Pre-name style:
+Count
+
+Name:
+Arnulf
+
+Post-name style:
+I of Flanders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c890
+
+Died:
+28/03/965
+
+Father:
+1224
+
+Mother:
+301
+
+Spouses:
+Adele
+.
+.
+
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+918
+To:
+965
+
+
+ID:
+1226
+
+Pre-name style:
+Count
+
+Name:
+Adelolf
+
+Post-name style:
+of Boulogne
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+933
+
+Father:
+1224
+
+Mother:
+301
+
+
+
+ID:
+1227
+
+Pre-name style:
+.
+
+Name:
+Ealswid
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1224
+
+Mother:
+301
+
+
+
+ID:
+1228
+
+Pre-name style:
+.
+
+Name:
+Ermentrud
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1224
+
+Mother:
+301
+
+
+
+ID:
+1229
+
+Pre-name style:
+.
+
+Name:
+Sitric
+
+Post-name style:
+Caech
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+927
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+302
+.
+.
+
+Style:
+King of Dublin
+Territories:
+Dublin
+
+From:
+?
+To:
+?
+
+
+ID:
+1230
+
+Pre-name style:
+King
+
+Name:
+Charles (the Simple)
+
+Post-name style:
+III of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/09/879
+
+Died:
+07/10/929
+
+Father:
+Louis
+
+Mother:
+Adelaide
+
+Spouses:
+Frederuna
+.
+.
+
+303
+.
+.
+
+Style:
+King of Western Francia
+Territories:
+Western Francia
+
+From:
+898
+To:
+922
+Style:
+King of Lotharingia
+Territories:
+Lotharingia
+
+From:
+911
+To:
+919-923
+
+
+ID:
+1231
+
+Pre-name style:
+King
+
+Name:
+Louis 
+
+Post-name style:
+IV of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/09/920
+
+Died:
+30/09/954
+
+Father:
+1230
+
+Mother:
+303
+
+Spouses:
+Gerberga
+.
+.
+
+Style:
+King of Western Francia
+Territories:
+Western Francia
+
+From:
+936
+To:
+954
+
+
+ID:
+1232
+
+Pre-name style:
+Count
+
+Name:
+Herbert
+
+Post-name style:
+III of Omois
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+910
+
+Died:
+980-985
+
+Father:
+Herbert II
+
+Mother:
+Adela
+
+Spouses:
+303
+.
+.
+
+Style:
+Count of Omois
+Territories:
+Omois
+
+From:
+943
+To:
+980-985
+
+
+ID:
+1233
+
+Pre-name style:
+.
+
+Name:
+Otto
+
+Post-name style:
+I HRE
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+23/11/912
+
+Died:
+07/05/973
+
+Father:
+Henry
+
+Mother:
+Matilda
+
+Spouses:
+305
+.
+.
+
+Adelaide
+.
+.
+
+Style:
+HRE
+Territories:
+HRE
+
+From:
+02/02/962
+To:
+07/05/973
+Style:
+King of Italy
+Territories:
+Italy
+
+From:
+25/12/961
+To:
+07/05/973
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+02/07/936
+To:
+07/05/973
+Style:
+Duke of Saxony
+Territories:
+Saxony
+
+From:
+02/07/936
+To:
+07/05/973
+
+
+ID:
+1234
+
+Pre-name style:
+.
+
+Name:
+Liutgarde
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+932
+
+Died:
+953
+
+Father:
+1233
+
+Mother:
+305
+
+Spouses:
+Conrad
+.
+.
+
+
+
+ID:
+1235
+
+Pre-name style:
+.
+
+Name:
+Liudolf
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+930
+
+Died:
+06/09/957
+
+Father:
+1233
+
+Mother:
+305
+
+Spouses:
+Ida
+.
+.
+
+Style:
+Duke of Swabia
+Territories:
+Swabia
+
+From:
+950
+To:
+951
+
+
+ID:
+1236
+
+Pre-name style:
+.
+
+Name:
+Hugh
+
+Post-name style:
+the Great
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+898
+
+Died:
+16/06/956
+
+Father:
+Robert
+
+Mother:
+Beatrice
+
+Spouses:
+Judith
+.
+.
+
+306
+.
+.
+
+Hedwig
+.
+.
+
+
+
+ID:
+1237
+
+Pre-name style:
+.
+
+Name:
+Eadric
+
+Post-name style:
+Streona
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+25/12/1017
+
+Father:
+Aethelric
+
+Mother:
+?
+
+Spouses:
+319
+.
+.
+
+
+
+ID:
+1238
+
+Pre-name style:
+.
+
+Name:
+Uhtred
+
+Post-name style:
+the Bold
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1016
+
+Father:
+Waltheof
+
+Mother:
+?
+
+Spouses:
+Ecgfrida
+.
+.
+
+Sige
+.
+.
+
+320
+.
+.
+
+Style:
+Ealdorman of Northumbria
+Territories:
+Northumbria
+
+From:
+1006
+To:
+1016
+
+
+ID:
+1239
+
+Pre-name style:
+.
+
+Name:
+Ealdgyth
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1238
+
+Mother:
+320
+
+Spouses:
+Maldred
+.
+.
+
+
+
+ID:
+1240
+
+Pre-name style:
+.
+
+Name:
+Ulfcytel
+
+Post-name style:
+Snillingr
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1016
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+321
+.
+.
+
+Style:
+Ealdorman of East Anglia
+Territories:
+East Anglia
+
+From:
+1004
+To:
+1016
+
+
+ID:
+1241
+
+Pre-name style:
+.
+
+Name:
+Drogo
+
+Post-name style:
+of Mantes
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+996
+
+Died:
+1035
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+324
+.
+.
+
+Style:
+Count of Valois and the Vexin
+Territories:
+Valois and the Vexin
+
+From:
+1027
+To:
+1035
+
+
+ID:
+1242
+
+Pre-name style:
+.
+
+Name:
+Ralph
+
+Post-name style:
+the Timid
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1057
+
+Father:
+1241
+
+Mother:
+324
+
+Style:
+Earl of Hereford
+Territories:
+Hereford
+
+From:
+1051
+To:
+1057
+
+
+ID:
+1243
+
+Pre-name style:
+.
+
+Name:
+Walter
+
+Post-name style:
+III
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1063
+
+Father:
+1241
+
+Mother:
+324
+
+Style:
+Count of the Vexin
+Territories:
+Vexin
+
+From:
+?
+To:
+?
+
+
+ID:
+1244
+
+Pre-name style:
+.
+
+Name:
+Fulk
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1068
+
+Father:
+1241
+
+Mother:
+324
+
+
+
+ID:
+1245
+
+Pre-name style:
+.
+
+Name:
+Ulf
+
+Post-name style:
+Jarl
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1026
+
+Father:
+Thorgils
+
+Mother:
+Tyra
+
+Spouses:
+330
+.
+.
+
+
+
+ID:
+1246
+
+Pre-name style:
+King
+
+Name:
+Sweyn Estridsson
+
+Post-name style:
+II of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1019
+
+Died:
+28/04/1074-1076
+
+Father:
+1245
+
+Mother:
+330
+
+Spouses:
+Gunnhildr
+.
+.
+
+Style:
+King of Denmark
+Territories:
+Denmark
+
+From:
+1047
+To:
+1074
+
+
+ID:
+1247
+
+Pre-name style:
+.
+
+Name:
+Edgar
+
+Post-name style:
+Aetheling
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1051
+
+Died:
+c1126
+
+Father:
+331
+
+Mother:
+758
+
+Style:
+King of England
+Territories:
+England
+
+From:
+15/10/1066
+To:
+10/12/1066
+
+
+ID:
+1248
+
+Pre-name style:
+.
+
+Name:
+Cristina
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1040
+
+Died:
+Before 1100
+
+Father:
+331
+
+Mother:
+758
+
+Style:
+Abess of Romsey
+Territories:
+Romsey
+
+From:
+?
+To:
+?
+
+
+ID:
+1249
+
+Pre-name style:
+.
+
+Name:
+Beatrice
+
+Post-name style:
+I
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1037
+
+Died:
+13/07/1061
+
+Father:
+773
+
+Mother:
+334
+
+Style:
+Abbess of Quedlinburg
+Territories:
+Quedlinburg
+
+From:
+1044
+To:
+1061
+
+
+ID:
+1250
+
+Pre-name style:
+.
+
+Name:
+Alan
+
+Post-name style:
+Rufus
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1046
+
+Died:
+1093
+
+Father:
+Odo
+
+Mother:
+Orguen
+
+Spouses:
+338
+.
+.
+
+
+
+ID:
+1251
+
+Pre-name style:
+Grand Prince
+
+Name:
+Vladimir
+
+Post-name style:
+II Monomakh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1053
+
+Died:
+19/05/1125
+
+Father:
+Vsevolod
+
+Mother:
+Anastasia
+
+Spouses:
+339
+.
+.
+
+Eufimia
+.
+.
+
+Style:
+Grand Prince of Kievan Rus
+Territories:
+Kievan Rus
+
+From:
+1113
+To:
+1125
+
+
+ID:
+1252
+
+Pre-name style:
+Grand Prince
+
+Name:
+Mstislav
+
+Post-name style:
+I of Kiev
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/06/1076
+
+Died:
+14/04/1132
+
+Father:
+1251
+
+Mother:
+339
+
+Spouses:
+Christina
+.
+.
+
+Liubava
+.
+.
+
+Style:
+Grand Prince of Kiev
+Territories:
+Kiev
+
+From:
+1125
+To:
+1132
+
+
+ID:
+1253
+
+Pre-name style:
+.
+
+Name:
+Izyaslav
+
+Post-name style:
+Vladimirovich
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1077
+
+Died:
+06/09/1096
+
+Father:
+1251
+
+Mother:
+339
+
+
+
+ID:
+1254
+
+Pre-name style:
+.
+
+Name:
+Svyatoslav
+
+Post-name style:
+Vladimirovich
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1080
+
+Died:
+16/03/1114
+
+Father:
+1251
+
+Mother:
+339
+
+
+
+ID:
+1255
+
+Pre-name style:
+Grand Prince
+
+Name:
+Yaropolk
+
+Post-name style:
+II of Kiev
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1082
+
+Died:
+18/02/1139
+
+Father:
+1251
+
+Mother:
+339
+
+Style:
+Grand Prince of Kiev
+Territories:
+Kiev
+
+From:
+1132
+To:
+1139
+
+
+ID:
+1256
+
+Pre-name style:
+Grand Prince
+
+Name:
+Viacheslav
+
+Post-name style:
+Vladimirovich
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1083
+
+Died:
+02/02/1154
+
+Father:
+1251
+
+Mother:
+339
+
+Style:
+Grand Prince of Kiev
+Territories:
+Kiev
+
+From:
+1139
+To:
+1154
+
+
+ID:
+1257
+
+Pre-name style:
+.
+
+Name:
+Sybilla
+
+Post-name style:
+of Conversano
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+Geoffrey
+
+Mother:
+?
+
+Spouses:
+342
+.
+.
+
+
+
+ID:
+1258
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Clito
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/10/1102
+
+Died:
+28/07/1128
+
+Father:
+342
+
+Mother:
+1257
+
+Style:
+Count of Flanders
+Territories:
+Flanders
+
+From:
+?
+To:
+?
+
+
+ID:
+1259
+
+Pre-name style:
+Duke
+
+Name:
+Alan
+
+Post-name style:
+IV of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1063
+
+Died:
+13/10/1119
+
+Father:
+Hoel
+
+Mother:
+Hawise
+
+Spouses:
+347
+.
+.
+
+795
+.
+.
+
+Style:
+Duke of Brittany
+Territories:
+Brittany
+
+From:
+1084
+To:
+1112
+
+
+ID:
+1260
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+of France
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1124
+
+Died:
+1176
+
+Father:
+799
+
+Mother:
+800
+
+Spouses:
+351
+.
+.
+
+Raymond
+.
+.
+
+
+
+ID:
+1261
+
+Pre-name style:
+.
+
+Name:
+Waleran
+
+Post-name style:
+de Beaumont
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1104
+
+Died:
+09/04/1166
+
+Father:
+Robert
+
+Mother:
+Elizabeth
+
+Spouses:
+352
+.
+.
+
+Agnes
+.
+.
+
+
+
+ID:
+1262
+
+Pre-name style:
+.
+
+Name:
+Matthew
+
+Post-name style:
+of Alsace
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1137
+
+Died:
+1173
+
+Father:
+Thierry
+
+Mother:
+784
+
+Spouses:
+Marie
+.
+.
+
+
+
+ID:
+1263
+
+Pre-name style:
+.
+
+Name:
+Ida
+
+Post-name style:
+of Boulogne
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1160
+
+Died:
+1216
+
+Father:
+1262
+
+Mother:
+353
+
+Spouses:
+Gerard
+.
+.
+
+Berthold
+.
+.
+
+Renaud
+.
+.
+
+
+
+ID:
+1264
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+of Flanders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1170
+
+Died:
+16/10/1210
+
+Father:
+1262
+
+Mother:
+353
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+1265
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+de Warenne
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1130
+
+Died:
+c1203
+
+Father:
+William
+
+Mother:
+Adela
+
+Spouses:
+356
+.
+.
+
+Hamelin
+.
+.
+
+
+
+ID:
+1266
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+the Lion
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1129
+
+Died:
+06/08/1195
+
+Father:
+Henry
+
+Mother:
+Gertrude
+
+Spouses:
+Clementina
+.
+.
+
+361
+.
+.
+
+Style:
+Duke of Saxony
+Territories:
+Saxony
+
+From:
+1142
+To:
+1180
+Style:
+Duke of Bavaria
+Territories:
+Bavaria
+
+From:
+1156
+To:
+1180
+
+
+ID:
+1267
+
+Pre-name style:
+.
+
+Name:
+Matilda
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1172
+
+Died:
+1209-1210
+
+Father:
+1266
+
+Mother:
+361
+
+Spouses:
+Geoffrey
+.
+.
+
+Enguerrand
+.
+.
+
+
+
+ID:
+1268
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+V
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1173
+
+Died:
+28/04/1227
+
+Father:
+1266
+
+Mother:
+361
+
+Spouses:
+Agnes
+.
+.
+
+Agnes
+.
+.
+
+Style:
+Count Palatine of the Rhine
+Territories:
+Palatinate
+
+From:
+06/08/1195
+To:
+1213
+
+
+ID:
+1269
+
+Pre-name style:
+.
+
+Name:
+Lothar
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1174-1175
+
+Died:
+16/10/1190
+
+Father:
+1266
+
+Mother:
+361
+
+
+
+ID:
+1270
+
+Pre-name style:
+.
+
+Name:
+Otto
+
+Post-name style:
+IV HRE
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1175
+
+Died:
+19/05/1218
+
+Father:
+1266
+
+Mother:
+361
+
+Spouses:
+Beatrice
+.
+.
+
+Marie
+.
+.
+
+Style:
+HRE
+Territories:
+HRE
+
+From:
+1209
+To:
+1215
+Style:
+King of the Romans
+Territories:
+Romans
+
+From:
+1198
+To:
+1209
+Style:
+King of Italy
+Territories:
+Italy
+
+From:
+1208
+To:
+1212
+Style:
+King of Burgundy
+Territories:
+Burgundy
+
+From:
+1208
+To:
+1215
+
+
+ID:
+1271
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+of Winchester
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/04/1184
+
+Died:
+13/12/1213
+
+Father:
+1266
+
+Mother:
+361
+
+Spouses:
+Helena
+.
+.
+
+
+
+ID:
+1272
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+12/06/1161
+
+Died:
+05/09/1201
+
+Father:
+Conan
+
+Mother:
+Margaret
+
+Spouses:
+362
+.
+.
+
+Guy
+.
+.
+
+
+
+ID:
+1273
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1184
+
+Died:
+10/08/1241
+
+Father:
+362
+
+Mother:
+1272
+
+
+
+ID:
+1274
+
+Pre-name style:
+Duke
+
+Name:
+Arthur
+
+Post-name style:
+I of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/03/1187
+
+Died:
+c.1203
+
+Father:
+362
+
+Mother:
+1272
+
+Style:
+Duke of Brittany
+Territories:
+Brittany
+
+From:
+1196
+To:
+1202
+
+
+ID:
+1275
+
+Pre-name style:
+King
+
+Name:
+Alfonso
+
+Post-name style:
+VIII of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/11/1155
+
+Died:
+05/10/1214
+
+Father:
+Sancho
+
+Mother:
+Blanche
+
+Spouses:
+363
+.
+.
+
+Style:
+King of Castile and Toledo
+Territories:
+Castile
+Toledo
+
+From:
+1158
+To:
+1214
+
+
+ID:
+1276
+
+Pre-name style:
+.
+
+Name:
+Sancho
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/04/1181
+
+Died:
+26/07/1181
+
+Father:
+1275
+
+Mother:
+363
+
+
+
+ID:
+1277
+
+Pre-name style:
+.
+
+Name:
+Sancha
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+20/03/1182
+
+Died:
+16/10/1185
+
+Father:
+1275
+
+Mother:
+363
+
+
+
+ID:
+1278
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1184
+
+Died:
+1184
+
+Father:
+1275
+
+Mother:
+363
+
+
+
+ID:
+1279
+
+Pre-name style:
+.
+
+Name:
+Urraca
+
+Post-name style:
+of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1186
+
+Died:
+03/11/1220
+
+Father:
+1275
+
+Mother:
+363
+
+Spouses:
+Alfonso
+.
+.
+
+
+
+ID:
+1280
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+04/03/1188
+
+Died:
+27/11/1252
+
+Father:
+1275
+
+Mother:
+363
+
+Spouses:
+Louis VIII
+.
+.
+
+
+
+ID:
+1281
+
+Pre-name style:
+.
+
+Name:
+Ferdinand
+
+Post-name style:
+of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1189
+
+Died:
+14/10/1211
+
+Father:
+1275
+
+Mother:
+363
+
+
+
+ID:
+1282
+
+Pre-name style:
+.
+
+Name:
+Mafalda
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1191
+
+Died:
+1211
+
+Father:
+1275
+
+Mother:
+363
+
+
+
+ID:
+1283
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1244
+
+Father:
+1275
+
+Mother:
+363
+
+Spouses:
+James
+.
+.
+
+
+
+ID:
+1284
+
+Pre-name style:
+.
+
+Name:
+Constance
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1202
+
+Died:
+1243
+
+Father:
+1275
+
+Mother:
+363
+
+
+
+ID:
+1285
+
+Pre-name style:
+King
+
+Name:
+Henry
+
+Post-name style:
+I of Castile
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/04/1204
+
+Died:
+06/06/1217
+
+Father:
+1275
+
+Mother:
+363
+
+Spouses:
+Mafalda
+.
+.
+
+Style:
+King of Castile
+Territories:
+Castile
+
+From:
+05/10/1214
+To:
+06/06/1217
+
+
+ID:
+1286
+
+Pre-name style:
+King
+
+Name:
+William
+
+Post-name style:
+II of Sicily
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1155
+
+Died:
+11/11/1189
+
+Father:
+William
+
+Mother:
+Margaret
+
+Spouses:
+364
+.
+.
+
+Style:
+King of Sicily
+Territories:
+Sicily
+
+From:
+1166
+To:
+1189
+
+
+ID:
+1287
+
+Pre-name style:
+.
+
+Name:
+Bohemond
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1286
+
+Mother:
+364
+
+Spouses:
+0
+.
+.
+
+
+
+ID:
+1288
+
+Pre-name style:
+Count
+
+Name:
+Raymond
+
+Post-name style:
+VI of Toulouse
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/10/1156
+
+Died:
+02/08/1222
+
+Father:
+Raymond
+
+Mother:
+1260
+
+Spouses:
+Ermessende
+.
+.
+
+Beatrice
+.
+.
+
+Bourgogne
+.
+.
+
+?
+.
+.
+
+364
+.
+.
+
+Eleanor
+.
+.
+
+Style:
+Count of Toulouse
+Territories:
+Toulouse
+
+From:
+1194
+To:
+1222
+
+
+ID:
+1289
+
+Pre-name style:
+Count
+
+Name:
+Raymond
+
+Post-name style:
+VII of Toulouse
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+07/1197
+
+Died:
+27/09/1249
+
+Father:
+1288
+
+Mother:
+364
+
+Spouses:
+Sancha
+.
+.
+
+Margaret
+.
+.
+
+Style:
+Count of Toulouse
+Territories:
+Toulouse
+
+From:
+1222
+To:
+1249
+
+
+ID:
+1290
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+of Toulouse
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1288
+
+Mother:
+364
+
+
+
+ID:
+1291
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+of Toulouse
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1288
+
+Mother:
+364
+
+
+
+ID:
+1292
+
+Pre-name style:
+.
+
+Name:
+Ida
+
+Post-name style:
+de Tosny
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+Roger
+.
+.
+
+
+
+ID:
+1293
+
+Pre-name style:
+.
+
+Name:
+Ela
+
+Post-name style:
+of Salisbury
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1187
+
+Died:
+27/08/1261
+
+Father:
+William
+
+Mother:
+Eleanor
+
+Spouses:
+365
+.
+.
+
+
+
+ID:
+1294
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+II Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1212
+
+Died:
+08/02/1250
+
+Father:
+365
+
+Mother:
+1293
+
+Spouses:
+Idoine
+.
+.
+
+
+
+ID:
+1295
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+365
+
+Mother:
+1293
+
+
+
+ID:
+1296
+
+Pre-name style:
+.
+
+Name:
+Stephen
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1260
+
+Father:
+365
+
+Mother:
+1293
+
+Spouses:
+Emeline
+.
+.
+
+
+
+ID:
+1297
+
+Pre-name style:
+.
+
+Name:
+Nicholas
+
+Post-name style:
+Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1297
+
+Father:
+365
+
+Mother:
+1293
+
+
+
+ID:
+1298
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+365
+
+Mother:
+1293
+
+Spouses:
+William
+.
+.
+
+
+
+ID:
+1299
+
+Pre-name style:
+.
+
+Name:
+Ela
+
+Post-name style:
+Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+365
+
+Mother:
+1293
+
+Spouses:
+Thomas
+.
+.
+
+Philip
+.
+.
+
+
+
+ID:
+1300
+
+Pre-name style:
+.
+
+Name:
+Ida
+
+Post-name style:
+Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+365
+
+Mother:
+1293
+
+Spouses:
+Ralph
+.
+.
+
+William
+.
+.
+
+
+
+ID:
+1301
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+365
+
+Mother:
+1293
+
+
+
+ID:
+1302
+
+Pre-name style:
+.
+
+Name:
+Pernel
+
+Post-name style:
+Longespee
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+365
+
+Mother:
+1293
+
+
+
+ID:
+1303
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+Marshal
+
+URL:
+
+
+Picture:
+
+
+Born:
+-255379
+
+Died:
+-241035
+
+Father:
+William
+
+Mother:
+Isabel
+
+Spouses:
+Gilbert
+.
+.
+
+366
+.
+.
+
+
+
+ID:
+1304
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Cornwall
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/01/1232
+
+Died:
+22/09/1233
+
+Father:
+366
+
+Mother:
+1303
+
+
+
+ID:
+1305
+
+Pre-name style:
+.
+
+Name:
+Isabella
+
+Post-name style:
+of Cornwall
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/09/1233
+
+Died:
+10/10/1234
+
+Father:
+366
+
+Mother:
+1303
+
+
+
+ID:
+1306
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+of Almain
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/11/1235
+
+Died:
+13/03/1271
+
+Father:
+366
+
+Mother:
+1303
+
+Spouses:
+Constance
+.
+.
+
+
+
+ID:
+1307
+
+Pre-name style:
+.
+
+Name:
+Nicholas
+
+Post-name style:
+of Cornwall
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/01/1240
+
+Died:
+17/01/1240
+
+Father:
+366
+
+Mother:
+1303
+
+
+
+ID:
+1308
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+of Almain
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/12/1249
+
+Died:
+1300
+
+Father:
+366
+
+Mother:
+842
+
+Spouses:
+Margaret
+.
+.
+
+
+
+ID:
+1309
+
+Pre-name style:
+.
+
+Name:
+Beatrice
+
+Post-name style:
+of Falkenburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1254
+
+Died:
+17/10/1277
+
+Father:
+Theodoric
+
+Mother:
+Berta
+
+Spouses:
+366
+.
+.
+
+
+
+ID:
+1310
+
+Pre-name style:
+King
+
+Name:
+Alexander
+
+Post-name style:
+II of Scotland
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/08/1198
+
+Died:
+06/07/1249
+
+Father:
+William
+
+Mother:
+Ermengarde
+
+Spouses:
+Joan
+.
+.
+
+Marie
+.
+.
+
+Style:
+King of Scots
+Territories:
+1214
+
+From:
+1249
+To:
+
+
+
+ID:
+1311
+
+Pre-name style:
+Emperor
+
+Name:
+Frederick
+
+Post-name style:
+II HRE
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/12/1194
+
+Died:
+13/12/1250
+
+Father:
+Henry
+
+Mother:
+Constance
+
+Spouses:
+Constance
+.
+.
+
+Yolande
+.
+.
+
+368
+.
+.
+
+Style:
+HRE and King of Italy
+Territories:
+HRE
+Italy
+
+From:
+1220
+To:
+1250
+Style:
+King of Germany
+Territories:
+Germany
+
+From:
+1212
+To:
+1220
+Style:
+King of Sicily
+Territories:
+Sicily
+
+From:
+1198
+To:
+1250
+Style:
+King of Jerusalem
+Territories:
+Jerusalem
+
+From:
+1225
+To:
+1228
+
+
+ID:
+1312
+
+Pre-name style:
+.
+
+Name:
+Frederick
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1239-1240
+
+Died:
+?
+
+Father:
+1311
+
+Mother:
+368
+
+
+
+ID:
+1313
+
+Pre-name style:
+.
+
+Name:
+Agnes
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1237
+
+Died:
+1237
+
+Father:
+1311
+
+Mother:
+368
+
+
+
+ID:
+1314
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Sicily
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/12/1241
+
+Died:
+08/08/1270
+
+Father:
+1311
+
+Mother:
+368
+
+Spouses:
+Albert
+.
+.
+
+
+
+ID:
+1315
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Otto
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/02/1238
+
+Died:
+05/1253
+
+Father:
+1311
+
+Mother:
+368
+
+
+
+ID:
+1316
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Marshal
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1190
+
+Died:
+06/04/1231
+
+Father:
+William Marshal
+
+Mother:
+?
+
+Spouses:
+Alice
+.
+.
+
+369
+.
+.
+
+
+
+ID:
+1317
+
+Pre-name style:
+.
+
+Name:
+Simon
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1208
+
+Died:
+04/08/1265
+
+Father:
+Simon
+
+Mother:
+Alix
+
+Spouses:
+369
+.
+.
+
+
+
+ID:
+1318
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/1238
+
+Died:
+1265
+
+Father:
+1317
+
+Mother:
+369
+
+
+
+ID:
+1319
+
+Pre-name style:
+.
+
+Name:
+Simon
+
+Post-name style:
+VI de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+04/1240
+
+Died:
+1271
+
+Father:
+1317
+
+Mother:
+369
+
+
+
+ID:
+1320
+
+Pre-name style:
+.
+
+Name:
+Amaury
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1242-1243
+
+Died:
+1301
+
+Father:
+1317
+
+Mother:
+369
+
+
+
+ID:
+1321
+
+Pre-name style:
+.
+
+Name:
+Guy
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1244
+
+Died:
+c1288
+
+Father:
+1317
+
+Mother:
+369
+
+Spouses:
+Margherita
+.
+.
+
+
+
+ID:
+1322
+
+Pre-name style:
+.
+
+Name:
+Joanna
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1248
+
+Died:
+c1251
+
+Father:
+1317
+
+Mother:
+369
+
+
+
+ID:
+1323
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1250
+
+Died:
+19/06/1282
+
+Father:
+1317
+
+Mother:
+369
+
+Spouses:
+Llwelyn
+.
+.
+
+
+
+ID:
+1324
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+de Montfort
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1252
+
+Died:
+1281
+
+Father:
+1317
+
+Mother:
+369
+
+
+
+ID:
+1325
+
+Pre-name style:
+King
+
+Name:
+Alexander
+
+Post-name style:
+III of Scotland
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+04/09/1241
+
+Died:
+19/03/1286
+
+Father:
+1310
+
+Mother:
+Marie
+
+Spouses:
+370
+.
+.
+
+Yolande
+.
+.
+
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+1249
+To:
+1286
+
+
+ID:
+1326
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+of Scotland
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+28/02/1261
+
+Died:
+09/04/1283
+
+Father:
+1325
+
+Mother:
+370
+
+Spouses:
+Eric
+.
+.
+
+
+
+ID:
+1327
+
+Pre-name style:
+.
+
+Name:
+Alexander
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/01/1264
+
+Died:
+17/01/1284
+
+Father:
+1325
+
+Mother:
+370
+
+Spouses:
+Margaret
+.
+.
+
+
+
+ID:
+1328
+
+Pre-name style:
+.
+
+Name:
+David
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+20/03/1272
+
+Died:
+06/1281
+
+Father:
+1325
+
+Mother:
+370
+
+
+
+ID:
+1329
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+II of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1239
+
+Died:
+18/11/1305
+
+Father:
+John
+
+Mother:
+Blanche
+
+Spouses:
+371
+.
+.
+
+Style:
+Duke of Brittany
+Territories:
+Brittany
+
+From:
+1268
+To:
+1305
+
+
+ID:
+1330
+
+Pre-name style:
+Duke
+
+Name:
+Arthur
+
+Post-name style:
+II of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/07/1261
+
+Died:
+27/08/1312
+
+Father:
+1329
+
+Mother:
+371
+
+Spouses:
+Marie
+.
+.
+
+Yolande
+.
+.
+
+Style:
+Duke of Brittany
+Territories:
+Brittany
+
+From:
+18/11/1305
+To:
+27/08/1312
+
+
+ID:
+1331
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1266
+
+Died:
+17/01/1334
+
+Father:
+1329
+
+Mother:
+371
+
+
+
+ID:
+1332
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1268
+
+Died:
+1339
+
+Father:
+1329
+
+Mother:
+371
+
+Spouses:
+Guy
+.
+.
+
+
+
+ID:
+1333
+
+Pre-name style:
+.
+
+Name:
+Pierre
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1269
+
+Died:
+1312
+
+Father:
+1329
+
+Mother:
+371
+
+
+
+ID:
+1334
+
+Pre-name style:
+.
+
+Name:
+Blanche
+
+Post-name style:
+of Brittany
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1271
+
+Died:
+1327
+
+Father:
+1329
+
+Mother:
+371
+
+Spouses:
+Philiy
+.
+.
+
+
+
+ID:
+1335
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1274
+
+Died:
+1329
+
+Father:
+1329
+
+Mother:
+371
+
+Style:
+Abbess of Fontevrault
+Territories:
+Fontevrault
+
+From:
+?
+To:
+?
+
+
+ID:
+1336
+
+Pre-name style:
+.
+
+Name:
+Aveline
+
+Post-name style:
+de Forz
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+20/01/1259
+
+Died:
+10/11/1274
+
+Father:
+William
+
+Mother:
+Isabella
+
+Spouses:
+372
+.
+.
+
+
+
+ID:
+1337
+
+Pre-name style:
+Earl
+
+Name:
+Thomas
+
+Post-name style:
+of Lancaster
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1278
+
+Died:
+22/03/1322
+
+Father:
+372
+
+Mother:
+879
+
+Spouses:
+Alice
+.
+.
+
+Style:
+Earl of Lancaster
+Territories:
+Lancaster
+
+From:
+?
+To:
+?
+
+
+ID:
+1338
+
+Pre-name style:
+Earl
+
+Name:
+Henry
+
+Post-name style:
+of Lancaster
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1281
+
+Died:
+22/09/1345
+
+Father:
+372
+
+Mother:
+879
+
+Spouses:
+Maud
+.
+.
+
+Style:
+Earl of Lancaster
+Territories:
+Lancaster
+
+From:
+?
+To:
+?
+
+
+ID:
+1339
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+of Lancaster
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1317
+
+Father:
+372
+
+Mother:
+879
+
+Spouses:
+Alix
+.
+.
+
+
+
+ID:
+1340
+
+Pre-name style:
+Count
+
+Name:
+Henry
+
+Post-name style:
+III of Bar
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1259
+
+Died:
+09/1302
+
+Father:
+Theobald
+
+Mother:
+Jeanne
+
+Spouses:
+379
+.
+.
+
+
+
+ID:
+1341
+
+Pre-name style:
+Count
+
+Name:
+Edward
+
+Post-name style:
+I of Bar
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1336
+
+Father:
+1340
+
+Mother:
+379
+
+Spouses:
+Mary
+.
+.
+
+
+
+ID:
+1342
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+of Bar
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1361
+
+Father:
+1340
+
+Mother:
+379
+
+Spouses:
+John
+.
+.
+
+
+
+ID:
+1343
+
+Pre-name style:
+.
+
+Name:
+Gilbert
+
+Post-name style:
+de Clare
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/09/1243
+
+Died:
+07/12/1295
+
+Father:
+Richard
+
+Mother:
+Maud
+
+Spouses:
+Alice
+.
+.
+
+381
+.
+.
+
+
+
+ID:
+1344
+
+Pre-name style:
+.
+
+Name:
+Gilbert
+
+Post-name style:
+de Clare
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/05/1291
+
+Died:
+24/06/1314
+
+Father:
+1343
+
+Mother:
+381
+
+Spouses:
+Maud
+.
+.
+
+
+
+ID:
+1345
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+de Clare
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/10/1292
+
+Died:
+30/06/1337
+
+Father:
+1343
+
+Mother:
+381
+
+Spouses:
+Hugh
+.
+.
+
+William
+.
+.
+
+
+
+ID:
+1346
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+de Clare
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/1293
+
+Died:
+04/1342
+
+Father:
+1343
+
+Mother:
+381
+
+Spouses:
+Piers
+.
+.
+
+Hugh
+.
+.
+
+
+
+ID:
+1347
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+de Clare
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/09/1295
+
+Died:
+04/11/1360
+
+Father:
+1343
+
+Mother:
+381
+
+Spouses:
+John
+.
+.
+
+Theobald
+.
+.
+
+Roger
+.
+.
+
+
+
+ID:
+1348
+
+Pre-name style:
+.
+
+Name:
+Ralph
+
+Post-name style:
+de Monthermer
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1270
+
+Died:
+05/04/1325
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+381
+.
+.
+
+
+
+ID:
+1349
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+de Monthermer
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/1297
+
+Died:
+c1371
+
+Father:
+1348
+
+Mother:
+381
+
+Spouses:
+Duncan
+.
+.
+
+
+
+ID:
+1350
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+de Monthermer
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1299
+
+Died:
+?
+
+Father:
+1348
+
+Mother:
+381
+
+
+
+ID:
+1351
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+de Monthermer
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1301
+
+Died:
+?
+
+Father:
+1348
+
+Mother:
+381
+
+
+
+ID:
+1352
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+de Monthermer
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1304
+
+Died:
+1339
+
+Father:
+1348
+
+Mother:
+381
+
+
+
+ID:
+1353
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+II of Brabant
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/09/1275
+
+Died:
+27/10/1312
+
+Father:
+John
+
+Mother:
+Margaret
+
+Spouses:
+383
+.
+.
+
+Style:
+Duke of Brabant, Lothier, and Limburg
+Territories:
+Brabant
+Lothier
+Limburg
+
+From:
+1294
+To:
+1312
+
+
+ID:
+1354
+
+Pre-name style:
+Duke
+
+Name:
+John
+
+Post-name style:
+III of Brabant
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1300
+
+Died:
+-198709
+
+Father:
+1353
+
+Mother:
+383
+
+Spouses:
+Marie
+.
+.
+
+Style:
+Duke of Brabant, Lothier, and Limburg
+Territories:
+Brabant
+Lothier
+Limburg
+
+From:
+1312
+To:
+1355
+
+
+ID:
+1355
+
+Pre-name style:
+Count
+
+Name:
+John
+
+Post-name style:
+I of Holland
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1284
+
+Died:
+10/11/1299
+
+Father:
+Floris
+
+Mother:
+Beatrice
+
+Spouses:
+388
+.
+.
+
+
+
+ID:
+1356
+
+Pre-name style:
+.
+
+Name:
+Humphrey
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1276
+
+Died:
+16/03/1322
+
+Father:
+Humphrey
+
+Mother:
+Maud
+
+Spouses:
+388
+.
+.
+
+
+
+ID:
+1357
+
+Pre-name style:
+.
+
+Name:
+Hugh
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/1303
+
+Died:
+1305
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1358
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+17/10/1304
+
+Died:
+07/10/1363
+
+Father:
+1356
+
+Mother:
+388
+
+Spouses:
+James
+.
+.
+
+Thomas
+.
+.
+
+
+
+ID:
+1359
+
+Pre-name style:
+.
+
+Name:
+Humphrey
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1305
+
+Died:
+1305
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1360
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1305
+
+Died:
+1305
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1361
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+23/11/1306
+
+Died:
+20/01/1336
+
+Father:
+1356
+
+Mother:
+388
+
+Spouses:
+Alice
+.
+.
+
+Margaret
+.
+.
+
+
+
+ID:
+1362
+
+Pre-name style:
+.
+
+Name:
+Humphrey
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/12/1309
+
+Died:
+15/10/1361
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1363
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/04/1311
+
+Died:
+16/12/1391
+
+Father:
+1356
+
+Mother:
+388
+
+Spouses:
+Hugh
+.
+.
+
+
+
+ID:
+1364
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1312
+
+Died:
+1334
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1365
+
+Pre-name style:
+.
+
+Name:
+Eneas
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1314
+
+Died:
+After 1322
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1366
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+de Bohun
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/05/1316
+
+Died:
+05/05/1316
+
+Father:
+1356
+
+Mother:
+388
+
+
+
+ID:
+1367
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+de Hales
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+Before 10/1330
+
+Father:
+Roger
+
+Mother:
+Alric
+
+Spouses:
+389
+.
+.
+
+
+
+ID:
+1368
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+of Norfolk
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1320
+
+Died:
+Before 08/1334
+
+Father:
+389
+
+Mother:
+1367
+
+Spouses:
+Beatrice
+.
+.
+
+
+
+ID:
+1369
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1320
+
+Died:
+24/03/1399
+
+Father:
+389
+
+Mother:
+1367
+
+Spouses:
+John
+.
+.
+
+Walter
+.
+.
+
+
+
+ID:
+1370
+
+Pre-name style:
+.
+
+Name:
+Alice
+
+Post-name style:
+of Norfolk
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1324
+
+Died:
+C30/01/1352
+
+Father:
+389
+
+Mother:
+1367
+
+Spouses:
+Edward
+.
+.
+
+
+
+ID:
+1371
+
+Pre-name style:
+.
+
+Name:
+Mary
+
+Post-name style:
+de Brewes
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+11/06/1362
+
+Father:
+Peter
+
+Mother:
+Agnes
+
+Spouses:
+Ralph
+.
+.
+
+389
+.
+.
+
+
+
+ID:
+1372
+
+Pre-name style:
+.
+
+Name:
+Edmund
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1326
+
+Died:
+Before 05/10/1331
+
+Father:
+390
+
+Mother:
+573
+
+
+
+ID:
+1373
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1327
+
+Died:
+1352
+
+Father:
+390
+
+Mother:
+573
+
+Spouses:
+Arnaud
+.
+.
+
+
+
+ID:
+1374
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/04/1330
+
+Died:
+26/12/1352
+
+Father:
+390
+
+Mother:
+573
+
+Spouses:
+Isabella
+.
+.
+
+
+
+ID:
+1375
+
+Pre-name style:
+Duke
+
+Name:
+Reginald
+
+Post-name style:
+II of Guelders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1295
+
+Died:
+12/10/1343
+
+Father:
+Reginald
+
+Mother:
+Marguerite
+
+Spouses:
+Sophia
+.
+.
+
+393
+.
+.
+
+Style:
+Duke of Guelders
+Territories:
+Guelders
+
+From:
+1339
+To:
+1343
+
+
+ID:
+1376
+
+Pre-name style:
+Duke
+
+Name:
+Reginald
+
+Post-name style:
+III of Guelders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/05/1333
+
+Died:
+04/12/1371
+
+Father:
+1375
+
+Mother:
+393
+
+Spouses:
+Marie
+.
+.
+
+Style:
+Duke of Guelders
+Territories:
+Guelders
+
+From:
+1343
+To:
+1361
+Style:
+Duke of Guelders
+Territories:
+Guelders
+
+From:
+1371
+To:
+1371
+
+
+ID:
+1377
+
+Pre-name style:
+Duke
+
+Name:
+Edward
+
+Post-name style:
+of Guelders
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+12/03/1336
+
+Died:
+24/08/1371
+
+Father:
+1375
+
+Mother:
+393
+
+Style:
+Duke of Guelders
+Territories:
+Guelders
+
+From:
+1361
+To:
+1371
+
+
+ID:
+1378
+
+Pre-name style:
+King
+
+Name:
+David
+
+Post-name style:
+II of Scotland
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/03/1324
+
+Died:
+22/02/1371
+
+Father:
+Robert
+
+Mother:
+Elizabeth
+
+Spouses:
+394
+.
+.
+
+Margaret
+.
+.
+
+Style:
+King of Scots
+Territories:
+Scotland
+
+From:
+07/06/1326
+To:
+22/02/1371
+
+
+ID:
+1379
+
+Pre-name style:
+.
+
+Name:
+Enguerrand
+
+Post-name style:
+VII de Coucy
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1340
+
+Died:
+18/02/1397
+
+Father:
+Enguerrand VI
+
+Mother:
+?
+
+Spouses:
+395
+.
+.
+
+
+
+ID:
+1380
+
+Pre-name style:
+.
+
+Name:
+Marie
+
+Post-name style:
+I de Coucy
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+04/1366
+
+Died:
+After 03/03/1405
+
+Father:
+1379
+
+Mother:
+395
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+1381
+
+Pre-name style:
+.
+
+Name:
+Philippa
+
+Post-name style:
+de Coucy
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+Before 18/04/1367
+
+Died:
+10/1411
+
+Father:
+1379
+
+Mother:
+395
+
+Spouses:
+Robert
+.
+.
+
+
+
+ID:
+1382
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+de Burgh
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/07/1332
+
+Died:
+10/12/1363
+
+Father:
+William
+
+Mother:
+Maud
+
+Spouses:
+398
+.
+.
+
+
+
+ID:
+1383
+
+Pre-name style:
+.
+
+Name:
+Philippa
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/08/1355
+
+Died:
+05/01/1382
+
+Father:
+398
+
+Mother:
+1382
+
+Spouses:
+Edmund
+.
+.
+
+
+
+ID:
+1384
+
+Pre-name style:
+.
+
+Name:
+Violante
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1353
+
+Died:
+11/1366
+
+Father:
+Galeazzo
+
+Mother:
+?
+
+Spouses:
+398
+.
+.
+
+
+
+ID:
+1385
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Hastings
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/08/1347
+
+Died:
+16/04/1355
+
+Father:
+Laurence
+
+Mother:
+Agnes
+
+Spouses:
+401
+.
+.
+
+
+
+ID:
+1386
+
+Pre-name style:
+.
+
+Name:
+Humphrey
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1381
+
+Died:
+1399
+
+Father:
+403
+
+Mother:
+943
+
+
+
+ID:
+1387
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Gloucester
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/04/1383
+
+Died:
+16/10/1438
+
+Father:
+403
+
+Mother:
+943
+
+Spouses:
+Thomas
+.
+.
+
+William
+.
+.
+
+
+
+ID:
+1388
+
+Pre-name style:
+.
+
+Name:
+Joan
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1384
+
+Died:
+16/08/1400
+
+Father:
+403
+
+Mother:
+943
+
+Spouses:
+Gilbert
+.
+.
+
+
+
+ID:
+1389
+
+Pre-name style:
+.
+
+Name:
+Isabel
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1385
+
+Died:
+04/1402
+
+Father:
+403
+
+Mother:
+943
+
+
+
+ID:
+1390
+
+Pre-name style:
+.
+
+Name:
+Philippe
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1388
+
+Died:
+?
+
+Father:
+403
+
+Mother:
+943
+
+
+
+ID:
+1391
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+of Burgundy
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1404
+
+Died:
+14/11/1432
+
+Father:
+John
+
+Mother:
+Margaret
+
+Spouses:
+405
+.
+.
+
+
+
+ID:
+1392
+
+Pre-name style:
+.
+
+Name:
+Jacqueline
+
+Post-name style:
+of Bavaria
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/08/1401
+
+Died:
+08/10/1436
+
+Father:
+William
+
+Mother:
+Margaret
+
+Spouses:
+John
+.
+.
+
+John
+.
+.
+
+406
+.
+.
+
+Frank
+.
+.
+
+
+
+ID:
+1393
+
+Pre-name style:
+.
+
+Name:
+Eleanor
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1400
+
+Died:
+07/07/1452
+
+Father:
+Reynold
+
+Mother:
+Eleanor
+
+Spouses:
+406
+.
+.
+
+
+
+ID:
+1394
+
+Pre-name style:
+.
+
+Name:
+Arthur
+
+Post-name style:
+of Gloucester
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+1447
+
+Father:
+406
+
+Mother:
+1393
+
+
+
+ID:
+1395
+
+Pre-name style:
+.
+
+Name:
+Antigone
+
+Post-name style:
+Plantagenet
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1425
+
+Died:
+After 1450
+
+Father:
+406
+
+Mother:
+1393
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+1396
+
+Pre-name style:
+.
+
+Name:
+Louis
+
+Post-name style:
+III, Elector Palatine
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+23/01/1378
+
+Died:
+30/12/1436
+
+Father:
+Rupert
+
+Mother:
+Elizabeth
+
+Spouses:
+407
+.
+.
+
+Matilda
+.
+.
+
+Style:
+Elector Palatine
+Territories:
+Palatinate
+
+From:
+1410
+To:
+1436
+
+
+ID:
+1397
+
+Pre-name style:
+.
+
+Name:
+Rupert
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+22/06/1406
+
+Died:
+1426
+
+Father:
+1396
+
+Mother:
+407
+
+
+
+ID:
+1398
+
+Pre-name style:
+.
+
+Name:
+Eric
+
+Post-name style:
+of Pomerania
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1381
+
+Died:
+03/05/1459
+
+Father:
+Wartislaw
+
+Mother:
+Mary
+
+Spouses:
+408
+.
+.
+
+Style:
+King of Norway
+Territories:
+Norway
+
+From:
+1389
+To:
+1442
+Style:
+King of Denmark and Sweden
+Territories:
+Denmark
+Sweden
+
+From:
+1396
+To:
+1439
+
+
+ID:
+1400
+
+Pre-name style:
+.
+
+Name:
+Ralph
+
+Post-name style:
+Scrope
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+c151
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+411
+.
+.
+
+
+
+ID:
+1401
+
+Pre-name style:
+.
+
+Name:
+John
+
+Post-name style:
+Welles
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1450
+
+Died:
+09/02/1498
+
+Father:
+Lionel
+
+Mother:
+Margaret
+
+Spouses:
+411
+.
+.
+
+
+
+ID:
+1402
+
+Pre-name style:
+.
+
+Name:
+Robert
+
+Post-name style:
+Welles
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1401
+
+Mother:
+411
+
+
+
+ID:
+1403
+
+Pre-name style:
+.
+
+Name:
+Elizabeth
+
+Post-name style:
+Welles
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1401
+
+Mother:
+411
+
+
+
+ID:
+1404
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+Welles
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1401
+
+Mother:
+411
+
+
+
+ID:
+1405
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Kyme
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+?
+
+Mother:
+?
+
+Spouses:
+411
+.
+.
+
+
+
+ID:
+1406
+
+Pre-name style:
+.
+
+Name:
+Richard
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1405
+
+Mother:
+411
+
+
+
+ID:
+1407
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+1405
+
+Mother:
+411
+
+
+
+ID:
+1408
+
+Pre-name style:
+.
+
+Name:
+Anne
+
+Post-name style:
+de Mowbray
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/12/1472
+
+Died:
+19/11/1481
+
+Father:
+John
+
+Mother:
+Elizabeth
+
+Spouses:
+413
+.
+.
+
+
+
+ID:
+1409
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1473
+
+Died:
+25/08/1554
+
+Father:
+1002
+
+Mother:
+1003
+
+Spouses:
+414
+.
+.
+
+Elizabeth
+.
+.
+
+
+
+ID:
+1410
+
+Pre-name style:
+.
+
+Name:
+Thomas
+
+Post-name style:
+Howard
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1496
+
+Died:
+1508
+
+Father:
+1409
+
+Mother:
+414
+
+
+
+ID:
+1411
+
+Pre-name style:
+.
+
+Name:
+William
+
+Post-name style:
+Courtenay
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1475
+
+Died:
+09/06/1511
+
+Father:
+Edward
+
+Mother:
+Elizabeth
+
+Spouses:
+416
+.
+.
+
+
+
+ID:
+1412
+
+Pre-name style:
+.
+
+Name:
+Henry
+
+Post-name style:
+Courtenay
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1496
+
+Died:
+09/01/1539
+
+Father:
+1411
+
+Mother:
+416
+
+Spouses:
+Elizabeth
+.
+.
+
+Gertrude
+.
+.
+
+
+
+ID:
+1413
+
+Pre-name style:
+.
+
+Name:
+Edward
+
+Post-name style:
+Courtenay
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1497
+
+Died:
+07/1502
+
+Father:
+1411
+
+Mother:
+416
+
+
+
+ID:
+1414
+
+Pre-name style:
+.
+
+Name:
+Margaret
+
+Post-name style:
+Courtenay
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1499
+
+Died:
+Before 1526
+
+Father:
+1411
+
+Mother:
+416
+
+Spouses:
+Henry
+.
+.
+
+
+
+ID:
+1415
+
+Pre-name style:
+.
+
+Name:
+Philippe
+
+Post-name style:
+Courtenay
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+21/09/1640
+
+Died:
+09/06/1701
+
+Father:
+1083
+
+Mother:
+Anne
+
+Spouses:
+437
+.
+.
+
+Elizabeth
+.
+.
+
+
+
+ID:
+1416
+
+Pre-name style:
+.
+
+Name:
+Marie Louise
+
+Post-name style:
+of Orleans
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/03/1662
+
+Died:
+12/02/1689
+
+Father:
+1415
+
+Mother:
+437
+
+Spouses:
+Charles II
+.
+.
+
+
+
+ID:
+1417
+
+Pre-name style:
+.
+
+Name:
+Philippe Charles
+
+Post-name style:
+of Orleans
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/07/1664
+
+Died:
+08/12/1666
+
+Father:
+1415
+
+Mother:
+437
+
+
+
+ID:
+1418
+
+Pre-name style:
+.
+
+Name:
+Anne Marie
+
+Post-name style:
+of Orleans
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/08/1669
+
+Died:
+26/08/1728
+
+Father:
+1415
+
+Mother:
+437
+
+Spouses:
+Victor
+.
+.
+
+
+
+ID:
+1419
+
+Pre-name style:
+.
+
+Name:
+Maria Clementina
+
+Post-name style:
+Sobieska
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1702
+
+Died:
+1735
+
+Father:
+James
+
+Mother:
+Hedwig
+
+Spouses:
+451
+.
+.
+
+
+
+ID:
+1420
+
+Pre-name style:
+.
+
+Name:
+Charles Edward Louis John Casimir Sylvester Severino Maria
+
+Post-name style:
+Stuart
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/11/1720
+
+Died:
+31/01/1788
+
+Father:
+451
+
+Mother:
+1419
+
+Spouses:
+Louise
+.
+.
+
+
+
+ID:
+1421
+
+Pre-name style:
+Cardinal
+
+Name:
+Henry Benedict Thomas Edward Maria Clement Francis Xavier
+
+Post-name style:
+Stuart
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+?
+
+Died:
+?
+
+Father:
+451
+
+Mother:
+1419
+
+
+
+ID:
+1422
+
+Pre-name style:
+King
+
+Name:
+Frederick William
+
+Post-name style:
+I of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/08/1688
+
+Died:
+31/05/1740
+
+Father:
+Frederick
+
+Mother:
+660
+
+Spouses:
+458
+.
+.
+
+
+
+ID:
+1423
+
+Pre-name style:
+Prince
+
+Name:
+Frederick Louis
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+23/11/1707
+
+Died:
+13/05/1708
+
+Father:
+1422
+
+Mother:
+458
+
+
+
+ID:
+1424
+
+Pre-name style:
+Princess
+
+Name:
+Friederike Sophie WILHELMINE
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/07/1709
+
+Died:
+14/10/1758
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Frederick
+.
+.
+
+
+
+ID:
+1425
+
+Pre-name style:
+Prince
+
+Name:
+Frederick William
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+16/08/1710
+
+Died:
+21/07/1711
+
+Father:
+1422
+
+Mother:
+458
+
+
+
+ID:
+1426
+
+Pre-name style:
+King
+
+Name:
+Frederick
+
+Post-name style:
+II of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/01/1712
+
+Died:
+17/08/1786
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Elizabeth
+.
+.
+
+Style:
+King of Prussia
+Territories:
+Prussia
+
+From:
+1740
+To:
+1786
+
+
+ID:
+1427
+
+Pre-name style:
+Princess
+
+Name:
+Charlotte Albertine
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+05/05/1713
+
+Died:
+10/06/1714
+
+Father:
+1422
+
+Mother:
+458
+
+
+
+ID:
+1428
+
+Pre-name style:
+Princess
+
+Name:
+Frederica Louise
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/08/1714
+
+Died:
+04/02/1784
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Karl
+.
+.
+
+
+
+ID:
+1429
+
+Pre-name style:
+Prince
+
+Name:
+Louis Charles William
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+02/05/1717
+
+Died:
+31/08/1719
+
+Father:
+1422
+
+Mother:
+458
+
+
+
+ID:
+1430
+
+Pre-name style:
+Princess
+
+Name:
+Sophia Dorothea
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+25/01/1719
+
+Died:
+13/11/1765
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Frederick
+.
+.
+
+
+
+ID:
+1431
+
+Pre-name style:
+Princess
+
+Name:
+Louisa Ulrika
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+24/07/1720
+
+Died:
+16/07/1782
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Adolf
+.
+.
+
+
+
+ID:
+1432
+
+Pre-name style:
+Prince
+
+Name:
+Augustus William
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/08/1722
+
+Died:
+12/06/1758
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Luise
+.
+.
+
+
+
+ID:
+1433
+
+Pre-name style:
+Princess
+
+Name:
+Anna Amalia
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+09/11/1723
+
+Died:
+30/03/1787
+
+Father:
+1422
+
+Mother:
+458
+
+Style:
+Princess Abess of Quedlinburg
+Territories:
+Quedlinburg
+
+From:
+?
+To:
+?
+
+
+ID:
+1434
+
+Pre-name style:
+Prince
+
+Name:
+Frederick HENRY Louis
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+18/01/1726
+
+Died:
+03/08/1802
+
+Father:
+1422
+
+Mother:
+458
+
+
+
+ID:
+1435
+
+Pre-name style:
+Prince
+
+Name:
+Augustus Ferdinand
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+23/05/1730
+
+Died:
+02/05/1813
+
+Father:
+1422
+
+Mother:
+458
+
+Spouses:
+Elizabeth
+.
+.
+
+
+
+ID:
+1436
+
+Pre-name style:
+Prince
+
+Name:
+William
+
+Post-name style:
+IV of Orange
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+01/09/1711
+
+Died:
+22/10/1751
+
+Father:
+John
+
+Mother:
+Marie
+
+Spouses:
+459
+.
+.
+
+Style:
+Prince of Orange
+Territories:
+Orange
+
+From:
+?
+To:
+?
+
+
+ID:
+1437
+
+Pre-name style:
+Princess
+
+Name:
+Caroline
+
+Post-name style:
+of Orange-Nassau
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+28/02/1743
+
+Died:
+06/05/1787
+
+Father:
+1436
+
+Mother:
+459
+
+Spouses:
+Charles
+.
+.
+
+
+
+ID:
+1438
+
+Pre-name style:
+.
+
+Name:
+Anna
+
+Post-name style:
+of Orange-Nassau
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+15/11/1746
+
+Died:
+29/12/1746
+
+Father:
+1436
+
+Mother:
+459
+
+
+
+ID:
+1439
+
+Pre-name style:
+Prince
+
+Name:
+William Batavus
+
+Post-name style:
+V of Orange
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+08/03/1748
+
+Died:
+09/04/1806
+
+Father:
+1436
+
+Mother:
+459
+
+Spouses:
+Wilhelmina
+.
+.
+
+Style:
+Stadtholder of the United Provinces
+Territories:
+UP
+
+From:
+22/10/1751
+To:
+09/04/1806
+Style:
+Prince of Orange
+Territories:
+Orange
+
+From:
+22/10/1752
+To:
+09/04/1806
+
+
+ID:
+1440
+
+Pre-name style:
+Landgrave
+
+Name:
+Frederick
+
+Post-name style:
+II of Hess-Kassel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+14/08/1720
+
+Died:
+31/10/1785
+
+Father:
+William VIII
+
+Mother:
+Dorothea
+
+Spouses:
+465
+.
+.
+
+Philippine
+.
+.
+
+Style:
+Landgrave of Hess-Kassel
+Territories:
+Hess-Kassel
+
+From:
+1760
+To:
+1785
+
+
+ID:
+1441
+
+Pre-name style:
+Elector
+
+Name:
+William
+
+Post-name style:
+I of Hesse
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/06/1743
+
+Died:
+27/02/1821
+
+Father:
+1440
+
+Mother:
+465
+
+Spouses:
+1447
+.
+.
+
+
+
+ID:
+1442
+
+Pre-name style:
+Prince
+
+Name:
+Charles
+
+Post-name style:
+of Hesse-Kassel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+19/12/1744
+
+Died:
+17/08/1836
+
+Father:
+1440
+
+Mother:
+465
+
+Spouses:
+Louise
+.
+.
+
+
+
+ID:
+1443
+
+Pre-name style:
+Prince
+
+Name:
+Frederick
+
+Post-name style:
+of Hesse-Kassel
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+11/09/1747
+
+Died:
+20/05/1837
+
+Father:
+1440
+
+Mother:
+465
+
+Spouses:
+Caroline
+.
+.
+
+
+
+ID:
+1444
+
+Pre-name style:
+King
+
+Name:
+Frederick
+
+Post-name style:
+V of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+31/03/1723
+
+Died:
+14/01/1766
+
+Father:
+Christian VI
+
+Mother:
+Sopia
+
+Spouses:
+466
+.
+.
+
+Juliana
+.
+.
+
+Style:
+King of Denmark and Norway
+Territories:
+Denmark
+Norway
+
+From:
+1746
+To:
+1766
+
+
+ID:
+1445
+
+Pre-name style:
+Prince
+
+Name:
+Christian
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+07/07/1745
+
+Died:
+03/06/1747
+
+Father:
+1444
+
+Mother:
+466
+
+
+
+ID:
+1446
+
+Pre-name style:
+.
+
+Name:
+Sophia Magdalena
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/07/1746
+
+Died:
+21/08/1813
+
+Father:
+1444
+
+Mother:
+466
+
+Spouses:
+Gustav
+.
+.
+
+
+
+ID:
+1447
+
+Pre-name style:
+Princess
+
+Name:
+Wilhelmina CAROLINE
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+10/07/1747
+
+Died:
+14/01/1820
+
+Father:
+1444
+
+Mother:
+466
+
+Spouses:
+1441
+.
+.
+
+
+
+ID:
+1448
+
+Pre-name style:
+King
+
+Name:
+Christian 
+
+Post-name style:
+VII of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+29/01/1749
+
+Died:
+13/03/1808
+
+Father:
+1444
+
+Mother:
+466
+
+Spouses:
+683
+.
+.
+
+Style:
+King of Denmark and Norway
+Territories:
+Denmark
+Norway
+
+From:
+14/01/1766
+To:
+13/03/1808
+
+
+ID:
+1449
+
+Pre-name style:
+Princess
+
+Name:
+Louise
+
+Post-name style:
+of Denmark
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+20/01/1750
+
+Died:
+12/01/1831
+
+Father:
+1444
+
+Mother:
+466
+
+Spouses:
+Charles
+.
+.
+
+
+
+ID:
+1450
+
+Pre-name style:
+Duke
+
+Name:
+Frederick William Charles
+
+Post-name style:
+I of Wurttemburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+06/11/1754
+
+Died:
+30/10/1816
+
+Father:
+Frederick
+
+Mother:
+Sophia
+
+Spouses:
+1140
+.
+.
+
+467
+.
+.
+
+
+
+ID:
+1451
+
+Pre-name style:
+Landgrave
+
+Name:
+Frederick
+
+Post-name style:
+VI of Hesse-Homburg
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+30/07/1769
+
+Died:
+02/04/1829
+
+Father:
+Frederick
+
+Mother:
+Caroline
+
+Spouses:
+469
+.
+.
+
+Style:
+Landgrave of Hesse-Homburg
+Territories:
+Hesse-Homburg
+
+From:
+20/01/1820
+To:
+02/04/1829
+
+
+ID:
+1452
+
+Pre-name style:
+.
+
+Name:
+Frederica Louise Caroline Sophie Charlotte Alexandrine
+
+Post-name style:
+of Mecklenburg-Strelitz
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+03/03/1778
+
+Died:
+29/06/1841
+
+Father:
+1214
+
+Mother:
+Frederica
+
+Spouses:
+Frederick
+.
+.
+
+Frederick
+.
+.
+
+470
+.
+.
+
+
+
+ID:
+1453
+
+Pre-name style:
+King
+
+Name:
+George Frederick Alexander Charles Ernest Augustus
+
+Post-name style:
+of Hanover
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/05/1819
+
+Died:
+12/06/1878
+
+Father:
+470
+
+Mother:
+1452
+
+Spouses:
+Marie
+.
+.
+
+Style:
+King of Hanover
+Territories:
+Hanover
+
+From:
+18/11/1851
+To:
+20/09/1866
+
+
+ID:
+1454
+
+Pre-name style:
+Lady
+
+Name:
+Augusta
+
+Post-name style:
+Murray
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+27/01/1768
+
+Died:
+05/03/1830
+
+Father:
+John
+
+Mother:
+Charlotte
+
+Spouses:
+471
+.
+.
+
+
+
+ID:
+1455
+
+Pre-name style:
+.
+
+Name:
+Augustus 
+
+Post-name style:
+d'Este
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+13/01/1794
+
+Died:
+28/12/1848
+
+Father:
+471
+
+Mother:
+1454
+
+
+
+ID:
+1456
+
+Pre-name style:
+.
+
+Name:
+Augusta Emma
+
+Post-name style:
+d'Este
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+1801
+
+Died:
+1866
+
+Father:
+471
+
+Mother:
+1454
+
+Spouses:
+Thomas
+.
+.
+
+
+
+ID:
+1457
+
+Pre-name style:
+Lady
+
+Name:
+Cecilia Letitia
+
+Post-name style:
+Gore
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+c1785
+
+Died:
+01/08/1873
+
+Father:
+arthur
+
+Mother:
+Elizabeth
+
+Spouses:
+George
+.
+.
+
+471
+.
+.
+
+
+
+ID:
+1458
+
+Pre-name style:
+Prince
+
+Name:
+George William Frederick Charles
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+26/03/1819
+
+Died:
+17/03/1904
+
+Father:
+472
+
+Mother:
+1170
+
+Spouses:
+Sarah
+.
+.
+
+
+
+ID:
+1459
+
+Pre-name style:
+Princess
+
+Name:
+Augusta
+
+Post-name style:
+of Cambridge
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+19/07/1822
+
+Died:
+05/12/1916
+
+Father:
+472
+
+Mother:
+1170
+
+Spouses:
+Frederick
+.
+.
+
+
+
+ID:
+1460
+
+Pre-name style:
+Prince
+
+Name:
+William Frederick
+
+Post-name style:
+.
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+15/01/1776
+
+Died:
+30/11/1834
+
+Father:
+679
+
+Mother:
+Maria
+
+
+
+ID:
+1461
+
+Pre-name style:
+Princess
+
+Name:
+Frederica Charlotte Ulrika Katherine
+
+Post-name style:
+of Prussia
+
+URL:
+.
+
+Picture:
+.
+
+Born:
+07/05/1767
+
+Died:
+06/08/1820
+
+Father:
+Frederick
+
+Mother:
+Elizabeth
+
+Spouses:
+478
+.
+.
+
+
+
index 969caa5a58bb0efa7e04a2e6f456774c9a37fb4d..790053d3be13059247ea85f46a29b8d12451dc40 100644 (file)
Binary files a/familyTree/tree.db and b/familyTree/tree.db differ