Skip to content

Instantly share code, notes, and snippets.

@jrladd
Last active September 7, 2016 16:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jrladd/2f97fe222cfd7e66c655 to your computer and use it in GitHub Desktop.
Miscellany network

This bipartite force-directed network graph shows participants in university miscellanies from the 1650s and 1660s. Dark green nodes represent texts published before 1660, while light green nodes represent those published after. The rest of the nodes are for individual contributors (mouseover to see names, scroll or double-click to zoom, click a node to see ego networks). The dark blue nodes show political "shapeshifters" who published in miscellanies both before and after the Restoration. Notice that the graph separates not by political affiliation (Royalist and Republican) but by university affiliation (Oxford and Cambridge).

This visualization is based on a demo from Mike Bostock, on force-directed graphs. Additionally it handles search and a dropdown menu, which allows you to switch between different measures of centrality (degree, betweenness, and closeness) without reloading the graph. (All centrality calculations were made using the bipartite algorithms in Python's NetworkX.)

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.links line {
stroke: #999;
stroke-opacity: 0.6;
}
.nodes circle {
stroke: #fff;
stroke-width: 1.5px;
}
#tools div {
float: right;
display: inline;
}
form { display: inline; }
</style>
<body>
<div id='tools'>
</div>
<svg width="960" height="600"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
// Call zoom for svg container.
svg.call(d3.zoom().on('zoom', zoomed));
var color = d3.scaleOrdinal(d3.schemePaired);
var simulation = d3.forceSimulation()
.force("link", d3.forceLink())//Or to use names rather than indices: .id(function(d) { return d.id; }))
.force("charge", d3.forceManyBody().strength([-120]).distanceMax([500]))
.force("center", d3.forceCenter(width / 2, height / 2));
var container = svg.append('g');
// Create form for search (see function below).
var search = d3.select("div#tools").append('form').attr('onsubmit', 'return false;');
var box = search.append('input')
.attr('type', 'text')
.attr('id', 'searchTerm')
.attr('placeholder', 'Type to search...');
var button = search.append('input')
.attr('type', 'button')
.attr('value', 'Search')
.on('click', function () { searchNodes(); });
// Toggle for ego networks on click (below).
var toggle = 0;
d3.json("miscellany_network.json", function(error, graph) {
if (error) throw error;
// Make object of all neighboring nodes.
var linkedByIndex = {};
graph.links.forEach(function(d) {
linkedByIndex[d.source + ',' + d.target] = 1;
linkedByIndex[d.target + ',' + d.source] = 1;
});
// A function to test if two nodes are neighboring.
function neighboring(a, b) {
return linkedByIndex[a.index + ',' + b.index];
}
// Linear scale for degree centrality.
var degreeSize = d3.scaleLinear()
.domain([d3.min(graph.nodes, function(d) {return d.degreecentrality; }),d3.max(graph.nodes, function(d) {return d.degreecentrality; })])
.range([8,25]);
// Collision detection based on degree centrality.
simulation.force("collide", d3.forceCollide().radius( function (d) { return degreeSize(d.degreecentrality); }));
var link = container.append("g")
.attr("class", "links")
.selectAll("line")
.data(graph.links, function(d) { return d.source + ", " + d.target;})
.enter().append("line")
.attr('class', 'link');
var node = container.append("g")
.attr("class", "nodes")
.selectAll("circle")
.data(graph.nodes)
.enter().append("circle")
// Calculate degree centrality within JavaScript.
//.attr("r", function(d, i) { count = 0; graph.links.forEach(function(l) { if (l.source == i || l.target == i) { count += 1;}; }); return size(count);})
// Use degree centrality from NetworkX in json.
.attr('r', function(d, i) { return degreeSize(d.degreecentrality); })
// Color by bipartite indicator.
//.attr("fill", function(d) { return color(d.bipartite); })
.style("fill", function(d) { if (d.date >= 1660) {return color(0);} else if (d.date < 1660) {return color(1);} else if (d.shapeshifter == 1) {return color(2);} else {return color(3);} })
.attr('class', 'node')
// On click, toggle ego networks for the selected node.
.on('click', function(d, i) {
if (toggle == 0) {
// Ternary operator restyles links and nodes if they are adjacent.
d3.selectAll('.link').style('stroke-opacity', function (l) {
return l.target == d || l.source == d ? 1 : 0.1;
});
d3.selectAll('.node').style('opacity', function (n) {
return neighboring(d, n) ? 1 : 0.1;
});
d3.select(this).style('opacity', 1);
toggle = 1;
}
else {
// Restore nodes and links to normal opacity.
d3.selectAll('.link').style('stroke-opacity', '0.6');
d3.selectAll('.node').style('opacity', '1');
toggle = 0;
}
})
.call(d3.drag()
.on("start", dragstarted)
.on("drag", dragged)
.on("end", dragended));
node.append("title")
.text(function(d) { return d.id; });
simulation
.nodes(graph.nodes)
.on("tick", ticked);
simulation.force("link")
.links(graph.links);
function ticked() {
link
.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
}
// A dropdown menu with three different centrality measures, calculated in NetworkX.
// Accounts for node collision.
var dropdown = d3.select('div#tools').append('div')
.append('select')
.on('change', function() {
var centrality = this.value;
var centralitySize = d3.scaleLinear()
.domain([d3.min(graph.nodes, function(d) { return d[centrality]; }), d3.max(graph.nodes, function(d) { return d[centrality]; })])
.range([8,25]);
node.attr('r', function(d) { return centralitySize(d[centrality]); } );
// Recalculate collision detection based on selected centrality.
simulation.force("collide", d3.forceCollide().radius( function (d) { return centralitySize(d[centrality]); }));
simulation.alphaTarget(0.1).restart();
});
dropdown.selectAll('option')
.data(['Degree Centrality', 'Betweenness Centrality', 'Closeness Centrality'])
.enter().append('option')
.attr('value', function(d) { return d.split(' ')[0].toLowerCase()+'centrality'; })
.text(function(d) { return d; });
});
function dragstarted(d) {
if (!d3.event.active) simulation.alphaTarget(0.3).restart();
d.fx = d.x;
d.fy = d.y;
}
function dragged(d) {
d.fx = d3.event.x;
d.fy = d3.event.y;
}
function dragended(d) {
if (!d3.event.active) simulation.alphaTarget(0);
d.fx = null;
d.fy = null;
}
// Zooming function translates the size of the svg container.
function zoomed() {
container.attr("transform", "translate(" + d3.event.transform.x + ", " + d3.event.transform.y + ") scale(" + d3.event.transform.k + ")");
}
// Search for nodes by making all unmatched nodes temporarily transparent.
function searchNodes() {
var term = document.getElementById('searchTerm').value;
var selected = container.selectAll('.node').filter(function (d, i) {
return d.id.toLowerCase().search(term.toLowerCase()) == -1;
});
selected.style('opacity', '0');
var link = container.selectAll('.link');
link.style('stroke-opacity', '0');
d3.selectAll('.node').transition()
.duration(5000)
.style('opacity', '1');
d3.selectAll('.link').transition().duration(5000).style('stroke-opacity', '0.6');
}
</script>
</body>
{
"directed": false,
"graph": {},
"links": [
{
"source": 0,
"target": 151
},
{
"source": 1,
"target": 76
},
{
"source": 2,
"target": 60
},
{
"source": 3,
"target": 146
},
{
"source": 3,
"target": 76
},
{
"source": 4,
"target": 60
},
{
"source": 5,
"target": 614
},
{
"source": 6,
"target": 161
},
{
"source": 6,
"target": 364
},
{
"source": 7,
"target": 672
},
{
"source": 8,
"target": 614
},
{
"source": 9,
"target": 60
},
{
"source": 10,
"target": 137
},
{
"source": 11,
"target": 44
},
{
"source": 12,
"target": 672
},
{
"source": 13,
"target": 295
},
{
"source": 14,
"target": 633
},
{
"source": 15,
"target": 614
},
{
"source": 16,
"target": 146
},
{
"source": 17,
"target": 28
},
{
"source": 17,
"target": 44
},
{
"source": 18,
"target": 672
},
{
"source": 18,
"target": 28
},
{
"source": 18,
"target": 151
},
{
"source": 19,
"target": 633
},
{
"source": 20,
"target": 28
},
{
"source": 20,
"target": 60
},
{
"source": 20,
"target": 151
},
{
"source": 21,
"target": 633
},
{
"source": 22,
"target": 60
},
{
"source": 23,
"target": 672
},
{
"source": 24,
"target": 146
},
{
"source": 25,
"target": 146
},
{
"source": 26,
"target": 44
},
{
"source": 27,
"target": 295
},
{
"source": 28,
"target": 673
},
{
"source": 28,
"target": 659
},
{
"source": 28,
"target": 181
},
{
"source": 28,
"target": 329
},
{
"source": 28,
"target": 51
},
{
"source": 28,
"target": 465
},
{
"source": 28,
"target": 205
},
{
"source": 28,
"target": 488
},
{
"source": 28,
"target": 679
},
{
"source": 28,
"target": 231
},
{
"source": 28,
"target": 190
},
{
"source": 28,
"target": 191
},
{
"source": 28,
"target": 96
},
{
"source": 28,
"target": 56
},
{
"source": 28,
"target": 234
},
{
"source": 28,
"target": 98
},
{
"source": 28,
"target": 194
},
{
"source": 28,
"target": 412
},
{
"source": 28,
"target": 144
},
{
"source": 28,
"target": 689
},
{
"source": 28,
"target": 626
},
{
"source": 28,
"target": 239
},
{
"source": 28,
"target": 556
},
{
"source": 28,
"target": 641
},
{
"source": 28,
"target": 276
},
{
"source": 28,
"target": 602
},
{
"source": 28,
"target": 693
},
{
"source": 28,
"target": 149
},
{
"source": 28,
"target": 652
},
{
"source": 28,
"target": 514
},
{
"source": 28,
"target": 68
},
{
"source": 28,
"target": 248
},
{
"source": 28,
"target": 609
},
{
"source": 28,
"target": 118
},
{
"source": 28,
"target": 677
},
{
"source": 28,
"target": 515
},
{
"source": 28,
"target": 563
},
{
"source": 28,
"target": 31
},
{
"source": 28,
"target": 73
},
{
"source": 28,
"target": 30
},
{
"source": 28,
"target": 213
},
{
"source": 28,
"target": 165
},
{
"source": 28,
"target": 155
},
{
"source": 28,
"target": 242
},
{
"source": 28,
"target": 662
},
{
"source": 28,
"target": 380
},
{
"source": 28,
"target": 431
},
{
"source": 28,
"target": 254
},
{
"source": 28,
"target": 38
},
{
"source": 28,
"target": 90
},
{
"source": 28,
"target": 471
},
{
"source": 28,
"target": 584
},
{
"source": 28,
"target": 714
},
{
"source": 28,
"target": 619
},
{
"source": 28,
"target": 526
},
{
"source": 28,
"target": 171
},
{
"source": 28,
"target": 331
},
{
"source": 28,
"target": 657
},
{
"source": 28,
"target": 685
},
{
"source": 28,
"target": 258
},
{
"source": 28,
"target": 498
},
{
"source": 28,
"target": 573
},
{
"source": 28,
"target": 426
},
{
"source": 28,
"target": 336
},
{
"source": 28,
"target": 220
},
{
"source": 28,
"target": 87
},
{
"source": 29,
"target": 44
},
{
"source": 30,
"target": 672
},
{
"source": 30,
"target": 60
},
{
"source": 30,
"target": 151
},
{
"source": 31,
"target": 672
},
{
"source": 32,
"target": 614
},
{
"source": 33,
"target": 554
},
{
"source": 34,
"target": 614
},
{
"source": 35,
"target": 633
},
{
"source": 36,
"target": 151
},
{
"source": 37,
"target": 151
},
{
"source": 39,
"target": 317
},
{
"source": 40,
"target": 317
},
{
"source": 41,
"target": 60
},
{
"source": 42,
"target": 633
},
{
"source": 43,
"target": 295
},
{
"source": 44,
"target": 302
},
{
"source": 44,
"target": 455
},
{
"source": 44,
"target": 674
},
{
"source": 44,
"target": 561
},
{
"source": 44,
"target": 401
},
{
"source": 44,
"target": 133
},
{
"source": 44,
"target": 679
},
{
"source": 44,
"target": 680
},
{
"source": 44,
"target": 492
},
{
"source": 44,
"target": 56
},
{
"source": 44,
"target": 234
},
{
"source": 44,
"target": 408
},
{
"source": 44,
"target": 59
},
{
"source": 44,
"target": 592
},
{
"source": 44,
"target": 689
},
{
"source": 44,
"target": 712
},
{
"source": 44,
"target": 276
},
{
"source": 44,
"target": 694
},
{
"source": 44,
"target": 469
},
{
"source": 44,
"target": 421
},
{
"source": 44,
"target": 109
},
{
"source": 44,
"target": 150
},
{
"source": 44,
"target": 195
},
{
"source": 44,
"target": 727
},
{
"source": 44,
"target": 214
},
{
"source": 44,
"target": 564
},
{
"source": 44,
"target": 623
},
{
"source": 44,
"target": 155
},
{
"source": 44,
"target": 242
},
{
"source": 44,
"target": 215
},
{
"source": 44,
"target": 520
},
{
"source": 44,
"target": 442
},
{
"source": 44,
"target": 164
},
{
"source": 44,
"target": 210
},
{
"source": 44,
"target": 116
},
{
"source": 44,
"target": 258
},
{
"source": 44,
"target": 171
},
{
"source": 44,
"target": 572
},
{
"source": 44,
"target": 620
},
{
"source": 44,
"target": 337
},
{
"source": 44,
"target": 222
},
{
"source": 44,
"target": 587
},
{
"source": 44,
"target": 511
},
{
"source": 44,
"target": 723
},
{
"source": 44,
"target": 342
},
{
"source": 44,
"target": 87
},
{
"source": 44,
"target": 396
},
{
"source": 45,
"target": 633
},
{
"source": 46,
"target": 633
},
{
"source": 47,
"target": 60
},
{
"source": 48,
"target": 60
},
{
"source": 49,
"target": 137
},
{
"source": 50,
"target": 633
},
{
"source": 51,
"target": 60
},
{
"source": 51,
"target": 151
},
{
"source": 52,
"target": 633
},
{
"source": 53,
"target": 60
},
{
"source": 54,
"target": 146
},
{
"source": 55,
"target": 614
},
{
"source": 56,
"target": 672
},
{
"source": 56,
"target": 60
},
{
"source": 56,
"target": 151
},
{
"source": 57,
"target": 60
},
{
"source": 57,
"target": 151
},
{
"source": 58,
"target": 60
},
{
"source": 59,
"target": 672
},
{
"source": 59,
"target": 137
},
{
"source": 60,
"target": 179
},
{
"source": 60,
"target": 180
},
{
"source": 60,
"target": 538
},
{
"source": 60,
"target": 542
},
{
"source": 60,
"target": 355
},
{
"source": 60,
"target": 551
},
{
"source": 60,
"target": 552
},
{
"source": 60,
"target": 202
},
{
"source": 60,
"target": 97
},
{
"source": 60,
"target": 243
},
{
"source": 60,
"target": 372
},
{
"source": 60,
"target": 165
},
{
"source": 60,
"target": 565
},
{
"source": 60,
"target": 230
},
{
"source": 60,
"target": 221
},
{
"source": 60,
"target": 223
},
{
"source": 60,
"target": 578
},
{
"source": 60,
"target": 255
},
{
"source": 60,
"target": 581
},
{
"source": 60,
"target": 583
},
{
"source": 60,
"target": 645
},
{
"source": 60,
"target": 591
},
{
"source": 60,
"target": 234
},
{
"source": 60,
"target": 236
},
{
"source": 60,
"target": 595
},
{
"source": 60,
"target": 368
},
{
"source": 60,
"target": 604
},
{
"source": 60,
"target": 670
},
{
"source": 60,
"target": 328
},
{
"source": 60,
"target": 247
},
{
"source": 60,
"target": 70
},
{
"source": 60,
"target": 610
},
{
"source": 60,
"target": 250
},
{
"source": 60,
"target": 73
},
{
"source": 60,
"target": 75
},
{
"source": 60,
"target": 433
},
{
"source": 60,
"target": 434
},
{
"source": 60,
"target": 619
},
{
"source": 60,
"target": 81
},
{
"source": 60,
"target": 87
},
{
"source": 60,
"target": 264
},
{
"source": 60,
"target": 89
},
{
"source": 60,
"target": 267
},
{
"source": 60,
"target": 269
},
{
"source": 60,
"target": 100
},
{
"source": 60,
"target": 272
},
{
"source": 60,
"target": 456
},
{
"source": 60,
"target": 652
},
{
"source": 60,
"target": 461
},
{
"source": 60,
"target": 282
},
{
"source": 60,
"target": 463
},
{
"source": 60,
"target": 284
},
{
"source": 60,
"target": 307
},
{
"source": 60,
"target": 114
},
{
"source": 60,
"target": 290
},
{
"source": 60,
"target": 651
},
{
"source": 60,
"target": 297
},
{
"source": 60,
"target": 476
},
{
"source": 60,
"target": 300
},
{
"source": 60,
"target": 108
},
{
"source": 60,
"target": 683
},
{
"source": 60,
"target": 676
},
{
"source": 60,
"target": 488
},
{
"source": 60,
"target": 681
},
{
"source": 60,
"target": 138
},
{
"source": 60,
"target": 494
},
{
"source": 60,
"target": 340
},
{
"source": 60,
"target": 314
},
{
"source": 60,
"target": 143
},
{
"source": 60,
"target": 689
},
{
"source": 60,
"target": 316
},
{
"source": 60,
"target": 189
},
{
"source": 60,
"target": 503
},
{
"source": 60,
"target": 695
},
{
"source": 60,
"target": 321
},
{
"source": 60,
"target": 696
},
{
"source": 60,
"target": 322
},
{
"source": 60,
"target": 582
},
{
"source": 60,
"target": 512
},
{
"source": 60,
"target": 519
},
{
"source": 60,
"target": 496
},
{
"source": 60,
"target": 528
},
{
"source": 60,
"target": 686
},
{
"source": 60,
"target": 537
},
{
"source": 61,
"target": 76
},
{
"source": 62,
"target": 317
},
{
"source": 63,
"target": 295
},
{
"source": 63,
"target": 146
},
{
"source": 64,
"target": 295
},
{
"source": 65,
"target": 317
},
{
"source": 66,
"target": 146
},
{
"source": 66,
"target": 317
},
{
"source": 67,
"target": 161
},
{
"source": 68,
"target": 672
},
{
"source": 68,
"target": 151
},
{
"source": 69,
"target": 295
},
{
"source": 71,
"target": 161
},
{
"source": 72,
"target": 161
},
{
"source": 73,
"target": 151
},
{
"source": 74,
"target": 614
},
{
"source": 76,
"target": 536
},
{
"source": 76,
"target": 88
},
{
"source": 76,
"target": 446
},
{
"source": 76,
"target": 546
},
{
"source": 76,
"target": 544
},
{
"source": 76,
"target": 132
},
{
"source": 76,
"target": 414
},
{
"source": 76,
"target": 631
},
{
"source": 76,
"target": 310
},
{
"source": 76,
"target": 311
},
{
"source": 76,
"target": 634
},
{
"source": 76,
"target": 392
},
{
"source": 76,
"target": 547
},
{
"source": 76,
"target": 635
},
{
"source": 76,
"target": 271
},
{
"source": 76,
"target": 533
},
{
"source": 76,
"target": 140
},
{
"source": 76,
"target": 362
},
{
"source": 76,
"target": 579
},
{
"source": 76,
"target": 237
},
{
"source": 76,
"target": 274
},
{
"source": 76,
"target": 104
},
{
"source": 76,
"target": 240
},
{
"source": 76,
"target": 148
},
{
"source": 76,
"target": 367
},
{
"source": 76,
"target": 245
},
{
"source": 76,
"target": 504
},
{
"source": 76,
"target": 560
},
{
"source": 76,
"target": 415
},
{
"source": 76,
"target": 369
},
{
"source": 76,
"target": 235
},
{
"source": 76,
"target": 293
},
{
"source": 76,
"target": 462
},
{
"source": 76,
"target": 424
},
{
"source": 76,
"target": 142
},
{
"source": 76,
"target": 154
},
{
"source": 76,
"target": 106
},
{
"source": 76,
"target": 332
},
{
"source": 76,
"target": 518
},
{
"source": 76,
"target": 566
},
{
"source": 76,
"target": 430
},
{
"source": 76,
"target": 354
},
{
"source": 76,
"target": 710
},
{
"source": 76,
"target": 428
},
{
"source": 76,
"target": 200
},
{
"source": 76,
"target": 163
},
{
"source": 76,
"target": 77
},
{
"source": 76,
"target": 448
},
{
"source": 76,
"target": 256
},
{
"source": 76,
"target": 335
},
{
"source": 76,
"target": 170
},
{
"source": 76,
"target": 219
},
{
"source": 76,
"target": 339
},
{
"source": 76,
"target": 217
},
{
"source": 76,
"target": 174
},
{
"source": 76,
"target": 102
},
{
"source": 76,
"target": 576
},
{
"source": 76,
"target": 299
},
{
"source": 76,
"target": 725
},
{
"source": 76,
"target": 225
},
{
"source": 76,
"target": 263
},
{
"source": 76,
"target": 534
},
{
"source": 76,
"target": 344
},
{
"source": 77,
"target": 146
},
{
"source": 78,
"target": 151
},
{
"source": 79,
"target": 295
},
{
"source": 79,
"target": 146
},
{
"source": 80,
"target": 295
},
{
"source": 82,
"target": 633
},
{
"source": 83,
"target": 295
},
{
"source": 84,
"target": 137
},
{
"source": 85,
"target": 614
},
{
"source": 86,
"target": 614
},
{
"source": 87,
"target": 151
},
{
"source": 88,
"target": 633
},
{
"source": 91,
"target": 295
},
{
"source": 92,
"target": 633
},
{
"source": 92,
"target": 317
},
{
"source": 93,
"target": 633
},
{
"source": 94,
"target": 317
},
{
"source": 95,
"target": 295
},
{
"source": 96,
"target": 151
},
{
"source": 99,
"target": 633
},
{
"source": 99,
"target": 317
},
{
"source": 101,
"target": 295
},
{
"source": 102,
"target": 146
},
{
"source": 102,
"target": 317
},
{
"source": 103,
"target": 146
},
{
"source": 104,
"target": 633
},
{
"source": 104,
"target": 295
},
{
"source": 104,
"target": 317
},
{
"source": 104,
"target": 146
},
{
"source": 105,
"target": 554
},
{
"source": 107,
"target": 633
},
{
"source": 109,
"target": 137
},
{
"source": 110,
"target": 295
},
{
"source": 111,
"target": 146
},
{
"source": 112,
"target": 614
},
{
"source": 113,
"target": 633
},
{
"source": 113,
"target": 317
},
{
"source": 115,
"target": 295
},
{
"source": 115,
"target": 146
},
{
"source": 116,
"target": 137
},
{
"source": 117,
"target": 672
},
{
"source": 118,
"target": 672
},
{
"source": 119,
"target": 146
},
{
"source": 120,
"target": 633
},
{
"source": 121,
"target": 151
},
{
"source": 122,
"target": 672
},
{
"source": 123,
"target": 554
},
{
"source": 124,
"target": 614
},
{
"source": 125,
"target": 295
},
{
"source": 126,
"target": 295
},
{
"source": 126,
"target": 146
},
{
"source": 127,
"target": 295
},
{
"source": 127,
"target": 146
},
{
"source": 128,
"target": 137
},
{
"source": 129,
"target": 633
},
{
"source": 130,
"target": 614
},
{
"source": 131,
"target": 161
},
{
"source": 134,
"target": 146
},
{
"source": 135,
"target": 672
},
{
"source": 136,
"target": 633
},
{
"source": 137,
"target": 478
},
{
"source": 137,
"target": 238
},
{
"source": 137,
"target": 541
},
{
"source": 137,
"target": 679
},
{
"source": 137,
"target": 188
},
{
"source": 137,
"target": 620
},
{
"source": 137,
"target": 492
},
{
"source": 137,
"target": 587
},
{
"source": 137,
"target": 342
},
{
"source": 137,
"target": 363
},
{
"source": 137,
"target": 689
},
{
"source": 137,
"target": 626
},
{
"source": 137,
"target": 598
},
{
"source": 137,
"target": 241
},
{
"source": 137,
"target": 570
},
{
"source": 137,
"target": 563
},
{
"source": 137,
"target": 214
},
{
"source": 137,
"target": 252
},
{
"source": 137,
"target": 378
},
{
"source": 137,
"target": 394
},
{
"source": 137,
"target": 520
},
{
"source": 137,
"target": 386
},
{
"source": 137,
"target": 216
},
{
"source": 137,
"target": 389
},
{
"source": 137,
"target": 171
},
{
"source": 137,
"target": 390
},
{
"source": 137,
"target": 720
},
{
"source": 137,
"target": 727
},
{
"source": 139,
"target": 151
},
{
"source": 140,
"target": 295
},
{
"source": 140,
"target": 633
},
{
"source": 141,
"target": 151
},
{
"source": 142,
"target": 146
},
{
"source": 142,
"target": 317
},
{
"source": 145,
"target": 614
},
{
"source": 146,
"target": 539
},
{
"source": 146,
"target": 540
},
{
"source": 146,
"target": 543
},
{
"source": 146,
"target": 544
},
{
"source": 146,
"target": 184
},
{
"source": 146,
"target": 193
},
{
"source": 146,
"target": 357
},
{
"source": 146,
"target": 415
},
{
"source": 146,
"target": 550
},
{
"source": 146,
"target": 365
},
{
"source": 146,
"target": 203
},
{
"source": 146,
"target": 458
},
{
"source": 146,
"target": 369
},
{
"source": 146,
"target": 293
},
{
"source": 146,
"target": 371
},
{
"source": 146,
"target": 562
},
{
"source": 146,
"target": 379
},
{
"source": 146,
"target": 200
},
{
"source": 146,
"target": 568
},
{
"source": 146,
"target": 388
},
{
"source": 146,
"target": 710
},
{
"source": 146,
"target": 575
},
{
"source": 146,
"target": 577
},
{
"source": 146,
"target": 327
},
{
"source": 146,
"target": 675
},
{
"source": 146,
"target": 406
},
{
"source": 146,
"target": 407
},
{
"source": 146,
"target": 356
},
{
"source": 146,
"target": 413
},
{
"source": 146,
"target": 547
},
{
"source": 146,
"target": 597
},
{
"source": 146,
"target": 359
},
{
"source": 146,
"target": 240
},
{
"source": 146,
"target": 417
},
{
"source": 146,
"target": 603
},
{
"source": 146,
"target": 606
},
{
"source": 146,
"target": 420
},
{
"source": 146,
"target": 611
},
{
"source": 146,
"target": 422
},
{
"source": 146,
"target": 428
},
{
"source": 146,
"target": 447
},
{
"source": 146,
"target": 621
},
{
"source": 146,
"target": 166
},
{
"source": 146,
"target": 201
},
{
"source": 146,
"target": 624
},
{
"source": 146,
"target": 627
},
{
"source": 146,
"target": 266
},
{
"source": 146,
"target": 448
},
{
"source": 146,
"target": 635
},
{
"source": 146,
"target": 636
},
{
"source": 146,
"target": 334
},
{
"source": 146,
"target": 460
},
{
"source": 146,
"target": 462
},
{
"source": 146,
"target": 464
},
{
"source": 146,
"target": 466
},
{
"source": 146,
"target": 649
},
{
"source": 146,
"target": 343
},
{
"source": 146,
"target": 291
},
{
"source": 146,
"target": 654
},
{
"source": 146,
"target": 391
},
{
"source": 146,
"target": 298
},
{
"source": 146,
"target": 474
},
{
"source": 146,
"target": 475
},
{
"source": 146,
"target": 666
},
{
"source": 146,
"target": 667
},
{
"source": 146,
"target": 301
},
{
"source": 146,
"target": 479
},
{
"source": 146,
"target": 711
},
{
"source": 146,
"target": 483
},
{
"source": 146,
"target": 308
},
{
"source": 146,
"target": 341
},
{
"source": 146,
"target": 318
},
{
"source": 146,
"target": 501
},
{
"source": 146,
"target": 147
},
{
"source": 146,
"target": 148
},
{
"source": 146,
"target": 504
},
{
"source": 146,
"target": 506
},
{
"source": 146,
"target": 509
},
{
"source": 146,
"target": 326
},
{
"source": 146,
"target": 441
},
{
"source": 146,
"target": 153
},
{
"source": 146,
"target": 516
},
{
"source": 146,
"target": 517
},
{
"source": 146,
"target": 156
},
{
"source": 146,
"target": 708
},
{
"source": 146,
"target": 709
},
{
"source": 146,
"target": 159
},
{
"source": 146,
"target": 160
},
{
"source": 146,
"target": 162
},
{
"source": 146,
"target": 163
},
{
"source": 146,
"target": 263
},
{
"source": 146,
"target": 717
},
{
"source": 146,
"target": 259
},
{
"source": 146,
"target": 529
},
{
"source": 146,
"target": 175
},
{
"source": 146,
"target": 725
},
{
"source": 146,
"target": 532
},
{
"source": 146,
"target": 726
},
{
"source": 146,
"target": 534
},
{
"source": 148,
"target": 317
},
{
"source": 149,
"target": 151
},
{
"source": 150,
"target": 672
},
{
"source": 150,
"target": 151
},
{
"source": 151,
"target": 345
},
{
"source": 151,
"target": 304
},
{
"source": 151,
"target": 585
},
{
"source": 151,
"target": 465
},
{
"source": 151,
"target": 588
},
{
"source": 151,
"target": 309
},
{
"source": 151,
"target": 403
},
{
"source": 151,
"target": 590
},
{
"source": 151,
"target": 387
},
{
"source": 151,
"target": 234
},
{
"source": 151,
"target": 194
},
{
"source": 151,
"target": 548
},
{
"source": 151,
"target": 360
},
{
"source": 151,
"target": 689
},
{
"source": 151,
"target": 626
},
{
"source": 151,
"target": 239
},
{
"source": 151,
"target": 502
},
{
"source": 151,
"target": 600
},
{
"source": 151,
"target": 669
},
{
"source": 151,
"target": 206
},
{
"source": 151,
"target": 418
},
{
"source": 151,
"target": 558
},
{
"source": 151,
"target": 459
},
{
"source": 151,
"target": 350
},
{
"source": 151,
"target": 248
},
{
"source": 151,
"target": 609
},
{
"source": 151,
"target": 515
},
{
"source": 151,
"target": 411
},
{
"source": 151,
"target": 701
},
{
"source": 151,
"target": 513
},
{
"source": 151,
"target": 713
},
{
"source": 151,
"target": 165
},
{
"source": 151,
"target": 705
},
{
"source": 151,
"target": 682
},
{
"source": 151,
"target": 155
},
{
"source": 151,
"target": 314
},
{
"source": 151,
"target": 497
},
{
"source": 151,
"target": 714
},
{
"source": 151,
"target": 167
},
{
"source": 151,
"target": 453
},
{
"source": 151,
"target": 658
},
{
"source": 151,
"target": 171
},
{
"source": 151,
"target": 296
},
{
"source": 151,
"target": 659
},
{
"source": 151,
"target": 258
},
{
"source": 151,
"target": 498
},
{
"source": 151,
"target": 722
},
{
"source": 151,
"target": 440
},
{
"source": 151,
"target": 176
},
{
"source": 151,
"target": 724
},
{
"source": 151,
"target": 580
},
{
"source": 151,
"target": 396
},
{
"source": 151,
"target": 437
},
{
"source": 152,
"target": 295
},
{
"source": 155,
"target": 672
},
{
"source": 157,
"target": 633
},
{
"source": 158,
"target": 295
},
{
"source": 159,
"target": 633
},
{
"source": 159,
"target": 317
},
{
"source": 160,
"target": 614
},
{
"source": 161,
"target": 472
},
{
"source": 161,
"target": 229
},
{
"source": 161,
"target": 629
},
{
"source": 161,
"target": 182
},
{
"source": 161,
"target": 351
},
{
"source": 161,
"target": 450
},
{
"source": 161,
"target": 487
},
{
"source": 161,
"target": 312
},
{
"source": 161,
"target": 452
},
{
"source": 161,
"target": 251
},
{
"source": 161,
"target": 273
},
{
"source": 161,
"target": 199
},
{
"source": 161,
"target": 638
},
{
"source": 161,
"target": 553
},
{
"source": 161,
"target": 491
},
{
"source": 161,
"target": 557
},
{
"source": 161,
"target": 457
},
{
"source": 161,
"target": 324
},
{
"source": 161,
"target": 704
},
{
"source": 161,
"target": 381
},
{
"source": 161,
"target": 168
},
{
"source": 161,
"target": 436
},
{
"source": 161,
"target": 338
},
{
"source": 161,
"target": 260
},
{
"source": 161,
"target": 531
},
{
"source": 161,
"target": 262
},
{
"source": 161,
"target": 443
},
{
"source": 162,
"target": 295
},
{
"source": 163,
"target": 317
},
{
"source": 163,
"target": 295
},
{
"source": 163,
"target": 633
},
{
"source": 163,
"target": 614
},
{
"source": 165,
"target": 672
},
{
"source": 166,
"target": 295
},
{
"source": 169,
"target": 633
},
{
"source": 171,
"target": 672
},
{
"source": 172,
"target": 633
},
{
"source": 173,
"target": 633
},
{
"source": 174,
"target": 317
},
{
"source": 174,
"target": 614
},
{
"source": 175,
"target": 295
},
{
"source": 177,
"target": 633
},
{
"source": 177,
"target": 317
},
{
"source": 178,
"target": 672
},
{
"source": 183,
"target": 295
},
{
"source": 185,
"target": 295
},
{
"source": 186,
"target": 295
},
{
"source": 187,
"target": 633
},
{
"source": 190,
"target": 672
},
{
"source": 192,
"target": 295
},
{
"source": 193,
"target": 295
},
{
"source": 193,
"target": 633
},
{
"source": 196,
"target": 633
},
{
"source": 197,
"target": 614
},
{
"source": 198,
"target": 633
},
{
"source": 199,
"target": 678
},
{
"source": 200,
"target": 317
},
{
"source": 203,
"target": 295
},
{
"source": 204,
"target": 633
},
{
"source": 204,
"target": 614
},
{
"source": 207,
"target": 554
},
{
"source": 208,
"target": 672
},
{
"source": 209,
"target": 633
},
{
"source": 209,
"target": 614
},
{
"source": 210,
"target": 672
},
{
"source": 211,
"target": 672
},
{
"source": 212,
"target": 295
},
{
"source": 213,
"target": 672
},
{
"source": 214,
"target": 672
},
{
"source": 217,
"target": 633
},
{
"source": 217,
"target": 317
},
{
"source": 218,
"target": 633
},
{
"source": 222,
"target": 672
},
{
"source": 224,
"target": 633
},
{
"source": 225,
"target": 633
},
{
"source": 225,
"target": 317
},
{
"source": 225,
"target": 614
},
{
"source": 226,
"target": 295
},
{
"source": 227,
"target": 317
},
{
"source": 228,
"target": 295
},
{
"source": 232,
"target": 295
},
{
"source": 233,
"target": 633
},
{
"source": 234,
"target": 672
},
{
"source": 235,
"target": 317
},
{
"source": 237,
"target": 317
},
{
"source": 244,
"target": 295
},
{
"source": 246,
"target": 672
},
{
"source": 249,
"target": 295
},
{
"source": 253,
"target": 614
},
{
"source": 257,
"target": 614
},
{
"source": 259,
"target": 295
},
{
"source": 259,
"target": 633
},
{
"source": 261,
"target": 672
},
{
"source": 263,
"target": 633
},
{
"source": 263,
"target": 295
},
{
"source": 265,
"target": 295
},
{
"source": 268,
"target": 554
},
{
"source": 270,
"target": 672
},
{
"source": 271,
"target": 317
},
{
"source": 275,
"target": 672
},
{
"source": 277,
"target": 614
},
{
"source": 278,
"target": 614
},
{
"source": 279,
"target": 295
},
{
"source": 280,
"target": 295
},
{
"source": 281,
"target": 317
},
{
"source": 283,
"target": 633
},
{
"source": 283,
"target": 317
},
{
"source": 285,
"target": 554
},
{
"source": 286,
"target": 672
},
{
"source": 287,
"target": 295
},
{
"source": 288,
"target": 295
},
{
"source": 289,
"target": 672
},
{
"source": 292,
"target": 554
},
{
"source": 294,
"target": 672
},
{
"source": 295,
"target": 352
},
{
"source": 295,
"target": 415
},
{
"source": 295,
"target": 365
},
{
"source": 295,
"target": 366
},
{
"source": 295,
"target": 555
},
{
"source": 295,
"target": 557
},
{
"source": 295,
"target": 369
},
{
"source": 295,
"target": 373
},
{
"source": 295,
"target": 544
},
{
"source": 295,
"target": 375
},
{
"source": 295,
"target": 567
},
{
"source": 295,
"target": 574
},
{
"source": 295,
"target": 323
},
{
"source": 295,
"target": 586
},
{
"source": 295,
"target": 404
},
{
"source": 295,
"target": 597
},
{
"source": 295,
"target": 393
},
{
"source": 295,
"target": 613
},
{
"source": 295,
"target": 430
},
{
"source": 295,
"target": 439
},
{
"source": 295,
"target": 444
},
{
"source": 295,
"target": 536
},
{
"source": 295,
"target": 629
},
{
"source": 295,
"target": 637
},
{
"source": 295,
"target": 639
},
{
"source": 295,
"target": 477
},
{
"source": 295,
"target": 643
},
{
"source": 295,
"target": 644
},
{
"source": 295,
"target": 650
},
{
"source": 295,
"target": 660
},
{
"source": 295,
"target": 473
},
{
"source": 295,
"target": 475
},
{
"source": 295,
"target": 665
},
{
"source": 295,
"target": 489
},
{
"source": 295,
"target": 525
},
{
"source": 295,
"target": 690
},
{
"source": 295,
"target": 691
},
{
"source": 295,
"target": 320
},
{
"source": 295,
"target": 507
},
{
"source": 295,
"target": 510
},
{
"source": 295,
"target": 699
},
{
"source": 295,
"target": 703
},
{
"source": 295,
"target": 516
},
{
"source": 295,
"target": 709
},
{
"source": 295,
"target": 710
},
{
"source": 295,
"target": 725
},
{
"source": 295,
"target": 468
},
{
"source": 303,
"target": 633
},
{
"source": 305,
"target": 614
},
{
"source": 306,
"target": 633
},
{
"source": 313,
"target": 672
},
{
"source": 315,
"target": 633
},
{
"source": 317,
"target": 539
},
{
"source": 317,
"target": 522
},
{
"source": 317,
"target": 446
},
{
"source": 317,
"target": 464
},
{
"source": 317,
"target": 480
},
{
"source": 317,
"target": 632
},
{
"source": 317,
"target": 490
},
{
"source": 317,
"target": 406
},
{
"source": 317,
"target": 410
},
{
"source": 317,
"target": 550
},
{
"source": 317,
"target": 362
},
{
"source": 317,
"target": 448
},
{
"source": 317,
"target": 417
},
{
"source": 317,
"target": 419
},
{
"source": 317,
"target": 605
},
{
"source": 317,
"target": 576
},
{
"source": 317,
"target": 608
},
{
"source": 317,
"target": 369
},
{
"source": 317,
"target": 424
},
{
"source": 317,
"target": 648
},
{
"source": 317,
"target": 671
},
{
"source": 317,
"target": 596
},
{
"source": 317,
"target": 710
},
{
"source": 317,
"target": 655
},
{
"source": 317,
"target": 653
},
{
"source": 317,
"target": 335
},
{
"source": 317,
"target": 656
},
{
"source": 317,
"target": 715
},
{
"source": 317,
"target": 527
},
{
"source": 317,
"target": 415
},
{
"source": 317,
"target": 575
},
{
"source": 317,
"target": 409
},
{
"source": 319,
"target": 614
},
{
"source": 325,
"target": 614
},
{
"source": 327,
"target": 633
},
{
"source": 330,
"target": 633
},
{
"source": 331,
"target": 672
},
{
"source": 333,
"target": 614
},
{
"source": 335,
"target": 633
},
{
"source": 337,
"target": 672
},
{
"source": 339,
"target": 614
},
{
"source": 341,
"target": 633
},
{
"source": 346,
"target": 633
},
{
"source": 347,
"target": 633
},
{
"source": 348,
"target": 614
},
{
"source": 349,
"target": 672
},
{
"source": 353,
"target": 633
},
{
"source": 358,
"target": 554
},
{
"source": 359,
"target": 633
},
{
"source": 361,
"target": 633
},
{
"source": 364,
"target": 457
},
{
"source": 364,
"target": 427
},
{
"source": 365,
"target": 633
},
{
"source": 369,
"target": 633
},
{
"source": 370,
"target": 535
},
{
"source": 371,
"target": 633
},
{
"source": 374,
"target": 535
},
{
"source": 375,
"target": 633
},
{
"source": 376,
"target": 678
},
{
"source": 377,
"target": 633
},
{
"source": 382,
"target": 633
},
{
"source": 383,
"target": 614
},
{
"source": 384,
"target": 614
},
{
"source": 385,
"target": 633
},
{
"source": 392,
"target": 633
},
{
"source": 395,
"target": 633
},
{
"source": 396,
"target": 672
},
{
"source": 397,
"target": 614
},
{
"source": 398,
"target": 633
},
{
"source": 398,
"target": 614
},
{
"source": 399,
"target": 633
},
{
"source": 400,
"target": 633
},
{
"source": 402,
"target": 535
},
{
"source": 405,
"target": 554
},
{
"source": 406,
"target": 633
},
{
"source": 409,
"target": 633
},
{
"source": 411,
"target": 672
},
{
"source": 415,
"target": 633
},
{
"source": 416,
"target": 672
},
{
"source": 417,
"target": 633
},
{
"source": 423,
"target": 633
},
{
"source": 425,
"target": 672
},
{
"source": 429,
"target": 614
},
{
"source": 430,
"target": 633
},
{
"source": 432,
"target": 633
},
{
"source": 435,
"target": 614
},
{
"source": 437,
"target": 672
},
{
"source": 438,
"target": 614
},
{
"source": 444,
"target": 633
},
{
"source": 444,
"target": 614
},
{
"source": 445,
"target": 614
},
{
"source": 446,
"target": 633
},
{
"source": 448,
"target": 633
},
{
"source": 449,
"target": 614
},
{
"source": 451,
"target": 633
},
{
"source": 454,
"target": 554
},
{
"source": 455,
"target": 672
},
{
"source": 458,
"target": 633
},
{
"source": 464,
"target": 614
},
{
"source": 465,
"target": 672
},
{
"source": 467,
"target": 614
},
{
"source": 470,
"target": 633
},
{
"source": 478,
"target": 672
},
{
"source": 481,
"target": 633
},
{
"source": 482,
"target": 614
},
{
"source": 483,
"target": 633
},
{
"source": 484,
"target": 633
},
{
"source": 485,
"target": 554
},
{
"source": 486,
"target": 633
},
{
"source": 493,
"target": 633
},
{
"source": 495,
"target": 614
},
{
"source": 498,
"target": 672
},
{
"source": 499,
"target": 614
},
{
"source": 500,
"target": 614
},
{
"source": 505,
"target": 678
},
{
"source": 508,
"target": 554
},
{
"source": 514,
"target": 672
},
{
"source": 515,
"target": 672
},
{
"source": 520,
"target": 672
},
{
"source": 521,
"target": 633
},
{
"source": 523,
"target": 633
},
{
"source": 524,
"target": 614
},
{
"source": 527,
"target": 633
},
{
"source": 530,
"target": 614
},
{
"source": 533,
"target": 633
},
{
"source": 535,
"target": 661
},
{
"source": 540,
"target": 633
},
{
"source": 544,
"target": 633
},
{
"source": 545,
"target": 633
},
{
"source": 547,
"target": 633
},
{
"source": 549,
"target": 614
},
{
"source": 554,
"target": 616
},
{
"source": 554,
"target": 647
},
{
"source": 554,
"target": 593
},
{
"source": 554,
"target": 615
},
{
"source": 559,
"target": 633
},
{
"source": 560,
"target": 633
},
{
"source": 560,
"target": 614
},
{
"source": 569,
"target": 614
},
{
"source": 571,
"target": 672
},
{
"source": 575,
"target": 633
},
{
"source": 584,
"target": 672
},
{
"source": 587,
"target": 672
},
{
"source": 589,
"target": 633
},
{
"source": 590,
"target": 672
},
{
"source": 594,
"target": 614
},
{
"source": 599,
"target": 614
},
{
"source": 601,
"target": 633
},
{
"source": 602,
"target": 672
},
{
"source": 607,
"target": 672
},
{
"source": 610,
"target": 672
},
{
"source": 612,
"target": 614
},
{
"source": 614,
"target": 628
},
{
"source": 614,
"target": 625
},
{
"source": 614,
"target": 719
},
{
"source": 614,
"target": 684
},
{
"source": 614,
"target": 710
},
{
"source": 614,
"target": 663
},
{
"source": 614,
"target": 646
},
{
"source": 614,
"target": 642
},
{
"source": 614,
"target": 698
},
{
"source": 614,
"target": 617
},
{
"source": 614,
"target": 716
},
{
"source": 614,
"target": 618
},
{
"source": 614,
"target": 718
},
{
"source": 619,
"target": 672
},
{
"source": 622,
"target": 672
},
{
"source": 626,
"target": 672
},
{
"source": 627,
"target": 633
},
{
"source": 628,
"target": 633
},
{
"source": 630,
"target": 633
},
{
"source": 633,
"target": 671
},
{
"source": 633,
"target": 668
},
{
"source": 633,
"target": 635
},
{
"source": 633,
"target": 636
},
{
"source": 633,
"target": 642
},
{
"source": 633,
"target": 653
},
{
"source": 633,
"target": 655
},
{
"source": 633,
"target": 664
},
{
"source": 633,
"target": 721
},
{
"source": 633,
"target": 688
},
{
"source": 633,
"target": 697
},
{
"source": 633,
"target": 700
},
{
"source": 633,
"target": 707
},
{
"source": 633,
"target": 719
},
{
"source": 640,
"target": 672
},
{
"source": 657,
"target": 672
},
{
"source": 662,
"target": 672
},
{
"source": 672,
"target": 679
},
{
"source": 672,
"target": 689
},
{
"source": 672,
"target": 692
},
{
"source": 672,
"target": 702
},
{
"source": 672,
"target": 727
},
{
"source": 672,
"target": 714
},
{
"source": 672,
"target": 720
},
{
"source": 672,
"target": 687
},
{
"source": 672,
"target": 706
}
],
"multigraph": false,
"nodes": [
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Cory, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Neale, Edmund",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Manning, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Skinner, Gul.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Allen, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Rotherham, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0016524738860878585,
"bipartite": 0,
"closenesscentrality": 0.3800831953877734,
"degreecentrality": 0.11764705882352941,
"id": "Higgons, Tho.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Chricheon, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Assheton, Ralph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Warley, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Fane, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Buller, Timoth.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Boys, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Stretch, Jos.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Acworth, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Alvey, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Bosvile, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004484228116751048,
"bipartite": 0,
"closenesscentrality": 0.6137245257121314,
"degreecentrality": 0.11764705882352941,
"id": "Cremer, Thomas",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0008695031386036029,
"bipartite": 0,
"closenesscentrality": 0.6824032226370603,
"degreecentrality": 0.1764705882352941,
"id": "Hughes, A. (Audoenus?)",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Ken, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003031988396597707,
"bipartite": 0,
"closenesscentrality": 0.7622589189030993,
"degreecentrality": 0.1764705882352941,
"id": "Fleetwood, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Jessop, Constant",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Davies, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Boreman, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Thurman, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Glyd, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Frodsham, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Wroth, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0401397578071021,
"bipartite": 1,
"closenesscentrality": 0.40767867042300426,
"date": 1661,
"degreecentrality": 0.09704641350210971,
"id": "Threni Cantabrigiensis - 1661"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Disbrow, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.005809344377624151,
"bipartite": 0,
"closenesscentrality": 0.8530040282963255,
"degreecentrality": 0.23529411764705882,
"id": "Barrow, Isaac",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Francius, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Stonehouse, Bluettus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Cocks, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Codrington, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Edds, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Wilford, Fran.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "More, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "White, M.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Bernard, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Foster, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Wren",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Mews, Nic.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Humbarston, E.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.032368443273934754,
"bipartite": 1,
"closenesscentrality": 0.3884435037975414,
"date": 1658,
"degreecentrality": 0.07172995780590717,
"id": "Musarum Cantabrigiensium - 1658"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Cutler, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Thomason, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Lyecott?, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Smith, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Chalfont, Christopher",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Aldworth, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003031988396597707,
"bipartite": 0,
"closenesscentrality": 0.7622589189030993,
"degreecentrality": 0.1764705882352941,
"id": "Crouch, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Dethick, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Goodrick, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Roberts, George",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Mundy, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.010176785463844677,
"bipartite": 0,
"closenesscentrality": 0.93663187420773,
"degreecentrality": 0.29411764705882354,
"id": "Widdrington, R.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0015463466041803378,
"bipartite": 0,
"closenesscentrality": 0.6873125983394852,
"degreecentrality": 0.11764705882352941,
"id": "North, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Maulyverer?, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008745639504127918,
"bipartite": 0,
"closenesscentrality": 0.6354974578881715,
"degreecentrality": 0.1764705882352941,
"id": "Horton, Tho.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.07909715883821651,
"bipartite": 1,
"closenesscentrality": 0.44302300956281626,
"date": 1669,
"degreecentrality": 0.13783403656821377,
"id": "Threni Cantabrigienses in Exequiis - 1669"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Crosse, Ch.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Palmer, Fr.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Carpender, William",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Duncumb, Tho.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Musgrave, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0005134610773784034,
"bipartite": 0,
"closenesscentrality": 0.5799568530615706,
"degreecentrality": 0.11764705882352941,
"id": "Brett, Arthur",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Brome, Alexander",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008695031386036029,
"bipartite": 0,
"closenesscentrality": 0.6824032226370603,
"degreecentrality": 0.1764705882352941,
"id": "Bridge, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Cole, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Giles?, A.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Joynes, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Pestel, Will.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003031988396597707,
"bipartite": 0,
"closenesscentrality": 0.7622589189030993,
"degreecentrality": 0.1764705882352941,
"id": "Baldwin, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Smith, Josias",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Pratt, Michael",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.052985118565435134,
"bipartite": 1,
"closenesscentrality": 0.35735761552474066,
"date": 1660,
"degreecentrality": 0.09282700421940929,
"id": "Henrici Ducis Gloucestrensis - 1660"
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Pococke, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Draper, Chresheld",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Ward, J.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Terrent, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Duncon",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Foster, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Brookes, Nicholas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Milles, D.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Owen, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Benson, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.007098894197138919,
"bipartite": 0,
"closenesscentrality": 0.8504728590728943,
"degreecentrality": 0.23529411764705882,
"id": "Edwards, John",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0005626711764816664,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Colley, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Stephens, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Johnson, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Haukins, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Whitford, David",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Baylie, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Cressy, Edmund",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Godolphin, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Fletewood, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Firebrace, Hen.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Dawes, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Lamphire, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "North, O.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Quin, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011712353497247635,
"bipartite": 0,
"closenesscentrality": 0.6084157023567852,
"degreecentrality": 0.1764705882352941,
"id": "Tanner, Tho.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Stubbes, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.010880527070322431,
"bipartite": 0,
"closenesscentrality": 0.8126307047367192,
"degreecentrality": 0.29411764705882354,
"id": "Lichfield, Leonard",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Gregory, Abraham",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Reade, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Pope, Gualt.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Neale, Gualterus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002059900372647777,
"bipartite": 0,
"closenesscentrality": 0.5697999075697124,
"degreecentrality": 0.11764705882352941,
"id": "Hill, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Hoyle, Josua",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Walden, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Russell, Sa.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Millington, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Vincent, Nathanael",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Vaugh(a)n, J.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0002059900372647777,
"bipartite": 0,
"closenesscentrality": 0.5697999075697124,
"degreecentrality": 0.11764705882352941,
"id": "Fuller, Thom.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Griffith, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Scott, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Staunton, Edmund",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Machon, Tho.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Kemp, E.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Pepper, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Cope, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "White, Gilbert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Gruchey, Joshuah",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Button, Ralph",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Everard, Samuel",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Roberts, Cad.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Berkeley, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Hellier, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Rosse, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Jackson, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Duncumbe, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Willoughby, Car.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Hawkins, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Onely, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.021280793740329092,
"bipartite": 1,
"closenesscentrality": 0.37280804200946427,
"date": 1654,
"degreecentrality": 0.04922644163150492,
"id": "Oliva Pacis - 1654"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Bridgeman, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Morton, D.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.004673858958858968,
"bipartite": 0,
"closenesscentrality": 0.6929035729634853,
"degreecentrality": 0.1764705882352941,
"id": "Bold, Henry",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Huffam, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011712353497247635,
"bipartite": 0,
"closenesscentrality": 0.6084157023567852,
"degreecentrality": 0.1764705882352941,
"id": "Hood, Paul",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Head, Mer.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Greswold, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Lamplugh, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.11430777978149274,
"bipartite": 1,
"closenesscentrality": 0.3917698303530491,
"date": 1660,
"degreecentrality": 0.1659634317862166,
"id": "Britannia Rediviva - 1660"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Bowyer, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011712353497247635,
"bipartite": 0,
"closenesscentrality": 0.6084157023567852,
"degreecentrality": 0.1764705882352941,
"id": "Hooper, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Craven, Isaac",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014031192125908008,
"bipartite": 0,
"closenesscentrality": 0.6840318699464567,
"degreecentrality": 0.1764705882352941,
"id": "Dillingham, Theoph.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.04706062522639136,
"bipartite": 1,
"closenesscentrality": 0.41107128071778654,
"date": 1662,
"degreecentrality": 0.10126582278481013,
"id": "Epithalamia Cantabrigiensia - 1662"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Brace, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Fortescu, Edmund",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Markham, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.002317086840610353,
"bipartite": 0,
"closenesscentrality": 0.7348957782245265,
"degreecentrality": 0.23529411764705882,
"id": "Bowen, Reuben",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Gourney, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Champion, Caleb",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Maplet, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.001874314802650547,
"bipartite": 0,
"closenesscentrality": 0.6499754723350883,
"degreecentrality": 0.1764705882352941,
"id": "Smith, Thomas (Oxford)",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0044025281529818175,
"bipartite": 0,
"closenesscentrality": 0.5995011865713379,
"degreecentrality": 0.11764705882352941,
"id": "Brasier, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.05248119445970783,
"bipartite": 1,
"closenesscentrality": 0.24260975732872303,
"date": 1649,
"degreecentrality": 0.0450070323488045,
"id": "Lachrymae Musarum - 1649"
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Hawkins, William",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.027887912959970063,
"bipartite": 0,
"closenesscentrality": 0.9082343170586861,
"degreecentrality": 0.3529411764705882,
"id": "Lockey, Thomas",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Horden T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.005809344377624151,
"bipartite": 0,
"closenesscentrality": 0.8530040282963255,
"degreecentrality": 0.23529411764705882,
"id": "Jackson, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Markham, Fr.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Fowke, Phin.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Bolde, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Minshul, Christopher",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Goodere, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.004944000297395984,
"bipartite": 0,
"closenesscentrality": 0.7725319501551627,
"degreecentrality": 0.29411764705882354,
"id": "Dillingham, William",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Packington, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Davis, Hu.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003043155067156888,
"bipartite": 0,
"closenesscentrality": 0.584931465096409,
"degreecentrality": 0.1764705882352941,
"id": "Fell, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Ailmer, Jo.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Lane, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Fell, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Spering, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Cornwallis, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Wilson",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Pulleyn, Benjamin",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Cave, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Meetkerk, Adolphus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Maund, Clinton",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Bryan, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Morgan, Franc.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Rowe, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Voyce, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Briggs, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Smith, Tho. (Cambridge)",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Watkinson, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Mathew, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.005074024945447818,
"bipartite": 0,
"closenesscentrality": 0.735237304285603,
"degreecentrality": 0.1764705882352941,
"id": "Locke, John",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Boreman, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Powell, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Willis, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Clifford, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Smith, Sebastian",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.004957421658263576,
"bipartite": 0,
"closenesscentrality": 0.3804365967781851,
"degreecentrality": 0.11764705882352941,
"id": "Dryden, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011712353497247635,
"bipartite": 0,
"closenesscentrality": 0.6084157023567852,
"degreecentrality": 0.1764705882352941,
"id": "Wilkinson, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Ward, Sethus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Manlove, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Zoucheus, Richard",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0018944442896066517,
"bipartite": 0,
"closenesscentrality": 0.5908441297255423,
"degreecentrality": 0.11764705882352941,
"id": "Guillym, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Standish, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Bargrave, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Fleetwood, Bert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Marsh, F.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0018944442896066517,
"bipartite": 0,
"closenesscentrality": 0.5908441297255423,
"degreecentrality": 0.11764705882352941,
"id": "Mew, P.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0003005352856793288,
"bipartite": 0,
"closenesscentrality": 0.6085124278292258,
"degreecentrality": 0.11764705882352941,
"id": "Moses, William",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Forster, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Bagshawe, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Barlow, Matthew",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008745639504127918,
"bipartite": 0,
"closenesscentrality": 0.6354974578881715,
"degreecentrality": 0.1764705882352941,
"id": "Tuckney, A.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Cutlove, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Sell, Ol.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011129154915395022,
"bipartite": 0,
"closenesscentrality": 0.6030354603315226,
"degreecentrality": 0.1764705882352941,
"id": "Trumbull, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Bradbury, George",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Mayne, Jasper",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Warly, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Pearson, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0003005352856793288,
"bipartite": 0,
"closenesscentrality": 0.6085124278292258,
"degreecentrality": 0.11764705882352941,
"id": "Pratt, John",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Mead, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Glynne, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.005867133301901833,
"bipartite": 0,
"closenesscentrality": 0.6551794392873308,
"degreecentrality": 0.23529411764705882,
"id": "Williams, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Russell, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Davies, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Merry, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Pestel, Tho., Jr.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Wyvil, Ch.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Brady, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Busby, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Crisp, Nicholas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.010176785463844677,
"bipartite": 0,
"closenesscentrality": 0.93663187420773,
"degreecentrality": 0.29411764705882354,
"id": "Gale, T.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.00018338154640120386,
"bipartite": 0,
"closenesscentrality": 0.538013885384534,
"degreecentrality": 0.11764705882352941,
"id": "Lluelyn, Martin",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Wood, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00018338154640120386,
"bipartite": 0,
"closenesscentrality": 0.538013885384534,
"degreecentrality": 0.11764705882352941,
"id": "Eede, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Grandorge, Is.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Dove, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Field, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Grove, D.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004484228116751048,
"bipartite": 0,
"closenesscentrality": 0.6137245257121314,
"degreecentrality": 0.11764705882352941,
"id": "Perse, Gu.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Hutchinson, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "James, Guliel.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Fenn., Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Wragge, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Arundell, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Dryden, Jonathan",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "White, B.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Radcliffe, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Montague, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Gibbon, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Baron, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Hume, P.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Villiers, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Ellis, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Morley, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0013954706566136137,
"bipartite": 0,
"closenesscentrality": 0.6791690841411501,
"degreecentrality": 0.1764705882352941,
"id": "Darby, Charles",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.005074024945447818,
"bipartite": 0,
"closenesscentrality": 0.735237304285603,
"degreecentrality": 0.1764705882352941,
"id": "Say, Robert",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Cotton, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Wilson, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Standish, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.007553201476049661,
"bipartite": 0,
"closenesscentrality": 0.7815846415185063,
"degreecentrality": 0.23529411764705882,
"id": "Bathurst, Ralph",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Brome, James",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Griffith, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Squire, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Collinson, Obadiah",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Blincowe, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Breton, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Clifton, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00018338154640120386,
"bipartite": 0,
"closenesscentrality": 0.538013885384534,
"degreecentrality": 0.11764705882352941,
"id": "Dolben, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Fielding, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Brome, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Gardiner, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Castry, Walter",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004484228116751048,
"bipartite": 0,
"closenesscentrality": 0.6137245257121314,
"degreecentrality": 0.11764705882352941,
"id": "Haymes, T.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Russell, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Wells, Jer.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Parry, Da.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Nethway, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Proast, Jonas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Scattergood, S.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Woodward, Michael",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Needham, Rob.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Gregory, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Kitson, Ri.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Beeston, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Wilson, Grindall",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Doiley, Ol.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Seignior?, Geor.?",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Whitbie, Dan.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Wilde, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Willis, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Slader, Joann.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.13832993017121953,
"bipartite": 1,
"closenesscentrality": 0.3984099969692024,
"date": 1654,
"degreecentrality": 0.1279887482419128,
"id": "Musarum Oxoniensium - 1654"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Hughes, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Wandesford, Ch.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Blake, Nicholas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Pelham, Harberius",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Hern, S.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Grigg, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Rolle, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Bickley, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Eede, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Trumbull, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Coxe, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Smith, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Grenvile, Dionysius",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Turner, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Adland, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Penn, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Millward, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Alefounder, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0015463466041803378,
"bipartite": 0,
"closenesscentrality": 0.6873125983394852,
"degreecentrality": 0.11764705882352941,
"id": "Johnson, Benjamin",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Norman, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Stokes, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.041347130939176996,
"bipartite": 1,
"closenesscentrality": 0.3525928473177441,
"date": 1660,
"degreecentrality": 0.08157524613220817,
"id": "Mariae Principis Arausionensis - 1660"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Davenant, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Woolley, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Davison, Alexander",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Jenner, D.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Darcy, Ja.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Ward, Phil.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Fairfax, George",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Annesley, Altham",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Percivall, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Woodrof(f)e, Ben.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Beaumont, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Cockshutt, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Croome, Valentine",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Wotton, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Gwinne, Nath.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Mewe, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Croke, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011129154915395022,
"bipartite": 0,
"closenesscentrality": 0.6030354603315226,
"degreecentrality": 0.1764705882352941,
"id": "Fell, Philip",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Turner (first name or initial absent)",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0003005352856793288,
"bipartite": 0,
"closenesscentrality": 0.6085124278292258,
"degreecentrality": 0.11764705882352941,
"id": "Huckle, R.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Benson, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014783271255811065,
"bipartite": 0,
"closenesscentrality": 0.5555459060895289,
"degreecentrality": 0.11764705882352941,
"id": "Allestree, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Cope, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Smith, H.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002059900372647777,
"bipartite": 0,
"closenesscentrality": 0.5697999075697124,
"degreecentrality": 0.11764705882352941,
"id": "Seaman, La.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Wagstaffe, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Sterry, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Daintrie, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Conduit, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "D'avers, Pope",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Waple, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Duncombe, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Barrington, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Earl of Westmoreland",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Worth, S.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "White, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Walker, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Townes, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Hammond, Joh.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Champion, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Rogers, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Parsons, Rich.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Sacket",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Shirly, Seymour",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00018338154640120386,
"bipartite": 0,
"closenesscentrality": 0.538013885384534,
"degreecentrality": 0.11764705882352941,
"id": "Glynne, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Croone, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0015669704606173145,
"bipartite": 1,
"closenesscentrality": 0.1651488746218942,
"date": 1667,
"degreecentrality": 0.0042194092827004225,
"id": "Abraham Cowley - 1667"
},
{
"betweennesscentrality": 0.005074024945447818,
"bipartite": 0,
"closenesscentrality": 0.735237304285603,
"degreecentrality": 0.1764705882352941,
"id": "Roberts, Michael",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Dunch, Hungerford",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Wiat, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Lowde, Ja.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.010880527070322431,
"bipartite": 0,
"closenesscentrality": 0.8126307047367192,
"degreecentrality": 0.29411764705882354,
"id": "Whitehall, Robert",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.1294949891923758,
"degreecentrality": 0.058823529411764705,
"id": "Masters",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Kerswel(l), John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Savage, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Forster, S.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.1294949891923758,
"degreecentrality": 0.058823529411764705,
"id": "Savile, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0026690751542022572,
"bipartite": 0,
"closenesscentrality": 0.6438388038315312,
"degreecentrality": 0.11764705882352941,
"id": "Jones, T.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.2752502925226627,
"degreecentrality": 0.058823529411764705,
"id": "Waller, Edmund",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Allanson, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Church, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Cawton, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Crane, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Herrick, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Low, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Annesley, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Stanley, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Castle, George",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Stillingfleet, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Minshul, Ri.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Conant, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Quarles, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Brideoake, Jabez",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Palmer, Percy",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0005626711764816664,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Penton, Steph.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Gorges, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Constable, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Philips, Stephen",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014031192125908008,
"bipartite": 0,
"closenesscentrality": 0.6840318699464567,
"degreecentrality": 0.1764705882352941,
"id": "Leigh, William",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Pierce, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0018944442896066517,
"bipartite": 0,
"closenesscentrality": 0.5908441297255423,
"degreecentrality": 0.11764705882352941,
"id": "Bayly, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Pudsey, A.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Seabright, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Minshall, Ri.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.1294949891923758,
"degreecentrality": 0.058823529411764705,
"id": "Bodley, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Bainbridge, Christopher",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Forde, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Fleetwood, George",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.001874314802650547,
"bipartite": 0,
"closenesscentrality": 0.6499754723350883,
"degreecentrality": 0.1764705882352941,
"id": "Blandford, Walter",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Gellibrand, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Resbury, Th.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Wyat(e), W.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Moreton, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004039583222591538,
"bipartite": 0,
"closenesscentrality": 0.6340914900609853,
"degreecentrality": 0.11764705882352941,
"id": "Stanford, Michael",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Sherlock, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Hoskins, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Speed, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.010880527070322431,
"bipartite": 0,
"closenesscentrality": 0.8126307047367192,
"degreecentrality": 0.29411764705882354,
"id": "Wall, John",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Foxcroft, E.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.001874314802650547,
"bipartite": 0,
"closenesscentrality": 0.6499754723350883,
"degreecentrality": 0.1764705882352941,
"id": "Littleton, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Crompton, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Speed, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Westrow, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Ardern, James",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Sharrock, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Hill, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00018338154640120386,
"bipartite": 0,
"closenesscentrality": 0.538013885384534,
"degreecentrality": 0.11764705882352941,
"id": "Potter, Hannibal",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Boult, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Horn jun.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.27506525030920204,
"degreecentrality": 0.058823529411764705,
"id": "Orrery, Roger Boyle, Earl of",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Vincent, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Leigh, Fran.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.004673858958858968,
"bipartite": 0,
"closenesscentrality": 0.6929035729634853,
"degreecentrality": 0.1764705882352941,
"id": "Danvers, Dan.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Shelton, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Laurence, Tho.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Phil(l)ip(p)s, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Peachey, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Holt, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Lord Falkland",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004039583222591538,
"bipartite": 0,
"closenesscentrality": 0.6340914900609853,
"degreecentrality": 0.11764705882352941,
"id": "Leigh, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Clarke, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Lucy, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Pelling, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Thelwall, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Dawson",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Adams, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.012414159370112443,
"bipartite": 0,
"closenesscentrality": 0.7072766807864098,
"degreecentrality": 0.1764705882352941,
"id": "Savage, Henry",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Pierce, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0011129154915395022,
"bipartite": 0,
"closenesscentrality": 0.6030354603315226,
"degreecentrality": 0.1764705882352941,
"id": "Eldred, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Portman, W.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0030947602514785747,
"bipartite": 0,
"closenesscentrality": 0.6791030038754159,
"degreecentrality": 0.23529411764705882,
"id": "Stringar, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "March, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Hall, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Annesley, James",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Marvell, Andrew",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Newbery, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Goodman, George",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0003005352856793288,
"bipartite": 0,
"closenesscentrality": 0.6085124278292258,
"degreecentrality": 0.11764705882352941,
"id": "Hutchinson, J.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Rashleygh?, N.?",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0016524738860878585,
"bipartite": 0,
"closenesscentrality": 0.3800831953877734,
"degreecentrality": 0.11764705882352941,
"id": "Denham, John",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Coxe, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Cradock, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Chamberlaine, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Billers, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Boun, Ralph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Blackburne, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00629743562553481,
"bipartite": 0,
"closenesscentrality": 0.6358345918180857,
"degreecentrality": 0.1764705882352941,
"id": "Taylor, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008695031386036029,
"bipartite": 0,
"closenesscentrality": 0.6824032226370603,
"degreecentrality": 0.1764705882352941,
"id": "Thruston, M.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Moorehead, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Paul, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Roswell, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Preston, W.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Wren, Christopher",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Ferne, H.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Gorges, Arthur",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Johnson, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Broderwicke, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Crispe, Andrew",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Horne, Th.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Scrope, S.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0003680386274686866,
"bipartite": 0,
"closenesscentrality": 0.5958614418036702,
"degreecentrality": 0.11764705882352941,
"id": "Wray, John",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Molineus, Ludovicus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Wigan, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Bohun, Ralph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Jones, Nath.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Franckland, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Bentley, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Wild, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Henshaw, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Cokayne, Aston",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0012372195521311716,
"bipartite": 0,
"closenesscentrality": 0.6807823123695139,
"degreecentrality": 0.11764705882352941,
"id": "Lowe, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Hatley, W.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Hyde, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Standish, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002059900372647777,
"bipartite": 0,
"closenesscentrality": 0.5697999075697124,
"degreecentrality": 0.11764705882352941,
"id": "Twyne, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Richards, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Jermy?, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Lane, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Smalwood",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Ekins, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008695031386036029,
"bipartite": 0,
"closenesscentrality": 0.6824032226370603,
"degreecentrality": 0.1764705882352941,
"id": "Smyth(es), S.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Elwes, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Penny, Ia.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Sheppard, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Owen, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Frankland, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "James, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.2752502925226627,
"degreecentrality": 0.058823529411764705,
"id": "Sprat, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Nurse, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Stedman, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Cocks, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Prideaux, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Acland, Hugh",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Arrowsmith, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Maidwell, Ludovic",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Bate, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Gearing, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008695031386036029,
"bipartite": 0,
"closenesscentrality": 0.6824032226370603,
"degreecentrality": 0.1764705882352941,
"id": "Grove, Robert (Cambridge)",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Williamson, J.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Godolphin, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Meryfield, Geo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Payne, M.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008745639504127918,
"bipartite": 0,
"closenesscentrality": 0.6354974578881715,
"degreecentrality": 0.1764705882352941,
"id": "Whichcot, B.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Finch, Matthew",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Lee, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Bowyer, James",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Smythe, Lucius",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Paige, Rich.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Crosland, Theodore",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Owen, Hugo",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Appleton, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Scott, P.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Harris, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Pestel, Tho., Sr.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Fenwicke, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0005626711764816664,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Turner, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004743927259451579,
"bipartite": 0,
"closenesscentrality": 0.5824335371315844,
"degreecentrality": 0.11764705882352941,
"id": "Dod., John",
"shapeshifter": 0
},
{
"betweennesscentrality": 2.273717717945317e-05,
"bipartite": 1,
"closenesscentrality": 1.0220082530949106,
"date": 1658,
"degreecentrality": 0.005625879043600563,
"id": "D. Henrici Savilii Oratio - 1658"
},
{
"betweennesscentrality": 0.0014421126281750427,
"bipartite": 0,
"closenesscentrality": 0.6003808654951402,
"degreecentrality": 0.11764705882352941,
"id": "Puleston, Hamlett",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Gower, Hum.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Lewis, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0005134610773784034,
"bipartite": 0,
"closenesscentrality": 0.5799568530615706,
"degreecentrality": 0.11764705882352941,
"id": "Rochester, John Wilmot, Earl of",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Laugharne, Rolandus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Bagge, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Elstob, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Modyford, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.007553201476049661,
"bipartite": 0,
"closenesscentrality": 0.7815846415185063,
"degreecentrality": 0.23529411764705882,
"id": "Moore, Geo.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Price, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Staughton, Nicholaus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.002031054859042332,
"bipartite": 0,
"closenesscentrality": 0.65728443346978,
"degreecentrality": 0.1764705882352941,
"id": "Fitz-William, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Jones, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Mill, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0005134610773784034,
"bipartite": 0,
"closenesscentrality": 0.5799568530615706,
"degreecentrality": 0.11764705882352941,
"id": "Towerson, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Manfield, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Ingelo?, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Kindar, Phil.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00045474354358906343,
"bipartite": 1,
"closenesscentrality": 1.0220082530949106,
"date": 1660,
"degreecentrality": 0.02250351617440225,
"id": "Votiuum Carolo - 1660"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Mew, Math.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Bosse, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.02728391190022435,
"bipartite": 0,
"closenesscentrality": 0.5832638058944234,
"degreecentrality": 0.11764705882352941,
"id": "Harmarus, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Camfield, Benjamin",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Page, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003935442591669419,
"bipartite": 0,
"closenesscentrality": 0.6319066561157345,
"degreecentrality": 0.1764705882352941,
"id": "Tullie, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Bachiler, Elias",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Freke, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.000700117035963171,
"bipartite": 0,
"closenesscentrality": 0.6008581834540154,
"degreecentrality": 0.11764705882352941,
"id": "Bright, George",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "J. Layton",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Fish, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Reynolds, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Metham, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Palmer, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "James, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Miles, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Disney, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Fuller, Sam.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Jewell?, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Hering, Dan.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.001874314802650547,
"bipartite": 0,
"closenesscentrality": 0.6499754723350883,
"degreecentrality": 0.1764705882352941,
"id": "Martin, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00018338154640120386,
"bipartite": 0,
"closenesscentrality": 0.538013885384534,
"degreecentrality": 0.11764705882352941,
"id": "Winnard, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Davenant, Hugo",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Lynford, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Waferer, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Rayney, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Launoy?, Mid.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Jones",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Newbery, Humfrey",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Nailo(u)r, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Rainbowe, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Rowe, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008745639504127918,
"bipartite": 0,
"closenesscentrality": 0.6354974578881715,
"degreecentrality": 0.1764705882352941,
"id": "Worthington, J.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Luke, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Roane, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0004039583222591538,
"bipartite": 0,
"closenesscentrality": 0.6340914900609853,
"degreecentrality": 0.11764705882352941,
"id": "Paman, H.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Spencer, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Luke, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Stratford, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Dugard, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Kemp, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Trapps, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Hodges, Nath.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5287995452169102,
"degreecentrality": 0.058823529411764705,
"id": "Russell, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Tyrril, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Hill, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Grove, Robert (Oxford)",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Hughes, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Phillips, Ambr.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Hatton, Christopher",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Carteret, Philip",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Knightley, Rich.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Spencer, Andrew",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Drope, Francis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Robarts, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.002156275082709031,
"bipartite": 0,
"closenesscentrality": 0.692293124414409,
"degreecentrality": 0.11764705882352941,
"id": "Godman, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Salwey, A.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Davenant, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Harby, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.07845495060009143,
"bipartite": 1,
"closenesscentrality": 0.357962281540857,
"date": 1669,
"degreecentrality": 0.09423347398030943,
"id": "Epicedia Universitatis Oxoniensis - 1669"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Dewes, Willoughby",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Woodward, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Whitley, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Kingsley, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0036106172108984693,
"bipartite": 0,
"closenesscentrality": 0.7622589189030993,
"degreecentrality": 0.1764705882352941,
"id": "Fairebrother, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002059900372647777,
"bipartite": 0,
"closenesscentrality": 0.5697999075697124,
"degreecentrality": 0.11764705882352941,
"id": "Quarles, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Stratford, Nicholas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Yardley, Andrew",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Nalson",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Ashton, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Levett, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003290426558124464,
"bipartite": 0,
"closenesscentrality": 0.7237609937059731,
"degreecentrality": 0.23529411764705882,
"id": "Lynnett, William (Lynness, G.?)",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Howel(l), G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0018944442896066517,
"bipartite": 0,
"closenesscentrality": 0.5908441297255423,
"degreecentrality": 0.11764705882352941,
"id": "Young, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.02728391190022435,
"bipartite": 0,
"closenesscentrality": 0.5832638058944234,
"degreecentrality": 0.11764705882352941,
"id": "Campion, Edward",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Trumbull, Rad.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Cox, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Roffen, John Comes",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.11387630069726919,
"bipartite": 1,
"closenesscentrality": 0.3888891698357472,
"date": 1662,
"degreecentrality": 0.16033755274261605,
"id": "Domiduca Oxoniensis - 1662"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5124102189542118,
"degreecentrality": 0.058823529411764705,
"id": "Newlin, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.002031054859042332,
"bipartite": 0,
"closenesscentrality": 0.65728443346978,
"degreecentrality": 0.1764705882352941,
"id": "Floyd, Nic.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00099399095661551,
"bipartite": 0,
"closenesscentrality": 0.6232438078216879,
"degreecentrality": 0.11764705882352941,
"id": "Horsman, N.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Henry, Philip",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Bancroft, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Owen, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Bloys, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Sherman, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0018944442896066517,
"bipartite": 0,
"closenesscentrality": 0.5908441297255423,
"degreecentrality": 0.11764705882352941,
"id": "Pengry, Moses",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "White, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Atterbury, Lewis",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Strope, S...?",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Levine, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.0201890224963392,
"degreecentrality": 0.058823529411764705,
"id": "Chauncy, Tobias",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "de Carteret, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Farrars, Ed.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "George, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Curwen, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0012372195521311716,
"bipartite": 0,
"closenesscentrality": 0.6807823123695139,
"degreecentrality": 0.11764705882352941,
"id": "Peck, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Ashburnham, Bertrand",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Clarke, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Parker, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "How, Joseph",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Felton, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Amidei, Allesandro",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00024842224028619317,
"bipartite": 0,
"closenesscentrality": 0.6217122635738945,
"degreecentrality": 0.11764705882352941,
"id": "Horden, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Staniey, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 1.1294949891923758,
"degreecentrality": 0.058823529411764705,
"id": "Langbaine, Gerard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0002171225760582559,
"bipartite": 0,
"closenesscentrality": 0.6203665660336912,
"degreecentrality": 0.11764705882352941,
"id": "Love, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Heylyn, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Fennex, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Guynne, Rowlandus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Dolling, Edmund",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Radcliffe, Anto.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Newport, Richard",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Woolsey, Tho.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Walker, Gualter.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.00036686276865663023,
"bipartite": 0,
"closenesscentrality": 0.5726515882924256,
"degreecentrality": 0.11764705882352941,
"id": "Savage, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.04287225213132548,
"bipartite": 1,
"closenesscentrality": 0.4099341540767968,
"date": 1660,
"degreecentrality": 0.09985935302390998,
"id": "Academiae Cantabrigiensis - 1660"
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Budgen, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Turner, B.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Packer, Matthew",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Fraser, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Creighton, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003126361862174811,
"bipartite": 1,
"closenesscentrality": 0.16527789718019256,
"date": 1659,
"degreecentrality": 0.0042194092827004225,
"id": "Three Poems - 1659"
},
{
"betweennesscentrality": 0.0022402263741093244,
"bipartite": 0,
"closenesscentrality": 0.6939693789529428,
"degreecentrality": 0.23529411764705882,
"id": "Cudworth, R.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Horne, G.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Boldero, Daniel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Rymer",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Nevile?, Charles",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Trevor, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Stubbs",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Allison, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Valentine, Jacob",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Aldworth, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.019971789836872873,
"bipartite": 0,
"closenesscentrality": 0.9986388623956982,
"degreecentrality": 0.3529411764705882,
"id": "Duport, Jacob",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Stephens, Phil.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Cordewell, Luke",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Gardiner, J.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5641916407629239,
"degreecentrality": 0.058823529411764705,
"id": "Pomeroy, A.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Critton, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Walpole, Robert",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5983493810178817,
"degreecentrality": 0.058823529411764705,
"id": "Blyth, Samuel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Friend, W.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Alsop, Nathaniel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Crewe, Nathaniel",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Cooke, Jonathan",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Cooke, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Noel, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5547926235050008,
"degreecentrality": 0.058823529411764705,
"id": "Miller, Humfredus",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.37937835867866304,
"degreecentrality": 0.058823529411764705,
"id": "Wyche, Cyril",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Puller, Timothy",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5664216472481528,
"degreecentrality": 0.058823529411764705,
"id": "Nevile, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Speed, Jo.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Dean, Henry",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0014109588346300445,
"bipartite": 0,
"closenesscentrality": 0.636824217641927,
"degreecentrality": 0.11764705882352941,
"id": "Fettiplace, Edward",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.02140086861440744,
"bipartite": 0,
"closenesscentrality": 0.7983601167510986,
"degreecentrality": 0.29411764705882354,
"id": "South, Robert",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Uvedale, William",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Skelton, Bern.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Udall, R.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008695031386036029,
"bipartite": 0,
"closenesscentrality": 0.6824032226370603,
"degreecentrality": 0.1764705882352941,
"id": "Comes, Anthony",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5073274145504502,
"degreecentrality": 0.058823529411764705,
"id": "Coventrie, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Lake, Lan.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Topping, T.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.513052739604938,
"degreecentrality": 0.058823529411764705,
"id": "Dawtrey, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0018944442896066517,
"bipartite": 0,
"closenesscentrality": 0.5908441297255423,
"degreecentrality": 0.11764705882352941,
"id": "Hyde, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0003680386274686866,
"bipartite": 0,
"closenesscentrality": 0.5958614418036702,
"degreecentrality": 0.11764705882352941,
"id": "Glisson, Fran.",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5451826246967862,
"degreecentrality": 0.058823529411764705,
"id": "Barksdale, Clement",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Doyley, Fra.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5448847024858656,
"degreecentrality": 0.058823529411764705,
"id": "Turner, Jun.",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5675432742724066,
"degreecentrality": 0.058823529411764705,
"id": "Belke, Thomas",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.003327464188750239,
"bipartite": 0,
"closenesscentrality": 0.6802320196757076,
"degreecentrality": 0.1764705882352941,
"id": "Bagshaw, Henry",
"shapeshifter": 1
},
{
"betweennesscentrality": 0.0,
"bipartite": 0,
"closenesscentrality": 0.5481038979704461,
"degreecentrality": 0.058823529411764705,
"id": "Singleton, John",
"shapeshifter": 0
},
{
"betweennesscentrality": 0.0008745639504127918,
"bipartite": 0,
"closenesscentrality": 0.6354974578881715,
"degreecentrality": 0.1764705882352941,
"id": "Maisterson, Henry",
"shapeshifter": 1
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment