From: naath Date: Fri, 23 Sep 2016 16:27:15 +0000 (+0100) Subject: I'm sure I've done something since I remembered to commit... X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~naath/git?a=commitdiff_plain;h=ba77c4fb88304bf7a1214a9187f0b51655990b9f;p=familyTree.git I'm sure I've done something since I remembered to commit... --- diff --git a/cgiFiles/ancestorGraph.py b/cgiFiles/ancestorGraph.py index 6c633e0..cbd5f70 100755 --- a/cgiFiles/ancestorGraph.py +++ b/cgiFiles/ancestorGraph.py @@ -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() diff --git a/cgiFiles/ancestors.py b/cgiFiles/ancestors.py index 8baf436..2047761 100755 --- a/cgiFiles/ancestors.py +++ b/cgiFiles/ancestors.py @@ -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,'
')[0] else: - printMe = askQuestion.common_ancestors(ID,ID2,'
')[0] + printMe = askQuestion.common_ancestors(ID,ID2,'
') if len(printMe)<10: printMe = 'sorry, no data
' everyPage.good(printMe) -everyPage.bottom(conn) +everyPage.bottom() diff --git a/cgiFiles/bigGraph.py b/cgiFiles/bigGraph.py index 9ec77f9..082c996 100755 --- a/cgiFiles/bigGraph.py +++ b/cgiFiles/bigGraph.py @@ -1,49 +1,124 @@ #!/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) diff --git a/cgiFiles/countNames.py b/cgiFiles/countNames.py index efd99b0..5a8e9e5 100755 --- a/cgiFiles/countNames.py +++ b/cgiFiles/countNames.py @@ -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() diff --git a/cgiFiles/everyPage.py b/cgiFiles/everyPage.py index 5ae696d..c938f9f 100755 --- a/cgiFiles/everyPage.py +++ b/cgiFiles/everyPage.py @@ -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+= '
  • %s
  • \n' %(script,text) + else: + pageText+= '
  • %s
  • \n' %(base_url(),script,text) + def links(): - print '
    ' - print '' - print '' - print '
    ' - + 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+= '
    \n' + for i in range(len(items)): + item = items[i] + if i%4==0 and i!=len(items): + if i!=0: + pageText+= '\n' + pageText+= '\n' + pageText+= '
    \n' + + def footer(): - print '
    ' - print 'This somewhat silly thing made by ' - print 'naath' - print '
    ' - print 'Thanks to chiark for hosting this' - print '
    ' - print 'Information sourced from wikipedia' - 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+= '
    \n' + pageText+= 'This somewhat silly thing made by \n' + pageText+= 'naath\n' + pageText+= '
    \n' + pageText+= 'Thanks to chiark for hosting this\n' + pageText+= '
    \n' + pageText+= 'Information sourced from wikipedia\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 "" - print "" - print ""+ title(titleNum) +"" - - print "" - - print "" - print "" + global pageText + pageText+= "\n" + pageText+='\n' + pageText+= "\n" + pageText+= ""+ title(titleNum) +"\n" + + pageText+= "\n" + pageText+= '' + + + pageText+= "\n" + pageText+= "\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 "" - print "" - askQuestion.close(conn) + pageText+= "\n" + pageText+= "\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 = '' diff --git a/cgiFiles/jointAncestorGraph.py b/cgiFiles/jointAncestorGraph.py index c700ff0..15515d6 100755 --- a/cgiFiles/jointAncestorGraph.py +++ b/cgiFiles/jointAncestorGraph.py @@ -1,110 +1,63 @@ #!/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() diff --git a/cgiFiles/listAge.py b/cgiFiles/listAge.py index e1a8d61..4ab2931 100755 --- a/cgiFiles/listAge.py +++ b/cgiFiles/listAge.py @@ -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() diff --git a/cgiFiles/listAgeDeath.py b/cgiFiles/listAgeDeath.py index 44a724c..249c03c 100755 --- a/cgiFiles/listAgeDeath.py +++ b/cgiFiles/listAgeDeath.py @@ -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() diff --git a/cgiFiles/listChildCount.py b/cgiFiles/listChildCount.py index 689a5a6..328576b 100755 --- a/cgiFiles/listChildCount.py +++ b/cgiFiles/listChildCount.py @@ -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() diff --git a/cgiFiles/listPeople.py b/cgiFiles/listPeople.py index d6deedc..c73fa19 100755 --- a/cgiFiles/listPeople.py +++ b/cgiFiles/listPeople.py @@ -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() diff --git a/cgiFiles/listTerr.py b/cgiFiles/listTerr.py index 37d02e0..fec486b 100755 --- a/cgiFiles/listTerr.py +++ b/cgiFiles/listTerr.py @@ -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() diff --git a/cgiFiles/make_dot.py b/cgiFiles/make_dot.py index 0e78525..6d4f295 100755 --- a/cgiFiles/make_dot.py +++ b/cgiFiles/make_dot.py @@ -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 diff --git a/cgiFiles/name.py b/cgiFiles/name.py index 4f47ce7..6d329f2 100755 --- a/cgiFiles/name.py +++ b/cgiFiles/name.py @@ -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() diff --git a/cgiFiles/person.py b/cgiFiles/person.py index fb0a08c..3b6e3fb 100755 --- a/cgiFiles/person.py +++ b/cgiFiles/person.py @@ -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
    ' else: - url = "Ancestors" - printMe = printMe + '
    ' + url + url = "Ancestors" + url2 = "Descendants" + printMe = printMe + '
    ' + url+'
    '+url2 everyPage.good(printMe) -everyPage.bottom(conn) +everyPage.bottom() diff --git a/cgiFiles/searchname.py b/cgiFiles/searchname.py index b248448..4f52a92 100755 --- a/cgiFiles/searchname.py +++ b/cgiFiles/searchname.py @@ -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() diff --git a/cgiFiles/smallGraph.py b/cgiFiles/smallGraph.py index b1bc179..7d67e52 100755 --- a/cgiFiles/smallGraph.py +++ b/cgiFiles/smallGraph.py @@ -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) diff --git a/cgiFiles/territory.py b/cgiFiles/territory.py index 09fc75a..8f2ca68 100755 --- a/cgiFiles/territory.py +++ b/cgiFiles/territory.py @@ -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,'
    ') - if len(printMe)<10: + if len(printMe)<1: printMe = 'sorry, no data
    ' everyPage.good(printMe) -everyPage.bottom(conn) +everyPage.bottom() diff --git a/cgiFiles/test.py b/cgiFiles/test.py index 9e5daf3..76e385c 100755 --- a/cgiFiles/test.py +++ b/cgiFiles/test.py @@ -1,7 +1,7 @@ #!/usr/bin/python import cgi -import cgitb +#import cgitb import pygraph from pygraph.classes.graph import graph diff --git a/familyTree/askQuestion.py b/familyTree/askQuestion.py index 8dbe0b1..f7d60be 100755 --- a/familyTree/askQuestion.py +++ b/familyTree/askQuestion.py @@ -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 (diedMonth0)))"\ + +" )" + +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'))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$text") -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 = '' + fcend = '' + 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+="" + out+="" + 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 = "" + 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+="" + out+="" + out+="
    " + e = "
    " + 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=='
    ': - 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=='
    ': - 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 += ' 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=='
    ': - 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 == '
    ': - 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 =='
    ': - 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=='
    ': - 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 == '
    ': - script = "listChildCount.py?nc="+str(row[1]) - link = link_Template.substitute(script =\ - script, title = add_quotes(row[1]),text = row[1]) + fcstart = '' + fcend = '' + 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 == '
    ': - 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 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?)"\ + +" OR"\ + +" (bornYear==? AND diedYear>? AND "+bornBefore+")"\ + +" OR"\ + +" (bornYearUnknown Year',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(['','','',\ + '1st century'\ + ,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(['','','',\ + ''+eU.ordinal_numbers(century)+' century',\ + 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 = ""+wikiName+"" + + 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 %s" %(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+='
      ' + for l in links: + this+='
    • '+l+newLine+'\n' + this+='
    ' + good=1 + for i in range(3): + if countL[i]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+='
      ' + 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+='
    • '+type+" "+title+""+newLine + else: + for row in run_query(findName,t): +# out+='
    • '+pU.name_html(row,newLine)\ +# +'CHECK'+newLine + name=row[0] + id = str(row[1]) + out+='
    • '+type+' '+name + ' '+id+\ + ' CHECK'+newLine + anyCheck = 1 + + out+='
    ' + 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',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 = '%s' \ + %(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' + out+='' + out+='Name' + out+='Toy' + out+='Wiki' + out+='' + 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 %s" %(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+='' + out+=''+topLink+'' + + if infobox is None: + out+='' + 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+=''+fam+newLine+'born:'+row[3]+newLine\ + +'died:'+row[4]+'' - u = "SELECT count(*)"\ - +" FROM parents INNER JOIN people"\ - +" ON parents.ID = people.ID"\ - +" WHERE parentID = ?"\ - +" AND (diedyear-bornyear>? OR died='present');" + wikiLink='\\[\\[([^\\|\\]]*)\\|*(.*?)\\]\\]' + htmlLink=r'\1' - 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 startstop and stop?"\ + +" 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 = 'wikipedia' + 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 = "" %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,'
    ')) + + 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('() and ().*') + findNameP = re.compile('() is ().*') + 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 = ""\ + %(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 = ""\ + % ids + out+=image + return out - image = "" +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 = ""\ - %(IDA,IDB,min(aLevels),min(bLevels)) + out += find_rulers(aTerritory,newLine)[0] - out +=newLine + image+newLine + image = "" \ + %(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 level20 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]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]diedMonth: + ot = 'own' + else: + if 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 mStopstarty: + fromy = mStart + else: + fromy = starty + + if mStop0: + 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 == '
    ': - output = '
    '; + output = '
    '; output += mainDiv + "
    " output += "
    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) diff --git a/familyTree/makeDataBase b/familyTree/makeDataBase index 027d96b..bc1f9e3 100755 --- a/familyTree/makeDataBase +++ b/familyTree/makeDataBase @@ -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' diff --git a/familyTree/makeMarriageTable.py b/familyTree/makeMarriageTable.py index 900bb38..f5eea8c 100755 --- a/familyTree/makeMarriageTable.py +++ b/familyTree/makeMarriageTable.py @@ -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 diff --git a/familyTree/makeTables.py b/familyTree/makeTables.py index ca3f603..0890316 100755 --- a/familyTree/makeTables.py +++ b/familyTree/makeTables.py @@ -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 + diff --git a/familyTree/marriageSQL.py b/familyTree/marriageSQL.py index fddd6f7..b69be0d 100755 --- a/familyTree/marriageSQL.py +++ b/familyTree/marriageSQL.py @@ -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)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) diff --git a/familyTree/notes b/familyTree/notes old mode 100644 new mode 100755 index 37f583b..a380870 --- a/familyTree/notes +++ b/familyTree/notes @@ -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! diff --git a/familyTree/printAncestors.py b/familyTree/printAncestors.py index 685f654..b1d07ef 100755 --- a/familyTree/printAncestors.py +++ b/familyTree/printAncestors.py @@ -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() diff --git a/familyTree/printLists.py b/familyTree/printLists.py index 75ba3b2..469c880 100755 --- a/familyTree/printLists.py +++ b/familyTree/printLists.py @@ -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) diff --git a/familyTree/printPerson.py b/familyTree/printPerson.py index d2d2290..e064d39 100755 --- a/familyTree/printPerson.py +++ b/familyTree/printPerson.py @@ -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() diff --git a/familyTree/spousesRelated.py b/familyTree/spousesRelated.py index 01c562f..549374d 100755 --- a/familyTree/spousesRelated.py +++ b/familyTree/spousesRelated.py @@ -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 = '' +eth = '' +td = '' +etd = '' -s = "select * from marriages;" +#printMe=pU.table_header(['person 1','ID1','person 2','ID2','relationship','year of marriage'],'
    ') +printMe=pU.table_header(['person 1','person 2','relationship','year of marriage'],'
    ') -for row in askQuestion.run_query(s,()): - ID1=row[0] - ID2=row[1] +cuz = re.compile('() and () are (.*)') +parent = re.compile('() is ()\'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,'
    ') + + +printMe+=pU.table_foot('
    ') +aQ.commit_changes() +aQ.close() +everyPage.good(printMe) +file = '/home/naath/public-html/spouses-related.html' +everyPage.to_file(file) +print 'done' diff --git a/familyTree/text2SQL.py b/familyTree/text2SQL.py index 6185b7f..6fec9ed 100755 --- a/familyTree/text2SQL.py +++ b/familyTree/text2SQL.py @@ -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:': diff --git a/familyTree/tree b/familyTree/tree old mode 100644 new mode 100755 index 04f57de..3491189 --- a/familyTree/tree +++ b/familyTree/tree @@ -1,15682 +1,59652 @@ -ID: -1 - -Name: -Alfred 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 - -Style: -King of Wessex -Territories: -Wessex - -From: -871 -To: -899 - - - -ID: -2 - -Name: -Edward 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 -63 -64 - -Style: -King of Wessex -Territories: -Wessex - -From: -26/10/899 -To: -17/07/924 - - - -ID: -3 - -Name: -Aethelstan - -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 Anlgo-Saxons -Territories: -Anglo-Saxons - -From: -924 -To: -927 - -Style: -English -Territories: -England - -From: -927 -To: -939 - - - -ID: -4 - -Name: -Edmund 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 -66 - -Style: -King of the English -Territories: -England - -From: -936 -To: -26/05/946 - - - -ID: -5 - -Name: -Eadred - -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 - -Name: -Eadwig (Edwy) - -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 - -Style: -King of the English -Territories: -England - -From: -23/11/955 -To: -01/10/959 - - - -ID: -7 - -Name: -Edgar 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 - -Style: -King of the English -Territories: -England - -From: -01/10/959 -To: -08/07/975 - - - -ID: -8 - -Name: -Edward 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: -962 -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 - -Name: -Aethelred 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 -72 - -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 - -Name: -Sweyn Forkbeard - -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: -960 -Died: -03/02/1014 - -Father: -Harald Bluetooth -Mother: -Gunhild/Tove - -Spouses: -73 - -Style: -King of the English -Territories: -England - -From: -1013 -To: -03/02/1014 - -Style: -Denmark -Territories: -Denmark - -From: -986 -To: -03/02/1014 - -Style: -Norway -Territories: -Norway - -From: -986 -To: -995 - -Style: -Norway -Territories: -Norway - -From: -999 -To: -03/02/14 - - - -ID: -11 - -Name: -Edmund 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: -989 -Died: -30/11/1016 - -Father: -9 -Mother: -71 - -Spouses: -74 - -Style: -King of the English -Territories: -England - -From: -23/04/1016 -To: -30/11/1016 - - - -ID: -12 - -Name: -Cnut - -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: -985 -Died: -12/11/1035 - -Father: -10 -Mother: -73 - -Spouses: -75 -72 - -Style: -King of the English -Territories: -England - -From: -1016 -To: -1035 - -Style: -Denmark -Territories: -Denmark - -From: -1018 -To: -1035 - -Style: -Norway -Territories: -Norway - -From: -1028 -To: -1035 - - - -ID: -13 - -Name: -Harold 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 - -Name: -Harthacnut - -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 - -Spouses: -0 - -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 - -Name: -Edward 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 - -Style: -King of the English -Territories: -England - -From: -08/06/1042 -To: -4-5/01/1066 - - - -ID: -16 - -Name: -Harold 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 - -Style: -King of the English -Territories: -England - -From: -4-5/01/1066 -To: -14/10/1066 - - - -ID: -17 - -Name: -William 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 - -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 - -Name: -William II - -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: -King of the English -Territories: -England - -From: -09/09/1087 -To: -02/08/1100 - - - -ID: -19 - -Name: -Henry 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: -1068 -Died: -01/12/1135 - -Father: -17 -Mother: -79 - -Spouses: -80 -81 - -Style: -King of the English, Duke of the Normans -Territories: -England -Normandy - -From: -02/08/1100 -To: -01/12/1135 - - - -ID: -20 - -Name: -Stephen - -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 - -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 - -Name: -Matilda - -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 -84 - -Style: -Queen of England, Duke of Normans -Territories: -England -Normandy - -From: -?/04/1141 -To: -?/11/1141 - - - -ID: -22 - -Name: -Henry II Plantagenet - -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 - -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 - -Name: -Henry 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 - -Style: -English (junior king) -Territories: -England - -From: -28/02/1155 -To: -11/06/1183 - - - -ID: -24 - -Name: -Richard I 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 - -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 - -Name: -John - -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 -89 - -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 - -Name: -Henry III - -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 - -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 - -Name: -Edward I - -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 -92 - -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 - -Name: -Edward II - -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 - -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 - -Name: -Edward III - -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 - -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 - -Name: -Richard II - -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 -96 - -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 - -Name: -Henry IV - -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 -98 - -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 - -Name: -Henry V - -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 - -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 - -Name: -Henry VI - -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 - -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 - -Name: -Edward IV - -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 - -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 - -Name: -Edward V - -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 - -Name: -Richard III - -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 - -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 - -Name: -Henry VII - -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 - -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 - -Name: -Henry VIII - -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 -105 -106 -107 -108 -109 - -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 - -Name: -Edward VI - -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 - -Spouses: -0 - -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 - -Name: -Jane Grey - -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 - -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 - -Name: -Mary I - -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 - -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 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 -Territories: -England -Spain -France -Jerusalem -Sicilies -Ireland -Austria -Burgundy -Milan -Brabant -Habsburg -Flanders -Tyrol - -From: -1556 -To: -17/11/1558 - - - -ID: -42 - -Name: -Elizabeth I - -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 - -Name: -James VI & I - -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 - -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 - -Name: -Charles I - -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 - -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 - -Name: -Charles II - -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 - -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 - -Name: -James VII & II - -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 -116 - -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 - -Name: -Mary II - -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 - -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 - -Name: -William II & III - -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 - -Name: -Anne - -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 - -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 - -Name: -George I - -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 - -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: -Hanover -Territories: -Hanover - -From: -23/01/1698 -To: -11/06/1727 - - - -ID: -51 - -Name: -George II - -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 - -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 - -Name: -George III - -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 - -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 - -Name: -George IV - -URL: -. - -Picture: -. - -Born: -12/08/1762 -Died: -26/06/1830 - -Father: -52 -Mother: -120 - -Spouses: -121 - -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 - -Name: -William IV - -URL: -. - -Picture: -. - -Born: -21/08/1765 -Died: -20/06/1837 - -Father: -52 -Mother: -120 - -Spouses: -122 - -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 - -Name: -Victoria - -URL: -. - -Picture: -. - -Born: -24/05/1819 -Died: -22/01/1901 - -Father: -162 -Mother: -227 - -Spouses: -123 - -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 - -Name: -Edward VII - -URL: -. - -Picture: -. - -Born: -09/11/1841 -Died: -06/05/1910 - -Father: -123 -Mother: -55 - -Spouses: -124 - -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 - -Name: -George V - -URL: -. - -Picture: -. - -Born: -03/06/1865 -Died: -20/01/1936 - -Father: -56 -Mother: -124 - -Spouses: -125 - -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 - -Name: -Edward VIII - -URL: -. - -Picture: -. - -Born: -23/06/1894 -Died: -28/05/1972 - -Father: -57 -Mother: -125 - -Spouses: -126 - -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 - -Name: -George VI - -URL: -. - -Picture: -. - -Born: -14/11/1895 -Died: -06/02/1952 - -Father: -57 -Mother: -125 - -Spouses: -127 - -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 - -Name: -Elizabeth II - -URL: -. - -Picture: -. - -Born: -21/04/1926 -Died: -present - -Father: -59 -Mother: -127 - -Spouses: -226 - -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 - -Name: -Ealhswith - -URL: -. - -Picture: -. - -Born: -? -Died: -05/11/902 - -Father: -Aethelred Mucel -Mother: -Eadburh - -Spouses: -1 - - - -ID: -62 - -Name: -Ecgwyn - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - -Spouses: -2 - - - -ID: -63 - -Name: -Aelfflaed - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - -Spouses: -2 - -Consort of: -2 - - -ID: -64 - -Name: -Eadgifu - -URL: -. - -Picture: -. - -Born: -~903 -Died: -~966 - -Father: -163 -Mother: -? - -Spouses: -2 - -Consort of: -2 - - -ID: -65 - -Name: -Aelfgifu of Shaftsbury - -URL: -. - -Picture: -. - -Born: -? -Died: -~944 - -Father: -? -Mother: -164 - -Spouses: -4 - -Consort of: -4 - - -ID: -66 - -Name: -Aethelflaed of Damerham - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -165 -Mother: -? - -Spouses: -4 - -Consort of: -4 - - -ID: -67 - -Name: -Aelfgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -166 - -Spouses: -6 - -Consort of: -6 - - -ID: -68 - -Name: -Aethelflaed - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - -Spouses: -7 - - - -ID: -69 - -Name: -Wulthryth - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - -Spouses: -7 - - - -ID: -70 - -Name: -Aelfthryth - -URL: -. - -Picture: -. - -Born: -c.945 -Died: -c1000 - -Father: -167 -Mother: -? - -Spouses: -168 -7 - -Consort of: -7 - - -ID: -71 - -Name: -Aelfgifu of York - -URL: -. - -Picture: -. - -Born: -c. 970 -Died: -1002 - -Father: -169 -Mother: -? - -Spouses: -9 - -Consort of: -9 - - -ID: -72 - -Name: -Emma of Normandy - -URL: -. - -Picture: -. - -Born: -c. 985 -Died: -06/03/1052 - -Father: -170 -Mother: -171 - -Spouses: -9 -12 - -Consort of: -9 -Consort of: -12 - - -ID: -73 - -Name: -Sigrid the Haughty - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -172 -Mother: -173 - -Spouses: -174 -10 - -Consort of: -10 - - -ID: -74 - -Name: -Ealdgyth - -URL: -. - -Picture: -. - -Born: -c. 992 -Died: -Post 1016 - -Father: -? -Mother: -? - -Spouses: -Sigeferth -11 - -Consort of: -11 - - -ID: -75 - -Name: -Aelfgifu of Northampton - -URL: -. - -Picture: -. - -Born: -c. 990 -Died: -Post 1040 - -Father: -175 -Mother: -? - -Spouses: -12 - - - -ID: -76 - -Name: -Edith of Wessex - -URL: -. - -Picture: -. - -Born: -C 1025 -Died: -18/12/1075 - -Father: -176 -Mother: -177 - -Spouses: -15 - -Consort of: -15 - - -ID: -77 - -Name: -Edith the Fair - -URL: -. - -Picture: -. - -Born: -C 1025 -Died: -1086 - -Father: -? -Mother: -? - -Spouses: -16 - - - -ID: -78 - -Name: -Edith of Mercia - -URL: -. - -Picture: -. - -Born: -? -Died: -1066 - -Father: -178 -Mother: -228 - -Spouses: -179 -16 - -Consort of: -16 - - -ID: -79 - -Name: -Matilda of Flanders - -URL: -. - -Picture: -. - -Born: -C 1031 -Died: -02/11/1083 - -Father: -180 -Mother: -181 - -Spouses: -17 - -Consort of: -17 - - -ID: -80 - -Name: -Matilda of Scotland - -URL: -. - -Picture: -. - -Born: -C 1080 -Died: -01/05/1118 - -Father: -182 -Mother: -183 - -Spouses: -19 - -Consort of: -19 - - -ID: -81 - -Name: -Adeliza of Louvain - -URL: -. - -Picture: -. - -Born: -C 1103 -Died: -23/04/1151 - -Father: -184 -Mother: -185 - -Spouses: -19 -186 - -Consort of: -19 - - -ID: -82 - -Name: -Matilda of Boulogne - -URL: -. - -Picture: -. - -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 - -Name: -Henry V - -URL: -. - -Picture: -. - -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 - -Name: -Geoffrey V - -URL: -. - -Picture: -. - -Born: -24/08/1113 -Died: -07/09/1151 - -Father: -190 -Mother: -191 - -Spouses: -21 - -Style: -Count of Anjou -Territories: -Anjou - -From: -1129 -To: -07/09/1151 - - - -ID: -85 - -Name: -Eleanor of Aquitaine - -URL: -. - -Picture: -. - -Born: -1122-1124 -Died: -01/04/1204 - -Father: -192 -Mother: -193 - -Spouses: -194 -22 - -Consort of: -194 -Consort of: -22 -Style: -Duchess of Aquitaine -Territories: -Aquitaine - -From: -09/04/37 -To: -01/04/1204 - - - -ID: -86 - -Name: -Margaret of France - -URL: -. - -Picture: -. - -Born: -?/11/1157 -Died: -08-09/1197 - -Father: -194 -Mother: -195 - -Spouses: -23 -196 - -Consort of: -96 -Consort of: -231 - - -ID: -87 - -Name: -Berengaria of Navarre - -URL: -. - -Picture: -. - -Born: -C 1165-1170 -Died: -23/11/1230 - -Father: -197 -Mother: -198 - -Spouses: -24 - -Consort of: -24 - - -ID: -88 - -Name: -Isabella of Gloucester - -URL: -. - -Picture: -. - -Born: -C 1173 -Died: -14/10/1217 - -Father: -199 -Mother: -200 - -Spouses: -25 -201 -202 - - - -ID: -89 - -Name: -Isabella of Angouleme - -URL: -. - -Picture: -. - -Born: -C 1188 -Died: -04/06/1246 - -Father: -203 -Mother: -204 - -Spouses: -25 -205 - -Style: -Countess of Angouleme -Territories: -Angouleme - -From: -16/05/1202 -To: -04/06/1246 - -Consort of: -25 - - -ID: -90 - -Name: -Eleanor of Provence - -URL: -. - -Picture: -. - -Born: -C 1223 -Died: -24-25/05/1291 - -Father: -206 -Mother: -207 - -Spouses: -26 - -Consort of: -26 - - -ID: -91 - -Name: -Eleanor of Castile - -URL: -. - -Picture: -. - -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 - -Name: -Margaret of France - -URL: -. - -Picture: -. - -Born: -C 1279 -Died: -14/02/1318 - -Father: -209 -Mother: -210 - -Spouses: -27 - -Consort of: -27 - - -ID: -93 - -Name: -Isabella of France - -URL: -. - -Picture: -. - -Born: -1295 -Died: -22/08/1358 - -Father: -212 -Mother: -213 - -Spouses: -28 - -Consort of: -28 - - -ID: -94 - -Name: -Philippa of Hainault - -URL: -. - -Picture: -. - -Born: -24/06/1314 -Died: -15/08/1369 - -Father: -230 -Mother: -214 - -Spouses: -29 - -Consort of: -29 - - -ID: -95 - -Name: -Anne of Bohemia - -URL: -. - -Picture: -. - -Born: -11/05/1366 -Died: -07/06/1394 - -Father: -215 -Mother: -216 - -Spouses: -30 - -Consort of: -30 - - -ID: -96 - -Name: -Isabella of Valois - -URL: -. - -Picture: -. - -Born: -09/11/1389 -Died: -13/09/1409 - -Father: -217 -Mother: -218 - -Spouses: -30 -219 - -Consort of: -30 - - -ID: -97 - -Name: -Mary de Bohun - -URL: -. - -Picture: -. - -Born: -C 1368 -Died: -04/06/1394 - -Father: -224 -Mother: -225 - -Spouses: -31 - - - -ID: -98 - -Name: -Joanna of Navarre - -URL: -. - -Picture: -. - -Born: -c1370 -Died: -10/06/1437 - -Father: -220 -Mother: -221 - -Spouses: -222 -31 - -Consort of: -221 -Consort of: -31 - - -ID: -99 - -Name: -Catherine of Valois - -URL: -. - -Picture: -. - -Born: -27/10/1401 -Died: -03/01/1437 - -Father: -217 -Mother: -218 - -Spouses: -32 -223 - -Consort of: -32 - - -ID: -100 - -Name: -Margaret of Anjou - -URL: -. - -Picture: -. - -Born: -23/03/1430 -Died: -25/08/1482 - -Father: -231 -Mother: +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 - -Spouses: -33 - -Consort of: -33 - - -ID: -101 - -Name: -Elizabeth Woodville - -URL: -. - -Picture: -. - -Born: -c1437 -Died: -08/06/1492 - -Father: -233 -Mother: -234 - -Spouses: -235 -34 - -Consort of: -34 - - -ID: -102 - -Name: -Anne Neville - -URL: -. - -Picture: -. - -Born: -11/06/1456 -Died: -06/03/1485 - -Father: -236 -Mother: -237 - -Spouses: -238 -36 - -Consort of: -36 - - -ID: -103 - -Name: -Elizabeth of York - -URL: -. - -Picture: -. - -Born: -11/02/1466 -Died: -11/02/1503 - -Father: -34 -Mother: -101 - -Spouses: -37 - -Consort of: -37 - - -ID: -104 - -Name: -Catherine of Aragon - -URL: -. - -Picture: -. - -Born: -16/12/1485 -Died: -07/0/1536 - -Father: -239 -Mother: -240 - -Spouses: -38 -241 - -Consort of: -38,241 - - -ID: -105 - -Name: -Anne Boleyn - -URL: -. - -Picture: -. - -Born: -c1501 -Died: -19/05/1536 - -Father: -242 -Mother: -243 - -Spouses: -38 - -Consort of: -38 - - -ID: -106 - -Name: -Jane Seymour - -URL: -. - -Picture: -. - -Born: -c1508 -Died: -24/10/1537 - -Father: -244 -Mother: -245 - -Spouses: -38 - -Consort of: -38 - - -ID: -107 - -Name: -Anne of Cleves - -URL: -. - -Picture: -. - -Born: -22/09/1515 -Died: -16/07/1557 - -Father: -246 -Mother: -247 - -Spouses: -38 - -Consort of: -38 - - -ID: -108 - -Name: -Catherine Howard - -URL: -. - -Picture: -. - -Born: -c1523 -Died: -13/02/1542 - -Father: -248 -Mother: -249 - -Spouses: -38 - -Consort of: -38 - - -ID: -109 - -Name: -Catherine Parr - -URL: -. - -Picture: -. - -Born: -1512 -Died: -05/09/1548 - -Father: -250 -Mother: -251 - -Spouses: -252 -253 -38 -254 - -Consort of: -252,253,38,254 - - -ID: -110 - -Name: -Guildford Dudley - -URL: -. - -Picture: -. - -Born: -1535 -Died: -12/02/1554 - -Father: -255 -Mother: -256 - -Spouses: -40 - - - -ID: -111 - -Name: -Philip II of Spain - -URL: -. - -Picture: -. - -Born: -21/05/1527 -Died: -13/09/1598 - -Father: -257 -Mother: -258 - -Spouses: -259 -41 -260 -261 - -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 - -Name: -Anne of Denmark - -URL: -. - -Picture: -. - -Born: -12/12/1574 -Died: -02/03/1619 - -Father: -262 -Mother: -263 - -Spouses: -43 - -Consort of: -43 - - -ID: -113 - -Name: -Henrietta Maria - -URL: -. - -Picture: -. - -Born: -25/11/1609 -Died: -10/09/1669 - -Father: -264 -Mother: -265 - -Spouses: -44 - -Consort of: -44 - - -ID: -114 - -Name: -Catherine of Braganza - -URL: -. - -Picture: -. - -Born: -25/11/1638 -Died: -31/12/1705 - -Father: -266 -Mother: -267 - -Spouses: -45 - -Consort of: -45 - - -ID: -115 - -Name: -Anne Hyde - -URL: -. - -Picture: -. - -Born: -12/03/1637 -Died: -31/03/1671 - -Father: -268 -Mother: -269 - -Spouses: -46 - - - -ID: -116 - -Name: -Mary of Modena - -URL: -. - -Picture: -. - -Born: -05/10/1658 -Died: -07/05/1718 - -Father: -270 -Mother: -271 - -Spouses: -46 - -Consort of: -46 - - -ID: -117 - -Name: -George of Denmark - -URL: -. - -Picture: -. - -Born: -02/04/1653 -Died: -28/10/1708 - -Father: -272 -Mother: -273 - -Spouses: -49 - - - -ID: -118 - -Name: -Sophia Dorothea - -URL: -. - -Picture: -. - -Born: -15/09/1666 -Died: -13/11/1726 - -Father: -274 -Mother: -295 - -Spouses: -50 - -Consort of: -50 - - -ID: -119 - -Name: -Caroline of Ansbach - -URL: -. - -Picture: -. - -Born: -01/03/1683 -Died: -20/11/1737 - -Father: -275 -Mother: -276 - -Spouses: -51 - -Consort of: -51 - - -ID: -120 - -Name: -Charlotte of Mecklenburg-Strelitz - -URL: -. - -Picture: -. - -Born: -19/05/1744 -Died: -17/11/1818 - -Father: -296 -Mother: -297 - -Spouses: -52 - -Consort of: -52 - - -ID: -121 - -Name: -Caroline of Brunswick - -URL: -. - -Picture: -. - -Born: -17/05/1768 -Died: -07/08/1821 - -Father: -277 -Mother: -278 - -Spouses: -53 - -Consort of: -53 - - -ID: -122 - -Name: -Adelaide of Saxe Meiningen - -URL: -. - -Picture: -. - -Born: -13/08/1792 -Died: -02/12/1849 - -Father: -279 -Mother: -580 - -Spouses: -54 - -Consort of: -54 - - -ID: -123 - -Name: -Albert - -URL: -. - -Picture: -. - -Born: -26/08/1819 -Died: -14/12/1861 - -Father: -281 -Mother: -282 - -Spouses: -55 - -Consort of: -55 - - -ID: -124 - -Name: -Alexandra - -URL: -. - -Picture: -. - -Born: -01/12/1844 -Died: -20/11/1925 - -Father: -283 -Mother: -284 - -Spouses: -56 - -Consort of: -56 - - -ID: -125 - -Name: -Mary of Teck - -URL: -. - -Picture: -. - -Born: -26/05/1867 -Died: -24/03/1953 - -Father: -285 -Mother: -286 - -Spouses: -57 - -Consort of: -57 - - -ID: -126 - -Name: -Wallis Simpson - -URL: -. - -Picture: -. - -Born: -19/06/1896 -Died: -23/04/1986 - -Father: -287 -Mother: -288 - -Spouses: -289 -290 -58 - - - -ID: -127 - -Name: -Elizabeth Bowes-Lyon - -URL: -. - -Picture: -. - -Born: -04/08/1900 -Died: -30/03/2002 - -Father: -291 -Mother: -292 - -Spouses: -59 - -Consort of: -59 - - -ID: -128 - -Name: -Robert I Duke of Normandy - -URL: -. - -Picture: -. - -Born: -22/06/1000 -Died: -1-3/07/1035 - -Father: -Richard II -Mother: -Judith - -Style: -Duke of Normandy -Territories: -Normandy - -From: -1027 -To: -1035 - - - -ID: -129 - -Name: -Herleva - -URL: -. - -Picture: -. - -Born: -1003 -Died: -1050 - -Father: -Fulbert -Mother: -? - - - -ID: -130 - -Name: -Stephen II - -URL: -. - -Picture: -. - -Born: -c1045 -Died: -19/05/1102 - -Father: -Theobald III -Mother: -Garsinde - -Spouses: -131 - -Style: -Count of Blois -Territories: -Blois - -From: -1089 -To: -19/05/1102 - -Style: -Count of Chartres -Territories: -Chartres - -From: -? -To: -? - - - -ID: -131 - -Name: -Adela of Normandy - -URL: -. - -Picture: -. - -Born: -c1067 -Died: -08/03/1137 - -Father: -17 -Mother: -79 - -Spouses: -130 - -Consort of: -130 - - -ID: -132 - -Name: -Edward the Black Prince - -URL: -. - -Picture: -. - -Born: -15/06/1330 -Died: -08/06/1376 - -Father: -29 -Mother: -94 - -Spouses: -133 - - - -ID: -133 - -Name: -Joan of Kent - -URL: -. - -Picture: -. - -Born: -19/09/1328 -Died: -07/08/1385 - -Father: -Edmund -Mother: -Margaret - -Spouses: -132 - - - -ID: -134 - -Name: -John of Gaunt - -URL: -. - -Picture: -. - -Born: -06/03/1340 -Died: -03/02/1399 - -Father: -29 -Mother: -94 - -Spouses: -135 - - - -ID: -135 - -Name: -Blanche of Lancaster - -URL: -. - -Picture: -. - -Born: -25/03/1345 -Died: -12/09/1368 - -Father: -0 -Mother: -0 - -Spouses: -134 - - - -ID: -136 - -Name: -Richard Plantagenet - -URL: -. - -Picture: -. - -Born: -21/09/1411 -Died: -30/12/1460 - -Father: -138 -Mother: -139 - -Spouses: -137 - - - -ID: -137 - -Name: -Cecily Neville - -URL: -. - -Picture: -. - -Born: -03/05/1415 -Died: -31/05/1495 - -Father: -Ralph -Mother: -Joan - -Spouses: -136 - - - -ID: -138 - -Name: -Richard of Conisburgh - -URL: -. - -Picture: -. - -Born: -20/07/1375 -Died: -05/08/1415 - -Father: -140 -Mother: -141 - -Spouses: -139 - - - -ID: -139 - -Name: -Anne de Mortimer - -URL: -. - -Picture: -. - -Born: -27/12/1390 -Died: -21/09/1411 - -Father: -Roger -Mother: -Eleanor - -Spouses: -138 - - - -ID: -140 - -Name: -Edmund of Langley - -URL: -. - -Picture: -. - -Born: -05/06/1341 -Died: -01/08/1402 - -Father: -29 -Mother: -94 - -Spouses: -141 - -Style: -Duke of York -Territories: -York - -From: -. -To: -. - - - -ID: -141 - -Name: -Isabella of Castile - -URL: -. - -Picture: -. - -Born: -1355 -Died: -23/12/1392 - -Father: -Peter -Mother: -Maria - -Spouses: -140 - - - -ID: -142 - -Name: -Edmund Tudor - -URL: -. - -Picture: -. - -Born: -1430? -Died: -01-03/11/1456 - -Father: -223 -Mother: -99 - -Spouses: -143 - - - -ID: -143 - -Name: -Margaret Beaufort - -URL: -. - -Picture: -. - -Born: -31/05/1443 -Died: -29/06/1509 - -Father: -144 -Mother: -Margaret - -Spouses: -142 - - - -ID: -144 - -Name: -John Beaufort - -URL: -. - -Picture: -. - -Born: -1403 -Died: -27/05/1444 - -Father: -145 -Mother: -409 - -Spouses: -Margaret Beauchamp - - - -ID: -145 - -Name: -John Beaufort - -URL: -. - -Picture: -. - -Born: -1373 -Died: -21/04/1410 - -Father: -134 -Mother: -Katherine Swynford - -Spouses: -409 - - - -ID: -146 - -Name: -Henry Grey - -URL: -. - -Picture: -. - -Born: -17/01/1517 -Died: -23/02/1554 - -Father: -Thomas -Mother: -Margaret - -Spouses: -147 - - - -ID: -147 - -Name: -Frances Brandon - -URL: -. - -Picture: -. - -Born: -16/07/1517 -Died: -20/11/1559 - -Father: -148 -Mother: -149 - -Spouses: -146 - - - -ID: -148 - -Name: -Charles Brandon - -URL: -. - -Picture: -. - -Born: -1484 -Died: -22/08/1545 - -Father: -William -Mother: -Elizabeth - -Spouses: -149 - - - -ID: -149 - -Name: -Mary Tudor - -URL: -. - -Picture: -. - -Born: -18/03/1496 -Died: -25/06/1533 - -Father: -37 -Mother: -103 - -Spouses: -148 - - - -ID: -150 - -Name: -Henry Stuart - -URL: -. - -Picture: -. - -Born: -07/12/1545 -Died: -10/02/1567 - -Father: -Matthew -Mother: -152 - -Spouses: -151 - -Style: -Duke of Albany -Territories: -Albany - -From: -? -To: -? - -Style: -Earl of Ross -Territories: -Ross - -From: -? -To: -? - - - -ID: -151 - -Name: -Mary Queen of Scots - -URL: -. - -Picture: -. - -Born: -7-8/12/1542 -Died: -08/02/1587 - -Father: -153 -Mother: -Mary - -Spouses: -150 - -Style: -Queen of Scotland -Territories: -Scotland - -From: -14/12/42 -To: -24/07/1567 - -Consort of: -Francis II France - - -ID: -152 - -Name: -Margaret Douglas - -URL: -. - -Picture: -. - -Born: -08/10/1515 -Died: -07/03/1578 - -Father: -Archibald -Mother: -154 - -Spouses: -Matthew - - - -ID: -153 - -Name: -James V - -URL: -. - -Picture: -. - -Born: -10/04/1512 -Died: -14/12/1542 - -Father: -James IV -Mother: -154 - -Spouses: -Mary - -Style: -King of Scots -Territories: -Scotland - -From: -09/09/1513 -To: -14/12/1542 - - - -ID: -154 - -Name: -Margaret Tudor - -URL: -. - -Picture: -. - -Born: -28/11/1489 -Died: -18/10/1541 - -Father: -37 -Mother: -103 - -Spouses: -James IV - -Consort of: -James IV Scotland - - -ID: -155 - -Name: -William II Prince of Orange - -URL: -. - -Picture: -. - -Born: -27/05/1626 -Died: -06/11/1650 - -Father: -Frederick -Mother: -Amalia - -Spouses: -156 - -Style: -Prince of Orange -Territories: -Orange - -From: -14/03/1647 -To: -06/11/1650 - - - -ID: -156 - -Name: -Mary, Princess Royal - -URL: -. - -Picture: -. - -Born: -04/11/1631 -Died: -24/12/1660 - -Father: -44 -Mother: -113 - -Spouses: -155 - - - -ID: -157 - -Name: -Ernest Augustus - -URL: -. - -Picture: -. - -Born: -20/11/1629 -Died: -23/01/1698 - -Father: -George -Mother: -Anne - -Spouses: -158 - - - -ID: -158 - -Name: -Sophia of Hanover - -URL: -. - -Picture: -. - -Born: -14/10/1630 -Died: -08/06/1714 - -Father: -Frederick V -Mother: -159 - -Spouses: -157 - - - -ID: -159 - -Name: -Elizabeth Stuart - -URL: -. - -Picture: -. - -Born: -19/08/1596 -Died: -13/02/1662 - -Father: -43 -Mother: -112 - -Spouses: -Frederick V - -Consort of: -Frederick V - - -ID: -160 - -Name: -Frederick - -URL: -. - -Picture: -. - -Born: -01/02/1707 -Died: -20/03/1751 - -Father: -51 -Mother: -119 - -Spouses: -161 - - - -ID: -161 - -Name: -Augusta of Saxe-Gotha - -URL: -. - -Picture: -. - -Born: -30/11/1719 -Died: -08/02/1772 - -Father: -Frederick II -Mother: -Magdalena - -Spouses: -160 - - - -ID: -162 - -Name: -Prince Edward - -URL: -. - -Picture: -. - -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 - -Name: -Sigehelm - -URL: -. - -Picture: -. - -Born: -? -Died: -13/12/902 - -Father: -? -Mother: -? - -Spouses: -? - -Style: -Ealdorman of Kent -Territories: -Kent - -From: -. -To: -. - - - -ID: -164 - -Name: -Wynflaed - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - - - -ID: -165 - -Name: -Aelfgar - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - -Spouses: -? - -Style: -Ealdorman of Essex -Territories: -Essex - -From: -? -To: -? - - - -ID: -166 - -Name: -Aelfgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - - - -ID: -167 - -Name: -Ordgar - -URL: -. - -Picture: -. - -Born: -? -Died: -971 - -Father: -? -Mother: -? - -Spouses: -? - -Style: -Ealdorman of Devon -Territories: -Devon - -From: -? -To: -? - - - -ID: -168 - -Name: -Aethelwald - -URL: -. - -Picture: -. - -Born: -? -Died: -962 - -Father: -? -Mother: -Aethelstan Half-King - -Spouses: - - - - -ID: -169 - -Name: -Thored - -URL: -. - -Picture: -. - -Born: -? -Died: -992-994 - -Father: -Gunnar or Oslac -Mother: -? - -Spouses: -? - -Style: -Ealdorman of York -Territories: -York - -From: -964-1967-979 -To: -992-994 - - - -ID: -170 - -Name: -Richard the Fearless - -URL: -. - -Picture: -. - -Born: -933 -Died: -996 - -Father: -William I Normandy -Mother: -Sprota - -Spouses: -171 - -Style: -Duke of Normandy -Territories: -Normandy - -From: -17/12/942 -To: -20/11/996 - - - -ID: -171 - -Name: -Gunnora - -URL: -. - -Picture: -. - -Born: -c950 -Died: -c1031 - -Father: -? -Mother: -? - -Spouses: -170 - -Consort of: -170 - - -ID: -172 - -Name: -Mieszko I of Poland - -URL: -. - -Picture: -. - -Born: -c940 -Died: -25/05/992 - -Father: -Siemomyst -Mother: -? - -Spouses: -173 - -Style: -Duke of Poland -Territories: -Poland - -From: -962 -To: -992 - - - -ID: -173 - -Name: -Dobrawa of Bohemia - -URL: -. - -Picture: -. - -Born: -C940-945 -Died: -977 - -Father: -Boleslaus -Mother: -Biagota - -Spouses: -172 - -Consort of: -172 - - -ID: -174 - -Name: -Erik the Victorious - -URL: -. - -Picture: -. - -Born: -c945 -Died: -c995 - -Father: -Bjorn III -Mother: -? - -Spouses: -73 - -Style: -King of Sweden -Territories: -Sweden - -From: -975 -To: -995 - - - -ID: -175 - -Name: -Aelfhelm - -URL: -. - -Picture: -. - -Born: -? -Died: -1006 - -Father: -? -Mother: -? - -Spouses: -Wulfrun - -Style: -Ealdorman of York -Territories: -York - -From: -994 -To: -1006 - - - -ID: -176 - -Name: -Godwin - -URL: -. - -Picture: -. - -Born: -1001 -Died: -15/04/1053 - -Father: -Wulfnorth -Mother: -? - -Spouses: -177 - -Style: -Earl of Wessex -Territories: -Wessex - -From: -1020 -To: -1053 - - - -ID: -177 - -Name: -Gytha - -URL: -. - -Picture: -. - -Born: -c977 -Died: -c1069 - -Father: -Thorgin -Mother: -? - -Spouses: -176 - - - -ID: -178 - -Name: -Aelfgar of Mercia - -URL: -. - -Picture: -. - -Born: -c1000 -Died: -c1062 - -Father: -Leofric -Mother: -Godiva - -Spouses: -228 - -Style: -Earl of Mercia -Territories: -Mercia - -From: -1057 -To: -1062 - - - -ID: -179 - -Name: -Gruffodd ap Llwelyn - -URL: -. - -Picture: -. - -Born: -c1007 -Died: -1063-1064 - -Father: -Llwelyn ap Seisyll -Mother: -Angharad ferch Maredudd - -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 - -Name: -Baldwin V - -URL: -. - -Picture: -. - -Born: -19/08/1012 -Died: -01/09/1067 - -Father: -Baldwin IV -Mother: -Ogive - -Spouses: -181 - -Style: -Count of Flanders -Territories: -Flanders - -From: -1035 -To: -1/09/1067 - - - -ID: -181 - -Name: -Adela of France - -URL: -. - -Picture: -. - -Born: -1009 -Died: -08/01/1079 - -Father: -Robert II -Mother: -Constance - -Spouses: -180 - -Consort of: -Richard III Normandy -Consort of: -180 - - -ID: -182 - -Name: -Malcolm III - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -Duncan I -Mother: -Suthen - -Spouses: -183 - -Style: -King of Scotland -Territories: -Scotland - -From: -1058 -To: -1093 - - - -ID: -183 - -Name: -St Margaret of Scotland - -URL: -. - -Picture: -. - -Born: -C 1045 -Died: -16/11/1093 - -Father: -Edward the Exile -Mother: -Agatha - -Spouses: -182 - -Consort of: -182 - - -ID: -184 - -Name: -Godfrey I - -URL: -. - -Picture: -. - -Born: -C 1060 -Died: -25/01/1139 - -Father: -Henry II Louvain -Mother: -Aele of Orthen - -Spouses: -185 - -Style: -Count of Louvain -Territories: -Louvain - -From: -1095 -To: -1139 - - - -ID: -185 - -Name: -Ida of Namur - -URL: -. - -Picture: -. - -Born: -1078 -Died: -1117 - -Father: -Otto -Mother: -Adelaide - -Spouses: -184 - - - -ID: -186 - -Name: -William d'Aubigny - -URL: -. - -Picture: -. - -Born: -c1109 -Died: -12/10/1176 - -Father: -William d'Aubigny -Mother: -Maud Bigod - -Spouses: -81 - -Style: -Earl of Arundel -Territories: -Arundel - -From: -? -To: -? - -Style: -Earl of Lincoln -Territories: -Lincoln - -From: -? -To: -? - - - -ID: -187 - -Name: -Eustace III - -URL: -. - -Picture: -. - -Born: -? -Died: -c1125 - -Father: -Eustace II -Mother: -Ida of Lorraine - -Spouses: -188 - -Style: -County of Boulogn -Territories: -Boulogn - -From: - - - -ID: -188 - -Name: -Mary of Scotland - -URL: -. - -Picture: -. - -Born: -1082 -Died: -1116 - -Father: -182 -Mother: -183 - -Spouses: -187 - - - -ID: -189 - -Name: -Henry IV - -URL: -. - -Picture: -. - -Born: -11/11/1050 -Died: -07/08/1106 - -Father: -Henry III -Mother: -Agnes of Poitou - -Spouses: -190 - -Style: -King of the Romans, Holy Roman Emperor -Territories: -Romans - -From: -1084 -To: -1105 - - - -ID: -190 - -Name: -Fulk - -URL: -. - -Picture: -. - -Born: -1089-1092 -Died: -13/1/1143 - -Father: -Fulk IV -Mother: -Bertade - -Spouses: -191 - -Style: -King of Jerusalem -Territories: -Jerusalem - -From: -1131 -To: -1143 - -Style: -Count of Anjou -Territories: -Anjou - -From: -1106 -To: -1129 - - - -ID: -191 - -Name: -Ermengarde - -URL: -. - -Picture: -. - -Born: -? -Died: -1126 - -Father: -Elias I -Mother: -Mathilda - -Spouses: -190 - - - -ID: -192 - -Name: -William X - -URL: -. - -Picture: -. - -Born: -1099 -Died: -19/04/1137 - -Father: -William IX -Mother: -Philippa - -Spouses: -193 - -Style: -Duke of Aquitaine -Territories: -Aquitaine - -From: -1126 -To: -1137 - - - -ID: -193 - -Name: -Aenor de Chatellerault - -URL: -. - -Picture: -. - -Born: -c1103 -Died: -03/1130 - -Father: -Aimery I -Mother: -Dangereuse de L'isle Bouchard - -Spouses: -192 - - - -ID: -194 - -Name: -Louis VII - -URL: -. - -Picture: -. - -Born: -1120 -Died: -18/09/1180 - -Father: -Louis VI -Mother: -Adelaide of Maurienne - -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 - -Name: -Constance of Castile - -URL: -. - -Picture: -. - -Born: -c1140 -Died: -04/010/1160 - -Father: -Alfonso VII -Mother: -Berenguela - -Spouses: -194 - - - -ID: -196 - -Name: -Bela III of Hungary - -URL: -. - -Picture: -. - -Born: -c1148 -Died: -23/04/1196 - -Father: -Geza II -Mother: -Euphrosyne of Kiev - -Spouses: -86 - -Style: -King of Hungary and Croatia -Territories: -Hungary -Croatia - -From: -04/03/1172 -To: -23/04/1196 - - - -ID: -197 - -Name: -Sancho VI - -URL: -. - -Picture: -. - -Born: -21/04/1132 -Died: -27/06/1195 - -Father: -Garcia -Mother: -Margaret - -Spouses: -198 - -Style: -King of Navarre -Territories: -Navarre - -From: -1150 -To: -1194 - - - -ID: -198 - -Name: -Sancha of Castine - -URL: -. - -Picture: -. - -Born: -C 1139 -Died: -1179 - -Father: -Alfonso VII -Mother: -Berenguela - -Spouses: -197 - -Consort of: -197 - - -ID: -199 - -Name: -William Fitz Robert - -URL: -. - -Picture: -. - -Born: -? -Died: -1183 - -Father: -Sir Robert -Mother: -Mabel FitzHamon - -Spouses: -200 - -Style: -Earl of Gloucester -Territories: -Gloucester - -From: -31/10/1147 -To: -23/11/1183 - - - -ID: -200 - -Name: -Hawise de Beaumont - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -Robert de Beaumont -Mother: -Amica de Gael - -Spouses: -199 - - - -ID: -201 - -Name: -Geoffrey Fitz Geoffrey - -URL: -. - -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 - -Name: -Hubert de Burgh - -URL: -. - -Picture: -. - -Born: -C 1160 -Died: -1243 - -Father: -Walter de Burgh -Mother: -Beatrice de Warrenne - -Spouses: -88 - -Style: -Earl of Kent -Territories: -Kent - -From: -? -To: -? - - - -ID: -203 - -Name: -Aymer of Angouleme - -URL: -. - -Picture: -. - -Born: -C 1160 -Died: -16/07/1202 - -Father: -William VI -Mother: -Marguerite - -Spouses: -204 - -Style: -Count of Angouleme -Territories: -Angouleme - -From: -? -To: -? - - - -ID: -204 - -Name: -Alice of Courtenay - -URL: -. - -Picture: -. - -Born: -1160 -Died: -12/02/1218 - -Father: -Peter I -Mother: -Elisabeth - -Spouses: -203 - -Consort of: -204 - - -ID: -205 - -Name: -Hugh X of Lusignan - -URL: -. - -Picture: -. - -Born: -C 1183-1195 -Died: -C 05/06/1249 - -Father: -Hugh IX -Mother: -Mathilda - -Spouses: -89 - -Style: -Count of La Marche -Territories: -La Marche - -From: -? -To: -? - - - -ID: -206 - -Name: -Ramon Berenguer IV - -URL: -. - -Picture: -. - -Born: -1198 -Died: -19/08/1245 - -Father: -Alfonso II -Mother: -Garsenda - -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 - -Name: -Beatrice of Savoy - -URL: -. - -Picture: -. - -Born: -1205 -Died: -04/01/1267 - -Father: -Thomas I -Mother: -Margaret of Geneva - -Spouses: -206 - - - -ID: -208 - -Name: -Ferdinand III - -URL: -. - -Picture: -. - -Born: -05/08/1199 -Died: -30/05/1252 - -Father: -Alfonso IX -Mother: -Berengaria of Castile - -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 - -Name: -Philip III - -URL: -. - -Picture: -. - -Born: -30/04/1245 -Died: -05/10/1285 - -Father: -Louis IX -Mother: -Margaret of Provence - -Spouses: -210 -Isabella - -Style: -King of France -Territories: -France - -From: -25/08/1270 -To: -05/10/1285 - - - -ID: -210 - -Name: -Marie of Brabant - -URL: -. - -Picture: -. - -Born: -13/05/1254 -Died: -12/01/1321 - -Father: -Henry III Duke of Brabant -Mother: -Adelaide of Burgundy - -Spouses: -209 - -Consort of: -209 - - -ID: -211 - -Name: -Joan - -URL: -. - -Picture: -. - -Born: -C 1220 -Died: -16/03/1279 - -Father: -Simon, Count Aumale -Mother: -Marie, Countess Ponthieu - -Spouses: -206 - -Consort of: -206 -Style: -Countess Ponthieu -Territories: -Ponthieu - -From: -1251 -To: -1279 - -Style: -Countess of Aumale -Territories: -Aumale - -From: -1239 -To: -1279 - - - -ID: -212 - -Name: -Philip IV - -URL: -. - -Picture: -. - -Born: -04-06/1268 -Died: -29/11/1314 - -Father: -209 -Mother: -Isabella - -Spouses: -213 - -Style: -King of France -Territories: -France - -From: -05/10/1285 -To: -29/11/1314 - -Consort of: -213 - - -ID: -213 - -Name: -Joan I - -URL: -. - -Picture: -. - -Born: -14/01/1273 -Died: -03-04/1305 - -Father: -Henry I Navarre -Mother: -Blanche - -Spouses: -212 - -Consort of: -212 -Style: -Queen of Navarre Countess of Champagne -Territories: -Navarre -Champagne - -From: -1274 -To: -1305 - - - -ID: -214 - -Name: -Joan of Valois - -URL: -. - -Picture: -. - -Born: -C 1294 -Died: -07/03/1342 - -Father: -Charles of Valois -Mother: -Margaret - -Spouses: -230 - - - -ID: -215 - -Name: -Charles IV - -URL: -. - -Picture: -. - -Born: -14/05/1316 -Died: -29/11/1378 - -Father: -John of Bohemia -Mother: -Elizabeth of Bohemia - -Spouses: -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 - -Name: -Elizabeth of Pomerania - -URL: -. - -Picture: -. - -Born: -1347 -Died: -15/04/1393 - -Father: -Bogislaw V -Mother: -Elisabeth of Poland - -Spouses: -215 - -Consort of: -215 - - -ID: -217 - -Name: -Charles VI - -URL: -. - -Picture: -. - -Born: -03/12/1368 -Died: -21/10/1422 - -Father: -Charles V -Mother: -Joan of Bourbon - -Spouses: -218 - -Style: -King of France -Territories: -France - -From: -16/09/1380 -To: -21/10/1422 - - - -ID: -218 - -Name: -Isabeau of Bavaria - -URL: -. - -Picture: -. - -Born: -C 1370 -Died: -24/09/1435 - -Father: -Stephen III -Mother: -Taddea Visconti - -Spouses: -217 - -Consort of: -217 - - -ID: -219 - -Name: -Charles - -URL: -. - -Picture: -. - -Born: -24/11/1394 -Died: -05/01/1465 - -Father: -Louis I Orleans -Mother: -Valentina Visconti - -Spouses: -96 - -Style: -Duke Orleans -Territories: -Orleans - -From: -1407 -To: -1465 - - - -ID: -220 - -Name: -Charles II - -URL: -. - -Picture: -. - -Born: -10/10/1332 -Died: -01/01/1387 - -Father: -Philip III -Mother: -Joan II - -Spouses: -221 - -Style: -King of Navarre -Territories: -Navarre - -From: -1349 -To: -1387 - -Style: -Count Evreux -Territories: -Evreux - -From: -1343 -To: -1387 - - - -ID: -221 - -Name: -Joan of Valois - -URL: -. - -Picture: -. - -Born: -24/06/1343 -Died: -03/11/1373 - -Father: -John II France -Mother: -Bonne of Luxembour - -Spouses: -220 - -Consort of: -220 - - -ID: -222 - -Name: -John V - -URL: -. - -Picture: -. - -Born: -1339 -Died: -01/11/1399 - -Father: -John de Montfort -Mother: -Joanna of Flanders - -Spouses: -98 - -Style: -Duke of Brittany -Territories: -Brittany - -From: -1345 -To: -1399 - - - -ID: -223 - -Name: -Owen Tudor - -URL: -. - -Picture: -. - -Born: -C 1400 -Died: -04/02/1461 - -Father: -Maredudd ap Tudor -Mother: -Margaret ferch Dafydd - -Spouses: -99 - - - -ID: -224 - -Name: -Humphrey de Bohun - -URL: -. - -Picture: -. - -Born: -25/03/1341 -Died: -16/01/1373 - -Father: -William de Bohun -Mother: -Elizabeth de Badlesmere - -Spouses: -225 - -Style: -Earl of Hereford, Essex and Northampton -Territories: -Hereford -Essex -Northampton - -From: -? -To: -? - - - -ID: -225 - -Name: -Joan - -URL: -. - -Picture: -. - -Born: -1347 -Died: -07/04/1419 - -Father: -Richard Fitzalan -Mother: -Eleanor of Lancaster - -Spouses: -224 - - - -ID: -226 - -Name: -Philip - -URL: -. - -Picture: -. - -Born: -10/06/1921 -Died: -present - -Father: -293 -Mother: -294 - -Spouses: -60 - - - -ID: -227 - -Name: -Princess Victoria - -URL: -. - -Picture: -. - -Born: -17/08/1786 -Died: -16/03/1861 - -Father: -Francis -Mother: -Augusta - -Spouses: -162 - - - -ID: -228 - -Name: -Aelfgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -? -Mother: -? - -Spouses: -178 - - - -ID: -229 - -Name: -Bertha of Savoy - -URL: -. - -Picture: -. - -Born: -21/09/1051 -Died: -27/11/1087 - -Father: -Otto -Mother: -Adelaide - -Spouses: -189 - - - -ID: -230 - -Name: -William I, Count of Hainaut - -URL: -. - -Picture: -. - -Born: -C 1286 -Died: -07/06/1337 - -Father: -John II -Mother: -Philippa of Luxembourg - -Spouses: -214 - -Style: -Count of Aesnes, Holland, Zeeland -Territories: -Aesnos -Holland -Zeeland - -From: -1304 -To: -1337 - - - -ID: -231 - -Name: -Rene - -URL: -. - -Picture: -. - -Born: -16/01/1409 -Died: -10/07/1480 - -Father: -Louis II Anjou -Mother: -Yolande of Aragon - -Spouses: -232 - -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 Piedmont and 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 Corsice -Territories: -Aragon -Sicily -Majorca -Corsica - -From: -1466 -To: -1480 - -Consort of: -232 - - -ID: -232 - -Name: -Isabella of Lorraine - -URL: -. - -Picture: -. - -Born: -1400 -Died: -28/02/1453 - -Father: -Charles II Lorraine -Mother: -Margaret of the Palatinate - -Spouses: -231 - -Style: -Duches of Lorraine -Territories: -Lorraine - -From: -25/01/1431 -To: -28/02/1453 - - - -ID: -233 - -Name: -Richard Woodville - -URL: -. - -Picture: -. - -Born: -1405 -Died: -12/08/1469 - -Father: -Richard Wydeville -Mother: -Joan Bedlisgate - -Spouses: -234 - -Style: -Earl Rivers -Territories: -Rivers - -From: -? -To: -? - - - -ID: -234 - -Name: -Jacquetta of Luxembourg - -URL: -. - -Picture: -. - -Born: -1415-1416 -Died: -30/05/1472 - -Father: -Peter I Count St Pol -Mother: -Margherita - -Spouses: -133 -405 - - - -ID: -235 - -Name: -Sir John Grey - -URL: -. - -Picture: -. - -Born: -c.1432 -Died: -17/02/1461 - -Father: -Edward Grey -Mother: -Elizabeth Ferrers - -Spouses: -101 - - - -ID: -236 - -Name: -Richard Neville - -URL: -. - -Picture: -. - -Born: -22/11/1428 -Died: -14/04/1471 - -Father: -Richard Neville -Mother: -Alice Montague - -Spouses: -237 - -Style: -Earl of Salisbury -Territories: -Salisbury - -From: -? -To: -? - - - -ID: -237 - -Name: -Anne de Beauchamp - -URL: -. - -Picture: -. - -Born: -13/07/1426 -Died: -20/09/1492 - -Father: -Richard de Beauchamp -Mother: -Isabel le Despenser - -Spouses: -236 - -Style: -Countess of Warwick -Territories: -Warwick - -From: -? -To: -1492 - - - -ID: -238 - -Name: -Edward of Westminster - -URL: -. - -Picture: -. - -Born: -13/10/1453 -Died: -04/05/1471 - -Father: -33 -Mother: -100 - -Spouses: -102 - -Style: -Prince of Wales -Territories: -Wales - -From: -? -To: -? - - - -ID: -239 - -Name: -Ferdinand II - -URL: -. - -Picture: -. - -Born: -10/03/1452 -Died: -23/01/1516 - -Father: -John II Aragon -Mother: -Juanna Enriquez - -Spouses: -240 - -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 - -Name: -Isabella I - -URL: -. - -Picture: -. - -Born: -22/04/1451 -Died: -26/11/1504 - -Father: -John II Castile -Mother: -Isabella of Portugal - -Spouses: -239 - -Style: -Queen of Castile and Leon -Territories: -Castile -Leon - -From: -11/11/1474 -To: -26/11/1504 - - - -ID: -241 - -Name: -Arthur - -URL: -. - -Picture: -. - -Born: -20/09/1486 -Died: -02/03/1502 - -Father: -37 -Mother: -103 - -Spouses: -104 - -Style: -Print of Wales, Earl of Chester, Duke of Cornwall -Territories: -Wales -Chester -Cornwall - -From: -? -To: -? - - - -ID: -242 - -Name: -Thomas Boleyn - -URL: -. - -Picture: -. - -Born: -c1477 -Died: -12/03/1539 - -Father: -William Boleyn -Mother: -Margaret Butler - -Spouses: -243 - - - -ID: -243 - -Name: -Lady Elizabeth Howard - -URL: -. - -Picture: -. - -Born: -c1480 -Died: -03/04/1538 - -Father: -Thomas Howard -Mother: -Elizabeth Tilney - -Spouses: -105 - - - -ID: -244 - -Name: -John Seymour - -URL: -. - -Picture: -. - -Born: -c1471 -Died: -21/12/1536 - -Father: -John Seymour -Mother: -Elizabeth Darrell - -Spouses: -245 - - - -ID: -245 - -Name: -Margery Wentworth - -URL: -. - -Picture: -. - -Born: -c1478 -Died: -C10/1550 - -Father: -Henry Wentworth -Mother: -Anne Say - -Spouses: -244 - - - -ID: -246 - -Name: -John III - -URL: -. - -Picture: -. - -Born: -10/11/1490 -Died: -06/02/1538-1539 - -Father: -John II of Cleves -Mother: -Mathilda of Hesse - -Spouses: -247 - -Style: -Duke of Cleves -Territories: -Cleves - -From: -? -To: -? - - - -ID: -247 - -Name: -Maria of Julich-Berg - -URL: -. - -Picture: -. - -Born: -03/08/1491 -Died: -29/10/1543 - -Father: -William IV -Mother: -Sibylle - -Spouses: -246 - - - -ID: -248 - -Name: -Edmund Howard - -URL: -. - -Picture: -. - -Born: -c1478 -Died: -19/03/1539 - -Father: -Thomas Howard -Mother: -Elizabeth Tilney - -Spouses: -249 - - - -ID: -249 - -Name: -Joyce Culpepper - -URL: -. - -Picture: -. - -Born: -C 1480 -Died: -c1531 - -Father: -Richard Culpeper -Mother: -Isabel Worsley - -Spouses: -248 - - - -ID: -250 - -Name: -Thomas Parr - -URL: -. - -Picture: -. - -Born: -c1483 -Died: -11/11/1517 - -Father: -William Parr -Mother: -Elizabeth FitzHugh - -Spouses: -251 - - - -ID: -251 - -Name: -Maud Green - -URL: -. - -Picture: -. - -Born: -06/04/1492 -Died: -01/12/1531 - -Father: -Thomas Green -Mother: -Joan Fogge - -Spouses: -250 - - - -ID: -252 - -Name: -Edward Burgh - -URL: -. - -Picture: -. - -Born: -? -Died: -Before 04/1533 - -Father: -Thomas Burgh -Mother: -Agnes Tyrwhitt - -Spouses: -109 - - - -ID: -253 - -Name: -John Neville - -URL: -. - -Picture: -. - -Born: -17/11/1493 -Died: -02/03/1543 - -Father: -Richard Neville -Mother: -Anne Staford - -Spouses: -109 - - - -ID: -254 - -Name: -Thomas Seymour - -URL: -. - -Picture: -. - -Born: -c1508 -Died: -20/03/1549 - -Father: -244 -Mother: -245 - -Spouses: -109 - - - -ID: -255 - -Name: -John Dudley - -URL: -. - -Picture: -. - -Born: -1504 -Died: -22/08/1553 - -Father: -Edmund Dudley -Mother: -Elizabeth Grey - -Spouses: -256 - -Style: -Duke of Northumberland -Territories: -Northumberland - -From: -1551 -To: -1553 - - - -ID: -256 - -Name: -Jane Guildford - -URL: -. - -Picture: -. - -Born: -1508-1509 -Died: -1555 - -Father: -Edward Guildford -Mother: -Eleanor West - -Spouses: -255 - - - -ID: -257 - -Name: -Charles V - -URL: -. - -Picture: -. - -Born: -24/02/1500 -Died: -21/09/1558 - -Father: -Philip I -Mother: -Joanna of Castile - -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 - -Name: -Isabella of Portugal - -URL: -. - -Picture: -. - -Born: -24/10/1503 -Died: -01/05/1539 - -Father: -Manuel I -Mother: -Maria of Aragon - -Spouses: -257 - - - -ID: -259 - -Name: -Maria Manuela - -URL: -. - -Picture: -. - -Born: -1527 -Died: -1545 - -Father: -John III -Mother: -Catherine of Austria - -Spouses: -111 - - - -ID: -260 - -Name: -Elizabeth of Valois - -URL: -. - -Picture: -. - -Born: -02/04/1545 -Died: -03/08/1568 - -Father: -Henry II -Mother: -Catherine de'Medici - -Spouses: -111 - - - -ID: -261 - -Name: -Anna of Austria - -URL: -. - -Picture: -. - -Born: -01/11/1549 -Died: -26/10/1580 - -Father: -Maximilian II -Mother: -Maria of Spain - -Spouses: -111 - - - -ID: -262 - -Name: -Frederick II - -URL: -. - -Picture: -. - -Born: -01/07/1534 -Died: -04/04/1588 - -Father: -Christian III -Mother: -Dorothea of Saxe-Lauenberg - -Spouses: -263 - -Style: -King of Denmark and Norway -Territories: -Denmark -Norway - -From: -1559 -To: -1588 - - - -ID: -263 - -Name: -Sophie of Mecklenburg-Gustrow - -URL: -. - -Picture: -. - -Born: -04/09/1557 -Died: -14/10/1631 - -Father: -Ulrich III -Mother: -Elizabeth of Denmark - -Spouses: -262 - - - -ID: -264 - -Name: -Henry IV - -URL: -. - -Picture: -. - -Born: -13/12/1553 -Died: -14/05/1610 - -Father: -Antoine de Bourbon -Mother: -Jeanne III Navarre - -Spouses: -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 - -Name: -Marie de'Medici - -URL: -. - -Picture: -. - -Born: -26/04/1575 -Died: -03/07/1642 - -Father: -Francesco I -Mother: -Joanna of Austria - -Spouses: -264 - - - -ID: -266 - -Name: -John IV - -URL: -. - -Picture: -. - -Born: -19/03/1604 -Died: -06/11/1656 - -Father: -Teodosco II -Mother: -Ana de Velasco y Giron - -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 - -Name: -Luisa de Guzman - -URL: -. - -Picture: -. - -Born: -13/10/1613 -Died: -27/02/1666 - -Father: -Juan Manuel Perez -Mother: -Juana Lorenza - -Spouses: -266 - - - -ID: -268 - -Name: -Edward Hyde - -URL: -. - -Picture: -. - -Born: -18/02/1609 -Died: -09/12/1674 - -Father: -Henry Hyde -Mother: -Mary Langford - -Spouses: -269 - -Style: -Earl of Clarendon -Territories: -Clarendon - -From: -? -To: -? - - - -ID: -269 - -Name: -Frances Aylesbury - -URL: -. - -Picture: -. - -Born: -25/08/1617 -Died: -08/08/1667 - -Father: -Thomas Aylesbury -Mother: -Anne Denman - -Spouses: -268 - - - -ID: -270 - -Name: -Alfonso IV - -URL: -. - -Picture: -. - -Born: -14/10/1634 -Died: -16/07/1662 - -Father: -Francesco I -Mother: -Maria - -Spouses: -271 - -Style: -Duke of Modena -Territories: -Modena - -From: -1658 -To: -1662 - - - -ID: -271 - -Name: -Laura Martinozzi - -URL: -. - -Picture: -. - -Born: -24/05/1639 -Died: -19/07/1687 - -Father: -Girolamo Martinozzi -Mother: -Laura Mazarini - -Spouses: -270 - - - -ID: -272 - -Name: -Frederick III - -URL: -. - -Picture: -. - -Born: -18/03/1609 -Died: -09/02/1670 - -Father: -Christian IV -Mother: -Anne Catherine - -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 - -Name: -Sophie Amalie of Brunswick-Luneburg - -URL: -. - -Picture: -. - -Born: -24/03/1628 -Died: -20/02/1685 - -Father: -George -Mother: -Anne Eleonore - -Spouses: -272 - - - -ID: -274 - -Name: -George William - -URL: -. - -Picture: -. - -Born: -26/01/1624 -Died: -28/08/1705 - -Father: -George -Mother: -Anne - -Spouses: -295 - -Style: -Duke of Burnswick Luneburg -Territories: -Burnswick-Luneburg - -From: -? -To: -? - - - -ID: -275 - -Name: -John Frederick - -URL: -. - -Picture: -. - -Born: -18/10/1654 -Died: -22/03/1686 - -Father: -Albert II -Mother: -Sophie Margarete - -Spouses: -276 - -Style: -Margrave of Brandenburg-Ansbach -Territories: -Brandenburg-Ansbach - -From: -? -To: -? - - - -ID: -276 - -Name: -Princess Eleonore Erdmuth of Saxe-Eisenach - -URL: -. - -Picture: -. - -Born: -13/04/1662 -Died: -09/09/1696 - -Father: -John George I -Mother: -Joanna of Sayn-Wittgenstein - -Spouses: -275 - - - -ID: -277 - -Name: -Charles William Ferdinand - -URL: -. - -Picture: -. - -Born: -09/10/1735 -Died: -10/11/1806 - -Father: -Charles I of Brunswick-Wolfenbuttel -Mother: -Philippine Charlotte - -Spouses: -278 - -Style: -Duke of Burnswick-Wolfenbuttel -Territories: -Brunswick-Wolfenbuttel - -From: -? -To: -? - - - -ID: -278 - -Name: -Princess Augusta Frederica - -URL: -. - -Picture: -. - -Born: -31/07/1737 -Died: -23/03/1813 - -Father: -160 -Mother: -161 - -Spouses: -277 - - - -ID: -279 - -Name: -George I - -URL: -. - -Picture: -. - -Born: -04/02/1761 -Died: -24/12/1803 - -Father: -Anton Ulrich -Mother: -Charlotte Amalie - -Spouses: -280 - -Style: -Duke of Saxe-Meiningen -Territories: -Saxe-Meiningen - -From: -1782 -To: -1803 - - - -ID: -280 - -Name: -Luise Eleonore of Hohenlohe-Langenburg - -URL: -. - -Picture: -. - -Born: -11/08/1763 -Died: -30/04/1837 - -Father: -Christian Albert -Mother: -Caroline - -Spouses: -279 - - - -ID: -281 - -Name: -Ernest I - -URL: -. - -Picture: -. - -Born: -02/01/1784 -Died: -29/01/1844 - -Father: -Francis -Mother: -Augusta - -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 - -Name: -Louise - -URL: -. - -Picture: -. - -Born: -21/12/1800 -Died: -30/10/1831 - -Father: -Augustus -Mother: -Louise Charlotte - -Spouses: -281 - - - -ID: -283 - -Name: -Christian IX - -URL: -. - -Picture: -. - -Born: -08/04/1818 -Died: -29/01/1906 - -Father: -Friedrich Wilhelm -Mother: -Louise - -Spouses: -284 - -Style: -King of Denmark -Territories: -Denmark - -From: -15/11/1863 -To: -29/01/1906 - - - -ID: -284 - -Name: -Louise of Hesse-Kassel - -URL: -. - -Picture: -. - -Born: -07/09/1817 -Died: -29/09/1898 - -Father: -William of Hesse -Mother: -Charlotte of Denmark - -Spouses: -283 - - - -ID: -285 - -Name: -Francis - -URL: -. - -Picture: -. - -Born: -28/08/1837 -Died: -21/01/1900 - -Father: -Alexander -Mother: -Claudin Redey - -Spouses: -286 - -Style: -Duke of Teck -Territories: -Teck - -From: -? -To: -? - - - -ID: -286 - -Name: -Princess Mary Adelaid - -URL: -. - -Picture: -. - -Born: -27/11/1833 -Died: -27/10/1897 - -Father: -Adolphus, Duke of Cambridge -Mother: -Princess Augusta - -Spouses: -285 - - - -ID: -287 - -Name: -Teackle Wallis Warfield - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -Henry Mactier Warfield -Mother: -? - -Spouses: -288 - - - -ID: -288 - -Name: -Alice Montague - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -William Montague -Mother: -? - -Spouses: -287 - - - -ID: -289 - -Name: -Earl Winfield Spencer - -URL: -. - -Picture: -. - -Born: -20/09/1888 -Died: -29/05/1950 - -Father: -Earl Winfield Spence -Mother: -Agnes Lucy Hughes - -Spouses: -126 - - - -ID: -290 - -Name: -Erest Aldrich Simpson - -URL: -. - -Picture: -. - -Born: -26/05/1897 -Died: -30/11/1958 - -Father: -Ernest Louis Simpson -Mother: -Charlotte Woodward Gaines - -Spouses: -126 - - - -ID: -291 - -Name: -Claude Bowes-Lion - -URL: -. - -Picture: -. - -Born: -14/03/1855 -Died: -07/11/1944 - -Father: -Claude Bowes Lyon -Mother: -Frances Dora Smith - -Spouses: -292 - -Style: -Earl of Strathmore and Kinghorne -Territories: -Strathmore -Kinghorne - -From: -1937 -To: -1944 - - - -ID: -292 - -Name: -Cecilia Cavendish-Bentinck - -URL: -. - -Picture: -. - -Born: -11/09/1862 -Died: -23/06/1938 - -Father: -Charles Cavendish-Bentinck -Mother: -Lousia Burnaby - -Spouses: -291 - - - -ID: -293 - -Name: -Prince Andrew - -URL: -. - -Picture: -. - -Born: -02/02/1882 -Died: -03/11/1944 - -Father: -George I of Greece -Mother: -Olga Konstantinova - -Spouses: -294 - - - -ID: -294 - -Name: -Princess Alice - -URL: -. - -Picture: -. - -Born: -25/02/1885 -Died: -05/11/1969 - -Father: -Pince Louis -Mother: -Princess Victoria - -Spouses: -293 - - - -ID: -295 - -Name: -Eleonore Desmier d'Olbreuse - -URL: -. - -Picture: -. - -Born: -03/01/1639 -Died: -05/02/1722 - -Father: -Alexander Desmier -Mother: -Jacquette Pousard - -Spouses: -274 - - - -ID: -296 - -Name: -Charles Louis Frederick - -URL: -. - -Picture: -. - -Born: -23/02/1708 -Died: -25/06/1752 - -Father: -Adolf Frederick II -Mother: -Pincess Christiane Emilie - -Spouses: -297 - -Style: -Ducke of Mecklenburg -Territories: -Mecklenburg - -From: -? -To: -? - -Style: -Pince of Mirow -Territories: -Mirow - -From: -? -To: -? - - - -ID: -297 - -Name: -Pincess Elizabeth-Albertine - -URL: -. - -Picture: -. - -Born: -04/08/1713 -Died: -29/06/1761 - -Father: -Ernst Frederick I -Mother: -Sophia Albertine - -Spouses: -296 - - - -ID: -298 - -Name: -Aethelflaed - -URL: -. - -Picture: -. - -Born: -? -Died: -12/06/918 - -Father: -1 -Mother: -61 - -Spouses: -Aetelred - -Style: -Lady of the Mercians -Territories: -Mercia - -From: -911 -To: -918 - - - -ID: -299 - -Name: -Aethelgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -1 -Mother: -61 - -Style: -Abbess of Shaftesbury -Territories: -Shaftsbury - -From: -? -To: -? - - - -ID: -300 - -Name: -Aethelweard - -URL: -. - -Picture: -. - -Born: -C 880 -Died: -920-922 - -Father: -1 -Mother: -61 - -Spouses: -? - - - -ID: -301 - -Name: -Aelthryth - -URL: -. - -Picture: -. - -Born: -877 -Died: -07/06/929 - -Father: -1 -Mother: -61 - -Spouses: -Baldwin II - - - -ID: -302 - -Name: -daughter - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -2 -Mother: -62 - -Spouses: -Sihtric Caech - - - -ID: -303 - -Name: -Eadgifu - -URL: -. - -Picture: -. - -Born: -902 -Died: -After 955 - -Father: -2 -Mother: -63 - -Spouses: -Charles II - Herbert the Old - - - -ID: -304 - -Name: -Aelfweard - -URL: -. - -Picture: -. - -Born: -c902 -Died: -02/08/924 - -Father: -2 -Mother: -63 - -Spouses: - - - - -ID: -305 - -Name: -Eadgyth - -URL: -. - -Picture: -. - -Born: -910 -Died: -26/01/946 - -Father: -2 -Mother: -63 - -Spouses: -Otto I - - - -ID: -306 - -Name: -Eadhild - -URL: -. - -Picture: -. - -Born: -? -Died: -937 - -Father: -2 -Mother: -63 - -Spouses: -Hugh - - - -ID: -307 - -Name: -Aelgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -2 -Mother: -63 - -Spouses: -a print near the alps - - - -ID: -308 - -Name: -Eadflaed - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -2 -Mother: -63 - -Spouses: - - - - -ID: -309 - -Name: -Edwin of Wessex - -URL: -. - -Picture: -. - -Born: -? -Died: -933 - -Father: -2 -Mother: -63 - -Spouses: - - - - -ID: -310 - -Name: -St Eadburh of Winchester - -URL: -. - -Picture: -. - -Born: -? -Died: -15/06/960 - -Father: -2 -Mother: -64 - -Spouses: - - - - -ID: -311 - -Name: -Eadhgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -2 -Mother: -64 - -Spouses: -Louis prince of Aquitaine - - - -ID: -312 - -Name: -St Edith of Wilton - -URL: -. - -Picture: -. - -Born: -961 -Died: -15/09/984 - -Father: -7 -Mother: -69 - -Spouses: - - - - -ID: -313 - -Name: -Edmund - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -7 -Mother: -70 - -Spouses: - - - - -ID: -314 - -Name: -Aethelstan Aetheling - -URL: -. - -Picture: -. - -Born: -? -Died: -25/06/1014 - -Father: -9 -Mother: -71 - -Spouses: - - - - -ID: -315 - -Name: -Ecgberht Aetheling - -URL: -. - -Picture: -. - -Born: -? -Died: -C 1005 - -Father: -9 -Mother: -71 - -Spouses: - - - - -ID: -316 - -Name: -Eadred Aetheling - -URL: -. - -Picture: -. - -Born: -? -Died: -1012 - -Father: -9 -Mother: -71 - -Spouses: - - - - -ID: -317 - -Name: -Eadwig Aetheling - -URL: -. - -Picture: -. - -Born: -? -Died: -c1017 - -Father: -9 -Mother: -71 - -Spouses: - - - - -ID: -318 - -Name: -Edgar Aetheling - -URL: -. - -Picture: -. - -Born: -? -Died: -C 1008 - -Father: -9 -Mother: -71 - -Spouses: - - - - -ID: -319 - -Name: -Eadgyth - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -9 -Mother: -71 - -Spouses: -Eadric Steona - - - -ID: -320 - -Name: -Aelfgifu - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -9 -Mother: -71 - -Spouses: -Uchtred the Bold - - - -ID: -321 - -Name: -Wulfhilda - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -9 -Mother: -71 - -Spouses: -Ulfcytel Snillingr - - - -ID: -322 - -Name: -daughter - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -9 -Mother: -71 - -Style: -Abbess of Wherwall Abbey -Territories: -Wherwall - -From: -? -To: -? - - - -ID: -323 - -Name: -Alfred Aetheling - -URL: -. - -Picture: -. - -Born: -? -Died: -1036 - -Father: -9 -Mother: -72 - -Spouses: - - - - -ID: -324 - -Name: -Goda of England - -URL: -. - -Picture: -. - -Born: -1004 -Died: -c1047 - -Father: -9 -Mother: -72 - -Spouses: -Drogo of Mantes - Eustace II - - - -ID: -325 - -Name: -Harald II - -URL: -. - -Picture: -. - -Born: -? -Died: -1018 - -Father: -10 -Mother: -73 - -Style: -King of Denmark -Territories: -Denmark - -From: -1014 -To: -1018 - - - -ID: -326 - -Name: -Gytha - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -10 -Mother: -73 - -Spouses: - - - - -ID: -327 - -Name: -Gunnhild - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -10 -Mother: -73 - -Spouses: - - - - -ID: -328 - -Name: -Santslaue - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -10 -Mother: -73 - -Spouses: - - - - -ID: -329 - -Name: -Thyra - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -10 -Mother: -73 - -Spouses: - - - - -ID: -330 - -Name: -Estrid Svendsdatter - -URL: -. - -Picture: -. - -Born: -990-997 -Died: -1057-1073 - -Father: -10 -Mother: -73 - -Spouses: -a Russian prince - Ulf Jarl - - - -ID: -331 - -Name: -Edward the Exile - -URL: -. - -Picture: -. - -Born: -1016 -Died: -08/1057 - -Father: -11 -Mother: -74 - -Spouses: -Agatha - - - -ID: -332 - -Name: -Edmund Aetheling - -URL: -. - -Picture: -. - -Born: -C1015-1017 -Died: -1046-1054 - -Father: -11 -Mother: -74 - -Spouses: - - - - -ID: -333 - -Name: -Sweyn Knutsson - -URL: -. - -Picture: -. - -Born: -c1016 -Died: -1035 - -Father: -12 -Mother: -75 - -Spouses: - - - - -ID: -334 - -Name: -Gunhilda of Denmark - -URL: -. - -Picture: -. - -Born: -c1020 -Died: -18/07/1038 - -Father: -12 -Mother: -72 - -Spouses: -Henry III - - - -ID: -335 - -Name: -Godwine - -URL: -. - -Picture: -. - -Born: -1049 -Died: -? - -Father: -16 -Mother: -77 - -Spouses: - - - - -ID: -336 - -Name: -Edmund - -URL: -. - -Picture: -. - -Born: -1049 -Died: -? - -Father: -16 -Mother: -77 - -Spouses: - - - - -ID: -337 - -Name: -Magnus - -URL: -. - -Picture: -. - -Born: -1051 -Died: -? - -Father: -16 -Mother: -77 - -Spouses: - - - - -ID: -338 - -Name: -Gunhild - -URL: -. - -Picture: -. - -Born: -1055 -Died: -1097 - -Father: -16 -Mother: -77 - -Spouses: -Alan Rufus - - - -ID: -339 - -Name: -Gytha of Wessex - -URL: -. - -Picture: -. - -Born: -? -Died: -1098-1107 - -Father: -16 -Mother: -77 - -Spouses: -Vladimir - - - -ID: -340 - -Name: -Harold - -URL: -. - -Picture: -. - -Born: -1067 -Died: -1098 - -Father: -16 -Mother: -78 - -Spouses: - - - - -ID: -341 - -Name: -Ulf - -URL: -. - -Picture: -. - -Born: -1066 -Died: -After 1087 - -Father: -16 -Mother: -78 - -Spouses: - - - - -ID: -342 - -Name: -Robert Curthose - -URL: -. - -Picture: -. - -Born: -c1054 -Died: -03/02/1134 - -Father: -17 -Mother: -79 - -Spouses: -Sybilla - -Style: -Duke of Normandy -Territories: -Normandy - -From: -1087 -To: -1106 - - - -ID: -343 - -Name: -Richard of Normandy - -URL: -. - -Picture: -. - -Born: -c1054 -Died: -1069-1075 - -Father: -17 -Mother: -79 - -Spouses: - - - - -ID: -344 - -Name: -Adeliza - -URL: -. - -Picture: -. - -Born: -? -Died: -Before 1113 - -Father: -17 -Mother: -79 - -Spouses: - - - - -ID: -345 - -Name: -Cecilia - -URL: -. - -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 - -Name: -Matilda - -URL: -. - -Picture: -. - -Born: -c1061 -Died: -c1086 - -Father: -17 -Mother: -79 - -Spouses: - - - - -ID: -347 - -Name: -Constance of Normandy - -URL: -. - -Picture: -. - -Born: -1057-1061 -Died: -13/08/1090 - -Father: -17 -Mother: -79 - -Spouses: -Alan IV - - - -ID: -348 - -Name: -Agatha - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -17 -Mother: -79 - -Spouses: - - - - -ID: -349 - -Name: -William Adelin - -URL: -. - -Picture: -. - -Born: -1103 -Died: -1120 - -Father: -19 -Mother: -80 - -Spouses: - - - - -ID: -350 - -Name: -Richard - -URL: -. - -Picture: -. - -Born: -? -Died: -? - -Father: -19 -Mother: -80 - -Spouses: - - - - -ID: -351 - -Name: -Eustace IV - -URL: -. - -Picture: -. - -Born: -c1129 -Died: -17/08/1153 - -Father: -20 -Mother: -82 - -Spouses: -Constance - -Style: -Count of Boulogne -Territories: -Boulogne - -From: -25/12/1146 -To: -17/08/1153 - - - -ID: -352 - -Name: -Matilda - -URL: -. - -Picture: -. - -Born: -? -Died: -Before 1141 - -Father: -20 -Mother: -82 - -Spouses: -Waleran de Beaumont - - - -ID: -353 - -Name: -Marie I - -URL: -. - -Picture: -. - -Born: -1136 -Died: -25/07/1182 - -Father: -20 -Mother: -82 - -Spouses: -Matthew of Alsace - -Style: -Countess of Boulogne -Territories: -Boulogne - -From: -1159 -To: -1170 - - - -ID: -354 - -Name: -Baldwin - -URL: -. - -Picture: -. - -Born: -? -Died: -Before 1135 - -Father: -20 -Mother: -82 - -Spouses: - - - - -ID: -355 - -Name: -Adela - -URL: -. - -Picture: -. - -Born: -? -Died: -Before 1146 - -Father: -20 -Mother: -82 - -Spouses: - - - - -ID: -356 - -Name: -William I - -URL: -. - -Picture: -. - -Born: -C 1137 -Died: -11/10/1159 - -Father: -20 -Mother: -82 - -Spouses: -Isabel de Warenne - -Style: -Count of Boulogne -Territories: -Boulogne - -From: -1153 -To: -1159 - - - -ID: -357 - -Name: -Geoffrey - -URL: -. - -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 - -Name: -William FitzEmpress - -URL: -. - -Picture: -. - -Born: -22/07/1136 -Died: -30/01/1163-1164 - -Father: -84 -Mother: -21 - -Spouses: - - - - -ID: -359 - -Name: -Geoffrey - -URL: -. - -Picture: -. - -Born: -c1152 -Died: -12/12/1212 - -Father: -22 -Mother: -Ykenai - -Style: -Archbishop of York -Territories: -York - -From: -? -To: -? - - - -ID: -360 - -Name: -William IX - -URL: -. - -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 - -Name: -Matilda / Maud - -URL: -. - -Picture: -. - -Born: -1156 -Died: -28/08/1189 - -Father: -22 -Mother: -85 - -Spouses: -Henry the Lion - - - -ID: -362 - -Name: -Geoffrey II - -URL: -. - -Picture: -. - -Born: -23/09/1158 -Died: -19/08/1186 - -Father: -22 -Mother: -85 - -Spouses: -Constance - - - -ID: -363 - -Name: -Eleanor of England - -URL: -. - -Picture: -. - -Born: -13/10/1162 -Died: -31/10/1214 - -Father: -22 -Mother: -85 - -Spouses: -Alfonso VIII - - - -ID: -364 - -Name: -Joan of England - -URL: -. - -Picture: -. - -Born: -10/1165 -Died: -04/09/1199 - -Father: -22 -Mother: -85 - -Spouses: -William II - Raymond VI - - - -ID: -365 - -Name: -William Longespee - -URL: -. - -Picture: -. - -Born: -c1176 -Died: -07/03/1226 - -Father: -22 -Mother: -Ida de Tosny - -Spouses: -Ela - - - -ID: -366 - -Name: -Richard - -URL: -. - -Picture: -. - -Born: -05/01/1209 -Died: -02/04/1272 - -Father: -25 -Mother: -89 - -Spouses: -Isabel Marshal -Sanchia -Beatrice of Falkenburg - -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 - -Name: -Joan of England - -URL: -. - -Picture: -. - -Born: -22/07/1210 -Died: -04/03/1238 - -Father: -25 -Mother: -89 - -Spouses: -Alexander II - - - -ID: -368 - -Name: -Isabella - -URL: -. - -Picture: -. - -Born: -1214 -Died: -01/12/1241 - -Father: -25 -Mother: -89 - -Spouses: -Frederick II - - - -ID: -369 - -Name: -Eleanor - -URL: -. - -Picture: -. - -Born: -1215 -Died: -13/04/1275 - -Father: -25 -Mother: -89 - -Spouses: -William Marshal - Simon de Montfort - - - -ID: -370 - -Name: -Margaret - -URL: -. - -Picture: -. - -Born: -29/09/1240 -Died: -26/02/1275 - -Father: -26 -Mother: -90 - -Spouses: -Alexander III - - - -ID: -371 - -Name: -Beatrice - -URL: -. - -Picture: -. - -Born: -25/06/1242 -Died: -24/03/1275 - -Father: -26 -Mother: -90 - -Spouses: -John II - - - -ID: -372 - -Name: -Edmund - -URL: -. - -Picture: -. - -Born: -16/01/1245 -Died: -05/06/1296 - -Father: -26 -Mother: -90 - -Spouses: -Aveline de Forz - Blanche of Artois - -Style: -Earl of Lancaster and Leicester -Territories: -Lancaster -Leicester - -From: -? -To: -? - - - -ID: -373 - -Name: -Katherine - -URL: -. - -Picture: -. - -Born: -25/11/1253 -Died: -03/05/1257 - -Father: -26 -Mother: -90 - -Spouses: - - - - -ID: -374 - -Name: -daughter - -URL: -. - -Picture: -. - -Born: -05/1255 -Died: -29/05/1255 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -375 - -Name: -Katherine - -URL: -. - -Picture: -. - -Born: -Before 17/06/1264 -Died: -05/09/1264 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -376 - -Name: -Joan - -URL: -. - -Picture: -. - -Born: -summer or Januarry 1265 -Died: -Before 07/09/1265 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -377 - -Name: -John - -URL: -. - -Picture: -. - -Born: -13/07/1266 -Died: -03/08/1271 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -378 - -Name: -Henry - -URL: -. - -Picture: -. - -Born: -13/07/1267 -Died: -14/10/1274 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -379 - -Name: -Eleanor - -URL: -. - -Picture: -. - -Born: -18/06/1269 -Died: -29/08/1298 - -Father: -27 -Mother: -91 - -Spouses: -Henry III - - - -ID: -380 - -Name: -Juliana - -URL: -. - -Picture: -. - -Born: -After 05/1271 -Died: -05/09/1271 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -381 - -Name: -Joan - -URL: -. - -Picture: -. - -Born: -04/1272 -Died: -23/04/1307 - -Father: -27 -Mother: -91 - -Spouses: -Gilbert de Clare - Ralph de Monthermer - - - -ID: -382 - -Name: -Alphonso - -URL: -. - -Picture: -. - -Born: -24/11/1273 -Died: -19/08/1284 - -Father: -27 -Mother: -91 - -Style: -Earl of Chester -Territories: -Chester - -From: -? -To: -? - - - -ID: -383 - -Name: -Margaret - -URL: -. - -Picture: -. - -Born: -15/03/1275 -Died: -After 1333 - -Father: -27 -Mother: -91 - -Spouses: -John II - - - -ID: -384 - -Name: -Berengaria - -URL: -. - -Picture: -. - -Born: -01/05/1276 -Died: -1277-1278 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -385 - -Name: -daughter - -URL: -. - -Picture: -. - -Born: -12/1277 -Died: -01/1278 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -386 - -Name: -Mary - -URL: -. - -Picture: -. - -Born: -11-12/03/1279 -Died: -c1332 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -387 - -Name: -son - -URL: -. - -Picture: -. - -Born: -1280-1281 -Died: -1280-1281 - -Father: -27 -Mother: -91 - -Spouses: - - - - -ID: -388 - -Name: -Elizabeth - -URL: -. - -Picture: -. - -Born: -07/08/1282 -Died: -05/05/1316 - -Father: -27 -Mother: -91 - -Spouses: -John I - Humphrey de Bohun - - - -ID: -389 - -Name: -Thomas - -URL: -. - -Picture: -. - -Born: -01/06/1300 -Died: -08/1338 - -Father: -27 -Mother: -92 - -Spouses: -Alice de Hales - Mary de Brewes - - - -ID: -390 - -Name: -Edmund - -URL: -. - -Picture: -. - -Born: -05/08/1301 -Died: -19/03/1330 - -Father: -27 -Mother: -92 - -Spouses: -Margaret Wake - - - -ID: -391 - -Name: -Eleanor - -URL: -. - -Picture: -. - -Born: -06/05/1306 -Died: -1310 - -Father: -27 -Mother: -92 - -Spouses: - - - - -ID: -392 - -Name: -John of Eltham - -URL: -. - -Picture: -. - -Born: -15/08/1316 -Died: -13/09/1336 - -Father: -28 -Mother: -93 - -Spouses: - - - - -ID: -393 - -Name: -Eleanor of Woodstock - -URL: -. - -Picture: -. - -Born: -18/06/1318 -Died: -22/04/1355 - -Father: -28 -Mother: -93 - -Spouses: -Reginald II - - - -ID: -394 - -Name: -Joan - -URL: -. - -Picture: -. - -Born: -05/07/1321 -Died: -07/09/1362 - -Father: -28 -Mother: -93 - -Spouses: -David II - - - -ID: -395 - -Name: -Isabella - -URL: -. - -Picture: -. - -Born: -16/06/1332 -Died: -1379-1382 - -Father: -29 -Mother: -94 - -Spouses: -Enguerrand VII - - - -ID: -396 - -Name: -Joan - -URL: -. - -Picture: -. - -Born: -1333-1334 -Died: -01/07/1348 - -Father: -29 -Mother: -94 - -Spouses: - - - - -ID: -397 - -Name: -William of Hatfield - -URL: -. - -Picture: -. - -Born: -16/02/1337 -Died: -After 03/03/1337 - -Father: -29 -Mother: -94 - -Spouses: - - - - -ID: -398 - -Name: -Lionel of Antwerp - -URL: -. - -Picture: -. - -Born: -29/11/1338 -Died: -07/10/1368 - -Father: -29 -Mother: -94 - -Spouses: -Elizabeth de Burgh - Violante - -Style: -Duke of Clarence -Territories: -Clarence - -From: -? -To: -? - - - -ID: -399 - -Name: -Blanche - -URL: -. - -Picture: -. - -Born: -03/13472 -Died: -03/1342 - -Father: -29 -Mother: -94 - -Spouses: - - - - -ID: -400 - -Name: -Mary of Waltham - -URL: -. - -Picture: -. - -Born: -10/10/1344 -Died: -09/1361 - -Father: -29 -Mother: -94 - -Spouses: -John V - - - -ID: -401 - -Name: -Margaret - -URL: -. - -Picture: -. - -Born: -20/07/1346 -Died: -10-12/1361 - -Father: -29 -Mother: -94 - -Spouses: -John Hastings - - - -ID: -402 - -Name: -Thomas of Windsor - -URL: -. - -Picture: -. - -Born: -1347 -Died: -09/1348 - -Father: -29 -Mother: -94 - -Spouses: - - - - -ID: -403 - -Name: -Thomas of Woodstock - -URL: -. - -Picture: -. - -Born: -07/01/1355 -Died: -08-09/09/1397 - -Father: -29 -Mother: -94 - -Spouses: -Eleanor de Bohun - - - -ID: -404 - -Name: -Thomas of Lancaster - -URL: -. - -Picture: -. - -Born: -1387 -Died: -22/03/1421 - -Father: -31 -Mother: -97 - -Spouses: -409 - - - -ID: -405 - -Name: -John of Lancaster - -URL: -. - -Picture: -. - -Born: -20/06/1389 -Died: -14/09/1435 - -Father: -31 -Mother: -97 - -Spouses: -Anne -234 - -Style: -Duke of Bedford -Territories: -Bedford - -From: -? -To: -? - - - -ID: -406 - -Name: -Humphrey of Lancaster - -URL: -. - -Picture: -. - -Born: -03/10/1390 -Died: -23/02/1447 - -Father: -31 -Mother: -97 - -Spouses: -Jacqueline -Eleanor Cobham - -Style: -Duke of Gloucester -Territories: -Gloucester - -From: -? -To: -? - - - -ID: -407 - -Name: -Blanche of England - -URL: -. - -Picture: -. - -Born: -Spring 1392 -Died: -22/05/1409 - -Father: -31 -Mother: -97 - -Spouses: -Louis III - - - -ID: -408 - -Name: -Philippa - -URL: -. - -Picture: -. - -Born: -04/06/1394 -Died: -05/01/1430 - -Father: -31 -Mother: -97 - -Spouses: -Eric - - - -ID: -409 - -Name: -Margaret Holland - -URL: -. - -Picture: -. - -Born: -1385 -Died: -31/12/1439 - -Father: -Thomas Holland -Mother: -Alice Fitzalan - -Spouses: -145 -404 - - - -ID: -410 - -Name: -Mary of York - -URL: -. - -Picture: -. - -Born: -11/08/1467 -Died: -23/05/1482 - -Father: -34 -Mother: -101 - -Spouses: - - - - -ID: -411 - -Name: -Cecily of York - -URL: -. - -Picture: -. - -Born: -20/03/1469 -Died: -24/08/1507 - -Father: -34 -Mother: -101 - -Spouses: -Ralph Scrope -JohnWelles -Thomas Kyme - - - -ID: -412 - -Name: -Margaret of York - -URL: -. - -Picture: -. - -Born: -10/04/1472 -Died: -11/12/1472 - -Father: -34 -Mother: -101 - -Spouses: - - - - -ID: -413 - -Name: -Richard of Shrewsbury - -URL: -. - -Picture: -. - -Born: -17/08/1473 -Died: -? - -Father: -34 -Mother: -101 - -Spouses: -Anne de Mowbray - -Style: -Duke of York -Territories: -York - -From: -05/1474 -To: -? - - - -ID: -414 - -Name: -Anne of York - -URL: -. - -Picture: -. - -Born: -2/11/1475 -Died: -23/11/1511 - -Father: -34 -Mother: -101 - -Spouses: -Thomas Howard - - - -ID: -415 - -Name: -George Plantagenet - -URL: -. - -Picture: -. - -Born: -03/1477 -Died: -03/1479 - -Father: -34 -Mother: -101 - -Style: -Duke of Bedford -Territories: -Bedford - -From: - - - -ID: -416 - -Name: -Catherine of York - -URL: -. - -Picture: -. - -Born: -14/08/1479 -Died: -15/11/1527 - -Father: -34 -Mother: -101 - -Spouses: -William Courtenay - - - -ID: -417 - -Name: -Bridget of York - -URL: -. - -Picture: -. - -Born: -10/11/1480 -Died: -1517 - -Father: -34 -Mother: -101 - -Spouses: - - - - -ID: -418 - -Name: -Edward of Middleham - -URL: -. - -Picture: -. - -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 - -Name: -Elizabeth Tudor - -URL: -. - -Picture: -. - -Born: -02/07/1492 -Died: -14/09/1495 - -Father: -37 -Mother: -103 - -Spouses: - - - - -ID: -420 - -Name: -Edmund Tudor - -URL: -. - -Picture: -. - -Born: -21/02/1499 -Died: -19/06/1500 - -Father: -37 -Mother: -103 - -Style: -Duke of Somerset -Territories: -Somerset - -From: -? -To: -? - - - -ID: -421 - -Name: -Katherine Tudor - -URL: -. - -Picture: -. - -Born: -02/02/1503 -Died: -10/02/1503 - -Father: -37 -Mother: -103 - -Spouses: - - - - -ID: -422 - -Name: -daughter - -URL: -. - -Picture: -. - -Born: -31/01/1510 -Died: -31/01/1510 - -Father: -38 -Mother: -104 - -Spouses: - - - - -ID: -423 - -Name: -Henry - -URL: -. - -Picture: -. - -Born: -01/01/1511 -Died: -22/02/1511 - -Father: -38 -Mother: -104 - -Spouses: - - - - -ID: -424 - -Name: -son - -URL: -. - -Picture: -. - -Born: -11/1513 -Died: -11/1513 - -Father: -38 -Mother: -104 - -Spouses: - - - - -ID: -425 - -Name: -Henry - -URL: -. - -Picture: -. - -Born: -12/1514 -Died: -12/1514 - -Father: -38 -Mother: -104 - -Spouses: - - - - -ID: -426 - -Name: -daughter - -URL: -. - -Picture: -. - -Born: -11/1518 -Died: -11/1518 - -Father: -38 -Mother: -104 - -Spouses: - - - - -ID: -427 - -Name: -Henry - -URL: -. - -Picture: -. - -Born: -08/1534 -Died: -08/1534 - -Father: -38 -Mother: -105 - -Spouses: - - - - -ID: -428 - -Name: -Henry Frederick - -URL: -. - -Picture: -. - -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 - -Name: -Margaret Stuart - -URL: -. - -Picture: -. - -Born: -24/12/1598 -Died: -03/1600 - -Father: -43 -Mother: -112 - -Spouses: - - - - -ID: -430 - -Name: -Robert - -URL: -. - -Picture: -. - -Born: -18/01/1602 -Died: -24/05/1602 - -Father: -43 -Mother: -112 - -Spouses: - - - - -ID: -431 - -Name: -Mary Stuart - -URL: -. - -Picture: -. - -Born: -08/04/1605 -Died: -06/09/1607 - -Father: -43 -Mother: -112 - -Spouses: - - - - -ID: -432 - -Name: -Sophia of England - -URL: -. - -Picture: -. - -Born: -22/06/1606 -Died: -23/06/1606 - -Father: -43 -Mother: -112 - -Spouses: - - - - -ID: -433 - -Name: -Charles James - -URL: -. - -Picture: -. - -Born: -13/05/1629 -Died: -13/05/1629 - -Father: -44 -Mother: -113 - -Spouses: - - - - -ID: -434 - -Name: -Elizabeth - -URL: -. - -Picture: -. - -Born: -28/12/1635 -Died: -08/09/1650 - -Father: -44 -Mother: -113 - -Spouses: - - - - -ID: -435 - -Name: -Anne of England - -URL: -. - -Picture: -. - -Born: -17/03/1637 -Died: -05/11/1640 - -Father: -44 -Mother: -113 - -Spouses: - - - - -ID: -436 - -Name: -Henry Stuart - -URL: -. - -Picture: -. - -Born: -08/07/1640 -Died: -13/09/1660 - -Father: -44 -Mother: -113 - -Style: -Duke of Gloucester -Territories: -Gloucester - -From: -? -To: -? - - - -ID: -437 - -Name: -Henrietta of England - -URL: -. - -Picture: -. - -Born: -16/06/16344 -Died: -30/06/1670 - -Father: -44 -Mother: -113 - -Spouses: -Philippe of France - - - -ID: -438 - -Name: -Catherine - -URL: -. - -Picture: -. - -Born: -29/06/1639 -Died: -29/06/1639 - -Father: -44 -Mother: -113 - -Spouses: - - - - -ID: -439 - -Name: -Charles Stuart - -URL: -. - -Picture: -. - -Born: -22/10/1660 -Died: -05/05/1661 - -Father: -46 -Mother: -115 - -Style: -Duke of Cambridge -Territories: -Cambridge - -From: -? -To: -? - - - -ID: -440 - -Name: -James Stuart - -URL: -. - -Picture: -. - -Born: -12/07/1663 -Died: -20/06/1667 - -Father: -46 -Mother: -115 - -Style: -Duke of Cambridge -Territories: -Cambridge - -From: -? -To: -? - - - -ID: -441 - -Name: -Charles Stuart - -URL: -. - -Picture: -. - -Born: -04/07/1666 -Died: -22/05/1667 - -Father: -46 -Mother: -115 - -Style: -Duke of Kendal -Territories: -Kendal - -From: -? -To: -? - - - -ID: -442 - -Name: -Edgar Stuart - -URL: -. - -Picture: -. - -Born: -14/09/1667 -Died: -08/06/1674 - -Father: -46 -Mother: -115 - -Style: -Duke of Cambridge -Territories: -Cambridge - -From: -? -To: -? - - - -ID: -443 - -Name: -Henrietta - -URL: -. - -Picture: -. - -Born: -14/01/1669 -Died: -15/01/1669 - -Father: -46 -Mother: -115 - -Spouses: - - - - -ID: -444 - -Name: -Catherine - -URL: -. - -Picture: -. - -Born: -09/02/1671 -Died: -05/12/1671 - -Father: -46 -Mother: -115 - -Spouses: - - - - -ID: -446 - -Name: -Catherine Laura - -URL: -. - -Picture: -. - -Born: -16/08/1682 -Died: -16/10/1682 - -Father: -46 -Mother: -116 - -Spouses: - - - - -ID: -447 - -Name: -Isabel Stuart - -URL: -. - -Picture: -. - -Born: -28/08/1676 -Died: -02/03/1681 - -Father: -46 -Mother: -116 - -Spouses: - - - - -ID: -448 - -Name: -Charles Stuart - -URL: -. - -Picture: -. - -Born: -07/11/1677 -Died: -12/12/1677 - -Father: -46 -Mother: -116 - -Style: -Duke of Cambridge -Territories: -Cambridge - -From: -? -To: -? - - - -ID: -449 - -Name: -Elizabeth - -URL: -. - -Picture: -. - -Born: -1678 -Died: -1678 - -Father: -46 -Mother: -116 - -Spouses: - - - - -ID: -450 - -Name: -Charlotte Maria - -URL: -. - -Picture: -. - -Born: -16/08/1682 -Died: -16/08/1682 - -Father: -46 -Mother: -116 - -Spouses: - - - - -ID: -451 - -Name: -James Francis Edward Stuart - -URL: -. - -Picture: -. - -Born: -10/06/1688 -Died: -01/01/1766 - -Father: -46 -Mother: -116 - -Spouses: -Maria Clementina Sobieska - - - -ID: -452 - -Name: -Louisa Maria Teresa Stuart - -URL: -. - -Picture: -. - -Born: -28/06/1692 -Died: -18/04/1712 - -Father: -46 -Mother: -116 - -Spouses: - - - - -ID: -453 - -Name: -Mary - -URL: -. - -Picture: -. - -Born: -02/06/1685 -Died: -08/02/1687 - -Father: -117 -Mother: -49 - -Spouses: - - - - -ID: -454 - -Name: -Anne Sophia - -URL: -. - -Picture: -. - -Born: -12/05/1686 -Died: -02/02/1687 - -Father: -117 -Mother: -49 - -Spouses: - - - - -ID: -455 - -Name: -William - -URL: -. - -Picture: -. - -Born: -24/07/1689 -Died: -30/07/1700 - -Father: -117 -Mother: -49 - -Style: -Duke of Gloucester -Territories: -Gloucester - -From: -? -To: -? - - - -ID: -456 - -Name: -Mary - -URL: -. - -Picture: -. - -Born: -14/10/1690 -Died: -14/10/1690 - -Father: -117 -Mother: -49 - -Spouses: - - - - -ID: -457 - -Name: -George - -URL: -. - -Picture: -. - -Born: -17/04/1692 -Died: -17/04/1692 - -Father: -117 -Mother: -49 - -Spouses: - - - - -ID: -458 - -Name: -Sophia Dorothea of Hanover - -URL: -. - -Picture: -. - -Born: -26/03/1687 -Died: -28/06/1757 - -Father: -50 -Mother: -118 - -Spouses: -Frederick of Prussia - - - -ID: -459 - -Name: -Anne - -URL: -. - -Picture: -. - -Born: -02/11/1709 -Died: -12/01/1759 - -Father: -51 -Mother: -119 - -Spouses: -William IV of Orange - - - -ID: -460 - -Name: -Amelia - -URL: -. - -Picture: -. - -Born: -30/05/1711 -Died: -31/10/1786 - -Father: -51 -Mother: -119 - -Spouses: - - - - -ID: -461 - -Name: -Caroline - -URL: -. - -Picture: -. - -Born: -10/06/1713 -Died: -28/11/1757 - -Father: -51 -Mother: -119 - -Spouses: - - - - -ID: -462 - -Name: -son - -URL: -. - -Picture: -. - -Born: -30/11/1716 -Died: -30/11/1716 - -Father: -51 -Mother: -119 - -Spouses: - - - - -ID: -463 - -Name: -George William - -URL: -. - -Picture: -. - -Born: -13/11/1717 -Died: -17/02/1718 - -Father: -51 -Mother: -119 - -Spouses: - - - - -ID: -464 - -Name: -William - -URL: -. - -Picture: -. - -Born: -26/04/1721 -Died: -31/10/1765 - -Father: -51 -Mother: -119 - -Style: -Duke of Cumberland -Territories: -Cumberland - -From: -? -To: -? - - - -ID: -465 - -Name: -Princess Mary - -URL: -. - -Picture: -. - -Born: -05/03/1723 -Died: -14/01/1772 - -Father: -51 -Mother: -119 - -Spouses: -Frederick II - - - -ID: -466 - -Name: -Louise - -URL: -. - -Picture: -. - -Born: -107/12/1724 -Died: -19/12/1751 - -Father: -51 -Mother: -119 - -Spouses: -Frederick V - - - -ID: -467 - -Name: -Charlotte - -URL: -. - -Picture: -. - -Born: -29/09/1766 -Died: -05/10/1828 - -Father: -52 -Mother: -120 - -Spouses: -Frederick II - - - -ID: -468 - -Name: -Augusta Sophia - -URL: -. - -Picture: -. - -Born: -08/11/1768 -Died: -22/09/1840 - -Father: -52 -Mother: -120 - -Spouses: - - - - -ID: -469 - -Name: -Elizabeth - -URL: -. - -Picture: -. - -Born: -22/05/1770 -Died: -10/01/1840 - -Father: -52 -Mother: -120 - -Spouses: -Frederick VI - - - -ID: -470 - -Name: -Ernest Augustus - -URL: -. - -Picture: -. - -Born: -05/06/1771 -Died: -18/11/1851 - -Father: -52 -Mother: -120 - -Spouses: -Frederica - -Style: -King of Hanover -Territories: -Hanover - -From: -20/06/1837 -To: -18/11/1851 - - - -ID: -471 - -Name: -Augustus Frederick - -URL: -. - -Picture: -. - -Born: -27/01/1773 -Died: -21/04/1843 - -Father: -52 -Mother: -120 - -Spouses: -Augusta Murray -Cecilia Letitia Buggin - -Style: -Duke of Sussex -Territories: -Sussex - -From: -? -To: -? - - - -ID: -472 - -Name: -Adolphus Frederick - -URL: -. - -Picture: -. - -Born: -24/02/1774 -Died: -08/07/1850 - -Father: -52 -Mother: -120 - -Spouses: -Augusta - -Style: -Duke of Cambridge -Territories: -Cambridge - -From: -? -To: -? - - - -ID: -473 - -Name: -Mary - -URL: -. - -Picture: -. - -Born: -25/04/1776 -Died: -30/04/1857 - -Father: -52 -Mother: -120 - -Spouses: -William Frederick - - - -ID: -474 - -Name: -Sophia - -URL: -. - -Picture: -. - -Born: -03/11/1777 -Died: -27/05/1848 - -Father: -52 -Mother: -120 - -Spouses: - - - - -ID: -475 - -Name: -Octavius - -URL: -. - -Picture: -. - -Born: -23/02/1779 -Died: -03/05/1783 - -Father: -52 -Mother: -120 - -Spouses: - - - - -ID: -476 - -Name: -Alfred - -URL: -. - -Picture: -. - -Born: -22/09/1780 -Died: -20/08/1782 - -Father: -52 -Mother: -120 - -Spouses: - - - - -ID: -477 - -Name: -Amelia - -URL: -. - -Picture: -. - -Born: -07/08/1783 -Died: -02/11/1810 - -Father: -52 -Mother: -120 - -Spouses: - - - - -ID: -478 - -Name: -Frederick - -URL: -. - -Picture: -. - -Born: -16/08/1763 -Died: -05/01/1827 - -Father: -52 -Mother: -120 - -Spouses: -Frederica Charlotte - -Style: -Duke of York and Albany -Territories: -Albany -York - -From: -? -To: -? - - - + + + +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 +. +. + + + diff --git a/familyTree/tree.db b/familyTree/tree.db index 969caa5..790053d 100644 Binary files a/familyTree/tree.db and b/familyTree/tree.db differ