Skip to content

Instantly share code, notes, and snippets.

@spsaaibi
Forked from jpmarindiaz/README.md
Created April 29, 2013 00:15
Show Gist options
  • Save spsaaibi/5478988 to your computer and use it in GitHub Desktop.
Save spsaaibi/5478988 to your computer and use it in GitHub Desktop.
cdfccdfdata_logxlogy
{
"libraries": [
"d3"
],
"mode": "html",
"layout": "fullscreen mode (vertical)",
"resolution": "reset"
}
svg {
position: ;
}
.axis path{
fill:none;
stroke: #000000;
}
.axis {
font-size:8pt;
font-family:sans-serif;
}
.tick {
fill:none;
stroke:#000000;
}
circle{
stroke:#000000;
stroke-width:0px;
}
/*Tooltips*/
.tipsy { font-size: 10px; position: absolute; padding: 5px; z-index: 100000; }
.tipsy-inner { background-color: #000; color: #FAF9F8; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; }
/* Rounded corners */
.tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
/* Uncomment for shadow */
/*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/
.tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }
/* Rules to colour arrows */
.tipsy-arrow-n { border-bottom-color: #000; }
.tipsy-arrow-s { border-top-color: #000; }
.tipsy-arrow-e { border-left-color: #000; }
.tipsy-arrow-w { border-right-color: #000; }
.tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
.tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }
<div style="position:absolute;left:10px;font-size:18px;">
<input type="checkbox" id="chdata">
<label for="chdata">DATA</label>
<input type="checkbox" id="chcdf" checked>
<label for="chcdf">CDF</label>
<input type="checkbox" id="chccdf" >
<label for="chccdf">CCDF</label>
</div>
<div style="position:absolute;left:300px;font-size:18px;">
<input type="checkbox" id="logx" >
<label for="logx">logx</label>
<input type="checkbox" id="logy" >
<label for="logy">logy</label>
</div>
<svg></svg>
var width = $('svg').width();
var height = $('svg').height();
var svg = d3.select('svg');
var margin = 67;
var x_extent = d3.extent(livecoding.json.cdf, function(d){return d.x});
var y_extent = d3.extent(livecoding.json.cdf, function(d){return d.y});
var x_scale = d3.scale.linear()
.range([margin,width-margin])
.domain(x_extent);
var x_scale_log = d3.scale.log()
.range([margin,width-margin])
.domain(x_extent);
var y_scale = d3.scale.linear()
.range([height-margin, margin])
.domain(y_extent);
var y_scale_log = d3.scale.log()
.range([height-margin, margin])
.domain(y_extent);
var x_axis = d3.svg.axis().scale(x_scale);
var x_axis_log = d3.svg.axis().scale(x_scale_log);
var y_axis = d3.svg.axis().scale(y_scale).orient('left');
var y_axis_log = d3.svg.axis().scale(y_scale_log).orient('left');
//Init
initCDF();
//initDATA();
//initCCDF();
// Check what is selected
function scaleStateX(){
return d3.select("input#logx").property("checked");
}
function scaleStateY(){
return d3.select("input#logy").property("checked");
}
function cdfState(){
return d3.select("input#chcdf").property("checked");
}
function ccdfState(){
return d3.select("input#chccdf").property("checked");
}
function dataState(){
return d3.select("input#chdata").property("checked");
}
// Checkbox Change
d3.select("#chdata")
.on("change", function() {
//console.log(this.checked);
if (this.checked){
plotDATA();
}
else {
svg.selectAll(".data").remove();
}
});
d3.select("#chcdf")
.on("change", function() {
//console.log(this.checked);
if (this.checked){
plotCDF();
}
else {
svg.selectAll(".cdf").remove();
}
});
d3.select("#chccdf")
.on("change", function() {
//console.log(this.checked);
if (this.checked){
plotCCDF();
}
else {
svg.selectAll(".ccdf").remove();
}
});
d3.select("#logx")
.on("change", function() {
//console.log(this.checked);
svg.selectAll(".cdf").remove();
svg.selectAll(".ccdf").remove();
svg.selectAll(".data").remove();
if (!dataState()) {
svg.selectAll(".data").remove();
} else {
if (scaleStateX()) {
plotDATA();
}
}
if (cdfState()) {plotCDF();}
if (ccdfState()) {plotCCDF();}
if (dataState()) {plotDATA();}
svg.selectAll(".x.axis").remove();
if (scaleStateX()) {
svg
.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (height-margin) + ")")
.call(x_axis_log);
} else {
svg
.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (height-margin) + ")")
.call(x_axis);
}
});
d3.select("#logy")
.on("change", function() {
//console.log(this.checked);
svg.selectAll(".cdf").remove();
svg.selectAll(".ccdf").remove();
svg.selectAll(".data").remove();
if (!dataState()) {
svg.selectAll(".data").remove();
} else {
if (scaleStateY()) {
plotDATA();
}
}
if (cdfState()) {plotCDF();}
if (ccdfState()) {plotCCDF();}
if (dataState()) {plotDATA();}
svg.selectAll(".y.axis").remove();
if (scaleStateY()) {
svg
.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + margin + ", 0 )")
.call(y_axis_log);
} else {
svg
.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + margin + ", 0 )")
.call(y_axis);
}
});
/*svg
.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + margin + ", 0 )")
.call(y_axis);*/
//Add axis
// Add axis labels
d3.select('.y.axis')
.append('text')
.text('Density Function')
.attr('transform', "rotate (-90, -43, 0) translate(-280)");
d3.select('.x.axis')
.append('text')
.text('Input Data')
.attr('x', function(){return (width / 2) - margin})
.attr('y', margin/1.5);
//Helper functions
function initCDF(){
svg
.append('g')
.classed('cdf',1)
.selectAll('circle')
.data(livecoding.json.cdf)
.enter()
.append('circle')
.attr('cx', function(d){
//console.log("in if" + scaleStateX())
if (scaleStateX()){return x_scale_log(d.x)}
else{ return x_scale(d.x)}
})
.attr('cy', function(d){
if (scaleStateY()){return y_scale_log(d.y)}
else{ return y_scale(d.y)}
})
.attr('r', 2)
.attr('fill','green')
.attr('opacity',0.5);
svg
.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (height-margin) + ")")
.call(x_axis);
svg
.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + margin + ", 0 )")
.call(y_axis);
}
function initCCDF(){
svg
.append('g')
.classed('ccdf',1)
.selectAll('circle')
.data(livecoding.json.ccdf)
.enter()
.append('circle')
.attr('cx', function(d){
//console.log("in if" + scaleStateX())
if (scaleStateX()){return x_scale_log(d.x)}
else{ return x_scale(d.x)}
})
.attr('cy', function(d){
if (scaleStateY()){return y_scale_log(d.y)}
else{ return y_scale(d.y)}
})
.attr('r', 2)
.attr('fill','orange')
.attr('opacity',0.5);
svg
.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (height-margin) + ")")
.call(x_axis);
svg
.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + margin + ", 0 )")
.call(y_axis);
}
function initDATA(){
svg
.append('g')
.classed('data',1)
.selectAll('circle')
.data(livecoding.json.xdata)
.enter()
.append('circle')
.attr('cx', function(d){
//console.log("in if" + scaleStateX())
if (scaleStateX()){return x_scale_log(d.x)}
else{ return x_scale(d.x)}
})
.attr('cy', function(d){
if (scaleStateY()){return y_scale_log(1)}
else{ return y_scale(0)}
})
.attr('r', 10)
.attr('fill','orange')
.attr('opacity',0.1);
}
function plotDATA(){
svg
.attr('width', width)
.attr('height', height)
.append('g')
.classed('data',1)
.selectAll('circle')
.data(livecoding.json.xdata)
.enter()
.append('circle')
.attr('cx', function(d){
//console.log("in if" + scaleStateX())
if (scaleStateX()){return x_scale_log(d.x)}
else{ return x_scale(d.x)}
})
.attr('cy', function(d){
if (scaleStateY()){return height - margin}
else{ return y_scale(0)}
})
.attr('r', 10)
.attr('fill','orange')
.attr('opacity',0.1);
}
function plotCDF(){
svg
.attr('width', width)
.attr('height', height)
.append('g')
.classed('cdf',1)
.selectAll('circle')
.data(livecoding.json.cdf)
.enter()
.append('circle')
.attr('cx', function(d){
//console.log("in if" + scaleStateX())
if (scaleStateX()){return x_scale_log(d.x)}
else{ return x_scale(d.x)}
})
.attr('cy', function(d){
if (scaleStateY()){return y_scale_log(d.y)}
else{ return y_scale(d.y)}
})
.attr('r', 2)
.attr('fill','green')
.attr('opacity',0.5);
}
function plotCCDF(){
svg
.attr('width', width)
.attr('height', height)
.append('g')
.classed('ccdf',1)
.selectAll('circle')
.data(livecoding.json.ccdf)
.enter()
.append('circle')
.attr('cx', function(d){
//console.log("in if" + scaleStateX())
if (scaleStateX()){return x_scale_log(d.x)}
else{ return x_scale(d.x)}
})
.attr('cy', function(d){
if (scaleStateY()){return y_scale_log(d.y)}
else{ return y_scale(d.y)}
})
.attr('r', 2)
.attr('fill','purple')
.attr('opacity',0.5);
}
//Add legends
/*var legend = svg.append('g')
.attr('class', 'legend');
var legposx = 436, legposy = 43;
legend.append('rect')
.attr('x', legposx -5 )
.attr('y', legposy + 16)
.attr('width', 10)
.attr('height', 2)
.style('fill', 'blue');
legend.append('text')
.attr('x', legposx + 10 )
.attr('y', legposy + 21)
.attr("font-size", "12")
.text('CDF');
legend.append('circle')
.attr('cx', legposx)
.attr('cy', legposy)
.attr('r', 5)
.style('fill', 'orange');
legend.append('text')
.attr('x', legposx + 10)
.attr('y', legposy +5)
.attr("font-size", "12")
.text('data');
*/
/* Add Toooltips JS */
{
"xdata": [
{
"x": 79
},
{
"x": 54
},
{
"x": 74
},
{
"x": 62
},
{
"x": 85
},
{
"x": 55
},
{
"x": 88
},
{
"x": 85
},
{
"x": 51
},
{
"x": 85
},
{
"x": 54
},
{
"x": 84
},
{
"x": 78
},
{
"x": 47
},
{
"x": 83
},
{
"x": 52
},
{
"x": 62
},
{
"x": 84
},
{
"x": 52
},
{
"x": 79
},
{
"x": 51
},
{
"x": 47
},
{
"x": 78
},
{
"x": 69
},
{
"x": 74
},
{
"x": 83
},
{
"x": 55
},
{
"x": 76
},
{
"x": 78
},
{
"x": 79
},
{
"x": 73
},
{
"x": 77
},
{
"x": 66
},
{
"x": 80
},
{
"x": 74
},
{
"x": 52
},
{
"x": 48
},
{
"x": 80
},
{
"x": 59
},
{
"x": 90
},
{
"x": 80
},
{
"x": 58
},
{
"x": 84
},
{
"x": 58
},
{
"x": 73
},
{
"x": 83
},
{
"x": 64
},
{
"x": 53
},
{
"x": 82
},
{
"x": 59
},
{
"x": 75
},
{
"x": 90
},
{
"x": 54
},
{
"x": 80
},
{
"x": 54
},
{
"x": 83
},
{
"x": 71
},
{
"x": 64
},
{
"x": 77
},
{
"x": 81
},
{
"x": 59
},
{
"x": 84
},
{
"x": 48
},
{
"x": 82
},
{
"x": 60
},
{
"x": 92
},
{
"x": 78
},
{
"x": 78
},
{
"x": 65
},
{
"x": 73
},
{
"x": 82
},
{
"x": 56
},
{
"x": 79
},
{
"x": 71
},
{
"x": 62
},
{
"x": 76
},
{
"x": 60
},
{
"x": 78
},
{
"x": 76
},
{
"x": 83
},
{
"x": 75
},
{
"x": 82
},
{
"x": 70
},
{
"x": 65
},
{
"x": 73
},
{
"x": 88
},
{
"x": 76
},
{
"x": 80
},
{
"x": 48
},
{
"x": 86
},
{
"x": 60
},
{
"x": 90
},
{
"x": 50
},
{
"x": 78
},
{
"x": 63
},
{
"x": 72
},
{
"x": 84
},
{
"x": 75
},
{
"x": 51
},
{
"x": 82
},
{
"x": 62
},
{
"x": 88
},
{
"x": 49
},
{
"x": 83
},
{
"x": 81
},
{
"x": 47
},
{
"x": 84
},
{
"x": 52
},
{
"x": 86
},
{
"x": 81
},
{
"x": 75
},
{
"x": 59
},
{
"x": 89
},
{
"x": 79
},
{
"x": 59
},
{
"x": 81
},
{
"x": 50
},
{
"x": 85
},
{
"x": 59
},
{
"x": 87
},
{
"x": 53
},
{
"x": 69
},
{
"x": 77
},
{
"x": 56
},
{
"x": 88
},
{
"x": 81
},
{
"x": 45
},
{
"x": 82
},
{
"x": 55
},
{
"x": 90
},
{
"x": 45
},
{
"x": 83
},
{
"x": 56
},
{
"x": 89
},
{
"x": 46
},
{
"x": 82
},
{
"x": 51
},
{
"x": 86
},
{
"x": 53
},
{
"x": 79
},
{
"x": 81
},
{
"x": 60
},
{
"x": 82
},
{
"x": 77
},
{
"x": 76
},
{
"x": 59
},
{
"x": 80
},
{
"x": 49
},
{
"x": 96
},
{
"x": 53
},
{
"x": 77
},
{
"x": 77
},
{
"x": 65
},
{
"x": 81
},
{
"x": 71
},
{
"x": 70
},
{
"x": 81
},
{
"x": 93
},
{
"x": 53
},
{
"x": 89
},
{
"x": 45
},
{
"x": 86
},
{
"x": 58
},
{
"x": 78
},
{
"x": 66
},
{
"x": 76
},
{
"x": 63
},
{
"x": 88
},
{
"x": 52
},
{
"x": 93
},
{
"x": 49
},
{
"x": 57
},
{
"x": 77
},
{
"x": 68
},
{
"x": 81
},
{
"x": 81
},
{
"x": 73
},
{
"x": 50
},
{
"x": 85
},
{
"x": 74
},
{
"x": 55
},
{
"x": 77
},
{
"x": 83
},
{
"x": 83
},
{
"x": 51
},
{
"x": 78
},
{
"x": 84
},
{
"x": 46
},
{
"x": 83
},
{
"x": 55
},
{
"x": 81
},
{
"x": 57
},
{
"x": 76
},
{
"x": 84
},
{
"x": 77
},
{
"x": 81
},
{
"x": 87
},
{
"x": 77
},
{
"x": 51
},
{
"x": 78
},
{
"x": 60
},
{
"x": 82
},
{
"x": 91
},
{
"x": 53
},
{
"x": 78
},
{
"x": 46
},
{
"x": 77
},
{
"x": 84
},
{
"x": 49
},
{
"x": 83
},
{
"x": 71
},
{
"x": 80
},
{
"x": 49
},
{
"x": 75
},
{
"x": 64
},
{
"x": 76
},
{
"x": 53
},
{
"x": 94
},
{
"x": 55
},
{
"x": 76
},
{
"x": 50
},
{
"x": 82
},
{
"x": 54
},
{
"x": 75
},
{
"x": 78
},
{
"x": 79
},
{
"x": 78
},
{
"x": 78
},
{
"x": 70
},
{
"x": 79
},
{
"x": 70
},
{
"x": 54
},
{
"x": 86
},
{
"x": 50
},
{
"x": 90
},
{
"x": 54
},
{
"x": 54
},
{
"x": 77
},
{
"x": 79
},
{
"x": 64
},
{
"x": 75
},
{
"x": 47
},
{
"x": 86
},
{
"x": 63
},
{
"x": 85
},
{
"x": 82
},
{
"x": 57
},
{
"x": 82
},
{
"x": 67
},
{
"x": 74
},
{
"x": 54
},
{
"x": 83
},
{
"x": 73
},
{
"x": 73
},
{
"x": 88
},
{
"x": 80
},
{
"x": 71
},
{
"x": 83
},
{
"x": 56
},
{
"x": 79
},
{
"x": 78
},
{
"x": 84
},
{
"x": 58
},
{
"x": 83
},
{
"x": 43
},
{
"x": 60
},
{
"x": 75
},
{
"x": 81
},
{
"x": 46
},
{
"x": 90
},
{
"x": 46
},
{
"x": 74
}
],
"pdf": [
{
"x": 22.727,
"y": 0
},
{
"x": 22.961,
"y": 0
},
{
"x": 23.195,
"y": 0
},
{
"x": 23.429,
"y": 0
},
{
"x": 23.663,
"y": 0
},
{
"x": 23.897,
"y": 0
},
{
"x": 24.13,
"y": 0
},
{
"x": 24.364,
"y": 0
},
{
"x": 24.598,
"y": 0
},
{
"x": 24.832,
"y": 0
},
{
"x": 25.066,
"y": 0
},
{
"x": 25.3,
"y": 0
},
{
"x": 25.534,
"y": 0
},
{
"x": 25.768,
"y": 0
},
{
"x": 26.001,
"y": 0
},
{
"x": 26.235,
"y": 0
},
{
"x": 26.469,
"y": 0
},
{
"x": 26.703,
"y": 0
},
{
"x": 26.937,
"y": 1.1968e-06
},
{
"x": 27.171,
"y": 1.4051e-06
},
{
"x": 27.405,
"y": 1.6463e-06
},
{
"x": 27.638,
"y": 1.9252e-06
},
{
"x": 27.872,
"y": 2.3191e-06
},
{
"x": 28.106,
"y": 2.709e-06
},
{
"x": 28.34,
"y": 3.1525e-06
},
{
"x": 28.574,
"y": 3.6615e-06
},
{
"x": 28.808,
"y": 4.3292e-06
},
{
"x": 29.042,
"y": 5.0563e-06
},
{
"x": 29.275,
"y": 5.8449e-06
},
{
"x": 29.509,
"y": 6.7436e-06
},
{
"x": 29.743,
"y": 7.8148e-06
},
{
"x": 29.977,
"y": 9.0641e-06
},
{
"x": 30.211,
"y": 1.0405e-05
},
{
"x": 30.445,
"y": 1.1922e-05
},
{
"x": 30.679,
"y": 1.3651e-05
},
{
"x": 30.913,
"y": 1.5722e-05
},
{
"x": 31.146,
"y": 1.7923e-05
},
{
"x": 31.38,
"y": 2.0394e-05
},
{
"x": 31.614,
"y": 2.3162e-05
},
{
"x": 31.848,
"y": 2.6365e-05
},
{
"x": 32.082,
"y": 2.9864e-05
},
{
"x": 32.316,
"y": 3.3741e-05
},
{
"x": 32.55,
"y": 3.8053e-05
},
{
"x": 32.783,
"y": 4.2938e-05
},
{
"x": 33.017,
"y": 4.8337e-05
},
{
"x": 33.251,
"y": 5.4233e-05
},
{
"x": 33.485,
"y": 6.074e-05
},
{
"x": 33.719,
"y": 6.797e-05
},
{
"x": 33.953,
"y": 7.6026e-05
},
{
"x": 34.187,
"y": 8.4713e-05
},
{
"x": 34.42,
"y": 9.4228e-05
},
{
"x": 34.654,
"y": 0.00010463
},
{
"x": 34.888,
"y": 0.00011613
},
{
"x": 35.122,
"y": 0.00012851
},
{
"x": 35.356,
"y": 0.00014197
},
{
"x": 35.59,
"y": 0.00015656
},
{
"x": 35.824,
"y": 0.00017244
},
{
"x": 36.058,
"y": 0.00018956
},
{
"x": 36.291,
"y": 0.000208
},
{
"x": 36.525,
"y": 0.00022784
},
{
"x": 36.759,
"y": 0.0002492
},
{
"x": 36.993,
"y": 0.00027211
},
{
"x": 37.227,
"y": 0.0002966
},
{
"x": 37.461,
"y": 0.00032275
},
{
"x": 37.695,
"y": 0.00035066
},
{
"x": 37.928,
"y": 0.00038042
},
{
"x": 38.162,
"y": 0.00041196
},
{
"x": 38.396,
"y": 0.0004454
},
{
"x": 38.63,
"y": 0.00048078
},
{
"x": 38.864,
"y": 0.00051831
},
{
"x": 39.098,
"y": 0.00055776
},
{
"x": 39.332,
"y": 0.00059925
},
{
"x": 39.565,
"y": 0.00064283
},
{
"x": 39.799,
"y": 0.00068861
},
{
"x": 40.033,
"y": 0.0007365
},
{
"x": 40.267,
"y": 0.00078647
},
{
"x": 40.501,
"y": 0.00083857
},
{
"x": 40.735,
"y": 0.00089279
},
{
"x": 40.969,
"y": 0.00094911
},
{
"x": 41.203,
"y": 0.0010075
},
{
"x": 41.436,
"y": 0.001068
},
{
"x": 41.67,
"y": 0.0011304
},
{
"x": 41.904,
"y": 0.0011949
},
{
"x": 42.138,
"y": 0.0012612
},
{
"x": 42.372,
"y": 0.0013294
},
{
"x": 42.606,
"y": 0.0013992
},
{
"x": 42.84,
"y": 0.0014709
},
{
"x": 43.073,
"y": 0.001544
},
{
"x": 43.307,
"y": 0.0016186
},
{
"x": 43.541,
"y": 0.0016945
},
{
"x": 43.775,
"y": 0.0017718
},
{
"x": 44.009,
"y": 0.0018502
},
{
"x": 44.243,
"y": 0.0019295
},
{
"x": 44.477,
"y": 0.0020097
},
{
"x": 44.71,
"y": 0.0020906
},
{
"x": 44.944,
"y": 0.0021722
},
{
"x": 45.178,
"y": 0.0022541
},
{
"x": 45.412,
"y": 0.0023363
},
{
"x": 45.646,
"y": 0.0024185
},
{
"x": 45.88,
"y": 0.0025008
},
{
"x": 46.114,
"y": 0.0025829
},
{
"x": 46.348,
"y": 0.0026645
},
{
"x": 46.581,
"y": 0.0027456
},
{
"x": 46.815,
"y": 0.002826
},
{
"x": 47.049,
"y": 0.0029056
},
{
"x": 47.283,
"y": 0.0029841
},
{
"x": 47.517,
"y": 0.0030613
},
{
"x": 47.751,
"y": 0.0031373
},
{
"x": 47.985,
"y": 0.0032117
},
{
"x": 48.218,
"y": 0.0032844
},
{
"x": 48.452,
"y": 0.0033554
},
{
"x": 48.686,
"y": 0.0034243
},
{
"x": 48.92,
"y": 0.0034912
},
{
"x": 49.154,
"y": 0.0035558
},
{
"x": 49.388,
"y": 0.003618
},
{
"x": 49.622,
"y": 0.0036778
},
{
"x": 49.855,
"y": 0.003735
},
{
"x": 50.089,
"y": 0.0037894
},
{
"x": 50.323,
"y": 0.003841
},
{
"x": 50.557,
"y": 0.0038897
},
{
"x": 50.791,
"y": 0.0039355
},
{
"x": 51.025,
"y": 0.0039783
},
{
"x": 51.259,
"y": 0.0040178
},
{
"x": 51.493,
"y": 0.0040542
},
{
"x": 51.726,
"y": 0.0040874
},
{
"x": 51.96,
"y": 0.0041173
},
{
"x": 52.194,
"y": 0.004144
},
{
"x": 52.428,
"y": 0.0041673
},
{
"x": 52.662,
"y": 0.0041873
},
{
"x": 52.896,
"y": 0.0042042
},
{
"x": 53.13,
"y": 0.0042177
},
{
"x": 53.363,
"y": 0.004228
},
{
"x": 53.597,
"y": 0.004235
},
{
"x": 53.831,
"y": 0.0042389
},
{
"x": 54.065,
"y": 0.0042397
},
{
"x": 54.299,
"y": 0.0042373
},
{
"x": 54.533,
"y": 0.004232
},
{
"x": 54.767,
"y": 0.0042238
},
{
"x": 55,
"y": 0.0042128
},
{
"x": 55.234,
"y": 0.004199
},
{
"x": 55.468,
"y": 0.0041826
},
{
"x": 55.702,
"y": 0.0041636
},
{
"x": 55.936,
"y": 0.0041424
},
{
"x": 56.17,
"y": 0.0041186
},
{
"x": 56.404,
"y": 0.0040927
},
{
"x": 56.638,
"y": 0.0040648
},
{
"x": 56.871,
"y": 0.0040351
},
{
"x": 57.105,
"y": 0.0040035
},
{
"x": 57.339,
"y": 0.0039702
},
{
"x": 57.573,
"y": 0.0039353
},
{
"x": 57.807,
"y": 0.0038993
},
{
"x": 58.041,
"y": 0.003862
},
{
"x": 58.275,
"y": 0.0038235
},
{
"x": 58.508,
"y": 0.0037841
},
{
"x": 58.742,
"y": 0.003744
},
{
"x": 58.976,
"y": 0.0037033
},
{
"x": 59.21,
"y": 0.003662
},
{
"x": 59.444,
"y": 0.0036205
},
{
"x": 59.678,
"y": 0.0035787
},
{
"x": 59.912,
"y": 0.0035371
},
{
"x": 60.145,
"y": 0.0034956
},
{
"x": 60.379,
"y": 0.0034543
},
{
"x": 60.613,
"y": 0.0034135
},
{
"x": 60.847,
"y": 0.0033736
},
{
"x": 61.081,
"y": 0.0033343
},
{
"x": 61.315,
"y": 0.003296
},
{
"x": 61.549,
"y": 0.0032588
},
{
"x": 61.783,
"y": 0.003223
},
{
"x": 62.016,
"y": 0.0031886
},
{
"x": 62.25,
"y": 0.0031558
},
{
"x": 62.484,
"y": 0.0031248
},
{
"x": 62.718,
"y": 0.0030958
},
{
"x": 62.952,
"y": 0.0030691
},
{
"x": 63.186,
"y": 0.0030444
},
{
"x": 63.42,
"y": 0.0030222
},
{
"x": 63.653,
"y": 0.0030026
},
{
"x": 63.887,
"y": 0.002986
},
{
"x": 64.121,
"y": 0.0029721
},
{
"x": 64.355,
"y": 0.0029613
},
{
"x": 64.589,
"y": 0.0029537
},
{
"x": 64.823,
"y": 0.0029496
},
{
"x": 65.057,
"y": 0.002949
},
{
"x": 65.29,
"y": 0.0029519
},
{
"x": 65.524,
"y": 0.0029586
},
{
"x": 65.758,
"y": 0.0029694
},
{
"x": 65.992,
"y": 0.0029841
},
{
"x": 66.226,
"y": 0.0030029
},
{
"x": 66.46,
"y": 0.0030259
},
{
"x": 66.694,
"y": 0.0030533
},
{
"x": 66.928,
"y": 0.0030852
},
{
"x": 67.161,
"y": 0.0031214
},
{
"x": 67.395,
"y": 0.0031621
},
{
"x": 67.629,
"y": 0.0032074
},
{
"x": 67.863,
"y": 0.0032574
},
{
"x": 68.097,
"y": 0.0033119
},
{
"x": 68.331,
"y": 0.0033709
},
{
"x": 68.565,
"y": 0.0034346
},
{
"x": 68.798,
"y": 0.0035028
},
{
"x": 69.032,
"y": 0.0035754
},
{
"x": 69.266,
"y": 0.0036524
},
{
"x": 69.5,
"y": 0.0037338
},
{
"x": 69.734,
"y": 0.0038194
},
{
"x": 69.968,
"y": 0.0039092
},
{
"x": 70.202,
"y": 0.0040028
},
{
"x": 70.435,
"y": 0.0041001
},
{
"x": 70.669,
"y": 0.0042011
},
{
"x": 70.903,
"y": 0.0043056
},
{
"x": 71.137,
"y": 0.0044132
},
{
"x": 71.371,
"y": 0.0045237
},
{
"x": 71.605,
"y": 0.004637
},
{
"x": 71.839,
"y": 0.0047528
},
{
"x": 72.072,
"y": 0.0048708
},
{
"x": 72.306,
"y": 0.0049905
},
{
"x": 72.54,
"y": 0.0051119
},
{
"x": 72.774,
"y": 0.0052346
},
{
"x": 73.008,
"y": 0.0053583
},
{
"x": 73.242,
"y": 0.0054824
},
{
"x": 73.476,
"y": 0.0056068
},
{
"x": 73.71,
"y": 0.0057311
},
{
"x": 73.943,
"y": 0.005855
},
{
"x": 74.177,
"y": 0.005978
},
{
"x": 74.411,
"y": 0.0060997
},
{
"x": 74.645,
"y": 0.0062199
},
{
"x": 74.879,
"y": 0.0063382
},
{
"x": 75.113,
"y": 0.0064541
},
{
"x": 75.347,
"y": 0.0065673
},
{
"x": 75.58,
"y": 0.0066775
},
{
"x": 75.814,
"y": 0.0067842
},
{
"x": 76.048,
"y": 0.0068873
},
{
"x": 76.282,
"y": 0.0069861
},
{
"x": 76.516,
"y": 0.0070805
},
{
"x": 76.75,
"y": 0.0071702
},
{
"x": 76.984,
"y": 0.0072548
},
{
"x": 77.217,
"y": 0.0073341
},
{
"x": 77.451,
"y": 0.0074077
},
{
"x": 77.685,
"y": 0.0074754
},
{
"x": 77.919,
"y": 0.0075371
},
{
"x": 78.153,
"y": 0.0075923
},
{
"x": 78.387,
"y": 0.007641
},
{
"x": 78.621,
"y": 0.0076831
},
{
"x": 78.855,
"y": 0.0077182
},
{
"x": 79.088,
"y": 0.0077464
},
{
"x": 79.322,
"y": 0.0077673
},
{
"x": 79.556,
"y": 0.0077812
},
{
"x": 79.79,
"y": 0.0077879
},
{
"x": 80.024,
"y": 0.0077872
},
{
"x": 80.258,
"y": 0.0077792
},
{
"x": 80.492,
"y": 0.007764
},
{
"x": 80.725,
"y": 0.0077415
},
{
"x": 80.959,
"y": 0.0077119
},
{
"x": 81.193,
"y": 0.0076751
},
{
"x": 81.427,
"y": 0.0076314
},
{
"x": 81.661,
"y": 0.0075808
},
{
"x": 81.895,
"y": 0.0075235
},
{
"x": 82.129,
"y": 0.0074596
},
{
"x": 82.362,
"y": 0.0073893
},
{
"x": 82.596,
"y": 0.007313
},
{
"x": 82.83,
"y": 0.0072307
},
{
"x": 83.064,
"y": 0.0071428
},
{
"x": 83.298,
"y": 0.0070493
},
{
"x": 83.532,
"y": 0.0069508
},
{
"x": 83.766,
"y": 0.0068474
},
{
"x": 84,
"y": 0.0067394
},
{
"x": 84.233,
"y": 0.0066271
},
{
"x": 84.467,
"y": 0.0065108
},
{
"x": 84.701,
"y": 0.0063909
},
{
"x": 84.935,
"y": 0.0062676
},
{
"x": 85.169,
"y": 0.0061413
},
{
"x": 85.403,
"y": 0.0060122
},
{
"x": 85.637,
"y": 0.0058808
},
{
"x": 85.87,
"y": 0.0057472
},
{
"x": 86.104,
"y": 0.0056119
},
{
"x": 86.338,
"y": 0.005475
},
{
"x": 86.572,
"y": 0.005337
},
{
"x": 86.806,
"y": 0.0051981
},
{
"x": 87.04,
"y": 0.0050586
},
{
"x": 87.274,
"y": 0.0049187
},
{
"x": 87.507,
"y": 0.0047788
},
{
"x": 87.741,
"y": 0.0046391
},
{
"x": 87.975,
"y": 0.0044998
},
{
"x": 88.209,
"y": 0.0043611
},
{
"x": 88.443,
"y": 0.0042233
},
{
"x": 88.677,
"y": 0.0040867
},
{
"x": 88.911,
"y": 0.0039513
},
{
"x": 89.145,
"y": 0.0038173
},
{
"x": 89.378,
"y": 0.003685
},
{
"x": 89.612,
"y": 0.0035545
},
{
"x": 89.846,
"y": 0.003426
},
{
"x": 90.08,
"y": 0.0032995
},
{
"x": 90.314,
"y": 0.0031751
},
{
"x": 90.548,
"y": 0.0030531
},
{
"x": 90.782,
"y": 0.0029334
},
{
"x": 91.015,
"y": 0.0028163
},
{
"x": 91.249,
"y": 0.0027016
},
{
"x": 91.483,
"y": 0.0025896
},
{
"x": 91.717,
"y": 0.0024804
},
{
"x": 91.951,
"y": 0.0023738
},
{
"x": 92.185,
"y": 0.00227
},
{
"x": 92.419,
"y": 0.002169
},
{
"x": 92.652,
"y": 0.0020708
},
{
"x": 92.886,
"y": 0.0019754
},
{
"x": 93.12,
"y": 0.0018828
},
{
"x": 93.354,
"y": 0.001793
},
{
"x": 93.588,
"y": 0.0017061
},
{
"x": 93.822,
"y": 0.0016221
},
{
"x": 94.056,
"y": 0.0015409
},
{
"x": 94.29,
"y": 0.0014623
},
{
"x": 94.523,
"y": 0.0013866
},
{
"x": 94.757,
"y": 0.0013137
},
{
"x": 94.991,
"y": 0.0012435
},
{
"x": 95.225,
"y": 0.0011759
},
{
"x": 95.459,
"y": 0.0011109
},
{
"x": 95.693,
"y": 0.0010486
},
{
"x": 95.927,
"y": 0.00098881
},
{
"x": 96.16,
"y": 0.00093151
},
{
"x": 96.394,
"y": 0.00087655
},
{
"x": 96.628,
"y": 0.00082417
},
{
"x": 96.862,
"y": 0.00077414
},
{
"x": 97.096,
"y": 0.00072639
},
{
"x": 97.33,
"y": 0.00068063
},
{
"x": 97.564,
"y": 0.00063731
},
{
"x": 97.797,
"y": 0.00059613
},
{
"x": 98.031,
"y": 0.00055699
},
{
"x": 98.265,
"y": 0.00051964
},
{
"x": 98.499,
"y": 0.00048436
},
{
"x": 98.733,
"y": 0.00045108
},
{
"x": 98.967,
"y": 0.00041959
},
{
"x": 99.201,
"y": 0.00038977
},
{
"x": 99.435,
"y": 0.00036159
},
{
"x": 99.668,
"y": 0.00033518
},
{
"x": 99.902,
"y": 0.00031032
},
{
"x": 100.14,
"y": 0.00028694
},
{
"x": 100.37,
"y": 0.00026485
},
{
"x": 100.6,
"y": 0.00024431
},
{
"x": 100.84,
"y": 0.00022507
},
{
"x": 101.07,
"y": 0.00020709
},
{
"x": 101.31,
"y": 0.00019006
},
{
"x": 101.54,
"y": 0.00017438
},
{
"x": 101.77,
"y": 0.00015984
},
{
"x": 102.01,
"y": 0.0001463
},
{
"x": 102.24,
"y": 0.00013359
},
{
"x": 102.47,
"y": 0.00012184
},
{
"x": 102.71,
"y": 0.00011109
},
{
"x": 102.94,
"y": 0.00010113
},
{
"x": 103.18,
"y": 9.1862e-05
},
{
"x": 103.41,
"y": 8.3182e-05
},
{
"x": 103.64,
"y": 7.5426e-05
},
{
"x": 103.88,
"y": 6.8292e-05
},
{
"x": 104.11,
"y": 6.174e-05
},
{
"x": 104.35,
"y": 5.5518e-05
},
{
"x": 104.58,
"y": 5.0055e-05
},
{
"x": 104.81,
"y": 4.506e-05
},
{
"x": 105.05,
"y": 4.05e-05
},
{
"x": 105.28,
"y": 3.6252e-05
},
{
"x": 105.51,
"y": 3.2451e-05
},
{
"x": 105.75,
"y": 2.9037e-05
},
{
"x": 105.98,
"y": 2.594e-05
},
{
"x": 106.22,
"y": 2.3079e-05
},
{
"x": 106.45,
"y": 2.0483e-05
},
{
"x": 106.68,
"y": 1.8216e-05
},
{
"x": 106.92,
"y": 1.6173e-05
},
{
"x": 107.15,
"y": 1.4328e-05
},
{
"x": 107.39,
"y": 1.2644e-05
},
{
"x": 107.62,
"y": 1.1171e-05
},
{
"x": 107.85,
"y": 9.8538e-06
},
{
"x": 108.09,
"y": 8.6766e-06
},
{
"x": 108.32,
"y": 7.512e-06
},
{
"x": 108.56,
"y": 6.5836e-06
},
{
"x": 108.79,
"y": 5.7722e-06
},
{
"x": 109.02,
"y": 5.0518e-06
},
{
"x": 109.26,
"y": 4.3737e-06
},
{
"x": 109.49,
"y": 3.7912e-06
},
{
"x": 109.72,
"y": 3.3025e-06
},
{
"x": 109.96,
"y": 2.8716e-06
},
{
"x": 110.19,
"y": 2.4483e-06
},
{
"x": 110.43,
"y": 2.0379e-06
},
{
"x": 110.66,
"y": 1.7665e-06
},
{
"x": 110.89,
"y": 1.5282e-06
},
{
"x": 111.13,
"y": 1.318e-06
},
{
"x": 111.36,
"y": 1.1158e-06
},
{
"x": 111.6,
"y": 0
},
{
"x": 111.83,
"y": 0
},
{
"x": 112.06,
"y": 0
},
{
"x": 112.3,
"y": 0
},
{
"x": 112.53,
"y": 0
},
{
"x": 112.76,
"y": 0
},
{
"x": 113,
"y": 0
},
{
"x": 113.23,
"y": 0
},
{
"x": 113.47,
"y": 0
},
{
"x": 113.7,
"y": 0
},
{
"x": 113.93,
"y": 0
},
{
"x": 114.17,
"y": 0
},
{
"x": 114.4,
"y": 0
},
{
"x": 114.64,
"y": 0
},
{
"x": 114.87,
"y": 0
},
{
"x": 115.1,
"y": 0
},
{
"x": 115.34,
"y": 0
},
{
"x": 115.57,
"y": 0
},
{
"x": 115.8,
"y": 0
},
{
"x": 116.04,
"y": 0
},
{
"x": 116.27,
"y": 0
}
],
"cdf": [
{
"x": 22.727,
"y": 1e-06
},
{
"x": 22.961,
"y": 1e-06
},
{
"x": 23.195,
"y": 1e-06
},
{
"x": 23.429,
"y": 1e-06
},
{
"x": 23.663,
"y": 1e-06
},
{
"x": 23.897,
"y": 1e-06
},
{
"x": 24.13,
"y": 1e-06
},
{
"x": 24.364,
"y": 1e-06
},
{
"x": 24.598,
"y": 1e-06
},
{
"x": 24.832,
"y": 1e-06
},
{
"x": 25.066,
"y": 1e-06
},
{
"x": 25.3,
"y": 1e-06
},
{
"x": 25.534,
"y": 1e-06
},
{
"x": 25.768,
"y": 1e-06
},
{
"x": 26.001,
"y": 1e-06
},
{
"x": 26.235,
"y": 1e-06
},
{
"x": 26.469,
"y": 1e-06
},
{
"x": 26.703,
"y": 1e-06
},
{
"x": 26.937,
"y": 1.1968e-06
},
{
"x": 27.171,
"y": 2.6019e-06
},
{
"x": 27.405,
"y": 4.2482e-06
},
{
"x": 27.638,
"y": 6.1735e-06
},
{
"x": 27.872,
"y": 8.4926e-06
},
{
"x": 28.106,
"y": 1.1202e-05
},
{
"x": 28.34,
"y": 1.4354e-05
},
{
"x": 28.574,
"y": 1.8016e-05
},
{
"x": 28.808,
"y": 2.2345e-05
},
{
"x": 29.042,
"y": 2.7401e-05
},
{
"x": 29.275,
"y": 3.3246e-05
},
{
"x": 29.509,
"y": 3.999e-05
},
{
"x": 29.743,
"y": 4.7804e-05
},
{
"x": 29.977,
"y": 5.6868e-05
},
{
"x": 30.211,
"y": 6.7274e-05
},
{
"x": 30.445,
"y": 7.9196e-05
},
{
"x": 30.679,
"y": 9.2847e-05
},
{
"x": 30.913,
"y": 0.00010857
},
{
"x": 31.146,
"y": 0.00012649
},
{
"x": 31.38,
"y": 0.00014689
},
{
"x": 31.614,
"y": 0.00017005
},
{
"x": 31.848,
"y": 0.00019641
},
{
"x": 32.082,
"y": 0.00022628
},
{
"x": 32.316,
"y": 0.00026002
},
{
"x": 32.55,
"y": 0.00029807
},
{
"x": 32.783,
"y": 0.00034101
},
{
"x": 33.017,
"y": 0.00038935
},
{
"x": 33.251,
"y": 0.00044358
},
{
"x": 33.485,
"y": 0.00050432
},
{
"x": 33.719,
"y": 0.00057229
},
{
"x": 33.953,
"y": 0.00064832
},
{
"x": 34.187,
"y": 0.00073303
},
{
"x": 34.42,
"y": 0.00082726
},
{
"x": 34.654,
"y": 0.00093188
},
{
"x": 34.888,
"y": 0.001048
},
{
"x": 35.122,
"y": 0.0011765
},
{
"x": 35.356,
"y": 0.0013185
},
{
"x": 35.59,
"y": 0.001475
},
{
"x": 35.824,
"y": 0.0016475
},
{
"x": 36.058,
"y": 0.0018371
},
{
"x": 36.291,
"y": 0.002045
},
{
"x": 36.525,
"y": 0.0022729
},
{
"x": 36.759,
"y": 0.0025221
},
{
"x": 36.993,
"y": 0.0027942
},
{
"x": 37.227,
"y": 0.0030908
},
{
"x": 37.461,
"y": 0.0034136
},
{
"x": 37.695,
"y": 0.0037642
},
{
"x": 37.928,
"y": 0.0041446
},
{
"x": 38.162,
"y": 0.0045566
},
{
"x": 38.396,
"y": 0.005002
},
{
"x": 38.63,
"y": 0.0054828
},
{
"x": 38.864,
"y": 0.0060011
},
{
"x": 39.098,
"y": 0.0065588
},
{
"x": 39.332,
"y": 0.0071581
},
{
"x": 39.565,
"y": 0.0078009
},
{
"x": 39.799,
"y": 0.0084895
},
{
"x": 40.033,
"y": 0.009226
},
{
"x": 40.267,
"y": 0.010012
},
{
"x": 40.501,
"y": 0.010851
},
{
"x": 40.735,
"y": 0.011744
},
{
"x": 40.969,
"y": 0.012693
},
{
"x": 41.203,
"y": 0.0137
},
{
"x": 41.436,
"y": 0.014768
},
{
"x": 41.67,
"y": 0.015899
},
{
"x": 41.904,
"y": 0.017094
},
{
"x": 42.138,
"y": 0.018355
},
{
"x": 42.372,
"y": 0.019684
},
{
"x": 42.606,
"y": 0.021084
},
{
"x": 42.84,
"y": 0.022554
},
{
"x": 43.073,
"y": 0.024098
},
{
"x": 43.307,
"y": 0.025717
},
{
"x": 43.541,
"y": 0.027412
},
{
"x": 43.775,
"y": 0.029183
},
{
"x": 44.009,
"y": 0.031034
},
{
"x": 44.243,
"y": 0.032963
},
{
"x": 44.477,
"y": 0.034973
},
{
"x": 44.71,
"y": 0.037063
},
{
"x": 44.944,
"y": 0.039236
},
{
"x": 45.178,
"y": 0.04149
},
{
"x": 45.412,
"y": 0.043826
},
{
"x": 45.646,
"y": 0.046244
},
{
"x": 45.88,
"y": 0.048745
},
{
"x": 46.114,
"y": 0.051328
},
{
"x": 46.348,
"y": 0.053993
},
{
"x": 46.581,
"y": 0.056738
},
{
"x": 46.815,
"y": 0.059564
},
{
"x": 47.049,
"y": 0.06247
},
{
"x": 47.283,
"y": 0.065454
},
{
"x": 47.517,
"y": 0.068515
},
{
"x": 47.751,
"y": 0.071653
},
{
"x": 47.985,
"y": 0.074864
},
{
"x": 48.218,
"y": 0.078149
},
{
"x": 48.452,
"y": 0.081504
},
{
"x": 48.686,
"y": 0.084928
},
{
"x": 48.92,
"y": 0.08842
},
{
"x": 49.154,
"y": 0.091975
},
{
"x": 49.388,
"y": 0.095593
},
{
"x": 49.622,
"y": 0.099271
},
{
"x": 49.855,
"y": 0.10301
},
{
"x": 50.089,
"y": 0.1068
},
{
"x": 50.323,
"y": 0.11064
},
{
"x": 50.557,
"y": 0.11453
},
{
"x": 50.791,
"y": 0.11846
},
{
"x": 51.025,
"y": 0.12244
},
{
"x": 51.259,
"y": 0.12646
},
{
"x": 51.493,
"y": 0.13051
},
{
"x": 51.726,
"y": 0.1346
},
{
"x": 51.96,
"y": 0.13872
},
{
"x": 52.194,
"y": 0.14286
},
{
"x": 52.428,
"y": 0.14703
},
{
"x": 52.662,
"y": 0.15122
},
{
"x": 52.896,
"y": 0.15542
},
{
"x": 53.13,
"y": 0.15964
},
{
"x": 53.363,
"y": 0.16387
},
{
"x": 53.597,
"y": 0.1681
},
{
"x": 53.831,
"y": 0.17234
},
{
"x": 54.065,
"y": 0.17658
},
{
"x": 54.299,
"y": 0.18082
},
{
"x": 54.533,
"y": 0.18505
},
{
"x": 54.767,
"y": 0.18927
},
{
"x": 55,
"y": 0.19348
},
{
"x": 55.234,
"y": 0.19768
},
{
"x": 55.468,
"y": 0.20187
},
{
"x": 55.702,
"y": 0.20603
},
{
"x": 55.936,
"y": 0.21017
},
{
"x": 56.17,
"y": 0.21429
},
{
"x": 56.404,
"y": 0.21838
},
{
"x": 56.638,
"y": 0.22245
},
{
"x": 56.871,
"y": 0.22648
},
{
"x": 57.105,
"y": 0.23049
},
{
"x": 57.339,
"y": 0.23446
},
{
"x": 57.573,
"y": 0.23839
},
{
"x": 57.807,
"y": 0.24229
},
{
"x": 58.041,
"y": 0.24615
},
{
"x": 58.275,
"y": 0.24998
},
{
"x": 58.508,
"y": 0.25376
},
{
"x": 58.742,
"y": 0.25751
},
{
"x": 58.976,
"y": 0.26121
},
{
"x": 59.21,
"y": 0.26487
},
{
"x": 59.444,
"y": 0.26849
},
{
"x": 59.678,
"y": 0.27207
},
{
"x": 59.912,
"y": 0.27561
},
{
"x": 60.145,
"y": 0.2791
},
{
"x": 60.379,
"y": 0.28256
},
{
"x": 60.613,
"y": 0.28597
},
{
"x": 60.847,
"y": 0.28934
},
{
"x": 61.081,
"y": 0.29268
},
{
"x": 61.315,
"y": 0.29597
},
{
"x": 61.549,
"y": 0.29923
},
{
"x": 61.783,
"y": 0.30246
},
{
"x": 62.016,
"y": 0.30564
},
{
"x": 62.25,
"y": 0.3088
},
{
"x": 62.484,
"y": 0.31193
},
{
"x": 62.718,
"y": 0.31502
},
{
"x": 62.952,
"y": 0.31809
},
{
"x": 63.186,
"y": 0.32113
},
{
"x": 63.42,
"y": 0.32416
},
{
"x": 63.653,
"y": 0.32716
},
{
"x": 63.887,
"y": 0.33015
},
{
"x": 64.121,
"y": 0.33312
},
{
"x": 64.355,
"y": 0.33608
},
{
"x": 64.589,
"y": 0.33903
},
{
"x": 64.823,
"y": 0.34198
},
{
"x": 65.057,
"y": 0.34493
},
{
"x": 65.29,
"y": 0.34788
},
{
"x": 65.524,
"y": 0.35084
},
{
"x": 65.758,
"y": 0.35381
},
{
"x": 65.992,
"y": 0.3568
},
{
"x": 66.226,
"y": 0.3598
},
{
"x": 66.46,
"y": 0.36282
},
{
"x": 66.694,
"y": 0.36588
},
{
"x": 66.928,
"y": 0.36896
},
{
"x": 67.161,
"y": 0.37208
},
{
"x": 67.395,
"y": 0.37525
},
{
"x": 67.629,
"y": 0.37845
},
{
"x": 67.863,
"y": 0.38171
},
{
"x": 68.097,
"y": 0.38502
},
{
"x": 68.331,
"y": 0.38839
},
{
"x": 68.565,
"y": 0.39183
},
{
"x": 68.798,
"y": 0.39533
},
{
"x": 69.032,
"y": 0.39891
},
{
"x": 69.266,
"y": 0.40256
},
{
"x": 69.5,
"y": 0.40629
},
{
"x": 69.734,
"y": 0.41011
},
{
"x": 69.968,
"y": 0.41402
},
{
"x": 70.202,
"y": 0.41802
},
{
"x": 70.435,
"y": 0.42212
},
{
"x": 70.669,
"y": 0.42633
},
{
"x": 70.903,
"y": 0.43063
},
{
"x": 71.137,
"y": 0.43504
},
{
"x": 71.371,
"y": 0.43957
},
{
"x": 71.605,
"y": 0.4442
},
{
"x": 71.839,
"y": 0.44896
},
{
"x": 72.072,
"y": 0.45383
},
{
"x": 72.306,
"y": 0.45882
},
{
"x": 72.54,
"y": 0.46393
},
{
"x": 72.774,
"y": 0.46917
},
{
"x": 73.008,
"y": 0.47452
},
{
"x": 73.242,
"y": 0.48001
},
{
"x": 73.476,
"y": 0.48561
},
{
"x": 73.71,
"y": 0.49134
},
{
"x": 73.943,
"y": 0.4972
},
{
"x": 74.177,
"y": 0.50318
},
{
"x": 74.411,
"y": 0.50928
},
{
"x": 74.645,
"y": 0.5155
},
{
"x": 74.879,
"y": 0.52183
},
{
"x": 75.113,
"y": 0.52829
},
{
"x": 75.347,
"y": 0.53486
},
{
"x": 75.58,
"y": 0.54153
},
{
"x": 75.814,
"y": 0.54832
},
{
"x": 76.048,
"y": 0.5552
},
{
"x": 76.282,
"y": 0.56219
},
{
"x": 76.516,
"y": 0.56927
},
{
"x": 76.75,
"y": 0.57644
},
{
"x": 76.984,
"y": 0.5837
},
{
"x": 77.217,
"y": 0.59103
},
{
"x": 77.451,
"y": 0.59844
},
{
"x": 77.685,
"y": 0.60591
},
{
"x": 77.919,
"y": 0.61345
},
{
"x": 78.153,
"y": 0.62104
},
{
"x": 78.387,
"y": 0.62868
},
{
"x": 78.621,
"y": 0.63637
},
{
"x": 78.855,
"y": 0.64409
},
{
"x": 79.088,
"y": 0.65183
},
{
"x": 79.322,
"y": 0.6596
},
{
"x": 79.556,
"y": 0.66738
},
{
"x": 79.79,
"y": 0.67517
},
{
"x": 80.024,
"y": 0.68296
},
{
"x": 80.258,
"y": 0.69073
},
{
"x": 80.492,
"y": 0.6985
},
{
"x": 80.725,
"y": 0.70624
},
{
"x": 80.959,
"y": 0.71395
},
{
"x": 81.193,
"y": 0.72163
},
{
"x": 81.427,
"y": 0.72926
},
{
"x": 81.661,
"y": 0.73684
},
{
"x": 81.895,
"y": 0.74436
},
{
"x": 82.129,
"y": 0.75182
},
{
"x": 82.362,
"y": 0.75921
},
{
"x": 82.596,
"y": 0.76652
},
{
"x": 82.83,
"y": 0.77376
},
{
"x": 83.064,
"y": 0.7809
},
{
"x": 83.298,
"y": 0.78795
},
{
"x": 83.532,
"y": 0.7949
},
{
"x": 83.766,
"y": 0.80175
},
{
"x": 84,
"y": 0.80849
},
{
"x": 84.233,
"y": 0.81511
},
{
"x": 84.467,
"y": 0.82162
},
{
"x": 84.701,
"y": 0.82801
},
{
"x": 84.935,
"y": 0.83428
},
{
"x": 85.169,
"y": 0.84042
},
{
"x": 85.403,
"y": 0.84644
},
{
"x": 85.637,
"y": 0.85232
},
{
"x": 85.87,
"y": 0.85806
},
{
"x": 86.104,
"y": 0.86368
},
{
"x": 86.338,
"y": 0.86915
},
{
"x": 86.572,
"y": 0.87449
},
{
"x": 86.806,
"y": 0.87969
},
{
"x": 87.04,
"y": 0.88474
},
{
"x": 87.274,
"y": 0.88966
},
{
"x": 87.507,
"y": 0.89444
},
{
"x": 87.741,
"y": 0.89908
},
{
"x": 87.975,
"y": 0.90358
},
{
"x": 88.209,
"y": 0.90794
},
{
"x": 88.443,
"y": 0.91216
},
{
"x": 88.677,
"y": 0.91625
},
{
"x": 88.911,
"y": 0.9202
},
{
"x": 89.145,
"y": 0.92402
},
{
"x": 89.378,
"y": 0.9277
},
{
"x": 89.612,
"y": 0.93126
},
{
"x": 89.846,
"y": 0.93469
},
{
"x": 90.08,
"y": 0.93798
},
{
"x": 90.314,
"y": 0.94116
},
{
"x": 90.548,
"y": 0.94421
},
{
"x": 90.782,
"y": 0.94715
},
{
"x": 91.015,
"y": 0.94996
},
{
"x": 91.249,
"y": 0.95266
},
{
"x": 91.483,
"y": 0.95525
},
{
"x": 91.717,
"y": 0.95773
},
{
"x": 91.951,
"y": 0.96011
},
{
"x": 92.185,
"y": 0.96238
},
{
"x": 92.419,
"y": 0.96455
},
{
"x": 92.652,
"y": 0.96662
},
{
"x": 92.886,
"y": 0.96859
},
{
"x": 93.12,
"y": 0.97048
},
{
"x": 93.354,
"y": 0.97227
},
{
"x": 93.588,
"y": 0.97397
},
{
"x": 93.822,
"y": 0.9756
},
{
"x": 94.056,
"y": 0.97714
},
{
"x": 94.29,
"y": 0.9786
},
{
"x": 94.523,
"y": 0.97999
},
{
"x": 94.757,
"y": 0.9813
},
{
"x": 94.991,
"y": 0.98254
},
{
"x": 95.225,
"y": 0.98372
},
{
"x": 95.459,
"y": 0.98483
},
{
"x": 95.693,
"y": 0.98588
},
{
"x": 95.927,
"y": 0.98687
},
{
"x": 96.16,
"y": 0.9878
},
{
"x": 96.394,
"y": 0.98868
},
{
"x": 96.628,
"y": 0.9895
},
{
"x": 96.862,
"y": 0.99027
},
{
"x": 97.096,
"y": 0.991
},
{
"x": 97.33,
"y": 0.99168
},
{
"x": 97.564,
"y": 0.99232
},
{
"x": 97.797,
"y": 0.99291
},
{
"x": 98.031,
"y": 0.99347
},
{
"x": 98.265,
"y": 0.99399
},
{
"x": 98.499,
"y": 0.99448
},
{
"x": 98.733,
"y": 0.99493
},
{
"x": 98.967,
"y": 0.99535
},
{
"x": 99.201,
"y": 0.99574
},
{
"x": 99.435,
"y": 0.9961
},
{
"x": 99.668,
"y": 0.99643
},
{
"x": 99.902,
"y": 0.99674
},
{
"x": 100.14,
"y": 0.99703
},
{
"x": 100.37,
"y": 0.9973
},
{
"x": 100.6,
"y": 0.99754
},
{
"x": 100.84,
"y": 0.99776
},
{
"x": 101.07,
"y": 0.99797
},
{
"x": 101.31,
"y": 0.99816
},
{
"x": 101.54,
"y": 0.99834
},
{
"x": 101.77,
"y": 0.9985
},
{
"x": 102.01,
"y": 0.99864
},
{
"x": 102.24,
"y": 0.99878
},
{
"x": 102.47,
"y": 0.9989
},
{
"x": 102.71,
"y": 0.99901
},
{
"x": 102.94,
"y": 0.99911
},
{
"x": 103.18,
"y": 0.9992
},
{
"x": 103.41,
"y": 0.99929
},
{
"x": 103.64,
"y": 0.99936
},
{
"x": 103.88,
"y": 0.99943
},
{
"x": 104.11,
"y": 0.99949
},
{
"x": 104.35,
"y": 0.99955
},
{
"x": 104.58,
"y": 0.9996
},
{
"x": 104.81,
"y": 0.99964
},
{
"x": 105.05,
"y": 0.99968
},
{
"x": 105.28,
"y": 0.99972
},
{
"x": 105.51,
"y": 0.99975
},
{
"x": 105.75,
"y": 0.99978
},
{
"x": 105.98,
"y": 0.99981
},
{
"x": 106.22,
"y": 0.99983
},
{
"x": 106.45,
"y": 0.99985
},
{
"x": 106.68,
"y": 0.99987
},
{
"x": 106.92,
"y": 0.99988
},
{
"x": 107.15,
"y": 0.9999
},
{
"x": 107.39,
"y": 0.99991
},
{
"x": 107.62,
"y": 0.99992
},
{
"x": 107.85,
"y": 0.99993
},
{
"x": 108.09,
"y": 0.99994
},
{
"x": 108.32,
"y": 0.99995
},
{
"x": 108.56,
"y": 0.99995
},
{
"x": 108.79,
"y": 0.99996
},
{
"x": 109.02,
"y": 0.99996
},
{
"x": 109.26,
"y": 0.99997
},
{
"x": 109.49,
"y": 0.99997
},
{
"x": 109.72,
"y": 0.99998
},
{
"x": 109.96,
"y": 0.99998
},
{
"x": 110.19,
"y": 0.99998
},
{
"x": 110.43,
"y": 0.99998
},
{
"x": 110.66,
"y": 0.99999
},
{
"x": 110.89,
"y": 0.99999
},
{
"x": 111.13,
"y": 0.99999
},
{
"x": 111.36,
"y": 0.99999
},
{
"x": 111.6,
"y": 0.99999
},
{
"x": 111.83,
"y": 0.99999
},
{
"x": 112.06,
"y": 0.99999
},
{
"x": 112.3,
"y": 0.99999
},
{
"x": 112.53,
"y": 0.99999
},
{
"x": 112.76,
"y": 0.99999
},
{
"x": 113,
"y": 0.99999
},
{
"x": 113.23,
"y": 0.99999
},
{
"x": 113.47,
"y": 0.99999
},
{
"x": 113.7,
"y": 0.99999
},
{
"x": 113.93,
"y": 0.99999
},
{
"x": 114.17,
"y": 0.99999
},
{
"x": 114.4,
"y": 0.99999
},
{
"x": 114.64,
"y": 0.99999
},
{
"x": 114.87,
"y": 0.99999
},
{
"x": 115.1,
"y": 0.99999
},
{
"x": 115.34,
"y": 0.99999
},
{
"x": 115.57,
"y": 0.99999
},
{
"x": 115.8,
"y": 0.99999
},
{
"x": 116.04,
"y": 0.99999
},
{
"x": 116.27,
"y": 0.99999
}
],
"ccdf": [
{
"x": 22.727,
"y": 1
},
{
"x": 22.961,
"y": 1
},
{
"x": 23.195,
"y": 1
},
{
"x": 23.429,
"y": 1
},
{
"x": 23.663,
"y": 1
},
{
"x": 23.897,
"y": 1
},
{
"x": 24.13,
"y": 1
},
{
"x": 24.364,
"y": 1
},
{
"x": 24.598,
"y": 1
},
{
"x": 24.832,
"y": 1
},
{
"x": 25.066,
"y": 1
},
{
"x": 25.3,
"y": 1
},
{
"x": 25.534,
"y": 1
},
{
"x": 25.768,
"y": 1
},
{
"x": 26.001,
"y": 1
},
{
"x": 26.235,
"y": 1
},
{
"x": 26.469,
"y": 1
},
{
"x": 26.703,
"y": 1
},
{
"x": 26.937,
"y": 1
},
{
"x": 27.171,
"y": 1
},
{
"x": 27.405,
"y": 1
},
{
"x": 27.638,
"y": 0.99999
},
{
"x": 27.872,
"y": 0.99999
},
{
"x": 28.106,
"y": 0.99999
},
{
"x": 28.34,
"y": 0.99999
},
{
"x": 28.574,
"y": 0.99998
},
{
"x": 28.808,
"y": 0.99998
},
{
"x": 29.042,
"y": 0.99997
},
{
"x": 29.275,
"y": 0.99997
},
{
"x": 29.509,
"y": 0.99996
},
{
"x": 29.743,
"y": 0.99995
},
{
"x": 29.977,
"y": 0.99994
},
{
"x": 30.211,
"y": 0.99993
},
{
"x": 30.445,
"y": 0.99992
},
{
"x": 30.679,
"y": 0.99991
},
{
"x": 30.913,
"y": 0.99989
},
{
"x": 31.146,
"y": 0.99987
},
{
"x": 31.38,
"y": 0.99985
},
{
"x": 31.614,
"y": 0.99983
},
{
"x": 31.848,
"y": 0.9998
},
{
"x": 32.082,
"y": 0.99977
},
{
"x": 32.316,
"y": 0.99974
},
{
"x": 32.55,
"y": 0.9997
},
{
"x": 32.783,
"y": 0.99966
},
{
"x": 33.017,
"y": 0.99961
},
{
"x": 33.251,
"y": 0.99956
},
{
"x": 33.485,
"y": 0.9995
},
{
"x": 33.719,
"y": 0.99943
},
{
"x": 33.953,
"y": 0.99935
},
{
"x": 34.187,
"y": 0.99927
},
{
"x": 34.42,
"y": 0.99917
},
{
"x": 34.654,
"y": 0.99907
},
{
"x": 34.888,
"y": 0.99895
},
{
"x": 35.122,
"y": 0.99882
},
{
"x": 35.356,
"y": 0.99868
},
{
"x": 35.59,
"y": 0.99852
},
{
"x": 35.824,
"y": 0.99835
},
{
"x": 36.058,
"y": 0.99816
},
{
"x": 36.291,
"y": 0.99795
},
{
"x": 36.525,
"y": 0.99773
},
{
"x": 36.759,
"y": 0.99748
},
{
"x": 36.993,
"y": 0.99721
},
{
"x": 37.227,
"y": 0.99691
},
{
"x": 37.461,
"y": 0.99659
},
{
"x": 37.695,
"y": 0.99624
},
{
"x": 37.928,
"y": 0.99586
},
{
"x": 38.162,
"y": 0.99544
},
{
"x": 38.396,
"y": 0.995
},
{
"x": 38.63,
"y": 0.99452
},
{
"x": 38.864,
"y": 0.994
},
{
"x": 39.098,
"y": 0.99344
},
{
"x": 39.332,
"y": 0.99284
},
{
"x": 39.565,
"y": 0.9922
},
{
"x": 39.799,
"y": 0.99151
},
{
"x": 40.033,
"y": 0.99077
},
{
"x": 40.267,
"y": 0.98999
},
{
"x": 40.501,
"y": 0.98915
},
{
"x": 40.735,
"y": 0.98826
},
{
"x": 40.969,
"y": 0.98731
},
{
"x": 41.203,
"y": 0.9863
},
{
"x": 41.436,
"y": 0.98523
},
{
"x": 41.67,
"y": 0.9841
},
{
"x": 41.904,
"y": 0.98291
},
{
"x": 42.138,
"y": 0.98165
},
{
"x": 42.372,
"y": 0.98032
},
{
"x": 42.606,
"y": 0.97892
},
{
"x": 42.84,
"y": 0.97745
},
{
"x": 43.073,
"y": 0.9759
},
{
"x": 43.307,
"y": 0.97428
},
{
"x": 43.541,
"y": 0.97259
},
{
"x": 43.775,
"y": 0.97082
},
{
"x": 44.009,
"y": 0.96897
},
{
"x": 44.243,
"y": 0.96704
},
{
"x": 44.477,
"y": 0.96503
},
{
"x": 44.71,
"y": 0.96294
},
{
"x": 44.944,
"y": 0.96076
},
{
"x": 45.178,
"y": 0.95851
},
{
"x": 45.412,
"y": 0.95617
},
{
"x": 45.646,
"y": 0.95376
},
{
"x": 45.88,
"y": 0.95125
},
{
"x": 46.114,
"y": 0.94867
},
{
"x": 46.348,
"y": 0.94601
},
{
"x": 46.581,
"y": 0.94326
},
{
"x": 46.815,
"y": 0.94044
},
{
"x": 47.049,
"y": 0.93753
},
{
"x": 47.283,
"y": 0.93455
},
{
"x": 47.517,
"y": 0.93148
},
{
"x": 47.751,
"y": 0.92835
},
{
"x": 47.985,
"y": 0.92514
},
{
"x": 48.218,
"y": 0.92185
},
{
"x": 48.452,
"y": 0.9185
},
{
"x": 48.686,
"y": 0.91507
},
{
"x": 48.92,
"y": 0.91158
},
{
"x": 49.154,
"y": 0.90802
},
{
"x": 49.388,
"y": 0.90441
},
{
"x": 49.622,
"y": 0.90073
},
{
"x": 49.855,
"y": 0.89699
},
{
"x": 50.089,
"y": 0.8932
},
{
"x": 50.323,
"y": 0.88936
},
{
"x": 50.557,
"y": 0.88547
},
{
"x": 50.791,
"y": 0.88154
},
{
"x": 51.025,
"y": 0.87756
},
{
"x": 51.259,
"y": 0.87354
},
{
"x": 51.493,
"y": 0.86949
},
{
"x": 51.726,
"y": 0.8654
},
{
"x": 51.96,
"y": 0.86128
},
{
"x": 52.194,
"y": 0.85714
},
{
"x": 52.428,
"y": 0.85297
},
{
"x": 52.662,
"y": 0.84878
},
{
"x": 52.896,
"y": 0.84458
},
{
"x": 53.13,
"y": 0.84036
},
{
"x": 53.363,
"y": 0.83613
},
{
"x": 53.597,
"y": 0.8319
},
{
"x": 53.831,
"y": 0.82766
},
{
"x": 54.065,
"y": 0.82342
},
{
"x": 54.299,
"y": 0.81918
},
{
"x": 54.533,
"y": 0.81495
},
{
"x": 54.767,
"y": 0.81073
},
{
"x": 55,
"y": 0.80652
},
{
"x": 55.234,
"y": 0.80232
},
{
"x": 55.468,
"y": 0.79813
},
{
"x": 55.702,
"y": 0.79397
},
{
"x": 55.936,
"y": 0.78983
},
{
"x": 56.17,
"y": 0.78571
},
{
"x": 56.404,
"y": 0.78162
},
{
"x": 56.638,
"y": 0.77755
},
{
"x": 56.871,
"y": 0.77352
},
{
"x": 57.105,
"y": 0.76951
},
{
"x": 57.339,
"y": 0.76554
},
{
"x": 57.573,
"y": 0.76161
},
{
"x": 57.807,
"y": 0.75771
},
{
"x": 58.041,
"y": 0.75385
},
{
"x": 58.275,
"y": 0.75002
},
{
"x": 58.508,
"y": 0.74624
},
{
"x": 58.742,
"y": 0.74249
},
{
"x": 58.976,
"y": 0.73879
},
{
"x": 59.21,
"y": 0.73513
},
{
"x": 59.444,
"y": 0.73151
},
{
"x": 59.678,
"y": 0.72793
},
{
"x": 59.912,
"y": 0.72439
},
{
"x": 60.145,
"y": 0.7209
},
{
"x": 60.379,
"y": 0.71744
},
{
"x": 60.613,
"y": 0.71403
},
{
"x": 60.847,
"y": 0.71066
},
{
"x": 61.081,
"y": 0.70732
},
{
"x": 61.315,
"y": 0.70403
},
{
"x": 61.549,
"y": 0.70077
},
{
"x": 61.783,
"y": 0.69754
},
{
"x": 62.016,
"y": 0.69436
},
{
"x": 62.25,
"y": 0.6912
},
{
"x": 62.484,
"y": 0.68807
},
{
"x": 62.718,
"y": 0.68498
},
{
"x": 62.952,
"y": 0.68191
},
{
"x": 63.186,
"y": 0.67887
},
{
"x": 63.42,
"y": 0.67584
},
{
"x": 63.653,
"y": 0.67284
},
{
"x": 63.887,
"y": 0.66985
},
{
"x": 64.121,
"y": 0.66688
},
{
"x": 64.355,
"y": 0.66392
},
{
"x": 64.589,
"y": 0.66097
},
{
"x": 64.823,
"y": 0.65802
},
{
"x": 65.057,
"y": 0.65507
},
{
"x": 65.29,
"y": 0.65212
},
{
"x": 65.524,
"y": 0.64916
},
{
"x": 65.758,
"y": 0.64619
},
{
"x": 65.992,
"y": 0.6432
},
{
"x": 66.226,
"y": 0.6402
},
{
"x": 66.46,
"y": 0.63718
},
{
"x": 66.694,
"y": 0.63412
},
{
"x": 66.928,
"y": 0.63104
},
{
"x": 67.161,
"y": 0.62792
},
{
"x": 67.395,
"y": 0.62475
},
{
"x": 67.629,
"y": 0.62155
},
{
"x": 67.863,
"y": 0.61829
},
{
"x": 68.097,
"y": 0.61498
},
{
"x": 68.331,
"y": 0.61161
},
{
"x": 68.565,
"y": 0.60817
},
{
"x": 68.798,
"y": 0.60467
},
{
"x": 69.032,
"y": 0.60109
},
{
"x": 69.266,
"y": 0.59744
},
{
"x": 69.5,
"y": 0.59371
},
{
"x": 69.734,
"y": 0.58989
},
{
"x": 69.968,
"y": 0.58598
},
{
"x": 70.202,
"y": 0.58198
},
{
"x": 70.435,
"y": 0.57788
},
{
"x": 70.669,
"y": 0.57367
},
{
"x": 70.903,
"y": 0.56937
},
{
"x": 71.137,
"y": 0.56496
},
{
"x": 71.371,
"y": 0.56043
},
{
"x": 71.605,
"y": 0.5558
},
{
"x": 71.839,
"y": 0.55104
},
{
"x": 72.072,
"y": 0.54617
},
{
"x": 72.306,
"y": 0.54118
},
{
"x": 72.54,
"y": 0.53607
},
{
"x": 72.774,
"y": 0.53083
},
{
"x": 73.008,
"y": 0.52548
},
{
"x": 73.242,
"y": 0.51999
},
{
"x": 73.476,
"y": 0.51439
},
{
"x": 73.71,
"y": 0.50866
},
{
"x": 73.943,
"y": 0.5028
},
{
"x": 74.177,
"y": 0.49682
},
{
"x": 74.411,
"y": 0.49072
},
{
"x": 74.645,
"y": 0.4845
},
{
"x": 74.879,
"y": 0.47817
},
{
"x": 75.113,
"y": 0.47171
},
{
"x": 75.347,
"y": 0.46514
},
{
"x": 75.58,
"y": 0.45847
},
{
"x": 75.814,
"y": 0.45168
},
{
"x": 76.048,
"y": 0.4448
},
{
"x": 76.282,
"y": 0.43781
},
{
"x": 76.516,
"y": 0.43073
},
{
"x": 76.75,
"y": 0.42356
},
{
"x": 76.984,
"y": 0.4163
},
{
"x": 77.217,
"y": 0.40897
},
{
"x": 77.451,
"y": 0.40156
},
{
"x": 77.685,
"y": 0.39409
},
{
"x": 77.919,
"y": 0.38655
},
{
"x": 78.153,
"y": 0.37896
},
{
"x": 78.387,
"y": 0.37132
},
{
"x": 78.621,
"y": 0.36363
},
{
"x": 78.855,
"y": 0.35591
},
{
"x": 79.088,
"y": 0.34817
},
{
"x": 79.322,
"y": 0.3404
},
{
"x": 79.556,
"y": 0.33262
},
{
"x": 79.79,
"y": 0.32483
},
{
"x": 80.024,
"y": 0.31704
},
{
"x": 80.258,
"y": 0.30927
},
{
"x": 80.492,
"y": 0.3015
},
{
"x": 80.725,
"y": 0.29376
},
{
"x": 80.959,
"y": 0.28605
},
{
"x": 81.193,
"y": 0.27837
},
{
"x": 81.427,
"y": 0.27074
},
{
"x": 81.661,
"y": 0.26316
},
{
"x": 81.895,
"y": 0.25564
},
{
"x": 82.129,
"y": 0.24818
},
{
"x": 82.362,
"y": 0.24079
},
{
"x": 82.596,
"y": 0.23348
},
{
"x": 82.83,
"y": 0.22624
},
{
"x": 83.064,
"y": 0.2191
},
{
"x": 83.298,
"y": 0.21205
},
{
"x": 83.532,
"y": 0.2051
},
{
"x": 83.766,
"y": 0.19825
},
{
"x": 84,
"y": 0.19151
},
{
"x": 84.233,
"y": 0.18489
},
{
"x": 84.467,
"y": 0.17838
},
{
"x": 84.701,
"y": 0.17199
},
{
"x": 84.935,
"y": 0.16572
},
{
"x": 85.169,
"y": 0.15958
},
{
"x": 85.403,
"y": 0.15356
},
{
"x": 85.637,
"y": 0.14768
},
{
"x": 85.87,
"y": 0.14194
},
{
"x": 86.104,
"y": 0.13632
},
{
"x": 86.338,
"y": 0.13085
},
{
"x": 86.572,
"y": 0.12551
},
{
"x": 86.806,
"y": 0.12031
},
{
"x": 87.04,
"y": 0.11526
},
{
"x": 87.274,
"y": 0.11034
},
{
"x": 87.507,
"y": 0.10556
},
{
"x": 87.741,
"y": 0.10092
},
{
"x": 87.975,
"y": 0.09642
},
{
"x": 88.209,
"y": 0.092059
},
{
"x": 88.443,
"y": 0.087836
},
{
"x": 88.677,
"y": 0.083749
},
{
"x": 88.911,
"y": 0.079798
},
{
"x": 89.145,
"y": 0.07598
},
{
"x": 89.378,
"y": 0.072295
},
{
"x": 89.612,
"y": 0.068741
},
{
"x": 89.846,
"y": 0.065315
},
{
"x": 90.08,
"y": 0.062015
},
{
"x": 90.314,
"y": 0.05884
},
{
"x": 90.548,
"y": 0.055787
},
{
"x": 90.782,
"y": 0.052854
},
{
"x": 91.015,
"y": 0.050037
},
{
"x": 91.249,
"y": 0.047336
},
{
"x": 91.483,
"y": 0.044746
},
{
"x": 91.717,
"y": 0.042266
},
{
"x": 91.951,
"y": 0.039892
},
{
"x": 92.185,
"y": 0.037622
},
{
"x": 92.419,
"y": 0.035453
},
{
"x": 92.652,
"y": 0.033382
},
{
"x": 92.886,
"y": 0.031407
},
{
"x": 93.12,
"y": 0.029524
},
{
"x": 93.354,
"y": 0.027731
},
{
"x": 93.588,
"y": 0.026025
},
{
"x": 93.822,
"y": 0.024403
},
{
"x": 94.056,
"y": 0.022862
},
{
"x": 94.29,
"y": 0.0214
},
{
"x": 94.523,
"y": 0.020013
},
{
"x": 94.757,
"y": 0.018699
},
{
"x": 94.991,
"y": 0.017456
},
{
"x": 95.225,
"y": 0.01628
},
{
"x": 95.459,
"y": 0.015169
},
{
"x": 95.693,
"y": 0.014121
},
{
"x": 95.927,
"y": 0.013132
},
{
"x": 96.16,
"y": 0.0122
},
{
"x": 96.394,
"y": 0.011324
},
{
"x": 96.628,
"y": 0.0105
},
{
"x": 96.862,
"y": 0.0097255
},
{
"x": 97.096,
"y": 0.0089991
},
{
"x": 97.33,
"y": 0.0083185
},
{
"x": 97.564,
"y": 0.0076811
},
{
"x": 97.797,
"y": 0.007085
},
{
"x": 98.031,
"y": 0.006528
},
{
"x": 98.265,
"y": 0.0060084
},
{
"x": 98.499,
"y": 0.005524
},
{
"x": 98.733,
"y": 0.0050729
},
{
"x": 98.967,
"y": 0.0046533
},
{
"x": 99.201,
"y": 0.0042636
},
{
"x": 99.435,
"y": 0.003902
},
{
"x": 99.668,
"y": 0.0035668
},
{
"x": 99.902,
"y": 0.0032565
},
{
"x": 100.14,
"y": 0.0029696
},
{
"x": 100.37,
"y": 0.0027047
},
{
"x": 100.6,
"y": 0.0024604
},
{
"x": 100.84,
"y": 0.0022353
},
{
"x": 101.07,
"y": 0.0020282
},
{
"x": 101.31,
"y": 0.0018382
},
{
"x": 101.54,
"y": 0.0016638
},
{
"x": 101.77,
"y": 0.001504
},
{
"x": 102.01,
"y": 0.0013577
},
{
"x": 102.24,
"y": 0.0012241
},
{
"x": 102.47,
"y": 0.0011022
},
{
"x": 102.71,
"y": 0.00099114
},
{
"x": 102.94,
"y": 0.00089001
},
{
"x": 103.18,
"y": 0.00079815
},
{
"x": 103.41,
"y": 0.00071497
},
{
"x": 103.64,
"y": 0.00063954
},
{
"x": 103.88,
"y": 0.00057125
},
{
"x": 104.11,
"y": 0.00050951
},
{
"x": 104.35,
"y": 0.00045399
},
{
"x": 104.58,
"y": 0.00040394
},
{
"x": 104.81,
"y": 0.00035888
},
{
"x": 105.05,
"y": 0.00031838
},
{
"x": 105.28,
"y": 0.00028212
},
{
"x": 105.51,
"y": 0.00024967
},
{
"x": 105.75,
"y": 0.00022064
},
{
"x": 105.98,
"y": 0.0001947
},
{
"x": 106.22,
"y": 0.00017162
},
{
"x": 106.45,
"y": 0.00015113
},
{
"x": 106.68,
"y": 0.00013292
},
{
"x": 106.92,
"y": 0.00011674
},
{
"x": 107.15,
"y": 0.00010241
},
{
"x": 107.39,
"y": 8.9771e-05
},
{
"x": 107.62,
"y": 7.86e-05
},
{
"x": 107.85,
"y": 6.8746e-05
},
{
"x": 108.09,
"y": 6.0069e-05
},
{
"x": 108.32,
"y": 5.2557e-05
},
{
"x": 108.56,
"y": 4.5974e-05
},
{
"x": 108.79,
"y": 4.0202e-05
},
{
"x": 109.02,
"y": 3.515e-05
},
{
"x": 109.26,
"y": 3.0776e-05
},
{
"x": 109.49,
"y": 2.6985e-05
},
{
"x": 109.72,
"y": 2.3682e-05
},
{
"x": 109.96,
"y": 2.0811e-05
},
{
"x": 110.19,
"y": 1.8363e-05
},
{
"x": 110.43,
"y": 1.6325e-05
},
{
"x": 110.66,
"y": 1.4558e-05
},
{
"x": 110.89,
"y": 1.303e-05
},
{
"x": 111.13,
"y": 1.1712e-05
},
{
"x": 111.36,
"y": 1e-06
},
{
"x": 111.6,
"y": 1e-06
},
{
"x": 111.83,
"y": 1e-06
},
{
"x": 112.06,
"y": 1e-06
},
{
"x": 112.3,
"y": 1e-06
},
{
"x": 112.53,
"y": 1e-06
},
{
"x": 112.76,
"y": 1e-06
},
{
"x": 113,
"y": 1e-06
},
{
"x": 113.23,
"y": 1e-06
},
{
"x": 113.47,
"y": 1e-06
},
{
"x": 113.7,
"y": 1e-06
},
{
"x": 113.93,
"y": 1e-06
},
{
"x": 114.17,
"y": 1e-06
},
{
"x": 114.4,
"y": 1e-06
},
{
"x": 114.64,
"y": 1e-06
},
{
"x": 114.87,
"y": 1e-06
},
{
"x": 115.1,
"y": 1e-06
},
{
"x": 115.34,
"y": 1e-06
},
{
"x": 115.57,
"y": 1e-06
},
{
"x": 115.8,
"y": 1e-06
},
{
"x": 116.04,
"y": 1e-06
},
{
"x": 116.27,
"y": 1e-06
}
],
"datatable": [
{
"x": 22.727,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 22.961,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 23.195,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 23.429,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 23.663,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 23.897,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 24.13,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 24.364,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 24.598,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 24.832,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 25.066,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 25.3,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 25.534,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 25.768,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 26.001,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 26.235,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 26.469,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 26.703,
"pdf": 0,
"cdf": 1e-06,
"ccdf": 1
},
{
"x": 26.937,
"pdf": 1.1968e-06,
"cdf": 1.1968e-06,
"ccdf": 1
},
{
"x": 27.171,
"pdf": 1.4051e-06,
"cdf": 2.6019e-06,
"ccdf": 1
},
{
"x": 27.405,
"pdf": 1.6463e-06,
"cdf": 4.2482e-06,
"ccdf": 1
},
{
"x": 27.638,
"pdf": 1.9252e-06,
"cdf": 6.1735e-06,
"ccdf": 0.99999
},
{
"x": 27.872,
"pdf": 2.3191e-06,
"cdf": 8.4926e-06,
"ccdf": 0.99999
},
{
"x": 28.106,
"pdf": 2.709e-06,
"cdf": 1.1202e-05,
"ccdf": 0.99999
},
{
"x": 28.34,
"pdf": 3.1525e-06,
"cdf": 1.4354e-05,
"ccdf": 0.99999
},
{
"x": 28.574,
"pdf": 3.6615e-06,
"cdf": 1.8016e-05,
"ccdf": 0.99998
},
{
"x": 28.808,
"pdf": 4.3292e-06,
"cdf": 2.2345e-05,
"ccdf": 0.99998
},
{
"x": 29.042,
"pdf": 5.0563e-06,
"cdf": 2.7401e-05,
"ccdf": 0.99997
},
{
"x": 29.275,
"pdf": 5.8449e-06,
"cdf": 3.3246e-05,
"ccdf": 0.99997
},
{
"x": 29.509,
"pdf": 6.7436e-06,
"cdf": 3.999e-05,
"ccdf": 0.99996
},
{
"x": 29.743,
"pdf": 7.8148e-06,
"cdf": 4.7804e-05,
"ccdf": 0.99995
},
{
"x": 29.977,
"pdf": 9.0641e-06,
"cdf": 5.6868e-05,
"ccdf": 0.99994
},
{
"x": 30.211,
"pdf": 1.0405e-05,
"cdf": 6.7274e-05,
"ccdf": 0.99993
},
{
"x": 30.445,
"pdf": 1.1922e-05,
"cdf": 7.9196e-05,
"ccdf": 0.99992
},
{
"x": 30.679,
"pdf": 1.3651e-05,
"cdf": 9.2847e-05,
"ccdf": 0.99991
},
{
"x": 30.913,
"pdf": 1.5722e-05,
"cdf": 0.00010857,
"ccdf": 0.99989
},
{
"x": 31.146,
"pdf": 1.7923e-05,
"cdf": 0.00012649,
"ccdf": 0.99987
},
{
"x": 31.38,
"pdf": 2.0394e-05,
"cdf": 0.00014689,
"ccdf": 0.99985
},
{
"x": 31.614,
"pdf": 2.3162e-05,
"cdf": 0.00017005,
"ccdf": 0.99983
},
{
"x": 31.848,
"pdf": 2.6365e-05,
"cdf": 0.00019641,
"ccdf": 0.9998
},
{
"x": 32.082,
"pdf": 2.9864e-05,
"cdf": 0.00022628,
"ccdf": 0.99977
},
{
"x": 32.316,
"pdf": 3.3741e-05,
"cdf": 0.00026002,
"ccdf": 0.99974
},
{
"x": 32.55,
"pdf": 3.8053e-05,
"cdf": 0.00029807,
"ccdf": 0.9997
},
{
"x": 32.783,
"pdf": 4.2938e-05,
"cdf": 0.00034101,
"ccdf": 0.99966
},
{
"x": 33.017,
"pdf": 4.8337e-05,
"cdf": 0.00038935,
"ccdf": 0.99961
},
{
"x": 33.251,
"pdf": 5.4233e-05,
"cdf": 0.00044358,
"ccdf": 0.99956
},
{
"x": 33.485,
"pdf": 6.074e-05,
"cdf": 0.00050432,
"ccdf": 0.9995
},
{
"x": 33.719,
"pdf": 6.797e-05,
"cdf": 0.00057229,
"ccdf": 0.99943
},
{
"x": 33.953,
"pdf": 7.6026e-05,
"cdf": 0.00064832,
"ccdf": 0.99935
},
{
"x": 34.187,
"pdf": 8.4713e-05,
"cdf": 0.00073303,
"ccdf": 0.99927
},
{
"x": 34.42,
"pdf": 9.4228e-05,
"cdf": 0.00082726,
"ccdf": 0.99917
},
{
"x": 34.654,
"pdf": 0.00010463,
"cdf": 0.00093188,
"ccdf": 0.99907
},
{
"x": 34.888,
"pdf": 0.00011613,
"cdf": 0.001048,
"ccdf": 0.99895
},
{
"x": 35.122,
"pdf": 0.00012851,
"cdf": 0.0011765,
"ccdf": 0.99882
},
{
"x": 35.356,
"pdf": 0.00014197,
"cdf": 0.0013185,
"ccdf": 0.99868
},
{
"x": 35.59,
"pdf": 0.00015656,
"cdf": 0.001475,
"ccdf": 0.99852
},
{
"x": 35.824,
"pdf": 0.00017244,
"cdf": 0.0016475,
"ccdf": 0.99835
},
{
"x": 36.058,
"pdf": 0.00018956,
"cdf": 0.0018371,
"ccdf": 0.99816
},
{
"x": 36.291,
"pdf": 0.000208,
"cdf": 0.002045,
"ccdf": 0.99795
},
{
"x": 36.525,
"pdf": 0.00022784,
"cdf": 0.0022729,
"ccdf": 0.99773
},
{
"x": 36.759,
"pdf": 0.0002492,
"cdf": 0.0025221,
"ccdf": 0.99748
},
{
"x": 36.993,
"pdf": 0.00027211,
"cdf": 0.0027942,
"ccdf": 0.99721
},
{
"x": 37.227,
"pdf": 0.0002966,
"cdf": 0.0030908,
"ccdf": 0.99691
},
{
"x": 37.461,
"pdf": 0.00032275,
"cdf": 0.0034136,
"ccdf": 0.99659
},
{
"x": 37.695,
"pdf": 0.00035066,
"cdf": 0.0037642,
"ccdf": 0.99624
},
{
"x": 37.928,
"pdf": 0.00038042,
"cdf": 0.0041446,
"ccdf": 0.99586
},
{
"x": 38.162,
"pdf": 0.00041196,
"cdf": 0.0045566,
"ccdf": 0.99544
},
{
"x": 38.396,
"pdf": 0.0004454,
"cdf": 0.005002,
"ccdf": 0.995
},
{
"x": 38.63,
"pdf": 0.00048078,
"cdf": 0.0054828,
"ccdf": 0.99452
},
{
"x": 38.864,
"pdf": 0.00051831,
"cdf": 0.0060011,
"ccdf": 0.994
},
{
"x": 39.098,
"pdf": 0.00055776,
"cdf": 0.0065588,
"ccdf": 0.99344
},
{
"x": 39.332,
"pdf": 0.00059925,
"cdf": 0.0071581,
"ccdf": 0.99284
},
{
"x": 39.565,
"pdf": 0.00064283,
"cdf": 0.0078009,
"ccdf": 0.9922
},
{
"x": 39.799,
"pdf": 0.00068861,
"cdf": 0.0084895,
"ccdf": 0.99151
},
{
"x": 40.033,
"pdf": 0.0007365,
"cdf": 0.009226,
"ccdf": 0.99077
},
{
"x": 40.267,
"pdf": 0.00078647,
"cdf": 0.010012,
"ccdf": 0.98999
},
{
"x": 40.501,
"pdf": 0.00083857,
"cdf": 0.010851,
"ccdf": 0.98915
},
{
"x": 40.735,
"pdf": 0.00089279,
"cdf": 0.011744,
"ccdf": 0.98826
},
{
"x": 40.969,
"pdf": 0.00094911,
"cdf": 0.012693,
"ccdf": 0.98731
},
{
"x": 41.203,
"pdf": 0.0010075,
"cdf": 0.0137,
"ccdf": 0.9863
},
{
"x": 41.436,
"pdf": 0.001068,
"cdf": 0.014768,
"ccdf": 0.98523
},
{
"x": 41.67,
"pdf": 0.0011304,
"cdf": 0.015899,
"ccdf": 0.9841
},
{
"x": 41.904,
"pdf": 0.0011949,
"cdf": 0.017094,
"ccdf": 0.98291
},
{
"x": 42.138,
"pdf": 0.0012612,
"cdf": 0.018355,
"ccdf": 0.98165
},
{
"x": 42.372,
"pdf": 0.0013294,
"cdf": 0.019684,
"ccdf": 0.98032
},
{
"x": 42.606,
"pdf": 0.0013992,
"cdf": 0.021084,
"ccdf": 0.97892
},
{
"x": 42.84,
"pdf": 0.0014709,
"cdf": 0.022554,
"ccdf": 0.97745
},
{
"x": 43.073,
"pdf": 0.001544,
"cdf": 0.024098,
"ccdf": 0.9759
},
{
"x": 43.307,
"pdf": 0.0016186,
"cdf": 0.025717,
"ccdf": 0.97428
},
{
"x": 43.541,
"pdf": 0.0016945,
"cdf": 0.027412,
"ccdf": 0.97259
},
{
"x": 43.775,
"pdf": 0.0017718,
"cdf": 0.029183,
"ccdf": 0.97082
},
{
"x": 44.009,
"pdf": 0.0018502,
"cdf": 0.031034,
"ccdf": 0.96897
},
{
"x": 44.243,
"pdf": 0.0019295,
"cdf": 0.032963,
"ccdf": 0.96704
},
{
"x": 44.477,
"pdf": 0.0020097,
"cdf": 0.034973,
"ccdf": 0.96503
},
{
"x": 44.71,
"pdf": 0.0020906,
"cdf": 0.037063,
"ccdf": 0.96294
},
{
"x": 44.944,
"pdf": 0.0021722,
"cdf": 0.039236,
"ccdf": 0.96076
},
{
"x": 45.178,
"pdf": 0.0022541,
"cdf": 0.04149,
"ccdf": 0.95851
},
{
"x": 45.412,
"pdf": 0.0023363,
"cdf": 0.043826,
"ccdf": 0.95617
},
{
"x": 45.646,
"pdf": 0.0024185,
"cdf": 0.046244,
"ccdf": 0.95376
},
{
"x": 45.88,
"pdf": 0.0025008,
"cdf": 0.048745,
"ccdf": 0.95125
},
{
"x": 46.114,
"pdf": 0.0025829,
"cdf": 0.051328,
"ccdf": 0.94867
},
{
"x": 46.348,
"pdf": 0.0026645,
"cdf": 0.053993,
"ccdf": 0.94601
},
{
"x": 46.581,
"pdf": 0.0027456,
"cdf": 0.056738,
"ccdf": 0.94326
},
{
"x": 46.815,
"pdf": 0.002826,
"cdf": 0.059564,
"ccdf": 0.94044
},
{
"x": 47.049,
"pdf": 0.0029056,
"cdf": 0.06247,
"ccdf": 0.93753
},
{
"x": 47.283,
"pdf": 0.0029841,
"cdf": 0.065454,
"ccdf": 0.93455
},
{
"x": 47.517,
"pdf": 0.0030613,
"cdf": 0.068515,
"ccdf": 0.93148
},
{
"x": 47.751,
"pdf": 0.0031373,
"cdf": 0.071653,
"ccdf": 0.92835
},
{
"x": 47.985,
"pdf": 0.0032117,
"cdf": 0.074864,
"ccdf": 0.92514
},
{
"x": 48.218,
"pdf": 0.0032844,
"cdf": 0.078149,
"ccdf": 0.92185
},
{
"x": 48.452,
"pdf": 0.0033554,
"cdf": 0.081504,
"ccdf": 0.9185
},
{
"x": 48.686,
"pdf": 0.0034243,
"cdf": 0.084928,
"ccdf": 0.91507
},
{
"x": 48.92,
"pdf": 0.0034912,
"cdf": 0.08842,
"ccdf": 0.91158
},
{
"x": 49.154,
"pdf": 0.0035558,
"cdf": 0.091975,
"ccdf": 0.90802
},
{
"x": 49.388,
"pdf": 0.003618,
"cdf": 0.095593,
"ccdf": 0.90441
},
{
"x": 49.622,
"pdf": 0.0036778,
"cdf": 0.099271,
"ccdf": 0.90073
},
{
"x": 49.855,
"pdf": 0.003735,
"cdf": 0.10301,
"ccdf": 0.89699
},
{
"x": 50.089,
"pdf": 0.0037894,
"cdf": 0.1068,
"ccdf": 0.8932
},
{
"x": 50.323,
"pdf": 0.003841,
"cdf": 0.11064,
"ccdf": 0.88936
},
{
"x": 50.557,
"pdf": 0.0038897,
"cdf": 0.11453,
"ccdf": 0.88547
},
{
"x": 50.791,
"pdf": 0.0039355,
"cdf": 0.11846,
"ccdf": 0.88154
},
{
"x": 51.025,
"pdf": 0.0039783,
"cdf": 0.12244,
"ccdf": 0.87756
},
{
"x": 51.259,
"pdf": 0.0040178,
"cdf": 0.12646,
"ccdf": 0.87354
},
{
"x": 51.493,
"pdf": 0.0040542,
"cdf": 0.13051,
"ccdf": 0.86949
},
{
"x": 51.726,
"pdf": 0.0040874,
"cdf": 0.1346,
"ccdf": 0.8654
},
{
"x": 51.96,
"pdf": 0.0041173,
"cdf": 0.13872,
"ccdf": 0.86128
},
{
"x": 52.194,
"pdf": 0.004144,
"cdf": 0.14286,
"ccdf": 0.85714
},
{
"x": 52.428,
"pdf": 0.0041673,
"cdf": 0.14703,
"ccdf": 0.85297
},
{
"x": 52.662,
"pdf": 0.0041873,
"cdf": 0.15122,
"ccdf": 0.84878
},
{
"x": 52.896,
"pdf": 0.0042042,
"cdf": 0.15542,
"ccdf": 0.84458
},
{
"x": 53.13,
"pdf": 0.0042177,
"cdf": 0.15964,
"ccdf": 0.84036
},
{
"x": 53.363,
"pdf": 0.004228,
"cdf": 0.16387,
"ccdf": 0.83613
},
{
"x": 53.597,
"pdf": 0.004235,
"cdf": 0.1681,
"ccdf": 0.8319
},
{
"x": 53.831,
"pdf": 0.0042389,
"cdf": 0.17234,
"ccdf": 0.82766
},
{
"x": 54.065,
"pdf": 0.0042397,
"cdf": 0.17658,
"ccdf": 0.82342
},
{
"x": 54.299,
"pdf": 0.0042373,
"cdf": 0.18082,
"ccdf": 0.81918
},
{
"x": 54.533,
"pdf": 0.004232,
"cdf": 0.18505,
"ccdf": 0.81495
},
{
"x": 54.767,
"pdf": 0.0042238,
"cdf": 0.18927,
"ccdf": 0.81073
},
{
"x": 55,
"pdf": 0.0042128,
"cdf": 0.19348,
"ccdf": 0.80652
},
{
"x": 55.234,
"pdf": 0.004199,
"cdf": 0.19768,
"ccdf": 0.80232
},
{
"x": 55.468,
"pdf": 0.0041826,
"cdf": 0.20187,
"ccdf": 0.79813
},
{
"x": 55.702,
"pdf": 0.0041636,
"cdf": 0.20603,
"ccdf": 0.79397
},
{
"x": 55.936,
"pdf": 0.0041424,
"cdf": 0.21017,
"ccdf": 0.78983
},
{
"x": 56.17,
"pdf": 0.0041186,
"cdf": 0.21429,
"ccdf": 0.78571
},
{
"x": 56.404,
"pdf": 0.0040927,
"cdf": 0.21838,
"ccdf": 0.78162
},
{
"x": 56.638,
"pdf": 0.0040648,
"cdf": 0.22245,
"ccdf": 0.77755
},
{
"x": 56.871,
"pdf": 0.0040351,
"cdf": 0.22648,
"ccdf": 0.77352
},
{
"x": 57.105,
"pdf": 0.0040035,
"cdf": 0.23049,
"ccdf": 0.76951
},
{
"x": 57.339,
"pdf": 0.0039702,
"cdf": 0.23446,
"ccdf": 0.76554
},
{
"x": 57.573,
"pdf": 0.0039353,
"cdf": 0.23839,
"ccdf": 0.76161
},
{
"x": 57.807,
"pdf": 0.0038993,
"cdf": 0.24229,
"ccdf": 0.75771
},
{
"x": 58.041,
"pdf": 0.003862,
"cdf": 0.24615,
"ccdf": 0.75385
},
{
"x": 58.275,
"pdf": 0.0038235,
"cdf": 0.24998,
"ccdf": 0.75002
},
{
"x": 58.508,
"pdf": 0.0037841,
"cdf": 0.25376,
"ccdf": 0.74624
},
{
"x": 58.742,
"pdf": 0.003744,
"cdf": 0.25751,
"ccdf": 0.74249
},
{
"x": 58.976,
"pdf": 0.0037033,
"cdf": 0.26121,
"ccdf": 0.73879
},
{
"x": 59.21,
"pdf": 0.003662,
"cdf": 0.26487,
"ccdf": 0.73513
},
{
"x": 59.444,
"pdf": 0.0036205,
"cdf": 0.26849,
"ccdf": 0.73151
},
{
"x": 59.678,
"pdf": 0.0035787,
"cdf": 0.27207,
"ccdf": 0.72793
},
{
"x": 59.912,
"pdf": 0.0035371,
"cdf": 0.27561,
"ccdf": 0.72439
},
{
"x": 60.145,
"pdf": 0.0034956,
"cdf": 0.2791,
"ccdf": 0.7209
},
{
"x": 60.379,
"pdf": 0.0034543,
"cdf": 0.28256,
"ccdf": 0.71744
},
{
"x": 60.613,
"pdf": 0.0034135,
"cdf": 0.28597,
"ccdf": 0.71403
},
{
"x": 60.847,
"pdf": 0.0033736,
"cdf": 0.28934,
"ccdf": 0.71066
},
{
"x": 61.081,
"pdf": 0.0033343,
"cdf": 0.29268,
"ccdf": 0.70732
},
{
"x": 61.315,
"pdf": 0.003296,
"cdf": 0.29597,
"ccdf": 0.70403
},
{
"x": 61.549,
"pdf": 0.0032588,
"cdf": 0.29923,
"ccdf": 0.70077
},
{
"x": 61.783,
"pdf": 0.003223,
"cdf": 0.30246,
"ccdf": 0.69754
},
{
"x": 62.016,
"pdf": 0.0031886,
"cdf": 0.30564,
"ccdf": 0.69436
},
{
"x": 62.25,
"pdf": 0.0031558,
"cdf": 0.3088,
"ccdf": 0.6912
},
{
"x": 62.484,
"pdf": 0.0031248,
"cdf": 0.31193,
"ccdf": 0.68807
},
{
"x": 62.718,
"pdf": 0.0030958,
"cdf": 0.31502,
"ccdf": 0.68498
},
{
"x": 62.952,
"pdf": 0.0030691,
"cdf": 0.31809,
"ccdf": 0.68191
},
{
"x": 63.186,
"pdf": 0.0030444,
"cdf": 0.32113,
"ccdf": 0.67887
},
{
"x": 63.42,
"pdf": 0.0030222,
"cdf": 0.32416,
"ccdf": 0.67584
},
{
"x": 63.653,
"pdf": 0.0030026,
"cdf": 0.32716,
"ccdf": 0.67284
},
{
"x": 63.887,
"pdf": 0.002986,
"cdf": 0.33015,
"ccdf": 0.66985
},
{
"x": 64.121,
"pdf": 0.0029721,
"cdf": 0.33312,
"ccdf": 0.66688
},
{
"x": 64.355,
"pdf": 0.0029613,
"cdf": 0.33608,
"ccdf": 0.66392
},
{
"x": 64.589,
"pdf": 0.0029537,
"cdf": 0.33903,
"ccdf": 0.66097
},
{
"x": 64.823,
"pdf": 0.0029496,
"cdf": 0.34198,
"ccdf": 0.65802
},
{
"x": 65.057,
"pdf": 0.002949,
"cdf": 0.34493,
"ccdf": 0.65507
},
{
"x": 65.29,
"pdf": 0.0029519,
"cdf": 0.34788,
"ccdf": 0.65212
},
{
"x": 65.524,
"pdf": 0.0029586,
"cdf": 0.35084,
"ccdf": 0.64916
},
{
"x": 65.758,
"pdf": 0.0029694,
"cdf": 0.35381,
"ccdf": 0.64619
},
{
"x": 65.992,
"pdf": 0.0029841,
"cdf": 0.3568,
"ccdf": 0.6432
},
{
"x": 66.226,
"pdf": 0.0030029,
"cdf": 0.3598,
"ccdf": 0.6402
},
{
"x": 66.46,
"pdf": 0.0030259,
"cdf": 0.36282,
"ccdf": 0.63718
},
{
"x": 66.694,
"pdf": 0.0030533,
"cdf": 0.36588,
"ccdf": 0.63412
},
{
"x": 66.928,
"pdf": 0.0030852,
"cdf": 0.36896,
"ccdf": 0.63104
},
{
"x": 67.161,
"pdf": 0.0031214,
"cdf": 0.37208,
"ccdf": 0.62792
},
{
"x": 67.395,
"pdf": 0.0031621,
"cdf": 0.37525,
"ccdf": 0.62475
},
{
"x": 67.629,
"pdf": 0.0032074,
"cdf": 0.37845,
"ccdf": 0.62155
},
{
"x": 67.863,
"pdf": 0.0032574,
"cdf": 0.38171,
"ccdf": 0.61829
},
{
"x": 68.097,
"pdf": 0.0033119,
"cdf": 0.38502,
"ccdf": 0.61498
},
{
"x": 68.331,
"pdf": 0.0033709,
"cdf": 0.38839,
"ccdf": 0.61161
},
{
"x": 68.565,
"pdf": 0.0034346,
"cdf": 0.39183,
"ccdf": 0.60817
},
{
"x": 68.798,
"pdf": 0.0035028,
"cdf": 0.39533,
"ccdf": 0.60467
},
{
"x": 69.032,
"pdf": 0.0035754,
"cdf": 0.39891,
"ccdf": 0.60109
},
{
"x": 69.266,
"pdf": 0.0036524,
"cdf": 0.40256,
"ccdf": 0.59744
},
{
"x": 69.5,
"pdf": 0.0037338,
"cdf": 0.40629,
"ccdf": 0.59371
},
{
"x": 69.734,
"pdf": 0.0038194,
"cdf": 0.41011,
"ccdf": 0.58989
},
{
"x": 69.968,
"pdf": 0.0039092,
"cdf": 0.41402,
"ccdf": 0.58598
},
{
"x": 70.202,
"pdf": 0.0040028,
"cdf": 0.41802,
"ccdf": 0.58198
},
{
"x": 70.435,
"pdf": 0.0041001,
"cdf": 0.42212,
"ccdf": 0.57788
},
{
"x": 70.669,
"pdf": 0.0042011,
"cdf": 0.42633,
"ccdf": 0.57367
},
{
"x": 70.903,
"pdf": 0.0043056,
"cdf": 0.43063,
"ccdf": 0.56937
},
{
"x": 71.137,
"pdf": 0.0044132,
"cdf": 0.43504,
"ccdf": 0.56496
},
{
"x": 71.371,
"pdf": 0.0045237,
"cdf": 0.43957,
"ccdf": 0.56043
},
{
"x": 71.605,
"pdf": 0.004637,
"cdf": 0.4442,
"ccdf": 0.5558
},
{
"x": 71.839,
"pdf": 0.0047528,
"cdf": 0.44896,
"ccdf": 0.55104
},
{
"x": 72.072,
"pdf": 0.0048708,
"cdf": 0.45383,
"ccdf": 0.54617
},
{
"x": 72.306,
"pdf": 0.0049905,
"cdf": 0.45882,
"ccdf": 0.54118
},
{
"x": 72.54,
"pdf": 0.0051119,
"cdf": 0.46393,
"ccdf": 0.53607
},
{
"x": 72.774,
"pdf": 0.0052346,
"cdf": 0.46917,
"ccdf": 0.53083
},
{
"x": 73.008,
"pdf": 0.0053583,
"cdf": 0.47452,
"ccdf": 0.52548
},
{
"x": 73.242,
"pdf": 0.0054824,
"cdf": 0.48001,
"ccdf": 0.51999
},
{
"x": 73.476,
"pdf": 0.0056068,
"cdf": 0.48561,
"ccdf": 0.51439
},
{
"x": 73.71,
"pdf": 0.0057311,
"cdf": 0.49134,
"ccdf": 0.50866
},
{
"x": 73.943,
"pdf": 0.005855,
"cdf": 0.4972,
"ccdf": 0.5028
},
{
"x": 74.177,
"pdf": 0.005978,
"cdf": 0.50318,
"ccdf": 0.49682
},
{
"x": 74.411,
"pdf": 0.0060997,
"cdf": 0.50928,
"ccdf": 0.49072
},
{
"x": 74.645,
"pdf": 0.0062199,
"cdf": 0.5155,
"ccdf": 0.4845
},
{
"x": 74.879,
"pdf": 0.0063382,
"cdf": 0.52183,
"ccdf": 0.47817
},
{
"x": 75.113,
"pdf": 0.0064541,
"cdf": 0.52829,
"ccdf": 0.47171
},
{
"x": 75.347,
"pdf": 0.0065673,
"cdf": 0.53486,
"ccdf": 0.46514
},
{
"x": 75.58,
"pdf": 0.0066775,
"cdf": 0.54153,
"ccdf": 0.45847
},
{
"x": 75.814,
"pdf": 0.0067842,
"cdf": 0.54832,
"ccdf": 0.45168
},
{
"x": 76.048,
"pdf": 0.0068873,
"cdf": 0.5552,
"ccdf": 0.4448
},
{
"x": 76.282,
"pdf": 0.0069861,
"cdf": 0.56219,
"ccdf": 0.43781
},
{
"x": 76.516,
"pdf": 0.0070805,
"cdf": 0.56927,
"ccdf": 0.43073
},
{
"x": 76.75,
"pdf": 0.0071702,
"cdf": 0.57644,
"ccdf": 0.42356
},
{
"x": 76.984,
"pdf": 0.0072548,
"cdf": 0.5837,
"ccdf": 0.4163
},
{
"x": 77.217,
"pdf": 0.0073341,
"cdf": 0.59103,
"ccdf": 0.40897
},
{
"x": 77.451,
"pdf": 0.0074077,
"cdf": 0.59844,
"ccdf": 0.40156
},
{
"x": 77.685,
"pdf": 0.0074754,
"cdf": 0.60591,
"ccdf": 0.39409
},
{
"x": 77.919,
"pdf": 0.0075371,
"cdf": 0.61345,
"ccdf": 0.38655
},
{
"x": 78.153,
"pdf": 0.0075923,
"cdf": 0.62104,
"ccdf": 0.37896
},
{
"x": 78.387,
"pdf": 0.007641,
"cdf": 0.62868,
"ccdf": 0.37132
},
{
"x": 78.621,
"pdf": 0.0076831,
"cdf": 0.63637,
"ccdf": 0.36363
},
{
"x": 78.855,
"pdf": 0.0077182,
"cdf": 0.64409,
"ccdf": 0.35591
},
{
"x": 79.088,
"pdf": 0.0077464,
"cdf": 0.65183,
"ccdf": 0.34817
},
{
"x": 79.322,
"pdf": 0.0077673,
"cdf": 0.6596,
"ccdf": 0.3404
},
{
"x": 79.556,
"pdf": 0.0077812,
"cdf": 0.66738,
"ccdf": 0.33262
},
{
"x": 79.79,
"pdf": 0.0077879,
"cdf": 0.67517,
"ccdf": 0.32483
},
{
"x": 80.024,
"pdf": 0.0077872,
"cdf": 0.68296,
"ccdf": 0.31704
},
{
"x": 80.258,
"pdf": 0.0077792,
"cdf": 0.69073,
"ccdf": 0.30927
},
{
"x": 80.492,
"pdf": 0.007764,
"cdf": 0.6985,
"ccdf": 0.3015
},
{
"x": 80.725,
"pdf": 0.0077415,
"cdf": 0.70624,
"ccdf": 0.29376
},
{
"x": 80.959,
"pdf": 0.0077119,
"cdf": 0.71395,
"ccdf": 0.28605
},
{
"x": 81.193,
"pdf": 0.0076751,
"cdf": 0.72163,
"ccdf": 0.27837
},
{
"x": 81.427,
"pdf": 0.0076314,
"cdf": 0.72926,
"ccdf": 0.27074
},
{
"x": 81.661,
"pdf": 0.0075808,
"cdf": 0.73684,
"ccdf": 0.26316
},
{
"x": 81.895,
"pdf": 0.0075235,
"cdf": 0.74436,
"ccdf": 0.25564
},
{
"x": 82.129,
"pdf": 0.0074596,
"cdf": 0.75182,
"ccdf": 0.24818
},
{
"x": 82.362,
"pdf": 0.0073893,
"cdf": 0.75921,
"ccdf": 0.24079
},
{
"x": 82.596,
"pdf": 0.007313,
"cdf": 0.76652,
"ccdf": 0.23348
},
{
"x": 82.83,
"pdf": 0.0072307,
"cdf": 0.77376,
"ccdf": 0.22624
},
{
"x": 83.064,
"pdf": 0.0071428,
"cdf": 0.7809,
"ccdf": 0.2191
},
{
"x": 83.298,
"pdf": 0.0070493,
"cdf": 0.78795,
"ccdf": 0.21205
},
{
"x": 83.532,
"pdf": 0.0069508,
"cdf": 0.7949,
"ccdf": 0.2051
},
{
"x": 83.766,
"pdf": 0.0068474,
"cdf": 0.80175,
"ccdf": 0.19825
},
{
"x": 84,
"pdf": 0.0067394,
"cdf": 0.80849,
"ccdf": 0.19151
},
{
"x": 84.233,
"pdf": 0.0066271,
"cdf": 0.81511,
"ccdf": 0.18489
},
{
"x": 84.467,
"pdf": 0.0065108,
"cdf": 0.82162,
"ccdf": 0.17838
},
{
"x": 84.701,
"pdf": 0.0063909,
"cdf": 0.82801,
"ccdf": 0.17199
},
{
"x": 84.935,
"pdf": 0.0062676,
"cdf": 0.83428,
"ccdf": 0.16572
},
{
"x": 85.169,
"pdf": 0.0061413,
"cdf": 0.84042,
"ccdf": 0.15958
},
{
"x": 85.403,
"pdf": 0.0060122,
"cdf": 0.84644,
"ccdf": 0.15356
},
{
"x": 85.637,
"pdf": 0.0058808,
"cdf": 0.85232,
"ccdf": 0.14768
},
{
"x": 85.87,
"pdf": 0.0057472,
"cdf": 0.85806,
"ccdf": 0.14194
},
{
"x": 86.104,
"pdf": 0.0056119,
"cdf": 0.86368,
"ccdf": 0.13632
},
{
"x": 86.338,
"pdf": 0.005475,
"cdf": 0.86915,
"ccdf": 0.13085
},
{
"x": 86.572,
"pdf": 0.005337,
"cdf": 0.87449,
"ccdf": 0.12551
},
{
"x": 86.806,
"pdf": 0.0051981,
"cdf": 0.87969,
"ccdf": 0.12031
},
{
"x": 87.04,
"pdf": 0.0050586,
"cdf": 0.88474,
"ccdf": 0.11526
},
{
"x": 87.274,
"pdf": 0.0049187,
"cdf": 0.88966,
"ccdf": 0.11034
},
{
"x": 87.507,
"pdf": 0.0047788,
"cdf": 0.89444,
"ccdf": 0.10556
},
{
"x": 87.741,
"pdf": 0.0046391,
"cdf": 0.89908,
"ccdf": 0.10092
},
{
"x": 87.975,
"pdf": 0.0044998,
"cdf": 0.90358,
"ccdf": 0.09642
},
{
"x": 88.209,
"pdf": 0.0043611,
"cdf": 0.90794,
"ccdf": 0.092059
},
{
"x": 88.443,
"pdf": 0.0042233,
"cdf": 0.91216,
"ccdf": 0.087836
},
{
"x": 88.677,
"pdf": 0.0040867,
"cdf": 0.91625,
"ccdf": 0.083749
},
{
"x": 88.911,
"pdf": 0.0039513,
"cdf": 0.9202,
"ccdf": 0.079798
},
{
"x": 89.145,
"pdf": 0.0038173,
"cdf": 0.92402,
"ccdf": 0.07598
},
{
"x": 89.378,
"pdf": 0.003685,
"cdf": 0.9277,
"ccdf": 0.072295
},
{
"x": 89.612,
"pdf": 0.0035545,
"cdf": 0.93126,
"ccdf": 0.068741
},
{
"x": 89.846,
"pdf": 0.003426,
"cdf": 0.93469,
"ccdf": 0.065315
},
{
"x": 90.08,
"pdf": 0.0032995,
"cdf": 0.93798,
"ccdf": 0.062015
},
{
"x": 90.314,
"pdf": 0.0031751,
"cdf": 0.94116,
"ccdf": 0.05884
},
{
"x": 90.548,
"pdf": 0.0030531,
"cdf": 0.94421,
"ccdf": 0.055787
},
{
"x": 90.782,
"pdf": 0.0029334,
"cdf": 0.94715,
"ccdf": 0.052854
},
{
"x": 91.015,
"pdf": 0.0028163,
"cdf": 0.94996,
"ccdf": 0.050037
},
{
"x": 91.249,
"pdf": 0.0027016,
"cdf": 0.95266,
"ccdf": 0.047336
},
{
"x": 91.483,
"pdf": 0.0025896,
"cdf": 0.95525,
"ccdf": 0.044746
},
{
"x": 91.717,
"pdf": 0.0024804,
"cdf": 0.95773,
"ccdf": 0.042266
},
{
"x": 91.951,
"pdf": 0.0023738,
"cdf": 0.96011,
"ccdf": 0.039892
},
{
"x": 92.185,
"pdf": 0.00227,
"cdf": 0.96238,
"ccdf": 0.037622
},
{
"x": 92.419,
"pdf": 0.002169,
"cdf": 0.96455,
"ccdf": 0.035453
},
{
"x": 92.652,
"pdf": 0.0020708,
"cdf": 0.96662,
"ccdf": 0.033382
},
{
"x": 92.886,
"pdf": 0.0019754,
"cdf": 0.96859,
"ccdf": 0.031407
},
{
"x": 93.12,
"pdf": 0.0018828,
"cdf": 0.97048,
"ccdf": 0.029524
},
{
"x": 93.354,
"pdf": 0.001793,
"cdf": 0.97227,
"ccdf": 0.027731
},
{
"x": 93.588,
"pdf": 0.0017061,
"cdf": 0.97397,
"ccdf": 0.026025
},
{
"x": 93.822,
"pdf": 0.0016221,
"cdf": 0.9756,
"ccdf": 0.024403
},
{
"x": 94.056,
"pdf": 0.0015409,
"cdf": 0.97714,
"ccdf": 0.022862
},
{
"x": 94.29,
"pdf": 0.0014623,
"cdf": 0.9786,
"ccdf": 0.0214
},
{
"x": 94.523,
"pdf": 0.0013866,
"cdf": 0.97999,
"ccdf": 0.020013
},
{
"x": 94.757,
"pdf": 0.0013137,
"cdf": 0.9813,
"ccdf": 0.018699
},
{
"x": 94.991,
"pdf": 0.0012435,
"cdf": 0.98254,
"ccdf": 0.017456
},
{
"x": 95.225,
"pdf": 0.0011759,
"cdf": 0.98372,
"ccdf": 0.01628
},
{
"x": 95.459,
"pdf": 0.0011109,
"cdf": 0.98483,
"ccdf": 0.015169
},
{
"x": 95.693,
"pdf": 0.0010486,
"cdf": 0.98588,
"ccdf": 0.014121
},
{
"x": 95.927,
"pdf": 0.00098881,
"cdf": 0.98687,
"ccdf": 0.013132
},
{
"x": 96.16,
"pdf": 0.00093151,
"cdf": 0.9878,
"ccdf": 0.0122
},
{
"x": 96.394,
"pdf": 0.00087655,
"cdf": 0.98868,
"ccdf": 0.011324
},
{
"x": 96.628,
"pdf": 0.00082417,
"cdf": 0.9895,
"ccdf": 0.0105
},
{
"x": 96.862,
"pdf": 0.00077414,
"cdf": 0.99027,
"ccdf": 0.0097255
},
{
"x": 97.096,
"pdf": 0.00072639,
"cdf": 0.991,
"ccdf": 0.0089991
},
{
"x": 97.33,
"pdf": 0.00068063,
"cdf": 0.99168,
"ccdf": 0.0083185
},
{
"x": 97.564,
"pdf": 0.00063731,
"cdf": 0.99232,
"ccdf": 0.0076811
},
{
"x": 97.797,
"pdf": 0.00059613,
"cdf": 0.99291,
"ccdf": 0.007085
},
{
"x": 98.031,
"pdf": 0.00055699,
"cdf": 0.99347,
"ccdf": 0.006528
},
{
"x": 98.265,
"pdf": 0.00051964,
"cdf": 0.99399,
"ccdf": 0.0060084
},
{
"x": 98.499,
"pdf": 0.00048436,
"cdf": 0.99448,
"ccdf": 0.005524
},
{
"x": 98.733,
"pdf": 0.00045108,
"cdf": 0.99493,
"ccdf": 0.0050729
},
{
"x": 98.967,
"pdf": 0.00041959,
"cdf": 0.99535,
"ccdf": 0.0046533
},
{
"x": 99.201,
"pdf": 0.00038977,
"cdf": 0.99574,
"ccdf": 0.0042636
},
{
"x": 99.435,
"pdf": 0.00036159,
"cdf": 0.9961,
"ccdf": 0.003902
},
{
"x": 99.668,
"pdf": 0.00033518,
"cdf": 0.99643,
"ccdf": 0.0035668
},
{
"x": 99.902,
"pdf": 0.00031032,
"cdf": 0.99674,
"ccdf": 0.0032565
},
{
"x": 100.14,
"pdf": 0.00028694,
"cdf": 0.99703,
"ccdf": 0.0029696
},
{
"x": 100.37,
"pdf": 0.00026485,
"cdf": 0.9973,
"ccdf": 0.0027047
},
{
"x": 100.6,
"pdf": 0.00024431,
"cdf": 0.99754,
"ccdf": 0.0024604
},
{
"x": 100.84,
"pdf": 0.00022507,
"cdf": 0.99776,
"ccdf": 0.0022353
},
{
"x": 101.07,
"pdf": 0.00020709,
"cdf": 0.99797,
"ccdf": 0.0020282
},
{
"x": 101.31,
"pdf": 0.00019006,
"cdf": 0.99816,
"ccdf": 0.0018382
},
{
"x": 101.54,
"pdf": 0.00017438,
"cdf": 0.99834,
"ccdf": 0.0016638
},
{
"x": 101.77,
"pdf": 0.00015984,
"cdf": 0.9985,
"ccdf": 0.001504
},
{
"x": 102.01,
"pdf": 0.0001463,
"cdf": 0.99864,
"ccdf": 0.0013577
},
{
"x": 102.24,
"pdf": 0.00013359,
"cdf": 0.99878,
"ccdf": 0.0012241
},
{
"x": 102.47,
"pdf": 0.00012184,
"cdf": 0.9989,
"ccdf": 0.0011022
},
{
"x": 102.71,
"pdf": 0.00011109,
"cdf": 0.99901,
"ccdf": 0.00099114
},
{
"x": 102.94,
"pdf": 0.00010113,
"cdf": 0.99911,
"ccdf": 0.00089001
},
{
"x": 103.18,
"pdf": 9.1862e-05,
"cdf": 0.9992,
"ccdf": 0.00079815
},
{
"x": 103.41,
"pdf": 8.3182e-05,
"cdf": 0.99929,
"ccdf": 0.00071497
},
{
"x": 103.64,
"pdf": 7.5426e-05,
"cdf": 0.99936,
"ccdf": 0.00063954
},
{
"x": 103.88,
"pdf": 6.8292e-05,
"cdf": 0.99943,
"ccdf": 0.00057125
},
{
"x": 104.11,
"pdf": 6.174e-05,
"cdf": 0.99949,
"ccdf": 0.00050951
},
{
"x": 104.35,
"pdf": 5.5518e-05,
"cdf": 0.99955,
"ccdf": 0.00045399
},
{
"x": 104.58,
"pdf": 5.0055e-05,
"cdf": 0.9996,
"ccdf": 0.00040394
},
{
"x": 104.81,
"pdf": 4.506e-05,
"cdf": 0.99964,
"ccdf": 0.00035888
},
{
"x": 105.05,
"pdf": 4.05e-05,
"cdf": 0.99968,
"ccdf": 0.00031838
},
{
"x": 105.28,
"pdf": 3.6252e-05,
"cdf": 0.99972,
"ccdf": 0.00028212
},
{
"x": 105.51,
"pdf": 3.2451e-05,
"cdf": 0.99975,
"ccdf": 0.00024967
},
{
"x": 105.75,
"pdf": 2.9037e-05,
"cdf": 0.99978,
"ccdf": 0.00022064
},
{
"x": 105.98,
"pdf": 2.594e-05,
"cdf": 0.99981,
"ccdf": 0.0001947
},
{
"x": 106.22,
"pdf": 2.3079e-05,
"cdf": 0.99983,
"ccdf": 0.00017162
},
{
"x": 106.45,
"pdf": 2.0483e-05,
"cdf": 0.99985,
"ccdf": 0.00015113
},
{
"x": 106.68,
"pdf": 1.8216e-05,
"cdf": 0.99987,
"ccdf": 0.00013292
},
{
"x": 106.92,
"pdf": 1.6173e-05,
"cdf": 0.99988,
"ccdf": 0.00011674
},
{
"x": 107.15,
"pdf": 1.4328e-05,
"cdf": 0.9999,
"ccdf": 0.00010241
},
{
"x": 107.39,
"pdf": 1.2644e-05,
"cdf": 0.99991,
"ccdf": 8.9771e-05
},
{
"x": 107.62,
"pdf": 1.1171e-05,
"cdf": 0.99992,
"ccdf": 7.86e-05
},
{
"x": 107.85,
"pdf": 9.8538e-06,
"cdf": 0.99993,
"ccdf": 6.8746e-05
},
{
"x": 108.09,
"pdf": 8.6766e-06,
"cdf": 0.99994,
"ccdf": 6.0069e-05
},
{
"x": 108.32,
"pdf": 7.512e-06,
"cdf": 0.99995,
"ccdf": 5.2557e-05
},
{
"x": 108.56,
"pdf": 6.5836e-06,
"cdf": 0.99995,
"ccdf": 4.5974e-05
},
{
"x": 108.79,
"pdf": 5.7722e-06,
"cdf": 0.99996,
"ccdf": 4.0202e-05
},
{
"x": 109.02,
"pdf": 5.0518e-06,
"cdf": 0.99996,
"ccdf": 3.515e-05
},
{
"x": 109.26,
"pdf": 4.3737e-06,
"cdf": 0.99997,
"ccdf": 3.0776e-05
},
{
"x": 109.49,
"pdf": 3.7912e-06,
"cdf": 0.99997,
"ccdf": 2.6985e-05
},
{
"x": 109.72,
"pdf": 3.3025e-06,
"cdf": 0.99998,
"ccdf": 2.3682e-05
},
{
"x": 109.96,
"pdf": 2.8716e-06,
"cdf": 0.99998,
"ccdf": 2.0811e-05
},
{
"x": 110.19,
"pdf": 2.4483e-06,
"cdf": 0.99998,
"ccdf": 1.8363e-05
},
{
"x": 110.43,
"pdf": 2.0379e-06,
"cdf": 0.99998,
"ccdf": 1.6325e-05
},
{
"x": 110.66,
"pdf": 1.7665e-06,
"cdf": 0.99999,
"ccdf": 1.4558e-05
},
{
"x": 110.89,
"pdf": 1.5282e-06,
"cdf": 0.99999,
"ccdf": 1.303e-05
},
{
"x": 111.13,
"pdf": 1.318e-06,
"cdf": 0.99999,
"ccdf": 1.1712e-05
},
{
"x": 111.36,
"pdf": 1.1158e-06,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 111.6,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 111.83,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 112.06,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 112.3,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 112.53,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 112.76,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 113,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 113.23,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 113.47,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 113.7,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 113.93,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 114.17,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 114.4,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 114.64,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 114.87,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 115.1,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 115.34,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 115.57,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 115.8,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 116.04,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
},
{
"x": 116.27,
"pdf": 0,
"cdf": 0.99999,
"ccdf": 1e-06
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment