Skip to content

Instantly share code, notes, and snippets.

@hwangmoretime
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hwangmoretime/e5e64e58af63493fd146 to your computer and use it in GitHub Desktop.
Save hwangmoretime/e5e64e58af63493fd146 to your computer and use it in GitHub Desktop.
Bar-chart and Line-chart Interaction

What This Shows

Using data from the US Census, this visualization displays popular names that have androgynous by decade. Specifically, an androgynous name for a given decade is a name whose female (and thus male) percentage remained between 40% and 60%.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
width: 960px;
margin: auto;
position: relative;
}
svg {
font: 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.axis--y path {
display: none;
}
.axis--rect rect {
fill: #B1DDAB;
}
.axis--rect--text {
font-size: 13.5px;
font-weight: bold;
}
.androgs {
fill: none;
stroke: #aaa;
stroke-linejoin: round;
stroke-linecap: round;
stroke-width: 1.5px;
}
.androg--hover {
stroke: #000;
}
.focus text {
text-anchor: middle;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}
.voronoi path {
fill: none;
pointer-events: all;
}
.voronoi--show path {
stroke: red;
stroke-opacity: .2;
}
</style>
<body></body>
<script src="http://d3js.org/d3.v3.js"></script>
<script>
var years,
yearFormat = d3.time.format("%Y");
var margin = {top: 20, right: 30, bottom: 140, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.time.scale()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var color = d3.scale.category20();
var voronoi = d3.geom.voronoi()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.value); })
.clipExtent([[-margin.left, -margin.top], [width + margin.right, height]]);
var line = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.value); });
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
d3.json("points.json", function(error_json, points) {
d3.csv("./steady_andro.csv", type, function(error, androgs) {
x.domain(d3.extent(years));
y.domain([0, d3.max(androgs, function(c) { return d3.max(c.values, function(d) { return d.value; }); })]).nice();
DECADES_SHOWN = 5
svg.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.svg.axis()
.scale(x)
.ticks(DECADES_SHOWN)
.orient("bottom"))
svg.append("g")
.attr("class", "axis axis--y")
.call(d3.svg.axis()
.scale(y)
.orient("left")
.ticks(10, "%"))
.append("text")
.attr("x", 4)
.attr("dy", ".32em")
.style("font-weight", "bold")
.text("Percent Female");
svg.append("g")
.attr("class", "androgs")
.selectAll("path")
.data(androgs, function(d) { return d.name; })
.enter().append("path")
.attr("name", function(d) { return d.name; })
.attr("class", "androg--path")
.attr("d", function(d) { d.line = this;
return line(d.values);})
var focus = svg.append("g")
.attr("transform", "translate(-100,-100)")
.attr("class", "focus");
focus.append("circle")
.attr("r", 3.5);
focus.append("text")
.attr("y", -10);
var keyFunction = null;
if (error_json != null && error_json.status == 404) {
voronoi
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.value); })
keyFunction = function(d) {
var p = closestPoint(d.androg.line, [x(d.date), y(d.value)]);
console.log(d.androg.name, getUTCStringNoTime(d.date), p);
d.p = p;
return p[0] + "," + p[1];
}
} else {
voronoi
.x(function(d) { return points[d.androg.name][getUTCStringNoTime(d.date)].x })
.y(function(d) { return points[d.androg.name][getUTCStringNoTime(d.date)].y });
keyFunction = function(d) {
var x = points[d.androg.name][getUTCStringNoTime(d.date)].x;
var y = points[d.androg.name][getUTCStringNoTime(d.date)].y;
d.p = [x, y];
return x + "," + y;
}
}
var voronoiGroup = svg.append("g")
.attr("class", "voronoi");
voronoiGroup.selectAll("path")
.data(voronoi(d3.nest()
.key(function(d) { return keyFunction(d); })
.rollup(function(v) { return v[0]; })
.entries(d3.merge(androgs.map(function(d) { return d.values; })))
.map(function(d) { return d.values; })))
.enter().append("path")
.attr("d", function(d) { return "M" + d.join("L") + "Z"; })
.attr("name", function(d) { return d.point.androg.name; })
.attr("year", function(d) { return d.point.date.getFullYear(); })
.datum(function(d) { return d.point; })
.on("mouseover", voronoiMouseover)
.on("mouseout", voronoiMouseout);
function voronoiMouseover(d) {
d3.select(d.androg.line).classed("androg--hover", true);
d.androg.line.parentNode.appendChild(d.androg.line);
focus.attr("transform", "translate(" + d.p[0] + "," + d.p[1] + ")");
focus.select("text").text(d.androg.name + ": " + d.value.slice(0, 4));
highlightRectName(d.androg.name);
}
function voronoiMouseout(d) {
removeAllHighlights();
}
// rectangles
var tick_years = x.ticks(DECADES_SHOWN);
var distance_between_ticks = x(tick_years[1]) - x(tick_years[0]);
var BUFFER_BETWEEN_RECTS = 2;
var RECT_INNER_BORDER_BUFFER = 3;
var named_nested_by_decade = d3.nest()
.key(function(d) { return d.year_starting_steady_decade.getFullYear(); })
.entries(androgs);
var interactive_rects_group = svg.append("g")
.attr("class", "axis axis--rect");
var interactive_rects = interactive_rects_group.selectAll(".interactive_rects")
.data(named_nested_by_decade)
.enter().append("g");
var rectangles = interactive_rects.append("rect")
.attr("x", function(d) {
d.key_datetime = yearFormat.parse(d.key);
return getRectX(d.key_datetime);
})
.attr("y", getRectY())
.attr("width", getRectWidth())
.attr("height", function(d) { return getRectHeight(d); })
.attr("year", function(d) { return d.key; })
.attr("classed", "axis--rect")
.on("mouseover", rectMouseover)
.on("mouseout", rectMouseout);
var rectangle_text_parents = interactive_rects.append("text")
.attr("x", function(d) { return getRectX(d.key_datetime); })
.attr("y", getRectY())
.attr("transform", "translate(" + (getRectWidth() / 2) + "," + RECT_INNER_BORDER_BUFFER + ")")
.style("text-anchor", "middle");
var rectange_text_tspans = rectangle_text_parents.selectAll("tspan")
.data(function(d) {return d.values; })
.enter().append("tspan")
.attr("x", function(d) { return getRectX(d.year_starting_steady_decade) })
.attr("dy", "11")
.on("mouseover", rectTextMouseover)
.on("mouseout", rectTextMouseout)
.text(function(d) {return d.name;} );
function getRectX(d_datetime) {
return Math.floor(x(d_datetime) + BUFFER_BETWEEN_RECTS);
}
function getRectY() {
return height + margin.bottom/5;
}
function getRectWidth() {
return Math.floor(distance_between_ticks - BUFFER_BETWEEN_RECTS);
}
function getRectHeight(d) {
return 11*d.values.length + 3*RECT_INNER_BORDER_BUFFER;
}
function getNamesFromListOfNameObjs(list_of_name_objs) {
return list_of_name_objs.map(function(value) { return value.name; });
}
function rectMouseover(d) {
d3.selectAll(".androg--path")
.data(d.values, function(d_val) { return d_val.name; })
.classed("androg--hover", true);
}
function rectMouseout(d) {
removeAllHighlights();
}
function rectTextMouseover(d) {
highlightRectName(d.name);
// get the corresponding voronoi to current highlighted text
middle_of_current_decade = d.year_starting_steady_decade.getFullYear() + 5;
target_voronoi_sel = d3.selectAll(".voronoi path")
.filter(function(voronoi_d) { return voronoi_d.androg.name == d.name; })
.filter(function(voronoi_d) { return middle_of_current_decade == voronoi_d.date.getFullYear(); });
voronoiMouseover(target_voronoi_sel[0][0].__data__);
}
function rectTextMouseout(d) {
removeAllHighlights();
}
function removeAllHighlights() {
d3.selectAll(".androg--path")
.classed("androg--hover", false);
d3.selectAll(".axis--rect--text")
.classed("axis--rect--text", false);
focus.attr("transform", "translate(-100,-100)");
}
function highlightRectName(name) {
d3.selectAll("tspan")
.filter(function(tspan_d) { return tspan_d.name == name; })
.classed("axis--rect--text", true);
}
function getUTCStringNoTime(js_date) {
return js_date.toUTCString().split(' ').slice(0,4).join(' ')
}
});
});
function closestPoint(pathNode, point) {
var pathLength = pathNode.getTotalLength(),
precision = pathLength / pathNode.pathSegList.numberOfItems * .5,
best,
bestLength,
bestDistance = Infinity;
// linear scan for coarse approximation
for (var scan, scanLength = 0, scanDistance; scanLength <= pathLength; scanLength += precision) {
if ((scanDistance = distance2(scan = pathNode.getPointAtLength(scanLength))) < bestDistance) {
best = scan, bestLength = scanLength, bestDistance = scanDistance;
}
}
// binary search for precise estimate
precision *= .5;
while (precision > .5) {
var before,
after,
beforeLength,
afterLength,
beforeDistance,
afterDistance;
if ((beforeLength = bestLength - precision) >= 0 && (beforeDistance = distance2(before = pathNode.getPointAtLength(beforeLength))) < bestDistance) {
best = before, bestLength = beforeLength, bestDistance = beforeDistance;
} else if ((afterLength = bestLength + precision) <= pathLength && (afterDistance = distance2(after = pathNode.getPointAtLength(afterLength))) < bestDistance) {
best = after, bestLength = afterLength, bestDistance = afterDistance;
} else {
precision *= .5;
}
}
best = [best.x, best.y];
best.distance = Math.sqrt(bestDistance);
return best;
function distance2(p) {
var dx = p.x - point[0],
dy = p.y - point[1];
return dx * dx + dy * dy;
}
}
function type(d, i) {
if (!i) years = Object.keys(d).map(yearFormat.parse).filter(Number);
var androg = {
year_starting_steady_decade: yearFormat.parse(d.year_starting_steady_decade),
name: d.name.replace(/ (msa|necta div|met necta|met div)$/i, ""),
values: null
};
androg.values = years.map(function(m) {
return {
androg: androg,
date: m,
value: d[yearFormat(m)]
};
});
return androg;
}
</script>
{
"Jessie": {
"Thu, 01 Jan 1987": {
"y": 164.35411071777344,
"x": 453.639404296875,
"distance": 1.45836654360795
},
"Wed, 01 Jan 1969": {
"y": 237.7274932861328,
"x": 150.82504272460938,
"distance": 1.8486885212519184
},
"Tue, 01 Jan 2008": {
"y": 171.5945587158203,
"x": 806.1757202148438,
"distance": 2.6408018070699697
},
"Tue, 01 Jan 1991": {
"y": 174.0668487548828,
"x": 520.228271484375,
"distance": 0.4528986591548467
},
"Sun, 01 Jan 2012": {
"y": 146.14088439941406,
"x": 872.7435302734375,
"distance": 0.6158897650176185
},
"Wed, 01 Jan 1997": {
"y": 159.70639038085938,
"x": 621.3587036132812,
"distance": 0.3947592808026584
},
"Sat, 01 Jan 1994": {
"y": 152.20794677734375,
"x": 571.91650390625,
"distance": 2.948973779903922
},
"Mon, 01 Jan 1979": {
"y": 198.63427734375,
"x": 318.8259582519531,
"distance": 1.0580245883452783
},
"Sat, 01 Jan 1983": {
"y": 188.6673126220703,
"x": 386.004638671875,
"distance": 3.9887391115491853
},
"Fri, 01 Jan 1965": {
"y": 222.9564208984375,
"x": 84.94917297363281,
"distance": 2.4529210697274815
},
"Thu, 01 Jan 1976": {
"y": 221.57339477539062,
"x": 268.5191650390625,
"distance": 1.5178002568899085
},
"Sun, 01 Jan 1978": {
"y": 201.17538452148438,
"x": 304.2294921875,
"distance": 3.9332460615714173
},
"Fri, 01 Jan 1999": {
"y": 150.0685577392578,
"x": 655.0812377929688,
"distance": 0.45805913257536174
},
"Sun, 01 Jan 1961": {
"y": 226.76467895507812,
"x": 16.846073150634766,
"distance": 0.7814109161827943
},
"Sat, 01 Jan 2000": {
"y": 148.66114807128906,
"x": 670.136962890625,
"distance": 4.206835171094017
},
"Tue, 01 Jan 1985": {
"y": 170.8789520263672,
"x": 419.3098449707031,
"distance": 0.8831757428552535
},
"Sat, 01 Jan 2005": {
"y": 178.2508544921875,
"x": 756.2149658203125,
"distance": 4.644107098883725
},
"Mon, 01 Jan 1996": {
"y": 158.77737426757812,
"x": 604.9114379882812,
"distance": 1.6407652745056889
},
"Mon, 01 Jan 2007": {
"y": 174.40060424804688,
"x": 788.8174438476562,
"distance": 1.771824735690817
},
"Tue, 01 Jan 1974": {
"y": 229.62026977539062,
"x": 234.78729248046875,
"distance": 0.5324764761798508
},
"Fri, 01 Jan 1971": {
"y": 232.65884399414062,
"x": 184.34609985351562,
"distance": 1.6833379610398684
},
"Wed, 01 Jan 1964": {
"y": 232.42648315429688,
"x": 66.43755340576172,
"distance": 1.8590558416037037
},
"Sun, 01 Jan 2006": {
"y": 174.88868713378906,
"x": 772.8200073242188,
"distance": 2.2269538041119787
},
"Thu, 01 Jan 2009": {
"y": 174.4008026123047,
"x": 822.453369140625,
"distance": 3.181764371528154
},
"Thu, 01 Jan 1970": {
"y": 233.66014099121094,
"x": 167.9437255859375,
"distance": 0.8097222168722371
},
"Mon, 01 Jan 1990": {
"y": 177.24798583984375,
"x": 504.1748962402344,
"distance": 2.7472325602170273
},
"Mon, 01 Jan 1973": {
"y": 232.65858459472656,
"x": 218.513671875,
"distance": 0.9839708899735402
},
"Mon, 01 Jan 2001": {
"y": 164.62826538085938,
"x": 690.035400390625,
"distance": 3.343625609118246
},
"Thu, 01 Jan 1981": {
"y": 177.8830108642578,
"x": 353.78375244140625,
"distance": 5.173825034696814
},
"Sun, 01 Jan 1995": {
"y": 151.86111450195312,
"x": 587.5540771484375,
"distance": 1.44494685980794
},
"Sat, 01 Jan 1977": {
"y": 219.72740173339844,
"x": 283.75341796875,
"distance": 4.277089002840527
},
"Fri, 01 Jan 1982": {
"y": 182.89967346191406,
"x": 369.6666259765625,
"distance": 0.2535217822716225
},
"Sat, 01 Jan 1966": {
"y": 223.6284942626953,
"x": 100.20097351074219,
"distance": 1.1428273886756783
},
"Tue, 01 Jan 1963": {
"y": 234.4124298095703,
"x": 50.700889587402344,
"distance": 1.079049200057366
},
"Sun, 01 Jan 1984": {
"y": 179.4926300048828,
"x": 403.3208923339844,
"distance": 1.0732767217145418
},
"Fri, 01 Jan 2010": {
"y": 166.7513427734375,
"x": 839.2155151367188,
"distance": 0.5365587122760985
},
"Mon, 01 Jan 1968": {
"y": 235.36647033691406,
"x": 134.49363708496094,
"distance": 0.22483182250485445
},
"Fri, 01 Jan 1988": {
"y": 165.16864013671875,
"x": 470.17095947265625,
"distance": 1.0830024269833352
},
"Wed, 01 Jan 1986": {
"y": 161.9559326171875,
"x": 436.8135070800781,
"distance": 3.323915492806228
},
"Fri, 01 Jan 1960": {
"y": 220.0,
"x": 0.0,
"distance": 2.842170943040401e-14
},
"Fri, 01 Jan 1993": {
"y": 165.10845947265625,
"x": 552.990966796875,
"distance": 3.1034841568745297
},
"Thu, 01 Jan 2004": {
"y": 168.5312957763672,
"x": 737.9301147460938,
"distance": 3.9806120002523806
},
"Wed, 01 Jan 1992": {
"y": 167.72349548339844,
"x": 537.7758178710938,
"distance": 1.6691033948228042
},
"Mon, 01 Jan 1962": {
"y": 230.7046661376953,
"x": 33.47816848754883,
"distance": 0.3731584992384261
},
"Wed, 01 Jan 1975": {
"y": 225.35118103027344,
"x": 251.88528442382812,
"distance": 0.14713649736882461
},
"Sun, 01 Jan 1989": {
"y": 169.7303466796875,
"x": 486.561767578125,
"distance": 0.9532998130887931
},
"Sat, 01 Jan 2011": {
"y": 153.81813049316406,
"x": 856.882080078125,
"distance": 1.1773766875573146
},
"Sun, 01 Jan 1967": {
"y": 230.8800048828125,
"x": 118.00709533691406,
"distance": 0.8564357822283782
},
"Tue, 01 Jan 2013": {
"y": 136.78628540039062,
"x": 889.54150390625,
"distance": 0.5343175143624724
},
"Wed, 01 Jan 2003": {
"y": 169.5301055908203,
"x": 722.046630859375,
"distance": 1.8364954864712344
},
"Tue, 01 Jan 2002": {
"y": 167.84010314941406,
"x": 705.0664672851562,
"distance": 0.8147226358488521
},
"Thu, 01 Jan 1998": {
"y": 156.76634216308594,
"x": 637.6279907226562,
"distance": 0.8696239020962336
},
"Sat, 01 Jan 1972": {
"y": 236.7561798095703,
"x": 201.4473114013672,
"distance": 2.7033211316392807
},
"Tue, 01 Jan 1980": {
"y": 193.4160614013672,
"x": 334.3144226074219,
"distance": 2.4042130511092528
}
},
"Infant": {
"Thu, 01 Jan 1987": {
"y": 212.42645263671875,
"x": 453.2498779296875,
"distance": 18.774071431193352
},
"Wed, 01 Jan 1969": {
"y": 340.0,
"x": 151.00070190429688,
"distance": 0.1599985451065038
},
"Tue, 01 Jan 2008": {
"y": 184.6738739013672,
"x": 801.4608764648438,
"distance": 4.817989565137588
},
"Tue, 01 Jan 1991": {
"y": 183.72413635253906,
"x": 520.9970092773438,
"distance": 3.3858681032079896
},
"Sun, 01 Jan 2012": {
"y": 335.3982849121094,
"x": 880.5579833984375,
"distance": 8.700756425923744
},
"Wed, 01 Jan 1997": {
"y": 180.8624725341797,
"x": 620.1905517578125,
"distance": 6.819794689433892
},
"Sat, 01 Jan 1994": {
"y": 176.66305541992188,
"x": 570.79638671875,
"distance": 0.6273494679153641
},
"Mon, 01 Jan 1979": {
"y": 340.0,
"x": 319.4581298828125,
"distance": 0.40239353279440593
},
"Sat, 01 Jan 1983": {
"y": 335.3115234375,
"x": 379.8396911621094,
"distance": 7.920085046486793
},
"Fri, 01 Jan 1965": {
"y": 340.0,
"x": 83.79228973388672,
"distance": 0.20120166546242046
},
"Thu, 01 Jan 1976": {
"y": 340.0,
"x": 268.8336181640625,
"distance": 0.16478196384554167
},
"Sun, 01 Jan 1978": {
"y": 340.0,
"x": 302.00140380859375,
"distance": 0.2740236411711976
},
"Fri, 01 Jan 1999": {
"y": 170.34532165527344,
"x": 655.237060546875,
"distance": 1.8452392365005958
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.583890914916992,
"distance": 0.24239143437790744
},
"Sat, 01 Jan 2000": {
"y": 171.83099365234375,
"x": 671.6265258789062,
"distance": 0.5652121363024787
},
"Tue, 01 Jan 1985": {
"y": 173.7467041015625,
"x": 423.7754211425781,
"distance": 9.227527749634612
},
"Sat, 01 Jan 2005": {
"y": 184.41542053222656,
"x": 750.707275390625,
"distance": 5.1054203110586736
},
"Mon, 01 Jan 1996": {
"y": 175.7965850830078,
"x": 603.7425537109375,
"distance": 3.297092703837234
},
"Mon, 01 Jan 2007": {
"y": 157.08482360839844,
"x": 793.1929321289062,
"distance": 4.270502736256291
},
"Tue, 01 Jan 1974": {
"y": 340.0,
"x": 234.79298400878906,
"distance": 0.3152343909216597
},
"Fri, 01 Jan 1971": {
"y": 340.0,
"x": 185.04132080078125,
"distance": 0.3200025508716351
},
"Wed, 01 Jan 1964": {
"y": 340.0,
"x": 67.20840454101562,
"distance": 0.04119549096138542
},
"Sun, 01 Jan 2006": {
"y": 77.94357299804688,
"x": 773.5972290039062,
"distance": 46.69340184735407
},
"Thu, 01 Jan 2009": {
"y": 332.5072021484375,
"x": 829.5092163085938,
"distance": 10.035769786816498
},
"Thu, 01 Jan 1970": {
"y": 340.0,
"x": 167.58457946777344,
"distance": 0.35642988188305935
},
"Mon, 01 Jan 1990": {
"y": 173.226806640625,
"x": 502.98468017578125,
"distance": 1.3206997554426916
},
"Mon, 01 Jan 1973": {
"y": 340.0,
"x": 218.20909118652344,
"distance": 0.11881831293419509
},
"Mon, 01 Jan 2001": {
"y": 171.83860778808594,
"x": 688.1063842773438,
"distance": 2.644081341957241
},
"Thu, 01 Jan 1981": {
"y": 340.0,
"x": 352.6258850097656,
"distance": 0.036442589800458336
},
"Sun, 01 Jan 1995": {
"y": 177.04849243164062,
"x": 587.3207397460938,
"distance": 1.057409752998651
},
"Sat, 01 Jan 1977": {
"y": 340.0,
"x": 285.4175109863281,
"distance": 0.07760756318373296
},
"Fri, 01 Jan 1982": {
"y": 340.0,
"x": 369.20977783203125,
"distance": 0.2328586677879798
},
"Sat, 01 Jan 1966": {
"y": 340.0,
"x": 100.37618255615234,
"distance": 0.3976177434499135
},
"Tue, 01 Jan 1963": {
"y": 340.0,
"x": 50.62451171875,
"distance": 0.23761156894887137
},
"Sun, 01 Jan 1984": {
"y": 222.40509033203125,
"x": 404.94970703125,
"distance": 2.057226486915624
},
"Fri, 01 Jan 2010": {
"y": 332.4849548339844,
"x": 832.6194458007812,
"distance": 10.26582197440574
},
"Mon, 01 Jan 1968": {
"y": 340.0,
"x": 134.41680908203125,
"distance": 0.08239098192277083
},
"Fri, 01 Jan 1988": {
"y": 173.91954040527344,
"x": 474.33367919921875,
"distance": 5.029947841685968
},
"Wed, 01 Jan 1986": {
"y": 180.37510681152344,
"x": 433.9314880371094,
"distance": 3.2694991238416597
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 175.05345153808594,
"x": 554.3463745117188,
"distance": 2.064047329318788
},
"Thu, 01 Jan 2004": {
"y": 199.98561096191406,
"x": 739.7443237304688,
"distance": 8.450090687092468
},
"Wed, 01 Jan 1992": {
"y": 180.9237518310547,
"x": 537.0546264648438,
"distance": 0.38464754463175566
},
"Mon, 01 Jan 1962": {
"y": 340.0,
"x": 34.040618896484375,
"distance": 0.4340276469363644
},
"Wed, 01 Jan 1975": {
"y": 340.0,
"x": 252.2497100830078,
"distance": 0.3611827830439722
},
"Sun, 01 Jan 1989": {
"y": 168.1978302001953,
"x": 487.35528564453125,
"distance": 1.7760631300380134
},
"Sat, 01 Jan 2011": {
"y": 184.6738739013672,
"x": 801.4608764648438,
"distance": 56.85864647160206
},
"Sun, 01 Jan 1967": {
"y": 340.0,
"x": 117.8329086303711,
"distance": 0.27879943051573264
},
"Tue, 01 Jan 2013": {
"y": 340.0,
"x": 890.0,
"distance": 0.0
},
"Wed, 01 Jan 2003": {
"y": 183.8223876953125,
"x": 719.7349853515625,
"distance": 4.193728101597941
},
"Tue, 01 Jan 2002": {
"y": 180.17735290527344,
"x": 706.31591796875,
"distance": 2.455869231539704
},
"Thu, 01 Jan 1998": {
"y": 166.33465576171875,
"x": 639.4691162109375,
"distance": 6.169434976662932
},
"Sat, 01 Jan 1972": {
"y": 340.0,
"x": 201.6251983642578,
"distance": 0.12357121409510796
},
"Tue, 01 Jan 1980": {
"y": 340.0,
"x": 336.0420227050781,
"distance": 0.2059774548069413
}
},
"Rene": {
"Thu, 01 Jan 1987": {
"y": 271.1233825683594,
"x": 452.8576965332031,
"distance": 1.2330261191004852
},
"Wed, 01 Jan 1969": {
"y": 187.66993713378906,
"x": 150.4004364013672,
"distance": 1.1341884291040736
},
"Tue, 01 Jan 2008": {
"y": 318.6751403808594,
"x": 805.6568603515625,
"distance": 1.920095540308723
},
"Tue, 01 Jan 1991": {
"y": 292.4505310058594,
"x": 520.78955078125,
"distance": 1.4132326823009236
},
"Sun, 01 Jan 2012": {
"y": 322.0356140136719,
"x": 873.3634643554688,
"distance": 3.3685074173221348
},
"Wed, 01 Jan 1997": {
"y": 294.7959899902344,
"x": 621.3582153320312,
"distance": 1.9294232449334658
},
"Sat, 01 Jan 1994": {
"y": 294.5275573730469,
"x": 570.642333984375,
"distance": 1.4424766295657432
},
"Mon, 01 Jan 1979": {
"y": 248.26307678222656,
"x": 319.49420166015625,
"distance": 3.1928144985135667
},
"Sat, 01 Jan 1983": {
"y": 263.9813537597656,
"x": 388.1938781738281,
"distance": 3.765566256900935
},
"Fri, 01 Jan 1965": {
"y": 183.4512176513672,
"x": 83.84026336669922,
"distance": 0.1941167816537996
},
"Thu, 01 Jan 1976": {
"y": 240.18344116210938,
"x": 269.081787109375,
"distance": 2.6555164818623997
},
"Sun, 01 Jan 1978": {
"y": 240.74148559570312,
"x": 301.5257873535156,
"distance": 1.8136888978956085
},
"Fri, 01 Jan 1999": {
"y": 300.82061767578125,
"x": 655.0527954101562,
"distance": 0.6530319787101085
},
"Sun, 01 Jan 1961": {
"y": 152.0875701904297,
"x": 16.687715530395508,
"distance": 0.9444174806296581
},
"Sat, 01 Jan 2000": {
"y": 301.0263366699219,
"x": 671.4193115234375,
"distance": 1.3960785699771778
},
"Tue, 01 Jan 1985": {
"y": 268.90069580078125,
"x": 419.7214050292969,
"distance": 0.38875153410920976
},
"Sat, 01 Jan 2005": {
"y": 314.2871398925781,
"x": 755.5333251953125,
"distance": 2.2769736571774337
},
"Mon, 01 Jan 1996": {
"y": 297.1115417480469,
"x": 604.6471557617188,
"distance": 0.7458200590710196
},
"Mon, 01 Jan 2007": {
"y": 320.71380615234375,
"x": 788.8955078125,
"distance": 0.9179243293721838
},
"Tue, 01 Jan 1974": {
"y": 228.58399963378906,
"x": 236.32676696777344,
"distance": 2.623547940813328
},
"Fri, 01 Jan 1971": {
"y": 205.73880004882812,
"x": 184.30691528320312,
"distance": 2.4720441813324037
},
"Wed, 01 Jan 1964": {
"y": 181.18832397460938,
"x": 68.95362854003906,
"distance": 3.7658549481473043
},
"Sun, 01 Jan 2006": {
"y": 319.63824462890625,
"x": 772.6514282226562,
"distance": 1.352197009596212
},
"Thu, 01 Jan 2009": {
"y": 322.7821350097656,
"x": 823.1062622070312,
"distance": 0.706789335858523
},
"Thu, 01 Jan 1970": {
"y": 204.5413818359375,
"x": 169.11407470703125,
"distance": 4.1392587811198105
},
"Mon, 01 Jan 1990": {
"y": 288.6040954589844,
"x": 504.4576721191406,
"distance": 1.1676330338683243
},
"Mon, 01 Jan 1973": {
"y": 215.5577850341797,
"x": 217.12948608398438,
"distance": 2.6079431342668133
},
"Mon, 01 Jan 2001": {
"y": 305.7806396484375,
"x": 688.728271484375,
"distance": 0.5780221570407684
},
"Thu, 01 Jan 1981": {
"y": 239.4291534423828,
"x": 352.9944763183594,
"distance": 1.0508245232578433
},
"Sun, 01 Jan 1995": {
"y": 297.54998779296875,
"x": 587.806640625,
"distance": 1.0211545659239798
},
"Sat, 01 Jan 1977": {
"y": 239.2285614013672,
"x": 285.3591613769531,
"distance": 0.8920441733418062
},
"Fri, 01 Jan 1982": {
"y": 241.79200744628906,
"x": 367.2324523925781,
"distance": 3.7438047024831116
},
"Sat, 01 Jan 1966": {
"y": 183.3477020263672,
"x": 100.70836639404297,
"distance": 1.494935063978432
},
"Tue, 01 Jan 1963": {
"y": 160.21128845214844,
"x": 48.98019027709961,
"distance": 2.2584442462711776
},
"Sun, 01 Jan 1984": {
"y": 267.6626892089844,
"x": 402.8536682128906,
"distance": 0.3090986329853578
},
"Fri, 01 Jan 2010": {
"y": 323.5903015136719,
"x": 839.2972412109375,
"distance": 2.16129838297193
},
"Mon, 01 Jan 1968": {
"y": 179.10626220703125,
"x": 134.5659637451172,
"distance": 4.431156514833238
},
"Fri, 01 Jan 1988": {
"y": 277.08203125,
"x": 470.35565185546875,
"distance": 1.5810258583357983
},
"Wed, 01 Jan 1986": {
"y": 269.1778259277344,
"x": 436.6319885253906,
"distance": 0.2342562041254045
},
"Fri, 01 Jan 1960": {
"y": 149.45745849609375,
"x": 0.0,
"distance": 1.4299235147063882e-06
},
"Fri, 01 Jan 1993": {
"y": 294.6554870605469,
"x": 554.2705688476562,
"distance": 1.5936557400960072
},
"Thu, 01 Jan 2004": {
"y": 315.7593994140625,
"x": 738.732421875,
"distance": 1.02666661550826
},
"Wed, 01 Jan 1992": {
"y": 291.5131530761719,
"x": 537.1322631835938,
"distance": 1.756735834616601
},
"Mon, 01 Jan 1962": {
"y": 152.58578491210938,
"x": 33.57600021362305,
"distance": 1.5666661281952747
},
"Wed, 01 Jan 1975": {
"y": 232.69175720214844,
"x": 251.06715393066406,
"distance": 1.8575783497377867
},
"Sun, 01 Jan 1989": {
"y": 279.64361572265625,
"x": 486.5182800292969,
"distance": 2.0644670004191923
},
"Sat, 01 Jan 2011": {
"y": 318.3331604003906,
"x": 856.39306640625,
"distance": 3.6152116986511196
},
"Sun, 01 Jan 1967": {
"y": 185.66680908203125,
"x": 116.82733154296875,
"distance": 3.5715552354580145
},
"Tue, 01 Jan 2013": {
"y": 316.13140869140625,
"x": 889.5400390625,
"distance": 0.5285769122721037
},
"Wed, 01 Jan 2003": {
"y": 314.6802062988281,
"x": 722.4480590820312,
"distance": 0.7782307409750359
},
"Tue, 01 Jan 2002": {
"y": 309.82879638671875,
"x": 705.1488037109375,
"distance": 0.46828545953158685
},
"Thu, 01 Jan 1998": {
"y": 298.7393493652344,
"x": 638.3099975585938,
"distance": 0.741734795776188
},
"Sat, 01 Jan 1972": {
"y": 211.53102111816406,
"x": 201.8280029296875,
"distance": 1.5263932047419955
},
"Tue, 01 Jan 1980": {
"y": 244.59283447265625,
"x": 335.8164978027344,
"distance": 0.18492481778215455
}
},
"Angel": {
"Thu, 01 Jan 1987": {
"y": 179.19808959960938,
"x": 453.32220458984375,
"distance": 2.2605262185861372
},
"Wed, 01 Jan 1969": {
"y": 200.29933166503906,
"x": 149.07489013671875,
"distance": 2.903660955184572
},
"Tue, 01 Jan 2008": {
"y": 282.9176330566406,
"x": 805.7958374023438,
"distance": 0.6821910961619699
},
"Tue, 01 Jan 1991": {
"y": 204.23150634765625,
"x": 519.8139038085938,
"distance": 2.3101585057107212
},
"Sun, 01 Jan 2012": {
"y": 284.0570983886719,
"x": 873.2597045898438,
"distance": 0.5016063551082582
},
"Wed, 01 Jan 1997": {
"y": 227.80038452148438,
"x": 621.1780395507812,
"distance": 0.4277537567672589
},
"Sat, 01 Jan 1994": {
"y": 228.6311798095703,
"x": 571.231689453125,
"distance": 0.8791632734341094
},
"Mon, 01 Jan 1979": {
"y": 146.9916534423828,
"x": 319.46112060546875,
"distance": 1.1264305449941343
},
"Sat, 01 Jan 1983": {
"y": 156.04852294921875,
"x": 386.2709655761719,
"distance": 0.750824696022868
},
"Fri, 01 Jan 1965": {
"y": 216.8401641845703,
"x": 84.10404205322266,
"distance": 1.454337481566394
},
"Thu, 01 Jan 1976": {
"y": 137.00271606445312,
"x": 267.6793212890625,
"distance": 2.391459504060689
},
"Sun, 01 Jan 1978": {
"y": 133.94827270507812,
"x": 301.7091369628906,
"distance": 0.9372993798368247
},
"Fri, 01 Jan 1999": {
"y": 227.39111328125,
"x": 654.7026977539062,
"distance": 1.572266187829689
},
"Sun, 01 Jan 1961": {
"y": 192.33042907714844,
"x": 20.088136672973633,
"distance": 13.321390547653662
},
"Sat, 01 Jan 2000": {
"y": 233.50527954101562,
"x": 672.2070922851562,
"distance": 1.2238105244268125
},
"Tue, 01 Jan 1985": {
"y": 160.2899627685547,
"x": 419.2261962890625,
"distance": 1.6494084980132346
},
"Sat, 01 Jan 2005": {
"y": 278.6334228515625,
"x": 756.3677368164062,
"distance": 1.0131984902866915
},
"Mon, 01 Jan 1996": {
"y": 228.29421997070312,
"x": 604.3795166015625,
"distance": 0.9958316226423476
},
"Mon, 01 Jan 2007": {
"y": 283.2345275878906,
"x": 789.0026245117188,
"distance": 0.38052080277952305
},
"Tue, 01 Jan 1974": {
"y": 142.43099975585938,
"x": 236.48272705078125,
"distance": 5.121213923361961
},
"Fri, 01 Jan 1971": {
"y": 136.7392120361328,
"x": 184.9226837158203,
"distance": 0.340654914743609
},
"Wed, 01 Jan 1964": {
"y": 211.916748046875,
"x": 66.83634948730469,
"distance": 0.6480082473198867
},
"Sun, 01 Jan 2006": {
"y": 283.9559020996094,
"x": 772.8092651367188,
"distance": 1.398718291214181
},
"Thu, 01 Jan 2009": {
"y": 285.3711853027344,
"x": 823.0128784179688,
"distance": 0.2939297353812092
},
"Thu, 01 Jan 1970": {
"y": 164.78858947753906,
"x": 168.58567810058594,
"distance": 0.7670367337994917
},
"Mon, 01 Jan 1990": {
"y": 199.48477172851562,
"x": 504.3144226074219,
"distance": 1.550804214088665
},
"Mon, 01 Jan 1973": {
"y": 125.14170837402344,
"x": 217.32933044433594,
"distance": 1.2549895661785784
},
"Mon, 01 Jan 2001": {
"y": 237.2786865234375,
"x": 687.988525390625,
"distance": 1.5117072362207928
},
"Thu, 01 Jan 1981": {
"y": 145.9932403564453,
"x": 352.754150390625,
"distance": 4.227453244527919
},
"Sun, 01 Jan 1995": {
"y": 230.95213317871094,
"x": 587.7837524414062,
"distance": 1.2913596340832074
},
"Sat, 01 Jan 1977": {
"y": 128.72584533691406,
"x": 286.1062927246094,
"distance": 3.6414068284393757
},
"Fri, 01 Jan 1982": {
"y": 152.56788635253906,
"x": 369.9199523925781,
"distance": 1.411149556287468
},
"Sat, 01 Jan 1966": {
"y": 217.93748474121094,
"x": 100.29174041748047,
"distance": 1.597038209301048
},
"Tue, 01 Jan 1963": {
"y": 208.45603942871094,
"x": 50.391021728515625,
"distance": 0.08975073472318004
},
"Sun, 01 Jan 1984": {
"y": 156.05885314941406,
"x": 403.0830993652344,
"distance": 0.868980762778616
},
"Fri, 01 Jan 2010": {
"y": 286.593017578125,
"x": 839.7600708007812,
"distance": 0.797298985980881
},
"Mon, 01 Jan 1968": {
"y": 211.99154663085938,
"x": 134.7857208251953,
"distance": 0.49062173034296475
},
"Fri, 01 Jan 1988": {
"y": 179.06356811523438,
"x": 469.5093688964844,
"distance": 3.1650897267498475
},
"Wed, 01 Jan 1986": {
"y": 172.8039093017578,
"x": 437.3394775390625,
"distance": 0.956314566732619
},
"Fri, 01 Jan 1960": {
"y": 242.38710021972656,
"x": 0.0,
"distance": 3.4455330251148553e-06
},
"Fri, 01 Jan 1993": {
"y": 222.00331115722656,
"x": 553.9051513671875,
"distance": 0.9097923259978496
},
"Thu, 01 Jan 2004": {
"y": 267.1099548339844,
"x": 738.2780151367188,
"distance": 0.6834357125098011
},
"Wed, 01 Jan 1992": {
"y": 216.85206604003906,
"x": 538.5370483398438,
"distance": 2.0545787772470505
},
"Mon, 01 Jan 1962": {
"y": 203.18695068359375,
"x": 35.2215576171875,
"distance": 3.1634353837786406
},
"Wed, 01 Jan 1975": {
"y": 139.6802978515625,
"x": 252.27687072753906,
"distance": 1.7028656636070967
},
"Sun, 01 Jan 1989": {
"y": 189.69235229492188,
"x": 487.2905578613281,
"distance": 0.40898529443860043
},
"Sat, 01 Jan 2011": {
"y": 284.80169677734375,
"x": 856.474853515625,
"distance": 0.3305862786709133
},
"Sun, 01 Jan 1967": {
"y": 220.83314514160156,
"x": 117.35110473632812,
"distance": 3.329777972772956
},
"Tue, 01 Jan 2013": {
"y": 285.5927734375,
"x": 890.0,
"distance": 3.6342038924885856e-06
},
"Wed, 01 Jan 2003": {
"y": 257.9610900878906,
"x": 722.1359252929688,
"distance": 0.561736933286778
},
"Tue, 01 Jan 2002": {
"y": 246.80224609375,
"x": 705.1869506835938,
"distance": 0.1353501354810873
},
"Thu, 01 Jan 1998": {
"y": 226.80416870117188,
"x": 637.9624633789062,
"distance": 0.19236531464587406
},
"Sat, 01 Jan 1972": {
"y": 117.81891632080078,
"x": 202.90260314941406,
"distance": 5.90476408597522
},
"Tue, 01 Jan 1980": {
"y": 151.74615478515625,
"x": 335.2191467285156,
"distance": 3.324453664156122
}
},
"Devyn": {
"Thu, 01 Jan 1987": {
"y": 132.1439666748047,
"x": 453.8035888671875,
"distance": 2.442371124645273
},
"Wed, 01 Jan 1969": {
"y": 340.0,
"x": 151.32122802734375,
"distance": 0.1605275779403712
},
"Tue, 01 Jan 2008": {
"y": 168.6377716064453,
"x": 806.0380859375,
"distance": 4.789751839280637
},
"Tue, 01 Jan 1991": {
"y": 96.57667541503906,
"x": 520.9474487304688,
"distance": 2.2231071113357426
},
"Sun, 01 Jan 2012": {
"y": 135.25592041015625,
"x": 871.6870727539062,
"distance": 2.1434306214455163
},
"Wed, 01 Jan 1997": {
"y": 171.5303497314453,
"x": 621.4421997070312,
"distance": 2.146941353301456
},
"Sat, 01 Jan 1994": {
"y": 145.4384002685547,
"x": 568.86279296875,
"distance": 3.596287223224082
},
"Mon, 01 Jan 1979": {
"y": 335.4329528808594,
"x": 310.3839111328125,
"distance": 9.800942402963784
},
"Sat, 01 Jan 1983": {
"y": 109.06246948242188,
"x": 384.1759948730469,
"distance": 4.895566389573472
},
"Fri, 01 Jan 1965": {
"y": 340.0,
"x": 83.74087524414062,
"distance": 0.2526161552085142
},
"Thu, 01 Jan 1976": {
"y": 340.0,
"x": 268.852294921875,
"distance": 0.18345872165804167
},
"Sun, 01 Jan 1978": {
"y": 339.9994201660156,
"x": 302.6424560546875,
"distance": 0.3670290629348642
},
"Fri, 01 Jan 1999": {
"y": 172.41146850585938,
"x": 655.0984497070312,
"distance": 0.9946195577206248
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.89508819580078,
"distance": 0.06880584650588162
},
"Sat, 01 Jan 2000": {
"y": 170.44699096679688,
"x": 671.84033203125,
"distance": 1.9902592300838713
},
"Tue, 01 Jan 1985": {
"y": 134.65513610839844,
"x": 419.8937683105469,
"distance": 1.9732549624801188
},
"Sat, 01 Jan 2005": {
"y": 170.78848266601562,
"x": 755.7335815429688,
"distance": 5.611589716738674
},
"Mon, 01 Jan 1996": {
"y": 176.7855224609375,
"x": 603.8865356445312,
"distance": 2.4406733172680766
},
"Mon, 01 Jan 2007": {
"y": 164.4288330078125,
"x": 789.8623657226562,
"distance": 6.46763112418042
},
"Tue, 01 Jan 1974": {
"y": 340.0,
"x": 235.06210327148438,
"distance": 0.046115128226347224
},
"Fri, 01 Jan 1971": {
"y": 340.0,
"x": 184.3768310546875,
"distance": 0.3444871952221149
},
"Wed, 01 Jan 1964": {
"y": 340.0,
"x": 66.84578704833984,
"distance": 0.32142200171439583
},
"Sun, 01 Jan 2006": {
"y": 175.28684997558594,
"x": 771.8313598632812,
"distance": 6.722250760414646
},
"Thu, 01 Jan 2009": {
"y": 161.43991088867188,
"x": 823.4735717773438,
"distance": 1.4705785462794252
},
"Thu, 01 Jan 1970": {
"y": 340.0,
"x": 168.21632385253906,
"distance": 0.27531450288256565
},
"Mon, 01 Jan 1990": {
"y": 103.99022674560547,
"x": 505.3941650390625,
"distance": 2.4528561744297863
},
"Mon, 01 Jan 1973": {
"y": 340.0,
"x": 218.16700744628906,
"distance": 0.1609020531685701
},
"Mon, 01 Jan 2001": {
"y": 175.3507843017578,
"x": 688.6985473632812,
"distance": 0.20225890385845907
},
"Thu, 01 Jan 1981": {
"y": 327.9837341308594,
"x": 313.4692077636719,
"distance": 40.99379572458054
},
"Sun, 01 Jan 1995": {
"y": 171.84072875976562,
"x": 589.7952270507812,
"distance": 3.1830367930649173
},
"Sat, 01 Jan 1977": {
"y": 340.0,
"x": 285.74737548828125,
"distance": 0.25225693876939204
},
"Fri, 01 Jan 1982": {
"y": 112.76432800292969,
"x": 377.3345947265625,
"distance": 9.12591918182733
},
"Sat, 01 Jan 1966": {
"y": 340.0,
"x": 100.6359634399414,
"distance": 0.13783685966085102
},
"Tue, 01 Jan 1963": {
"y": 340.0,
"x": 50.685264587402344,
"distance": 0.2983644376012151
},
"Sun, 01 Jan 1984": {
"y": 131.97955322265625,
"x": 405.5726318359375,
"distance": 4.771340818885379
},
"Fri, 01 Jan 2010": {
"y": 155.22698974609375,
"x": 839.1749267578125,
"distance": 1.4845818569145202
},
"Mon, 01 Jan 1968": {
"y": 340.0,
"x": 134.4261474609375,
"distance": 0.09172936082902083
},
"Fri, 01 Jan 1988": {
"y": 132.32810974121094,
"x": 469.90557861328125,
"distance": 1.0395375866736047
},
"Wed, 01 Jan 1986": {
"y": 137.8404541015625,
"x": 436.41302490234375,
"distance": 3.2975005097236263
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 136.80113220214844,
"x": 557.0028076171875,
"distance": 4.211116356310864
},
"Thu, 01 Jan 2004": {
"y": 179.80001831054688,
"x": 737.4928588867188,
"distance": 2.6117903902629775
},
"Wed, 01 Jan 1992": {
"y": 102.43524169921875,
"x": 534.6591796875,
"distance": 3.690184976315609
},
"Mon, 01 Jan 1962": {
"y": 340.0,
"x": 33.79017639160156,
"distance": 0.18358514205355192
},
"Wed, 01 Jan 1975": {
"y": 340.0,
"x": 251.9571990966797,
"distance": 0.06867179671584722
},
"Sun, 01 Jan 1989": {
"y": 128.12025451660156,
"x": 485.1335144042969,
"distance": 3.3989148519916417
},
"Sat, 01 Jan 2011": {
"y": 144.3572235107422,
"x": 856.6201171875,
"distance": 1.0095149890627841
},
"Sun, 01 Jan 1967": {
"y": 340.0,
"x": 117.53105163574219,
"distance": 0.023057564113173612
},
"Tue, 01 Jan 2013": {
"y": 113.33333587646484,
"x": 890.0,
"distance": 2.5431315009427635e-06
},
"Wed, 01 Jan 2003": {
"y": 181.80325317382812,
"x": 722.3163452148438,
"distance": 0.2582160445049476
},
"Tue, 01 Jan 2002": {
"y": 180.6553955078125,
"x": 705.4830932617188,
"distance": 1.0006856550597951
},
"Thu, 01 Jan 1998": {
"y": 172.2272186279297,
"x": 638.2472534179688,
"distance": 0.4197083647714574
},
"Sat, 01 Jan 1972": {
"y": 340.0,
"x": 201.2719268798828,
"distance": 0.22970027027989204
},
"Tue, 01 Jan 1980": {
"y": 114.75767517089844,
"x": 376.3965759277344,
"distance": 44.22033992404899
}
},
"Paris": {
"Thu, 01 Jan 1987": {
"y": 119.91960906982422,
"x": 453.2915954589844,
"distance": 0.190075571593106
},
"Wed, 01 Jan 1969": {
"y": 188.8192596435547,
"x": 148.56398010253906,
"distance": 9.655008362402583
},
"Tue, 01 Jan 2008": {
"y": 31.09360694885254,
"x": 805.9558715820312,
"distance": 2.9516232225537027
},
"Tue, 01 Jan 1991": {
"y": 125.22586059570312,
"x": 520.257568359375,
"distance": 3.976726755920307
},
"Sun, 01 Jan 2012": {
"y": 24.22625732421875,
"x": 873.1891479492188,
"distance": 0.8429993450073122
},
"Wed, 01 Jan 1997": {
"y": 92.35505676269531,
"x": 622.690673828125,
"distance": 2.6418863489018056
},
"Sat, 01 Jan 1994": {
"y": 103.18896484375,
"x": 571.2301635742188,
"distance": 1.0873079995963701
},
"Mon, 01 Jan 1979": {
"y": 206.33316040039062,
"x": 320.62139892578125,
"distance": 2.700381498232964
},
"Sat, 01 Jan 1983": {
"y": 165.86660766601562,
"x": 387.2215270996094,
"distance": 2.5467368426625274
},
"Fri, 01 Jan 1965": {
"y": 168.1570587158203,
"x": 81.38835144042969,
"distance": 8.107033041237196
},
"Thu, 01 Jan 1976": {
"y": 210.48629760742188,
"x": 271.04351806640625,
"distance": 3.9601890732290035
},
"Sun, 01 Jan 1978": {
"y": 192.7430877685547,
"x": 302.3575134277344,
"distance": 7.564961702854329
},
"Fri, 01 Jan 1999": {
"y": 82.07052612304688,
"x": 655.0194702148438,
"distance": 2.907785961736446
},
"Sun, 01 Jan 1961": {
"y": 153.9802703857422,
"x": 18.931686401367188,
"distance": 3.1370550305746447
},
"Sat, 01 Jan 2000": {
"y": 82.54801177978516,
"x": 670.765869140625,
"distance": 3.546727533232599
},
"Tue, 01 Jan 1985": {
"y": 140.40570068359375,
"x": 419.1099853515625,
"distance": 0.773552986069951
},
"Sat, 01 Jan 2005": {
"y": 17.518749237060547,
"x": 755.6070556640625,
"distance": 0.3519326280082704
},
"Mon, 01 Jan 1996": {
"y": 104.3097152709961,
"x": 603.7506103515625,
"distance": 3.7542572023917486
},
"Mon, 01 Jan 2007": {
"y": 26.298259735107422,
"x": 789.1082153320312,
"distance": 0.7979204156384088
},
"Tue, 01 Jan 1974": {
"y": 203.26806640625,
"x": 233.88343811035156,
"distance": 1.512302235362513
},
"Fri, 01 Jan 1971": {
"y": 233.59857177734375,
"x": 185.40872192382812,
"distance": 1.782545382777307
},
"Wed, 01 Jan 1964": {
"y": 169.3579864501953,
"x": 67.07855987548828,
"distance": 4.365541460186442
},
"Sun, 01 Jan 2006": {
"y": 21.816043853759766,
"x": 772.7000732421875,
"distance": 0.2920726700971424
},
"Thu, 01 Jan 2009": {
"y": 26.261959075927734,
"x": 823.4658203125,
"distance": 1.530867048939596
},
"Thu, 01 Jan 1970": {
"y": 221.13047790527344,
"x": 170.12489318847656,
"distance": 2.8430604583135692
},
"Mon, 01 Jan 1990": {
"y": 122.15928649902344,
"x": 504.20947265625,
"distance": 3.9659914974134294
},
"Mon, 01 Jan 1973": {
"y": 193.80760192871094,
"x": 221.09027099609375,
"distance": 10.307111723445223
},
"Mon, 01 Jan 2001": {
"y": 71.36605834960938,
"x": 688.5977172851562,
"distance": 0.30105077711425265
},
"Thu, 01 Jan 1981": {
"y": 192.72145080566406,
"x": 353.5355529785156,
"distance": 1.3422154218289815
},
"Sun, 01 Jan 1995": {
"y": 103.1929931640625,
"x": 587.556640625,
"distance": 0.9077765071027791
},
"Sat, 01 Jan 1977": {
"y": 204.31298828125,
"x": 284.2273254394531,
"distance": 3.1416742337714574
},
"Fri, 01 Jan 1982": {
"y": 181.42515563964844,
"x": 368.6086730957031,
"distance": 1.2071161498464722
},
"Sat, 01 Jan 1966": {
"y": 196.39419555664062,
"x": 103.64595031738281,
"distance": 7.478311508978668
},
"Tue, 01 Jan 1963": {
"y": 160.8966522216797,
"x": 50.61273193359375,
"distance": 0.256421807076728
},
"Sun, 01 Jan 1984": {
"y": 159.65966796875,
"x": 401.7290954589844,
"distance": 2.854254199154155
},
"Fri, 01 Jan 2010": {
"y": 25.017133712768555,
"x": 839.7826538085938,
"distance": 0.17143988476882335
},
"Mon, 01 Jan 1968": {
"y": 195.02508544921875,
"x": 133.03890991210938,
"distance": 4.055336441394367
},
"Fri, 01 Jan 1988": {
"y": 127.60063934326172,
"x": 470.4703369140625,
"distance": 0.9409902606044961
},
"Wed, 01 Jan 1986": {
"y": 116.59146118164062,
"x": 438.365966796875,
"distance": 5.856394561315288
},
"Fri, 01 Jan 1960": {
"y": 181.3333282470703,
"x": 0.0,
"distance": 5.0862630303072365e-06
},
"Fri, 01 Jan 1993": {
"y": 108.65025329589844,
"x": 554.509033203125,
"distance": 0.35055747109553653
},
"Thu, 01 Jan 2004": {
"y": 17.3114070892334,
"x": 740.0160522460938,
"distance": 3.0177904407466905
},
"Wed, 01 Jan 1992": {
"y": 116.98484802246094,
"x": 537.6316528320312,
"distance": 0.751226909340562
},
"Mon, 01 Jan 1962": {
"y": 150.2678680419922,
"x": 33.06875991821289,
"distance": 2.8196375722506204
},
"Wed, 01 Jan 1975": {
"y": 226.77772521972656,
"x": 252.12985229492188,
"distance": 10.924055723601331
},
"Sun, 01 Jan 1989": {
"y": 128.55618286132812,
"x": 486.6085510253906,
"distance": 2.4628775548699773
},
"Sat, 01 Jan 2011": {
"y": 24.78694725036621,
"x": 856.1893310546875,
"distance": 0.3406978485195807
},
"Sun, 01 Jan 1967": {
"y": 195.36231994628906,
"x": 117.90967559814453,
"distance": 2.818466633373454
},
"Tue, 01 Jan 2013": {
"y": 26.64198112487793,
"x": 889.4041137695312,
"distance": 0.6077776455129539
},
"Wed, 01 Jan 2003": {
"y": 31.66366958618164,
"x": 723.0765380859375,
"distance": 1.1082786977378989
},
"Tue, 01 Jan 2002": {
"y": 57.55058288574219,
"x": 703.9304809570312,
"distance": 1.6021167351289884
},
"Thu, 01 Jan 1998": {
"y": 88.1888656616211,
"x": 637.9042358398438,
"distance": 1.6936526652950001
},
"Sat, 01 Jan 1972": {
"y": 231.6532745361328,
"x": 197.8655548095703,
"distance": 5.752680157564412
},
"Tue, 01 Jan 1980": {
"y": 208.51304626464844,
"x": 334.42901611328125,
"distance": 3.5491951551691665
}
},
"Shea": {
"Thu, 01 Jan 1987": {
"y": 181.16273498535156,
"x": 453.42657470703125,
"distance": 0.07078288823326258
},
"Wed, 01 Jan 1969": {
"y": 129.66119384765625,
"x": 155.08084106445312,
"distance": 7.398094114634917
},
"Tue, 01 Jan 2008": {
"y": 115.84011840820312,
"x": 805.2034912109375,
"distance": 5.605254440985503
},
"Tue, 01 Jan 1991": {
"y": 140.0584259033203,
"x": 522.8309326171875,
"distance": 3.2950826496634362
},
"Sun, 01 Jan 2012": {
"y": 143.93402099609375,
"x": 871.9690551757812,
"distance": 1.5437068856473504
},
"Wed, 01 Jan 1997": {
"y": 121.16985321044922,
"x": 619.7900390625,
"distance": 4.271241645469888
},
"Sat, 01 Jan 1994": {
"y": 139.3308563232422,
"x": 570.7750854492188,
"distance": 0.9574910473065142
},
"Mon, 01 Jan 1979": {
"y": 136.489990234375,
"x": 319.5975036621094,
"distance": 5.217381728973778
},
"Sat, 01 Jan 1983": {
"y": 163.50424194335938,
"x": 383.72674560546875,
"distance": 3.6125259848024633
},
"Fri, 01 Jan 1965": {
"y": 122.48855590820312,
"x": 84.92240142822266,
"distance": 13.543337671619003
},
"Thu, 01 Jan 1976": {
"y": 160.87046813964844,
"x": 268.37103271484375,
"distance": 1.222436087978143
},
"Sun, 01 Jan 1978": {
"y": 147.22784423828125,
"x": 300.87969970703125,
"distance": 2.6519228502784338
},
"Fri, 01 Jan 1999": {
"y": 116.0933609008789,
"x": 655.746826171875,
"distance": 3.37025545976277
},
"Sun, 01 Jan 1961": {
"y": 156.6172637939453,
"x": 16.4483642578125,
"distance": 0.8702695277584953
},
"Sat, 01 Jan 2000": {
"y": 116.79194641113281,
"x": 671.2338256835938,
"distance": 2.3294140402124173
},
"Tue, 01 Jan 1985": {
"y": 190.24208068847656,
"x": 420.0391540527344,
"distance": 3.9244977743746166
},
"Sat, 01 Jan 2005": {
"y": 121.27568817138672,
"x": 755.323974609375,
"distance": 4.1147515907215295
},
"Mon, 01 Jan 1996": {
"y": 123.71538543701172,
"x": 605.7594604492188,
"distance": 4.397031434384216
},
"Mon, 01 Jan 2007": {
"y": 122.92426300048828,
"x": 789.0396728515625,
"distance": 0.5435278610159846
},
"Tue, 01 Jan 1974": {
"y": 140.25350952148438,
"x": 232.9120330810547,
"distance": 5.74797781369213
},
"Fri, 01 Jan 1971": {
"y": 117.895751953125,
"x": 185.2666015625,
"distance": 4.5948881981187695
},
"Wed, 01 Jan 1964": {
"y": 110.56183624267578,
"x": 69.7901611328125,
"distance": 20.728458391763287
},
"Sun, 01 Jan 2006": {
"y": 128.7048797607422,
"x": 773.0081176757812,
"distance": 4.102423788604537
},
"Thu, 01 Jan 2009": {
"y": 128.3579559326172,
"x": 824.275146484375,
"distance": 3.316818976667998
},
"Thu, 01 Jan 1970": {
"y": 127.391357421875,
"x": 167.2056121826172,
"distance": 4.285120531324707
},
"Mon, 01 Jan 1990": {
"y": 163.41432189941406,
"x": 501.5645751953125,
"distance": 4.1944347548735745
},
"Mon, 01 Jan 1973": {
"y": 138.56362915039062,
"x": 219.4042205810547,
"distance": 4.401059895143822
},
"Mon, 01 Jan 2001": {
"y": 125.07466125488281,
"x": 687.6253662109375,
"distance": 1.631402586280301
},
"Thu, 01 Jan 1981": {
"y": 148.66641235351562,
"x": 352.60186767578125,
"distance": 0.5370463690716241
},
"Sun, 01 Jan 1995": {
"y": 138.79351806640625,
"x": 586.140869140625,
"distance": 4.082253265528309
},
"Sat, 01 Jan 1977": {
"y": 151.64544677734375,
"x": 285.990234375,
"distance": 1.8549257436921396
},
"Fri, 01 Jan 1982": {
"y": 154.83775329589844,
"x": 369.5540466308594,
"distance": 0.14901147981062834
},
"Sat, 01 Jan 1966": {
"y": 108.4643325805664,
"x": 102.50416564941406,
"distance": 8.639391777102572
},
"Tue, 01 Jan 1963": {
"y": 170.47735595703125,
"x": 44.960044860839844,
"distance": 9.353228672439164
},
"Sun, 01 Jan 1984": {
"y": 193.15223693847656,
"x": 405.625244140625,
"distance": 8.154367556317798
},
"Fri, 01 Jan 2010": {
"y": 133.39724731445312,
"x": 837.6321411132812,
"distance": 4.040415193542371
},
"Mon, 01 Jan 1968": {
"y": 156.30918884277344,
"x": 134.78639221191406,
"distance": 17.650087435423377
},
"Fri, 01 Jan 1988": {
"y": 169.04135131835938,
"x": 470.68243408203125,
"distance": 1.8447419202324322
},
"Wed, 01 Jan 1986": {
"y": 191.6297607421875,
"x": 436.08349609375,
"distance": 3.8885729443314285
},
"Fri, 01 Jan 1960": {
"y": 147.82608032226562,
"x": 0.0,
"distance": 6.634256124016247e-06
},
"Fri, 01 Jan 1993": {
"y": 138.76112365722656,
"x": 553.9929809570312,
"distance": 1.2026652480949913
},
"Thu, 01 Jan 2004": {
"y": 126.08287048339844,
"x": 738.8657836914062,
"distance": 0.4446365197357277
},
"Wed, 01 Jan 1992": {
"y": 135.9370880126953,
"x": 537.44287109375,
"distance": 1.4520149679907333
},
"Mon, 01 Jan 1962": {
"y": 169.32908630371094,
"x": 34.1257209777832,
"distance": 0.8483046991534334
},
"Wed, 01 Jan 1975": {
"y": 161.816162109375,
"x": 254.08316040039062,
"distance": 4.952190830565325
},
"Sun, 01 Jan 1989": {
"y": 166.00489807128906,
"x": 487.078857421875,
"distance": 0.5644736638649589
},
"Sat, 01 Jan 2011": {
"y": 151.4568328857422,
"x": 857.8396606445312,
"distance": 6.450338869651812
},
"Sun, 01 Jan 1967": {
"y": 119.78947448730469,
"x": 115.17662048339844,
"distance": 2.7119184359351234
},
"Tue, 01 Jan 2013": {
"y": 118.39488983154297,
"x": 889.6712036132812,
"distance": 0.6221951268141167
},
"Wed, 01 Jan 2003": {
"y": 133.92929077148438,
"x": 722.622802734375,
"distance": 0.8678006673530548
},
"Tue, 01 Jan 2002": {
"y": 140.2977294921875,
"x": 706.1453857421875,
"distance": 5.671794576804459
},
"Thu, 01 Jan 1998": {
"y": 109.38804626464844,
"x": 638.57275390625,
"distance": 6.351720882097964
},
"Sat, 01 Jan 1972": {
"y": 124.24015045166016,
"x": 200.8592071533203,
"distance": 1.253947793579436
},
"Tue, 01 Jan 1980": {
"y": 143.39321899414062,
"x": 336.67205810546875,
"distance": 1.490235424006968
}
},
"Jackie": {
"Thu, 01 Jan 1987": {
"y": 106.7884292602539,
"x": 454.60247802734375,
"distance": 3.795016901320544
},
"Wed, 01 Jan 1969": {
"y": 118.1639175415039,
"x": 152.0715789794922,
"distance": 2.0496093508212136
},
"Tue, 01 Jan 2008": {
"y": 149.2095489501953,
"x": 806.1749877929688,
"distance": 1.089869915004533
},
"Tue, 01 Jan 1991": {
"y": 132.61314392089844,
"x": 520.9962158203125,
"distance": 3.62308580697039
},
"Sun, 01 Jan 2012": {
"y": 166.5563201904297,
"x": 873.1686401367188,
"distance": 17.1403630260849
},
"Wed, 01 Jan 1997": {
"y": 169.60267639160156,
"x": 622.8565673828125,
"distance": 1.987195083732021
},
"Sat, 01 Jan 1994": {
"y": 142.677734375,
"x": 571.44287109375,
"distance": 3.805289790648078
},
"Mon, 01 Jan 1979": {
"y": 127.99938201904297,
"x": 318.83209228515625,
"distance": 2.018899565045263
},
"Sat, 01 Jan 1983": {
"y": 112.7668685913086,
"x": 386.2964172363281,
"distance": 1.127473989249587
},
"Fri, 01 Jan 1965": {
"y": 89.79769897460938,
"x": 84.0149154663086,
"distance": 0.5630691126853667
},
"Thu, 01 Jan 1976": {
"y": 143.23883056640625,
"x": 268.6077880859375,
"distance": 4.130041701506162
},
"Sun, 01 Jan 1978": {
"y": 128.5282440185547,
"x": 302.4359130859375,
"distance": 0.8267636248764862
},
"Fri, 01 Jan 1999": {
"y": 178.38514709472656,
"x": 653.24755859375,
"distance": 5.432403729263458
},
"Sun, 01 Jan 1961": {
"y": 84.00483703613281,
"x": 18.65706443786621,
"distance": 4.08249961135512
},
"Sat, 01 Jan 2000": {
"y": 194.21249389648438,
"x": 673.247802734375,
"distance": 4.489530371844266
},
"Tue, 01 Jan 1985": {
"y": 116.197265625,
"x": 419.72747802734375,
"distance": 1.3311273535475756
},
"Sat, 01 Jan 2005": {
"y": 161.10450744628906,
"x": 755.8777465820312,
"distance": 0.29099419705152857
},
"Mon, 01 Jan 1996": {
"y": 143.01544189453125,
"x": 602.2593383789062,
"distance": 3.584312024006446
},
"Mon, 01 Jan 2007": {
"y": 155.0680389404297,
"x": 790.196044921875,
"distance": 1.5645869708736688
},
"Tue, 01 Jan 1974": {
"y": 134.81234741210938,
"x": 235.2717742919922,
"distance": 0.9487297778532334
},
"Fri, 01 Jan 1971": {
"y": 127.9510269165039,
"x": 184.81878662109375,
"distance": 0.10153851461570927
},
"Wed, 01 Jan 1964": {
"y": 83.30994415283203,
"x": 67.19103240966797,
"distance": 4.135243984238919
},
"Sun, 01 Jan 2006": {
"y": 166.37713623046875,
"x": 771.8540649414062,
"distance": 4.380328267474678
},
"Thu, 01 Jan 2009": {
"y": 147.50047302246094,
"x": 822.654541015625,
"distance": 1.5312140763452633
},
"Thu, 01 Jan 1970": {
"y": 121.62589263916016,
"x": 167.6773681640625,
"distance": 1.1206234071741825
},
"Mon, 01 Jan 1990": {
"y": 125.04422760009766,
"x": 503.2781677246094,
"distance": 0.9464933304510326
},
"Mon, 01 Jan 1973": {
"y": 136.83981323242188,
"x": 218.24720764160156,
"distance": 1.1998700207855506
},
"Mon, 01 Jan 2001": {
"y": 191.1154022216797,
"x": 686.3275146484375,
"distance": 3.2283057024788766
},
"Thu, 01 Jan 1981": {
"y": 126.02481842041016,
"x": 352.24725341796875,
"distance": 0.46438357245876066
},
"Sun, 01 Jan 1995": {
"y": 139.72071838378906,
"x": 588.2252197265625,
"distance": 1.748800082360109
},
"Sat, 01 Jan 1977": {
"y": 135.2073211669922,
"x": 286.0770263671875,
"distance": 0.8771477459141637
},
"Fri, 01 Jan 1982": {
"y": 114.62686920166016,
"x": 370.0134582519531,
"distance": 1.8823219892112915
},
"Sat, 01 Jan 1966": {
"y": 98.759033203125,
"x": 100.6173095703125,
"distance": 0.7045213253891218
},
"Tue, 01 Jan 1963": {
"y": 88.89435577392578,
"x": 49.8720703125,
"distance": 3.9463871942927247
},
"Sun, 01 Jan 1984": {
"y": 115.86089324951172,
"x": 403.15887451171875,
"distance": 1.2913748774215237
},
"Fri, 01 Jan 2010": {
"y": 140.3744659423828,
"x": 839.4376831054688,
"distance": 0.25435840278840216
},
"Mon, 01 Jan 1968": {
"y": 109.04598999023438,
"x": 133.68165588378906,
"distance": 2.907053262793224
},
"Fri, 01 Jan 1988": {
"y": 109.8367919921875,
"x": 470.01092529296875,
"distance": 0.45539542643263725
},
"Wed, 01 Jan 1986": {
"y": 117.06697845458984,
"x": 435.5943908691406,
"distance": 3.6923656246518903
},
"Fri, 01 Jan 1960": {
"y": 106.80587768554688,
"x": 0.0,
"distance": 3.4313018062448464e-06
},
"Fri, 01 Jan 1993": {
"y": 132.9081573486328,
"x": 553.4864501953125,
"distance": 1.3698689760611955
},
"Thu, 01 Jan 2004": {
"y": 156.78103637695312,
"x": 740.36767578125,
"distance": 5.463583165294671
},
"Wed, 01 Jan 1992": {
"y": 128.92640686035156,
"x": 537.681640625,
"distance": 2.479790164245782
},
"Mon, 01 Jan 1962": {
"y": 83.79512786865234,
"x": 33.050785064697266,
"distance": 1.22397471831092
},
"Wed, 01 Jan 1975": {
"y": 137.01251220703125,
"x": 251.56324768066406,
"distance": 1.6447271341978686
},
"Sun, 01 Jan 1989": {
"y": 118.04358673095703,
"x": 486.999755859375,
"distance": 0.6022541250462574
},
"Sat, 01 Jan 2011": {
"y": 137.696533203125,
"x": 852.7716064453125,
"distance": 8.136156635905454
},
"Sun, 01 Jan 1967": {
"y": 107.86077117919922,
"x": 118.32185363769531,
"distance": 2.7158676847553456
},
"Tue, 01 Jan 2013": {
"y": 134.69107055664062,
"x": 889.816162109375,
"distance": 0.5717708528720102
},
"Wed, 01 Jan 2003": {
"y": 170.51617431640625,
"x": 721.02978515625,
"distance": 6.796250259950706
},
"Tue, 01 Jan 2002": {
"y": 168.7168426513672,
"x": 706.9869995117188,
"distance": 7.628530151998437
},
"Thu, 01 Jan 1998": {
"y": 179.1870880126953,
"x": 638.505859375,
"distance": 3.5620848758439667
},
"Sat, 01 Jan 1972": {
"y": 134.45436096191406,
"x": 201.9087677001953,
"distance": 0.680797611162232
},
"Tue, 01 Jan 1980": {
"y": 133.14132690429688,
"x": 335.7123107910156,
"distance": 3.5187208977662645
}
},
"Carey": {
"Thu, 01 Jan 1987": {
"y": 168.08224487304688,
"x": 450.8241271972656,
"distance": 6.689229528568759
},
"Wed, 01 Jan 1969": {
"y": 162.71240234375,
"x": 151.12890625,
"distance": 0.4129517458336413
},
"Tue, 01 Jan 2008": {
"y": 243.7576141357422,
"x": 805.6240844726562,
"distance": 18.53204638945921
},
"Tue, 01 Jan 1991": {
"y": 183.01205444335938,
"x": 522.1647338867188,
"distance": 5.78946226105233
},
"Sun, 01 Jan 2012": {
"y": 250.15463256835938,
"x": 874.7980346679688,
"distance": 6.266253943724709
},
"Wed, 01 Jan 1997": {
"y": 182.91783142089844,
"x": 619.0680541992188,
"distance": 4.667522401914192
},
"Sat, 01 Jan 1994": {
"y": 162.1731414794922,
"x": 571.9824829101562,
"distance": 6.661325802534811
},
"Mon, 01 Jan 1979": {
"y": 109.97298431396484,
"x": 319.7039489746094,
"distance": 1.6193654851109545
},
"Sat, 01 Jan 1983": {
"y": 145.5836944580078,
"x": 386.7427673339844,
"distance": 1.3577972298836893
},
"Fri, 01 Jan 1965": {
"y": 223.931884765625,
"x": 84.7284927368164,
"distance": 1.6197673944215851
},
"Thu, 01 Jan 1976": {
"y": 94.18859100341797,
"x": 268.14215087890625,
"distance": 2.271546262211385
},
"Sun, 01 Jan 1978": {
"y": 102.13093566894531,
"x": 301.5686950683594,
"distance": 1.8005032807895018
},
"Fri, 01 Jan 1999": {
"y": 164.281982421875,
"x": 654.8145141601562,
"distance": 0.701346040642385
},
"Sun, 01 Jan 1961": {
"y": 229.5078125,
"x": 17.626773834228516,
"distance": 0.9590639637436236
},
"Sat, 01 Jan 2000": {
"y": 173.8329315185547,
"x": 670.510986328125,
"distance": 2.0430453057523885
},
"Tue, 01 Jan 1985": {
"y": 165.7897491455078,
"x": 420.76153564453125,
"distance": 1.9796020010518929
},
"Sat, 01 Jan 2005": {
"y": 186.9237518310547,
"x": 753.2833862304688,
"distance": 13.921534632235463
},
"Mon, 01 Jan 1996": {
"y": 181.39866638183594,
"x": 604.9778442382812,
"distance": 1.1985948177492565
},
"Mon, 01 Jan 2007": {
"y": 220.95875549316406,
"x": 786.4839477539062,
"distance": 10.83531794979338
},
"Tue, 01 Jan 1974": {
"y": 105.78196716308594,
"x": 234.80593872070312,
"distance": 0.3631711155659789
},
"Fri, 01 Jan 1971": {
"y": 139.07034301757812,
"x": 184.42210388183594,
"distance": 0.40566119933998335
},
"Wed, 01 Jan 1964": {
"y": 230.88674926757812,
"x": 66.93064880371094,
"distance": 2.348336586134674
},
"Sun, 01 Jan 2006": {
"y": 220.59695434570312,
"x": 775.7442626953125,
"distance": 11.380852128778614
},
"Thu, 01 Jan 2009": {
"y": 206.67762756347656,
"x": 826.7576293945312,
"distance": 5.6934462099467575
},
"Thu, 01 Jan 1970": {
"y": 150.3176727294922,
"x": 168.15081787109375,
"distance": 0.3157246312561601
},
"Mon, 01 Jan 1990": {
"y": 194.00120544433594,
"x": 503.8409423828125,
"distance": 8.277522122153924
},
"Mon, 01 Jan 1973": {
"y": 113.70520782470703,
"x": 218.79852294921875,
"distance": 0.7960458662488732
},
"Mon, 01 Jan 2001": {
"y": 197.325927734375,
"x": 689.095458984375,
"distance": 0.6913448768328939
},
"Thu, 01 Jan 1981": {
"y": 127.00375366210938,
"x": 353.33978271484375,
"distance": 0.9006598079878285
},
"Sun, 01 Jan 1995": {
"y": 169.97987365722656,
"x": 588.0975952148438,
"distance": 0.3735652258779005
},
"Sat, 01 Jan 1977": {
"y": 99.32260131835938,
"x": 285.8788757324219,
"distance": 1.454917278918539
},
"Fri, 01 Jan 1982": {
"y": 136.56959533691406,
"x": 369.170166015625,
"distance": 0.28717705989117825
},
"Sat, 01 Jan 1966": {
"y": 218.70433044433594,
"x": 98.34225463867188,
"distance": 3.98729190632829
},
"Tue, 01 Jan 1963": {
"y": 228.40878295898438,
"x": 50.80689239501953,
"distance": 1.298132625996802
},
"Sun, 01 Jan 1984": {
"y": 150.7417755126953,
"x": 401.8020935058594,
"distance": 2.4805630610061336
},
"Fri, 01 Jan 2010": {
"y": 205.9970245361328,
"x": 834.658203125,
"distance": 7.101976496058801
},
"Mon, 01 Jan 1968": {
"y": 174.09632873535156,
"x": 134.95716857910156,
"distance": 0.7993635486246597
},
"Fri, 01 Jan 1988": {
"y": 188.53407287597656,
"x": 472.00067138671875,
"distance": 8.810887335598654
},
"Wed, 01 Jan 1986": {
"y": 169.7246856689453,
"x": 436.474853515625,
"distance": 2.4725504990573466
},
"Fri, 01 Jan 1960": {
"y": 247.94467163085938,
"x": 0.0,
"distance": 7.599238813327247e-06
},
"Fri, 01 Jan 1993": {
"y": 180.83078002929688,
"x": 552.2777099609375,
"distance": 2.536288807939779
},
"Thu, 01 Jan 2004": {
"y": 191.89627075195312,
"x": 739.8060913085938,
"distance": 12.14227935823239
},
"Wed, 01 Jan 1992": {
"y": 185.9700469970703,
"x": 537.68896484375,
"distance": 2.93990550361164
},
"Mon, 01 Jan 1962": {
"y": 221.45498657226562,
"x": 33.8104248046875,
"distance": 3.9405768959647105
},
"Wed, 01 Jan 1975": {
"y": 97.47489166259766,
"x": 252.04811096191406,
"distance": 0.6728968158458912
},
"Sun, 01 Jan 1989": {
"y": 184.8271484375,
"x": 486.6619873046875,
"distance": 7.389479474286655
},
"Sat, 01 Jan 2011": {
"y": 259.2505187988281,
"x": 859.9107055664062,
"distance": 15.055007664730953
},
"Sun, 01 Jan 1967": {
"y": 191.0484161376953,
"x": 118.6389389038086,
"distance": 1.5086523404546242
},
"Tue, 01 Jan 2013": {
"y": 255.0,
"x": 890.0,
"distance": 0.0
},
"Wed, 01 Jan 2003": {
"y": 177.0124053955078,
"x": 723.0917358398438,
"distance": 16.31784632383982
},
"Tue, 01 Jan 2002": {
"y": 206.2508544921875,
"x": 701.9994506835938,
"distance": 10.631167083955638
},
"Thu, 01 Jan 1998": {
"y": 163.56173706054688,
"x": 639.9933471679688,
"distance": 4.590230792369066
},
"Sat, 01 Jan 1972": {
"y": 125.79045867919922,
"x": 201.5760040283203,
"distance": 0.1485572747666611
},
"Tue, 01 Jan 1980": {
"y": 114.28599548339844,
"x": 335.0399475097656,
"distance": 2.214034009268119
}
},
"Casey": {
"Thu, 01 Jan 1987": {
"y": 179.86685180664062,
"x": 452.8770751953125,
"distance": 2.0963006072405643
},
"Wed, 01 Jan 1969": {
"y": 266.4988708496094,
"x": 151.20742797851562,
"distance": 0.8872728141787692
},
"Tue, 01 Jan 2008": {
"y": 200.677490234375,
"x": 806.06884765625,
"distance": 0.15990409398085983
},
"Tue, 01 Jan 1991": {
"y": 192.2085418701172,
"x": 520.21875,
"distance": 2.3989258043637456
},
"Sun, 01 Jan 2012": {
"y": 205.22463989257812,
"x": 873.6508178710938,
"distance": 2.4950495298523365
},
"Wed, 01 Jan 1997": {
"y": 166.06610107421875,
"x": 621.091796875,
"distance": 0.25607109492670826
},
"Sat, 01 Jan 1994": {
"y": 180.03907775878906,
"x": 570.7323608398438,
"distance": 0.5250201095278972
},
"Mon, 01 Jan 1979": {
"y": 209.38592529296875,
"x": 320.168701171875,
"distance": 1.71215625714967
},
"Sat, 01 Jan 1983": {
"y": 192.1217041015625,
"x": 386.2729797363281,
"distance": 2.267384073049623
},
"Fri, 01 Jan 1965": {
"y": 293.9489440917969,
"x": 84.09749603271484,
"distance": 1.7937186514173171
},
"Thu, 01 Jan 1976": {
"y": 245.23878479003906,
"x": 269.21771240234375,
"distance": 1.088677133799559
},
"Sun, 01 Jan 1978": {
"y": 225.41619873046875,
"x": 302.97900390625,
"distance": 0.7543080560089854
},
"Fri, 01 Jan 1999": {
"y": 179.37315368652344,
"x": 655.8487548828125,
"distance": 1.5999827503172244
},
"Sun, 01 Jan 1961": {
"y": 290.02484130859375,
"x": 17.14308738708496,
"distance": 1.3262030410766457
},
"Sat, 01 Jan 2000": {
"y": 184.90489196777344,
"x": 671.9937744140625,
"distance": 0.7017791448854347
},
"Tue, 01 Jan 1985": {
"y": 195.66954040527344,
"x": 418.29888916015625,
"distance": 3.611848890340162
},
"Sat, 01 Jan 2005": {
"y": 200.80223083496094,
"x": 755.9490966796875,
"distance": 0.6821235156057687
},
"Mon, 01 Jan 1996": {
"y": 167.3443603515625,
"x": 604.5111083984375,
"distance": 0.29475527782935484
},
"Mon, 01 Jan 2007": {
"y": 199.21743774414062,
"x": 788.964111328125,
"distance": 0.26225025326171897
},
"Tue, 01 Jan 1974": {
"y": 231.21725463867188,
"x": 235.0536651611328,
"distance": 0.7762105098355477
},
"Fri, 01 Jan 1971": {
"y": 262.37664794921875,
"x": 182.44276428222656,
"distance": 3.754045655751991
},
"Wed, 01 Jan 1964": {
"y": 291.2979736328125,
"x": 67.18205261230469,
"distance": 0.49905835960984696
},
"Sun, 01 Jan 2006": {
"y": 198.38226318359375,
"x": 772.3651733398438,
"distance": 0.6697536294858063
},
"Thu, 01 Jan 2009": {
"y": 201.411865234375,
"x": 822.6821899414062,
"distance": 0.1839763803180385
},
"Thu, 01 Jan 1970": {
"y": 266.6907043457031,
"x": 167.8321990966797,
"distance": 0.6109131469970512
},
"Mon, 01 Jan 1990": {
"y": 190.57728576660156,
"x": 503.7458190917969,
"distance": 0.5902897400086877
},
"Mon, 01 Jan 1973": {
"y": 229.9309539794922,
"x": 218.5364990234375,
"distance": 0.9596893238357734
},
"Mon, 01 Jan 2001": {
"y": 187.7299346923828,
"x": 688.36572265625,
"distance": 1.3889779925610393
},
"Thu, 01 Jan 1981": {
"y": 200.9727325439453,
"x": 352.6386413574219,
"distance": 0.3694498385555329
},
"Sun, 01 Jan 1995": {
"y": 170.8406219482422,
"x": 588.3030395507812,
"distance": 1.270446243883984
},
"Sat, 01 Jan 1977": {
"y": 245.42625427246094,
"x": 283.8233947753906,
"distance": 3.8885612420824303
},
"Fri, 01 Jan 1982": {
"y": 196.8452606201172,
"x": 369.2832336425781,
"distance": 0.5654418965110074
},
"Sat, 01 Jan 1966": {
"y": 289.00836181640625,
"x": 100.37418365478516,
"distance": 1.0270474276113382
},
"Tue, 01 Jan 1963": {
"y": 290.15093994140625,
"x": 50.66205596923828,
"distance": 1.3369680288316403
},
"Sun, 01 Jan 1984": {
"y": 195.4308319091797,
"x": 403.0414733886719,
"distance": 0.5056538958025449
},
"Fri, 01 Jan 2010": {
"y": 200.88418579101562,
"x": 839.2888793945312,
"distance": 0.7839790901775056
},
"Mon, 01 Jan 1968": {
"y": 269.9429931640625,
"x": 134.44342041015625,
"distance": 0.6834487858212043
},
"Fri, 01 Jan 1988": {
"y": 188.6131134033203,
"x": 470.6571350097656,
"distance": 2.42876675101754
},
"Wed, 01 Jan 1986": {
"y": 180.7604522705078,
"x": 437.8385009765625,
"distance": 3.0004393345560696
},
"Fri, 01 Jan 1960": {
"y": 279.0566101074219,
"x": 0.0,
"distance": 6.3338369500343106e-06
},
"Fri, 01 Jan 1993": {
"y": 186.03228759765625,
"x": 554.18017578125,
"distance": 1.7351493362118198
},
"Thu, 01 Jan 2004": {
"y": 203.1619415283203,
"x": 739.678955078125,
"distance": 3.7688318362308078
},
"Wed, 01 Jan 1992": {
"y": 186.75906372070312,
"x": 537.5897216796875,
"distance": 2.150783242652313
},
"Mon, 01 Jan 1962": {
"y": 293.3375549316406,
"x": 33.26458740234375,
"distance": 1.6315782388170765
},
"Wed, 01 Jan 1975": {
"y": 237.0975341796875,
"x": 251.71649169921875,
"distance": 0.5160423020854432
},
"Sun, 01 Jan 1989": {
"y": 189.46478271484375,
"x": 487.1783447265625,
"distance": 0.5366937868370868
},
"Sat, 01 Jan 2011": {
"y": 199.5477752685547,
"x": 855.7997436523438,
"distance": 2.46955840490102
},
"Sun, 01 Jan 1967": {
"y": 277.72564697265625,
"x": 117.9864730834961,
"distance": 0.6962580546681038
},
"Tue, 01 Jan 2013": {
"y": 203.18763732910156,
"x": 889.4827270507812,
"distance": 0.5364840863364368
},
"Wed, 01 Jan 2003": {
"y": 193.57574462890625,
"x": 721.195068359375,
"distance": 3.5615247228799904
},
"Tue, 01 Jan 2002": {
"y": 193.24386596679688,
"x": 705.6986083984375,
"distance": 2.477449356928874
},
"Thu, 01 Jan 1998": {
"y": 167.11328125,
"x": 637.01708984375,
"distance": 2.7219323890296256
},
"Sat, 01 Jan 1972": {
"y": 235.659423828125,
"x": 203.82110595703125,
"distance": 3.3287851374872766
},
"Tue, 01 Jan 1980": {
"y": 203.64840698242188,
"x": 335.68310546875,
"distance": 0.6012453978634386
}
},
"Justice": {
"Thu, 01 Jan 1987": {
"y": 242.97889709472656,
"x": 451.1728515625,
"distance": 7.543035910955208
},
"Wed, 01 Jan 1969": {
"y": 340.0,
"x": 151.41844177246094,
"distance": 0.2577413230575587
},
"Tue, 01 Jan 2008": {
"y": 186.7970428466797,
"x": 806.5303344726562,
"distance": 2.614941828394786
},
"Tue, 01 Jan 1991": {
"y": 266.417236328125,
"x": 519.6859130859375,
"distance": 3.228791298036579
},
"Sun, 01 Jan 2012": {
"y": 157.99880981445312,
"x": 873.53564453125,
"distance": 0.40706561365764954
},
"Wed, 01 Jan 1997": {
"y": 182.9827880859375,
"x": 622.17822265625,
"distance": 1.3195741279186506
},
"Sat, 01 Jan 1994": {
"y": 136.87026977539062,
"x": 574.6508178710938,
"distance": 4.553337172288063
},
"Mon, 01 Jan 1979": {
"y": 274.3037414550781,
"x": 318.5367126464844,
"distance": 4.699367363405719
},
"Sat, 01 Jan 1983": {
"y": 282.5511169433594,
"x": 388.3232116699219,
"distance": 3.3044388423699185
},
"Fri, 01 Jan 1965": {
"y": 340.0,
"x": 84.12135314941406,
"distance": 0.12786175006492329
},
"Thu, 01 Jan 1976": {
"y": 249.53160095214844,
"x": 266.0362243652344,
"distance": 5.414673826193275
},
"Sun, 01 Jan 1978": {
"y": 271.3021545410156,
"x": 302.0904541015625,
"distance": 3.428360314144006
},
"Fri, 01 Jan 1999": {
"y": 191.64718627929688,
"x": 654.7506103515625,
"distance": 1.2665648237622142
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.824270248413086,
"distance": 0.0020121008818136943
},
"Sat, 01 Jan 2000": {
"y": 193.489013671875,
"x": 670.6951904296875,
"distance": 3.507666557339002
},
"Tue, 01 Jan 1985": {
"y": 284.69091796875,
"x": 416.2379455566406,
"distance": 10.028352004746049
},
"Sat, 01 Jan 2005": {
"y": 180.97666931152344,
"x": 754.9296264648438,
"distance": 2.099298968988127
},
"Mon, 01 Jan 1996": {
"y": 165.6688690185547,
"x": 606.4493408203125,
"distance": 2.1455766929150113
},
"Mon, 01 Jan 2007": {
"y": 195.80221557617188,
"x": 788.536865234375,
"distance": 3.2758724702691784
},
"Tue, 01 Jan 1974": {
"y": 264.5091247558594,
"x": 235.59759521484375,
"distance": 7.50684365032792
},
"Fri, 01 Jan 1971": {
"y": 335.7170715332031,
"x": 179.06739807128906,
"distance": 7.092974667790073
},
"Wed, 01 Jan 1964": {
"y": 340.0,
"x": 67.29708099365234,
"distance": 0.12987194359810417
},
"Sun, 01 Jan 2006": {
"y": 192.41798400878906,
"x": 773.13671875,
"distance": 1.2987720780543446
},
"Thu, 01 Jan 2009": {
"y": 184.10638427734375,
"x": 822.421875,
"distance": 1.9280127363617137
},
"Thu, 01 Jan 1970": {
"y": 339.9997253417969,
"x": 168.24270629882812,
"distance": 0.3016970741929668
},
"Mon, 01 Jan 1990": {
"y": 262.4336242675781,
"x": 507.7004089355469,
"distance": 6.810084290030271
},
"Mon, 01 Jan 1973": {
"y": 252.14154052734375,
"x": 216.76768493652344,
"distance": 3.997088426731919
},
"Mon, 01 Jan 2001": {
"y": 183.98049926757812,
"x": 689.1549682617188,
"distance": 2.253303183623924
},
"Thu, 01 Jan 1981": {
"y": 277.2210998535156,
"x": 351.39447021484375,
"distance": 1.597027637047344
},
"Sun, 01 Jan 1995": {
"y": 130.6830291748047,
"x": 584.6277465820312,
"distance": 7.423053023854515
},
"Sat, 01 Jan 1977": {
"y": 271.4384460449219,
"x": 287.45501708984375,
"distance": 6.245462823558921
},
"Fri, 01 Jan 1982": {
"y": 297.1705017089844,
"x": 369.6343078613281,
"distance": 9.49809911584082
},
"Sat, 01 Jan 1966": {
"y": 340.0,
"x": 100.94562530517578,
"distance": 0.17182500557352398
},
"Tue, 01 Jan 1963": {
"y": 340.0,
"x": 50.47281265258789,
"distance": 0.08591250278676199
},
"Sun, 01 Jan 1984": {
"y": 280.66668701171875,
"x": 401.78961181640625,
"distance": 2.7654115752605177
},
"Fri, 01 Jan 2010": {
"y": 175.67568969726562,
"x": 839.1527099609375,
"distance": 0.4966850931608399
},
"Mon, 01 Jan 1968": {
"y": 340.0,
"x": 134.5941619873047,
"distance": 0.25974388719620833
},
"Fri, 01 Jan 1988": {
"y": 218.37548828125,
"x": 472.5104064941406,
"distance": 3.8379735073561636
},
"Wed, 01 Jan 1986": {
"y": 244.54806518554688,
"x": 440.5946350097656,
"distance": 9.505273895335431
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 205.71339416503906,
"x": 554.2144775390625,
"distance": 0.05632841191381523
},
"Thu, 01 Jan 2004": {
"y": 177.09059143066406,
"x": 739.2810668945312,
"distance": 1.2058079133788009
},
"Wed, 01 Jan 1992": {
"y": 269.0966491699219,
"x": 532.4902954101562,
"distance": 10.846754400162817
},
"Mon, 01 Jan 1962": {
"y": 340.0,
"x": 33.64854049682617,
"distance": 0.041949247278161295
},
"Wed, 01 Jan 1975": {
"y": 252.3376922607422,
"x": 252.93048095703125,
"distance": 2.08967752156672
},
"Sun, 01 Jan 1989": {
"y": 217.46875,
"x": 482.8865966796875,
"distance": 6.448395267739164
},
"Sat, 01 Jan 2011": {
"y": 163.7354278564453,
"x": 857.0537109375,
"distance": 1.2218686313784806
},
"Sun, 01 Jan 1967": {
"y": 340.0,
"x": 117.7698974609375,
"distance": 0.2157882610821389
},
"Tue, 01 Jan 2013": {
"y": 154.67372131347656,
"x": 889.33935546875,
"distance": 0.672981099622673
},
"Wed, 01 Jan 2003": {
"y": 173.25918579101562,
"x": 722.3167114257812,
"distance": 3.269359573135139
},
"Tue, 01 Jan 2002": {
"y": 179.8091278076172,
"x": 704.7356567382812,
"distance": 1.7560416318655874
},
"Thu, 01 Jan 1998": {
"y": 190.23272705078125,
"x": 638.6707153320312,
"distance": 1.478020316525113
},
"Sat, 01 Jan 1972": {
"y": 255.41357421875,
"x": 206.8434600830078,
"distance": 6.4203617733965075
},
"Tue, 01 Jan 1980": {
"y": 266.8691101074219,
"x": 336.3898010253906,
"distance": 5.3593338787798555
}
},
"Armani": {
"Thu, 01 Jan 1987": {
"y": 340.0,
"x": 453.12554931640625,
"distance": 0.26460513372035166
},
"Wed, 01 Jan 1969": {
"y": 340.0,
"x": 151.04183959960938,
"distance": 0.1188608497940038
},
"Tue, 01 Jan 2008": {
"y": 185.38790893554688,
"x": 806.4055786132812,
"distance": 4.536977717345221
},
"Tue, 01 Jan 1991": {
"y": 264.8684387207031,
"x": 522.2949829101562,
"distance": 3.4923248255290344
},
"Sun, 01 Jan 2012": {
"y": 203.78179931640625,
"x": 873.4690551757812,
"distance": 3.825771129109038
},
"Wed, 01 Jan 1997": {
"y": 186.01101684570312,
"x": 621.48046875,
"distance": 0.5092521223703803
},
"Sat, 01 Jan 1994": {
"y": 222.40643310546875,
"x": 570.5723876953125,
"distance": 3.1081218973630693
},
"Mon, 01 Jan 1979": {
"y": 340.0,
"x": 318.80419921875,
"distance": 0.25153713126809407
},
"Sat, 01 Jan 1983": {
"y": 340.0,
"x": 386.2435302734375,
"distance": 0.020584873365180556
},
"Fri, 01 Jan 1965": {
"y": 340.0,
"x": 84.15985107421875,
"distance": 0.16635967486961079
},
"Thu, 01 Jan 1976": {
"y": 340.0,
"x": 268.6427001953125,
"distance": 0.026136004904458332
},
"Sun, 01 Jan 1978": {
"y": 340.0,
"x": 302.08367919921875,
"distance": 0.1917482505461976
},
"Fri, 01 Jan 1999": {
"y": 168.5531768798828,
"x": 655.7870483398438,
"distance": 1.5564324278363728
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.72049903869629,
"distance": 0.10578331059861057
},
"Sat, 01 Jan 2000": {
"y": 164.12998962402344,
"x": 671.735595703125,
"distance": 1.3963916835301007
},
"Tue, 01 Jan 1985": {
"y": 340.0,
"x": 419.6845397949219,
"distance": 0.1449968546984337
},
"Sat, 01 Jan 2005": {
"y": 178.82461547851562,
"x": 755.7015991210938,
"distance": 0.9403333377963635
},
"Mon, 01 Jan 1996": {
"y": 190.47215270996094,
"x": 606.0972290039062,
"distance": 3.214294243938909
},
"Mon, 01 Jan 2007": {
"y": 191.63037109375,
"x": 789.2736206054688,
"distance": 5.621737310962558
},
"Tue, 01 Jan 1974": {
"y": 340.0,
"x": 235.20169067382812,
"distance": 0.09347227411740278
},
"Fri, 01 Jan 1971": {
"y": 340.0,
"x": 184.48284912109375,
"distance": 0.2384691288158649
},
"Wed, 01 Jan 1964": {
"y": 340.0,
"x": 67.43934631347656,
"distance": 0.2721372634223229
},
"Sun, 01 Jan 2006": {
"y": 181.8687286376953,
"x": 771.3740234375,
"distance": 2.2414586698640804
},
"Thu, 01 Jan 2009": {
"y": 192.51429748535156,
"x": 822.2268676757812,
"distance": 0.8424506437563322
},
"Thu, 01 Jan 1970": {
"y": 340.0,
"x": 167.76234436035156,
"distance": 0.17866498930493435
},
"Mon, 01 Jan 1990": {
"y": 278.00408935546875,
"x": 504.2140197753906,
"distance": 9.69806749341483
},
"Mon, 01 Jan 1973": {
"y": 340.0,
"x": 218.481201171875,
"distance": 0.1532916724173674
},
"Mon, 01 Jan 2001": {
"y": 164.93629455566406,
"x": 688.4221801757812,
"distance": 1.6311425085462827
},
"Thu, 01 Jan 1981": {
"y": 340.0,
"x": 352.80255126953125,
"distance": 0.14022366996516666
},
"Sun, 01 Jan 1995": {
"y": 211.3141326904297,
"x": 586.9052734375,
"distance": 1.2929836399332408
},
"Sat, 01 Jan 1977": {
"y": 340.0,
"x": 285.3631896972656,
"distance": 0.13192885224623296
},
"Fri, 01 Jan 1982": {
"y": 340.0,
"x": 369.5230407714844,
"distance": 0.08040427166514519
},
"Sat, 01 Jan 1966": {
"y": 340.0,
"x": 100.8803482055664,
"distance": 0.10654790596414898
},
"Tue, 01 Jan 1963": {
"y": 340.0,
"x": 50.1614990234375,
"distance": 0.22540112636362863
},
"Sun, 01 Jan 1984": {
"y": 340.0,
"x": 402.96405029296875,
"distance": 0.039204007356659076
},
"Fri, 01 Jan 2010": {
"y": 204.38035583496094,
"x": 840.04443359375,
"distance": 5.172543525728976
},
"Mon, 01 Jan 1968": {
"y": 340.0,
"x": 134.32135009765625,
"distance": 0.013068002452229166
},
"Fri, 01 Jan 1988": {
"y": 335.2816467285156,
"x": 465.0240478515625,
"distance": 6.98200902899682
},
"Wed, 01 Jan 1986": {
"y": 340.0,
"x": 436.405029296875,
"distance": 0.20481625299845518
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 224.87428283691406,
"x": 557.5481567382812,
"distance": 6.189159030000844
},
"Thu, 01 Jan 2004": {
"y": 179.7172393798828,
"x": 739.03125,
"distance": 1.8124608197382577
},
"Wed, 01 Jan 1992": {
"y": 257.83502197265625,
"x": 534.2805786132812,
"distance": 4.802216888169373
},
"Mon, 01 Jan 1962": {
"y": 340.0,
"x": 33.44099807739258,
"distance": 0.16559317215543246
},
"Wed, 01 Jan 1975": {
"y": 340.0,
"x": 251.9221954345703,
"distance": 0.03366813460647222
},
"Sun, 01 Jan 1989": {
"y": 271.4371643066406,
"x": 490.5458679199219,
"distance": 16.815963813524146
},
"Sat, 01 Jan 2011": {
"y": 200.15220642089844,
"x": 856.669677734375,
"distance": 4.196983549128887
},
"Sun, 01 Jan 1967": {
"y": 340.0,
"x": 117.60084533691406,
"distance": 0.04673613705870139
},
"Tue, 01 Jan 2013": {
"y": 196.65283203125,
"x": 889.5366821289062,
"distance": 0.5573820067510832
},
"Wed, 01 Jan 2003": {
"y": 173.4401092529297,
"x": 722.49658203125,
"distance": 0.8991749403029633
},
"Tue, 01 Jan 2002": {
"y": 163.70057678222656,
"x": 704.4727172851562,
"distance": 3.207734573880523
},
"Thu, 01 Jan 1998": {
"y": 181.073974609375,
"x": 637.3635864257812,
"distance": 1.6466478910298255
},
"Sat, 01 Jan 1972": {
"y": 340.0,
"x": 201.7606964111328,
"distance": 0.25906926097010796
},
"Tue, 01 Jan 1980": {
"y": 340.0,
"x": 336.08203125,
"distance": 0.2459859997288163
}
},
"Marion": {
"Thu, 01 Jan 1987": {
"y": 164.37049865722656,
"x": 453.4322204589844,
"distance": 2.0712742976946092
},
"Wed, 01 Jan 1969": {
"y": 153.4489288330078,
"x": 151.39585876464844,
"distance": 0.39522219690079113
},
"Tue, 01 Jan 2008": {
"y": 196.3920135498047,
"x": 804.5056762695312,
"distance": 5.511194441589588
},
"Tue, 01 Jan 1991": {
"y": 157.92758178710938,
"x": 520.0932006835938,
"distance": 4.217244927374281
},
"Sun, 01 Jan 2012": {
"y": 164.4451904296875,
"x": 870.9671020507812,
"distance": 5.256938742854517
},
"Wed, 01 Jan 1997": {
"y": 172.90374755859375,
"x": 621.4684448242188,
"distance": 0.30119362649218595
},
"Sat, 01 Jan 1994": {
"y": 145.2493438720703,
"x": 571.1094970703125,
"distance": 5.347591007567822
},
"Mon, 01 Jan 1979": {
"y": 185.27944946289062,
"x": 319.07305908203125,
"distance": 3.518670101135023
},
"Sat, 01 Jan 1983": {
"y": 153.9441375732422,
"x": 384.7979431152344,
"distance": 4.990617129669845
},
"Fri, 01 Jan 1965": {
"y": 142.0460205078125,
"x": 84.2882080078125,
"distance": 4.650015103529342
},
"Thu, 01 Jan 1976": {
"y": 183.88693237304688,
"x": 267.9930725097656,
"distance": 5.828301889968261
},
"Sun, 01 Jan 1978": {
"y": 179.6043701171875,
"x": 302.4154052734375,
"distance": 0.14073992477321987
},
"Fri, 01 Jan 1999": {
"y": 171.12594604492188,
"x": 652.435791015625,
"distance": 3.8316580858259464
},
"Sun, 01 Jan 1961": {
"y": 141.83168029785156,
"x": 16.535219192504883,
"distance": 3.930446493603658
},
"Sat, 01 Jan 2000": {
"y": 150.3118438720703,
"x": 672.9627075195312,
"distance": 7.70466003235758
},
"Tue, 01 Jan 1985": {
"y": 165.83096313476562,
"x": 419.96221923828125,
"distance": 2.718937683787287
},
"Sat, 01 Jan 2005": {
"y": 206.92813110351562,
"x": 757.4014892578125,
"distance": 3.3678395407564263
},
"Mon, 01 Jan 1996": {
"y": 169.45953369140625,
"x": 605.7391967773438,
"distance": 2.3553140616217525
},
"Mon, 01 Jan 2007": {
"y": 196.08876037597656,
"x": 790.0826416015625,
"distance": 4.510583035068519
},
"Tue, 01 Jan 1974": {
"y": 179.75364685058594,
"x": 234.81507873535156,
"distance": 1.5174220930453026
},
"Fri, 01 Jan 1971": {
"y": 165.23443603515625,
"x": 185.64271545410156,
"distance": 1.4644423619324909
},
"Wed, 01 Jan 1964": {
"y": 133.18927001953125,
"x": 66.42693328857422,
"distance": 2.319866485820657
},
"Sun, 01 Jan 2006": {
"y": 206.88119506835938,
"x": 771.3621215820312,
"distance": 2.493616693473308
},
"Thu, 01 Jan 2009": {
"y": 182.7468719482422,
"x": 823.928955078125,
"distance": 6.16390107874473
},
"Thu, 01 Jan 1970": {
"y": 153.29632568359375,
"x": 166.87960815429688,
"distance": 3.0366265189952815
},
"Mon, 01 Jan 1990": {
"y": 157.02658081054688,
"x": 504.5638427734375,
"distance": 3.9922946035700737
},
"Mon, 01 Jan 1973": {
"y": 178.36483764648438,
"x": 218.79440307617188,
"distance": 0.8227482099993233
},
"Mon, 01 Jan 2001": {
"y": 157.7760467529297,
"x": 689.2974243164062,
"distance": 1.8720747407675018
},
"Thu, 01 Jan 1981": {
"y": 161.72666931152344,
"x": 353.7283630371094,
"distance": 2.2469137066802425
},
"Sun, 01 Jan 1995": {
"y": 154.78713989257812,
"x": 587.5772705078125,
"distance": 0.2830365678072236
},
"Sat, 01 Jan 1977": {
"y": 174.67999267578125,
"x": 286.2433166503906,
"distance": 4.739423155145016
},
"Fri, 01 Jan 1982": {
"y": 156.86114501953125,
"x": 369.1312255859375,
"distance": 1.1025298907143022
},
"Sat, 01 Jan 1966": {
"y": 138.18045043945312,
"x": 101.04466247558594,
"distance": 3.8073116289491353
},
"Tue, 01 Jan 1963": {
"y": 130.83633422851562,
"x": 50.55560302734375,
"distance": 0.3315463345298085
},
"Sun, 01 Jan 1984": {
"y": 167.23939514160156,
"x": 404.5151062011719,
"distance": 5.029157485149285
},
"Fri, 01 Jan 2010": {
"y": 183.6154022216797,
"x": 838.2977294921875,
"distance": 6.430476359953827
},
"Mon, 01 Jan 1968": {
"y": 153.4845428466797,
"x": 134.76220703125,
"distance": 1.9551113585896724
},
"Fri, 01 Jan 1988": {
"y": 166.09246826171875,
"x": 470.0187683105469,
"distance": 0.4636610131400059
},
"Wed, 01 Jan 1986": {
"y": 167.9193878173828,
"x": 436.5365905761719,
"distance": 2.604719418724807
},
"Fri, 01 Jan 1960": {
"y": 135.94973754882812,
"x": 0.0,
"distance": 3.7667668664198573e-06
},
"Fri, 01 Jan 1993": {
"y": 152.54531860351562,
"x": 553.75537109375,
"distance": 4.879226182589061
},
"Thu, 01 Jan 2004": {
"y": 191.3575897216797,
"x": 737.2008056640625,
"distance": 4.591611847999272
},
"Wed, 01 Jan 1992": {
"y": 150.12576293945312,
"x": 537.8557739257812,
"distance": 4.759310572378475
},
"Mon, 01 Jan 1962": {
"y": 133.70144653320312,
"x": 34.16850280761719,
"distance": 1.9370010123745176
},
"Wed, 01 Jan 1975": {
"y": 177.87152099609375,
"x": 251.3362579345703,
"distance": 3.6458103527095824
},
"Sun, 01 Jan 1989": {
"y": 165.83773803710938,
"x": 486.0168151855469,
"distance": 2.6553422774373217
},
"Sat, 01 Jan 2011": {
"y": 167.33969116210938,
"x": 858.503662109375,
"distance": 4.990871306159401
},
"Sun, 01 Jan 1967": {
"y": 144.794921875,
"x": 117.35877227783203,
"distance": 0.23854731909938964
},
"Tue, 01 Jan 2013": {
"y": 139.9729461669922,
"x": 889.72509765625,
"distance": 0.5581581906731368
},
"Wed, 01 Jan 2003": {
"y": 188.86239624023438,
"x": 724.1021118164062,
"distance": 5.468622873230269
},
"Tue, 01 Jan 2002": {
"y": 165.83282470703125,
"x": 703.28515625,
"distance": 3.3024097046649104
},
"Thu, 01 Jan 1998": {
"y": 174.658935546875,
"x": 638.1159057617188,
"distance": 0.6535794874569287
},
"Sat, 01 Jan 1972": {
"y": 172.2151336669922,
"x": 201.44198608398438,
"distance": 0.21675502807930647
},
"Tue, 01 Jan 1980": {
"y": 176.34178161621094,
"x": 335.4776916503906,
"distance": 0.6663367967359004
}
},
"Baby": {
"Thu, 01 Jan 1987": {
"y": 188.42672729492188,
"x": 452.2594909667969,
"distance": 2.4183756969880537
},
"Wed, 01 Jan 1969": {
"y": 335.4696960449219,
"x": 144.0045928955078,
"distance": 8.469564879515222
},
"Tue, 01 Jan 2008": {
"y": 149.4368133544922,
"x": 806.7578125,
"distance": 5.829197113113837
},
"Tue, 01 Jan 1991": {
"y": 184.2608642578125,
"x": 520.7222290039062,
"distance": 0.7826928095169734
},
"Sun, 01 Jan 2012": {
"y": 222.46705627441406,
"x": 871.2213134765625,
"distance": 1.9588973768676499
},
"Wed, 01 Jan 1997": {
"y": 172.92727661132812,
"x": 621.8233032226562,
"distance": 1.2396760514357401
},
"Sat, 01 Jan 1994": {
"y": 185.2401885986328,
"x": 570.408935546875,
"distance": 3.5209829134488437
},
"Mon, 01 Jan 1979": {
"y": 179.59048461914062,
"x": 320.6736755371094,
"distance": 2.7302236316581565
},
"Sat, 01 Jan 1983": {
"y": 180.11965942382812,
"x": 387.09912109375,
"distance": 19.087148416765917
},
"Fri, 01 Jan 1965": {
"y": 340.0,
"x": 83.65080261230469,
"distance": 0.3426887870444517
},
"Thu, 01 Jan 1976": {
"y": 182.1990203857422,
"x": 268.522705078125,
"distance": 0.18897402923780143
},
"Sun, 01 Jan 1978": {
"y": 192.88465881347656,
"x": 305.5625915527344,
"distance": 15.847114266191507
},
"Fri, 01 Jan 1999": {
"y": 176.8506622314453,
"x": 655.6699829101562,
"distance": 2.672273585668964
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.891027450561523,
"distance": 0.0647451012666238
},
"Sat, 01 Jan 2000": {
"y": 176.46446228027344,
"x": 671.65478515625,
"distance": 0.5163177496091705
},
"Tue, 01 Jan 1985": {
"y": 174.3443603515625,
"x": 421.5871887207031,
"distance": 12.479230888719151
},
"Sat, 01 Jan 2005": {
"y": 199.3124542236328,
"x": 757.16796875,
"distance": 2.228569610495575
},
"Mon, 01 Jan 1996": {
"y": 182.0625762939453,
"x": 604.080810546875,
"distance": 3.7996718705896884
},
"Mon, 01 Jan 2007": {
"y": 147.04449462890625,
"x": 793.5778198242188,
"distance": 11.870865988207562
},
"Tue, 01 Jan 1974": {
"y": 198.7688751220703,
"x": 234.85662841796875,
"distance": 14.987203205925455
},
"Fri, 01 Jan 1971": {
"y": 158.3766632080078,
"x": 184.1462860107422,
"distance": 20.259825388355626
},
"Wed, 01 Jan 1964": {
"y": 340.0,
"x": 67.5641098022461,
"distance": 0.39690075219185417
},
"Sun, 01 Jan 2006": {
"y": 201.18898010253906,
"x": 767.366943359375,
"distance": 8.319132281153598
},
"Thu, 01 Jan 2009": {
"y": 147.390380859375,
"x": 820.1452026367188,
"distance": 8.347677693278957
},
"Thu, 01 Jan 1970": {
"y": 197.6570281982422,
"x": 170.28504943847656,
"distance": 2.4816573752478375
},
"Mon, 01 Jan 1990": {
"y": 184.82408142089844,
"x": 503.8615417480469,
"distance": 0.21343300389142028
},
"Mon, 01 Jan 1973": {
"y": 215.75616455078125,
"x": 216.5225372314453,
"distance": 11.058861851332104
},
"Mon, 01 Jan 2001": {
"y": 174.13014221191406,
"x": 688.359130859375,
"distance": 1.4449830496812146
},
"Thu, 01 Jan 1981": {
"y": 220.55746459960938,
"x": 356.22320556640625,
"distance": 5.693502672209055
},
"Sun, 01 Jan 1995": {
"y": 180.31964111328125,
"x": 588.15185546875,
"distance": 3.4613796827895578
},
"Sat, 01 Jan 1977": {
"y": 151.25009155273438,
"x": 283.73321533203125,
"distance": 21.11097750342011
},
"Fri, 01 Jan 1982": {
"y": 221.05072021484375,
"x": 364.8070068359375,
"distance": 6.407157941534191
},
"Sat, 01 Jan 1966": {
"y": 340.0,
"x": 100.54183197021484,
"distance": 0.23196832938741352
},
"Tue, 01 Jan 1963": {
"y": 340.0,
"x": 50.67308044433594,
"distance": 0.28618029453480887
},
"Sun, 01 Jan 1984": {
"y": 195.29750061035156,
"x": 402.85650634765625,
"distance": 16.90171802621766
},
"Fri, 01 Jan 2010": {
"y": 171.04783630371094,
"x": 842.214599609375,
"distance": 7.893196105081994
},
"Mon, 01 Jan 1968": {
"y": 340.0,
"x": 134.32388305664062,
"distance": 0.010535043467854166
},
"Fri, 01 Jan 1988": {
"y": 179.03378295898438,
"x": 470.8161926269531,
"distance": 3.966218760985147
},
"Wed, 01 Jan 1986": {
"y": 187.05178833007812,
"x": 438.4622802734375,
"distance": 3.761986961725973
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 181.19412231445312,
"x": 554.094482421875,
"distance": 1.7059043451474145
},
"Thu, 01 Jan 2004": {
"y": 178.12591552734375,
"x": 737.4877319335938,
"distance": 2.321411464400253
},
"Wed, 01 Jan 1992": {
"y": 181.13970947265625,
"x": 537.3195190429688,
"distance": 0.5658380684617066
},
"Mon, 01 Jan 1962": {
"y": 340.0,
"x": 33.78205490112305,
"distance": 0.1754636515750363
},
"Wed, 01 Jan 1975": {
"y": 214.98184204101562,
"x": 251.80133056640625,
"distance": 15.961792358121553
},
"Sun, 01 Jan 1989": {
"y": 182.6207275390625,
"x": 487.16046142578125,
"distance": 1.211523264817246
},
"Sat, 01 Jan 2011": {
"y": 173.029052734375,
"x": 852.4212036132812,
"distance": 9.394055759352842
},
"Sun, 01 Jan 1967": {
"y": 340.0,
"x": 117.432861328125,
"distance": 0.12124787173036111
},
"Tue, 01 Jan 2013": {
"y": 340.0,
"x": 890.0,
"distance": 0.0
},
"Wed, 01 Jan 2003": {
"y": 170.33982849121094,
"x": 721.7538452148438,
"distance": 0.45672435915444254
},
"Tue, 01 Jan 2002": {
"y": 168.39031982421875,
"x": 705.908935546875,
"distance": 2.1486274148791416
},
"Thu, 01 Jan 1998": {
"y": 169.2036590576172,
"x": 637.1497802734375,
"distance": 3.069967071901218
},
"Sat, 01 Jan 1972": {
"y": 199.66830444335938,
"x": 203.4808807373047,
"distance": 2.336021364576292
},
"Tue, 01 Jan 1980": {
"y": 176.53408813476562,
"x": 332.0418395996094,
"distance": 7.555812614960678
}
},
"Ashton": {
"Thu, 01 Jan 1987": {
"y": 92.85371398925781,
"x": 453.32037353515625,
"distance": 0.2963803182467354
},
"Wed, 01 Jan 1969": {
"y": 340.0,
"x": 151.219482421875,
"distance": 0.0587819724716212
},
"Tue, 01 Jan 2008": {
"y": 319.25433349609375,
"x": 806.2515258789062,
"distance": 0.24512611306540863
},
"Tue, 01 Jan 1991": {
"y": 159.02857971191406,
"x": 520.7615356445312,
"distance": 4.715914306921791
},
"Sun, 01 Jan 2012": {
"y": 319.4713134765625,
"x": 873.2352905273438,
"distance": 0.7663790438077341
},
"Wed, 01 Jan 1997": {
"y": 168.87493896484375,
"x": 621.5010375976562,
"distance": 0.19736581814950485
},
"Sat, 01 Jan 1994": {
"y": 146.74330139160156,
"x": 571.0321044921875,
"distance": 6.380709930320469
},
"Mon, 01 Jan 1979": {
"y": 304.3977355957031,
"x": 319.86114501953125,
"distance": 1.371020531692656
},
"Sat, 01 Jan 1983": {
"y": 268.2479248046875,
"x": 386.695556640625,
"distance": 6.227667128428439
},
"Fri, 01 Jan 1965": {
"y": 340.0,
"x": 84.08617401123047,
"distance": 0.09268261188132954
},
"Thu, 01 Jan 1976": {
"y": 279.9120178222656,
"x": 272.998291015625,
"distance": 10.816296792690705
},
"Sun, 01 Jan 1978": {
"y": 287.45867919921875,
"x": 300.59234619140625,
"distance": 3.273363851812623
},
"Fri, 01 Jan 1999": {
"y": 185.55679321289062,
"x": 654.0256958007812,
"distance": 1.8691051284717302
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.952856063842773,
"distance": 0.1265737145478738
},
"Sat, 01 Jan 2000": {
"y": 204.90628051757812,
"x": 671.981201171875,
"distance": 0.3473065849096695
},
"Tue, 01 Jan 1985": {
"y": 216.78675842285156,
"x": 417.545654296875,
"distance": 2.3885360081121565
},
"Sat, 01 Jan 2005": {
"y": 315.00689697265625,
"x": 755.5975341796875,
"distance": 0.848084140172686
},
"Mon, 01 Jan 1996": {
"y": 161.31134033203125,
"x": 604.1074829101562,
"distance": 0.9286858501517476
},
"Mon, 01 Jan 2007": {
"y": 318.31903076171875,
"x": 789.3244018554688,
"distance": 0.09820630392024264
},
"Tue, 01 Jan 1974": {
"y": 339.9998474121094,
"x": 235.30564880371094,
"distance": 0.1974304629654517
},
"Fri, 01 Jan 1971": {
"y": 340.0,
"x": 184.44708251953125,
"distance": 0.2742357303783649
},
"Wed, 01 Jan 1964": {
"y": 340.0,
"x": 67.13331604003906,
"distance": 0.03389301001517708
},
"Sun, 01 Jan 2006": {
"y": 316.97100830078125,
"x": 772.4285278320312,
"distance": 0.36880107409566254
},
"Thu, 01 Jan 2009": {
"y": 320.24725341796875,
"x": 822.4953002929688,
"distance": 0.37454877585135504
},
"Thu, 01 Jan 1970": {
"y": 340.0,
"x": 168.17234802246094,
"distance": 0.23133867280444065
},
"Mon, 01 Jan 1990": {
"y": 146.86651611328125,
"x": 505.12298583984375,
"distance": 1.5162084644132594
},
"Mon, 01 Jan 1973": {
"y": 340.0,
"x": 218.35279846191406,
"distance": 0.02488896245642991
},
"Mon, 01 Jan 2001": {
"y": 224.17288208007812,
"x": 689.081298828125,
"distance": 0.6159636008472738
},
"Thu, 01 Jan 1981": {
"y": 299.5346374511719,
"x": 352.6806640625,
"distance": 0.250979508954391
},
"Sun, 01 Jan 1995": {
"y": 156.04298400878906,
"x": 588.7494506835938,
"distance": 2.1877703549247602
},
"Sat, 01 Jan 1977": {
"y": 283.3724670410156,
"x": 286.2734375,
"distance": 2.6533452539724847
},
"Fri, 01 Jan 1982": {
"y": 282.491455078125,
"x": 369.19036865234375,
"distance": 0.4442596297131974
},
"Sat, 01 Jan 1966": {
"y": 340.0,
"x": 101.03902435302734,
"distance": 0.2652240534250865
},
"Tue, 01 Jan 1963": {
"y": 340.0,
"x": 50.180458068847656,
"distance": 0.20644208095347238
},
"Sun, 01 Jan 1984": {
"y": 269.2159423828125,
"x": 398.71539306640625,
"distance": 10.443629847796682
},
"Fri, 01 Jan 2010": {
"y": 321.1916198730469,
"x": 839.4109497070312,
"distance": 0.8743239008676168
},
"Mon, 01 Jan 1968": {
"y": 340.0,
"x": 134.26663208007812,
"distance": 0.06778602003035417
},
"Fri, 01 Jan 1988": {
"y": 110.2488021850586,
"x": 471.2775573730469,
"distance": 2.075404716233174
},
"Wed, 01 Jan 1986": {
"y": 86.83326721191406,
"x": 443.6219787597656,
"distance": 15.47598071824401
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 156.2801055908203,
"x": 553.2857666015625,
"distance": 4.876040320986712
},
"Thu, 01 Jan 2004": {
"y": 313.0736389160156,
"x": 740.2396240234375,
"distance": 3.3054542785914416
},
"Wed, 01 Jan 1992": {
"y": 155.11734008789062,
"x": 537.8311157226562,
"distance": 3.634908964479626
},
"Mon, 01 Jan 1962": {
"y": 340.0,
"x": 33.90571212768555,
"distance": 0.2991208781375363
},
"Wed, 01 Jan 1975": {
"y": 335.82373046875,
"x": 247.0227508544922,
"distance": 6.412254487694156
},
"Sun, 01 Jan 1989": {
"y": 118.3270492553711,
"x": 484.5840148925781,
"distance": 3.3360890646269
},
"Sat, 01 Jan 2011": {
"y": 319.62396240234375,
"x": 856.2866821289062,
"distance": 0.7740606692471922
},
"Sun, 01 Jan 1967": {
"y": 340.0,
"x": 117.31376647949219,
"distance": 0.2403427203631736
},
"Tue, 01 Jan 2013": {
"y": 317.0484619140625,
"x": 890.0,
"distance": 1.2053621560426109e-05
},
"Wed, 01 Jan 2003": {
"y": 295.0226135253906,
"x": 724.4970092773438,
"distance": 2.595048414476863
},
"Tue, 01 Jan 2002": {
"y": 241.01828002929688,
"x": 702.630126953125,
"distance": 3.2196931944229146
},
"Thu, 01 Jan 1998": {
"y": 176.8261260986328,
"x": 637.9923095703125,
"distance": 0.3465514082846723
},
"Sat, 01 Jan 1972": {
"y": 340.0,
"x": 201.3999481201172,
"distance": 0.10167903004551704
},
"Tue, 01 Jan 1980": {
"y": 311.1699523925781,
"x": 335.547119140625,
"distance": 4.202310641916484
}
},
"Jody": {
"Thu, 01 Jan 1987": {
"y": 159.3732147216797,
"x": 453.3039245605469,
"distance": 0.1060966821617127
},
"Wed, 01 Jan 1969": {
"y": 147.4784393310547,
"x": 151.357421875,
"distance": 4.902973562468296
},
"Tue, 01 Jan 2008": {
"y": 244.73590087890625,
"x": 804.9910888671875,
"distance": 2.9859185672658395
},
"Tue, 01 Jan 1991": {
"y": 180.90374755859375,
"x": 518.7811279296875,
"distance": 4.576320476631067
},
"Sun, 01 Jan 2012": {
"y": 239.34918212890625,
"x": 874.2247314453125,
"distance": 2.0961407484145993
},
"Wed, 01 Jan 1997": {
"y": 188.68336486816406,
"x": 621.1227416992188,
"distance": 2.0152724367230217
},
"Sat, 01 Jan 1994": {
"y": 184.24952697753906,
"x": 571.87890625,
"distance": 7.537964575334316
},
"Mon, 01 Jan 1979": {
"y": 143.36181640625,
"x": 319.0124206542969,
"distance": 0.69061702730558
},
"Sat, 01 Jan 1983": {
"y": 121.12439727783203,
"x": 386.1295166015625,
"distance": 0.5113542539410352
},
"Fri, 01 Jan 1965": {
"y": 102.57573699951172,
"x": 83.8663558959961,
"distance": 0.3286005641182327
},
"Thu, 01 Jan 1976": {
"y": 131.70140075683594,
"x": 268.5464782714844,
"distance": 0.36499646689931103
},
"Sun, 01 Jan 1978": {
"y": 142.47500610351562,
"x": 302.0880432128906,
"distance": 0.19422691377370416
},
"Fri, 01 Jan 1999": {
"y": 190.31883239746094,
"x": 655.4296264648438,
"distance": 3.4863454447321782
},
"Sun, 01 Jan 1961": {
"y": 105.8218994140625,
"x": 15.984578132629395,
"distance": 0.9998661640757317
},
"Sat, 01 Jan 2000": {
"y": 190.46920776367188,
"x": 669.4470825195312,
"distance": 5.872988681516208
},
"Tue, 01 Jan 1985": {
"y": 130.3018341064453,
"x": 417.9668884277344,
"distance": 3.2749706721434233
},
"Sat, 01 Jan 2005": {
"y": 230.94650268554688,
"x": 754.8364868164062,
"distance": 2.469170895203314
},
"Mon, 01 Jan 1996": {
"y": 186.09327697753906,
"x": 605.2091064453125,
"distance": 1.6506885188970368
},
"Mon, 01 Jan 2007": {
"y": 244.0419464111328,
"x": 789.2958374023438,
"distance": 0.5007132675437634
},
"Tue, 01 Jan 1974": {
"y": 131.9208526611328,
"x": 235.46240234375,
"distance": 0.38889602363169967
},
"Fri, 01 Jan 1971": {
"y": 154.19479370117188,
"x": 185.6485137939453,
"distance": 4.958094148168307
},
"Wed, 01 Jan 1964": {
"y": 103.75630950927734,
"x": 66.96011352539062,
"distance": 0.9685454795693456
},
"Sun, 01 Jan 2006": {
"y": 240.69515991210938,
"x": 773.2948608398438,
"distance": 1.9575341159346424
},
"Thu, 01 Jan 2009": {
"y": 239.33535766601562,
"x": 821.4481201171875,
"distance": 6.521098647205482
},
"Thu, 01 Jan 1970": {
"y": 143.66888427734375,
"x": 167.16958618164062,
"distance": 5.901534645788382
},
"Mon, 01 Jan 1990": {
"y": 179.57130432128906,
"x": 504.2072448730469,
"distance": 1.4872941497619738
},
"Mon, 01 Jan 1973": {
"y": 143.24781799316406,
"x": 217.89361572265625,
"distance": 1.0820675526755474
},
"Mon, 01 Jan 2001": {
"y": 209.8015594482422,
"x": 690.3919677734375,
"distance": 6.217928724223097
},
"Thu, 01 Jan 1981": {
"y": 134.5293426513672,
"x": 351.97674560546875,
"distance": 1.622607687556721
},
"Sun, 01 Jan 1995": {
"y": 178.79481506347656,
"x": 588.2987670898438,
"distance": 5.384224232639011
},
"Sat, 01 Jan 1977": {
"y": 139.77163696289062,
"x": 285.9463806152344,
"distance": 1.1267357246840444
},
"Fri, 01 Jan 1982": {
"y": 121.7099838256836,
"x": 370.5267028808594,
"distance": 2.8281161559362245
},
"Sat, 01 Jan 1966": {
"y": 105.24956512451172,
"x": 98.5243911743164,
"distance": 4.292520933619282
},
"Tue, 01 Jan 1963": {
"y": 99.77415466308594,
"x": 51.21953201293945,
"distance": 1.905766752449044
},
"Sun, 01 Jan 1984": {
"y": 124.92671203613281,
"x": 403.2357177734375,
"distance": 0.40894386179907816
},
"Fri, 01 Jan 2010": {
"y": 248.73727416992188,
"x": 839.0359497070312,
"distance": 9.821365206425396
},
"Mon, 01 Jan 1968": {
"y": 139.06129455566406,
"x": 133.71157836914062,
"distance": 1.6383654509444217
},
"Fri, 01 Jan 1988": {
"y": 163.44345092773438,
"x": 470.3494873046875,
"distance": 0.19150326877843457
},
"Wed, 01 Jan 1986": {
"y": 152.8459930419922,
"x": 438.4288330078125,
"distance": 2.9103311197691633
},
"Fri, 01 Jan 1960": {
"y": 119.28772735595703,
"x": 0.0,
"distance": 1.8400937307205822e-06
},
"Fri, 01 Jan 1993": {
"y": 165.88731384277344,
"x": 552.4344482421875,
"distance": 2.5808976588994654
},
"Thu, 01 Jan 2004": {
"y": 230.97579956054688,
"x": 739.1937866210938,
"distance": 0.6806577450616192
},
"Wed, 01 Jan 1992": {
"y": 162.3058319091797,
"x": 539.0470581054688,
"distance": 5.0693926800981455
},
"Mon, 01 Jan 1962": {
"y": 91.36094665527344,
"x": 34.255985260009766,
"distance": 6.216013816222327
},
"Wed, 01 Jan 1975": {
"y": 125.08082580566406,
"x": 251.92137145996094,
"distance": 3.4117765827411684
},
"Sun, 01 Jan 1989": {
"y": 168.46719360351562,
"x": 486.4976806640625,
"distance": 1.59652802203516
},
"Sat, 01 Jan 2011": {
"y": 232.43942260742188,
"x": 857.985595703125,
"distance": 7.957480275533547
},
"Sun, 01 Jan 1967": {
"y": 131.37167358398438,
"x": 119.93692016601562,
"distance": 3.4360607285242932
},
"Tue, 01 Jan 2013": {
"y": 243.38043212890625,
"x": 889.4398803710938,
"distance": 0.565300399803378
},
"Wed, 01 Jan 2003": {
"y": 231.38626098632812,
"x": 724.267578125,
"distance": 5.215560117079602
},
"Tue, 01 Jan 2002": {
"y": 211.28945922851562,
"x": 703.23779296875,
"distance": 6.217308058340795
},
"Thu, 01 Jan 1998": {
"y": 185.0748291015625,
"x": 637.6188354492188,
"distance": 3.555723281370604
},
"Sat, 01 Jan 1972": {
"y": 150.0681915283203,
"x": 201.7572479248047,
"distance": 0.6786455500460242
},
"Tue, 01 Jan 1980": {
"y": 140.97982788085938,
"x": 335.77484130859375,
"distance": 0.4567977726792306
}
},
"London": {
"Thu, 01 Jan 1987": {
"y": 145.33758544921875,
"x": 451.4368591308594,
"distance": 4.381181383319337
},
"Wed, 01 Jan 1969": {
"y": 203.1951904296875,
"x": 149.7996368408203,
"distance": 2.4922924656067864
},
"Tue, 01 Jan 2008": {
"y": 63.06969451904297,
"x": 806.7955932617188,
"distance": 1.7137767869191025
},
"Tue, 01 Jan 1991": {
"y": 156.93954467773438,
"x": 519.0157470703125,
"distance": 4.184645178362431
},
"Sun, 01 Jan 2012": {
"y": 43.08589172363281,
"x": 873.106201171875,
"distance": 1.7739354833690348
},
"Wed, 01 Jan 1997": {
"y": 132.58053588867188,
"x": 621.0350952148438,
"distance": 1.911979571464986
},
"Sat, 01 Jan 1994": {
"y": 127.72598266601562,
"x": 573.0247192382812,
"distance": 5.933202276204858
},
"Mon, 01 Jan 1979": {
"y": 175.85079956054688,
"x": 318.966552734375,
"distance": 0.08989280720703155
},
"Sat, 01 Jan 1983": {
"y": 178.1315155029297,
"x": 384.8983154296875,
"distance": 8.238700682318028
},
"Fri, 01 Jan 1965": {
"y": 251.16268920898438,
"x": 84.06757354736328,
"distance": 3.838025829967713
},
"Thu, 01 Jan 1976": {
"y": 152.14080810546875,
"x": 273.1292724609375,
"distance": 16.745780899483798
},
"Sun, 01 Jan 1978": {
"y": 158.4333953857422,
"x": 301.47015380859375,
"distance": 6.073226265681453
},
"Fri, 01 Jan 1999": {
"y": 121.19066619873047,
"x": 654.2108154296875,
"distance": 3.4182726057036423
},
"Sun, 01 Jan 1961": {
"y": 340.0,
"x": 16.786579132080078,
"distance": 0.03970321721482151
},
"Sat, 01 Jan 2000": {
"y": 131.66110229492188,
"x": 672.2689208984375,
"distance": 1.4147691724358968
},
"Tue, 01 Jan 1985": {
"y": 159.8162078857422,
"x": 421.7085266113281,
"distance": 2.4296642795785823
},
"Sat, 01 Jan 2005": {
"y": 117.09625244140625,
"x": 753.7434692382812,
"distance": 5.9766076568620194
},
"Mon, 01 Jan 1996": {
"y": 133.10218811035156,
"x": 604.3557739257812,
"distance": 0.23905102258496244
},
"Mon, 01 Jan 2007": {
"y": 79.05475616455078,
"x": 789.2424926757812,
"distance": 0.38076588254013527
},
"Tue, 01 Jan 1974": {
"y": 176.81243896484375,
"x": 231.4304656982422,
"distance": 13.1973109461717
},
"Fri, 01 Jan 1971": {
"y": 235.37799072265625,
"x": 187.1917266845703,
"distance": 16.409037230388297
},
"Wed, 01 Jan 1964": {
"y": 241.5018768310547,
"x": 69.3647689819336,
"distance": 2.581862826656448
},
"Sun, 01 Jan 2006": {
"y": 95.85941314697266,
"x": 773.441162109375,
"distance": 1.2294543535611533
},
"Thu, 01 Jan 2009": {
"y": 56.133968353271484,
"x": 822.7738037109375,
"distance": 0.16282887704810373
},
"Thu, 01 Jan 1970": {
"y": 194.31813049316406,
"x": 164.15138244628906,
"distance": 13.02131708811227
},
"Mon, 01 Jan 1990": {
"y": 159.93072509765625,
"x": 505.3919677734375,
"distance": 4.0907320383088575
},
"Mon, 01 Jan 1973": {
"y": 189.2452850341797,
"x": 218.30197143554688,
"distance": 0.35733876859022845
},
"Mon, 01 Jan 2001": {
"y": 137.1337890625,
"x": 688.7352294921875,
"distance": 1.1330034294792088
},
"Thu, 01 Jan 1981": {
"y": 161.20620727539062,
"x": 353.4895324707031,
"distance": 16.726674189065395
},
"Sun, 01 Jan 1995": {
"y": 130.0200653076172,
"x": 587.8893432617188,
"distance": 1.0769514224319927
},
"Sat, 01 Jan 1977": {
"y": 159.44102478027344,
"x": 286.9527587890625,
"distance": 6.936090672320402
},
"Fri, 01 Jan 1982": {
"y": 180.32228088378906,
"x": 371.9526672363281,
"distance": 9.997924864215273
},
"Sat, 01 Jan 1966": {
"y": 242.9495849609375,
"x": 99.74474334716797,
"distance": 1.5454187498472363
},
"Tue, 01 Jan 1963": {
"y": 225.44802856445312,
"x": 55.779457092285156,
"distance": 22.115551082429075
},
"Sun, 01 Jan 1984": {
"y": 188.52537536621094,
"x": 401.8105773925781,
"distance": 11.89172822451586
},
"Fri, 01 Jan 2010": {
"y": 50.657527923583984,
"x": 839.3740844726562,
"distance": 0.6217474699624965
},
"Mon, 01 Jan 1968": {
"y": 210.55287170410156,
"x": 134.77076721191406,
"distance": 0.8812500077473898
},
"Fri, 01 Jan 1988": {
"y": 169.14125061035156,
"x": 471.8234558105469,
"distance": 2.631518268192628
},
"Wed, 01 Jan 1986": {
"y": 145.26805114746094,
"x": 437.40350341796875,
"distance": 1.887467606049142
},
"Fri, 01 Jan 1960": {
"y": 340.0,
"x": 0.0,
"distance": 0.0
},
"Fri, 01 Jan 1993": {
"y": 145.9107208251953,
"x": 552.3052368164062,
"distance": 7.32889565855414
},
"Thu, 01 Jan 2004": {
"y": 116.53449249267578,
"x": 739.162109375,
"distance": 4.506916341486637
},
"Wed, 01 Jan 1992": {
"y": 144.0144805908203,
"x": 537.8756713867188,
"distance": 6.3159170871773185
},
"Mon, 01 Jan 1962": {
"y": 335.07855224609375,
"x": 26.911338806152344,
"distance": 8.309455654567543
},
"Wed, 01 Jan 1975": {
"y": 204.46429443359375,
"x": 250.07626342773438,
"distance": 26.31247503711866
},
"Sun, 01 Jan 1989": {
"y": 174.0487518310547,
"x": 485.60076904296875,
"distance": 4.620226555191931
},
"Sat, 01 Jan 2011": {
"y": 44.32646179199219,
"x": 856.3849487304688,
"distance": 1.861789792095618
},
"Sun, 01 Jan 1967": {
"y": 221.32049560546875,
"x": 118.55062866210938,
"distance": 1.6543154725485054
},
"Tue, 01 Jan 2013": {
"y": 36.539161682128906,
"x": 890.0,
"distance": 4.3080368783421363e-07
},
"Wed, 01 Jan 2003": {
"y": 127.55986022949219,
"x": 721.5525512695312,
"distance": 1.1515419154351438
},
"Tue, 01 Jan 2002": {
"y": 135.79666137695312,
"x": 704.6719360351562,
"distance": 1.114213015848231
},
"Thu, 01 Jan 1998": {
"y": 124.61090850830078,
"x": 638.1145629882812,
"distance": 0.7698551080655941
},
"Sat, 01 Jan 1972": {
"y": 216.17919921875,
"x": 202.0344696044922,
"distance": 0.779863160692534
},
"Tue, 01 Jan 1980": {
"y": 188.3078155517578,
"x": 332.98699951171875,
"distance": 12.034294278938015
}
},
"Riley": {
"Thu, 01 Jan 1987": {
"y": 282.6540222167969,
"x": 453.7155456542969,
"distance": 3.8024039393920384
},
"Wed, 01 Jan 1969": {
"y": 320.1836853027344,
"x": 151.22073364257812,
"distance": 0.426031464689264
},
"Tue, 01 Jan 2008": {
"y": 141.88906860351562,
"x": 805.8761596679688,
"distance": 0.13215626863363178
},
"Tue, 01 Jan 1991": {
"y": 254.9073028564453,
"x": 520.358642578125,
"distance": 0.7840933468075377
},
"Sun, 01 Jan 2012": {
"y": 127.09883117675781,
"x": 873.1861572265625,
"distance": 0.02294740393724765
},
"Wed, 01 Jan 1997": {
"y": 215.34527587890625,
"x": 622.2334594726562,
"distance": 1.618740202540274
},
"Sat, 01 Jan 1994": {
"y": 231.48538208007812,
"x": 571.3480224609375,
"distance": 1.1647740375538913
},
"Mon, 01 Jan 1979": {
"y": 311.31805419921875,
"x": 319.32208251953125,
"distance": 0.2970898870558333
},
"Sat, 01 Jan 1983": {
"y": 295.1619873046875,
"x": 385.29998779296875,
"distance": 2.093928958856897
},
"Fri, 01 Jan 1965": {
"y": 316.5112609863281,
"x": 84.27320861816406,
"distance": 2.030618742557829
},
"Thu, 01 Jan 1976": {
"y": 316.2832336425781,
"x": 268.75048828125,
"distance": 2.6560748106456535
},
"Sun, 01 Jan 1978": {
"y": 313.99560546875,
"x": 302.49810791015625,
"distance": 1.4658516176378311
},
"Fri, 01 Jan 1999": {
"y": 194.359619140625,
"x": 656.0471801757812,
"distance": 3.3853052925319576
},
"Sun, 01 Jan 1961": {
"y": 321.5484924316406,
"x": 17.0576114654541,
"distance": 0.4947884189541637
},
"Sat, 01 Jan 2000": {
"y": 192.6186981201172,
"x": 671.3653564453125,
"distance": 2.1123314573617367
},
"Tue, 01 Jan 1985": {
"y": 287.13720703125,
"x": 420.84619140625,
"distance": 1.5943199502247962
},
"Sat, 01 Jan 2005": {
"y": 152.84986877441406,
"x": 755.3960571289062,
"distance": 1.4931798725796772
},
"Mon, 01 Jan 1996": {
"y": 226.7674102783203,
"x": 603.6728515625,
"distance": 3.1169429206062493
},
"Mon, 01 Jan 2007": {
"y": 147.9530487060547,
"x": 789.366455078125,
"distance": 0.9207420879796548
},
"Tue, 01 Jan 1974": {
"y": 311.0274353027344,
"x": 235.2469482421875,
"distance": 0.30778556661541245
},
"Fri, 01 Jan 1971": {
"y": 322.1715393066406,
"x": 184.6537322998047,
"distance": 0.9990662115603397
},
"Wed, 01 Jan 1964": {
"y": 320.3775939941406,
"x": 67.12652587890625,
"distance": 1.4087078745986072
},
"Sun, 01 Jan 2006": {
"y": 155.14947509765625,
"x": 772.2428588867188,
"distance": 2.9384625593762475
},
"Thu, 01 Jan 2009": {
"y": 137.16281127929688,
"x": 822.8275756835938,
"distance": 0.5992381822197812
},
"Thu, 01 Jan 1970": {
"y": 319.9795227050781,
"x": 167.72911071777344,
"distance": 0.7421247702396604
},
"Mon, 01 Jan 1990": {
"y": 263.33709716796875,
"x": 503.7034912109375,
"distance": 0.41041053392817983
},
"Mon, 01 Jan 1973": {
"y": 313.2969665527344,
"x": 218.90951538085938,
"distance": 1.2021288312060594
},
"Mon, 01 Jan 2001": {
"y": 184.8065948486328,
"x": 688.1544799804688,
"distance": 0.6771328107689331
},
"Thu, 01 Jan 1981": {
"y": 299.7799377441406,
"x": 352.3880920410156,
"distance": 0.4975771974088045
},
"Sun, 01 Jan 1995": {
"y": 227.2812957763672,
"x": 587.7523193359375,
"distance": 1.4000328268918665
},
"Sat, 01 Jan 1977": {
"y": 313.0698547363281,
"x": 285.4786071777344,
"distance": 2.0621689010201387
},
"Fri, 01 Jan 1982": {
"y": 291.4004211425781,
"x": 370.1427917480469,
"distance": 2.5705716177380364
},
"Sat, 01 Jan 1966": {
"y": 317.7090148925781,
"x": 100.74763488769531,
"distance": 1.6851276521581129
},
"Tue, 01 Jan 1963": {
"y": 321.1246643066406,
"x": 50.62677764892578,
"distance": 0.6030016528185782
},
"Sun, 01 Jan 1984": {
"y": 305.095703125,
"x": 402.45770263671875,
"distance": 7.624569448625475
},
"Fri, 01 Jan 2010": {
"y": 135.7375946044922,
"x": 839.7900390625,
"distance": 0.896955572952232
},
"Mon, 01 Jan 1968": {
"y": 320.93994140625,
"x": 134.7517547607422,
"distance": 1.9339087916636473
},
"Fri, 01 Jan 1988": {
"y": 277.4136657714844,
"x": 470.3435974121094,
"distance": 0.9177980782420432
},
"Wed, 01 Jan 1986": {
"y": 277.7195129394531,
"x": 436.3710021972656,
"distance": 4.2332422170831645
},
"Fri, 01 Jan 1960": {
"y": 322.1052551269531,
"x": 0.0,
"distance": 8.030941614833864e-06
},
"Fri, 01 Jan 1993": {
"y": 240.9518280029297,
"x": 553.4503784179688,
"distance": 1.847169687637422
},
"Thu, 01 Jan 2004": {
"y": 155.28355407714844,
"x": 739.2423095703125,
"distance": 1.6418159175023668
},
"Wed, 01 Jan 1992": {
"y": 244.9235382080078,
"x": 537.9608764648438,
"distance": 1.879719558795169
},
"Mon, 01 Jan 1962": {
"y": 322.088623046875,
"x": 33.5846061706543,
"distance": 0.6236290054109097
},
"Wed, 01 Jan 1975": {
"y": 312.1943664550781,
"x": 251.69070434570312,
"distance": 1.2697008745549836
},
"Sun, 01 Jan 1989": {
"y": 271.5317687988281,
"x": 486.9328308105469,
"distance": 0.8729410655756799
},
"Sat, 01 Jan 2011": {
"y": 136.04739379882812,
"x": 855.7362060546875,
"distance": 2.4108733704625323
},
"Sun, 01 Jan 1967": {
"y": 316.45635986328125,
"x": 117.2107162475586,
"distance": 2.304868578034396
},
"Tue, 01 Jan 2013": {
"y": 115.77290344238281,
"x": 890.0,
"distance": 1.1721739099357364e-06
},
"Wed, 01 Jan 2003": {
"y": 165.4031524658203,
"x": 721.6932373046875,
"distance": 1.258525075398978
},
"Tue, 01 Jan 2002": {
"y": 172.33062744140625,
"x": 706.0982055664062,
"distance": 1.4227279563587876
},
"Thu, 01 Jan 1998": {
"y": 207.91934204101562,
"x": 636.998291015625,
"distance": 1.927453571309913
},
"Sat, 01 Jan 1972": {
"y": 320.14593505859375,
"x": 200.97683715820312,
"distance": 1.0986215672441
},
"Tue, 01 Jan 1980": {
"y": 307.42181396484375,
"x": 335.38739013671875,
"distance": 0.7852716243524239
}
}
}
year_starting_steady_decade name 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
1960 Paris 0.4666666666666667 0.5539568345323741 0.5661764705882353 0.5271317829457365 0.48905109489051096 0.528 0.4020618556701031 0.4336283185840708 0.41509433962264153 0.472 0.3442622950819672 0.3081081081081081 0.3055555555555556 0.45918367346938777 0.40476190476190477 0.3008849557522124 0.3902439024390244 0.390625 0.45535714285714285 0.38666666666666666 0.37714285714285717 0.43617021276595747 0.46382978723404256 0.5190476190476191 0.5229007633587787 0.5862068965517241 0.6735159817351598 0.6468172484599589 0.6220806794055201 0.6147403685092128 0.6523031203566122 0.62002567394095 0.6579601990049752 0.680622009569378 0.6995884773662552 0.6991150442477876 0.6823899371069182 0.7350299401197605 0.7356770833333334 0.7671601615074024 0.7471264367816092 0.7909356725146199 0.8281879194630872 0.9081632653061225 0.9572573463935886 0.9494949494949495 0.9354120267260579 0.92497320471597 0.8998682476943346 0.9268585131894485 0.9263456090651558 0.9262948207171314 0.9312252964426877 0.9212893553223388
1960 Rene 0.5604192355117139 0.5499359795134443 0.5558252427184466 0.5339869281045752 0.45734265734265733 0.46008708272859217 0.46513470681458 0.44363636363636366 0.486231884057971 0.4505050505050505 0.38673253352152437 0.4020537124802528 0.37346437346437344 0.37281910009182734 0.3208606173994387 0.32051282051282054 0.28586278586278585 0.29897959183673467 0.296794208893485 0.2605128205128205 0.28115015974440893 0.298728813559322 0.2977346278317152 0.21414728682170542 0.2135523613963039 0.20801733477789816 0.2089864158829676 0.20584926884139482 0.18043478260869567 0.18342541436464088 0.1483739837398374 0.13575129533678756 0.14773980154355015 0.12868949232585597 0.13789107763615296 0.12185929648241206 0.12398921832884097 0.1386271870794078 0.11925287356321838 0.11337209302325581 0.11866666666666667 0.09908536585365854 0.09006211180124224 0.07248764415156507 0.06829268292682927 0.08231173380035026 0.05595667870036101 0.05420560747663551 0.06827309236947791 0.048723897911832945 0.04197530864197531 0.07435897435897436 0.04294478527607362 0.07096774193548387
2000 Jessie 0.35294117647058826 0.3307475317348378 0.3224873463485177 0.3075153374233129 0.31136363636363634 0.3508902077151335 0.34517766497461927 0.3188034188034188 0.30821256038647343 0.29545454545454547 0.31514581373471307 0.3205357142857143 0.2957089552238806 0.318552036199095 0.32339656729900634 0.33676975945017185 0.352755905511811 0.34225352112676055 0.4183474300585556 0.41274397244546496 0.4256544502617801 0.49167005282405524 0.4624090541632983 0.4333821376281113 0.47509578544061304 0.49531459170013387 0.5334168755221387 0.51237935375577 0.5173951828724354 0.503288031565103 0.47068747363981445 0.48712352684417287 0.5114325711619225 0.5059360730593607 0.5605180884323359 0.5575698187163155 0.5283324338909876 0.5291170945522855 0.5367965367965368 0.5598484848484848 0.5742811501597445 0.5070656691604323 0.5086661642803316 0.4959807073954984 0.5157179269328802 0.4621695533272562 0.49207828518173347 0.4819863680623174 0.503061224489796 0.47776510832383123 0.508495145631068 0.550744248985115 0.5688775510204082 0.5984943538268507
2000 Justice 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25925925925925924 0.2692307692307692 0.2 0.2631578947368421 0.28 0.18421052631578946 0.21212121212121213 0.1794871794871795 0.23076923076923078 0.1875 0.09803921568627451 0.17647058823529413 0.18181818181818182 0.13513513513513514 0.30612244897959184 0.2641509433962264 0.36666666666666664 0.375 0.21176470588235294 0.22556390977443608 0.18 0.39503386004514673 0.6052188552188552 0.6354799513973268 0.5100710900473934 0.45883940620782726 0.43646805455850685 0.44003378378378377 0.4210061782877317 0.46522064323111445 0.4662379421221865 0.5 0.4758454106280193 0.4734982332155477 0.4308300395256917 0.4146919431279621 0.4581320450885668 0.452970297029703 0.4827586206896552 0.5214489990467112 0.5358455882352942 0.5454545454545454
2000 Jackie 0.6858650757228086 0.7636592379583034 0.7567510990161189 0.7270381836945304 0.7671330329618212 0.7342342342342343 0.7115526122148639 0.6751004016064257 0.6876083188908145 0.6470588235294118 0.6454802259887006 0.6235897435897436 0.6029411764705882 0.5940089228808159 0.6062416998671979 0.601763907734057 0.56656346749226 0.604261796042618 0.6243611584327087 0.6294326241134752 0.5980650835532102 0.6287262872628726 0.6681376875551632 0.6716417910447762 0.6554621848739496 0.6621468926553672 0.6452442159383034 0.6964933494558646 0.6782051282051282 0.6510416666666666 0.6345885634588564 0.5993836671802774 0.6280276816608996 0.6125954198473282 0.5692640692640693 0.5939849624060151 0.5875831485587583 0.49742268041237114 0.4625668449197861 0.49056603773584906 0.41642228739002934 0.43086816720257237 0.5256410256410257 0.4787234042553192 0.5543071161048689 0.5267489711934157 0.4978902953586498 0.5475285171102662 0.5643153526970954 0.5617021276595745 0.5865921787709497 0.6164383561643836 0.4597156398104265 0.6054421768707483
2000 Devyn 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7142857142857143 0.0 0.6818181818181818 0.6923076923076923 0.6 0.6097560975609756 0.5849056603773585 0.618421052631579 0.6078431372549019 0.6148148148148148 0.6995708154506438 0.7223880597014926 0.7061855670103093 0.588495575221239 0.5808656036446469 0.48747591522157996 0.47309833024118736 0.5018050541516246 0.4922813036020583 0.4900459418070444 0.5045180722891566 0.48417721518987344 0.46577946768060835 0.46534653465346537 0.46459412780656306 0.5141843971631206 0.46476190476190476 0.5353159851301115 0.4899193548387097 0.5290697674418605 0.5392781316348195 0.5783132530120482 0.5976470588235294 0.6666666666666666
2000 Armani 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25 0.15384615384615385 0.22988505747126436 0.23076923076923078 0.35384615384615387 0.33678756476683935 0.37554585152838427 0.448 0.45147679324894513 0.46311475409836067 0.508 0.5213675213675214 0.51010101010101 0.5276595744680851 0.4875717017208413 0.46611909650924027 0.47680890538033394 0.47088186356073214 0.4198473282442748 0.4680337756332931 0.43550295857988164 0.38372093023255816 0.4236343366778149 0.3894230769230769 0.4225206611570248
2000 Riley 0.05263157894736842 0.05555555555555555 0.05084745762711865 0.05714285714285714 0.05357142857142857 0.075 0.06060606060606061 0.0759493670886076 0.050505050505050504 0.05952380952380952 0.06097560975609756 0.04950495049504951 0.05555555555555555 0.08163265306122448 0.08602150537634409 0.08547008547008547 0.061946902654867256 0.08527131782945736 0.07222222222222222 0.0847457627118644 0.09392265193370165 0.11707317073170732 0.15021459227467812 0.13740458015267176 0.08029197080291971 0.1590909090909091 0.19560878243512975 0.15752212389380532 0.1867283950617284 0.19881656804733727 0.22666666666666666 0.24804177545691905 0.2848525469168901 0.2863070539419087 0.3223740392826644 0.3356425355039834 0.3242022027675798 0.3705843145967563 0.3838445807770961 0.43771298750473303 0.4273275284661755 0.4547355841051688 0.49656575934876623 0.5099783601827362 0.547964796479648 0.5547611309717257 0.5350561321753866 0.5675204359673025 0.5827432733158001 0.598342365317182 0.6033580462276493 0.5930383480825959 0.6261231931241047 0.6594914570160096
1970 Marion 0.6001478196600147 0.5713196033562167 0.612212529738303 0.6160267111853088 0.6147332768839966 0.5685685685685685 0.6047565118912798 0.573729863692689 0.5429638854296388 0.5477453580901857 0.5574963609898108 0.5106685633001422 0.49409780775716694 0.4734042553191489 0.46693386773547096 0.4874476987447699 0.44212962962962965 0.5 0.4717948717948718 0.44471153846153844 0.4796954314720812 0.5301507537688442 0.5355329949238579 0.5612903225806452 0.4940119760479042 0.5202492211838006 0.49846153846153846 0.5226480836236934 0.5102040816326531 0.5049833887043189 0.5496688741721855 0.5231788079470199 0.5723684210526315 0.5370370370370371 0.5885167464114832 0.5454545454545454 0.4956896551724138 0.49224806201550386 0.484375 0.4880382775119617 0.5802469135802469 0.5309734513274337 0.52 0.4296028880866426 0.4497991967871486 0.3828996282527881 0.38492063492063494 0.4362934362934363 0.4067796610169492 0.48034934497816595 0.44144144144144143 0.5211267605633803 0.5023041474654378 0.5897435897435898
1980 Marion 0.6001478196600147 0.5713196033562167 0.612212529738303 0.6160267111853088 0.6147332768839966 0.5685685685685685 0.6047565118912798 0.573729863692689 0.5429638854296388 0.5477453580901857 0.5574963609898108 0.5106685633001422 0.49409780775716694 0.4734042553191489 0.46693386773547096 0.4874476987447699 0.44212962962962965 0.5 0.4717948717948718 0.44471153846153844 0.4796954314720812 0.5301507537688442 0.5355329949238579 0.5612903225806452 0.4940119760479042 0.5202492211838006 0.49846153846153846 0.5226480836236934 0.5102040816326531 0.5049833887043189 0.5496688741721855 0.5231788079470199 0.5723684210526315 0.5370370370370371 0.5885167464114832 0.5454545454545454 0.4956896551724138 0.49224806201550386 0.484375 0.4880382775119617 0.5802469135802469 0.5309734513274337 0.52 0.4296028880866426 0.4497991967871486 0.3828996282527881 0.38492063492063494 0.4362934362934363 0.4067796610169492 0.48034934497816595 0.44144144144144143 0.5211267605633803 0.5023041474654378 0.5897435897435898
1980 Jessie 0.35294117647058826 0.3307475317348378 0.3224873463485177 0.3075153374233129 0.31136363636363634 0.3508902077151335 0.34517766497461927 0.3188034188034188 0.30821256038647343 0.29545454545454547 0.31514581373471307 0.3205357142857143 0.2957089552238806 0.318552036199095 0.32339656729900634 0.33676975945017185 0.352755905511811 0.34225352112676055 0.4183474300585556 0.41274397244546496 0.4256544502617801 0.49167005282405524 0.4624090541632983 0.4333821376281113 0.47509578544061304 0.49531459170013387 0.5334168755221387 0.51237935375577 0.5173951828724354 0.503288031565103 0.47068747363981445 0.48712352684417287 0.5114325711619225 0.5059360730593607 0.5605180884323359 0.5575698187163155 0.5283324338909876 0.5291170945522855 0.5367965367965368 0.5598484848484848 0.5742811501597445 0.5070656691604323 0.5086661642803316 0.4959807073954984 0.5157179269328802 0.4621695533272562 0.49207828518173347 0.4819863680623174 0.503061224489796 0.47776510832383123 0.508495145631068 0.550744248985115 0.5688775510204082 0.5984943538268507
1980 Angel 0.2870967741935484 0.4723101265822785 0.3943908851884312 0.3871576959395656 0.37835420393559926 0.3579697239536955 0.3634854771784232 0.34071550255536626 0.3770614692653673 0.4049429657794677 0.5165501165501165 0.5986339895540378 0.670344827586207 0.6341719077568134 0.5665755564232722 0.5940520446096654 0.5906474820143884 0.6319526627218935 0.6082312284008796 0.5645805592543276 0.5440797940797941 0.5830388692579506 0.5473651191969887 0.538829969209716 0.5435483870967742 0.5330739299610895 0.4899349643852586 0.46630119316349566 0.4824462061155153 0.4412445358704037 0.40900147565174616 0.40575221238938053 0.3572934232715008 0.3496143958868895 0.32511167216935327 0.31693489392831015 0.3314520266803489 0.32882414151925077 0.3332867328393681 0.33579335793357934 0.30998248686514884 0.30630720254675686 0.2744037591985105 0.23965431278045538 0.21552933410347389 0.17834156563388714 0.16086295518714255 0.16786289731946683 0.16979768786127167 0.1599897497223883 0.15477454861446366 0.16329029385574353 0.1659914204003813 0.16002126528442318
1980 Shea 0.5652173913043478 0.5416666666666666 0.5 0.47619047619047616 0.7352941176470589 0.6 0.7058823529411765 0.6515151515151515 0.4883720930232558 0.6370967741935484 0.6129032258064516 0.6666666666666666 0.6377551020408163 0.5799086757990868 0.603112840466926 0.5110132158590308 0.5233644859813084 0.5592417061611374 0.5603448275862069 0.6138211382113821 0.5746268656716418 0.5643153526970954 0.5443037974683544 0.5267857142857143 0.4091954022988506 0.4519906323185012 0.42505133470225875 0.4673469387755102 0.5080321285140562 0.5133928571428571 0.5088888888888888 0.5950782997762863 0.6044444444444445 0.5883777239709443 0.5929752066115702 0.5807174887892377 0.6485260770975056 0.6319018404907976 0.6969026548672567 0.648960739030023 0.6632231404958677 0.6361867704280155 0.570873786407767 0.6080305927342257 0.6278625954198473 0.655367231638418 0.609504132231405 0.6369565217391304 0.675609756097561 0.6136919315403423 0.6180124223602484 0.5360501567398119 0.5738255033557047 0.6533333333333333
1980 Casey 0.1792452830188679 0.1431980906921241 0.1325503355704698 0.15046296296296297 0.1447084233261339 0.1301775147928994 0.1471927162367223 0.1847649918962723 0.20803443328550933 0.21878579610538373 0.21384750219106047 0.2195290858725762 0.3139065204847086 0.3264876250658241 0.3222265778126225 0.30408525754884547 0.27594419870704323 0.2678319706794474 0.3378110548337371 0.3879857256145916 0.40274429816428703 0.40781934614088305 0.4194477384380823 0.4416033172080166 0.4237204724409449 0.4148793565683646 0.47640261729082556 0.4769579115610016 0.43825699568425447 0.44423604097532826 0.441212285211744 0.42769573697408747 0.45699088145896655 0.44774305555555555 0.46906048457381905 0.5008543763052972 0.5086774386594853 0.5113027266371475 0.5158204562178073 0.4686605981794538 0.45432764300688827 0.4519196900317013 0.42445450802799506 0.4408217954443948 0.3916586768935762 0.4112299465240642 0.41847826086956524 0.414039262343843 0.40933899332929047 0.4073013600572656 0.40706476030277544 0.42014519056261346 0.38919514884233736 0.40280777537796975
1980 London 0.0 0.0 0.0 0.4 0.2857142857142857 0.25 0.28205128205128205 0.35294117647058826 0.3829787234042553 0.39622641509433965 0.46511627906976744 0.26 0.36585365853658536 0.4444444444444444 0.5172413793103449 0.32142857142857145 0.6 0.5111111111111111 0.5517241379310345 0.4827586206896552 0.4117647058823529 0.575 0.4411764705882353 0.5 0.4107142857142857 0.5344827586206896 0.5777777777777777 0.584070796460177 0.4965034965034965 0.47513812154696133 0.5406698564593302 0.5269709543568465 0.5949367088607594 0.55 0.6406779661016949 0.6144578313253012 0.6079734219269103 0.6045016077170418 0.6357615894039735 0.6534090909090909 0.6089887640449438 0.5934065934065934 0.5978494623655914 0.6217821782178218 0.6704730831973899 0.6389548693586699 0.7201834862385321 0.766367137355584 0.8189753320683112 0.8353464717101081 0.8493191237418591 0.8751038493492107 0.8680631120783461 0.8925318761384335
1990 Marion 0.6001478196600147 0.5713196033562167 0.612212529738303 0.6160267111853088 0.6147332768839966 0.5685685685685685 0.6047565118912798 0.573729863692689 0.5429638854296388 0.5477453580901857 0.5574963609898108 0.5106685633001422 0.49409780775716694 0.4734042553191489 0.46693386773547096 0.4874476987447699 0.44212962962962965 0.5 0.4717948717948718 0.44471153846153844 0.4796954314720812 0.5301507537688442 0.5355329949238579 0.5612903225806452 0.4940119760479042 0.5202492211838006 0.49846153846153846 0.5226480836236934 0.5102040816326531 0.5049833887043189 0.5496688741721855 0.5231788079470199 0.5723684210526315 0.5370370370370371 0.5885167464114832 0.5454545454545454 0.4956896551724138 0.49224806201550386 0.484375 0.4880382775119617 0.5802469135802469 0.5309734513274337 0.52 0.4296028880866426 0.4497991967871486 0.3828996282527881 0.38492063492063494 0.4362934362934363 0.4067796610169492 0.48034934497816595 0.44144144144144143 0.5211267605633803 0.5023041474654378 0.5897435897435898
1990 Jessie 0.35294117647058826 0.3307475317348378 0.3224873463485177 0.3075153374233129 0.31136363636363634 0.3508902077151335 0.34517766497461927 0.3188034188034188 0.30821256038647343 0.29545454545454547 0.31514581373471307 0.3205357142857143 0.2957089552238806 0.318552036199095 0.32339656729900634 0.33676975945017185 0.352755905511811 0.34225352112676055 0.4183474300585556 0.41274397244546496 0.4256544502617801 0.49167005282405524 0.4624090541632983 0.4333821376281113 0.47509578544061304 0.49531459170013387 0.5334168755221387 0.51237935375577 0.5173951828724354 0.503288031565103 0.47068747363981445 0.48712352684417287 0.5114325711619225 0.5059360730593607 0.5605180884323359 0.5575698187163155 0.5283324338909876 0.5291170945522855 0.5367965367965368 0.5598484848484848 0.5742811501597445 0.5070656691604323 0.5086661642803316 0.4959807073954984 0.5157179269328802 0.4621695533272562 0.49207828518173347 0.4819863680623174 0.503061224489796 0.47776510832383123 0.508495145631068 0.550744248985115 0.5688775510204082 0.5984943538268507
1990 Infant 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34782608695652173 0.5135135135135135 0.475 0.32 0.4967741935483871 0.5104166666666666 0.49361702127659574 0.44976076555023925 0.46710526315789475 0.491183879093199 0.4786096256684492 0.47639484978540775 0.49238578680203043 0.4482758620689655 0.5284810126582279 0.4936530324400564 0.49295774647887325 0.502283105022831 0.463519313304721 0.4696132596685083 0.3870967741935484 0.4540229885057471 0.9080459770114943 0.5333333333333333 0.46153846153846156 0.0 0.0 0.5 0.0 0.0
1990 Carey 0.2707509881422925 0.32653061224489793 0.36023622047244097 0.3245967741935484 0.3140495867768595 0.3456221198156682 0.3474576271186441 0.4411764705882353 0.48942598187311176 0.5202231520223152 0.55858310626703 0.5901639344262295 0.6304062909567497 0.6674612634088201 0.6882845188284519 0.7152317880794702 0.7294736842105263 0.7037470725995316 0.7044854881266491 0.6721854304635762 0.6699410609037328 0.6247139588100686 0.5985915492957746 0.5681233933161953 0.5630252100840336 0.5072463768115942 0.4935483870967742 0.5238095238095238 0.4201388888888889 0.4781021897810219 0.4050632911392405 0.47808764940239046 0.4444444444444444 0.4631578947368421 0.5423728813559322 0.5 0.4632352941176471 0.45 0.53125 0.5188679245283019 0.4936708860759494 0.4186046511627907 0.36363636363636365 0.5272727272727272 0.4 0.49056603773584906 0.3191489361702128 0.38095238095238093 0.22857142857142856 0.40425531914893614 0.4090909090909091 0.19444444444444445 0.28205128205128205 0.25
1990 Casey 0.1792452830188679 0.1431980906921241 0.1325503355704698 0.15046296296296297 0.1447084233261339 0.1301775147928994 0.1471927162367223 0.1847649918962723 0.20803443328550933 0.21878579610538373 0.21384750219106047 0.2195290858725762 0.3139065204847086 0.3264876250658241 0.3222265778126225 0.30408525754884547 0.27594419870704323 0.2678319706794474 0.3378110548337371 0.3879857256145916 0.40274429816428703 0.40781934614088305 0.4194477384380823 0.4416033172080166 0.4237204724409449 0.4148793565683646 0.47640261729082556 0.4769579115610016 0.43825699568425447 0.44423604097532826 0.441212285211744 0.42769573697408747 0.45699088145896655 0.44774305555555555 0.46906048457381905 0.5008543763052972 0.5086774386594853 0.5113027266371475 0.5158204562178073 0.4686605981794538 0.45432764300688827 0.4519196900317013 0.42445450802799506 0.4408217954443948 0.3916586768935762 0.4112299465240642 0.41847826086956524 0.414039262343843 0.40933899332929047 0.4073013600572656 0.40706476030277544 0.42014519056261346 0.38919514884233736 0.40280777537796975
1990 Jody 0.6491537376586742 0.687171792948237 0.7494736842105263 0.7015046766978447 0.6920516021639617 0.6991978609625669 0.701195219123506 0.6063314711359404 0.5954531298660853 0.551830985915493 0.5946529840669728 0.5321605277625069 0.56047197640118 0.5757679180887372 0.6124698587667929 0.6421493902439024 0.6116315378610461 0.5858704137392662 0.5808055693684734 0.5763203714451538 0.5840220385674931 0.6 0.6497120921305183 0.6452304394426581 0.631578947368421 0.6246819338422391 0.5437710437710438 0.5310734463276836 0.5190839694656488 0.5089686098654709 0.46766169154228854 0.4555256064690027 0.5366666666666666 0.5177304964539007 0.43609022556390975 0.4898785425101215 0.4482758620689655 0.43915343915343913 0.46601941747572817 0.43010752688172044 0.4557823129251701 0.36551724137931035 0.3958333333333333 0.3055555555555556 0.3223684210526316 0.3275862068965517 0.28688524590163933 0.28368794326241137 0.2719298245614035 0.3148148148148148 0.23958333333333334 0.3392857142857143 0.29069767441860467 0.2839506172839506
1990 Baby 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.42105263157894735 0.59375 0.4090909090909091 0.3333333333333333 0.4594594594594595 0.32075471698113206 0.463768115942029 0.6170212765957447 0.3870967741935484 0.4782608695652174 0.5 0.3382352941176471 0.3368421052631579 0.5263157894736842 0.375886524822695 0.5235602094240838 0.44021739130434784 0.43951612903225806 0.48493975903614456 0.45934959349593496 0.45582329317269077 0.4558058925476603 0.4688995215311005 0.47208931419457734 0.44494047619047616 0.4797507788161994 0.453416149068323 0.49473684210526314 0.5109170305676856 0.4723320158102767 0.48250460405156537 0.4836223506743738 0.5107758620689655 0.5 0.481651376146789 0.40894568690095845 0.3888888888888889 0.6 0.5434782608695652 0.5897435897435898 0.475 0.5161290322580645 0.34615384615384615 0.0
1990 Ashton 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20588235294117646 0.1590909090909091 0.16279069767441862 0.10144927536231885 0.07246376811594203 0.11827956989247312 0.16806722689075632 0.22929936305732485 0.18018018018018017 0.36033519553072624 0.7851851851851852 0.7260536398467433 0.6705756929637526 0.6587556125721616 0.5659863945578232 0.5184115523465704 0.554364471669219 0.5262458471760797 0.5871670702179177 0.535365152386429 0.528023598820059 0.5036045314109165 0.47896604156107453 0.4591163026917217 0.39780018331805683 0.3400826446280992 0.2965072133637054 0.1296716911005575 0.07038876519952046 0.07599544937428897 0.06664882226980728 0.0637649015802606 0.060995184590690206 0.05857407898224225 0.0528169014084507 0.062184427318628756 0.058131720430107524 0.06750448833034112
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment