diff --git a/src/components/drawing/index.js b/src/components/drawing/index.js
index af780f8dd50..2396bad2931 100644
--- a/src/components/drawing/index.js
+++ b/src/components/drawing/index.js
@@ -11,6 +11,7 @@
var d3 = require('d3');
var isNumeric = require('fast-isnumeric');
+var tinycolor = require('tinycolor2');
var Registry = require('../../registry');
var Color = require('../color');
@@ -202,7 +203,7 @@ drawing.symbolNumber = function(v) {
return Math.floor(Math.max(v, 0));
};
-function singlePointStyle(d, sel, trace, markerScale, lineScale, marker, markerLine) {
+function singlePointStyle(d, sel, trace, markerScale, lineScale, marker, markerLine, gd) {
// only scatter & box plots get marker path and opacity
// bars, histograms don't
if(Registry.traceIs(trace, 'symbols')) {
@@ -237,6 +238,8 @@ function singlePointStyle(d, sel, trace, markerScale, lineScale, marker, markerL
});
}
+ var perPointGradient = false;
+
// 'so' is suspected outliers, for box plots
var fillColor,
lineColor,
@@ -256,8 +259,12 @@ function singlePointStyle(d, sel, trace, markerScale, lineScale, marker, markerL
else if(Array.isArray(markerLine.color)) lineColor = Color.defaultLine;
else lineColor = markerLine.color;
+ if(Array.isArray(marker.color)) {
+ fillColor = Color.defaultLine;
+ perPointGradient = true;
+ }
+
if('mc' in d) fillColor = d.mcc = markerScale(d.mc);
- else if(Array.isArray(marker.color)) fillColor = Color.defaultLine;
else fillColor = marker.color || 'rgba(0,0,0,0)';
}
@@ -271,24 +278,93 @@ function singlePointStyle(d, sel, trace, markerScale, lineScale, marker, markerL
});
}
else {
- sel.style('stroke-width', lineWidth + 'px')
- .call(Color.fill, fillColor);
+ sel.style('stroke-width', lineWidth + 'px');
+
+ var markerGradient = marker.gradient;
+
+ var gradientType = d.mgt;
+ if(gradientType) perPointGradient = true;
+ else gradientType = markerGradient && markerGradient.type;
+
+ if(gradientType && gradientType !== 'none') {
+ var gradientColor = d.mgc;
+ if(gradientColor) perPointGradient = true;
+ else gradientColor = markerGradient.color;
+
+ var gradientID = 'g' + gd._fullLayout._uid + '-' + trace.uid;
+ if(perPointGradient) gradientID += '-' + d.i;
+
+ sel.call(drawing.gradient, gd, gradientID, gradientType, fillColor, gradientColor);
+ }
+ else {
+ sel.call(Color.fill, fillColor);
+ }
+
if(lineWidth) {
sel.call(Color.stroke, lineColor);
}
}
}
-drawing.singlePointStyle = function(d, sel, trace) {
- var marker = trace.marker,
- markerLine = marker.line;
+var HORZGRADIENT = {x1: 1, x2: 0, y1: 0, y2: 0};
+var VERTGRADIENT = {x1: 0, x2: 0, y1: 1, y2: 0};
- // allow array marker and marker line colors to be
- // scaled by given max and min to colorscales
- var markerScale = drawing.tryColorscale(marker, ''),
- lineScale = drawing.tryColorscale(marker, 'line');
+drawing.gradient = function(sel, gd, gradientID, type, color1, color2) {
+ var gradient = gd._fullLayout._defs.select('.gradients')
+ .selectAll('#' + gradientID)
+ .data([type + color1 + color2], Lib.identity);
+
+ gradient.exit().remove();
+
+ gradient.enter()
+ .append(type === 'radial' ? 'radialGradient' : 'linearGradient')
+ .each(function() {
+ var el = d3.select(this);
+ if(type === 'horizontal') el.attr(HORZGRADIENT);
+ else if(type === 'vertical') el.attr(VERTGRADIENT);
+
+ el.attr('id', gradientID);
+
+ var tc1 = tinycolor(color1);
+ var tc2 = tinycolor(color2);
+
+ el.append('stop').attr({
+ offset: '0%',
+ 'stop-color': Color.tinyRGB(tc2),
+ 'stop-opacity': tc2.getAlpha()
+ });
+
+ el.append('stop').attr({
+ offset: '100%',
+ 'stop-color': Color.tinyRGB(tc1),
+ 'stop-opacity': tc1.getAlpha()
+ });
+ });
+
+ sel.style({
+ fill: 'url(#' + gradientID + ')',
+ 'fill-opacity': null
+ });
+};
+
+/*
+ * Make the gradients container and clear out any previous gradients.
+ * We never collect all the gradients we need in one place,
+ * so we can't ever remove gradients that have stopped being useful,
+ * except all at once before a full redraw.
+ * The upside of this is arbitrary points can share gradient defs
+ */
+drawing.initGradients = function(gd) {
+ var gradientsGroup = gd._fullLayout._defs.selectAll('.gradients').data([0]);
+ gradientsGroup.enter().append('g').classed('gradients', true);
+
+ gradientsGroup.selectAll('linearGradient,radialGradient').remove();
+};
+
+drawing.singlePointStyle = function(d, sel, trace, markerScale, lineScale, gd) {
+ var marker = trace.marker;
- singlePointStyle(d, sel, trace, markerScale, lineScale, marker, markerLine);
+ singlePointStyle(d, sel, trace, markerScale, lineScale, marker, marker.line, gd);
};
@@ -298,11 +374,12 @@ drawing.pointStyle = function(s, trace) {
// allow array marker and marker line colors to be
// scaled by given max and min to colorscales
var marker = trace.marker;
- var markerScale = drawing.tryColorscale(marker, ''),
- lineScale = drawing.tryColorscale(marker, 'line');
+ var markerScale = drawing.tryColorscale(marker, '');
+ var lineScale = drawing.tryColorscale(marker, 'line');
+ var gd = Lib.getPlotDiv(s.node());
s.each(function(d) {
- drawing.singlePointStyle(d, d3.select(this), trace, markerScale, lineScale);
+ drawing.singlePointStyle(d, d3.select(this), trace, markerScale, lineScale, gd);
});
};
diff --git a/src/plot_api/plot_api.js b/src/plot_api/plot_api.js
index 0c615abdc24..cfc7fbfaa51 100644
--- a/src/plot_api/plot_api.js
+++ b/src/plot_api/plot_api.js
@@ -153,6 +153,9 @@ Plotly.plot = function(gd, data, layout, config) {
makePlotFramework(gd);
}
+ // clear gradient defs on each .plot call, because we know we'll loop through all traces
+ Drawing.initGradients(gd);
+
// save initial show spikes once per graph
if(graphWasEmpty) Plotly.Axes.saveShowSpikeInitial(gd);
diff --git a/src/traces/scatter/arrays_to_calcdata.js b/src/traces/scatter/arrays_to_calcdata.js
index 378fc7613f0..e6aed76851e 100644
--- a/src/traces/scatter/arrays_to_calcdata.js
+++ b/src/traces/scatter/arrays_to_calcdata.js
@@ -15,6 +15,9 @@ var Lib = require('../../lib');
// arrayOk attributes, merge them into calcdata array
module.exports = function arraysToCalcdata(cd, trace) {
+ // so each point knows which index it originally came from
+ for(var i = 0; i < cd.length; i++) cd[i].i = i;
+
Lib.mergeArray(trace.text, cd, 'tx');
Lib.mergeArray(trace.hovertext, cd, 'htx');
Lib.mergeArray(trace.customdata, cd, 'data');
@@ -37,5 +40,11 @@ module.exports = function arraysToCalcdata(cd, trace) {
Lib.mergeArray(markerLine.color, cd, 'mlc');
Lib.mergeArray(markerLine.width, cd, 'mlw');
}
+
+ var markerGradient = marker.gradient;
+ if(markerGradient && markerGradient.type !== 'none') {
+ Lib.mergeArray(markerGradient.type, cd, 'mgt');
+ Lib.mergeArray(markerGradient.color, cd, 'mgc');
+ }
}
};
diff --git a/src/traces/scatter/attributes.js b/src/traces/scatter/attributes.js
index d1bc72ba14c..4d88511c280 100644
--- a/src/traces/scatter/attributes.js
+++ b/src/traces/scatter/attributes.js
@@ -311,7 +311,29 @@ module.exports = {
}
},
colorAttributes('marker.line')
- )
+ ),
+ gradient: {
+ type: {
+ valType: 'enumerated',
+ values: ['radial', 'horizontal', 'vertical', 'none'],
+ arrayOk: true,
+ dflt: 'none',
+ role: 'style',
+ description: [
+ 'Sets the type of gradient used to fill the markers'
+ ].join(' ')
+ },
+ color: {
+ valType: 'color',
+ arrayOk: true,
+ role: 'style',
+ description: [
+ 'Sets the final color of the gradient fill:',
+ 'the center color for radial, the right for horizontal,',
+ 'or the bottom for vertical.',
+ ].join(' ')
+ }
+ }
},
colorAttributes('marker')
),
diff --git a/src/traces/scatter/defaults.js b/src/traces/scatter/defaults.js
index c6c97850b98..5d0b9faf7c7 100644
--- a/src/traces/scatter/defaults.js
+++ b/src/traces/scatter/defaults.js
@@ -50,7 +50,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
}
if(subTypes.hasMarkers(traceOut)) {
- handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce);
+ handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce, {gradient: true});
}
if(subTypes.hasText(traceOut)) {
diff --git a/src/traces/scatter/marker_defaults.js b/src/traces/scatter/marker_defaults.js
index 65560aecb75..caf679bd35f 100644
--- a/src/traces/scatter/marker_defaults.js
+++ b/src/traces/scatter/marker_defaults.js
@@ -15,12 +15,18 @@ var colorscaleDefaults = require('../../components/colorscale/defaults');
var subTypes = require('./subtypes');
-
+/*
+ * opts: object of flags to control features not all marker users support
+ * noLine: caller does not support marker lines
+ * gradient: caller supports gradients
+ */
module.exports = function markerDefaults(traceIn, traceOut, defaultColor, layout, coerce, opts) {
var isBubble = subTypes.isBubble(traceIn),
lineColor = (traceIn.line || {}).color,
defaultMLC;
+ opts = opts || {};
+
// marker.color inherit from line.color (even if line.color is an array)
if(lineColor) defaultColor = lineColor;
@@ -33,7 +39,7 @@ module.exports = function markerDefaults(traceIn, traceOut, defaultColor, layout
colorscaleDefaults(traceIn, traceOut, layout, coerce, {prefix: 'marker.', cLetter: 'c'});
}
- if(!(opts || {}).noLine) {
+ if(!opts.noLine) {
// if there's a line with a different color than the marker, use
// that line color as the default marker line color
// (except when it's an array)
@@ -57,4 +63,11 @@ module.exports = function markerDefaults(traceIn, traceOut, defaultColor, layout
coerce('marker.sizemin');
coerce('marker.sizemode');
}
+
+ if(opts.gradient) {
+ var gradientType = coerce('marker.gradient.type');
+ if(gradientType !== 'none') {
+ coerce('marker.gradient.color');
+ }
+ }
};
diff --git a/src/traces/scatter/plot.js b/src/traces/scatter/plot.js
index 57930c6e613..e773181e68a 100644
--- a/src/traces/scatter/plot.js
+++ b/src/traces/scatter/plot.js
@@ -427,11 +427,14 @@ function plotOne(gd, idx, plotinfo, cdscatter, cdscatterAll, element, transition
.style('opacity', 1);
}
+ var markerScale = showMarkers && Drawing.tryColorscale(trace.marker, '');
+ var lineScale = showMarkers && Drawing.tryColorscale(trace.marker, 'line');
+
join.each(function(d) {
var el = d3.select(this);
var sel = transition(el);
Drawing.translatePoint(d, sel, xa, ya);
- Drawing.singlePointStyle(d, sel, trace);
+ Drawing.singlePointStyle(d, sel, trace, markerScale, lineScale, gd);
if(trace.customdata) {
el.classed('plotly-customdata', d.data !== null && d.data !== undefined);
diff --git a/src/traces/scattercarpet/attributes.js b/src/traces/scattercarpet/attributes.js
index 6ccd38e7af2..a3cc8c7f348 100644
--- a/src/traces/scattercarpet/attributes.js
+++ b/src/traces/scattercarpet/attributes.js
@@ -107,7 +107,8 @@ module.exports = {
line: extendFlat({},
{width: scatterMarkerLineAttrs.width},
colorAttributes('marker'.line)
- )
+ ),
+ gradient: scatterMarkerAttrs.gradient
}, colorAttributes('marker'), {
showscale: scatterMarkerAttrs.showscale,
colorbar: colorbarAttrs
diff --git a/src/traces/scattercarpet/defaults.js b/src/traces/scattercarpet/defaults.js
index ed1dfb6c51e..88b70930c66 100644
--- a/src/traces/scattercarpet/defaults.js
+++ b/src/traces/scattercarpet/defaults.js
@@ -62,7 +62,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
}
if(subTypes.hasMarkers(traceOut)) {
- handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce);
+ handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce, {gradient: true});
}
if(subTypes.hasText(traceOut)) {
diff --git a/src/traces/scattercarpet/plot.js b/src/traces/scattercarpet/plot.js
index ebe356cf28e..21b0421ab0b 100644
--- a/src/traces/scattercarpet/plot.js
+++ b/src/traces/scattercarpet/plot.js
@@ -24,7 +24,7 @@ module.exports = function plot(gd, plotinfoproxy, data) {
plot: plotinfoproxy.plot
};
- scatterPlot(plotinfo.graphDiv, plotinfo, data);
+ scatterPlot(gd, plotinfo, data);
for(i = 0; i < data.length; i++) {
trace = data[i][0].trace;
diff --git a/src/traces/scattergeo/attributes.js b/src/traces/scattergeo/attributes.js
index a341110e24f..c8e65869fe3 100644
--- a/src/traces/scattergeo/attributes.js
+++ b/src/traces/scattergeo/attributes.js
@@ -96,7 +96,8 @@ module.exports = {
line: extendFlat({},
{width: scatterMarkerLineAttrs.width},
colorAttributes('marker.line')
- )
+ ),
+ gradient: scatterMarkerAttrs.gradient
},
colorAttributes('marker')
),
diff --git a/src/traces/scattergeo/defaults.js b/src/traces/scattergeo/defaults.js
index 61551c3f66f..54b90bbedad 100644
--- a/src/traces/scattergeo/defaults.js
+++ b/src/traces/scattergeo/defaults.js
@@ -41,7 +41,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
}
if(subTypes.hasMarkers(traceOut)) {
- handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce);
+ handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce, {gradient: true});
}
if(subTypes.hasText(traceOut)) {
diff --git a/src/traces/scatterternary/attributes.js b/src/traces/scatterternary/attributes.js
index 4e8c36c48a8..c6d3b709760 100644
--- a/src/traces/scatterternary/attributes.js
+++ b/src/traces/scatterternary/attributes.js
@@ -121,7 +121,8 @@ module.exports = {
line: extendFlat({},
{width: scatterMarkerLineAttrs.width},
colorAttributes('marker'.line)
- )
+ ),
+ gradient: scatterMarkerAttrs.gradient
}, colorAttributes('marker'), {
showscale: scatterMarkerAttrs.showscale,
colorbar: colorbarAttrs
diff --git a/src/traces/scatterternary/defaults.js b/src/traces/scatterternary/defaults.js
index 7e7cadc8d44..1fd088b06d7 100644
--- a/src/traces/scatterternary/defaults.js
+++ b/src/traces/scatterternary/defaults.js
@@ -75,7 +75,7 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
}
if(subTypes.hasMarkers(traceOut)) {
- handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce);
+ handleMarkerDefaults(traceIn, traceOut, defaultColor, layout, coerce, {gradient: true});
}
if(subTypes.hasText(traceOut)) {
diff --git a/test/image/baselines/bubblechart.png b/test/image/baselines/bubblechart.png
index 8b163685f7f..0a843db7590 100644
Binary files a/test/image/baselines/bubblechart.png and b/test/image/baselines/bubblechart.png differ
diff --git a/test/image/baselines/geo_bg-color.png b/test/image/baselines/geo_bg-color.png
index cebc25880d3..8421cd959f1 100644
Binary files a/test/image/baselines/geo_bg-color.png and b/test/image/baselines/geo_bg-color.png differ
diff --git a/test/image/baselines/scattercarpet.png b/test/image/baselines/scattercarpet.png
index b8d5a4aec3c..7b277073dfa 100644
Binary files a/test/image/baselines/scattercarpet.png and b/test/image/baselines/scattercarpet.png differ
diff --git a/test/image/baselines/ternary_multiple.png b/test/image/baselines/ternary_multiple.png
index fd20bdf14c6..d5c38127d0f 100644
Binary files a/test/image/baselines/ternary_multiple.png and b/test/image/baselines/ternary_multiple.png differ
diff --git a/test/image/mocks/autorange-tozero-rangemode.json b/test/image/mocks/autorange-tozero-rangemode.json
index d992032b170..d41998f3c4c 100644
--- a/test/image/mocks/autorange-tozero-rangemode.json
+++ b/test/image/mocks/autorange-tozero-rangemode.json
@@ -36,8 +36,7 @@
"name": "Revenue",
"xaxis": "x",
"yaxis": "y",
- "type": "bar",
- "uid": "33011d"
+ "type": "bar"
},
{
"x": [
@@ -76,8 +75,7 @@
"name": "Take Rate",
"xaxis": "x",
"yaxis": "y2",
- "type": "scatter",
- "uid": "31ba98"
+ "type": "scatter"
}
],
"layout": {
diff --git a/test/image/mocks/axes-autotype-empty.json b/test/image/mocks/axes-autotype-empty.json
index 4ed75a4f6ca..ca29053476a 100644
--- a/test/image/mocks/axes-autotype-empty.json
+++ b/test/image/mocks/axes-autotype-empty.json
@@ -4,50 +4,43 @@
"y": [],
"x": [],
"type": "bar",
- "name": "Automotive",
- "uid": "54cc31"
+ "name": "Automotive"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "Collectibles",
- "uid": "c50614"
+ "name": "Collectibles"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "Health",
- "uid": "e902bc"
+ "name": "Health"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "HomeImprovement",
- "uid": "2a80ac"
+ "name": "HomeImprovement"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "Outdoors",
- "uid": "074cb0"
+ "name": "Outdoors"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "Pets",
- "uid": "085a56"
+ "name": "Pets"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "Powersports",
- "uid": "6f0a0f"
+ "name": "Powersports"
},
{
"y": [
@@ -79,15 +72,13 @@
"2014-12-01"
],
"type": "bar",
- "name": "Sports",
- "uid": "d22591"
+ "name": "Sports"
},
{
"y": [],
"x": [],
"type": "bar",
- "name": "Technology",
- "uid": "a41218"
+ "name": "Technology"
},
{
"y": [
@@ -107,8 +98,7 @@
"2014-12-01"
],
"type": "bar",
- "name": "Unknown",
- "uid": "54969b"
+ "name": "Unknown"
}
],
"layout": {
diff --git a/test/image/mocks/axes_category_categoryarray.json b/test/image/mocks/axes_category_categoryarray.json
index 3d96a0d53f5..d9045f17020 100644
--- a/test/image/mocks/axes_category_categoryarray.json
+++ b/test/image/mocks/axes_category_categoryarray.json
@@ -15,8 +15,7 @@
4,
5
],
- "connectgaps": false,
- "uid": "8ac13a"
+ "connectgaps": false
}
],
"layout": {
diff --git a/test/image/mocks/axes_category_descending.json b/test/image/mocks/axes_category_descending.json
index 1c44a4ff1be..01f8b0100f6 100644
--- a/test/image/mocks/axes_category_descending.json
+++ b/test/image/mocks/axes_category_descending.json
@@ -15,8 +15,7 @@
4,
5
],
- "connectgaps": false,
- "uid": "8ac13a"
+ "connectgaps": false
}
],
"layout": {
diff --git a/test/image/mocks/axes_category_descending_with_gaps.json b/test/image/mocks/axes_category_descending_with_gaps.json
index 11afaf2d72e..68634f594dd 100644
--- a/test/image/mocks/axes_category_descending_with_gaps.json
+++ b/test/image/mocks/axes_category_descending_with_gaps.json
@@ -15,8 +15,7 @@
null,
5
],
- "connectgaps": false,
- "uid": "8ac13a"
+ "connectgaps": false
}
],
"layout": {
diff --git a/test/image/mocks/axes_category_null.json b/test/image/mocks/axes_category_null.json
index 1dff64f4b46..8066f19fee6 100644
--- a/test/image/mocks/axes_category_null.json
+++ b/test/image/mocks/axes_category_null.json
@@ -15,8 +15,7 @@
4,
5
],
- "connectgaps": false,
- "uid": "8ac13a"
+ "connectgaps": false
}
],
"layout": {
diff --git a/test/image/mocks/bar-marker-line-colorscales.json b/test/image/mocks/bar-marker-line-colorscales.json
index 0f771431f62..e16ae09910c 100644
--- a/test/image/mocks/bar-marker-line-colorscales.json
+++ b/test/image/mocks/bar-marker-line-colorscales.json
@@ -141,8 +141,7 @@
38,
39
],
- "type": "bar",
- "uid": "7fef80"
+ "type": "bar"
}
],
"layout": {
diff --git a/test/image/mocks/bar_group_percent.json b/test/image/mocks/bar_group_percent.json
index 358a32744fb..86199f44fbc 100644
--- a/test/image/mocks/bar_group_percent.json
+++ b/test/image/mocks/bar_group_percent.json
@@ -1,9 +1,9 @@
{
"data":[
- {"name":"Col1","y":["1","2","3","4","5"],"x":["1","2","3","4","5"],"type":"bar","uid":"aeb9ea"},
- {"name":"Col2","y":["2","3","4","3","2"],"x":["1","2","3","4","5"],"type":"bar","uid":"2f201d"},
- {"name":"Col3","y":["5","4","3","2","1"],"x":["1","2","3","4","5"],"type":"bar","uid":"aef0bf"},
- {"name":"Col4","y":["-1","0","1","0","-1"],"x":["1","2","3","4","5"],"type":"bar","uid":"330b4d"}
+ {"name":"Col1","y":["1","2","3","4","5"],"x":["1","2","3","4","5"],"type":"bar"},
+ {"name":"Col2","y":["2","3","4","3","2"],"x":["1","2","3","4","5"],"type":"bar"},
+ {"name":"Col3","y":["5","4","3","2","1"],"x":["1","2","3","4","5"],"type":"bar"},
+ {"name":"Col4","y":["-1","0","1","0","-1"],"x":["1","2","3","4","5"],"type":"bar"}
],
"layout":{
"height":400,
diff --git a/test/image/mocks/bar_stackto1.json b/test/image/mocks/bar_stackto1.json
index 14ce3c59f73..7daf11c33d6 100644
--- a/test/image/mocks/bar_stackto1.json
+++ b/test/image/mocks/bar_stackto1.json
@@ -1,8 +1,8 @@
{
"data":[
- {"name":"Col1","y":["1","2","3","4","5"],"x":["1","2","3","4","5"],"type":"bar","uid":"f8cb0a"},
- {"name":"Col2","y":["2","3","4","3","2"],"x":["1","2","3","4","5"],"type":"bar","uid":"bb3568"},
- {"name":"Col3","y":["5","4","3","2","1"],"x":["1","2","3","4","5"],"type":"bar","uid":"2de3f3"}
+ {"name":"Col1","y":["1","2","3","4","5"],"x":["1","2","3","4","5"],"type":"bar"},
+ {"name":"Col2","y":["2","3","4","3","2"],"x":["1","2","3","4","5"],"type":"bar"},
+ {"name":"Col3","y":["5","4","3","2","1"],"x":["1","2","3","4","5"],"type":"bar"}
],
"layout":{
"height":400,
diff --git a/test/image/mocks/boxplots_outliercolordflt.json b/test/image/mocks/boxplots_outliercolordflt.json
index 3e9121c8e2b..b9171ba12ac 100644
--- a/test/image/mocks/boxplots_outliercolordflt.json
+++ b/test/image/mocks/boxplots_outliercolordflt.json
@@ -32,8 +32,7 @@
"type": "box",
"marker": {
"outliercolor": "green"
- },
- "uid": "511258"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/boxplots_undefined_vals.json b/test/image/mocks/boxplots_undefined_vals.json
index f6723cb7fa4..67100e406aa 100644
--- a/test/image/mocks/boxplots_undefined_vals.json
+++ b/test/image/mocks/boxplots_undefined_vals.json
@@ -75,8 +75,7 @@
"color":"#1c9099"
},
"type":"box",
- "name":"Homeworks",
- "uid":"192c31"
+ "name":"Homeworks"
},
{
"y":[
@@ -153,8 +152,7 @@
"color":"#1c9099"
},
"type":"box",
- "name":"Midterm Exam",
- "uid":"14eb49"
+ "name":"Midterm Exam"
},
{
"y":[
@@ -231,8 +229,7 @@
"color":"#1c9099"
},
"type":"box",
- "name":"Final Exam",
- "uid":"5ca80c"
+ "name":"Final Exam"
},
{
"y":[
@@ -309,8 +306,7 @@
"color":"#1c9099"
},
"type":"box",
- "name":"Course Grade",
- "uid":"bd1c02"
+ "name":"Course Grade"
}
],
"layout":{
diff --git a/test/image/mocks/bubblechart.json b/test/image/mocks/bubblechart.json
index 0fd01382a39..983d4b5e04b 100644
--- a/test/image/mocks/bubblechart.json
+++ b/test/image/mocks/bubblechart.json
@@ -32,7 +32,11 @@
0.3,
0.2,
0.1
- ]
+ ],
+ "gradient":{
+ "type": "radial",
+ "color": "#fff"
+ }
},
"type":"scatter"
},
@@ -58,7 +62,11 @@
"square",
"diamond",
"cross"
- ]
+ ],
+ "gradient": {
+ "type": "horizontal",
+ "color": ["rgba(31, 119, 180, 0)", "rgba(0, 0, 0, 0)", "red", "#000"]
+ }
},
"type":"scatter"
},
@@ -91,6 +99,10 @@
6,
2
]
+ },
+ "gradient": {
+ "type": ["vertical", "horizontal", "none", "radial"],
+ "color": ["#ff0", "#0ff", "", "#f0f"]
}
},
"type":"scatter"
diff --git a/test/image/mocks/cheater.json b/test/image/mocks/cheater.json
index 60854f35495..9c07f7aa555 100644
--- a/test/image/mocks/cheater.json
+++ b/test/image/mocks/cheater.json
@@ -90,7 +90,6 @@
[ 0, "blue" ],
[ 1, "blue" ]
],
- "uid":"977b5b",
"a":[
0.1, 0.1, 0.1, 0.1,
0.3, 0.3, 0.3, 0.3,
diff --git a/test/image/mocks/cheater_smooth.json b/test/image/mocks/cheater_smooth.json
index 4bc55cd7b64..99d984593a9 100644
--- a/test/image/mocks/cheater_smooth.json
+++ b/test/image/mocks/cheater_smooth.json
@@ -95,7 +95,6 @@
[ 0, "blue" ],
[ 1, "blue" ]
],
- "uid":"977b5b",
"a":[
0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.2, 0.2, 0.2, 0.2, 0.2, 0.2,
diff --git a/test/image/mocks/colorscale_opacity.json b/test/image/mocks/colorscale_opacity.json
index 29c4b93b9db..50a07977838 100644
--- a/test/image/mocks/colorscale_opacity.json
+++ b/test/image/mocks/colorscale_opacity.json
@@ -545,8 +545,7 @@
],
"cmin": 0,
"cmax": 3
- },
- "uid": "07bab4"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/contour_match_edges.json b/test/image/mocks/contour_match_edges.json
index 70a2e239ad7..101f2e27345 100644
--- a/test/image/mocks/contour_match_edges.json
+++ b/test/image/mocks/contour_match_edges.json
@@ -10,7 +10,6 @@
}
},
- "uid":"99e142",
"showlegend":true,
"ytype":"array",
"contours":{
diff --git a/test/image/mocks/contour_transposed-irregular.json b/test/image/mocks/contour_transposed-irregular.json
index 141f5087eb7..12cb9f7fb58 100644
--- a/test/image/mocks/contour_transposed-irregular.json
+++ b/test/image/mocks/contour_transposed-irregular.json
@@ -100,7 +100,6 @@
"x": 1,
"y": 0.5
},
- "uid": "22fe55",
"zmin": 4.564835,
"zmax": 5.548783,
"contours": {
@@ -215,7 +214,6 @@
"x": 1.1,
"y": 0.5
},
- "uid": "a0bc92",
"zmin": 4.564835,
"zmax": 5.548783,
"contours": {
diff --git a/test/image/mocks/contour_valid_ses.json b/test/image/mocks/contour_valid_ses.json
index 0f4b97197aa..1c1cb9a2e40 100644
--- a/test/image/mocks/contour_valid_ses.json
+++ b/test/image/mocks/contour_valid_ses.json
@@ -45,7 +45,6 @@
"end": 10,
"size": 1
},
- "uid": "ad5624",
"zmin": 0,
"zmax": 20
}
diff --git a/test/image/mocks/error_bar_layers.json b/test/image/mocks/error_bar_layers.json
index 99a686f0d21..6f84934e193 100644
--- a/test/image/mocks/error_bar_layers.json
+++ b/test/image/mocks/error_bar_layers.json
@@ -17,8 +17,7 @@
],
"mode": "lines",
"fill": "tozerox",
- "fillcolor": "black",
- "uid": "116a4f"
+ "fillcolor": "black"
},
{
"x": [
@@ -40,8 +39,7 @@
"marker": {
"size": 20,
"color": "red"
- },
- "uid": "0f7846"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/fonts.json b/test/image/mocks/fonts.json
index 5472d51799b..a32489a347d 100644
--- a/test/image/mocks/fonts.json
+++ b/test/image/mocks/fonts.json
@@ -1,9 +1,6 @@
{
"data":[
{
- "uid":"5a2c5a",
- "ysrc":"ben-1:839:d2faa7",
- "xsrc":"ben-1:839:eb05dd",
"mode":"markers",
"y":[
"1",
diff --git a/test/image/mocks/geo_africa-insets.json b/test/image/mocks/geo_africa-insets.json
index e8339c9ece7..047b9e1ef39 100644
--- a/test/image/mocks/geo_africa-insets.json
+++ b/test/image/mocks/geo_africa-insets.json
@@ -43,8 +43,7 @@
38.8
]
},
- "type": "scattergeo",
- "uid": "918e2e"
+ "type": "scattergeo"
},
{
"name": "Aug",
@@ -87,8 +86,7 @@
24.32
]
},
- "type": "scattergeo",
- "uid": "36b913"
+ "type": "scattergeo"
},
{
"name": "July",
@@ -127,8 +125,7 @@
10.66
]
},
- "type": "scattergeo",
- "uid": "d13611"
+ "type": "scattergeo"
},
{
"name": "June",
@@ -167,8 +164,7 @@
4.78
]
},
- "type": "scattergeo",
- "uid": "899c06"
+ "type": "scattergeo"
},
{
"autocolorscale": false,
@@ -204,7 +200,6 @@
1940
],
"locationmode": "country names",
- "uid": "5c567c",
"zmin": 3,
"zmax": 3362
},
@@ -221,8 +216,7 @@
"lat": [
7.1881
],
- "type": "scattergeo",
- "uid": "5a4310"
+ "type": "scattergeo"
}
],
"layout": {
diff --git a/test/image/mocks/geo_bg-color.json b/test/image/mocks/geo_bg-color.json
index a7f99577fc9..31d47fadbd9 100644
--- a/test/image/mocks/geo_bg-color.json
+++ b/test/image/mocks/geo_bg-color.json
@@ -15,9 +15,12 @@
-30
],
"marker": {
- "size": 20
- },
- "uid": "7e4393"
+ "size": 20,
+ "gradient": {
+ "type": "radial",
+ "color": "rgba(31,119,180,0.5)"
+ }
+ }
},
{
"type": "scattergeo",
@@ -33,9 +36,12 @@
],
"geo": "geo2",
"marker": {
- "size": 20
- },
- "uid": "9d01ba"
+ "size": 20,
+ "gradient": {
+ "type": "vertical",
+ "color": ["#000", "#fff", "#888"]
+ }
+ }
}
],
"layout": {
diff --git a/test/image/mocks/geo_big-frame.json b/test/image/mocks/geo_big-frame.json
index 1ad069fb7a2..272abea9590 100644
--- a/test/image/mocks/geo_big-frame.json
+++ b/test/image/mocks/geo_big-frame.json
@@ -34,8 +34,7 @@
"textfont": {
"size": 20
},
- "textposition": "top right",
- "uid": "747526"
+ "textposition": "top right"
}
],
"layout": {
diff --git a/test/image/mocks/geo_canadian-cites.json b/test/image/mocks/geo_canadian-cites.json
index 20cb662367b..bedc324a9d3 100644
--- a/test/image/mocks/geo_canadian-cites.json
+++ b/test/image/mocks/geo_canadian-cites.json
@@ -69,8 +69,7 @@
"bottom left",
"top right",
"top right"
- ],
- "uid": "630416"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/geo_choropleth-text.json b/test/image/mocks/geo_choropleth-text.json
index 31fcd2c4614..083dae0fd85 100644
--- a/test/image/mocks/geo_choropleth-text.json
+++ b/test/image/mocks/geo_choropleth-text.json
@@ -515,8 +515,7 @@
7.22898608053885
],
"type": "choropleth",
- "zauto": false,
- "uid": "100b8d"
+ "zauto": false
}
],
"layout": {
diff --git a/test/image/mocks/geo_choropleth-usa.json b/test/image/mocks/geo_choropleth-usa.json
index 59d1608d02e..d40fdc2dac0 100644
--- a/test/image/mocks/geo_choropleth-usa.json
+++ b/test/image/mocks/geo_choropleth-usa.json
@@ -3,7 +3,6 @@
{
"autocolorscale": false,
"zmax": 16472.88,
- "uid": "dc8e03",
"colorscale": [
[
0,
@@ -30,7 +29,6 @@
"rgb(84,39,143)"
]
],
- "zsrc": "etpinard:4827:a49755",
"text": [
"Alabama
--
Beef: 34.4
Pork: 10.6
Poultry: 481.0
Dairy: 4.06
--
Fruits: 25.11
Veggies: 14.33
--
Wheat: 70.0
Corn: 34.9
Cotton: 317.61",
"Alaska
--
Beef: 0.2
Pork: 0.1
Poultry: 0.0
Dairy: 0.19
--
Fruits: 0.0
Veggies: 1.56
--
Wheat: 0.0
Corn: 0.0
Cotton: 0.0",
@@ -136,7 +134,6 @@
"WI",
"WY"
],
- "textsrc": "etpinard:4827:dac8a8",
"colorbar": {
"title": "Millions USD"
},
diff --git a/test/image/mocks/geo_conic-conformal.json b/test/image/mocks/geo_conic-conformal.json
index b9d135300f3..e5da3ed1933 100644
--- a/test/image/mocks/geo_conic-conformal.json
+++ b/test/image/mocks/geo_conic-conformal.json
@@ -30,8 +30,7 @@
"saddsa",
"dsadsadsa",
"dsadsa"
- ],
- "uid": "cf9657"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/geo_country-names-text-chart.json b/test/image/mocks/geo_country-names-text-chart.json
index 5b915ecf144..9477fd56f16 100644
--- a/test/image/mocks/geo_country-names-text-chart.json
+++ b/test/image/mocks/geo_country-names-text-chart.json
@@ -389,8 +389,7 @@
"Libya",
"Mauritania",
"Pakistan"
- ],
- "uid": "2d49ab"
+ ]
},
{
"type": "scattergeo",
@@ -782,8 +781,7 @@
"Mauritania",
"Pakistan"
],
- "geo": "geo2",
- "uid": "58011b"
+ "geo": "geo2"
}
],
"layout": {
diff --git a/test/image/mocks/geo_country-names.json b/test/image/mocks/geo_country-names.json
index d9241009732..0c6da168202 100644
--- a/test/image/mocks/geo_country-names.json
+++ b/test/image/mocks/geo_country-names.json
@@ -389,7 +389,6 @@
"0.1",
"0.1"
],
- "uid": "2202c2",
"zmin": 0.1,
"zmax": 17.5,
"colorscale": [
@@ -1015,8 +1014,7 @@
"0.1",
"0.1"
],
- "geo": "geo2",
- "uid": "105942"
+ "geo": "geo2"
}
],
"layout": {
diff --git a/test/image/mocks/geo_custom-colorscale.json b/test/image/mocks/geo_custom-colorscale.json
index 223284e07ec..9f86a33fcde 100644
--- a/test/image/mocks/geo_custom-colorscale.json
+++ b/test/image/mocks/geo_custom-colorscale.json
@@ -19,8 +19,7 @@
"colorscale": "Greens",
"reversescale": true,
"zmin": 0,
- "zmax": 100,
- "uid": "3e8d2d"
+ "zmax": 100
}
],
"layout": {
diff --git a/test/image/mocks/geo_kavrayskiy7.json b/test/image/mocks/geo_kavrayskiy7.json
index 40b5b522e4f..7a93d492974 100644
--- a/test/image/mocks/geo_kavrayskiy7.json
+++ b/test/image/mocks/geo_kavrayskiy7.json
@@ -15,8 +15,7 @@
10,
6,
4
- ],
- "uid": "96be8e"
+ ]
},
{
"type": "scattergeo",
@@ -33,8 +32,7 @@
"line": {
"color": "rgb(0, 255, 255)",
"width": 5
- },
- "uid": "493d58"
+ }
},
{
"type": "scattergeo",
@@ -50,8 +48,7 @@
"line": {
"color": "rgb(255, 0, 255)",
"width": 5
- },
- "uid": "cc38eb"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/geo_legendonly.json b/test/image/mocks/geo_legendonly.json
index c7eb7c8cda9..ac87b5edf29 100644
--- a/test/image/mocks/geo_legendonly.json
+++ b/test/image/mocks/geo_legendonly.json
@@ -34,8 +34,7 @@
"textfont": {
"size": 20
},
- "textposition": "top right",
- "uid": "27d635"
+ "textposition": "top right"
},
{
"type": "scattergeo",
@@ -55,8 +54,7 @@
"color": "green",
"width": 5,
"dash": "dot"
- },
- "uid": "bda980"
+ }
},
{
"type": "scattergeo",
@@ -81,8 +79,7 @@
"color": "red",
"width": 3,
"dash": "longdashdot"
- },
- "uid": "9175b9"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/geo_multi-geos.json b/test/image/mocks/geo_multi-geos.json
index be68cafb997..4e9472edd91 100644
--- a/test/image/mocks/geo_multi-geos.json
+++ b/test/image/mocks/geo_multi-geos.json
@@ -13,8 +13,7 @@
0,
45,
-30
- ],
- "uid": "3bbd0c"
+ ]
},
{
"type": "scattergeo",
@@ -29,8 +28,7 @@
60
],
"mode": "lines",
- "geo": "geo2",
- "uid": "daaba4"
+ "geo": "geo2"
}
],
"layout": {
diff --git a/test/image/mocks/geo_second.json b/test/image/mocks/geo_second.json
index 8d495df0ecd..0a9c07f5c46 100644
--- a/test/image/mocks/geo_second.json
+++ b/test/image/mocks/geo_second.json
@@ -33,8 +33,7 @@
"textfont": {
"size": 20
},
- "textposition": "top right",
- "uid": "365ffb"
+ "textposition": "top right"
},
{
"type": "scattergeo",
@@ -53,8 +52,7 @@
"color": "green",
"width": 5,
"dash": "dot"
- },
- "uid": "91bf87"
+ }
},
{
"type": "choropleth",
@@ -77,8 +75,7 @@
],
"width": 2
}
- },
- "uid": "17bd35"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/geo_stereographic.json b/test/image/mocks/geo_stereographic.json
index 91633f5f942..01d5356d412 100644
--- a/test/image/mocks/geo_stereographic.json
+++ b/test/image/mocks/geo_stereographic.json
@@ -26,8 +26,7 @@
"colorscale": "Greens",
"reversescale": true,
"zmin": 0,
- "zmax": 100,
- "uid": "b860d8"
+ "zmax": 100
}
],
"layout": {
diff --git a/test/image/mocks/geo_text_chart_arrays.json b/test/image/mocks/geo_text_chart_arrays.json
index e4c2909c33a..690f2e95c26 100644
--- a/test/image/mocks/geo_text_chart_arrays.json
+++ b/test/image/mocks/geo_text_chart_arrays.json
@@ -109,8 +109,7 @@
"Raleway, sans-serif",
"Times New Roman, Times, serif"
]
- },
- "uid": "2db7c3"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/gl2d_scatter-marker-line-colorscales.json b/test/image/mocks/gl2d_scatter-marker-line-colorscales.json
index 267977cd9a3..5480713b6ad 100644
--- a/test/image/mocks/gl2d_scatter-marker-line-colorscales.json
+++ b/test/image/mocks/gl2d_scatter-marker-line-colorscales.json
@@ -174,8 +174,7 @@
]
]
}
- },
- "uid": "0a4533"
+ }
},
{
"type": "scattergl",
diff --git a/test/image/mocks/gl3d_autorange-zero.json b/test/image/mocks/gl3d_autorange-zero.json
index 88ebe3daff8..6533985a6be 100644
--- a/test/image/mocks/gl3d_autorange-zero.json
+++ b/test/image/mocks/gl3d_autorange-zero.json
@@ -18,9 +18,7 @@
"6",
"3"
]
- ],
- "zsrc": ":",
- "uid": "782735"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_contour-lines.json b/test/image/mocks/gl3d_contour-lines.json
index 610329edebe..97c934ae7e5 100644
--- a/test/image/mocks/gl3d_contour-lines.json
+++ b/test/image/mocks/gl3d_contour-lines.json
@@ -438,8 +438,6 @@
0.002806419
]
],
- "zsrc": ":",
- "uid": "42953a",
"contours": {
"x": {
"show": true,
diff --git a/test/image/mocks/gl3d_cube.json b/test/image/mocks/gl3d_cube.json
index 3543b2443af..7ffd5e59792 100644
--- a/test/image/mocks/gl3d_cube.json
+++ b/test/image/mocks/gl3d_cube.json
@@ -29,7 +29,6 @@
"line": {
"width": 5
},
- "uid": "6a4a7a",
"opacity": 0.3
},
{
@@ -61,7 +60,6 @@
"line": {
"width": 5
},
- "uid": "4b1345",
"opacity": 0.3
},
{
@@ -93,7 +91,6 @@
"line": {
"width": 5
},
- "uid": "1fb492",
"opacity": 0.3
},
{
@@ -125,7 +122,6 @@
"line": {
"width": 5
},
- "uid": "c96af2",
"opacity": 0.3
},
{
@@ -157,7 +153,6 @@
"line": {
"width": 5
},
- "uid": "9501a8",
"opacity": 0.3
},
{
@@ -188,7 +183,6 @@
"line": {
"width": 5
},
- "uid": "44e541",
"opacity": 0.3
}
],
diff --git a/test/image/mocks/gl3d_errorbars_sqrt.json b/test/image/mocks/gl3d_errorbars_sqrt.json
index 4ff810fb8ed..b9202f8661f 100644
--- a/test/image/mocks/gl3d_errorbars_sqrt.json
+++ b/test/image/mocks/gl3d_errorbars_sqrt.json
@@ -29,8 +29,7 @@
"error_x": {
"type": "sqrt",
"width": 5
- },
- "uid": "10ccaa"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_errorbars_zx.json b/test/image/mocks/gl3d_errorbars_zx.json
index c844c685b6c..54b592faa9e 100644
--- a/test/image/mocks/gl3d_errorbars_zx.json
+++ b/test/image/mocks/gl3d_errorbars_zx.json
@@ -39,8 +39,7 @@
},
"marker": {
"symbol": "square"
- },
- "uid": "0c6e64"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_errorbars_zy.json b/test/image/mocks/gl3d_errorbars_zy.json
index 5ed93344472..5fcb27c0cf3 100644
--- a/test/image/mocks/gl3d_errorbars_zy.json
+++ b/test/image/mocks/gl3d_errorbars_zy.json
@@ -27,8 +27,7 @@
"type": "constant",
"value": 0.25,
"valueminus": 0.1
- },
- "uid": "a8f51d"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_marker-arrays.json b/test/image/mocks/gl3d_marker-arrays.json
index 3998ab1d29a..2c4d6f6042b 100644
--- a/test/image/mocks/gl3d_marker-arrays.json
+++ b/test/image/mocks/gl3d_marker-arrays.json
@@ -45,8 +45,7 @@
"square",
"cross"
]
- },
- "uid": "2899cc"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_mirror-ticks.json b/test/image/mocks/gl3d_mirror-ticks.json
index e29bb546472..cc7e8c0a9c6 100644
--- a/test/image/mocks/gl3d_mirror-ticks.json
+++ b/test/image/mocks/gl3d_mirror-ticks.json
@@ -17,11 +17,7 @@
"2"
],
"name": "Col3",
- "type": "scatter3d",
- "xsrc": ":d354e6",
- "ysrc": ":36e26a",
- "zsrc": ":3f1571",
- "uid": "a94e2c"
+ "type": "scatter3d"
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_opacity-scaling-spikes.json b/test/image/mocks/gl3d_opacity-scaling-spikes.json
index b73caa17400..de178c38b8c 100644
--- a/test/image/mocks/gl3d_opacity-scaling-spikes.json
+++ b/test/image/mocks/gl3d_opacity-scaling-spikes.json
@@ -2837,7 +2837,6 @@
2.9089125541536123
],
"type": "scatter3d",
- "uid": "dc285c",
"projection": {
"y": {
"show": true
@@ -2994,8 +2993,7 @@
-1.0329530246873673,
1.4231843273210043
],
- "type": "scatter3d",
- "uid": "9f5973"
+ "type": "scatter3d"
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_opacity-surface.json b/test/image/mocks/gl3d_opacity-surface.json
index ce6ae1a36a5..29ca71ffe46 100644
--- a/test/image/mocks/gl3d_opacity-surface.json
+++ b/test/image/mocks/gl3d_opacity-surface.json
@@ -7833,8 +7833,7 @@
-2
]
],
- "type": "surface",
- "uid": "89c3db"
+ "type": "surface"
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_projection-traces.json b/test/image/mocks/gl3d_projection-traces.json
index 35197285084..def7feabe85 100644
--- a/test/image/mocks/gl3d_projection-traces.json
+++ b/test/image/mocks/gl3d_projection-traces.json
@@ -24,10 +24,6 @@
],
"name": "Col3",
"type": "scatter3d",
- "xsrc": ":662aee",
- "ysrc": ":ea6288",
- "zsrc": ":b51348",
- "uid": "b6ca71",
"line": {
"width": 6,
"color": "rgb(31, 119, 180)"
@@ -78,10 +74,6 @@
],
"name": "Col7",
"type": "scatter3d",
- "xsrc": ":c837b1",
- "ysrc": ":8ef02b",
- "zsrc": ":3709d5",
- "uid": "c8324f",
"mode": "lines",
"projection": {
"x": {
diff --git a/test/image/mocks/gl3d_surface-circular-colorscale.json b/test/image/mocks/gl3d_surface-circular-colorscale.json
index c48679c1d8e..fa2f55068db 100644
--- a/test/image/mocks/gl3d_surface-circular-colorscale.json
+++ b/test/image/mocks/gl3d_surface-circular-colorscale.json
@@ -985,8 +985,7 @@
]
],
"cmin": -3.1351928228845756,
- "cmax": 3.141592653589793,
- "uid": "523096"
+ "cmax": 3.141592653589793
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_surface-lighting.json b/test/image/mocks/gl3d_surface-lighting.json
index 19144a44559..488e78b090f 100644
--- a/test/image/mocks/gl3d_surface-lighting.json
+++ b/test/image/mocks/gl3d_surface-lighting.json
@@ -445,7 +445,6 @@
]
],
"type": "surface",
- "uid": "937dae",
"colorscale": [
[
0,
diff --git a/test/image/mocks/gl3d_text-weirdness.json b/test/image/mocks/gl3d_text-weirdness.json
index 683ffe81344..9ef88a6be3e 100644
--- a/test/image/mocks/gl3d_text-weirdness.json
+++ b/test/image/mocks/gl3d_text-weirdness.json
@@ -1,7 +1,6 @@
{
"data": [
{
- "uid": "0defda",
"text": [
"a",
"j",
diff --git a/test/image/mocks/gl3d_xy-defined-ticks.json b/test/image/mocks/gl3d_xy-defined-ticks.json
index 7acd51e646b..72c09a8f0ad 100644
--- a/test/image/mocks/gl3d_xy-defined-ticks.json
+++ b/test/image/mocks/gl3d_xy-defined-ticks.json
@@ -74,7 +74,6 @@
"5"
]
],
- "zsrc": ":-f5acfc?rows=1-",
"y": [
"8",
"5",
@@ -82,7 +81,6 @@
"-14",
"-32"
],
- "ysrc": ":f5acfc?rows=1-",
"x": [
"-1",
"3",
@@ -96,9 +94,7 @@
"44",
"45",
"51"
- ],
- "xsrc": ":-f5acfc?row=0",
- "uid": "f4949f"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/gl3d_z-range.json b/test/image/mocks/gl3d_z-range.json
index ee2faaee7c9..39ae6cc91e1 100644
--- a/test/image/mocks/gl3d_z-range.json
+++ b/test/image/mocks/gl3d_z-range.json
@@ -4,11 +4,7 @@
"y":["7","5","6","4","2","3","1","3","-1","-4","-2"],
"z":["2","3","4","5","4","3","2","1","0","-1","-2"],
"name":"Col3",
- "type":"scatter3d",
- "xsrc":":c54135",
- "ysrc":":a7b14d",
- "zsrc":":7b7778",
- "uid":"3e38e6"
+ "type":"scatter3d"
}],
"layout": {
"yaxis":{
diff --git a/test/image/mocks/hist_valid_ses.json b/test/image/mocks/hist_valid_ses.json
index 6b151b8b493..ab7608a0177 100644
--- a/test/image/mocks/hist_valid_ses.json
+++ b/test/image/mocks/hist_valid_ses.json
@@ -38,8 +38,7 @@
"end": 7,
"size": 2
},
- "type": "histogram",
- "uid": "1ce93e"
+ "type": "histogram"
}
],
"layout": {
diff --git a/test/image/mocks/hist_valid_ses_y.json b/test/image/mocks/hist_valid_ses_y.json
index a8cdc2319f2..675ac4c07c4 100644
--- a/test/image/mocks/hist_valid_ses_y.json
+++ b/test/image/mocks/hist_valid_ses_y.json
@@ -21,8 +21,7 @@
"end": 8,
"size": 1
},
- "type": "histogram",
- "uid": "b7f050"
+ "type": "histogram"
}
],
"layout": {
diff --git a/test/image/mocks/legendgroup.json b/test/image/mocks/legendgroup.json
index eb08054b74a..59624d53529 100644
--- a/test/image/mocks/legendgroup.json
+++ b/test/image/mocks/legendgroup.json
@@ -13,7 +13,6 @@
2
],
"legendgroup": "group",
- "uid": "481c07",
"visible": true
},
{
@@ -30,7 +29,6 @@
],
"legendgroup": "group",
"showlegend": false,
- "uid": "e2b9ee",
"visible": true
},
{
@@ -46,7 +44,6 @@
2
],
"legendgroup": "group 2",
- "uid": "f9e22c",
"visible": true
},
{
@@ -62,7 +59,6 @@
2
],
"legendgroup": "group",
- "uid": "e08ed1",
"visible": true
},
{
@@ -77,7 +73,6 @@
2,
1
],
- "uid": "c61b60",
"visible": true
},
{
@@ -94,7 +89,6 @@
],
"legendgroup": "group 2",
"showlegend": false,
- "uid": "4d660d",
"visible": true
}
],
diff --git a/test/image/mocks/legendgroup_bar-stack.json b/test/image/mocks/legendgroup_bar-stack.json
index fcaaae0968c..acae2852ab1 100644
--- a/test/image/mocks/legendgroup_bar-stack.json
+++ b/test/image/mocks/legendgroup_bar-stack.json
@@ -13,7 +13,6 @@
2
],
"legendgroup": "group",
- "uid": "3e132c",
"visible": true
},
{
@@ -29,7 +28,6 @@
1
],
"legendgroup": "group",
- "uid": "177f2d",
"visible": true
},
{
@@ -46,7 +44,6 @@
],
"legendgroup": "group",
"showlegend": false,
- "uid": "8185a6",
"visible": true
}
],
diff --git a/test/image/mocks/line_grid_color.json b/test/image/mocks/line_grid_color.json
index cf9a80c5a4d..898b0b1286d 100644
--- a/test/image/mocks/line_grid_color.json
+++ b/test/image/mocks/line_grid_color.json
@@ -10,8 +10,7 @@
-1,
0,
1
- ],
- "uid": "e95128"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/line_grid_width.json b/test/image/mocks/line_grid_width.json
index 9d23faefe1e..9fca36286f9 100644
--- a/test/image/mocks/line_grid_width.json
+++ b/test/image/mocks/line_grid_width.json
@@ -10,8 +10,7 @@
-1,
0,
1
- ],
- "uid": "e9539e"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/mapbox_0.json b/test/image/mocks/mapbox_0.json
index dc453edda72..3373b8d63ac 100644
--- a/test/image/mocks/mapbox_0.json
+++ b/test/image/mocks/mapbox_0.json
@@ -15,8 +15,7 @@
],
"marker": {
"size": 20
- },
- "uid": "d4580a"
+ }
},
{
"type": "scattermapbox",
@@ -33,8 +32,7 @@
],
"marker": {
"size": 20
- },
- "uid": "f5a4c5"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/plot_types.json b/test/image/mocks/plot_types.json
index 8ac1cd0abab..05db44a51a4 100644
--- a/test/image/mocks/plot_types.json
+++ b/test/image/mocks/plot_types.json
@@ -10,8 +10,7 @@
2,
1,
2
- ],
- "uid": "574a94"
+ ]
},
{
"type": "scatter3d",
@@ -29,8 +28,7 @@
2,
1,
2
- ],
- "uid": "cd61e2"
+ ]
},
{
"type": "scattergeo",
@@ -44,8 +42,7 @@
-45,
0,
45
- ],
- "uid": "d8595c"
+ ]
},
{
"type": "pie",
@@ -68,8 +65,7 @@
0.5,
1
]
- },
- "uid": "d7e376"
+ }
},
{
"type": "scatterternary",
@@ -87,8 +83,7 @@
1,
1,
2.12345
- ],
- "uid": "609928"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/range_selector.json b/test/image/mocks/range_selector.json
index 01324ce5861..55d17a0f819 100644
--- a/test/image/mocks/range_selector.json
+++ b/test/image/mocks/range_selector.json
@@ -493,8 +493,7 @@
"16",
"24",
"14"
- ],
- "uid": "044155"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/range_selector_style.json b/test/image/mocks/range_selector_style.json
index 101620a4ed0..a802a17cd10 100644
--- a/test/image/mocks/range_selector_style.json
+++ b/test/image/mocks/range_selector_style.json
@@ -494,8 +494,7 @@
"24",
"14"
],
- "name": "raw",
- "uid": "3154a7"
+ "name": "raw"
},
{
"mode": "lines",
@@ -996,8 +995,7 @@
],
"xaxis": "x2",
"yaxis": "y2",
- "name": "dev from mean",
- "uid": "d16487"
+ "name": "dev from mean"
}
],
"layout": {
diff --git a/test/image/mocks/scatter-marker-line-colorscales.json b/test/image/mocks/scatter-marker-line-colorscales.json
index aac855166d3..815e336384b 100644
--- a/test/image/mocks/scatter-marker-line-colorscales.json
+++ b/test/image/mocks/scatter-marker-line-colorscales.json
@@ -174,8 +174,7 @@
]
]
}
- },
- "uid": "0a4533"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/scattercarpet.json b/test/image/mocks/scattercarpet.json
index dcc774cefaa..09756b08a41 100644
--- a/test/image/mocks/scattercarpet.json
+++ b/test/image/mocks/scattercarpet.json
@@ -57,6 +57,14 @@
"line": {
"smoothing": 1,
"shape": "spline"
+ },
+ "marker": {
+ "size": [10, 20, 30, 40],
+ "color": ["#000", "#f00", "#ff0", "#fff"],
+ "gradient": {
+ "type": ["horizontal", "radial", "horizontal", "vertical"],
+ "color": ["#0ff", "#fff", "#88f", "#00f"]
+ }
}
},
{
diff --git a/test/image/mocks/ternary_array_styles.json b/test/image/mocks/ternary_array_styles.json
index c127c4c3b22..755b8ebbde1 100644
--- a/test/image/mocks/ternary_array_styles.json
+++ b/test/image/mocks/ternary_array_styles.json
@@ -83,8 +83,7 @@
"shape": "spline",
"width": 3
},
- "connectgaps": true,
- "uid": "35ff50"
+ "connectgaps": true
}
],
"layout": {
diff --git a/test/image/mocks/ternary_lines.json b/test/image/mocks/ternary_lines.json
index bae46288fa1..1c33c828ec5 100644
--- a/test/image/mocks/ternary_lines.json
+++ b/test/image/mocks/ternary_lines.json
@@ -20,8 +20,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "4a9e8d"
+ }
},
{
"type": "scatterternary",
@@ -46,8 +45,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "6b700b"
+ }
},
{
"type": "scatterternary",
@@ -81,8 +79,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "0e280c"
+ }
},
{
"type": "scatterternary",
@@ -110,8 +107,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "40fccc"
+ }
},
{
"type": "scatterternary",
@@ -133,8 +129,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "d990f2"
+ }
},
{
"type": "scatterternary",
@@ -162,8 +157,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "b6c367"
+ }
},
{
"type": "scatterternary",
@@ -188,8 +182,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "90d4e2"
+ }
},
{
"type": "scatterternary",
@@ -211,8 +204,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "c483e4"
+ }
},
{
"type": "scatterternary",
@@ -237,8 +229,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "9b3fa9"
+ }
},
{
"type": "scatterternary",
@@ -269,8 +260,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "5c8c5a"
+ }
},
{
"type": "scatterternary",
@@ -295,8 +285,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "845650"
+ }
},
{
"type": "scatterternary",
@@ -324,8 +313,7 @@
],
"line": {
"color": "#c00"
- },
- "uid": "ca74b0"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/ternary_markers.json b/test/image/mocks/ternary_markers.json
index 12e33c13448..369460167a7 100644
--- a/test/image/mocks/ternary_markers.json
+++ b/test/image/mocks/ternary_markers.json
@@ -62,8 +62,7 @@
"line": {
"width": 2
}
- },
- "uid": "de1eca"
+ }
}
],
"layout": {
diff --git a/test/image/mocks/ternary_multiple.json b/test/image/mocks/ternary_multiple.json
index b41308d655f..9a082c73733 100644
--- a/test/image/mocks/ternary_multiple.json
+++ b/test/image/mocks/ternary_multiple.json
@@ -14,7 +14,13 @@
0.1
],
"name": "c missing",
- "uid": "757d30"
+ "marker": {
+ "size": 15,
+ "gradient": {
+ "type": "radial",
+ "color": "#fff"
+ }
+ }
},
{
"type": "scatterternary",
@@ -31,7 +37,13 @@
],
"subplot": "ternary2",
"name": "b missing",
- "uid": "6c0753"
+ "marker": {
+ "size": 15,
+ "gradient": {
+ "type": "horizontal",
+ "color": "#000"
+ }
+ }
},
{
"type": "scatterternary",
@@ -48,7 +60,13 @@
],
"subplot": "ternary3",
"name": "a missing",
- "uid": "12520d"
+ "marker": {
+ "size": 15,
+ "gradient": {
+ "type": "vertical",
+ "color": ["#f00", "#00f", "#ff0"]
+ }
+ }
}
],
"layout": {
diff --git a/test/image/mocks/text_chart_arrays.json b/test/image/mocks/text_chart_arrays.json
index ae614d0c267..25d7a854d81 100644
--- a/test/image/mocks/text_chart_arrays.json
+++ b/test/image/mocks/text_chart_arrays.json
@@ -45,8 +45,7 @@
"Hover text\rB",
"Hover text\r\nC"
],
- "type": "scatter",
- "uid": "459c77"
+ "type": "scatter"
},
{
"x": [
@@ -93,8 +92,7 @@
"Hover text H",
"Hover text I"
],
- "type": "scatter",
- "uid": "f8361c"
+ "type": "scatter"
},
{
"x": [
diff --git a/test/image/mocks/text_chart_invalid-arrays.json b/test/image/mocks/text_chart_invalid-arrays.json
index 619cb8f80f9..02b0dbfd177 100644
--- a/test/image/mocks/text_chart_invalid-arrays.json
+++ b/test/image/mocks/text_chart_invalid-arrays.json
@@ -40,8 +40,7 @@
"top left",
"top left"
],
- "type": "scatter",
- "uid": "a8eecb"
+ "type": "scatter"
},
{
"x": [
@@ -83,8 +82,7 @@
"bottom left",
"bottom left"
],
- "type": "scatter",
- "uid": "cbf13d"
+ "type": "scatter"
}
],
"layout": {
diff --git a/test/image/mocks/text_export.json b/test/image/mocks/text_export.json
index db406a44023..0820b315512 100644
--- a/test/image/mocks/text_export.json
+++ b/test/image/mocks/text_export.json
@@ -2,7444 +2,7440 @@
"data": [
{
"x": [
- 6,
- 6.06,
- 6.12,
- 6.18,
- 6.24,
- 6.3,
- 6.36,
- 6.42,
- 6.48,
- 6.54,
- 6.6,
- 6.66,
- 6.72,
- 6.78,
- 6.84,
- 6.9,
- 6.96,
- 7.02,
- 7.08,
- 7.14,
- 7.2,
- 7.26,
- 7.32,
- 7.38,
- 7.44,
- 7.5,
- 7.56,
- 7.62,
- 7.68,
- 7.74,
- 7.8,
- 7.86,
- 7.92,
- 7.98,
- 8.04,
- 8.1,
- 8.16,
- 8.22,
- 8.28,
- 8.34,
- 8.4,
- 8.46,
- 8.52,
- 8.58,
- 8.64,
- 8.7,
- 8.76,
- 8.82,
- 8.88,
- 8.94,
- 9,
- 9.06,
- 9.12,
- 9.18,
- 9.24,
- 9.3,
- 9.36,
- 9.42,
- 9.48,
- 9.54,
- 9.6,
- 9.66,
- 9.72,
- 9.78,
- 9.84,
- 9.9,
- 9.96,
- 10.02,
- 10.08,
- 10.14,
- 10.2,
- 10.26,
- 10.32,
- 10.38,
- 10.44,
- 10.5,
- 10.56,
- 10.62,
- 10.68,
- 10.74,
- 10.8,
- 10.86,
- 10.92,
- 10.98,
- 11.04,
- 11.1,
- 11.16,
- 11.22,
- 11.28,
- 11.34,
- 11.4,
- 11.46,
- 11.52,
- 11.58,
- 11.64,
- 11.7,
- 11.76,
- 11.82,
- 11.88,
- 11.94,
- 12,
- 12.06,
- 12.12,
- 12.18,
- 12.24,
- 12.3,
- 12.36,
- 12.42,
- 12.48,
- 12.54,
- 12.6,
- 12.66,
- 12.72,
- 12.78,
- 12.84,
- 12.9,
- 12.96,
- 13.02,
- 13.08,
- 13.14,
- 13.2,
- 13.26,
- 13.32,
- 13.38,
- 13.44,
- 13.5,
- 13.56,
- 13.62,
- 13.68,
- 13.74,
- 13.8,
- 13.86,
- 13.92,
- 13.98,
- 14.04,
- 14.1,
- 14.16,
- 14.22,
- 14.28,
- 14.34,
- 14.4,
- 14.46,
- 14.52,
- 14.58,
- 14.64,
- 14.7,
- 14.76,
- 14.82,
- 14.88,
- 14.94,
- 15,
- 15.06,
- 15.12,
- 15.18,
- 15.24,
- 15.3,
- 15.36,
- 15.42,
- 15.48,
- 15.54,
- 15.6,
- 15.66,
- 15.72,
- 15.78,
- 15.84,
- 15.9,
- 15.96,
- 16.02,
- 16.08,
- 16.14,
- 16.2,
- 16.26,
- 16.32,
- 16.38,
- 16.44,
- 16.5,
- 16.56,
- 16.62,
- 16.68,
- 16.74,
- 16.8,
- 16.86,
- 16.92,
- 16.98,
- 17.04,
- 17.1,
- 17.16,
- 17.22,
- 17.28,
- 17.34,
- 17.4,
- 17.46,
- 17.52,
- 17.58,
- 17.64,
- 17.7,
- 17.76,
- 17.82,
- 17.88,
- 17.94,
- 18,
- 18.06,
- 18.12,
- 18.18,
- 18.24,
- 18.3,
- 18.36,
- 18.42,
- 18.48,
- 18.54,
- 18.6,
- 18.66,
- 18.72,
- 18.78,
- 18.84,
- 18.9,
- 18.96,
- 19.02,
- 19.08,
- 19.14,
- 19.2,
- 19.26,
- 19.32,
- 19.38,
- 19.44,
- 19.5,
- 19.56,
- 19.62,
- 19.68,
- 19.74,
- 19.8,
- 19.86,
- 19.92,
- 19.98,
- 20.04,
- 20.1,
- 20.16,
- 20.22,
- 20.28,
- 20.34,
- 20.4,
- 20.46,
- 20.52,
- 20.58,
- 20.64,
- 20.7,
- 20.76,
- 20.82,
- 20.88,
- 20.94,
- 21,
- 21.06,
- 21.12,
- 21.18,
- 21.24,
- 21.3,
- 21.36,
- 21.42,
- 21.48,
- 21.54,
- 21.6,
- 21.66,
- 21.72,
- 21.78,
- 21.84,
- 21.9,
- 21.96,
- 22.02,
- 22.08,
- 22.14,
- 22.2,
- 22.26,
- 22.32,
- 22.38,
- 22.44,
- 22.5,
- 22.56,
- 22.62,
- 22.68,
- 22.74,
- 22.8,
- 22.86,
- 22.92,
- 22.98,
- 23.04,
- 23.1,
- 23.16,
- 23.22,
- 23.28,
- 23.34,
- 23.4,
- 23.46,
- 23.52,
- 23.58,
- 23.64,
- 23.7,
- 23.76,
- 23.82,
- 23.88,
- 23.94,
- 24,
- 24.06,
- 24.12,
- 24.18,
- 24.24,
- 24.3,
- 24.36,
- 24.42,
- 24.48,
- 24.54,
- 24.6,
- 24.66,
- 24.72,
- 24.78,
- 24.84,
- 24.9,
- 24.96,
- 25.02,
- 25.08,
- 25.14,
- 25.2,
- 25.26,
- 25.32,
- 25.38,
- 25.44,
- 25.5,
- 25.56,
- 25.62,
- 25.68,
- 25.74,
- 25.8,
- 25.86,
- 25.92,
- 25.98,
- 26.04,
- 26.1,
- 26.16,
- 26.22,
- 26.28,
- 26.34,
- 26.4,
- 26.46,
- 26.52,
- 26.58,
- 26.64,
- 26.7,
- 26.76,
- 26.82,
- 26.88,
- 26.94,
- 27,
- 27.06,
- 27.12,
- 27.18,
- 27.24,
- 27.3,
- 27.36,
- 27.42,
- 27.48,
- 27.54,
- 27.6,
- 27.66,
- 27.72,
- 27.78,
- 27.84,
- 27.9,
- 27.96,
- 28.02,
- 28.08,
- 28.14,
- 28.2,
- 28.26,
- 28.32,
- 28.38,
- 28.44,
- 28.5,
- 28.56,
- 28.62,
- 28.68,
- 28.74,
- 28.8,
- 28.86,
- 28.92,
- 28.98,
- 29.04,
- 29.1,
- 29.16,
- 29.22,
- 29.28,
- 29.34,
- 29.4,
- 29.46,
- 29.52,
- 29.58,
- 29.64,
- 29.7,
- 29.76,
- 29.82,
- 29.88,
- 29.94,
- 30,
- 30.06,
- 30.12,
- 30.18,
- 30.24,
- 30.3,
- 30.36,
- 30.42,
- 30.48,
- 30.54,
- 30.6,
- 30.66,
- 30.72,
- 30.78,
- 30.84,
- 30.9,
- 30.96,
- 31.02,
- 31.08,
- 31.14,
- 31.2,
- 31.26,
- 31.32,
- 31.38,
- 31.44,
- 31.5,
- 31.56,
- 31.62,
- 31.68,
- 31.74,
- 31.8,
- 31.86,
- 31.92,
- 31.98,
- 32.04,
- 32.1,
- 32.16,
- 32.22,
- 32.28,
- 32.34,
- 32.4,
- 32.46,
- 32.52,
- 32.58,
- 32.64,
- 32.7,
- 32.76,
- 32.82,
- 32.88,
- 32.94,
- 33,
- 33.06,
- 33.12,
- 33.18,
- 33.24,
- 33.3,
- 33.36,
- 33.42,
- 33.48,
- 33.54,
- 33.6,
- 33.66,
- 33.72,
- 33.78,
- 33.84,
- 33.9,
- 33.96,
- 34.02,
- 34.08,
- 34.14,
- 34.2,
- 34.26,
- 34.32,
- 34.38,
- 34.44,
- 34.5,
- 34.56,
- 34.62,
- 34.68,
- 34.74,
- 34.8,
- 34.86,
- 34.92,
- 34.98,
- 35.04,
- 35.1,
- 35.16,
- 35.22,
- 35.28,
- 35.34,
- 35.4,
- 35.46,
- 35.52,
- 35.58,
- 35.64,
- 35.7,
- 35.76,
- 35.82,
- 35.88,
- 35.94,
- 36,
- 36.06,
- 36.12,
- 36.18,
- 36.24,
- 36.3,
- 36.36,
- 36.42,
- 36.48,
- 36.54,
- 36.6,
- 36.66,
- 36.72,
- 36.78,
- 36.84,
- 36.9,
- 36.96,
- 37.02,
- 37.08,
- 37.14,
- 37.2,
- 37.26,
- 37.32,
- 37.38,
- 37.44,
- 37.5,
- 37.56,
- 37.62,
- 37.68,
- 37.74,
- 37.8,
- 37.86,
- 37.92,
- 37.98,
- 38.04,
- 38.1,
- 38.16,
- 38.22,
- 38.28,
- 38.34,
- 38.4,
- 38.46,
- 38.52,
- 38.58,
- 38.64,
- 38.7,
- 38.76,
- 38.82,
- 38.88,
- 38.94,
- 39,
- 39.06,
- 39.12,
- 39.18,
- 39.24,
- 39.3,
- 39.36,
- 39.42,
- 39.48,
- 39.54,
- 39.6,
- 39.66,
- 39.72,
- 39.78,
- 39.84,
- 39.9,
- 39.96,
- 40.02,
- 40.08,
- 40.14,
- 40.2,
- 40.26,
- 40.32,
- 40.38,
- 40.44,
- 40.5,
- 40.56,
- 40.62,
- 40.68,
- 40.74,
- 40.8,
- 40.86,
- 40.92,
- 40.98,
- 41.04,
- 41.1,
- 41.16,
- 41.22,
- 41.28,
- 41.34,
- 41.4,
- 41.46,
- 41.52,
- 41.58,
- 41.64,
- 41.7,
- 41.76,
- 41.82,
- 41.88,
- 41.94,
- 42,
- 42.06,
- 42.12,
- 42.18,
- 42.24,
- 42.3,
- 42.36,
- 42.42,
- 42.48,
- 42.54,
- 42.6,
- 42.66,
- 42.72,
- 42.78,
- 42.84,
- 42.9,
- 42.96,
- 43.02,
- 43.08,
- 43.14,
- 43.2,
- 43.26,
- 43.32,
- 43.38,
- 43.44,
- 43.5,
- 43.56,
- 43.62,
- 43.68,
- 43.74,
- 43.8,
- 43.86,
- 43.92,
- 43.98,
- 44.04,
- 44.1,
- 44.16,
- 44.22,
- 44.28,
- 44.34,
- 44.4,
- 44.46,
- 44.52,
- 44.58,
- 44.64,
- 44.7,
- 44.76,
- 44.82,
- 44.88,
- 44.94,
- 45,
- 45.06,
- 45.12,
- 45.18,
- 45.24,
- 45.3,
- 45.36,
- 45.42,
- 45.48,
- 45.54,
- 45.6,
- 45.66,
- 45.72,
- 45.78,
- 45.84,
- 45.9,
- 45.96,
- 46.02,
- 46.08,
- 46.14,
- 46.2,
- 46.26,
- 46.32,
- 46.38,
- 46.44,
- 46.5,
- 46.56,
- 46.62,
- 46.68,
- 46.74,
- 46.8,
- 46.86,
- 46.92,
- 46.98,
- 47.04,
- 47.1,
- 47.16,
- 47.22,
- 47.28,
- 47.34,
- 47.4,
- 47.46,
- 47.52,
- 47.58,
- 47.64,
- 47.7,
- 47.76,
- 47.82,
- 47.88,
- 47.94,
- 48,
- 48.06,
- 48.12,
- 48.18,
- 48.24,
- 48.3,
- 48.36,
- 48.42,
- 48.48,
- 48.54,
- 48.6,
- 48.66,
- 48.72,
- 48.78,
- 48.84,
- 48.9,
- 48.96,
- 49.02,
- 49.08,
- 49.14,
- 49.2,
- 49.26,
- 49.32,
- 49.38,
- 49.44,
- 49.5,
- 49.56,
- 49.62,
- 49.68,
- 49.74,
- 49.8,
- 49.86,
- 49.92,
- 49.98,
- 50.04,
- 50.1,
- 50.16,
- 50.22,
- 50.28,
- 50.34,
- 50.4,
- 50.46,
- 50.52,
- 50.58,
- 50.64,
- 50.7,
- 50.76,
- 50.82,
- 50.88,
- 50.94,
- 51,
- 51.06,
- 51.12,
- 51.18,
- 51.24,
- 51.3,
- 51.36,
- 51.42,
- 51.48,
- 51.54,
- 51.6,
- 51.66,
- 51.72,
- 51.78,
- 51.84,
- 51.9,
- 51.96,
- 52.02,
- 52.08,
- 52.14,
- 52.2,
- 52.26,
- 52.32,
- 52.38,
- 52.44,
- 52.5,
- 52.56,
- 52.62,
- 52.68,
- 52.74,
- 52.8,
- 52.86,
- 52.92,
- 52.98,
- 53.04,
- 53.1,
- 53.16,
- 53.22,
- 53.28,
- 53.34,
- 53.4,
- 53.46,
- 53.52,
- 53.58,
- 53.64,
- 53.7,
- 53.76,
- 53.82,
- 53.88,
- 53.94,
- 54,
- 54.06,
- 54.12,
- 54.18,
- 54.24,
- 54.3,
- 54.36,
- 54.42,
- 54.48,
- 54.54,
- 54.6,
- 54.66,
- 54.72,
- 54.78,
- 54.84,
- 54.9,
- 54.96,
- 55.02,
- 55.08,
- 55.14,
- 55.2,
- 55.26,
- 55.32,
- 55.38,
- 55.44,
- 55.5,
- 55.56,
- 55.62,
- 55.68,
- 55.74,
- 55.8,
- 55.86,
- 55.92,
- 55.98,
- 56.04,
- 56.1,
- 56.16,
- 56.22,
- 56.28,
- 56.34,
- 56.4,
- 56.46,
- 56.52,
- 56.58,
- 56.64,
- 56.7,
- 56.76,
- 56.82,
- 56.88,
- 56.94,
- 57,
- 57.06,
- 57.12,
- 57.18,
- 57.24,
- 57.3,
- 57.36,
- 57.42,
- 57.48,
- 57.54,
- 57.6,
- 57.66,
- 57.72,
- 57.78,
- 57.84,
- 57.9,
- 57.96,
- 58.02,
- 58.08,
- 58.14,
- 58.2,
- 58.26,
- 58.32,
- 58.38,
- 58.44,
- 58.5,
- 58.56,
- 58.62,
- 58.68,
- 58.74,
- 58.8,
- 58.86,
- 58.92,
- 58.98,
- 59.04,
- 59.1,
- 59.16,
- 59.22,
- 59.28,
- 59.34,
- 59.4,
- 59.46,
- 59.52,
- 59.58,
- 59.64,
- 59.7,
- 59.76,
- 59.82,
- 59.88,
- 59.94,
+ 6,
+ 6.06,
+ 6.12,
+ 6.18,
+ 6.24,
+ 6.3,
+ 6.36,
+ 6.42,
+ 6.48,
+ 6.54,
+ 6.6,
+ 6.66,
+ 6.72,
+ 6.78,
+ 6.84,
+ 6.9,
+ 6.96,
+ 7.02,
+ 7.08,
+ 7.14,
+ 7.2,
+ 7.26,
+ 7.32,
+ 7.38,
+ 7.44,
+ 7.5,
+ 7.56,
+ 7.62,
+ 7.68,
+ 7.74,
+ 7.8,
+ 7.86,
+ 7.92,
+ 7.98,
+ 8.04,
+ 8.1,
+ 8.16,
+ 8.22,
+ 8.28,
+ 8.34,
+ 8.4,
+ 8.46,
+ 8.52,
+ 8.58,
+ 8.64,
+ 8.7,
+ 8.76,
+ 8.82,
+ 8.88,
+ 8.94,
+ 9,
+ 9.06,
+ 9.12,
+ 9.18,
+ 9.24,
+ 9.3,
+ 9.36,
+ 9.42,
+ 9.48,
+ 9.54,
+ 9.6,
+ 9.66,
+ 9.72,
+ 9.78,
+ 9.84,
+ 9.9,
+ 9.96,
+ 10.02,
+ 10.08,
+ 10.14,
+ 10.2,
+ 10.26,
+ 10.32,
+ 10.38,
+ 10.44,
+ 10.5,
+ 10.56,
+ 10.62,
+ 10.68,
+ 10.74,
+ 10.8,
+ 10.86,
+ 10.92,
+ 10.98,
+ 11.04,
+ 11.1,
+ 11.16,
+ 11.22,
+ 11.28,
+ 11.34,
+ 11.4,
+ 11.46,
+ 11.52,
+ 11.58,
+ 11.64,
+ 11.7,
+ 11.76,
+ 11.82,
+ 11.88,
+ 11.94,
+ 12,
+ 12.06,
+ 12.12,
+ 12.18,
+ 12.24,
+ 12.3,
+ 12.36,
+ 12.42,
+ 12.48,
+ 12.54,
+ 12.6,
+ 12.66,
+ 12.72,
+ 12.78,
+ 12.84,
+ 12.9,
+ 12.96,
+ 13.02,
+ 13.08,
+ 13.14,
+ 13.2,
+ 13.26,
+ 13.32,
+ 13.38,
+ 13.44,
+ 13.5,
+ 13.56,
+ 13.62,
+ 13.68,
+ 13.74,
+ 13.8,
+ 13.86,
+ 13.92,
+ 13.98,
+ 14.04,
+ 14.1,
+ 14.16,
+ 14.22,
+ 14.28,
+ 14.34,
+ 14.4,
+ 14.46,
+ 14.52,
+ 14.58,
+ 14.64,
+ 14.7,
+ 14.76,
+ 14.82,
+ 14.88,
+ 14.94,
+ 15,
+ 15.06,
+ 15.12,
+ 15.18,
+ 15.24,
+ 15.3,
+ 15.36,
+ 15.42,
+ 15.48,
+ 15.54,
+ 15.6,
+ 15.66,
+ 15.72,
+ 15.78,
+ 15.84,
+ 15.9,
+ 15.96,
+ 16.02,
+ 16.08,
+ 16.14,
+ 16.2,
+ 16.26,
+ 16.32,
+ 16.38,
+ 16.44,
+ 16.5,
+ 16.56,
+ 16.62,
+ 16.68,
+ 16.74,
+ 16.8,
+ 16.86,
+ 16.92,
+ 16.98,
+ 17.04,
+ 17.1,
+ 17.16,
+ 17.22,
+ 17.28,
+ 17.34,
+ 17.4,
+ 17.46,
+ 17.52,
+ 17.58,
+ 17.64,
+ 17.7,
+ 17.76,
+ 17.82,
+ 17.88,
+ 17.94,
+ 18,
+ 18.06,
+ 18.12,
+ 18.18,
+ 18.24,
+ 18.3,
+ 18.36,
+ 18.42,
+ 18.48,
+ 18.54,
+ 18.6,
+ 18.66,
+ 18.72,
+ 18.78,
+ 18.84,
+ 18.9,
+ 18.96,
+ 19.02,
+ 19.08,
+ 19.14,
+ 19.2,
+ 19.26,
+ 19.32,
+ 19.38,
+ 19.44,
+ 19.5,
+ 19.56,
+ 19.62,
+ 19.68,
+ 19.74,
+ 19.8,
+ 19.86,
+ 19.92,
+ 19.98,
+ 20.04,
+ 20.1,
+ 20.16,
+ 20.22,
+ 20.28,
+ 20.34,
+ 20.4,
+ 20.46,
+ 20.52,
+ 20.58,
+ 20.64,
+ 20.7,
+ 20.76,
+ 20.82,
+ 20.88,
+ 20.94,
+ 21,
+ 21.06,
+ 21.12,
+ 21.18,
+ 21.24,
+ 21.3,
+ 21.36,
+ 21.42,
+ 21.48,
+ 21.54,
+ 21.6,
+ 21.66,
+ 21.72,
+ 21.78,
+ 21.84,
+ 21.9,
+ 21.96,
+ 22.02,
+ 22.08,
+ 22.14,
+ 22.2,
+ 22.26,
+ 22.32,
+ 22.38,
+ 22.44,
+ 22.5,
+ 22.56,
+ 22.62,
+ 22.68,
+ 22.74,
+ 22.8,
+ 22.86,
+ 22.92,
+ 22.98,
+ 23.04,
+ 23.1,
+ 23.16,
+ 23.22,
+ 23.28,
+ 23.34,
+ 23.4,
+ 23.46,
+ 23.52,
+ 23.58,
+ 23.64,
+ 23.7,
+ 23.76,
+ 23.82,
+ 23.88,
+ 23.94,
+ 24,
+ 24.06,
+ 24.12,
+ 24.18,
+ 24.24,
+ 24.3,
+ 24.36,
+ 24.42,
+ 24.48,
+ 24.54,
+ 24.6,
+ 24.66,
+ 24.72,
+ 24.78,
+ 24.84,
+ 24.9,
+ 24.96,
+ 25.02,
+ 25.08,
+ 25.14,
+ 25.2,
+ 25.26,
+ 25.32,
+ 25.38,
+ 25.44,
+ 25.5,
+ 25.56,
+ 25.62,
+ 25.68,
+ 25.74,
+ 25.8,
+ 25.86,
+ 25.92,
+ 25.98,
+ 26.04,
+ 26.1,
+ 26.16,
+ 26.22,
+ 26.28,
+ 26.34,
+ 26.4,
+ 26.46,
+ 26.52,
+ 26.58,
+ 26.64,
+ 26.7,
+ 26.76,
+ 26.82,
+ 26.88,
+ 26.94,
+ 27,
+ 27.06,
+ 27.12,
+ 27.18,
+ 27.24,
+ 27.3,
+ 27.36,
+ 27.42,
+ 27.48,
+ 27.54,
+ 27.6,
+ 27.66,
+ 27.72,
+ 27.78,
+ 27.84,
+ 27.9,
+ 27.96,
+ 28.02,
+ 28.08,
+ 28.14,
+ 28.2,
+ 28.26,
+ 28.32,
+ 28.38,
+ 28.44,
+ 28.5,
+ 28.56,
+ 28.62,
+ 28.68,
+ 28.74,
+ 28.8,
+ 28.86,
+ 28.92,
+ 28.98,
+ 29.04,
+ 29.1,
+ 29.16,
+ 29.22,
+ 29.28,
+ 29.34,
+ 29.4,
+ 29.46,
+ 29.52,
+ 29.58,
+ 29.64,
+ 29.7,
+ 29.76,
+ 29.82,
+ 29.88,
+ 29.94,
+ 30,
+ 30.06,
+ 30.12,
+ 30.18,
+ 30.24,
+ 30.3,
+ 30.36,
+ 30.42,
+ 30.48,
+ 30.54,
+ 30.6,
+ 30.66,
+ 30.72,
+ 30.78,
+ 30.84,
+ 30.9,
+ 30.96,
+ 31.02,
+ 31.08,
+ 31.14,
+ 31.2,
+ 31.26,
+ 31.32,
+ 31.38,
+ 31.44,
+ 31.5,
+ 31.56,
+ 31.62,
+ 31.68,
+ 31.74,
+ 31.8,
+ 31.86,
+ 31.92,
+ 31.98,
+ 32.04,
+ 32.1,
+ 32.16,
+ 32.22,
+ 32.28,
+ 32.34,
+ 32.4,
+ 32.46,
+ 32.52,
+ 32.58,
+ 32.64,
+ 32.7,
+ 32.76,
+ 32.82,
+ 32.88,
+ 32.94,
+ 33,
+ 33.06,
+ 33.12,
+ 33.18,
+ 33.24,
+ 33.3,
+ 33.36,
+ 33.42,
+ 33.48,
+ 33.54,
+ 33.6,
+ 33.66,
+ 33.72,
+ 33.78,
+ 33.84,
+ 33.9,
+ 33.96,
+ 34.02,
+ 34.08,
+ 34.14,
+ 34.2,
+ 34.26,
+ 34.32,
+ 34.38,
+ 34.44,
+ 34.5,
+ 34.56,
+ 34.62,
+ 34.68,
+ 34.74,
+ 34.8,
+ 34.86,
+ 34.92,
+ 34.98,
+ 35.04,
+ 35.1,
+ 35.16,
+ 35.22,
+ 35.28,
+ 35.34,
+ 35.4,
+ 35.46,
+ 35.52,
+ 35.58,
+ 35.64,
+ 35.7,
+ 35.76,
+ 35.82,
+ 35.88,
+ 35.94,
+ 36,
+ 36.06,
+ 36.12,
+ 36.18,
+ 36.24,
+ 36.3,
+ 36.36,
+ 36.42,
+ 36.48,
+ 36.54,
+ 36.6,
+ 36.66,
+ 36.72,
+ 36.78,
+ 36.84,
+ 36.9,
+ 36.96,
+ 37.02,
+ 37.08,
+ 37.14,
+ 37.2,
+ 37.26,
+ 37.32,
+ 37.38,
+ 37.44,
+ 37.5,
+ 37.56,
+ 37.62,
+ 37.68,
+ 37.74,
+ 37.8,
+ 37.86,
+ 37.92,
+ 37.98,
+ 38.04,
+ 38.1,
+ 38.16,
+ 38.22,
+ 38.28,
+ 38.34,
+ 38.4,
+ 38.46,
+ 38.52,
+ 38.58,
+ 38.64,
+ 38.7,
+ 38.76,
+ 38.82,
+ 38.88,
+ 38.94,
+ 39,
+ 39.06,
+ 39.12,
+ 39.18,
+ 39.24,
+ 39.3,
+ 39.36,
+ 39.42,
+ 39.48,
+ 39.54,
+ 39.6,
+ 39.66,
+ 39.72,
+ 39.78,
+ 39.84,
+ 39.9,
+ 39.96,
+ 40.02,
+ 40.08,
+ 40.14,
+ 40.2,
+ 40.26,
+ 40.32,
+ 40.38,
+ 40.44,
+ 40.5,
+ 40.56,
+ 40.62,
+ 40.68,
+ 40.74,
+ 40.8,
+ 40.86,
+ 40.92,
+ 40.98,
+ 41.04,
+ 41.1,
+ 41.16,
+ 41.22,
+ 41.28,
+ 41.34,
+ 41.4,
+ 41.46,
+ 41.52,
+ 41.58,
+ 41.64,
+ 41.7,
+ 41.76,
+ 41.82,
+ 41.88,
+ 41.94,
+ 42,
+ 42.06,
+ 42.12,
+ 42.18,
+ 42.24,
+ 42.3,
+ 42.36,
+ 42.42,
+ 42.48,
+ 42.54,
+ 42.6,
+ 42.66,
+ 42.72,
+ 42.78,
+ 42.84,
+ 42.9,
+ 42.96,
+ 43.02,
+ 43.08,
+ 43.14,
+ 43.2,
+ 43.26,
+ 43.32,
+ 43.38,
+ 43.44,
+ 43.5,
+ 43.56,
+ 43.62,
+ 43.68,
+ 43.74,
+ 43.8,
+ 43.86,
+ 43.92,
+ 43.98,
+ 44.04,
+ 44.1,
+ 44.16,
+ 44.22,
+ 44.28,
+ 44.34,
+ 44.4,
+ 44.46,
+ 44.52,
+ 44.58,
+ 44.64,
+ 44.7,
+ 44.76,
+ 44.82,
+ 44.88,
+ 44.94,
+ 45,
+ 45.06,
+ 45.12,
+ 45.18,
+ 45.24,
+ 45.3,
+ 45.36,
+ 45.42,
+ 45.48,
+ 45.54,
+ 45.6,
+ 45.66,
+ 45.72,
+ 45.78,
+ 45.84,
+ 45.9,
+ 45.96,
+ 46.02,
+ 46.08,
+ 46.14,
+ 46.2,
+ 46.26,
+ 46.32,
+ 46.38,
+ 46.44,
+ 46.5,
+ 46.56,
+ 46.62,
+ 46.68,
+ 46.74,
+ 46.8,
+ 46.86,
+ 46.92,
+ 46.98,
+ 47.04,
+ 47.1,
+ 47.16,
+ 47.22,
+ 47.28,
+ 47.34,
+ 47.4,
+ 47.46,
+ 47.52,
+ 47.58,
+ 47.64,
+ 47.7,
+ 47.76,
+ 47.82,
+ 47.88,
+ 47.94,
+ 48,
+ 48.06,
+ 48.12,
+ 48.18,
+ 48.24,
+ 48.3,
+ 48.36,
+ 48.42,
+ 48.48,
+ 48.54,
+ 48.6,
+ 48.66,
+ 48.72,
+ 48.78,
+ 48.84,
+ 48.9,
+ 48.96,
+ 49.02,
+ 49.08,
+ 49.14,
+ 49.2,
+ 49.26,
+ 49.32,
+ 49.38,
+ 49.44,
+ 49.5,
+ 49.56,
+ 49.62,
+ 49.68,
+ 49.74,
+ 49.8,
+ 49.86,
+ 49.92,
+ 49.98,
+ 50.04,
+ 50.1,
+ 50.16,
+ 50.22,
+ 50.28,
+ 50.34,
+ 50.4,
+ 50.46,
+ 50.52,
+ 50.58,
+ 50.64,
+ 50.7,
+ 50.76,
+ 50.82,
+ 50.88,
+ 50.94,
+ 51,
+ 51.06,
+ 51.12,
+ 51.18,
+ 51.24,
+ 51.3,
+ 51.36,
+ 51.42,
+ 51.48,
+ 51.54,
+ 51.6,
+ 51.66,
+ 51.72,
+ 51.78,
+ 51.84,
+ 51.9,
+ 51.96,
+ 52.02,
+ 52.08,
+ 52.14,
+ 52.2,
+ 52.26,
+ 52.32,
+ 52.38,
+ 52.44,
+ 52.5,
+ 52.56,
+ 52.62,
+ 52.68,
+ 52.74,
+ 52.8,
+ 52.86,
+ 52.92,
+ 52.98,
+ 53.04,
+ 53.1,
+ 53.16,
+ 53.22,
+ 53.28,
+ 53.34,
+ 53.4,
+ 53.46,
+ 53.52,
+ 53.58,
+ 53.64,
+ 53.7,
+ 53.76,
+ 53.82,
+ 53.88,
+ 53.94,
+ 54,
+ 54.06,
+ 54.12,
+ 54.18,
+ 54.24,
+ 54.3,
+ 54.36,
+ 54.42,
+ 54.48,
+ 54.54,
+ 54.6,
+ 54.66,
+ 54.72,
+ 54.78,
+ 54.84,
+ 54.9,
+ 54.96,
+ 55.02,
+ 55.08,
+ 55.14,
+ 55.2,
+ 55.26,
+ 55.32,
+ 55.38,
+ 55.44,
+ 55.5,
+ 55.56,
+ 55.62,
+ 55.68,
+ 55.74,
+ 55.8,
+ 55.86,
+ 55.92,
+ 55.98,
+ 56.04,
+ 56.1,
+ 56.16,
+ 56.22,
+ 56.28,
+ 56.34,
+ 56.4,
+ 56.46,
+ 56.52,
+ 56.58,
+ 56.64,
+ 56.7,
+ 56.76,
+ 56.82,
+ 56.88,
+ 56.94,
+ 57,
+ 57.06,
+ 57.12,
+ 57.18,
+ 57.24,
+ 57.3,
+ 57.36,
+ 57.42,
+ 57.48,
+ 57.54,
+ 57.6,
+ 57.66,
+ 57.72,
+ 57.78,
+ 57.84,
+ 57.9,
+ 57.96,
+ 58.02,
+ 58.08,
+ 58.14,
+ 58.2,
+ 58.26,
+ 58.32,
+ 58.38,
+ 58.44,
+ 58.5,
+ 58.56,
+ 58.62,
+ 58.68,
+ 58.74,
+ 58.8,
+ 58.86,
+ 58.92,
+ 58.98,
+ 59.04,
+ 59.1,
+ 59.16,
+ 59.22,
+ 59.28,
+ 59.34,
+ 59.4,
+ 59.46,
+ 59.52,
+ 59.58,
+ 59.64,
+ 59.7,
+ 59.76,
+ 59.82,
+ 59.88,
+ 59.94,
60
- ],
+ ],
"y": [
- 0.0334880592936738,
- 0.0334245351361307,
- 0.0333869566286568,
- 0.0333699599149527,
- 0.0333607476081915,
- 0.0333481288668502,
- 0.0333294974849123,
- 0.033312001371666,
- 0.033307493325423,
- 0.033324406654311,
- 0.0333613622752253,
- 0.0334062318636004,
- 0.0334414137618731,
- 0.0334527962428135,
- 0.0334377392828256,
- 0.0334075642912628,
- 0.0333828033222869,
- 0.0333834567689152,
- 0.0334192362947635,
- 0.0334845996408911,
- 0.033560805820861,
- 0.0336239131596817,
- 0.0336550375623213,
- 0.0336481622430825,
- 0.0336118294637144,
- 0.0335639630490658,
- 0.033522612766907,
- 0.033497550158505,
- 0.033486958502766,
- 0.0334804205672303,
- 0.0334659707870216,
- 0.0334370917444222,
- 0.0333960658768012,
- 0.0333524479629668,
- 0.0333180377059529,
- 0.0333012713296194,
- 0.0333039543900308,
- 0.0333218644918453,
- 0.0333485406160073,
- 0.0333796691400288,
- 0.0334151291424547,
- 0.0334573421622323,
- 0.0335070331957671,
- 0.0335592044389347,
- 0.0336021587795229,
- 0.0336209406911238,
- 0.033604195587749,
- 0.0335511216591171,
- 0.0334743654323419,
- 0.0333964866489404,
- 0.0333411659891898,
- 0.033323223665695,
- 0.0333420660097263,
- 0.0333816420016185,
- 0.03341739575951,
- 0.0334276741489814,
- 0.0334044428917984,
- 0.0333577420029679,
- 0.0333112608609992,
- 0.0332911952336877,
- 0.033313833458062,
- 0.0333773944039388,
- 0.0334614930366857,
- 0.0335347224545504,
- 0.0335676477247551,
- 0.0335455643718561,
- 0.033474661173771,
- 0.0333784237771809,
- 0.0332866043150614,
- 0.0332227750099173,
- 0.0331961857425739,
- 0.0332007254381052,
- 0.033220538746856,
- 0.0332392774507758,
- 0.0332484418396514,
- 0.0332506239264198,
- 0.0332561702841426,
- 0.0332754902150811,
- 0.0333114907109778,
- 0.0333562071164409,
- 0.0333933878645006,
- 0.0334059485121106,
- 0.0333847948485197,
- 0.0333344646132575,
- 0.0332723250132144,
- 0.0332214544948466,
- 0.0332007495330112,
- 0.0332169985108553,
- 0.033262338010406,
- 0.0333179497541429,
- 0.0333623047971753,
- 0.0333803620487177,
- 0.0333695481152161,
- 0.0333397511218633,
- 0.0333075902831009,
- 0.0332881220816901,
- 0.033288133335081,
- 0.0333039667546788,
- 0.0333244487115342,
- 0.0333371227336567,
- 0.0333345306408127,
- 0.0333174092219892,
- 0.0332934499083073,
- 0.0332727018092342,
- 0.0332623025718211,
- 0.033263227691387,
- 0.0332704955570812,
- 0.0332765432188444,
- 0.0332759418942792,
- 0.0332688496968963,
- 0.033261194054821,
- 0.0332614501118164,
- 0.0332758552897988,
- 0.033304648282291,
- 0.033341198851042,
- 0.0333744291751836,
- 0.0333934620591649,
- 0.0333923803316175,
- 0.0333727576342507,
- 0.0333426208953134,
- 0.033312440202589,
- 0.0332903863469368,
- 0.033279297935159,
- 0.0332766150301178,
- 0.0332769515489137,
- 0.0332758033740361,
- 0.0332724168476355,
- 0.0332702691243459,
- 0.0332749705336627,
- 0.0332910092718501,
- 0.0333194712189712,
- 0.0333581493053764,
- 0.0334038899495556,
- 0.0334556669868337,
- 0.0335163616398821,
- 0.0335916014243682,
- 0.0336852499075139,
- 0.0337931894323499,
- 0.0338990194325657,
- 0.0339756662680658,
- 0.0339949026039575,
- 0.0339428677936698,
- 0.0338352988295137,
- 0.0337243020090062,
- 0.033692020737126,
- 0.0338335973186782,
- 0.0342362043014487,
- 0.0349593817805188,
- 0.0360170839716384,
- 0.0373589539224515,
- 0.0388528913284805,
- 0.0402860319585022,
- 0.0414142841792885,
- 0.0420630729631464,
- 0.0422125184575855,
- 0.0419902626765894,
- 0.041583027355828,
- 0.0411409650479603,
- 0.0407278111786526,
- 0.0403239811119412,
- 0.0398634696563193,
- 0.0392784998600381,
- 0.0385324135598539,
- 0.037637131216402,
- 0.036656817425677,
- 0.0356922774681301,
- 0.0348481756504622,
- 0.0342008229510189,
- 0.0337813120346118,
- 0.0335746313126413,
- 0.033529029533057,
- 0.0335718916100755,
- 0.033630199585907,
- 0.0336511756970955,
- 0.0336152171463577,
- 0.033534936375915,
- 0.0334416738164858,
- 0.0333675356986946,
- 0.033331472709007,
- 0.033333852706428,
- 0.0333596551329642,
- 0.0333875331633013,
- 0.0334002700675008,
- 0.0333918280553973,
- 0.0333680281629539,
- 0.0333413699918263,
- 0.0333234329184651,
- 0.0333189399965028,
- 0.0333240646785306,
- 0.0333292374615197,
- 0.0333246771383311,
- 0.033305744490123,
- 0.0332754246448713,
- 0.033242813651962,
- 0.0332186176417655,
- 0.0332101274923355,
- 0.0332181559294999,
- 0.0332372047066352,
- 0.0332584577780127,
- 0.0332739003037702,
- 0.0332794918954576,
- 0.0332759919078612,
- 0.0332673443595689,
- 0.0332577675912642,
- 0.0332492532578019,
- 0.033240834845006,
- 0.0332299425899665,
- 0.0332149561147134,
- 0.0331973369164406,
- 0.0331819065569511,
- 0.0331748777469967,
- 0.0331805594275936,
- 0.0331984964495561,
- 0.0332227115077296,
- 0.0332437112887263,
- 0.0332524782274336,
- 0.0332445552304701,
- 0.0332221964096806,
- 0.0331935024909324,
- 0.03316892634396,
- 0.0331567231749835,
- 0.0331593422681353,
- 0.0331723589937837,
- 0.0331864990384639,
- 0.0331919385609006,
- 0.0331829344180462,
- 0.0331605939023275,
- 0.0331324966164609,
- 0.0331094558645548,
- 0.0331010187383342,
- 0.0331116979908771,
- 0.0331394198114158,
- 0.0331766712402191,
- 0.0332137380659566,
- 0.033242561952743,
- 0.0332594748261401,
- 0.0332656486871905,
- 0.0332653215319161,
- 0.0332629958150398,
- 0.0332611433874654,
- 0.033259403040153,
- 0.033255352977609,
- 0.0332462547041491,
- 0.0332308783806427,
- 0.0332105530344042,
- 0.0331889181962114,
- 0.0331704764129193,
- 0.0331586965654072,
- 0.0331546590956567,
- 0.033156871161455,
- 0.033162186143014,
- 0.0331672275868594,
- 0.0331696147434949,
- 0.0331685317751633,
- 0.0331645516025775,
- 0.0331589589623387,
- 0.0331530108014662,
- 0.0331475322839984,
- 0.0331429743339667,
- 0.0331397271595907,
- 0.0331383341456001,
- 0.0331393760956692,
- 0.033143071475494,
- 0.033148858707941,
- 0.0331552712982076,
- 0.0331602811811742,
- 0.0331620354160231,
- 0.0331596635154784,
- 0.0331537382756654,
- 0.0331461222917056,
- 0.0331392534637603,
- 0.0331352148998261,
- 0.0331350236915798,
- 0.0331384329660782,
- 0.0331442802563944,
- 0.0331511711010307,
- 0.0331581539274832,
- 0.0331650662387195,
- 0.0331724100634531,
- 0.0331808690924358,
- 0.0331907714803893,
- 0.0332018132987093,
- 0.0332131820408827,
- 0.0332239734375669,
- 0.0332336312011881,
- 0.0332421459275271,
- 0.0332499116537625,
- 0.0332573602591741,
- 0.0332646388573858,
- 0.0332715604688576,
- 0.033277858722012,
- 0.0332835536796198,
- 0.0332891442073451,
- 0.0332954306402668,
- 0.0333029725987684,
- 0.0333114055834155,
- 0.0333189987696073,
- 0.033322841658896,
- 0.0333198043967968,
- 0.0333079667444219,
- 0.0332878220653073,
- 0.0332625585386718,
- 0.0332371584477682,
- 0.0332166528418371,
- 0.0332042649967062,
- 0.033200213605781,
- 0.0332016723317661,
- 0.0332039186832311,
- 0.033202207675184,
- 0.0331935820996309,
- 0.0331778636748825,
- 0.0331574590982866,
- 0.0331361538187438,
- 0.0331174909059762,
- 0.0331034724664885,
- 0.0330941292580842,
- 0.0330880564530712,
- 0.0330835203034004,
- 0.0330794762360459,
- 0.0330759635537723,
- 0.0330737633188862,
- 0.0330736472167808,
- 0.0330757556267388,
- 0.0330795347210726,
- 0.0330843021948514,
- 0.0330900800891891,
- 0.0330980814254139,
- 0.0331103590202978,
- 0.0331285923976704,
- 0.0331525360512407,
- 0.0331789635864567,
- 0.0332018501087713,
- 0.0332140553769511,
- 0.0332100555682915,
- 0.0331886156044855,
- 0.0331540880183488,
- 0.0331155127049126,
- 0.0330836899910972,
- 0.0330673531424011,
- 0.0330699749830093,
- 0.0330884876481429,
- 0.033114467295694,
- 0.0331374051215013,
- 0.0331488282370612,
- 0.0331455892883468,
- 0.0331309170493532,
- 0.0331127927345542,
- 0.0331004178622808,
- 0.0331003346854472,
- 0.0331137988249917,
- 0.0331363792195369,
- 0.0331598211004228,
- 0.0331753212401125,
- 0.0331768360041078,
- 0.0331630854180217,
- 0.0331375453160234,
- 0.0331066511514725,
- 0.033077193498769,
- 0.0330540951910091,
- 0.0330393941297552,
- 0.0330325887192969,
- 0.0330318869747602,
- 0.0330355830899195,
- 0.033042858106056,
- 0.0330537026777262,
- 0.0330681821224612,
- 0.0330856226991547,
- 0.0331042952067289,
- 0.0331218358828622,
- 0.0331362015718093,
- 0.033146654844389,
- 0.0331542380550203,
- 0.0331614120790746,
- 0.0331709195100538,
- 0.0331843364136145,
- 0.0332010013602112,
- 0.0332178986086949,
- 0.0332306400231445,
- 0.0332351506003036,
- 0.0332293091741061,
- 0.0332138231135598,
- 0.0331919944647957,
- 0.0331685447234878,
- 0.0331480475153735,
- 0.0331336149969833,
- 0.0331262954061234,
- 0.0331252966833683,
- 0.0331288150037169,
- 0.0331350246651681,
- 0.0331427427291931,
- 0.0331514639557533,
- 0.0331608249884943,
- 0.0331699079132698,
- 0.0331768985266356,
- 0.0331794052140172,
- 0.0331753771673878,
- 0.0331642564121373,
- 0.0331478601672345,
- 0.0331305170043286,
- 0.0331181845833561,
- 0.033116668273739,
- 0.0331295126315248,
- 0.0331563940498951,
- 0.0331927162496877,
- 0.0332306518735232,
- 0.0332613230113206,
- 0.0332774112307829,
- 0.0332753450925133,
- 0.0332563340692005,
- 0.0332258754562445,
- 0.0331918893481521,
- 0.0331621640397374,
- 0.0331420737901552,
- 0.033133400929467,
- 0.033134604520146,
- 0.0331422603032685,
- 0.0331529306148641,
- 0.0331646024568428,
- 0.0331770899952562,
- 0.0331913037748259,
- 0.033207818107748,
- 0.0332255013199017,
- 0.0332409738677614,
- 0.0332493106638415,
- 0.0332458265287238,
- 0.0332282207509229,
- 0.0331980931837625,
- 0.0331610508408934,
- 0.033125224167174,
- 0.0330987082623221,
- 0.0330869040417987,
- 0.0330907782337036,
- 0.0331067088010369,
- 0.0331279819648075,
- 0.0331473651928996,
- 0.0331597343594274,
- 0.0331636950351214,
- 0.0331615704427516,
- 0.0331578497883294,
- 0.0331568475696339,
- 0.0331606126826436,
- 0.033167957698464,
- 0.0331749730894759,
- 0.0331767667724236,
- 0.033169661345326,
- 0.033152893908258,
- 0.03312909388948,
- 0.0331033697524846,
- 0.0330814450644272,
- 0.0330676513713782,
- 0.0330635650909505,
- 0.033067733016613,
- 0.0330764605343785,
- 0.0330852455656723,
- 0.0330902695360805,
- 0.0330894375654458,
- 0.0330827186136605,
- 0.033071834999287,
- 0.0330595612679772,
- 0.0330489482873374,
- 0.0330426993145111,
- 0.0330427635769421,
- 0.0330500813908819,
- 0.0330643893618815,
- 0.0330840772267513,
- 0.0331062052315623,
- 0.0331268430490172,
- 0.033141818643556,
- 0.0331477841227023,
- 0.0331433018649249,
- 0.0331295463554853,
- 0.0331102891817482,
- 0.0330910738826783,
- 0.0330777831978833,
- 0.0330750199163185,
- 0.0330847896874764,
- 0.0331058892835594,
- 0.03313419935929,
- 0.0331638023798479,
- 0.033188575364036,
- 0.0332037585029809,
- 0.033207049038707,
- 0.0331989722148256,
- 0.033182510996751,
- 0.0331621456050927,
- 0.0331425709661913,
- 0.0331274512697991,
- 0.0331185912428268,
- 0.0331157795156017,
- 0.0331173054844157,
- 0.0331208942434733,
- 0.0331246742269199,
- 0.0331278202962231,
- 0.0331306499747673,
- 0.0331341407639565,
- 0.0331390569619974,
- 0.0331450744745434,
- 0.0331503653934128,
- 0.0331519602734507,
- 0.03314687044354,
- 0.033133571058247,
- 0.033113198555384,
- 0.0330898351178032,
- 0.033069567939482,
- 0.0330585187870239,
- 0.0330605208618208,
- 0.0330753481099922,
- 0.0330982697085487,
- 0.03312125972085,
- 0.0331355856663677,
- 0.0331349190197283,
- 0.033117783147247,
- 0.0330882962391084,
- 0.0330548180078759,
- 0.0330269992575755,
- 0.0330124048806304,
- 0.033014009510772,
- 0.0330294571259505,
- 0.0330522712597622,
- 0.0330744754208941,
- 0.033089563755721,
- 0.0330946419945136,
- 0.0330909289334922,
- 0.0330825394118583,
- 0.0330742181683643,
- 0.0330691017222595,
- 0.0330674909772491,
- 0.0330671046847433,
- 0.0330645959304179,
- 0.0330575471977295,
- 0.0330459668037141,
- 0.0330325811415372,
- 0.0330218086046502,
- 0.0330179068584215,
- 0.0330231258331496,
- 0.0330366585940646,
- 0.0330548158232556,
- 0.0330723246819367,
- 0.033084191445713,
- 0.0330873689304995,
- 0.0330816113223727,
- 0.033069287209302,
- 0.0330543552808819,
- 0.0330409967747846,
- 0.0330324450109782,
- 0.0330303655549337,
- 0.0330348326978652,
- 0.0330446883411491,
- 0.0330579886605426,
- 0.0330723484519606,
- 0.033085174688796,
- 0.0330939107109925,
- 0.0330964210064815,
- 0.0330915358210375,
- 0.0330796028957154,
- 0.0330627630867619,
- 0.0330446836372656,
- 0.0330296778426447,
- 0.0330214266423628,
- 0.03302174785015,
- 0.0330299146621478,
- 0.0330428672497028,
- 0.0330563294281673,
- 0.0330664537481226,
- 0.0330713477247089,
- 0.0330718318676221,
- 0.0330710693249939,
- 0.03307316276903,
- 0.0330812470749768,
- 0.0330958489616151,
- 0.0331142293826691,
- 0.0331310566816082,
- 0.0331402058227915,
- 0.0331369942597778,
- 0.0331199858090332,
- 0.0330916810451936,
- 0.0330578412486727,
- 0.0330256841181047,
- 0.0330015951162062,
- 0.0329891842564861,
- 0.0329883861837142,
- 0.0329958844762902,
- 0.0330066265529301,
- 0.0330158095163538,
- 0.0330205906363464,
- 0.0330209182953337,
- 0.0330192276657966,
- 0.0330191862063297,
- 0.0330240368333466,
- 0.0330352074240764,
- 0.0330516911584817,
- 0.0330703616148044,
- 0.0330870342119738,
- 0.0330978397917057,
- 0.0331003961859932,
- 0.0330943758534976,
- 0.0330813416480346,
- 0.033064035655557,
- 0.0330454964041831,
- 0.0330283662783218,
- 0.0330145805406051,
- 0.0330054127186067,
- 0.033001684751498,
- 0.0330038969926726,
- 0.0330121194195237,
- 0.0330256737177715,
- 0.0330428191990679,
- 0.033060720316829,
- 0.0330758795072204,
- 0.0330850133274904,
- 0.0330861227484667,
- 0.0330793559601438,
- 0.0330672673020106,
- 0.0330542694376606,
- 0.0330453877986665,
- 0.0330447076611166,
- 0.0330540270329662,
- 0.0330721631507638,
- 0.0330951558739826,
- 0.0331173332871676,
- 0.033132919957948,
- 0.0331376679882012,
- 0.0331299753329783,
- 0.0331111562089153,
- 0.0330848547212141,
- 0.033055885383433,
- 0.0330289252107241,
- 0.0330074546450845,
- 0.0329932032416531,
- 0.0329861699267956,
- 0.0329851128102635,
- 0.0329882815974558,
- 0.0329941228811844,
- 0.0330017293542042,
- 0.0330109090665572,
- 0.0330218860936011,
- 0.0330347716914305,
- 0.0330490305590089,
- 0.0330631825594183,
- 0.0330749128683945,
- 0.0330816235417555,
- 0.0330812848089382,
- 0.033073293751204,
- 0.0330589870171141,
- 0.0330415323211814,
- 0.0330251398974143,
- 0.0330138145037142,
- 0.0330100845568961,
- 0.0330141922043425,
- 0.0330240830301119,
- 0.0330362510118865,
- 0.0330471636119663,
- 0.0330547212363198,
- 0.0330591209248353,
- 0.0330626925068484,
- 0.0330687187146137,
- 0.033079728649721,
- 0.0330960115270435,
- 0.0331150192570504,
- 0.0331319794960079,
- 0.0331415705241172,
- 0.0331400577944031,
- 0.0331270185278003,
- 0.0331058591544466,
- 0.0330828133422498,
- 0.0330647896322673,
- 0.033056944107685,
- 0.0330609288910255,
- 0.0330744407248039,
- 0.0330921773646449,
- 0.0331078075408401,
- 0.0331162088383884,
- 0.0331151366595712,
- 0.0331057266608116,
- 0.0330917364887345,
- 0.0330779643925107,
- 0.0330685700666457,
- 0.0330659471757851,
- 0.033070449689842,
- 0.033080863610669,
- 0.0330952345502796,
- 0.0331116079953759,
- 0.0331283946739867,
- 0.0331443297393204,
- 0.0331582171635432,
- 0.033168743612393,
- 0.0331745784826402,
- 0.0331747836906279,
- 0.0331693343674616,
- 0.0331594305553866,
- 0.0331473505757168,
- 0.0331358297742037,
- 0.0331272025306804,
- 0.0331226713766983,
- 0.0331220077923457,
- 0.0331237915937545,
- 0.0331260581036198,
- 0.0331270491128567,
- 0.0331257383887485,
- 0.0331219453522656,
- 0.0331160838297594,
- 0.0331087776409725,
- 0.0331006084341501,
- 0.0330921407856131,
- 0.0330841735696303,
- 0.0330779984765852,
- 0.0330753944823667,
- 0.0330781951971646,
- 0.0330875003026903,
- 0.0331028435132967,
- 0.0331217360390468,
- 0.0331399073226601,
- 0.0331523049535926,
- 0.0331546027175062,
- 0.0331447199657482,
- 0.0331237789046972,
- 0.0330960780613131,
- 0.033068009493661,
- 0.0330462513138105,
- 0.0330358368110042,
- 0.0330387243566126,
- 0.0330532938403384,
- 0.0330748886981618,
- 0.0330972177484735,
- 0.033114194820421,
- 0.0331216683204738,
- 0.0331185154508622,
- 0.0331067638906445,
- 0.0330907170753862,
- 0.0330753936409533,
- 0.0330648217279833,
- 0.0330607691391553,
- 0.0330623308814353,
- 0.0330664961075529,
- 0.0330694765418153,
- 0.0330683078540868,
- 0.0330621274557026,
- 0.0330526343121351,
- 0.0330435250075466,
- 0.0330390801882472,
- 0.0330424121836475,
- 0.0330540518477907,
- 0.0330714719134325,
- 0.0330898134234916,
- 0.0331035979662733,
- 0.0331087626986906,
- 0.0331041676249174,
- 0.0330919216235143,
- 0.0330763865346865,
- 0.0330623036530382,
- 0.0330528680647874,
- 0.0330485912215712,
- 0.0330474444121663,
- 0.0330462068276986,
- 0.0330423832654179,
- 0.0330357641337991,
- 0.0330288413127296,
- 0.0330258259387509,
- 0.0330306800867616,
- 0.0330450478350567,
- 0.0330670440551733,
- 0.0330915150644038,
- 0.0331117629631946,
- 0.0331220641262475,
- 0.0331199012361914,
- 0.0331069030041017,
- 0.0330880659220945,
- 0.0330696409259554,
- 0.0330566749719607,
- 0.0330513034317985,
- 0.0330524858931256,
- 0.0330571884411931,
- 0.0330623494834813,
- 0.0330666127103521,
- 0.0330709426855584,
- 0.033077812214017,
- 0.0330893890077309,
- 0.0331056771201616,
- 0.0331236241691552,
- 0.0331377689820037,
- 0.0331422784215425,
- 0.0331335289829272,
- 0.033112054582535,
- 0.0330829004812151,
- 0.033054123243323,
- 0.0330340156323095,
- 0.033028189215107,
- 0.0330376692031271,
- 0.0330586920090746,
- 0.0330841968951633,
- 0.0331063608988991,
- 0.0331191693319809,
- 0.0331200639377347,
- 0.0331101480777398,
- 0.033093072157654,
- 0.0330732749835439,
- 0.0330544434525941,
- 0.0330387939293869,
- 0.0330272514886405,
- 0.0330201270075027,
- 0.0330177170897066,
- 0.0330204182236415,
- 0.0330283059151993,
- 0.0330404751041711,
- 0.0330546132409166,
- 0.033067205635609,
- 0.0330744677587972,
- 0.0330736901667171,
- 0.0330643926883754,
- 0.0330487091675735,
- 0.0330307699658311,
- 0.033015314870023,
- 0.033006098136105,
- 0.0330047050218234,
- 0.0330102050717435,
- 0.0330197234353017,
- 0.0330296473771682,
- 0.0330369447013911,
- 0.033040069085653,
- 0.0330391684172004,
- 0.0330356584357376,
- 0.0330314818910057,
- 0.0330284276481708,
- 0.0330277533378477,
- 0.0330301438106351,
- 0.0330358606692945,
- 0.0330448744888439,
- 0.0330568408121746,
- 0.0330709340315739,
- 0.0330856920352748,
- 0.0330990601982993,
- 0.0331087316874882,
- 0.0331127150011119,
- 0.0331099156333703,
- 0.0331004825290053,
- 0.033085767994593,
- 0.0330679300016593,
- 0.0330493665108187,
- 0.0330322246566743,
- 0.0330181528220706,
- 0.0330083123363011,
- 0.0330035230384878,
- 0.033004355838887,
- 0.0330110355773043,
- 0.033023154960245,
- 0.0330393541754142,
- 0.0330572030649064,
- 0.0330734762256409,
- 0.0330848461202699,
- 0.0330888114617423,
- 0.0330845321053282,
- 0.0330732365292288,
- 0.0330580145914164,
- 0.0330430401654588,
- 0.0330324766535253,
- 0.0330294126382363,
- 0.0330351295705118,
- 0.0330488614889882,
- 0.0330680441878234,
- 0.0330889328798685,
- 0.0331074212154291,
- 0.0331199063349525,
- 0.033124071201126,
- 0.0331194576580287,
- 0.0331076843658981,
- 0.033092173159931,
- 0.0330773388306606,
- 0.0330673700764323,
- 0.0330649161628002,
- 0.0330701044554488,
- 0.0330802865130843,
- 0.0330907278577505,
- 0.0330961451149041,
- 0.0330926368363438,
- 0.0330793011564662,
- 0.0330588498535693,
- 0.033036874538427,
- 0.0330199657806946,
- 0.0330133683396507,
- 0.0330190529462968,
- 0.0330349355574903,
- 0.0330555612503636,
- 0.0330740371110859,
- 0.0330845135990767,
- 0.0330842617156563,
- 0.0330745230389538,
- 0.0330598165226001,
- 0.0330460475836892,
- 0.0330382491161462,
- 0.0330388637417162,
- 0.0330471608849309,
- 0.033059866522035,
- 0.0330726078358434,
- 0.0330815173618954,
- 0.0330843746613938,
- 0.0330809458135484,
- 0.0330725687360273,
- 0.0330613403104787,
- 0.0330493540903078,
- 0.0330382983061596,
+ 0.0334880592936738,
+ 0.0334245351361307,
+ 0.0333869566286568,
+ 0.0333699599149527,
+ 0.0333607476081915,
+ 0.0333481288668502,
+ 0.0333294974849123,
+ 0.033312001371666,
+ 0.033307493325423,
+ 0.033324406654311,
+ 0.0333613622752253,
+ 0.0334062318636004,
+ 0.0334414137618731,
+ 0.0334527962428135,
+ 0.0334377392828256,
+ 0.0334075642912628,
+ 0.0333828033222869,
+ 0.0333834567689152,
+ 0.0334192362947635,
+ 0.0334845996408911,
+ 0.033560805820861,
+ 0.0336239131596817,
+ 0.0336550375623213,
+ 0.0336481622430825,
+ 0.0336118294637144,
+ 0.0335639630490658,
+ 0.033522612766907,
+ 0.033497550158505,
+ 0.033486958502766,
+ 0.0334804205672303,
+ 0.0334659707870216,
+ 0.0334370917444222,
+ 0.0333960658768012,
+ 0.0333524479629668,
+ 0.0333180377059529,
+ 0.0333012713296194,
+ 0.0333039543900308,
+ 0.0333218644918453,
+ 0.0333485406160073,
+ 0.0333796691400288,
+ 0.0334151291424547,
+ 0.0334573421622323,
+ 0.0335070331957671,
+ 0.0335592044389347,
+ 0.0336021587795229,
+ 0.0336209406911238,
+ 0.033604195587749,
+ 0.0335511216591171,
+ 0.0334743654323419,
+ 0.0333964866489404,
+ 0.0333411659891898,
+ 0.033323223665695,
+ 0.0333420660097263,
+ 0.0333816420016185,
+ 0.03341739575951,
+ 0.0334276741489814,
+ 0.0334044428917984,
+ 0.0333577420029679,
+ 0.0333112608609992,
+ 0.0332911952336877,
+ 0.033313833458062,
+ 0.0333773944039388,
+ 0.0334614930366857,
+ 0.0335347224545504,
+ 0.0335676477247551,
+ 0.0335455643718561,
+ 0.033474661173771,
+ 0.0333784237771809,
+ 0.0332866043150614,
+ 0.0332227750099173,
+ 0.0331961857425739,
+ 0.0332007254381052,
+ 0.033220538746856,
+ 0.0332392774507758,
+ 0.0332484418396514,
+ 0.0332506239264198,
+ 0.0332561702841426,
+ 0.0332754902150811,
+ 0.0333114907109778,
+ 0.0333562071164409,
+ 0.0333933878645006,
+ 0.0334059485121106,
+ 0.0333847948485197,
+ 0.0333344646132575,
+ 0.0332723250132144,
+ 0.0332214544948466,
+ 0.0332007495330112,
+ 0.0332169985108553,
+ 0.033262338010406,
+ 0.0333179497541429,
+ 0.0333623047971753,
+ 0.0333803620487177,
+ 0.0333695481152161,
+ 0.0333397511218633,
+ 0.0333075902831009,
+ 0.0332881220816901,
+ 0.033288133335081,
+ 0.0333039667546788,
+ 0.0333244487115342,
+ 0.0333371227336567,
+ 0.0333345306408127,
+ 0.0333174092219892,
+ 0.0332934499083073,
+ 0.0332727018092342,
+ 0.0332623025718211,
+ 0.033263227691387,
+ 0.0332704955570812,
+ 0.0332765432188444,
+ 0.0332759418942792,
+ 0.0332688496968963,
+ 0.033261194054821,
+ 0.0332614501118164,
+ 0.0332758552897988,
+ 0.033304648282291,
+ 0.033341198851042,
+ 0.0333744291751836,
+ 0.0333934620591649,
+ 0.0333923803316175,
+ 0.0333727576342507,
+ 0.0333426208953134,
+ 0.033312440202589,
+ 0.0332903863469368,
+ 0.033279297935159,
+ 0.0332766150301178,
+ 0.0332769515489137,
+ 0.0332758033740361,
+ 0.0332724168476355,
+ 0.0332702691243459,
+ 0.0332749705336627,
+ 0.0332910092718501,
+ 0.0333194712189712,
+ 0.0333581493053764,
+ 0.0334038899495556,
+ 0.0334556669868337,
+ 0.0335163616398821,
+ 0.0335916014243682,
+ 0.0336852499075139,
+ 0.0337931894323499,
+ 0.0338990194325657,
+ 0.0339756662680658,
+ 0.0339949026039575,
+ 0.0339428677936698,
+ 0.0338352988295137,
+ 0.0337243020090062,
+ 0.033692020737126,
+ 0.0338335973186782,
+ 0.0342362043014487,
+ 0.0349593817805188,
+ 0.0360170839716384,
+ 0.0373589539224515,
+ 0.0388528913284805,
+ 0.0402860319585022,
+ 0.0414142841792885,
+ 0.0420630729631464,
+ 0.0422125184575855,
+ 0.0419902626765894,
+ 0.041583027355828,
+ 0.0411409650479603,
+ 0.0407278111786526,
+ 0.0403239811119412,
+ 0.0398634696563193,
+ 0.0392784998600381,
+ 0.0385324135598539,
+ 0.037637131216402,
+ 0.036656817425677,
+ 0.0356922774681301,
+ 0.0348481756504622,
+ 0.0342008229510189,
+ 0.0337813120346118,
+ 0.0335746313126413,
+ 0.033529029533057,
+ 0.0335718916100755,
+ 0.033630199585907,
+ 0.0336511756970955,
+ 0.0336152171463577,
+ 0.033534936375915,
+ 0.0334416738164858,
+ 0.0333675356986946,
+ 0.033331472709007,
+ 0.033333852706428,
+ 0.0333596551329642,
+ 0.0333875331633013,
+ 0.0334002700675008,
+ 0.0333918280553973,
+ 0.0333680281629539,
+ 0.0333413699918263,
+ 0.0333234329184651,
+ 0.0333189399965028,
+ 0.0333240646785306,
+ 0.0333292374615197,
+ 0.0333246771383311,
+ 0.033305744490123,
+ 0.0332754246448713,
+ 0.033242813651962,
+ 0.0332186176417655,
+ 0.0332101274923355,
+ 0.0332181559294999,
+ 0.0332372047066352,
+ 0.0332584577780127,
+ 0.0332739003037702,
+ 0.0332794918954576,
+ 0.0332759919078612,
+ 0.0332673443595689,
+ 0.0332577675912642,
+ 0.0332492532578019,
+ 0.033240834845006,
+ 0.0332299425899665,
+ 0.0332149561147134,
+ 0.0331973369164406,
+ 0.0331819065569511,
+ 0.0331748777469967,
+ 0.0331805594275936,
+ 0.0331984964495561,
+ 0.0332227115077296,
+ 0.0332437112887263,
+ 0.0332524782274336,
+ 0.0332445552304701,
+ 0.0332221964096806,
+ 0.0331935024909324,
+ 0.03316892634396,
+ 0.0331567231749835,
+ 0.0331593422681353,
+ 0.0331723589937837,
+ 0.0331864990384639,
+ 0.0331919385609006,
+ 0.0331829344180462,
+ 0.0331605939023275,
+ 0.0331324966164609,
+ 0.0331094558645548,
+ 0.0331010187383342,
+ 0.0331116979908771,
+ 0.0331394198114158,
+ 0.0331766712402191,
+ 0.0332137380659566,
+ 0.033242561952743,
+ 0.0332594748261401,
+ 0.0332656486871905,
+ 0.0332653215319161,
+ 0.0332629958150398,
+ 0.0332611433874654,
+ 0.033259403040153,
+ 0.033255352977609,
+ 0.0332462547041491,
+ 0.0332308783806427,
+ 0.0332105530344042,
+ 0.0331889181962114,
+ 0.0331704764129193,
+ 0.0331586965654072,
+ 0.0331546590956567,
+ 0.033156871161455,
+ 0.033162186143014,
+ 0.0331672275868594,
+ 0.0331696147434949,
+ 0.0331685317751633,
+ 0.0331645516025775,
+ 0.0331589589623387,
+ 0.0331530108014662,
+ 0.0331475322839984,
+ 0.0331429743339667,
+ 0.0331397271595907,
+ 0.0331383341456001,
+ 0.0331393760956692,
+ 0.033143071475494,
+ 0.033148858707941,
+ 0.0331552712982076,
+ 0.0331602811811742,
+ 0.0331620354160231,
+ 0.0331596635154784,
+ 0.0331537382756654,
+ 0.0331461222917056,
+ 0.0331392534637603,
+ 0.0331352148998261,
+ 0.0331350236915798,
+ 0.0331384329660782,
+ 0.0331442802563944,
+ 0.0331511711010307,
+ 0.0331581539274832,
+ 0.0331650662387195,
+ 0.0331724100634531,
+ 0.0331808690924358,
+ 0.0331907714803893,
+ 0.0332018132987093,
+ 0.0332131820408827,
+ 0.0332239734375669,
+ 0.0332336312011881,
+ 0.0332421459275271,
+ 0.0332499116537625,
+ 0.0332573602591741,
+ 0.0332646388573858,
+ 0.0332715604688576,
+ 0.033277858722012,
+ 0.0332835536796198,
+ 0.0332891442073451,
+ 0.0332954306402668,
+ 0.0333029725987684,
+ 0.0333114055834155,
+ 0.0333189987696073,
+ 0.033322841658896,
+ 0.0333198043967968,
+ 0.0333079667444219,
+ 0.0332878220653073,
+ 0.0332625585386718,
+ 0.0332371584477682,
+ 0.0332166528418371,
+ 0.0332042649967062,
+ 0.033200213605781,
+ 0.0332016723317661,
+ 0.0332039186832311,
+ 0.033202207675184,
+ 0.0331935820996309,
+ 0.0331778636748825,
+ 0.0331574590982866,
+ 0.0331361538187438,
+ 0.0331174909059762,
+ 0.0331034724664885,
+ 0.0330941292580842,
+ 0.0330880564530712,
+ 0.0330835203034004,
+ 0.0330794762360459,
+ 0.0330759635537723,
+ 0.0330737633188862,
+ 0.0330736472167808,
+ 0.0330757556267388,
+ 0.0330795347210726,
+ 0.0330843021948514,
+ 0.0330900800891891,
+ 0.0330980814254139,
+ 0.0331103590202978,
+ 0.0331285923976704,
+ 0.0331525360512407,
+ 0.0331789635864567,
+ 0.0332018501087713,
+ 0.0332140553769511,
+ 0.0332100555682915,
+ 0.0331886156044855,
+ 0.0331540880183488,
+ 0.0331155127049126,
+ 0.0330836899910972,
+ 0.0330673531424011,
+ 0.0330699749830093,
+ 0.0330884876481429,
+ 0.033114467295694,
+ 0.0331374051215013,
+ 0.0331488282370612,
+ 0.0331455892883468,
+ 0.0331309170493532,
+ 0.0331127927345542,
+ 0.0331004178622808,
+ 0.0331003346854472,
+ 0.0331137988249917,
+ 0.0331363792195369,
+ 0.0331598211004228,
+ 0.0331753212401125,
+ 0.0331768360041078,
+ 0.0331630854180217,
+ 0.0331375453160234,
+ 0.0331066511514725,
+ 0.033077193498769,
+ 0.0330540951910091,
+ 0.0330393941297552,
+ 0.0330325887192969,
+ 0.0330318869747602,
+ 0.0330355830899195,
+ 0.033042858106056,
+ 0.0330537026777262,
+ 0.0330681821224612,
+ 0.0330856226991547,
+ 0.0331042952067289,
+ 0.0331218358828622,
+ 0.0331362015718093,
+ 0.033146654844389,
+ 0.0331542380550203,
+ 0.0331614120790746,
+ 0.0331709195100538,
+ 0.0331843364136145,
+ 0.0332010013602112,
+ 0.0332178986086949,
+ 0.0332306400231445,
+ 0.0332351506003036,
+ 0.0332293091741061,
+ 0.0332138231135598,
+ 0.0331919944647957,
+ 0.0331685447234878,
+ 0.0331480475153735,
+ 0.0331336149969833,
+ 0.0331262954061234,
+ 0.0331252966833683,
+ 0.0331288150037169,
+ 0.0331350246651681,
+ 0.0331427427291931,
+ 0.0331514639557533,
+ 0.0331608249884943,
+ 0.0331699079132698,
+ 0.0331768985266356,
+ 0.0331794052140172,
+ 0.0331753771673878,
+ 0.0331642564121373,
+ 0.0331478601672345,
+ 0.0331305170043286,
+ 0.0331181845833561,
+ 0.033116668273739,
+ 0.0331295126315248,
+ 0.0331563940498951,
+ 0.0331927162496877,
+ 0.0332306518735232,
+ 0.0332613230113206,
+ 0.0332774112307829,
+ 0.0332753450925133,
+ 0.0332563340692005,
+ 0.0332258754562445,
+ 0.0331918893481521,
+ 0.0331621640397374,
+ 0.0331420737901552,
+ 0.033133400929467,
+ 0.033134604520146,
+ 0.0331422603032685,
+ 0.0331529306148641,
+ 0.0331646024568428,
+ 0.0331770899952562,
+ 0.0331913037748259,
+ 0.033207818107748,
+ 0.0332255013199017,
+ 0.0332409738677614,
+ 0.0332493106638415,
+ 0.0332458265287238,
+ 0.0332282207509229,
+ 0.0331980931837625,
+ 0.0331610508408934,
+ 0.033125224167174,
+ 0.0330987082623221,
+ 0.0330869040417987,
+ 0.0330907782337036,
+ 0.0331067088010369,
+ 0.0331279819648075,
+ 0.0331473651928996,
+ 0.0331597343594274,
+ 0.0331636950351214,
+ 0.0331615704427516,
+ 0.0331578497883294,
+ 0.0331568475696339,
+ 0.0331606126826436,
+ 0.033167957698464,
+ 0.0331749730894759,
+ 0.0331767667724236,
+ 0.033169661345326,
+ 0.033152893908258,
+ 0.03312909388948,
+ 0.0331033697524846,
+ 0.0330814450644272,
+ 0.0330676513713782,
+ 0.0330635650909505,
+ 0.033067733016613,
+ 0.0330764605343785,
+ 0.0330852455656723,
+ 0.0330902695360805,
+ 0.0330894375654458,
+ 0.0330827186136605,
+ 0.033071834999287,
+ 0.0330595612679772,
+ 0.0330489482873374,
+ 0.0330426993145111,
+ 0.0330427635769421,
+ 0.0330500813908819,
+ 0.0330643893618815,
+ 0.0330840772267513,
+ 0.0331062052315623,
+ 0.0331268430490172,
+ 0.033141818643556,
+ 0.0331477841227023,
+ 0.0331433018649249,
+ 0.0331295463554853,
+ 0.0331102891817482,
+ 0.0330910738826783,
+ 0.0330777831978833,
+ 0.0330750199163185,
+ 0.0330847896874764,
+ 0.0331058892835594,
+ 0.03313419935929,
+ 0.0331638023798479,
+ 0.033188575364036,
+ 0.0332037585029809,
+ 0.033207049038707,
+ 0.0331989722148256,
+ 0.033182510996751,
+ 0.0331621456050927,
+ 0.0331425709661913,
+ 0.0331274512697991,
+ 0.0331185912428268,
+ 0.0331157795156017,
+ 0.0331173054844157,
+ 0.0331208942434733,
+ 0.0331246742269199,
+ 0.0331278202962231,
+ 0.0331306499747673,
+ 0.0331341407639565,
+ 0.0331390569619974,
+ 0.0331450744745434,
+ 0.0331503653934128,
+ 0.0331519602734507,
+ 0.03314687044354,
+ 0.033133571058247,
+ 0.033113198555384,
+ 0.0330898351178032,
+ 0.033069567939482,
+ 0.0330585187870239,
+ 0.0330605208618208,
+ 0.0330753481099922,
+ 0.0330982697085487,
+ 0.03312125972085,
+ 0.0331355856663677,
+ 0.0331349190197283,
+ 0.033117783147247,
+ 0.0330882962391084,
+ 0.0330548180078759,
+ 0.0330269992575755,
+ 0.0330124048806304,
+ 0.033014009510772,
+ 0.0330294571259505,
+ 0.0330522712597622,
+ 0.0330744754208941,
+ 0.033089563755721,
+ 0.0330946419945136,
+ 0.0330909289334922,
+ 0.0330825394118583,
+ 0.0330742181683643,
+ 0.0330691017222595,
+ 0.0330674909772491,
+ 0.0330671046847433,
+ 0.0330645959304179,
+ 0.0330575471977295,
+ 0.0330459668037141,
+ 0.0330325811415372,
+ 0.0330218086046502,
+ 0.0330179068584215,
+ 0.0330231258331496,
+ 0.0330366585940646,
+ 0.0330548158232556,
+ 0.0330723246819367,
+ 0.033084191445713,
+ 0.0330873689304995,
+ 0.0330816113223727,
+ 0.033069287209302,
+ 0.0330543552808819,
+ 0.0330409967747846,
+ 0.0330324450109782,
+ 0.0330303655549337,
+ 0.0330348326978652,
+ 0.0330446883411491,
+ 0.0330579886605426,
+ 0.0330723484519606,
+ 0.033085174688796,
+ 0.0330939107109925,
+ 0.0330964210064815,
+ 0.0330915358210375,
+ 0.0330796028957154,
+ 0.0330627630867619,
+ 0.0330446836372656,
+ 0.0330296778426447,
+ 0.0330214266423628,
+ 0.03302174785015,
+ 0.0330299146621478,
+ 0.0330428672497028,
+ 0.0330563294281673,
+ 0.0330664537481226,
+ 0.0330713477247089,
+ 0.0330718318676221,
+ 0.0330710693249939,
+ 0.03307316276903,
+ 0.0330812470749768,
+ 0.0330958489616151,
+ 0.0331142293826691,
+ 0.0331310566816082,
+ 0.0331402058227915,
+ 0.0331369942597778,
+ 0.0331199858090332,
+ 0.0330916810451936,
+ 0.0330578412486727,
+ 0.0330256841181047,
+ 0.0330015951162062,
+ 0.0329891842564861,
+ 0.0329883861837142,
+ 0.0329958844762902,
+ 0.0330066265529301,
+ 0.0330158095163538,
+ 0.0330205906363464,
+ 0.0330209182953337,
+ 0.0330192276657966,
+ 0.0330191862063297,
+ 0.0330240368333466,
+ 0.0330352074240764,
+ 0.0330516911584817,
+ 0.0330703616148044,
+ 0.0330870342119738,
+ 0.0330978397917057,
+ 0.0331003961859932,
+ 0.0330943758534976,
+ 0.0330813416480346,
+ 0.033064035655557,
+ 0.0330454964041831,
+ 0.0330283662783218,
+ 0.0330145805406051,
+ 0.0330054127186067,
+ 0.033001684751498,
+ 0.0330038969926726,
+ 0.0330121194195237,
+ 0.0330256737177715,
+ 0.0330428191990679,
+ 0.033060720316829,
+ 0.0330758795072204,
+ 0.0330850133274904,
+ 0.0330861227484667,
+ 0.0330793559601438,
+ 0.0330672673020106,
+ 0.0330542694376606,
+ 0.0330453877986665,
+ 0.0330447076611166,
+ 0.0330540270329662,
+ 0.0330721631507638,
+ 0.0330951558739826,
+ 0.0331173332871676,
+ 0.033132919957948,
+ 0.0331376679882012,
+ 0.0331299753329783,
+ 0.0331111562089153,
+ 0.0330848547212141,
+ 0.033055885383433,
+ 0.0330289252107241,
+ 0.0330074546450845,
+ 0.0329932032416531,
+ 0.0329861699267956,
+ 0.0329851128102635,
+ 0.0329882815974558,
+ 0.0329941228811844,
+ 0.0330017293542042,
+ 0.0330109090665572,
+ 0.0330218860936011,
+ 0.0330347716914305,
+ 0.0330490305590089,
+ 0.0330631825594183,
+ 0.0330749128683945,
+ 0.0330816235417555,
+ 0.0330812848089382,
+ 0.033073293751204,
+ 0.0330589870171141,
+ 0.0330415323211814,
+ 0.0330251398974143,
+ 0.0330138145037142,
+ 0.0330100845568961,
+ 0.0330141922043425,
+ 0.0330240830301119,
+ 0.0330362510118865,
+ 0.0330471636119663,
+ 0.0330547212363198,
+ 0.0330591209248353,
+ 0.0330626925068484,
+ 0.0330687187146137,
+ 0.033079728649721,
+ 0.0330960115270435,
+ 0.0331150192570504,
+ 0.0331319794960079,
+ 0.0331415705241172,
+ 0.0331400577944031,
+ 0.0331270185278003,
+ 0.0331058591544466,
+ 0.0330828133422498,
+ 0.0330647896322673,
+ 0.033056944107685,
+ 0.0330609288910255,
+ 0.0330744407248039,
+ 0.0330921773646449,
+ 0.0331078075408401,
+ 0.0331162088383884,
+ 0.0331151366595712,
+ 0.0331057266608116,
+ 0.0330917364887345,
+ 0.0330779643925107,
+ 0.0330685700666457,
+ 0.0330659471757851,
+ 0.033070449689842,
+ 0.033080863610669,
+ 0.0330952345502796,
+ 0.0331116079953759,
+ 0.0331283946739867,
+ 0.0331443297393204,
+ 0.0331582171635432,
+ 0.033168743612393,
+ 0.0331745784826402,
+ 0.0331747836906279,
+ 0.0331693343674616,
+ 0.0331594305553866,
+ 0.0331473505757168,
+ 0.0331358297742037,
+ 0.0331272025306804,
+ 0.0331226713766983,
+ 0.0331220077923457,
+ 0.0331237915937545,
+ 0.0331260581036198,
+ 0.0331270491128567,
+ 0.0331257383887485,
+ 0.0331219453522656,
+ 0.0331160838297594,
+ 0.0331087776409725,
+ 0.0331006084341501,
+ 0.0330921407856131,
+ 0.0330841735696303,
+ 0.0330779984765852,
+ 0.0330753944823667,
+ 0.0330781951971646,
+ 0.0330875003026903,
+ 0.0331028435132967,
+ 0.0331217360390468,
+ 0.0331399073226601,
+ 0.0331523049535926,
+ 0.0331546027175062,
+ 0.0331447199657482,
+ 0.0331237789046972,
+ 0.0330960780613131,
+ 0.033068009493661,
+ 0.0330462513138105,
+ 0.0330358368110042,
+ 0.0330387243566126,
+ 0.0330532938403384,
+ 0.0330748886981618,
+ 0.0330972177484735,
+ 0.033114194820421,
+ 0.0331216683204738,
+ 0.0331185154508622,
+ 0.0331067638906445,
+ 0.0330907170753862,
+ 0.0330753936409533,
+ 0.0330648217279833,
+ 0.0330607691391553,
+ 0.0330623308814353,
+ 0.0330664961075529,
+ 0.0330694765418153,
+ 0.0330683078540868,
+ 0.0330621274557026,
+ 0.0330526343121351,
+ 0.0330435250075466,
+ 0.0330390801882472,
+ 0.0330424121836475,
+ 0.0330540518477907,
+ 0.0330714719134325,
+ 0.0330898134234916,
+ 0.0331035979662733,
+ 0.0331087626986906,
+ 0.0331041676249174,
+ 0.0330919216235143,
+ 0.0330763865346865,
+ 0.0330623036530382,
+ 0.0330528680647874,
+ 0.0330485912215712,
+ 0.0330474444121663,
+ 0.0330462068276986,
+ 0.0330423832654179,
+ 0.0330357641337991,
+ 0.0330288413127296,
+ 0.0330258259387509,
+ 0.0330306800867616,
+ 0.0330450478350567,
+ 0.0330670440551733,
+ 0.0330915150644038,
+ 0.0331117629631946,
+ 0.0331220641262475,
+ 0.0331199012361914,
+ 0.0331069030041017,
+ 0.0330880659220945,
+ 0.0330696409259554,
+ 0.0330566749719607,
+ 0.0330513034317985,
+ 0.0330524858931256,
+ 0.0330571884411931,
+ 0.0330623494834813,
+ 0.0330666127103521,
+ 0.0330709426855584,
+ 0.033077812214017,
+ 0.0330893890077309,
+ 0.0331056771201616,
+ 0.0331236241691552,
+ 0.0331377689820037,
+ 0.0331422784215425,
+ 0.0331335289829272,
+ 0.033112054582535,
+ 0.0330829004812151,
+ 0.033054123243323,
+ 0.0330340156323095,
+ 0.033028189215107,
+ 0.0330376692031271,
+ 0.0330586920090746,
+ 0.0330841968951633,
+ 0.0331063608988991,
+ 0.0331191693319809,
+ 0.0331200639377347,
+ 0.0331101480777398,
+ 0.033093072157654,
+ 0.0330732749835439,
+ 0.0330544434525941,
+ 0.0330387939293869,
+ 0.0330272514886405,
+ 0.0330201270075027,
+ 0.0330177170897066,
+ 0.0330204182236415,
+ 0.0330283059151993,
+ 0.0330404751041711,
+ 0.0330546132409166,
+ 0.033067205635609,
+ 0.0330744677587972,
+ 0.0330736901667171,
+ 0.0330643926883754,
+ 0.0330487091675735,
+ 0.0330307699658311,
+ 0.033015314870023,
+ 0.033006098136105,
+ 0.0330047050218234,
+ 0.0330102050717435,
+ 0.0330197234353017,
+ 0.0330296473771682,
+ 0.0330369447013911,
+ 0.033040069085653,
+ 0.0330391684172004,
+ 0.0330356584357376,
+ 0.0330314818910057,
+ 0.0330284276481708,
+ 0.0330277533378477,
+ 0.0330301438106351,
+ 0.0330358606692945,
+ 0.0330448744888439,
+ 0.0330568408121746,
+ 0.0330709340315739,
+ 0.0330856920352748,
+ 0.0330990601982993,
+ 0.0331087316874882,
+ 0.0331127150011119,
+ 0.0331099156333703,
+ 0.0331004825290053,
+ 0.033085767994593,
+ 0.0330679300016593,
+ 0.0330493665108187,
+ 0.0330322246566743,
+ 0.0330181528220706,
+ 0.0330083123363011,
+ 0.0330035230384878,
+ 0.033004355838887,
+ 0.0330110355773043,
+ 0.033023154960245,
+ 0.0330393541754142,
+ 0.0330572030649064,
+ 0.0330734762256409,
+ 0.0330848461202699,
+ 0.0330888114617423,
+ 0.0330845321053282,
+ 0.0330732365292288,
+ 0.0330580145914164,
+ 0.0330430401654588,
+ 0.0330324766535253,
+ 0.0330294126382363,
+ 0.0330351295705118,
+ 0.0330488614889882,
+ 0.0330680441878234,
+ 0.0330889328798685,
+ 0.0331074212154291,
+ 0.0331199063349525,
+ 0.033124071201126,
+ 0.0331194576580287,
+ 0.0331076843658981,
+ 0.033092173159931,
+ 0.0330773388306606,
+ 0.0330673700764323,
+ 0.0330649161628002,
+ 0.0330701044554488,
+ 0.0330802865130843,
+ 0.0330907278577505,
+ 0.0330961451149041,
+ 0.0330926368363438,
+ 0.0330793011564662,
+ 0.0330588498535693,
+ 0.033036874538427,
+ 0.0330199657806946,
+ 0.0330133683396507,
+ 0.0330190529462968,
+ 0.0330349355574903,
+ 0.0330555612503636,
+ 0.0330740371110859,
+ 0.0330845135990767,
+ 0.0330842617156563,
+ 0.0330745230389538,
+ 0.0330598165226001,
+ 0.0330460475836892,
+ 0.0330382491161462,
+ 0.0330388637417162,
+ 0.0330471608849309,
+ 0.033059866522035,
+ 0.0330726078358434,
+ 0.0330815173618954,
+ 0.0330843746613938,
+ 0.0330809458135484,
+ 0.0330725687360273,
+ 0.0330613403104787,
+ 0.0330493540903078,
+ 0.0330382983061596,
0.0330294553987259
- ],
- "fill": "none",
+ ],
+ "fill": "none",
"line": {
- "color": "#1f77b4",
- "dash": "solid",
+ "color": "#1f77b4",
+ "dash": "solid",
"shape": "linear"
- },
- "mode": "lines",
- "name": "(15 BPM, 15.5 BPM)",
- "opacity": 1,
- "showlegend": true,
- "type": "scatter",
- "uid": "9a0a91",
- "visible": true,
- "xaxis": "x",
+ },
+ "mode": "lines",
+ "name": "(15 BPM, 15.5 BPM)",
+ "opacity": 1,
+ "showlegend": true,
+ "type": "scatter",
+ "visible": true,
+ "xaxis": "x",
"yaxis": "y"
- },
+ },
{
"x": [
- 6,
- 6.06,
- 6.12,
- 6.18,
- 6.24,
- 6.3,
- 6.36,
- 6.42,
- 6.48,
- 6.54,
- 6.6,
- 6.66,
- 6.72,
- 6.78,
- 6.84,
- 6.9,
- 6.96,
- 7.02,
- 7.08,
- 7.14,
- 7.2,
- 7.26,
- 7.32,
- 7.38,
- 7.44,
- 7.5,
- 7.56,
- 7.62,
- 7.68,
- 7.74,
- 7.8,
- 7.86,
- 7.92,
- 7.98,
- 8.04,
- 8.1,
- 8.16,
- 8.22,
- 8.28,
- 8.34,
- 8.4,
- 8.46,
- 8.52,
- 8.58,
- 8.64,
- 8.7,
- 8.76,
- 8.82,
- 8.88,
- 8.94,
- 9,
- 9.06,
- 9.12,
- 9.18,
- 9.24,
- 9.3,
- 9.36,
- 9.42,
- 9.48,
- 9.54,
- 9.6,
- 9.66,
- 9.72,
- 9.78,
- 9.84,
- 9.9,
- 9.96,
- 10.02,
- 10.08,
- 10.14,
- 10.2,
- 10.26,
- 10.32,
- 10.38,
- 10.44,
- 10.5,
- 10.56,
- 10.62,
- 10.68,
- 10.74,
- 10.8,
- 10.86,
- 10.92,
- 10.98,
- 11.04,
- 11.1,
- 11.16,
- 11.22,
- 11.28,
- 11.34,
- 11.4,
- 11.46,
- 11.52,
- 11.58,
- 11.64,
- 11.7,
- 11.76,
- 11.82,
- 11.88,
- 11.94,
- 12,
- 12.06,
- 12.12,
- 12.18,
- 12.24,
- 12.3,
- 12.36,
- 12.42,
- 12.48,
- 12.54,
- 12.6,
- 12.66,
- 12.72,
- 12.78,
- 12.84,
- 12.9,
- 12.96,
- 13.02,
- 13.08,
- 13.14,
- 13.2,
- 13.26,
- 13.32,
- 13.38,
- 13.44,
- 13.5,
- 13.56,
- 13.62,
- 13.68,
- 13.74,
- 13.8,
- 13.86,
- 13.92,
- 13.98,
- 14.04,
- 14.1,
- 14.16,
- 14.22,
- 14.28,
- 14.34,
- 14.4,
- 14.46,
- 14.52,
- 14.58,
- 14.64,
- 14.7,
- 14.76,
- 14.82,
- 14.88,
- 14.94,
- 15,
- 15.06,
- 15.12,
- 15.18,
- 15.24,
- 15.3,
- 15.36,
- 15.42,
- 15.48,
- 15.54,
- 15.6,
- 15.66,
- 15.72,
- 15.78,
- 15.84,
- 15.9,
- 15.96,
- 16.02,
- 16.08,
- 16.14,
- 16.2,
- 16.26,
- 16.32,
- 16.38,
- 16.44,
- 16.5,
- 16.56,
- 16.62,
- 16.68,
- 16.74,
- 16.8,
- 16.86,
- 16.92,
- 16.98,
- 17.04,
- 17.1,
- 17.16,
- 17.22,
- 17.28,
- 17.34,
- 17.4,
- 17.46,
- 17.52,
- 17.58,
- 17.64,
- 17.7,
- 17.76,
- 17.82,
- 17.88,
- 17.94,
- 18,
- 18.06,
- 18.12,
- 18.18,
- 18.24,
- 18.3,
- 18.36,
- 18.42,
- 18.48,
- 18.54,
- 18.6,
- 18.66,
- 18.72,
- 18.78,
- 18.84,
- 18.9,
- 18.96,
- 19.02,
- 19.08,
- 19.14,
- 19.2,
- 19.26,
- 19.32,
- 19.38,
- 19.44,
- 19.5,
- 19.56,
- 19.62,
- 19.68,
- 19.74,
- 19.8,
- 19.86,
- 19.92,
- 19.98,
- 20.04,
- 20.1,
- 20.16,
- 20.22,
- 20.28,
- 20.34,
- 20.4,
- 20.46,
- 20.52,
- 20.58,
- 20.64,
- 20.7,
- 20.76,
- 20.82,
- 20.88,
- 20.94,
- 21,
- 21.06,
- 21.12,
- 21.18,
- 21.24,
- 21.3,
- 21.36,
- 21.42,
- 21.48,
- 21.54,
- 21.6,
- 21.66,
- 21.72,
- 21.78,
- 21.84,
- 21.9,
- 21.96,
- 22.02,
- 22.08,
- 22.14,
- 22.2,
- 22.26,
- 22.32,
- 22.38,
- 22.44,
- 22.5,
- 22.56,
- 22.62,
- 22.68,
- 22.74,
- 22.8,
- 22.86,
- 22.92,
- 22.98,
- 23.04,
- 23.1,
- 23.16,
- 23.22,
- 23.28,
- 23.34,
- 23.4,
- 23.46,
- 23.52,
- 23.58,
- 23.64,
- 23.7,
- 23.76,
- 23.82,
- 23.88,
- 23.94,
- 24,
- 24.06,
- 24.12,
- 24.18,
- 24.24,
- 24.3,
- 24.36,
- 24.42,
- 24.48,
- 24.54,
- 24.6,
- 24.66,
- 24.72,
- 24.78,
- 24.84,
- 24.9,
- 24.96,
- 25.02,
- 25.08,
- 25.14,
- 25.2,
- 25.26,
- 25.32,
- 25.38,
- 25.44,
- 25.5,
- 25.56,
- 25.62,
- 25.68,
- 25.74,
- 25.8,
- 25.86,
- 25.92,
- 25.98,
- 26.04,
- 26.1,
- 26.16,
- 26.22,
- 26.28,
- 26.34,
- 26.4,
- 26.46,
- 26.52,
- 26.58,
- 26.64,
- 26.7,
- 26.76,
- 26.82,
- 26.88,
- 26.94,
- 27,
- 27.06,
- 27.12,
- 27.18,
- 27.24,
- 27.3,
- 27.36,
- 27.42,
- 27.48,
- 27.54,
- 27.6,
- 27.66,
- 27.72,
- 27.78,
- 27.84,
- 27.9,
- 27.96,
- 28.02,
- 28.08,
- 28.14,
- 28.2,
- 28.26,
- 28.32,
- 28.38,
- 28.44,
- 28.5,
- 28.56,
- 28.62,
- 28.68,
- 28.74,
- 28.8,
- 28.86,
- 28.92,
- 28.98,
- 29.04,
- 29.1,
- 29.16,
- 29.22,
- 29.28,
- 29.34,
- 29.4,
- 29.46,
- 29.52,
- 29.58,
- 29.64,
- 29.7,
- 29.76,
- 29.82,
- 29.88,
- 29.94,
- 30,
- 30.06,
- 30.12,
- 30.18,
- 30.24,
- 30.3,
- 30.36,
- 30.42,
- 30.48,
- 30.54,
- 30.6,
- 30.66,
- 30.72,
- 30.78,
- 30.84,
- 30.9,
- 30.96,
- 31.02,
- 31.08,
- 31.14,
- 31.2,
- 31.26,
- 31.32,
- 31.38,
- 31.44,
- 31.5,
- 31.56,
- 31.62,
- 31.68,
- 31.74,
- 31.8,
- 31.86,
- 31.92,
- 31.98,
- 32.04,
- 32.1,
- 32.16,
- 32.22,
- 32.28,
- 32.34,
- 32.4,
- 32.46,
- 32.52,
- 32.58,
- 32.64,
- 32.7,
- 32.76,
- 32.82,
- 32.88,
- 32.94,
- 33,
- 33.06,
- 33.12,
- 33.18,
- 33.24,
- 33.3,
- 33.36,
- 33.42,
- 33.48,
- 33.54,
- 33.6,
- 33.66,
- 33.72,
- 33.78,
- 33.84,
- 33.9,
- 33.96,
- 34.02,
- 34.08,
- 34.14,
- 34.2,
- 34.26,
- 34.32,
- 34.38,
- 34.44,
- 34.5,
- 34.56,
- 34.62,
- 34.68,
- 34.74,
- 34.8,
- 34.86,
- 34.92,
- 34.98,
- 35.04,
- 35.1,
- 35.16,
- 35.22,
- 35.28,
- 35.34,
- 35.4,
- 35.46,
- 35.52,
- 35.58,
- 35.64,
- 35.7,
- 35.76,
- 35.82,
- 35.88,
- 35.94,
- 36,
- 36.06,
- 36.12,
- 36.18,
- 36.24,
- 36.3,
- 36.36,
- 36.42,
- 36.48,
- 36.54,
- 36.6,
- 36.66,
- 36.72,
- 36.78,
- 36.84,
- 36.9,
- 36.96,
- 37.02,
- 37.08,
- 37.14,
- 37.2,
- 37.26,
- 37.32,
- 37.38,
- 37.44,
- 37.5,
- 37.56,
- 37.62,
- 37.68,
- 37.74,
- 37.8,
- 37.86,
- 37.92,
- 37.98,
- 38.04,
- 38.1,
- 38.16,
- 38.22,
- 38.28,
- 38.34,
- 38.4,
- 38.46,
- 38.52,
- 38.58,
- 38.64,
- 38.7,
- 38.76,
- 38.82,
- 38.88,
- 38.94,
- 39,
- 39.06,
- 39.12,
- 39.18,
- 39.24,
- 39.3,
- 39.36,
- 39.42,
- 39.48,
- 39.54,
- 39.6,
- 39.66,
- 39.72,
- 39.78,
- 39.84,
- 39.9,
- 39.96,
- 40.02,
- 40.08,
- 40.14,
- 40.2,
- 40.26,
- 40.32,
- 40.38,
- 40.44,
- 40.5,
- 40.56,
- 40.62,
- 40.68,
- 40.74,
- 40.8,
- 40.86,
- 40.92,
- 40.98,
- 41.04,
- 41.1,
- 41.16,
- 41.22,
- 41.28,
- 41.34,
- 41.4,
- 41.46,
- 41.52,
- 41.58,
- 41.64,
- 41.7,
- 41.76,
- 41.82,
- 41.88,
- 41.94,
- 42,
- 42.06,
- 42.12,
- 42.18,
- 42.24,
- 42.3,
- 42.36,
- 42.42,
- 42.48,
- 42.54,
- 42.6,
- 42.66,
- 42.72,
- 42.78,
- 42.84,
- 42.9,
- 42.96,
- 43.02,
- 43.08,
- 43.14,
- 43.2,
- 43.26,
- 43.32,
- 43.38,
- 43.44,
- 43.5,
- 43.56,
- 43.62,
- 43.68,
- 43.74,
- 43.8,
- 43.86,
- 43.92,
- 43.98,
- 44.04,
- 44.1,
- 44.16,
- 44.22,
- 44.28,
- 44.34,
- 44.4,
- 44.46,
- 44.52,
- 44.58,
- 44.64,
- 44.7,
- 44.76,
- 44.82,
- 44.88,
- 44.94,
- 45,
- 45.06,
- 45.12,
- 45.18,
- 45.24,
- 45.3,
- 45.36,
- 45.42,
- 45.48,
- 45.54,
- 45.6,
- 45.66,
- 45.72,
- 45.78,
- 45.84,
- 45.9,
- 45.96,
- 46.02,
- 46.08,
- 46.14,
- 46.2,
- 46.26,
- 46.32,
- 46.38,
- 46.44,
- 46.5,
- 46.56,
- 46.62,
- 46.68,
- 46.74,
- 46.8,
- 46.86,
- 46.92,
- 46.98,
- 47.04,
- 47.1,
- 47.16,
- 47.22,
- 47.28,
- 47.34,
- 47.4,
- 47.46,
- 47.52,
- 47.58,
- 47.64,
- 47.7,
- 47.76,
- 47.82,
- 47.88,
- 47.94,
- 48,
- 48.06,
- 48.12,
- 48.18,
- 48.24,
- 48.3,
- 48.36,
- 48.42,
- 48.48,
- 48.54,
- 48.6,
- 48.66,
- 48.72,
- 48.78,
- 48.84,
- 48.9,
- 48.96,
- 49.02,
- 49.08,
- 49.14,
- 49.2,
- 49.26,
- 49.32,
- 49.38,
- 49.44,
- 49.5,
- 49.56,
- 49.62,
- 49.68,
- 49.74,
- 49.8,
- 49.86,
- 49.92,
- 49.98,
- 50.04,
- 50.1,
- 50.16,
- 50.22,
- 50.28,
- 50.34,
- 50.4,
- 50.46,
- 50.52,
- 50.58,
- 50.64,
- 50.7,
- 50.76,
- 50.82,
- 50.88,
- 50.94,
- 51,
- 51.06,
- 51.12,
- 51.18,
- 51.24,
- 51.3,
- 51.36,
- 51.42,
- 51.48,
- 51.54,
- 51.6,
- 51.66,
- 51.72,
- 51.78,
- 51.84,
- 51.9,
- 51.96,
- 52.02,
- 52.08,
- 52.14,
- 52.2,
- 52.26,
- 52.32,
- 52.38,
- 52.44,
- 52.5,
- 52.56,
- 52.62,
- 52.68,
- 52.74,
- 52.8,
- 52.86,
- 52.92,
- 52.98,
- 53.04,
- 53.1,
- 53.16,
- 53.22,
- 53.28,
- 53.34,
- 53.4,
- 53.46,
- 53.52,
- 53.58,
- 53.64,
- 53.7,
- 53.76,
- 53.82,
- 53.88,
- 53.94,
- 54,
- 54.06,
- 54.12,
- 54.18,
- 54.24,
- 54.3,
- 54.36,
- 54.42,
- 54.48,
- 54.54,
- 54.6,
- 54.66,
- 54.72,
- 54.78,
- 54.84,
- 54.9,
- 54.96,
- 55.02,
- 55.08,
- 55.14,
- 55.2,
- 55.26,
- 55.32,
- 55.38,
- 55.44,
- 55.5,
- 55.56,
- 55.62,
- 55.68,
- 55.74,
- 55.8,
- 55.86,
- 55.92,
- 55.98,
- 56.04,
- 56.1,
- 56.16,
- 56.22,
- 56.28,
- 56.34,
- 56.4,
- 56.46,
- 56.52,
- 56.58,
- 56.64,
- 56.7,
- 56.76,
- 56.82,
- 56.88,
- 56.94,
- 57,
- 57.06,
- 57.12,
- 57.18,
- 57.24,
- 57.3,
- 57.36,
- 57.42,
- 57.48,
- 57.54,
- 57.6,
- 57.66,
- 57.72,
- 57.78,
- 57.84,
- 57.9,
- 57.96,
- 58.02,
- 58.08,
- 58.14,
- 58.2,
- 58.26,
- 58.32,
- 58.38,
- 58.44,
- 58.5,
- 58.56,
- 58.62,
- 58.68,
- 58.74,
- 58.8,
- 58.86,
- 58.92,
- 58.98,
- 59.04,
- 59.1,
- 59.16,
- 59.22,
- 59.28,
- 59.34,
- 59.4,
- 59.46,
- 59.52,
- 59.58,
- 59.64,
- 59.7,
- 59.76,
- 59.82,
- 59.88,
- 59.94,
+ 6,
+ 6.06,
+ 6.12,
+ 6.18,
+ 6.24,
+ 6.3,
+ 6.36,
+ 6.42,
+ 6.48,
+ 6.54,
+ 6.6,
+ 6.66,
+ 6.72,
+ 6.78,
+ 6.84,
+ 6.9,
+ 6.96,
+ 7.02,
+ 7.08,
+ 7.14,
+ 7.2,
+ 7.26,
+ 7.32,
+ 7.38,
+ 7.44,
+ 7.5,
+ 7.56,
+ 7.62,
+ 7.68,
+ 7.74,
+ 7.8,
+ 7.86,
+ 7.92,
+ 7.98,
+ 8.04,
+ 8.1,
+ 8.16,
+ 8.22,
+ 8.28,
+ 8.34,
+ 8.4,
+ 8.46,
+ 8.52,
+ 8.58,
+ 8.64,
+ 8.7,
+ 8.76,
+ 8.82,
+ 8.88,
+ 8.94,
+ 9,
+ 9.06,
+ 9.12,
+ 9.18,
+ 9.24,
+ 9.3,
+ 9.36,
+ 9.42,
+ 9.48,
+ 9.54,
+ 9.6,
+ 9.66,
+ 9.72,
+ 9.78,
+ 9.84,
+ 9.9,
+ 9.96,
+ 10.02,
+ 10.08,
+ 10.14,
+ 10.2,
+ 10.26,
+ 10.32,
+ 10.38,
+ 10.44,
+ 10.5,
+ 10.56,
+ 10.62,
+ 10.68,
+ 10.74,
+ 10.8,
+ 10.86,
+ 10.92,
+ 10.98,
+ 11.04,
+ 11.1,
+ 11.16,
+ 11.22,
+ 11.28,
+ 11.34,
+ 11.4,
+ 11.46,
+ 11.52,
+ 11.58,
+ 11.64,
+ 11.7,
+ 11.76,
+ 11.82,
+ 11.88,
+ 11.94,
+ 12,
+ 12.06,
+ 12.12,
+ 12.18,
+ 12.24,
+ 12.3,
+ 12.36,
+ 12.42,
+ 12.48,
+ 12.54,
+ 12.6,
+ 12.66,
+ 12.72,
+ 12.78,
+ 12.84,
+ 12.9,
+ 12.96,
+ 13.02,
+ 13.08,
+ 13.14,
+ 13.2,
+ 13.26,
+ 13.32,
+ 13.38,
+ 13.44,
+ 13.5,
+ 13.56,
+ 13.62,
+ 13.68,
+ 13.74,
+ 13.8,
+ 13.86,
+ 13.92,
+ 13.98,
+ 14.04,
+ 14.1,
+ 14.16,
+ 14.22,
+ 14.28,
+ 14.34,
+ 14.4,
+ 14.46,
+ 14.52,
+ 14.58,
+ 14.64,
+ 14.7,
+ 14.76,
+ 14.82,
+ 14.88,
+ 14.94,
+ 15,
+ 15.06,
+ 15.12,
+ 15.18,
+ 15.24,
+ 15.3,
+ 15.36,
+ 15.42,
+ 15.48,
+ 15.54,
+ 15.6,
+ 15.66,
+ 15.72,
+ 15.78,
+ 15.84,
+ 15.9,
+ 15.96,
+ 16.02,
+ 16.08,
+ 16.14,
+ 16.2,
+ 16.26,
+ 16.32,
+ 16.38,
+ 16.44,
+ 16.5,
+ 16.56,
+ 16.62,
+ 16.68,
+ 16.74,
+ 16.8,
+ 16.86,
+ 16.92,
+ 16.98,
+ 17.04,
+ 17.1,
+ 17.16,
+ 17.22,
+ 17.28,
+ 17.34,
+ 17.4,
+ 17.46,
+ 17.52,
+ 17.58,
+ 17.64,
+ 17.7,
+ 17.76,
+ 17.82,
+ 17.88,
+ 17.94,
+ 18,
+ 18.06,
+ 18.12,
+ 18.18,
+ 18.24,
+ 18.3,
+ 18.36,
+ 18.42,
+ 18.48,
+ 18.54,
+ 18.6,
+ 18.66,
+ 18.72,
+ 18.78,
+ 18.84,
+ 18.9,
+ 18.96,
+ 19.02,
+ 19.08,
+ 19.14,
+ 19.2,
+ 19.26,
+ 19.32,
+ 19.38,
+ 19.44,
+ 19.5,
+ 19.56,
+ 19.62,
+ 19.68,
+ 19.74,
+ 19.8,
+ 19.86,
+ 19.92,
+ 19.98,
+ 20.04,
+ 20.1,
+ 20.16,
+ 20.22,
+ 20.28,
+ 20.34,
+ 20.4,
+ 20.46,
+ 20.52,
+ 20.58,
+ 20.64,
+ 20.7,
+ 20.76,
+ 20.82,
+ 20.88,
+ 20.94,
+ 21,
+ 21.06,
+ 21.12,
+ 21.18,
+ 21.24,
+ 21.3,
+ 21.36,
+ 21.42,
+ 21.48,
+ 21.54,
+ 21.6,
+ 21.66,
+ 21.72,
+ 21.78,
+ 21.84,
+ 21.9,
+ 21.96,
+ 22.02,
+ 22.08,
+ 22.14,
+ 22.2,
+ 22.26,
+ 22.32,
+ 22.38,
+ 22.44,
+ 22.5,
+ 22.56,
+ 22.62,
+ 22.68,
+ 22.74,
+ 22.8,
+ 22.86,
+ 22.92,
+ 22.98,
+ 23.04,
+ 23.1,
+ 23.16,
+ 23.22,
+ 23.28,
+ 23.34,
+ 23.4,
+ 23.46,
+ 23.52,
+ 23.58,
+ 23.64,
+ 23.7,
+ 23.76,
+ 23.82,
+ 23.88,
+ 23.94,
+ 24,
+ 24.06,
+ 24.12,
+ 24.18,
+ 24.24,
+ 24.3,
+ 24.36,
+ 24.42,
+ 24.48,
+ 24.54,
+ 24.6,
+ 24.66,
+ 24.72,
+ 24.78,
+ 24.84,
+ 24.9,
+ 24.96,
+ 25.02,
+ 25.08,
+ 25.14,
+ 25.2,
+ 25.26,
+ 25.32,
+ 25.38,
+ 25.44,
+ 25.5,
+ 25.56,
+ 25.62,
+ 25.68,
+ 25.74,
+ 25.8,
+ 25.86,
+ 25.92,
+ 25.98,
+ 26.04,
+ 26.1,
+ 26.16,
+ 26.22,
+ 26.28,
+ 26.34,
+ 26.4,
+ 26.46,
+ 26.52,
+ 26.58,
+ 26.64,
+ 26.7,
+ 26.76,
+ 26.82,
+ 26.88,
+ 26.94,
+ 27,
+ 27.06,
+ 27.12,
+ 27.18,
+ 27.24,
+ 27.3,
+ 27.36,
+ 27.42,
+ 27.48,
+ 27.54,
+ 27.6,
+ 27.66,
+ 27.72,
+ 27.78,
+ 27.84,
+ 27.9,
+ 27.96,
+ 28.02,
+ 28.08,
+ 28.14,
+ 28.2,
+ 28.26,
+ 28.32,
+ 28.38,
+ 28.44,
+ 28.5,
+ 28.56,
+ 28.62,
+ 28.68,
+ 28.74,
+ 28.8,
+ 28.86,
+ 28.92,
+ 28.98,
+ 29.04,
+ 29.1,
+ 29.16,
+ 29.22,
+ 29.28,
+ 29.34,
+ 29.4,
+ 29.46,
+ 29.52,
+ 29.58,
+ 29.64,
+ 29.7,
+ 29.76,
+ 29.82,
+ 29.88,
+ 29.94,
+ 30,
+ 30.06,
+ 30.12,
+ 30.18,
+ 30.24,
+ 30.3,
+ 30.36,
+ 30.42,
+ 30.48,
+ 30.54,
+ 30.6,
+ 30.66,
+ 30.72,
+ 30.78,
+ 30.84,
+ 30.9,
+ 30.96,
+ 31.02,
+ 31.08,
+ 31.14,
+ 31.2,
+ 31.26,
+ 31.32,
+ 31.38,
+ 31.44,
+ 31.5,
+ 31.56,
+ 31.62,
+ 31.68,
+ 31.74,
+ 31.8,
+ 31.86,
+ 31.92,
+ 31.98,
+ 32.04,
+ 32.1,
+ 32.16,
+ 32.22,
+ 32.28,
+ 32.34,
+ 32.4,
+ 32.46,
+ 32.52,
+ 32.58,
+ 32.64,
+ 32.7,
+ 32.76,
+ 32.82,
+ 32.88,
+ 32.94,
+ 33,
+ 33.06,
+ 33.12,
+ 33.18,
+ 33.24,
+ 33.3,
+ 33.36,
+ 33.42,
+ 33.48,
+ 33.54,
+ 33.6,
+ 33.66,
+ 33.72,
+ 33.78,
+ 33.84,
+ 33.9,
+ 33.96,
+ 34.02,
+ 34.08,
+ 34.14,
+ 34.2,
+ 34.26,
+ 34.32,
+ 34.38,
+ 34.44,
+ 34.5,
+ 34.56,
+ 34.62,
+ 34.68,
+ 34.74,
+ 34.8,
+ 34.86,
+ 34.92,
+ 34.98,
+ 35.04,
+ 35.1,
+ 35.16,
+ 35.22,
+ 35.28,
+ 35.34,
+ 35.4,
+ 35.46,
+ 35.52,
+ 35.58,
+ 35.64,
+ 35.7,
+ 35.76,
+ 35.82,
+ 35.88,
+ 35.94,
+ 36,
+ 36.06,
+ 36.12,
+ 36.18,
+ 36.24,
+ 36.3,
+ 36.36,
+ 36.42,
+ 36.48,
+ 36.54,
+ 36.6,
+ 36.66,
+ 36.72,
+ 36.78,
+ 36.84,
+ 36.9,
+ 36.96,
+ 37.02,
+ 37.08,
+ 37.14,
+ 37.2,
+ 37.26,
+ 37.32,
+ 37.38,
+ 37.44,
+ 37.5,
+ 37.56,
+ 37.62,
+ 37.68,
+ 37.74,
+ 37.8,
+ 37.86,
+ 37.92,
+ 37.98,
+ 38.04,
+ 38.1,
+ 38.16,
+ 38.22,
+ 38.28,
+ 38.34,
+ 38.4,
+ 38.46,
+ 38.52,
+ 38.58,
+ 38.64,
+ 38.7,
+ 38.76,
+ 38.82,
+ 38.88,
+ 38.94,
+ 39,
+ 39.06,
+ 39.12,
+ 39.18,
+ 39.24,
+ 39.3,
+ 39.36,
+ 39.42,
+ 39.48,
+ 39.54,
+ 39.6,
+ 39.66,
+ 39.72,
+ 39.78,
+ 39.84,
+ 39.9,
+ 39.96,
+ 40.02,
+ 40.08,
+ 40.14,
+ 40.2,
+ 40.26,
+ 40.32,
+ 40.38,
+ 40.44,
+ 40.5,
+ 40.56,
+ 40.62,
+ 40.68,
+ 40.74,
+ 40.8,
+ 40.86,
+ 40.92,
+ 40.98,
+ 41.04,
+ 41.1,
+ 41.16,
+ 41.22,
+ 41.28,
+ 41.34,
+ 41.4,
+ 41.46,
+ 41.52,
+ 41.58,
+ 41.64,
+ 41.7,
+ 41.76,
+ 41.82,
+ 41.88,
+ 41.94,
+ 42,
+ 42.06,
+ 42.12,
+ 42.18,
+ 42.24,
+ 42.3,
+ 42.36,
+ 42.42,
+ 42.48,
+ 42.54,
+ 42.6,
+ 42.66,
+ 42.72,
+ 42.78,
+ 42.84,
+ 42.9,
+ 42.96,
+ 43.02,
+ 43.08,
+ 43.14,
+ 43.2,
+ 43.26,
+ 43.32,
+ 43.38,
+ 43.44,
+ 43.5,
+ 43.56,
+ 43.62,
+ 43.68,
+ 43.74,
+ 43.8,
+ 43.86,
+ 43.92,
+ 43.98,
+ 44.04,
+ 44.1,
+ 44.16,
+ 44.22,
+ 44.28,
+ 44.34,
+ 44.4,
+ 44.46,
+ 44.52,
+ 44.58,
+ 44.64,
+ 44.7,
+ 44.76,
+ 44.82,
+ 44.88,
+ 44.94,
+ 45,
+ 45.06,
+ 45.12,
+ 45.18,
+ 45.24,
+ 45.3,
+ 45.36,
+ 45.42,
+ 45.48,
+ 45.54,
+ 45.6,
+ 45.66,
+ 45.72,
+ 45.78,
+ 45.84,
+ 45.9,
+ 45.96,
+ 46.02,
+ 46.08,
+ 46.14,
+ 46.2,
+ 46.26,
+ 46.32,
+ 46.38,
+ 46.44,
+ 46.5,
+ 46.56,
+ 46.62,
+ 46.68,
+ 46.74,
+ 46.8,
+ 46.86,
+ 46.92,
+ 46.98,
+ 47.04,
+ 47.1,
+ 47.16,
+ 47.22,
+ 47.28,
+ 47.34,
+ 47.4,
+ 47.46,
+ 47.52,
+ 47.58,
+ 47.64,
+ 47.7,
+ 47.76,
+ 47.82,
+ 47.88,
+ 47.94,
+ 48,
+ 48.06,
+ 48.12,
+ 48.18,
+ 48.24,
+ 48.3,
+ 48.36,
+ 48.42,
+ 48.48,
+ 48.54,
+ 48.6,
+ 48.66,
+ 48.72,
+ 48.78,
+ 48.84,
+ 48.9,
+ 48.96,
+ 49.02,
+ 49.08,
+ 49.14,
+ 49.2,
+ 49.26,
+ 49.32,
+ 49.38,
+ 49.44,
+ 49.5,
+ 49.56,
+ 49.62,
+ 49.68,
+ 49.74,
+ 49.8,
+ 49.86,
+ 49.92,
+ 49.98,
+ 50.04,
+ 50.1,
+ 50.16,
+ 50.22,
+ 50.28,
+ 50.34,
+ 50.4,
+ 50.46,
+ 50.52,
+ 50.58,
+ 50.64,
+ 50.7,
+ 50.76,
+ 50.82,
+ 50.88,
+ 50.94,
+ 51,
+ 51.06,
+ 51.12,
+ 51.18,
+ 51.24,
+ 51.3,
+ 51.36,
+ 51.42,
+ 51.48,
+ 51.54,
+ 51.6,
+ 51.66,
+ 51.72,
+ 51.78,
+ 51.84,
+ 51.9,
+ 51.96,
+ 52.02,
+ 52.08,
+ 52.14,
+ 52.2,
+ 52.26,
+ 52.32,
+ 52.38,
+ 52.44,
+ 52.5,
+ 52.56,
+ 52.62,
+ 52.68,
+ 52.74,
+ 52.8,
+ 52.86,
+ 52.92,
+ 52.98,
+ 53.04,
+ 53.1,
+ 53.16,
+ 53.22,
+ 53.28,
+ 53.34,
+ 53.4,
+ 53.46,
+ 53.52,
+ 53.58,
+ 53.64,
+ 53.7,
+ 53.76,
+ 53.82,
+ 53.88,
+ 53.94,
+ 54,
+ 54.06,
+ 54.12,
+ 54.18,
+ 54.24,
+ 54.3,
+ 54.36,
+ 54.42,
+ 54.48,
+ 54.54,
+ 54.6,
+ 54.66,
+ 54.72,
+ 54.78,
+ 54.84,
+ 54.9,
+ 54.96,
+ 55.02,
+ 55.08,
+ 55.14,
+ 55.2,
+ 55.26,
+ 55.32,
+ 55.38,
+ 55.44,
+ 55.5,
+ 55.56,
+ 55.62,
+ 55.68,
+ 55.74,
+ 55.8,
+ 55.86,
+ 55.92,
+ 55.98,
+ 56.04,
+ 56.1,
+ 56.16,
+ 56.22,
+ 56.28,
+ 56.34,
+ 56.4,
+ 56.46,
+ 56.52,
+ 56.58,
+ 56.64,
+ 56.7,
+ 56.76,
+ 56.82,
+ 56.88,
+ 56.94,
+ 57,
+ 57.06,
+ 57.12,
+ 57.18,
+ 57.24,
+ 57.3,
+ 57.36,
+ 57.42,
+ 57.48,
+ 57.54,
+ 57.6,
+ 57.66,
+ 57.72,
+ 57.78,
+ 57.84,
+ 57.9,
+ 57.96,
+ 58.02,
+ 58.08,
+ 58.14,
+ 58.2,
+ 58.26,
+ 58.32,
+ 58.38,
+ 58.44,
+ 58.5,
+ 58.56,
+ 58.62,
+ 58.68,
+ 58.74,
+ 58.8,
+ 58.86,
+ 58.92,
+ 58.98,
+ 59.04,
+ 59.1,
+ 59.16,
+ 59.22,
+ 59.28,
+ 59.34,
+ 59.4,
+ 59.46,
+ 59.52,
+ 59.58,
+ 59.64,
+ 59.7,
+ 59.76,
+ 59.82,
+ 59.88,
+ 59.94,
60
- ],
+ ],
"y": [
- 0.0342495699572107,
- 0.034197332484735,
- 0.0341585147818653,
- 0.0341347015770023,
- 0.0341260433435639,
- 0.0341313064668206,
- 0.034148005234813,
- 0.0341726159602613,
- 0.0342008779087448,
- 0.0342281770113198,
- 0.0342499876769059,
- 0.0342623233733686,
- 0.0342621300864663,
- 0.0342475587244204,
- 0.034218075790434,
- 0.0341744086917912,
- 0.0341183581933865,
- 0.0340525315132973,
- 0.0339800493381563,
- 0.033904263594387,
- 0.0338285023893305,
- 0.0337558458203269,
- 0.0336889358072212,
- 0.0336298304692406,
- 0.0335799197921484,
- 0.0335399168198489,
- 0.0335099256791433,
- 0.033489569157276,
- 0.0334781425456456,
- 0.0334747545447818,
- 0.0334784235442865,
- 0.033488116404361,
- 0.0335027402960815,
- 0.0335211175973334,
- 0.0335419818814302,
- 0.0335640260677157,
- 0.0335860134369725,
- 0.0336069351622517,
- 0.0336261742081327,
- 0.0336436245383785,
- 0.0336597216999048,
- 0.0336753639552989,
- 0.0336917335101667,
- 0.0337100536821045,
- 0.0337313313319876,
- 0.0337561318193032,
- 0.0337844196152234,
- 0.0338154786123667,
- 0.0338479095110973,
- 0.0338796924923936,
- 0.0339083030162564,
- 0.0339308744559109,
- 0.0339444080411458,
- 0.0339460322072022,
- 0.0339333058966947,
- 0.0339045439432895,
- 0.0338591228241858,
- 0.0337977107709641,
- 0.0337223660294071,
- 0.03363646454401,
- 0.0335444496485205,
- 0.0334514316461283,
- 0.0333626934561784,
- 0.0332831726178471,
- 0.0332169887780753,
- 0.0331670730849739,
- 0.0331349371920899,
- 0.0331205995771877,
- 0.033122668427551,
- 0.033138564631062,
- 0.0331648557637601,
- 0.0331976625324469,
- 0.0332330932171617,
- 0.0332676596912854,
- 0.0332986309199593,
- 0.0333242864638379,
- 0.0333440429573659,
- 0.0333584397764104,
- 0.0333689848063794,
- 0.0333778760141008,
- 0.0333876283395552,
- 0.0334006474416527,
- 0.0334188011679737,
- 0.0334430449603596,
- 0.0334731570031381,
- 0.0335076309958357,
- 0.0335437578900049,
- 0.0335779030795569,
- 0.0336059547181108,
- 0.0336238867870966,
- 0.0336283540948019,
- 0.0336172231112445,
- 0.0335899481433571,
- 0.033547727754604,
- 0.0334934160899899,
- 0.0334312073442083,
- 0.0333661474449232,
- 0.0333035473354632,
- 0.033248375790522,
- 0.0332047010413497,
- 0.0331752365971304,
- 0.0331610331568626,
- 0.0331613474862062,
- 0.0331737090485817,
- 0.0331941924544241,
- 0.033217885114838,
- 0.0332395139991512,
- 0.0332541660997504,
- 0.0332580109560505,
- 0.0332489193026123,
- 0.0332268772007573,
- 0.0331941223897483,
- 0.0331549741219494,
- 0.0331153780171056,
- 0.0330822299954489,
- 0.0330625683166388,
- 0.0330627278993853,
- 0.033087541620672,
- 0.0331396582625844,
- 0.0332190344032968,
- 0.0333226516363412,
- 0.0334445091022224,
- 0.0335759375408131,
- 0.0337062655841547,
- 0.0338238337906732,
- 0.033917294770576,
- 0.0339770663079354,
- 0.033996737630604,
- 0.0339741936808292,
- 0.0339122428957834,
- 0.0338186186833075,
- 0.0337053546700742,
- 0.0335876662918923,
- 0.0334825591154928,
- 0.0334074000894919,
- 0.0333786372004242,
- 0.0334107668673179,
- 0.033515563864572,
- 0.0337015311797329,
- 0.0339735050473251,
- 0.034332358049315,
- 0.0347747695867068,
- 0.0352930679158374,
- 0.0358751848225302,
- 0.0365047998830054,
- 0.0371617833183891,
- 0.0378230662276437,
- 0.0384640542416905,
- 0.0390606233811647,
- 0.0395915677777534,
- 0.0400411221664734,
- 0.0404009506302554,
- 0.0406709370214128,
- 0.0408583624020466,
- 0.0409755785950724,
- 0.0410368510625777,
- 0.0410553477206657,
- 0.0410411300078453,
- 0.0410005319895918,
- 0.0409367385355928,
- 0.0408509722109239,
- 0.0407436409616227,
- 0.040615053980237,
- 0.0404656669141836,
- 0.0402960339411044,
- 0.0401066479229881,
- 0.0398977487028449,
- 0.0396691206784843,
- 0.0394199319922095,
- 0.0391487312745018,
- 0.0388537334177769,
- 0.0385334549304615,
- 0.0381876156926222,
- 0.0378180623074445,
- 0.0374293731853915,
- 0.0370288559141898,
- 0.0366258529851031,
- 0.0362305383005995,
- 0.0358525693281111,
- 0.0354999695236033,
- 0.0351784765445413,
- 0.0348914011369331,
- 0.0346398909576964,
- 0.0344234229040044,
- 0.0342403493538658,
- 0.034088369529883,
- 0.0339648584322492,
- 0.0338670426944215,
- 0.0337920549130684,
- 0.0337369218413245,
- 0.0336985473928962,
- 0.0336737405812083,
- 0.0336593146657452,
- 0.0336522524285781,
- 0.03364990193968,
- 0.0336501474593024,
- 0.0336514998621937,
- 0.0336530726076545,
- 0.0336544459877685,
- 0.0336554596305551,
- 0.0336559954749827,
- 0.033655812077905,
- 0.0336544684752979,
- 0.0336513428952932,
- 0.0336457219145776,
- 0.0336369192020938,
- 0.0336243832598114,
- 0.0336077674771747,
- 0.0335869559772465,
- 0.0335620566364224,
- 0.0335333817948561,
- 0.0335014351641176,
- 0.0334669125189171,
- 0.0334307095197529,
- 0.0333939189823074,
- 0.0333577969784461,
- 0.0333236837834791,
- 0.0332928795005478,
- 0.0332664900721544,
- 0.0332452715751352,
- 0.0332295050372999,
- 0.0332189293475713,
- 0.0332127480198355,
- 0.0332097104312203,
- 0.0332082539577752,
- 0.0332066835849148,
- 0.033203361798901,
- 0.0331968836372828,
- 0.033186217832338,
- 0.033170802410197,
- 0.0331505896627921,
- 0.0331260400559077,
- 0.0330980676926634,
- 0.0330679425049186,
- 0.0330371573619772,
- 0.0330072719616675,
- 0.0329797490309544,
- 0.0329558008659043,
- 0.0329362645407459,
- 0.0329215217004422,
- 0.0329114738629502,
- 0.032905577263596,
- 0.0329029334440604,
- 0.0329024241187617,
- 0.0329028724596591,
- 0.0329032088676998,
- 0.0329026183430747,
- 0.0329006490601378,
- 0.0328972673903801,
- 0.0328928524503752,
- 0.0328881319063084,
- 0.0328840687966298,
- 0.032881715366252,
- 0.0328820536450092,
- 0.0328858435579193,
- 0.032893497925644,
- 0.0329050002229451,
- 0.0329198759040238,
- 0.0329372219518797,
- 0.0329557925272868,
- 0.0329741317113864,
- 0.0329907380488857,
- 0.0330042407881497,
- 0.0330135653211151,
- 0.0330180660748709,
- 0.0330176091894723,
- 0.0330125941999641,
- 0.0330039124309189,
- 0.0329928483670892,
- 0.0329809374258426,
- 0.0329697983117357,
- 0.0329609600792402,
- 0.0329557033299658,
- 0.0329549321657552,
- 0.032959089289119,
- 0.032968121614732,
- 0.0329814984033005,
- 0.0329982785777752,
- 0.0330172188033125,
- 0.0330369094482634,
- 0.0330559221862151,
- 0.0330729513649531,
- 0.0330869319362353,
- 0.0330971200003805,
- 0.0331031276365282,
- 0.0331049108112282,
- 0.0331027164527302,
- 0.0330970007818636,
- 0.0330883345318636,
- 0.0330773112252353,
- 0.0330644723935183,
- 0.0330502593041234,
- 0.0330349954645579,
- 0.0330188989430356,
- 0.0330021191484032,
- 0.0329847895782853,
- 0.0329670862971073,
- 0.0329492814815424,
- 0.0329317821369906,
- 0.032915145917183,
- 0.0329000687543834,
- 0.032887342579786,
- 0.0328777855292997,
- 0.0328721512860295,
- 0.0328710280635755,
- 0.0328747405662422,
- 0.0328832694926248,
- 0.0328962023547241,
- 0.0329127264034901,
- 0.0329316694566693,
- 0.0329515879582151,
- 0.0329708945536601,
- 0.0329880109923258,
- 0.0330015274799739,
- 0.0330103477142886,
- 0.0330138002620468,
- 0.0330117015237799,
- 0.0330043624411282,
- 0.0329925390239933,
- 0.0329773342789046,
- 0.0329600650185245,
- 0.0329421106205797,
- 0.0329247619184122,
- 0.0329090873108362,
- 0.0328958303735868,
- 0.0328853492741994,
- 0.0328776035903944,
- 0.032872189057727,
- 0.0328684156262952,
- 0.032865419332588,
- 0.0328622943446661,
- 0.03285822867609,
- 0.0328526260575676,
- 0.0328451977226876,
- 0.0328360114922589,
- 0.0328254911716519,
- 0.0328143661109148,
- 0.032803577733398,
- 0.0327941557837917,
- 0.0327870810596,
- 0.0327831529397286,
- 0.0327828790290011,
- 0.0327864010087749,
- 0.032793465898717,
- 0.0328034461012431,
- 0.0328154055532875,
- 0.032828203747108,
- 0.0328406249186247,
- 0.0328515168291242,
- 0.0328599225958023,
- 0.0328651900430848,
- 0.0328670458828655,
- 0.032865626291003,
- 0.032861460565851,
- 0.0328554098961618,
- 0.0328485682208748,
- 0.0328421362322733,
- 0.0328372824131242,
- 0.0328350064212811,
- 0.0328360200763916,
- 0.0328406596666742,
- 0.0328488403194752,
- 0.0328600588596988,
- 0.0328734461342234,
- 0.0328878636604752,
- 0.0329020334246561,
- 0.0329146847349841,
- 0.0329246993018621,
- 0.0329312359417456,
- 0.0329338196107768,
- 0.032932385205185,
- 0.0329272734380237,
- 0.0329191826514411,
- 0.0329090854880736,
- 0.0328981223706418,
- 0.0328874847951155,
- 0.0328783009940825,
- 0.0328715351239232,
- 0.0328679091703627,
- 0.0328678544104015,
- 0.0328714964893399,
- 0.0328786749052224,
- 0.0328889939992503,
- 0.0329018987290161,
- 0.0329167651064513,
- 0.0329329929152494,
- 0.0329500878133721,
- 0.0329677214842439,
- 0.0329857619391736,
- 0.0330042707119115,
- 0.0330234685464555,
- 0.0330436753071035,
- 0.0330652326041988,
- 0.033088418867692,
- 0.0331133665654237,
- 0.0331399904164693,
- 0.033167934221962,
- 0.0331965425518541,
- 0.0332248619574009,
- 0.0332516744239735,
- 0.0332755632220464,
- 0.0332950081068573,
- 0.0333085032021632,
- 0.0333146874310126,
- 0.0333124747638702,
- 0.0333011705351262,
- 0.0332805610243655,
- 0.0332509663270372,
- 0.0332132506998721,
- 0.0331687892284933,
- 0.0331193940018339,
- 0.0330672064150161,
- 0.0330145645388576,
- 0.0329638557633576,
- 0.0329173653583619,
- 0.0328771313999174,
- 0.0328448158025385,
- 0.0328216000136552,
- 0.032808112282089,
- 0.032804391355199,
- 0.0328098890939995,
- 0.032823511972604,
- 0.0328436989112867,
- 0.0328685305233296,
- 0.0328958627359508,
- 0.0329234759423825,
- 0.032949229419692,
- 0.0329712098112255,
- 0.0329878622024636,
- 0.0329980929562117,
- 0.0330013352487889,
- 0.0329975712621407,
- 0.0329873090790109,
- 0.0329715170265722,
- 0.0329515227931483,
- 0.0329288883071683,
- 0.0329052734848094,
- 0.0328823022409302,
- 0.032861442744149,
- 0.032843911232466,
- 0.0328306053858665,
- 0.0328220698307672,
- 0.0328184932195382,
- 0.0328197336897318,
- 0.0328253674252281,
- 0.0328347535173628,
- 0.0328471073723908,
- 0.0328615745927863,
- 0.0328772976743784,
- 0.0328934690991287,
- 0.0329093664690753,
- 0.0329243680654646,
- 0.0329379502790892,
- 0.0329496712357056,
- 0.0329591470813698,
- 0.0329660283536349,
- 0.0329699834511407,
- 0.0329706945384774,
- 0.0329678686583511,
- 0.0329612638781067,
- 0.0329507274724076,
- 0.0329362408309074,
- 0.0329179642334101,
- 0.0328962739949239,
- 0.0328717848063255,
- 0.0328453513648415,
- 0.0328180454927693,
- 0.0327911076625851,
- 0.0327658748616975,
- 0.0327436896652215,
- 0.0327257978778743,
- 0.0327132438702228,
- 0.0327067735950921,
- 0.0327067551645338,
- 0.0327131258208166,
- 0.0327253722233105,
- 0.0327425483036487,
- 0.0327633316517599,
- 0.03278611568063,
- 0.0328091309693445,
- 0.032830585612399,
- 0.0328488116161534,
- 0.032862402904101,
- 0.032870330729216,
- 0.0328720243982071,
- 0.032867408999291,
- 0.0328568967634951,
- 0.0328413340196961,
- 0.0328219106123511,
- 0.0328000424541789,
- 0.0327772401592959,
- 0.0327549773197931,
- 0.0327345710830224,
- 0.032717085555927,
- 0.0327032655755856,
- 0.0326935049118296,
- 0.0326878493532161,
- 0.0326860316922831,
- 0.0326875326737811,
- 0.0326916597786192,
- 0.0326976345040943,
- 0.0327046786744447,
- 0.0327120912323105,
- 0.0327193087248631,
- 0.032725944999904,
- 0.0327318081224182,
- 0.0327368949085037,
- 0.0327413655417646,
- 0.0327455023780788,
- 0.0327496582166893,
- 0.0327542000008011,
- 0.0327594540826306,
- 0.0327656588114421,
- 0.0327729292641982,
- 0.0327812374865615,
- 0.0327904097873154,
- 0.0328001406633939,
- 0.0328100211076741,
- 0.0328195776364335,
- 0.0328283175550777,
- 0.0328357758168608,
- 0.0328415592403489,
- 0.0328453846533785,
- 0.0328471084975803,
- 0.0328467463558705,
- 0.0328444816257925,
- 0.0328406631154052,
- 0.0328357917215334,
- 0.0328304966399786,
- 0.0328255018335676,
- 0.0328215838029802,
- 0.0328195220939499,
- 0.0328200444394204,
- 0.0328237689776142,
- 0.0328311466054534,
- 0.0328424072020654,
- 0.0328575141221677,
- 0.0328761318729921,
- 0.0328976120360745,
- 0.0329210020284921,
- 0.0329450800132379,
- 0.0329684170981925,
- 0.03298946504733,
- 0.0330066644308196,
- 0.0330185649955274,
- 0.03302394763178,
- 0.0330219361410143,
- 0.0330120873502739,
- 0.0329944499657165,
- 0.0329695856267457,
- 0.032938549437847,
- 0.0329028312598694,
- 0.0328642627165876,
- 0.0328248978204782,
- 0.032786877115296,
- 0.0327522862083589,
- 0.0327230195848706,
- 0.0327006597939595,
- 0.0326863806244971,
- 0.0326808808882942,
- 0.0326843530192608,
- 0.0326964879952587,
- 0.032716515230632,
- 0.0327432732505545,
- 0.0327753043753335,
- 0.0328109645885039,
- 0.0328485385235758,
- 0.0328863493207187,
- 0.0329228540993075,
- 0.0329567179024806,
- 0.0329868619183738,
- 0.033012485109884,
- 0.0330330615487511,
- 0.0330483182632106,
- 0.0330581999583157,
- 0.0330628274676473,
- 0.0330624563532874,
- 0.0330574409054402,
- 0.0330482071402264,
- 0.0330352364618829,
- 0.0330190596274709,
- 0.0330002587221799,
- 0.0329794732494281,
- 0.0329574054128802,
- 0.0329348194416842,
- 0.0329125305149364,
- 0.0328913804539716,
- 0.0328721996682232,
- 0.0328557574964378,
- 0.0328427056108491,
- 0.0328335210706694,
- 0.032828456544359,
- 0.0328275049795136,
- 0.0328303846301929,
- 0.0328365481117062,
- 0.0328452164299978,
- 0.0328554361335384,
- 0.0328661551914896,
- 0.032876311126351,
- 0.032884923438338,
- 0.032891181528378,
- 0.0328945192471044,
- 0.0328946679819183,
- 0.0328916819314825,
- 0.0328859318838615,
- 0.032878067200806,
- 0.0328689493974651,
- 0.0328595641293663,
- 0.0328509209766932,
- 0.0328439517099126,
- 0.0328394175530797,
- 0.0328378344584427,
- 0.0328394229480673,
- 0.0328440861731666,
- 0.032851416975055,
- 0.0328607322419245,
- 0.0328711308804119,
- 0.03288157022528,
- 0.0328909545801433,
- 0.0328982287356137,
- 0.0329024687797853,
- 0.0329029624510882,
- 0.0328992718895611,
- 0.0328912730627239,
- 0.0328791683518888,
- 0.0328634715432467,
- 0.0328449673547384,
- 0.0328246501545056,
- 0.0328036482744605,
- 0.032783141073956,
- 0.0327642756946626,
- 0.0327480895173534,
- 0.0327354430470149,
- 0.0327269666585331,
- 0.0327230235469897,
- 0.0327236903868771,
- 0.0327287565122141,
- 0.032737741723836,
- 0.0327499319833731,
- 0.0327644312333478,
- 0.0327802264592856,
- 0.03279626201737,
- 0.0328115183330494,
- 0.032825089441544,
- 0.0328362535540858,
- 0.0328445309267486,
- 0.0328497238076278,
- 0.0328519341746273,
- 0.0328515563782162,
- 0.0328492436673948,
- 0.0328458498305532,
- 0.0328423496592656,
- 0.0328397443795291,
- 0.0328389602617842,
- 0.0328407499825061,
- 0.0328456066961106,
- 0.0328537000487858,
- 0.0328648415524109,
- 0.032878484023617,
- 0.0328937564815434,
- 0.0329095323461863,
- 0.0329245253474723,
- 0.032937404573084,
- 0.0329469178395107,
- 0.0329520113140195,
- 0.0329519332431934,
- 0.0329463108739447,
- 0.0329351921728631,
- 0.0329190475699114,
- 0.0328987312903644,
- 0.0328754063544525,
- 0.032850441408181,
- 0.0328252906387107,
- 0.0328013697166281,
- 0.0327799408131451,
- 0.0327620183176187,
- 0.0327483041828909,
- 0.0327391582367008,
- 0.0327346047589251,
- 0.0327343725821491,
- 0.0327379623424259,
- 0.0327447316554299,
- 0.0327539872216111,
- 0.0327650723809508,
- 0.0327774395205571,
- 0.0327906989003321,
- 0.0328046386412707,
- 0.0328192144086853,
- 0.0328345112267144,
- 0.0328506833915091,
- 0.0328678811999004,
- 0.0328861748976782,
- 0.0329054867340129,
- 0.0329255412596711,
- 0.032945842089448,
- 0.0329656803998547,
- 0.0329841766696981,
- 0.033000352918947,
- 0.0330132284144429,
- 0.0330219280630498,
- 0.0330257901308157,
- 0.0330244590683869,
- 0.0330179504211651,
- 0.0330066780317019,
- 0.032991438565417,
- 0.0329733540283998,
- 0.0329537784483346,
- 0.032934179366991,
- 0.0329160076147694,
- 0.0329005697408165,
- 0.0328889165495432,
- 0.0328817587961184,
- 0.0328794176901032,
- 0.0328818139209882,
- 0.0328884948632317,
- 0.032898695781637,
- 0.0329114275351047,
- 0.0329255807439296,
- 0.0329400349027398,
- 0.0329537606974496,
- 0.0329659049174404,
- 0.0329758497648229,
- 0.0329832417629782,
- 0.0329879893798939,
- 0.0329902323266122,
- 0.0329902887035137,
- 0.0329885883253545,
- 0.0329856014606874,
- 0.0329817719053678,
- 0.0329774619820254,
- 0.0329729150111499,
- 0.0329682383308412,
- 0.0329634073093051,
- 0.0329582882198521,
- 0.0329526755532255,
- 0.0329463375665208,
- 0.0329390628644352,
- 0.0329307007924704,
- 0.0329211894983934,
- 0.0329105676159018,
- 0.0328989683622497,
- 0.0328865979573133,
- 0.0328737031032994,
- 0.0328605342708512,
- 0.0328473123187847,
- 0.0328342053629773,
- 0.0328213209031298,
- 0.0328087153544653,
- 0.0327964198260426,
- 0.0327844778200959,
- 0.0327729880472667,
- 0.0327621441829018,
- 0.0327522633581552,
- 0.0327437964867837,
- 0.0327373159545621,
- 0.032733479352013,
- 0.0327329713281063,
- 0.0327364287979077,
- 0.0327443572462506,
- 0.0327570474613085,
- 0.0327745025809465,
- 0.0327963848395777,
- 0.0328219899440137,
- 0.0328502547072104,
- 0.0328798005750258,
- 0.0329090121726468,
- 0.0329361462157229,
- 0.0329594624134028,
- 0.0329773647774631,
- 0.0329885395500757,
- 0.0329920752539919,
- 0.0329875514807309,
- 0.0329750860132186,
- 0.0329553344263572,
- 0.0329294417878587,
- 0.0328989516445109,
- 0.0328656822518649,
- 0.0328315832806437,
- 0.0327985876139358,
- 0.0327684722997888,
- 0.0327427405318257,
- 0.032722533202005,
- 0.03270857470118,
- 0.0327011538053152,
- 0.0327001371410478,
- 0.0327050101859878,
- 0.0327149391778777,
- 0.0327288466847797,
- 0.0327454938049946,
- 0.0327635628129059,
- 0.0327817352947112,
- 0.0327987621811823,
- 0.0328135233870647,
- 0.0328250758887965,
- 0.0328326899702469,
- 0.0328358740452066,
- 0.0328343889357816,
- 0.0328282527300409,
- 0.0328177373127986,
- 0.0328033573223357,
- 0.032785851666411,
- 0.032766156984892,
- 0.0327453718392479,
- 0.0327247102518801,
- 0.0327054437551872,
- 0.0326888324138612,
- 0.0326760472008058,
- 0.0326680882815317,
- 0.0326657057253903,
- 0.0326693304554127,
- 0.0326790235327097,
- 0.0326944509979493,
- 0.0327148895192583,
- 0.032739265257418,
- 0.0327662250045691,
- 0.0327942351757302,
- 0.0328217010128571,
- 0.0328470957295693,
- 0.0328690875585764,
- 0.0328866519988018,
- 0.032899157189287,
- 0.0329064123840169,
- 0.0329086729440914,
- 0.0329065998603625,
- 0.0329011770722539,
- 0.0328935950459357,
- 0.0328851134242856,
- 0.0328769183622152,
- 0.032869990968555,
- 0.0328650019824708,
- 0.0328622446441961,
- 0.0328616131511761,
- 0.032862628732307,
- 0.0328645098656037,
- 0.0328662781098182,
- 0.0328668869435902,
- 0.0328653583382817,
- 0.0328609108510456,
- 0.0328530639809852,
- 0.0328417063527769,
- 0.0328271197029381,
- 0.0328099561165693,
- 0.0327911717689924,
- 0.0327719257571714,
- 0.0327534567223691,
- 0.0327369523454048,
- 0.0327234272167966,
- 0.0327136231261913,
- 0.0327079427939307,
- 0.0327064239314565,
- 0.0327087557581353,
- 0.032714335200797,
- 0.0327223554160163,
- 0.0327319154457865,
- 0.0327421371715161,
- 0.0327522746477828,
- 0.0327618016362605,
- 0.0327704657738803,
- 0.0327783020694063,
- 0.0327856038063261,
- 0.0327928546855775,
- 0.0328006313262858,
- 0.0328094892915476,
- 0.0328198480780995,
- 0.0328318907626101,
- 0.0328454922882046,
- 0.0328601869848469,
- 0.0328751812701829,
- 0.0328894120695875,
- 0.0329016458662255,
- 0.0329106080257338,
- 0.0329151277540304,
- 0.0329142813515088,
- 0.032907515829932,
- 0.03289473673077,
- 0.0328763480384183,
- 0.0328532379195754,
- 0.032826710787378,
- 0.0327983728452227,
- 0.0327699838138965,
- 0.0327432912514822,
- 0.0327198653937987,
- 0.0327009518284729,
- 0.0326873569192753,
- 0.0326793772120276,
- 0.0326767795681302,
- 0.0326788338892842,
- 0.0326843953300446,
- 0.0326920281238891,
- 0.0327001588966296,
- 0.0327072440173271,
- 0.0327119336106058,
- 0.0327132147533697,
- 0.0327105183446661,
- 0.0327037780899672,
- 0.0326934355240667,
- 0.0326803912329126,
- 0.032665908492909,
- 0.0326514805566845,
- 0.0326386761643534,
+ 0.0342495699572107,
+ 0.034197332484735,
+ 0.0341585147818653,
+ 0.0341347015770023,
+ 0.0341260433435639,
+ 0.0341313064668206,
+ 0.034148005234813,
+ 0.0341726159602613,
+ 0.0342008779087448,
+ 0.0342281770113198,
+ 0.0342499876769059,
+ 0.0342623233733686,
+ 0.0342621300864663,
+ 0.0342475587244204,
+ 0.034218075790434,
+ 0.0341744086917912,
+ 0.0341183581933865,
+ 0.0340525315132973,
+ 0.0339800493381563,
+ 0.033904263594387,
+ 0.0338285023893305,
+ 0.0337558458203269,
+ 0.0336889358072212,
+ 0.0336298304692406,
+ 0.0335799197921484,
+ 0.0335399168198489,
+ 0.0335099256791433,
+ 0.033489569157276,
+ 0.0334781425456456,
+ 0.0334747545447818,
+ 0.0334784235442865,
+ 0.033488116404361,
+ 0.0335027402960815,
+ 0.0335211175973334,
+ 0.0335419818814302,
+ 0.0335640260677157,
+ 0.0335860134369725,
+ 0.0336069351622517,
+ 0.0336261742081327,
+ 0.0336436245383785,
+ 0.0336597216999048,
+ 0.0336753639552989,
+ 0.0336917335101667,
+ 0.0337100536821045,
+ 0.0337313313319876,
+ 0.0337561318193032,
+ 0.0337844196152234,
+ 0.0338154786123667,
+ 0.0338479095110973,
+ 0.0338796924923936,
+ 0.0339083030162564,
+ 0.0339308744559109,
+ 0.0339444080411458,
+ 0.0339460322072022,
+ 0.0339333058966947,
+ 0.0339045439432895,
+ 0.0338591228241858,
+ 0.0337977107709641,
+ 0.0337223660294071,
+ 0.03363646454401,
+ 0.0335444496485205,
+ 0.0334514316461283,
+ 0.0333626934561784,
+ 0.0332831726178471,
+ 0.0332169887780753,
+ 0.0331670730849739,
+ 0.0331349371920899,
+ 0.0331205995771877,
+ 0.033122668427551,
+ 0.033138564631062,
+ 0.0331648557637601,
+ 0.0331976625324469,
+ 0.0332330932171617,
+ 0.0332676596912854,
+ 0.0332986309199593,
+ 0.0333242864638379,
+ 0.0333440429573659,
+ 0.0333584397764104,
+ 0.0333689848063794,
+ 0.0333778760141008,
+ 0.0333876283395552,
+ 0.0334006474416527,
+ 0.0334188011679737,
+ 0.0334430449603596,
+ 0.0334731570031381,
+ 0.0335076309958357,
+ 0.0335437578900049,
+ 0.0335779030795569,
+ 0.0336059547181108,
+ 0.0336238867870966,
+ 0.0336283540948019,
+ 0.0336172231112445,
+ 0.0335899481433571,
+ 0.033547727754604,
+ 0.0334934160899899,
+ 0.0334312073442083,
+ 0.0333661474449232,
+ 0.0333035473354632,
+ 0.033248375790522,
+ 0.0332047010413497,
+ 0.0331752365971304,
+ 0.0331610331568626,
+ 0.0331613474862062,
+ 0.0331737090485817,
+ 0.0331941924544241,
+ 0.033217885114838,
+ 0.0332395139991512,
+ 0.0332541660997504,
+ 0.0332580109560505,
+ 0.0332489193026123,
+ 0.0332268772007573,
+ 0.0331941223897483,
+ 0.0331549741219494,
+ 0.0331153780171056,
+ 0.0330822299954489,
+ 0.0330625683166388,
+ 0.0330627278993853,
+ 0.033087541620672,
+ 0.0331396582625844,
+ 0.0332190344032968,
+ 0.0333226516363412,
+ 0.0334445091022224,
+ 0.0335759375408131,
+ 0.0337062655841547,
+ 0.0338238337906732,
+ 0.033917294770576,
+ 0.0339770663079354,
+ 0.033996737630604,
+ 0.0339741936808292,
+ 0.0339122428957834,
+ 0.0338186186833075,
+ 0.0337053546700742,
+ 0.0335876662918923,
+ 0.0334825591154928,
+ 0.0334074000894919,
+ 0.0333786372004242,
+ 0.0334107668673179,
+ 0.033515563864572,
+ 0.0337015311797329,
+ 0.0339735050473251,
+ 0.034332358049315,
+ 0.0347747695867068,
+ 0.0352930679158374,
+ 0.0358751848225302,
+ 0.0365047998830054,
+ 0.0371617833183891,
+ 0.0378230662276437,
+ 0.0384640542416905,
+ 0.0390606233811647,
+ 0.0395915677777534,
+ 0.0400411221664734,
+ 0.0404009506302554,
+ 0.0406709370214128,
+ 0.0408583624020466,
+ 0.0409755785950724,
+ 0.0410368510625777,
+ 0.0410553477206657,
+ 0.0410411300078453,
+ 0.0410005319895918,
+ 0.0409367385355928,
+ 0.0408509722109239,
+ 0.0407436409616227,
+ 0.040615053980237,
+ 0.0404656669141836,
+ 0.0402960339411044,
+ 0.0401066479229881,
+ 0.0398977487028449,
+ 0.0396691206784843,
+ 0.0394199319922095,
+ 0.0391487312745018,
+ 0.0388537334177769,
+ 0.0385334549304615,
+ 0.0381876156926222,
+ 0.0378180623074445,
+ 0.0374293731853915,
+ 0.0370288559141898,
+ 0.0366258529851031,
+ 0.0362305383005995,
+ 0.0358525693281111,
+ 0.0354999695236033,
+ 0.0351784765445413,
+ 0.0348914011369331,
+ 0.0346398909576964,
+ 0.0344234229040044,
+ 0.0342403493538658,
+ 0.034088369529883,
+ 0.0339648584322492,
+ 0.0338670426944215,
+ 0.0337920549130684,
+ 0.0337369218413245,
+ 0.0336985473928962,
+ 0.0336737405812083,
+ 0.0336593146657452,
+ 0.0336522524285781,
+ 0.03364990193968,
+ 0.0336501474593024,
+ 0.0336514998621937,
+ 0.0336530726076545,
+ 0.0336544459877685,
+ 0.0336554596305551,
+ 0.0336559954749827,
+ 0.033655812077905,
+ 0.0336544684752979,
+ 0.0336513428952932,
+ 0.0336457219145776,
+ 0.0336369192020938,
+ 0.0336243832598114,
+ 0.0336077674771747,
+ 0.0335869559772465,
+ 0.0335620566364224,
+ 0.0335333817948561,
+ 0.0335014351641176,
+ 0.0334669125189171,
+ 0.0334307095197529,
+ 0.0333939189823074,
+ 0.0333577969784461,
+ 0.0333236837834791,
+ 0.0332928795005478,
+ 0.0332664900721544,
+ 0.0332452715751352,
+ 0.0332295050372999,
+ 0.0332189293475713,
+ 0.0332127480198355,
+ 0.0332097104312203,
+ 0.0332082539577752,
+ 0.0332066835849148,
+ 0.033203361798901,
+ 0.0331968836372828,
+ 0.033186217832338,
+ 0.033170802410197,
+ 0.0331505896627921,
+ 0.0331260400559077,
+ 0.0330980676926634,
+ 0.0330679425049186,
+ 0.0330371573619772,
+ 0.0330072719616675,
+ 0.0329797490309544,
+ 0.0329558008659043,
+ 0.0329362645407459,
+ 0.0329215217004422,
+ 0.0329114738629502,
+ 0.032905577263596,
+ 0.0329029334440604,
+ 0.0329024241187617,
+ 0.0329028724596591,
+ 0.0329032088676998,
+ 0.0329026183430747,
+ 0.0329006490601378,
+ 0.0328972673903801,
+ 0.0328928524503752,
+ 0.0328881319063084,
+ 0.0328840687966298,
+ 0.032881715366252,
+ 0.0328820536450092,
+ 0.0328858435579193,
+ 0.032893497925644,
+ 0.0329050002229451,
+ 0.0329198759040238,
+ 0.0329372219518797,
+ 0.0329557925272868,
+ 0.0329741317113864,
+ 0.0329907380488857,
+ 0.0330042407881497,
+ 0.0330135653211151,
+ 0.0330180660748709,
+ 0.0330176091894723,
+ 0.0330125941999641,
+ 0.0330039124309189,
+ 0.0329928483670892,
+ 0.0329809374258426,
+ 0.0329697983117357,
+ 0.0329609600792402,
+ 0.0329557033299658,
+ 0.0329549321657552,
+ 0.032959089289119,
+ 0.032968121614732,
+ 0.0329814984033005,
+ 0.0329982785777752,
+ 0.0330172188033125,
+ 0.0330369094482634,
+ 0.0330559221862151,
+ 0.0330729513649531,
+ 0.0330869319362353,
+ 0.0330971200003805,
+ 0.0331031276365282,
+ 0.0331049108112282,
+ 0.0331027164527302,
+ 0.0330970007818636,
+ 0.0330883345318636,
+ 0.0330773112252353,
+ 0.0330644723935183,
+ 0.0330502593041234,
+ 0.0330349954645579,
+ 0.0330188989430356,
+ 0.0330021191484032,
+ 0.0329847895782853,
+ 0.0329670862971073,
+ 0.0329492814815424,
+ 0.0329317821369906,
+ 0.032915145917183,
+ 0.0329000687543834,
+ 0.032887342579786,
+ 0.0328777855292997,
+ 0.0328721512860295,
+ 0.0328710280635755,
+ 0.0328747405662422,
+ 0.0328832694926248,
+ 0.0328962023547241,
+ 0.0329127264034901,
+ 0.0329316694566693,
+ 0.0329515879582151,
+ 0.0329708945536601,
+ 0.0329880109923258,
+ 0.0330015274799739,
+ 0.0330103477142886,
+ 0.0330138002620468,
+ 0.0330117015237799,
+ 0.0330043624411282,
+ 0.0329925390239933,
+ 0.0329773342789046,
+ 0.0329600650185245,
+ 0.0329421106205797,
+ 0.0329247619184122,
+ 0.0329090873108362,
+ 0.0328958303735868,
+ 0.0328853492741994,
+ 0.0328776035903944,
+ 0.032872189057727,
+ 0.0328684156262952,
+ 0.032865419332588,
+ 0.0328622943446661,
+ 0.03285822867609,
+ 0.0328526260575676,
+ 0.0328451977226876,
+ 0.0328360114922589,
+ 0.0328254911716519,
+ 0.0328143661109148,
+ 0.032803577733398,
+ 0.0327941557837917,
+ 0.0327870810596,
+ 0.0327831529397286,
+ 0.0327828790290011,
+ 0.0327864010087749,
+ 0.032793465898717,
+ 0.0328034461012431,
+ 0.0328154055532875,
+ 0.032828203747108,
+ 0.0328406249186247,
+ 0.0328515168291242,
+ 0.0328599225958023,
+ 0.0328651900430848,
+ 0.0328670458828655,
+ 0.032865626291003,
+ 0.032861460565851,
+ 0.0328554098961618,
+ 0.0328485682208748,
+ 0.0328421362322733,
+ 0.0328372824131242,
+ 0.0328350064212811,
+ 0.0328360200763916,
+ 0.0328406596666742,
+ 0.0328488403194752,
+ 0.0328600588596988,
+ 0.0328734461342234,
+ 0.0328878636604752,
+ 0.0329020334246561,
+ 0.0329146847349841,
+ 0.0329246993018621,
+ 0.0329312359417456,
+ 0.0329338196107768,
+ 0.032932385205185,
+ 0.0329272734380237,
+ 0.0329191826514411,
+ 0.0329090854880736,
+ 0.0328981223706418,
+ 0.0328874847951155,
+ 0.0328783009940825,
+ 0.0328715351239232,
+ 0.0328679091703627,
+ 0.0328678544104015,
+ 0.0328714964893399,
+ 0.0328786749052224,
+ 0.0328889939992503,
+ 0.0329018987290161,
+ 0.0329167651064513,
+ 0.0329329929152494,
+ 0.0329500878133721,
+ 0.0329677214842439,
+ 0.0329857619391736,
+ 0.0330042707119115,
+ 0.0330234685464555,
+ 0.0330436753071035,
+ 0.0330652326041988,
+ 0.033088418867692,
+ 0.0331133665654237,
+ 0.0331399904164693,
+ 0.033167934221962,
+ 0.0331965425518541,
+ 0.0332248619574009,
+ 0.0332516744239735,
+ 0.0332755632220464,
+ 0.0332950081068573,
+ 0.0333085032021632,
+ 0.0333146874310126,
+ 0.0333124747638702,
+ 0.0333011705351262,
+ 0.0332805610243655,
+ 0.0332509663270372,
+ 0.0332132506998721,
+ 0.0331687892284933,
+ 0.0331193940018339,
+ 0.0330672064150161,
+ 0.0330145645388576,
+ 0.0329638557633576,
+ 0.0329173653583619,
+ 0.0328771313999174,
+ 0.0328448158025385,
+ 0.0328216000136552,
+ 0.032808112282089,
+ 0.032804391355199,
+ 0.0328098890939995,
+ 0.032823511972604,
+ 0.0328436989112867,
+ 0.0328685305233296,
+ 0.0328958627359508,
+ 0.0329234759423825,
+ 0.032949229419692,
+ 0.0329712098112255,
+ 0.0329878622024636,
+ 0.0329980929562117,
+ 0.0330013352487889,
+ 0.0329975712621407,
+ 0.0329873090790109,
+ 0.0329715170265722,
+ 0.0329515227931483,
+ 0.0329288883071683,
+ 0.0329052734848094,
+ 0.0328823022409302,
+ 0.032861442744149,
+ 0.032843911232466,
+ 0.0328306053858665,
+ 0.0328220698307672,
+ 0.0328184932195382,
+ 0.0328197336897318,
+ 0.0328253674252281,
+ 0.0328347535173628,
+ 0.0328471073723908,
+ 0.0328615745927863,
+ 0.0328772976743784,
+ 0.0328934690991287,
+ 0.0329093664690753,
+ 0.0329243680654646,
+ 0.0329379502790892,
+ 0.0329496712357056,
+ 0.0329591470813698,
+ 0.0329660283536349,
+ 0.0329699834511407,
+ 0.0329706945384774,
+ 0.0329678686583511,
+ 0.0329612638781067,
+ 0.0329507274724076,
+ 0.0329362408309074,
+ 0.0329179642334101,
+ 0.0328962739949239,
+ 0.0328717848063255,
+ 0.0328453513648415,
+ 0.0328180454927693,
+ 0.0327911076625851,
+ 0.0327658748616975,
+ 0.0327436896652215,
+ 0.0327257978778743,
+ 0.0327132438702228,
+ 0.0327067735950921,
+ 0.0327067551645338,
+ 0.0327131258208166,
+ 0.0327253722233105,
+ 0.0327425483036487,
+ 0.0327633316517599,
+ 0.03278611568063,
+ 0.0328091309693445,
+ 0.032830585612399,
+ 0.0328488116161534,
+ 0.032862402904101,
+ 0.032870330729216,
+ 0.0328720243982071,
+ 0.032867408999291,
+ 0.0328568967634951,
+ 0.0328413340196961,
+ 0.0328219106123511,
+ 0.0328000424541789,
+ 0.0327772401592959,
+ 0.0327549773197931,
+ 0.0327345710830224,
+ 0.032717085555927,
+ 0.0327032655755856,
+ 0.0326935049118296,
+ 0.0326878493532161,
+ 0.0326860316922831,
+ 0.0326875326737811,
+ 0.0326916597786192,
+ 0.0326976345040943,
+ 0.0327046786744447,
+ 0.0327120912323105,
+ 0.0327193087248631,
+ 0.032725944999904,
+ 0.0327318081224182,
+ 0.0327368949085037,
+ 0.0327413655417646,
+ 0.0327455023780788,
+ 0.0327496582166893,
+ 0.0327542000008011,
+ 0.0327594540826306,
+ 0.0327656588114421,
+ 0.0327729292641982,
+ 0.0327812374865615,
+ 0.0327904097873154,
+ 0.0328001406633939,
+ 0.0328100211076741,
+ 0.0328195776364335,
+ 0.0328283175550777,
+ 0.0328357758168608,
+ 0.0328415592403489,
+ 0.0328453846533785,
+ 0.0328471084975803,
+ 0.0328467463558705,
+ 0.0328444816257925,
+ 0.0328406631154052,
+ 0.0328357917215334,
+ 0.0328304966399786,
+ 0.0328255018335676,
+ 0.0328215838029802,
+ 0.0328195220939499,
+ 0.0328200444394204,
+ 0.0328237689776142,
+ 0.0328311466054534,
+ 0.0328424072020654,
+ 0.0328575141221677,
+ 0.0328761318729921,
+ 0.0328976120360745,
+ 0.0329210020284921,
+ 0.0329450800132379,
+ 0.0329684170981925,
+ 0.03298946504733,
+ 0.0330066644308196,
+ 0.0330185649955274,
+ 0.03302394763178,
+ 0.0330219361410143,
+ 0.0330120873502739,
+ 0.0329944499657165,
+ 0.0329695856267457,
+ 0.032938549437847,
+ 0.0329028312598694,
+ 0.0328642627165876,
+ 0.0328248978204782,
+ 0.032786877115296,
+ 0.0327522862083589,
+ 0.0327230195848706,
+ 0.0327006597939595,
+ 0.0326863806244971,
+ 0.0326808808882942,
+ 0.0326843530192608,
+ 0.0326964879952587,
+ 0.032716515230632,
+ 0.0327432732505545,
+ 0.0327753043753335,
+ 0.0328109645885039,
+ 0.0328485385235758,
+ 0.0328863493207187,
+ 0.0329228540993075,
+ 0.0329567179024806,
+ 0.0329868619183738,
+ 0.033012485109884,
+ 0.0330330615487511,
+ 0.0330483182632106,
+ 0.0330581999583157,
+ 0.0330628274676473,
+ 0.0330624563532874,
+ 0.0330574409054402,
+ 0.0330482071402264,
+ 0.0330352364618829,
+ 0.0330190596274709,
+ 0.0330002587221799,
+ 0.0329794732494281,
+ 0.0329574054128802,
+ 0.0329348194416842,
+ 0.0329125305149364,
+ 0.0328913804539716,
+ 0.0328721996682232,
+ 0.0328557574964378,
+ 0.0328427056108491,
+ 0.0328335210706694,
+ 0.032828456544359,
+ 0.0328275049795136,
+ 0.0328303846301929,
+ 0.0328365481117062,
+ 0.0328452164299978,
+ 0.0328554361335384,
+ 0.0328661551914896,
+ 0.032876311126351,
+ 0.032884923438338,
+ 0.032891181528378,
+ 0.0328945192471044,
+ 0.0328946679819183,
+ 0.0328916819314825,
+ 0.0328859318838615,
+ 0.032878067200806,
+ 0.0328689493974651,
+ 0.0328595641293663,
+ 0.0328509209766932,
+ 0.0328439517099126,
+ 0.0328394175530797,
+ 0.0328378344584427,
+ 0.0328394229480673,
+ 0.0328440861731666,
+ 0.032851416975055,
+ 0.0328607322419245,
+ 0.0328711308804119,
+ 0.03288157022528,
+ 0.0328909545801433,
+ 0.0328982287356137,
+ 0.0329024687797853,
+ 0.0329029624510882,
+ 0.0328992718895611,
+ 0.0328912730627239,
+ 0.0328791683518888,
+ 0.0328634715432467,
+ 0.0328449673547384,
+ 0.0328246501545056,
+ 0.0328036482744605,
+ 0.032783141073956,
+ 0.0327642756946626,
+ 0.0327480895173534,
+ 0.0327354430470149,
+ 0.0327269666585331,
+ 0.0327230235469897,
+ 0.0327236903868771,
+ 0.0327287565122141,
+ 0.032737741723836,
+ 0.0327499319833731,
+ 0.0327644312333478,
+ 0.0327802264592856,
+ 0.03279626201737,
+ 0.0328115183330494,
+ 0.032825089441544,
+ 0.0328362535540858,
+ 0.0328445309267486,
+ 0.0328497238076278,
+ 0.0328519341746273,
+ 0.0328515563782162,
+ 0.0328492436673948,
+ 0.0328458498305532,
+ 0.0328423496592656,
+ 0.0328397443795291,
+ 0.0328389602617842,
+ 0.0328407499825061,
+ 0.0328456066961106,
+ 0.0328537000487858,
+ 0.0328648415524109,
+ 0.032878484023617,
+ 0.0328937564815434,
+ 0.0329095323461863,
+ 0.0329245253474723,
+ 0.032937404573084,
+ 0.0329469178395107,
+ 0.0329520113140195,
+ 0.0329519332431934,
+ 0.0329463108739447,
+ 0.0329351921728631,
+ 0.0329190475699114,
+ 0.0328987312903644,
+ 0.0328754063544525,
+ 0.032850441408181,
+ 0.0328252906387107,
+ 0.0328013697166281,
+ 0.0327799408131451,
+ 0.0327620183176187,
+ 0.0327483041828909,
+ 0.0327391582367008,
+ 0.0327346047589251,
+ 0.0327343725821491,
+ 0.0327379623424259,
+ 0.0327447316554299,
+ 0.0327539872216111,
+ 0.0327650723809508,
+ 0.0327774395205571,
+ 0.0327906989003321,
+ 0.0328046386412707,
+ 0.0328192144086853,
+ 0.0328345112267144,
+ 0.0328506833915091,
+ 0.0328678811999004,
+ 0.0328861748976782,
+ 0.0329054867340129,
+ 0.0329255412596711,
+ 0.032945842089448,
+ 0.0329656803998547,
+ 0.0329841766696981,
+ 0.033000352918947,
+ 0.0330132284144429,
+ 0.0330219280630498,
+ 0.0330257901308157,
+ 0.0330244590683869,
+ 0.0330179504211651,
+ 0.0330066780317019,
+ 0.032991438565417,
+ 0.0329733540283998,
+ 0.0329537784483346,
+ 0.032934179366991,
+ 0.0329160076147694,
+ 0.0329005697408165,
+ 0.0328889165495432,
+ 0.0328817587961184,
+ 0.0328794176901032,
+ 0.0328818139209882,
+ 0.0328884948632317,
+ 0.032898695781637,
+ 0.0329114275351047,
+ 0.0329255807439296,
+ 0.0329400349027398,
+ 0.0329537606974496,
+ 0.0329659049174404,
+ 0.0329758497648229,
+ 0.0329832417629782,
+ 0.0329879893798939,
+ 0.0329902323266122,
+ 0.0329902887035137,
+ 0.0329885883253545,
+ 0.0329856014606874,
+ 0.0329817719053678,
+ 0.0329774619820254,
+ 0.0329729150111499,
+ 0.0329682383308412,
+ 0.0329634073093051,
+ 0.0329582882198521,
+ 0.0329526755532255,
+ 0.0329463375665208,
+ 0.0329390628644352,
+ 0.0329307007924704,
+ 0.0329211894983934,
+ 0.0329105676159018,
+ 0.0328989683622497,
+ 0.0328865979573133,
+ 0.0328737031032994,
+ 0.0328605342708512,
+ 0.0328473123187847,
+ 0.0328342053629773,
+ 0.0328213209031298,
+ 0.0328087153544653,
+ 0.0327964198260426,
+ 0.0327844778200959,
+ 0.0327729880472667,
+ 0.0327621441829018,
+ 0.0327522633581552,
+ 0.0327437964867837,
+ 0.0327373159545621,
+ 0.032733479352013,
+ 0.0327329713281063,
+ 0.0327364287979077,
+ 0.0327443572462506,
+ 0.0327570474613085,
+ 0.0327745025809465,
+ 0.0327963848395777,
+ 0.0328219899440137,
+ 0.0328502547072104,
+ 0.0328798005750258,
+ 0.0329090121726468,
+ 0.0329361462157229,
+ 0.0329594624134028,
+ 0.0329773647774631,
+ 0.0329885395500757,
+ 0.0329920752539919,
+ 0.0329875514807309,
+ 0.0329750860132186,
+ 0.0329553344263572,
+ 0.0329294417878587,
+ 0.0328989516445109,
+ 0.0328656822518649,
+ 0.0328315832806437,
+ 0.0327985876139358,
+ 0.0327684722997888,
+ 0.0327427405318257,
+ 0.032722533202005,
+ 0.03270857470118,
+ 0.0327011538053152,
+ 0.0327001371410478,
+ 0.0327050101859878,
+ 0.0327149391778777,
+ 0.0327288466847797,
+ 0.0327454938049946,
+ 0.0327635628129059,
+ 0.0327817352947112,
+ 0.0327987621811823,
+ 0.0328135233870647,
+ 0.0328250758887965,
+ 0.0328326899702469,
+ 0.0328358740452066,
+ 0.0328343889357816,
+ 0.0328282527300409,
+ 0.0328177373127986,
+ 0.0328033573223357,
+ 0.032785851666411,
+ 0.032766156984892,
+ 0.0327453718392479,
+ 0.0327247102518801,
+ 0.0327054437551872,
+ 0.0326888324138612,
+ 0.0326760472008058,
+ 0.0326680882815317,
+ 0.0326657057253903,
+ 0.0326693304554127,
+ 0.0326790235327097,
+ 0.0326944509979493,
+ 0.0327148895192583,
+ 0.032739265257418,
+ 0.0327662250045691,
+ 0.0327942351757302,
+ 0.0328217010128571,
+ 0.0328470957295693,
+ 0.0328690875585764,
+ 0.0328866519988018,
+ 0.032899157189287,
+ 0.0329064123840169,
+ 0.0329086729440914,
+ 0.0329065998603625,
+ 0.0329011770722539,
+ 0.0328935950459357,
+ 0.0328851134242856,
+ 0.0328769183622152,
+ 0.032869990968555,
+ 0.0328650019824708,
+ 0.0328622446441961,
+ 0.0328616131511761,
+ 0.032862628732307,
+ 0.0328645098656037,
+ 0.0328662781098182,
+ 0.0328668869435902,
+ 0.0328653583382817,
+ 0.0328609108510456,
+ 0.0328530639809852,
+ 0.0328417063527769,
+ 0.0328271197029381,
+ 0.0328099561165693,
+ 0.0327911717689924,
+ 0.0327719257571714,
+ 0.0327534567223691,
+ 0.0327369523454048,
+ 0.0327234272167966,
+ 0.0327136231261913,
+ 0.0327079427939307,
+ 0.0327064239314565,
+ 0.0327087557581353,
+ 0.032714335200797,
+ 0.0327223554160163,
+ 0.0327319154457865,
+ 0.0327421371715161,
+ 0.0327522746477828,
+ 0.0327618016362605,
+ 0.0327704657738803,
+ 0.0327783020694063,
+ 0.0327856038063261,
+ 0.0327928546855775,
+ 0.0328006313262858,
+ 0.0328094892915476,
+ 0.0328198480780995,
+ 0.0328318907626101,
+ 0.0328454922882046,
+ 0.0328601869848469,
+ 0.0328751812701829,
+ 0.0328894120695875,
+ 0.0329016458662255,
+ 0.0329106080257338,
+ 0.0329151277540304,
+ 0.0329142813515088,
+ 0.032907515829932,
+ 0.03289473673077,
+ 0.0328763480384183,
+ 0.0328532379195754,
+ 0.032826710787378,
+ 0.0327983728452227,
+ 0.0327699838138965,
+ 0.0327432912514822,
+ 0.0327198653937987,
+ 0.0327009518284729,
+ 0.0326873569192753,
+ 0.0326793772120276,
+ 0.0326767795681302,
+ 0.0326788338892842,
+ 0.0326843953300446,
+ 0.0326920281238891,
+ 0.0327001588966296,
+ 0.0327072440173271,
+ 0.0327119336106058,
+ 0.0327132147533697,
+ 0.0327105183446661,
+ 0.0327037780899672,
+ 0.0326934355240667,
+ 0.0326803912329126,
+ 0.032665908492909,
+ 0.0326514805566845,
+ 0.0326386761643534,
0.0326289792975457
- ],
- "fill": "none",
+ ],
+ "fill": "none",
"line": {
- "color": "#ff7f0e",
- "dash": "solid",
+ "color": "#ff7f0e",
+ "dash": "solid",
"shape": "linear"
- },
- "mode": "lines",
- "name": "(15 BPM, 16 BPM)",
- "opacity": 1,
- "showlegend": true,
- "type": "scatter",
- "uid": "6ef7f8",
- "visible": true,
- "xaxis": "x",
+ },
+ "mode": "lines",
+ "name": "(15 BPM, 16 BPM)",
+ "opacity": 1,
+ "showlegend": true,
+ "type": "scatter",
+ "visible": true,
+ "xaxis": "x",
"yaxis": "y"
- },
+ },
{
"x": [
- 6,
- 6.06,
- 6.12,
- 6.18,
- 6.24,
- 6.3,
- 6.36,
- 6.42,
- 6.48,
- 6.54,
- 6.6,
- 6.66,
- 6.72,
- 6.78,
- 6.84,
- 6.9,
- 6.96,
- 7.02,
- 7.08,
- 7.14,
- 7.2,
- 7.26,
- 7.32,
- 7.38,
- 7.44,
- 7.5,
- 7.56,
- 7.62,
- 7.68,
- 7.74,
- 7.8,
- 7.86,
- 7.92,
- 7.98,
- 8.04,
- 8.1,
- 8.16,
- 8.22,
- 8.28,
- 8.34,
- 8.4,
- 8.46,
- 8.52,
- 8.58,
- 8.64,
- 8.7,
- 8.76,
- 8.82,
- 8.88,
- 8.94,
- 9,
- 9.06,
- 9.12,
- 9.18,
- 9.24,
- 9.3,
- 9.36,
- 9.42,
- 9.48,
- 9.54,
- 9.6,
- 9.66,
- 9.72,
- 9.78,
- 9.84,
- 9.9,
- 9.96,
- 10.02,
- 10.08,
- 10.14,
- 10.2,
- 10.26,
- 10.32,
- 10.38,
- 10.44,
- 10.5,
- 10.56,
- 10.62,
- 10.68,
- 10.74,
- 10.8,
- 10.86,
- 10.92,
- 10.98,
- 11.04,
- 11.1,
- 11.16,
- 11.22,
- 11.28,
- 11.34,
- 11.4,
- 11.46,
- 11.52,
- 11.58,
- 11.64,
- 11.7,
- 11.76,
- 11.82,
- 11.88,
- 11.94,
- 12,
- 12.06,
- 12.12,
- 12.18,
- 12.24,
- 12.3,
- 12.36,
- 12.42,
- 12.48,
- 12.54,
- 12.6,
- 12.66,
- 12.72,
- 12.78,
- 12.84,
- 12.9,
- 12.96,
- 13.02,
- 13.08,
- 13.14,
- 13.2,
- 13.26,
- 13.32,
- 13.38,
- 13.44,
- 13.5,
- 13.56,
- 13.62,
- 13.68,
- 13.74,
- 13.8,
- 13.86,
- 13.92,
- 13.98,
- 14.04,
- 14.1,
- 14.16,
- 14.22,
- 14.28,
- 14.34,
- 14.4,
- 14.46,
- 14.52,
- 14.58,
- 14.64,
- 14.7,
- 14.76,
- 14.82,
- 14.88,
- 14.94,
- 15,
- 15.06,
- 15.12,
- 15.18,
- 15.24,
- 15.3,
- 15.36,
- 15.42,
- 15.48,
- 15.54,
- 15.6,
- 15.66,
- 15.72,
- 15.78,
- 15.84,
- 15.9,
- 15.96,
- 16.02,
- 16.08,
- 16.14,
- 16.2,
- 16.26,
- 16.32,
- 16.38,
- 16.44,
- 16.5,
- 16.56,
- 16.62,
- 16.68,
- 16.74,
- 16.8,
- 16.86,
- 16.92,
- 16.98,
- 17.04,
- 17.1,
- 17.16,
- 17.22,
- 17.28,
- 17.34,
- 17.4,
- 17.46,
- 17.52,
- 17.58,
- 17.64,
- 17.7,
- 17.76,
- 17.82,
- 17.88,
- 17.94,
- 18,
- 18.06,
- 18.12,
- 18.18,
- 18.24,
- 18.3,
- 18.36,
- 18.42,
- 18.48,
- 18.54,
- 18.6,
- 18.66,
- 18.72,
- 18.78,
- 18.84,
- 18.9,
- 18.96,
- 19.02,
- 19.08,
- 19.14,
- 19.2,
- 19.26,
- 19.32,
- 19.38,
- 19.44,
- 19.5,
- 19.56,
- 19.62,
- 19.68,
- 19.74,
- 19.8,
- 19.86,
- 19.92,
- 19.98,
- 20.04,
- 20.1,
- 20.16,
- 20.22,
- 20.28,
- 20.34,
- 20.4,
- 20.46,
- 20.52,
- 20.58,
- 20.64,
- 20.7,
- 20.76,
- 20.82,
- 20.88,
- 20.94,
- 21,
- 21.06,
- 21.12,
- 21.18,
- 21.24,
- 21.3,
- 21.36,
- 21.42,
- 21.48,
- 21.54,
- 21.6,
- 21.66,
- 21.72,
- 21.78,
- 21.84,
- 21.9,
- 21.96,
- 22.02,
- 22.08,
- 22.14,
- 22.2,
- 22.26,
- 22.32,
- 22.38,
- 22.44,
- 22.5,
- 22.56,
- 22.62,
- 22.68,
- 22.74,
- 22.8,
- 22.86,
- 22.92,
- 22.98,
- 23.04,
- 23.1,
- 23.16,
- 23.22,
- 23.28,
- 23.34,
- 23.4,
- 23.46,
- 23.52,
- 23.58,
- 23.64,
- 23.7,
- 23.76,
- 23.82,
- 23.88,
- 23.94,
- 24,
- 24.06,
- 24.12,
- 24.18,
- 24.24,
- 24.3,
- 24.36,
- 24.42,
- 24.48,
- 24.54,
- 24.6,
- 24.66,
- 24.72,
- 24.78,
- 24.84,
- 24.9,
- 24.96,
- 25.02,
- 25.08,
- 25.14,
- 25.2,
- 25.26,
- 25.32,
- 25.38,
- 25.44,
- 25.5,
- 25.56,
- 25.62,
- 25.68,
- 25.74,
- 25.8,
- 25.86,
- 25.92,
- 25.98,
- 26.04,
- 26.1,
- 26.16,
- 26.22,
- 26.28,
- 26.34,
- 26.4,
- 26.46,
- 26.52,
- 26.58,
- 26.64,
- 26.7,
- 26.76,
- 26.82,
- 26.88,
- 26.94,
- 27,
- 27.06,
- 27.12,
- 27.18,
- 27.24,
- 27.3,
- 27.36,
- 27.42,
- 27.48,
- 27.54,
- 27.6,
- 27.66,
- 27.72,
- 27.78,
- 27.84,
- 27.9,
- 27.96,
- 28.02,
- 28.08,
- 28.14,
- 28.2,
- 28.26,
- 28.32,
- 28.38,
- 28.44,
- 28.5,
- 28.56,
- 28.62,
- 28.68,
- 28.74,
- 28.8,
- 28.86,
- 28.92,
- 28.98,
- 29.04,
- 29.1,
- 29.16,
- 29.22,
- 29.28,
- 29.34,
- 29.4,
- 29.46,
- 29.52,
- 29.58,
- 29.64,
- 29.7,
- 29.76,
- 29.82,
- 29.88,
- 29.94,
- 30,
- 30.06,
- 30.12,
- 30.18,
- 30.24,
- 30.3,
- 30.36,
- 30.42,
- 30.48,
- 30.54,
- 30.6,
- 30.66,
- 30.72,
- 30.78,
- 30.84,
- 30.9,
- 30.96,
- 31.02,
- 31.08,
- 31.14,
- 31.2,
- 31.26,
- 31.32,
- 31.38,
- 31.44,
- 31.5,
- 31.56,
- 31.62,
- 31.68,
- 31.74,
- 31.8,
- 31.86,
- 31.92,
- 31.98,
- 32.04,
- 32.1,
- 32.16,
- 32.22,
- 32.28,
- 32.34,
- 32.4,
- 32.46,
- 32.52,
- 32.58,
- 32.64,
- 32.7,
- 32.76,
- 32.82,
- 32.88,
- 32.94,
- 33,
- 33.06,
- 33.12,
- 33.18,
- 33.24,
- 33.3,
- 33.36,
- 33.42,
- 33.48,
- 33.54,
- 33.6,
- 33.66,
- 33.72,
- 33.78,
- 33.84,
- 33.9,
- 33.96,
- 34.02,
- 34.08,
- 34.14,
- 34.2,
- 34.26,
- 34.32,
- 34.38,
- 34.44,
- 34.5,
- 34.56,
- 34.62,
- 34.68,
- 34.74,
- 34.8,
- 34.86,
- 34.92,
- 34.98,
- 35.04,
- 35.1,
- 35.16,
- 35.22,
- 35.28,
- 35.34,
- 35.4,
- 35.46,
- 35.52,
- 35.58,
- 35.64,
- 35.7,
- 35.76,
- 35.82,
- 35.88,
- 35.94,
- 36,
- 36.06,
- 36.12,
- 36.18,
- 36.24,
- 36.3,
- 36.36,
- 36.42,
- 36.48,
- 36.54,
- 36.6,
- 36.66,
- 36.72,
- 36.78,
- 36.84,
- 36.9,
- 36.96,
- 37.02,
- 37.08,
- 37.14,
- 37.2,
- 37.26,
- 37.32,
- 37.38,
- 37.44,
- 37.5,
- 37.56,
- 37.62,
- 37.68,
- 37.74,
- 37.8,
- 37.86,
- 37.92,
- 37.98,
- 38.04,
- 38.1,
- 38.16,
- 38.22,
- 38.28,
- 38.34,
- 38.4,
- 38.46,
- 38.52,
- 38.58,
- 38.64,
- 38.7,
- 38.76,
- 38.82,
- 38.88,
- 38.94,
- 39,
- 39.06,
- 39.12,
- 39.18,
- 39.24,
- 39.3,
- 39.36,
- 39.42,
- 39.48,
- 39.54,
- 39.6,
- 39.66,
- 39.72,
- 39.78,
- 39.84,
- 39.9,
- 39.96,
- 40.02,
- 40.08,
- 40.14,
- 40.2,
- 40.26,
- 40.32,
- 40.38,
- 40.44,
- 40.5,
- 40.56,
- 40.62,
- 40.68,
- 40.74,
- 40.8,
- 40.86,
- 40.92,
- 40.98,
- 41.04,
- 41.1,
- 41.16,
- 41.22,
- 41.28,
- 41.34,
- 41.4,
- 41.46,
- 41.52,
- 41.58,
- 41.64,
- 41.7,
- 41.76,
- 41.82,
- 41.88,
- 41.94,
- 42,
- 42.06,
- 42.12,
- 42.18,
- 42.24,
- 42.3,
- 42.36,
- 42.42,
- 42.48,
- 42.54,
- 42.6,
- 42.66,
- 42.72,
- 42.78,
- 42.84,
- 42.9,
- 42.96,
- 43.02,
- 43.08,
- 43.14,
- 43.2,
- 43.26,
- 43.32,
- 43.38,
- 43.44,
- 43.5,
- 43.56,
- 43.62,
- 43.68,
- 43.74,
- 43.8,
- 43.86,
- 43.92,
- 43.98,
- 44.04,
- 44.1,
- 44.16,
- 44.22,
- 44.28,
- 44.34,
- 44.4,
- 44.46,
- 44.52,
- 44.58,
- 44.64,
- 44.7,
- 44.76,
- 44.82,
- 44.88,
- 44.94,
- 45,
- 45.06,
- 45.12,
- 45.18,
- 45.24,
- 45.3,
- 45.36,
- 45.42,
- 45.48,
- 45.54,
- 45.6,
- 45.66,
- 45.72,
- 45.78,
- 45.84,
- 45.9,
- 45.96,
- 46.02,
- 46.08,
- 46.14,
- 46.2,
- 46.26,
- 46.32,
- 46.38,
- 46.44,
- 46.5,
- 46.56,
- 46.62,
- 46.68,
- 46.74,
- 46.8,
- 46.86,
- 46.92,
- 46.98,
- 47.04,
- 47.1,
- 47.16,
- 47.22,
- 47.28,
- 47.34,
- 47.4,
- 47.46,
- 47.52,
- 47.58,
- 47.64,
- 47.7,
- 47.76,
- 47.82,
- 47.88,
- 47.94,
- 48,
- 48.06,
- 48.12,
- 48.18,
- 48.24,
- 48.3,
- 48.36,
- 48.42,
- 48.48,
- 48.54,
- 48.6,
- 48.66,
- 48.72,
- 48.78,
- 48.84,
- 48.9,
- 48.96,
- 49.02,
- 49.08,
- 49.14,
- 49.2,
- 49.26,
- 49.32,
- 49.38,
- 49.44,
- 49.5,
- 49.56,
- 49.62,
- 49.68,
- 49.74,
- 49.8,
- 49.86,
- 49.92,
- 49.98,
- 50.04,
- 50.1,
- 50.16,
- 50.22,
- 50.28,
- 50.34,
- 50.4,
- 50.46,
- 50.52,
- 50.58,
- 50.64,
- 50.7,
- 50.76,
- 50.82,
- 50.88,
- 50.94,
- 51,
- 51.06,
- 51.12,
- 51.18,
- 51.24,
- 51.3,
- 51.36,
- 51.42,
- 51.48,
- 51.54,
- 51.6,
- 51.66,
- 51.72,
- 51.78,
- 51.84,
- 51.9,
- 51.96,
- 52.02,
- 52.08,
- 52.14,
- 52.2,
- 52.26,
- 52.32,
- 52.38,
- 52.44,
- 52.5,
- 52.56,
- 52.62,
- 52.68,
- 52.74,
- 52.8,
- 52.86,
- 52.92,
- 52.98,
- 53.04,
- 53.1,
- 53.16,
- 53.22,
- 53.28,
- 53.34,
- 53.4,
- 53.46,
- 53.52,
- 53.58,
- 53.64,
- 53.7,
- 53.76,
- 53.82,
- 53.88,
- 53.94,
- 54,
- 54.06,
- 54.12,
- 54.18,
- 54.24,
- 54.3,
- 54.36,
- 54.42,
- 54.48,
- 54.54,
- 54.6,
- 54.66,
- 54.72,
- 54.78,
- 54.84,
- 54.9,
- 54.96,
- 55.02,
- 55.08,
- 55.14,
- 55.2,
- 55.26,
- 55.32,
- 55.38,
- 55.44,
- 55.5,
- 55.56,
- 55.62,
- 55.68,
- 55.74,
- 55.8,
- 55.86,
- 55.92,
- 55.98,
- 56.04,
- 56.1,
- 56.16,
- 56.22,
- 56.28,
- 56.34,
- 56.4,
- 56.46,
- 56.52,
- 56.58,
- 56.64,
- 56.7,
- 56.76,
- 56.82,
- 56.88,
- 56.94,
- 57,
- 57.06,
- 57.12,
- 57.18,
- 57.24,
- 57.3,
- 57.36,
- 57.42,
- 57.48,
- 57.54,
- 57.6,
- 57.66,
- 57.72,
- 57.78,
- 57.84,
- 57.9,
- 57.96,
- 58.02,
- 58.08,
- 58.14,
- 58.2,
- 58.26,
- 58.32,
- 58.38,
- 58.44,
- 58.5,
- 58.56,
- 58.62,
- 58.68,
- 58.74,
- 58.8,
- 58.86,
- 58.92,
- 58.98,
- 59.04,
- 59.1,
- 59.16,
- 59.22,
- 59.28,
- 59.34,
- 59.4,
- 59.46,
- 59.52,
- 59.58,
- 59.64,
- 59.7,
- 59.76,
- 59.82,
- 59.88,
- 59.94,
+ 6,
+ 6.06,
+ 6.12,
+ 6.18,
+ 6.24,
+ 6.3,
+ 6.36,
+ 6.42,
+ 6.48,
+ 6.54,
+ 6.6,
+ 6.66,
+ 6.72,
+ 6.78,
+ 6.84,
+ 6.9,
+ 6.96,
+ 7.02,
+ 7.08,
+ 7.14,
+ 7.2,
+ 7.26,
+ 7.32,
+ 7.38,
+ 7.44,
+ 7.5,
+ 7.56,
+ 7.62,
+ 7.68,
+ 7.74,
+ 7.8,
+ 7.86,
+ 7.92,
+ 7.98,
+ 8.04,
+ 8.1,
+ 8.16,
+ 8.22,
+ 8.28,
+ 8.34,
+ 8.4,
+ 8.46,
+ 8.52,
+ 8.58,
+ 8.64,
+ 8.7,
+ 8.76,
+ 8.82,
+ 8.88,
+ 8.94,
+ 9,
+ 9.06,
+ 9.12,
+ 9.18,
+ 9.24,
+ 9.3,
+ 9.36,
+ 9.42,
+ 9.48,
+ 9.54,
+ 9.6,
+ 9.66,
+ 9.72,
+ 9.78,
+ 9.84,
+ 9.9,
+ 9.96,
+ 10.02,
+ 10.08,
+ 10.14,
+ 10.2,
+ 10.26,
+ 10.32,
+ 10.38,
+ 10.44,
+ 10.5,
+ 10.56,
+ 10.62,
+ 10.68,
+ 10.74,
+ 10.8,
+ 10.86,
+ 10.92,
+ 10.98,
+ 11.04,
+ 11.1,
+ 11.16,
+ 11.22,
+ 11.28,
+ 11.34,
+ 11.4,
+ 11.46,
+ 11.52,
+ 11.58,
+ 11.64,
+ 11.7,
+ 11.76,
+ 11.82,
+ 11.88,
+ 11.94,
+ 12,
+ 12.06,
+ 12.12,
+ 12.18,
+ 12.24,
+ 12.3,
+ 12.36,
+ 12.42,
+ 12.48,
+ 12.54,
+ 12.6,
+ 12.66,
+ 12.72,
+ 12.78,
+ 12.84,
+ 12.9,
+ 12.96,
+ 13.02,
+ 13.08,
+ 13.14,
+ 13.2,
+ 13.26,
+ 13.32,
+ 13.38,
+ 13.44,
+ 13.5,
+ 13.56,
+ 13.62,
+ 13.68,
+ 13.74,
+ 13.8,
+ 13.86,
+ 13.92,
+ 13.98,
+ 14.04,
+ 14.1,
+ 14.16,
+ 14.22,
+ 14.28,
+ 14.34,
+ 14.4,
+ 14.46,
+ 14.52,
+ 14.58,
+ 14.64,
+ 14.7,
+ 14.76,
+ 14.82,
+ 14.88,
+ 14.94,
+ 15,
+ 15.06,
+ 15.12,
+ 15.18,
+ 15.24,
+ 15.3,
+ 15.36,
+ 15.42,
+ 15.48,
+ 15.54,
+ 15.6,
+ 15.66,
+ 15.72,
+ 15.78,
+ 15.84,
+ 15.9,
+ 15.96,
+ 16.02,
+ 16.08,
+ 16.14,
+ 16.2,
+ 16.26,
+ 16.32,
+ 16.38,
+ 16.44,
+ 16.5,
+ 16.56,
+ 16.62,
+ 16.68,
+ 16.74,
+ 16.8,
+ 16.86,
+ 16.92,
+ 16.98,
+ 17.04,
+ 17.1,
+ 17.16,
+ 17.22,
+ 17.28,
+ 17.34,
+ 17.4,
+ 17.46,
+ 17.52,
+ 17.58,
+ 17.64,
+ 17.7,
+ 17.76,
+ 17.82,
+ 17.88,
+ 17.94,
+ 18,
+ 18.06,
+ 18.12,
+ 18.18,
+ 18.24,
+ 18.3,
+ 18.36,
+ 18.42,
+ 18.48,
+ 18.54,
+ 18.6,
+ 18.66,
+ 18.72,
+ 18.78,
+ 18.84,
+ 18.9,
+ 18.96,
+ 19.02,
+ 19.08,
+ 19.14,
+ 19.2,
+ 19.26,
+ 19.32,
+ 19.38,
+ 19.44,
+ 19.5,
+ 19.56,
+ 19.62,
+ 19.68,
+ 19.74,
+ 19.8,
+ 19.86,
+ 19.92,
+ 19.98,
+ 20.04,
+ 20.1,
+ 20.16,
+ 20.22,
+ 20.28,
+ 20.34,
+ 20.4,
+ 20.46,
+ 20.52,
+ 20.58,
+ 20.64,
+ 20.7,
+ 20.76,
+ 20.82,
+ 20.88,
+ 20.94,
+ 21,
+ 21.06,
+ 21.12,
+ 21.18,
+ 21.24,
+ 21.3,
+ 21.36,
+ 21.42,
+ 21.48,
+ 21.54,
+ 21.6,
+ 21.66,
+ 21.72,
+ 21.78,
+ 21.84,
+ 21.9,
+ 21.96,
+ 22.02,
+ 22.08,
+ 22.14,
+ 22.2,
+ 22.26,
+ 22.32,
+ 22.38,
+ 22.44,
+ 22.5,
+ 22.56,
+ 22.62,
+ 22.68,
+ 22.74,
+ 22.8,
+ 22.86,
+ 22.92,
+ 22.98,
+ 23.04,
+ 23.1,
+ 23.16,
+ 23.22,
+ 23.28,
+ 23.34,
+ 23.4,
+ 23.46,
+ 23.52,
+ 23.58,
+ 23.64,
+ 23.7,
+ 23.76,
+ 23.82,
+ 23.88,
+ 23.94,
+ 24,
+ 24.06,
+ 24.12,
+ 24.18,
+ 24.24,
+ 24.3,
+ 24.36,
+ 24.42,
+ 24.48,
+ 24.54,
+ 24.6,
+ 24.66,
+ 24.72,
+ 24.78,
+ 24.84,
+ 24.9,
+ 24.96,
+ 25.02,
+ 25.08,
+ 25.14,
+ 25.2,
+ 25.26,
+ 25.32,
+ 25.38,
+ 25.44,
+ 25.5,
+ 25.56,
+ 25.62,
+ 25.68,
+ 25.74,
+ 25.8,
+ 25.86,
+ 25.92,
+ 25.98,
+ 26.04,
+ 26.1,
+ 26.16,
+ 26.22,
+ 26.28,
+ 26.34,
+ 26.4,
+ 26.46,
+ 26.52,
+ 26.58,
+ 26.64,
+ 26.7,
+ 26.76,
+ 26.82,
+ 26.88,
+ 26.94,
+ 27,
+ 27.06,
+ 27.12,
+ 27.18,
+ 27.24,
+ 27.3,
+ 27.36,
+ 27.42,
+ 27.48,
+ 27.54,
+ 27.6,
+ 27.66,
+ 27.72,
+ 27.78,
+ 27.84,
+ 27.9,
+ 27.96,
+ 28.02,
+ 28.08,
+ 28.14,
+ 28.2,
+ 28.26,
+ 28.32,
+ 28.38,
+ 28.44,
+ 28.5,
+ 28.56,
+ 28.62,
+ 28.68,
+ 28.74,
+ 28.8,
+ 28.86,
+ 28.92,
+ 28.98,
+ 29.04,
+ 29.1,
+ 29.16,
+ 29.22,
+ 29.28,
+ 29.34,
+ 29.4,
+ 29.46,
+ 29.52,
+ 29.58,
+ 29.64,
+ 29.7,
+ 29.76,
+ 29.82,
+ 29.88,
+ 29.94,
+ 30,
+ 30.06,
+ 30.12,
+ 30.18,
+ 30.24,
+ 30.3,
+ 30.36,
+ 30.42,
+ 30.48,
+ 30.54,
+ 30.6,
+ 30.66,
+ 30.72,
+ 30.78,
+ 30.84,
+ 30.9,
+ 30.96,
+ 31.02,
+ 31.08,
+ 31.14,
+ 31.2,
+ 31.26,
+ 31.32,
+ 31.38,
+ 31.44,
+ 31.5,
+ 31.56,
+ 31.62,
+ 31.68,
+ 31.74,
+ 31.8,
+ 31.86,
+ 31.92,
+ 31.98,
+ 32.04,
+ 32.1,
+ 32.16,
+ 32.22,
+ 32.28,
+ 32.34,
+ 32.4,
+ 32.46,
+ 32.52,
+ 32.58,
+ 32.64,
+ 32.7,
+ 32.76,
+ 32.82,
+ 32.88,
+ 32.94,
+ 33,
+ 33.06,
+ 33.12,
+ 33.18,
+ 33.24,
+ 33.3,
+ 33.36,
+ 33.42,
+ 33.48,
+ 33.54,
+ 33.6,
+ 33.66,
+ 33.72,
+ 33.78,
+ 33.84,
+ 33.9,
+ 33.96,
+ 34.02,
+ 34.08,
+ 34.14,
+ 34.2,
+ 34.26,
+ 34.32,
+ 34.38,
+ 34.44,
+ 34.5,
+ 34.56,
+ 34.62,
+ 34.68,
+ 34.74,
+ 34.8,
+ 34.86,
+ 34.92,
+ 34.98,
+ 35.04,
+ 35.1,
+ 35.16,
+ 35.22,
+ 35.28,
+ 35.34,
+ 35.4,
+ 35.46,
+ 35.52,
+ 35.58,
+ 35.64,
+ 35.7,
+ 35.76,
+ 35.82,
+ 35.88,
+ 35.94,
+ 36,
+ 36.06,
+ 36.12,
+ 36.18,
+ 36.24,
+ 36.3,
+ 36.36,
+ 36.42,
+ 36.48,
+ 36.54,
+ 36.6,
+ 36.66,
+ 36.72,
+ 36.78,
+ 36.84,
+ 36.9,
+ 36.96,
+ 37.02,
+ 37.08,
+ 37.14,
+ 37.2,
+ 37.26,
+ 37.32,
+ 37.38,
+ 37.44,
+ 37.5,
+ 37.56,
+ 37.62,
+ 37.68,
+ 37.74,
+ 37.8,
+ 37.86,
+ 37.92,
+ 37.98,
+ 38.04,
+ 38.1,
+ 38.16,
+ 38.22,
+ 38.28,
+ 38.34,
+ 38.4,
+ 38.46,
+ 38.52,
+ 38.58,
+ 38.64,
+ 38.7,
+ 38.76,
+ 38.82,
+ 38.88,
+ 38.94,
+ 39,
+ 39.06,
+ 39.12,
+ 39.18,
+ 39.24,
+ 39.3,
+ 39.36,
+ 39.42,
+ 39.48,
+ 39.54,
+ 39.6,
+ 39.66,
+ 39.72,
+ 39.78,
+ 39.84,
+ 39.9,
+ 39.96,
+ 40.02,
+ 40.08,
+ 40.14,
+ 40.2,
+ 40.26,
+ 40.32,
+ 40.38,
+ 40.44,
+ 40.5,
+ 40.56,
+ 40.62,
+ 40.68,
+ 40.74,
+ 40.8,
+ 40.86,
+ 40.92,
+ 40.98,
+ 41.04,
+ 41.1,
+ 41.16,
+ 41.22,
+ 41.28,
+ 41.34,
+ 41.4,
+ 41.46,
+ 41.52,
+ 41.58,
+ 41.64,
+ 41.7,
+ 41.76,
+ 41.82,
+ 41.88,
+ 41.94,
+ 42,
+ 42.06,
+ 42.12,
+ 42.18,
+ 42.24,
+ 42.3,
+ 42.36,
+ 42.42,
+ 42.48,
+ 42.54,
+ 42.6,
+ 42.66,
+ 42.72,
+ 42.78,
+ 42.84,
+ 42.9,
+ 42.96,
+ 43.02,
+ 43.08,
+ 43.14,
+ 43.2,
+ 43.26,
+ 43.32,
+ 43.38,
+ 43.44,
+ 43.5,
+ 43.56,
+ 43.62,
+ 43.68,
+ 43.74,
+ 43.8,
+ 43.86,
+ 43.92,
+ 43.98,
+ 44.04,
+ 44.1,
+ 44.16,
+ 44.22,
+ 44.28,
+ 44.34,
+ 44.4,
+ 44.46,
+ 44.52,
+ 44.58,
+ 44.64,
+ 44.7,
+ 44.76,
+ 44.82,
+ 44.88,
+ 44.94,
+ 45,
+ 45.06,
+ 45.12,
+ 45.18,
+ 45.24,
+ 45.3,
+ 45.36,
+ 45.42,
+ 45.48,
+ 45.54,
+ 45.6,
+ 45.66,
+ 45.72,
+ 45.78,
+ 45.84,
+ 45.9,
+ 45.96,
+ 46.02,
+ 46.08,
+ 46.14,
+ 46.2,
+ 46.26,
+ 46.32,
+ 46.38,
+ 46.44,
+ 46.5,
+ 46.56,
+ 46.62,
+ 46.68,
+ 46.74,
+ 46.8,
+ 46.86,
+ 46.92,
+ 46.98,
+ 47.04,
+ 47.1,
+ 47.16,
+ 47.22,
+ 47.28,
+ 47.34,
+ 47.4,
+ 47.46,
+ 47.52,
+ 47.58,
+ 47.64,
+ 47.7,
+ 47.76,
+ 47.82,
+ 47.88,
+ 47.94,
+ 48,
+ 48.06,
+ 48.12,
+ 48.18,
+ 48.24,
+ 48.3,
+ 48.36,
+ 48.42,
+ 48.48,
+ 48.54,
+ 48.6,
+ 48.66,
+ 48.72,
+ 48.78,
+ 48.84,
+ 48.9,
+ 48.96,
+ 49.02,
+ 49.08,
+ 49.14,
+ 49.2,
+ 49.26,
+ 49.32,
+ 49.38,
+ 49.44,
+ 49.5,
+ 49.56,
+ 49.62,
+ 49.68,
+ 49.74,
+ 49.8,
+ 49.86,
+ 49.92,
+ 49.98,
+ 50.04,
+ 50.1,
+ 50.16,
+ 50.22,
+ 50.28,
+ 50.34,
+ 50.4,
+ 50.46,
+ 50.52,
+ 50.58,
+ 50.64,
+ 50.7,
+ 50.76,
+ 50.82,
+ 50.88,
+ 50.94,
+ 51,
+ 51.06,
+ 51.12,
+ 51.18,
+ 51.24,
+ 51.3,
+ 51.36,
+ 51.42,
+ 51.48,
+ 51.54,
+ 51.6,
+ 51.66,
+ 51.72,
+ 51.78,
+ 51.84,
+ 51.9,
+ 51.96,
+ 52.02,
+ 52.08,
+ 52.14,
+ 52.2,
+ 52.26,
+ 52.32,
+ 52.38,
+ 52.44,
+ 52.5,
+ 52.56,
+ 52.62,
+ 52.68,
+ 52.74,
+ 52.8,
+ 52.86,
+ 52.92,
+ 52.98,
+ 53.04,
+ 53.1,
+ 53.16,
+ 53.22,
+ 53.28,
+ 53.34,
+ 53.4,
+ 53.46,
+ 53.52,
+ 53.58,
+ 53.64,
+ 53.7,
+ 53.76,
+ 53.82,
+ 53.88,
+ 53.94,
+ 54,
+ 54.06,
+ 54.12,
+ 54.18,
+ 54.24,
+ 54.3,
+ 54.36,
+ 54.42,
+ 54.48,
+ 54.54,
+ 54.6,
+ 54.66,
+ 54.72,
+ 54.78,
+ 54.84,
+ 54.9,
+ 54.96,
+ 55.02,
+ 55.08,
+ 55.14,
+ 55.2,
+ 55.26,
+ 55.32,
+ 55.38,
+ 55.44,
+ 55.5,
+ 55.56,
+ 55.62,
+ 55.68,
+ 55.74,
+ 55.8,
+ 55.86,
+ 55.92,
+ 55.98,
+ 56.04,
+ 56.1,
+ 56.16,
+ 56.22,
+ 56.28,
+ 56.34,
+ 56.4,
+ 56.46,
+ 56.52,
+ 56.58,
+ 56.64,
+ 56.7,
+ 56.76,
+ 56.82,
+ 56.88,
+ 56.94,
+ 57,
+ 57.06,
+ 57.12,
+ 57.18,
+ 57.24,
+ 57.3,
+ 57.36,
+ 57.42,
+ 57.48,
+ 57.54,
+ 57.6,
+ 57.66,
+ 57.72,
+ 57.78,
+ 57.84,
+ 57.9,
+ 57.96,
+ 58.02,
+ 58.08,
+ 58.14,
+ 58.2,
+ 58.26,
+ 58.32,
+ 58.38,
+ 58.44,
+ 58.5,
+ 58.56,
+ 58.62,
+ 58.68,
+ 58.74,
+ 58.8,
+ 58.86,
+ 58.92,
+ 58.98,
+ 59.04,
+ 59.1,
+ 59.16,
+ 59.22,
+ 59.28,
+ 59.34,
+ 59.4,
+ 59.46,
+ 59.52,
+ 59.58,
+ 59.64,
+ 59.7,
+ 59.76,
+ 59.82,
+ 59.88,
+ 59.94,
60
- ],
+ ],
"y": [
- 0.0337324099894203,
- 0.0337506335248567,
- 0.0337815679895183,
- 0.0338209912000832,
- 0.0338641105105671,
- 0.0339058665346615,
- 0.0339413251278595,
- 0.0339661647523533,
- 0.0339772125357947,
- 0.0339729226566527,
- 0.033953662168846,
- 0.0339216978831281,
- 0.0338808586295907,
- 0.0338359442576699,
- 0.0337920209846296,
- 0.0337537562831184,
- 0.0337249108692808,
- 0.0337080457548248,
- 0.033704443389631,
- 0.0337141973540011,
- 0.0337364005271348,
- 0.0337693602118846,
- 0.0338107901693356,
- 0.0338579661016636,
- 0.033907866910807,
- 0.0339573418451188,
- 0.0340033343075226,
- 0.0340431605772702,
- 0.0340748010716184,
- 0.034097132772545,
- 0.0341100301061137,
- 0.0341142922198986,
- 0.0341114062904791,
- 0.0341032078009452,
- 0.03409152897635,
- 0.0340779253703681,
- 0.0340635404307999,
- 0.0340491209927421,
- 0.0340351500724969,
- 0.0340220330528303,
- 0.0340102681240557,
- 0.0340005493690034,
- 0.033993779893465,
- 0.0339910001189458,
- 0.0339932552605644,
- 0.0340014348366816,
- 0.0340161171916296,
- 0.034037444909226,
- 0.0340650449162833,
- 0.0340979944546954,
- 0.0341348263808801,
- 0.0341735676718665,
- 0.0342118120544243,
- 0.0342468352504469,
- 0.0342757622070202,
- 0.0342957864124756,
- 0.0343044254091363,
- 0.0342997822056084,
- 0.0342807764448544,
- 0.0342473124103017,
- 0.0342003583703611,
- 0.0341419193780046,
- 0.0340748948191612,
- 0.034002826796327,
- 0.0339295658017467,
- 0.0338588990911849,
- 0.03379419544554,
- 0.0337381134662892,
- 0.0336924032026137,
- 0.0336578114266735,
- 0.0336340864165034,
- 0.0336200705684679,
- 0.0336138660169612,
- 0.0336130564627704,
- 0.0336149666460637,
- 0.0336169403234354,
- 0.0336166182757174,
- 0.0336121971682577,
- 0.0336026450574464,
- 0.0335878415624405,
- 0.0335686080761558,
- 0.0335466049111733,
- 0.0335240994826174,
- 0.0335036426858069,
- 0.0334877140258783,
- 0.0334783993445209,
- 0.0334771492826582,
- 0.0334846421010131,
- 0.0335007522731869,
- 0.0335246118736179,
- 0.0335547444208136,
- 0.0335892473717161,
- 0.0336259984275216,
- 0.0336628628810158,
- 0.0336978844456116,
- 0.0337294474486912,
- 0.0337563997337481,
- 0.0337781222795808,
- 0.0337945286560172,
- 0.0338059829133448,
- 0.0338131415840473,
- 0.0338167482923759,
- 0.0338174262773239,
- 0.0338155157146304,
- 0.0338109886993344,
- 0.0338034529485203,
- 0.0337922355519195,
- 0.0337765261475695,
- 0.033755554555658,
- 0.0337287778079607,
- 0.0336960528701551,
- 0.0336577733961747,
- 0.0336149516926188,
- 0.0335692304756988,
- 0.0335228129976949,
- 0.033478306274087,
- 0.0334384828710325,
- 0.0334059823300392,
- 0.0333829899030164,
- 0.0333709412346123,
- 0.0333703018876496,
- 0.0333804599586907,
- 0.0333997529737305,
- 0.0334256328377962,
- 0.0334549587868494,
- 0.0334843981720504,
- 0.0335109059615595,
- 0.0335322440330649,
- 0.0335474915815896,
- 0.0335574916374436,
- 0.0335651785877967,
- 0.03357573820039,
- 0.0335965647635699,
- 0.0336370008378528,
- 0.0337078742586673,
- 0.0338208788327662,
- 0.033987866921042,
- 0.0342201212348864,
- 0.0345276467895924,
- 0.0349184816018572,
- 0.0353979829415905,
- 0.0359680209012253,
- 0.0366260150845891,
- 0.0373637928649968,
- 0.0381663368530858,
- 0.0390106279109435,
- 0.0398649647909136,
- 0.0406893034722926,
- 0.0414372084540599,
- 0.0420598075038544,
- 0.0425115961931326,
- 0.0427571377431437,
- 0.0427770079817988,
- 0.0425712321716512,
- 0.042159177751094,
- 0.0415760883250354,
- 0.0408674992879576,
- 0.0400831617163414,
- 0.0392718032237518,
- 0.038477414680372,
- 0.0377371420818759,
- 0.0370804807101817,
- 0.0365293296982827,
- 0.0360984916745405,
- 0.0357963055171771,
- 0.0356252191861262,
- 0.0355822148722006,
- 0.0356590823530655,
- 0.0358425995981578,
- 0.0361147243806243,
- 0.0364529266948339,
- 0.0368307971184145,
- 0.0372190489812766,
- 0.0375869907216185,
- 0.0379044751839002,
- 0.0381442277365231,
- 0.0382843152905246,
- 0.0383103737252675,
- 0.0382171322450491,
- 0.0380088384238591,
- 0.0376984187692475,
- 0.0373055314959159,
- 0.0368539432991663,
- 0.0363687767777155,
- 0.035874106813921,
- 0.0353911968057098,
- 0.0349374542404644,
- 0.0345260214551941,
- 0.0341658304453148,
- 0.0338619351411303,
- 0.0336159683137654,
- 0.0334266268148259,
- 0.0332901455222305,
- 0.0332007618762519,
- 0.0331511923684558,
- 0.0331331406725203,
- 0.0331378410326719,
- 0.033156619595547,
- 0.0331814391259553,
- 0.0332053836352998,
- 0.0332230393874423,
- 0.033230736134161,
- 0.0332266260932526,
- 0.0332105969339369,
- 0.0331840359582552,
- 0.0331494808202762,
- 0.0331102028781955,
- 0.0330697711460118,
- 0.0330316399526864,
- 0.0329987954456335,
- 0.032973487438989,
- 0.0329570641084601,
- 0.0329499168373222,
- 0.0329515308923834,
- 0.0329606259502336,
- 0.0329753613856429,
- 0.0329935769069827,
- 0.033013039997954,
- 0.0330316760936281,
- 0.0330477630463383,
- 0.0330600765474452,
- 0.0330679775409663,
- 0.0330714369816827,
- 0.0330709981438358,
- 0.0330676820384678,
- 0.0330628468337463,
- 0.0330580168721871,
- 0.033054700355099,
- 0.0330542163968999,
- 0.0330575513091469,
- 0.0330652602926267,
- 0.0330774244650625,
- 0.0330936653615317,
- 0.0331132112234422,
- 0.0331350029838032,
- 0.0331578237782978,
- 0.0331804343284033,
- 0.0332016974361468,
- 0.0332206776291579,
- 0.0332367061101011,
- 0.0332494059668639,
- 0.0332586775324617,
- 0.0332646484641142,
- 0.0332675972960628,
- 0.0332678626162377,
- 0.0332657521188895,
- 0.0332614659598077,
- 0.0332550466688508,
- 0.0332463635366469,
- 0.0332351337746866,
- 0.0332209771183507,
- 0.0332034959656748,
- 0.0331823700523136,
- 0.0331574529120501,
- 0.0331288567173493,
- 0.0330970126204502,
- 0.0330626957979093,
- 0.0330270082503143,
- 0.0329913176613207,
- 0.0329571563943439,
- 0.0329260900347113,
- 0.0328995691101606,
- 0.032878780421661,
- 0.0328645155664838,
- 0.0328570734318808,
- 0.03285621039535,
- 0.0328611467268423,
- 0.03287063086226,
- 0.0328830559399051,
- 0.0328966165514757,
- 0.0329094890245876,
- 0.0329200160916781,
- 0.0329268763662157,
- 0.0329292203460976,
- 0.0329267575609791,
- 0.0329197840061248,
- 0.0329091450839221,
- 0.0328961364441772,
- 0.0328823525010279,
- 0.0328694989476932,
- 0.0328591903406138,
- 0.0328527561310755,
- 0.0328510780848232,
- 0.0328544788853255,
- 0.03286267621638,
- 0.0328748093909228,
- 0.0328895374437741,
- 0.0329051994000428,
- 0.0329200199744252,
- 0.0329323379653347,
- 0.0329408307393727,
- 0.0329447070847789,
- 0.0329438428733001,
- 0.0329388396283983,
- 0.0329309949126126,
- 0.0329221843733263,
- 0.0329146666828301,
- 0.0329108326052374,
- 0.032912926417629,
- 0.0329227709918394,
- 0.0329415269539816,
- 0.0329695121684231,
- 0.0330061014227554,
- 0.0330497186754902,
- 0.0330979262685075,
- 0.0331476073300341,
- 0.033195229113974,
- 0.03323716621653,
- 0.0332700539761426,
- 0.0332911351902225,
- 0.0332985595397165,
- 0.0332915968403815,
- 0.0332707336402626,
- 0.0332376373104022,
- 0.0331949902759941,
- 0.0331462156680851,
- 0.0330951304656611,
- 0.0330455702254799,
- 0.0330010297732093,
- 0.0329643578110639,
- 0.0329375327733984,
- 0.0329215353381864,
- 0.0329163221127051,
- 0.0329208963081956,
- 0.0329334646054858,
- 0.0329516639968534,
- 0.0329728372284784,
- 0.0329943303112832,
- 0.0330137812271861,
- 0.0330293671068817,
- 0.0330399795968502,
- 0.0330453058528163,
- 0.0330458050714452,
- 0.0330425855994101,
- 0.0330372023637525,
- 0.0330314055946727,
- 0.0330268774588495,
- 0.0330249926505046,
- 0.0330266330044756,
- 0.0330320766092069,
- 0.0330409708710896,
- 0.0330523884017643,
- 0.0330649556428663,
- 0.0330770371749121,
- 0.0330869535045729,
- 0.0330932065814292,
- 0.0330946855799089,
- 0.0330908263297891,
- 0.0330817020506408,
- 0.0330680310607176,
- 0.0330510981545525,
- 0.0330325985909318,
- 0.0330144248154845,
- 0.0329984241325042,
- 0.0329861593448163,
- 0.0329787036848784,
- 0.0329764967133358,
- 0.0329792802071021,
- 0.0329861234242122,
- 0.0329955364616918,
- 0.0330056595706299,
- 0.033014506144576,
- 0.0330202287430966,
- 0.0330213723410299,
- 0.0330170785295582,
- 0.033007209778374,
- 0.032992374122678,
- 0.032973846138154,
- 0.0329533966661082,
- 0.0329330577261254,
- 0.0329148574568681,
- 0.0329005616192732,
- 0.0328914540137109,
- 0.0328881802082071,
- 0.0328906695713095,
- 0.0328981414767753,
- 0.0329091935305732,
- 0.0329219628472304,
- 0.0329343454414836,
- 0.0329442533108988,
- 0.0329498836462614,
- 0.0329499702788681,
- 0.032943985162985,
- 0.032932259149445,
- 0.0329159981230518,
- 0.0328971831636512,
- 0.0328783602172046,
- 0.0328623424565315,
- 0.0328518629695121,
- 0.0328492233884264,
- 0.0328559843365849,
- 0.0328727370254555,
- 0.0328989842062715,
- 0.0329331453446171,
- 0.0329726870896905,
- 0.0330143668204767,
- 0.0330545648294649,
- 0.0330896702066418,
- 0.0331164777498503,
- 0.0331325495992186,
- 0.0331364970499333,
- 0.0331281458431514,
- 0.0331085618597029,
- 0.0330799319914791,
- 0.0330453143389758,
- 0.0330082894284989,
- 0.0329725567029216,
- 0.0329415260743894,
- 0.0329179524861774,
- 0.0329036534873076,
- 0.0328993380037367,
- 0.0329045610747319,
- 0.0329178059775152,
- 0.0329366827504645,
- 0.0329582209761423,
- 0.0329792250763987,
- 0.0329966529283203,
- 0.0330079744243916,
- 0.0330114669967842,
- 0.0330064111401697,
- 0.0329931607415162,
- 0.0329730793810381,
- 0.0329483522101985,
- 0.0329217002523326,
- 0.0328960368296855,
- 0.0328741121460467,
- 0.0328581912618948,
- 0.0328498037226452,
- 0.0328495918474783,
- 0.0328572713194424,
- 0.0328717041007573,
- 0.0328910711737954,
- 0.032913122067232,
- 0.0329354701883746,
- 0.0329558981454824,
- 0.0329726359380944,
- 0.0329845774521966,
- 0.0329914072647823,
- 0.0329936201257338,
- 0.0329924288487049,
- 0.0329895711739844,
- 0.0329870403036769,
- 0.0329867749190756,
- 0.0329903507106359,
- 0.0329987158857589,
- 0.0330120079105195,
- 0.0330294787574616,
- 0.0330495423564144,
- 0.0330699420937568,
- 0.0330880196603966,
- 0.0331010514133117,
- 0.033106607293276,
- 0.0331028827732016,
- 0.0330889577891055,
- 0.0330649477091713,
- 0.0330320276902225,
- 0.0329923296686908,
- 0.0329487273564675,
- 0.0329045368263683,
- 0.0328631678914552,
- 0.0328277647882032,
- 0.032800874294462,
- 0.0327841759642667,
- 0.0327783031549684,
- 0.0327827753537361,
- 0.0327960522265119,
- 0.0328157079596733,
- 0.0328387111531937,
- 0.0328617816756604,
- 0.032881783395773,
- 0.0328961033170409,
- 0.0329029662147536,
- 0.0329016411236449,
- 0.0328925114500635,
- 0.03287700112696,
- 0.0328573705662619,
- 0.0328364137070662,
- 0.0328170982702778,
- 0.032802194694836,
- 0.0327939363434839,
- 0.0327937465958374,
- 0.0328020595120115,
- 0.0328182512209107,
- 0.0328406894684226,
- 0.0328668985395424,
- 0.0328938255971905,
- 0.0329181824919968,
- 0.0329368255584028,
- 0.0329471272824969,
- 0.0329472910008078,
- 0.0329365652439224,
- 0.0329153282237869,
- 0.0328850328953258,
- 0.0328480245625248,
- 0.0328072612308098,
- 0.0327659782078637,
- 0.0327273415645361,
- 0.0326941310513146,
- 0.0326684844069956,
- 0.0326517244235028,
- 0.0326442797191478,
- 0.032645700956335,
- 0.0326547663062214,
- 0.0326696628620445,
- 0.0326882239936853,
- 0.0327081963962604,
- 0.0327275056999263,
- 0.0327444875564567,
- 0.0327580537916885,
- 0.0327677714166889,
- 0.0327738453607748,
- 0.0327770113176161,
- 0.0327783595924633,
- 0.03277912097714,
- 0.032780449487947,
- 0.0327832342027094,
- 0.032787964955902,
- 0.0327946665901144,
- 0.0328029059918153,
- 0.0328118667580878,
- 0.0328204787653334,
- 0.0328275843010148,
- 0.0328321187273331,
- 0.032833281908527,
- 0.0328306771019646,
- 0.0328243970738022,
- 0.0328150431191043,
- 0.0328036712514172,
- 0.032791670176637,
- 0.0327805861766382,
- 0.0327719187274384,
- 0.0327669157830588,
- 0.0327663981173929,
- 0.0327706378921499,
- 0.0327793086137807,
- 0.0327915133743712,
- 0.0328058874584813,
- 0.0328207616128328,
- 0.0328343647341849,
- 0.0328450401984231,
- 0.0328514488412159,
- 0.0328527336209172,
- 0.0328486258608914,
- 0.0328394800911832,
- 0.0328262331449713,
- 0.0328102924194931,
- 0.032793367036838,
- 0.0327772629126493,
- 0.0327636674318256,
- 0.0327539508302487,
- 0.0327490092629109,
- 0.0327491691872493,
- 0.0327541648124024,
- 0.0327631909457959,
- 0.0327750237536753,
- 0.032788192968513,
- 0.0328011821439252,
- 0.0328126297411122,
- 0.0328215038193948,
- 0.0328272269956371,
- 0.0328297355394753,
- 0.0328294657939936,
- 0.0328272710495511,
- 0.0328242810850537,
- 0.0328217236864875,
- 0.0328207318775379,
- 0.0328221621120101,
- 0.0328264473646257,
- 0.0328335051842192,
- 0.032842714695018,
- 0.0328529686606325,
- 0.0328627975937796,
- 0.0328705532756568,
- 0.0328746300605016,
- 0.0328736954203628,
- 0.0328668978476706,
- 0.0328540216336201,
- 0.0328355644888239,
- 0.0328127246367127,
- 0.0327872969984257,
- 0.0327614909372231,
- 0.0327376924191494,
- 0.0327181998322364,
- 0.0327049646335127,
- 0.032699365986412,
- 0.0327020437012734,
- 0.0327128072541068,
- 0.0327306312742704,
- 0.0327537400573488,
- 0.0327797754578923,
- 0.0328060340270784,
- 0.0328297509035201,
- 0.0328484007198989,
- 0.032859981130938,
- 0.0328632440903494,
- 0.0328578447915093,
- 0.0328443882113802,
- 0.0328243670335621,
- 0.0327999997937079,
- 0.0327739913929627,
- 0.0327492471820348,
- 0.0327285753794365,
- 0.0327144108374145,
- 0.032708587406241,
- 0.0327121781526787,
- 0.0327254141009759,
- 0.0327476840919022,
- 0.0327776112953504,
- 0.0328131959236844,
- 0.0328520086830069,
- 0.0328914154905328,
- 0.032928811262991,
- 0.0329618396626735,
- 0.0329885771343673,
- 0.0330076636906263,
- 0.0330183695067838,
- 0.0330205946519995,
- 0.0330148078860376,
- 0.0330019378882902,
- 0.0329832352733507,
- 0.0329601255581144,
- 0.0329340718434339,
- 0.0329064619404908,
- 0.0328785289833571,
- 0.0328513083284992,
- 0.0328256277621494,
- 0.0328021235023035,
- 0.0327812716893641,
- 0.032763424208231,
- 0.0327488387028718,
- 0.0327376952309613,
- 0.0327300956848929,
- 0.0327260462854185,
- 0.0327254274950542,
- 0.0327279589799332,
- 0.0327331692454018,
- 0.0327403799252541,
- 0.032748713291494,
- 0.0327571285115566,
- 0.032764487916925,
- 0.0327696496794448,
- 0.0327715785662664,
- 0.0327694626229815,
- 0.0327628213708808,
- 0.0327515908311506,
- 0.0327361725360417,
- 0.0327174374495439,
- 0.0326966808871652,
- 0.0326755303669367,
- 0.0326558140245476,
- 0.032639402021591,
- 0.0326280366817029,
- 0.032623168571166,
- 0.0326258153266824,
- 0.032636457869824,
- 0.0326549850216284,
- 0.0326806928005041,
- 0.0327123392459361,
- 0.032748249899438,
- 0.0327864636059957,
- 0.0328249036725897,
- 0.0328615562718132,
- 0.0328946368701722,
- 0.0329227267298465,
- 0.032944865164269,
- 0.0329605888026975,
- 0.0329699158679195,
- 0.0329732804160255,
- 0.0329714276247011,
- 0.0329652856944671,
- 0.0329558321741171,
- 0.0329439723138113,
- 0.0329304445141564,
- 0.0329157635068069,
- 0.0329002062236963,
- 0.0328838391705643,
- 0.0328665803370587,
- 0.0328482840197704,
- 0.0328288340286059,
- 0.0328082299731105,
- 0.0327866527518353,
- 0.0327644987267418,
- 0.0327423768008901,
- 0.032721068004814,
- 0.0327014524778883,
- 0.0326844132429594,
- 0.0326707294176402,
- 0.0326609731701577,
- 0.0326554246647031,
- 0.0326540174495216,
- 0.0326563233559938,
- 0.0326615812815732,
- 0.0326687686756695,
- 0.0326767087655863,
- 0.0326842013285606,
- 0.0326901609689075,
- 0.0326937451245499,
- 0.0326944548383604,
- 0.0326921946736041,
- 0.0326872835270275,
- 0.0326804146082046,
- 0.0326725694529021,
- 0.0326648965505588,
- 0.0326585692986694,
- 0.0326546402080301,
- 0.0326539085360061,
- 0.0326568169773081,
- 0.0326633899338483,
- 0.0326732214807288,
- 0.0326855157418832,
- 0.0326991763788338,
- 0.0327129358345769,
- 0.032725509596876,
- 0.0327357568895054,
- 0.0327428276320173,
- 0.032746276695091,
- 0.0327461304001807,
- 0.0327428963066924,
- 0.0327375146074952,
- 0.0327312567474271,
- 0.0327255831321737,
- 0.0327219762723805,
- 0.0327217680767718,
- 0.0327259802795637,
- 0.0327351953868908,
- 0.0327494723568589,
- 0.0327683167842426,
- 0.0327907099261108,
- 0.0328151948072357,
- 0.0328400113473879,
- 0.0328632666118635,
- 0.0328831217165404,
- 0.0328979744458136,
- 0.03290661686854,
- 0.0329083503145931,
- 0.0329030455834457,
- 0.0328911432775768,
- 0.0328735965059425,
- 0.0328517647526643,
- 0.0328272726237257,
- 0.0328018500578768,
- 0.0327771713898497,
- 0.0327547096132212,
- 0.032735619650524,
- 0.0327206607589504,
- 0.0327101637263206,
- 0.032704043600044,
- 0.0327018537583068,
- 0.0327028726854209,
- 0.0327062114201905,
- 0.0327109278325104,
- 0.0327161339730332,
- 0.032721084715227,
- 0.0327252393580086,
- 0.0327282920706403,
- 0.0327301712415217,
- 0.0327310112885513,
- 0.0327311029559434,
- 0.0327308295337519,
- 0.0327305969726091,
- 0.0327307657554586,
- 0.0327315917830835,
- 0.0327331824678616,
- 0.032735472675555,
- 0.0327382230878271,
- 0.0327410410628002,
- 0.0327434213833087,
- 0.0327448017802201,
- 0.0327446262455186,
- 0.0327424082945678,
- 0.0327377866992296,
- 0.0327305677157237,
- 0.0327207501171285,
- 0.0327085318783677,
- 0.032694299615332,
- 0.0326786034763582,
- 0.032662121006518,
- 0.0326456136729145,
- 0.0326298795073662,
- 0.0326157049496461,
- 0.0326038186259712,
- 0.0325948495149759,
- 0.0325892916818551,
- 0.0325874774096432,
- 0.0325895600596899,
- 0.0325955073522765,
- 0.0326051050471212,
- 0.0326179703445168,
- 0.0326335738423153,
- 0.0326512686379668,
- 0.0326703251312704,
- 0.0326899701440241,
- 0.0327094289630452,
- 0.032727968699658,
- 0.0327449409109572,
- 0.0327598208504792,
- 0.0327722402213894,
- 0.0327820101406775,
- 0.0327891313765008,
- 0.0327937898524476,
- 0.0327963368290941,
- 0.0327972548557229,
- 0.0327971122494926,
- 0.0327965102302709,
- 0.0327960277098014,
- 0.0327961689999637,
- 0.0327973193680327,
- 0.0327997125124102,
- 0.0328034127945091,
- 0.0328083135918808,
- 0.032814151578802,
- 0.0328205352257872,
- 0.0328269844615884,
- 0.0328329773787127,
- 0.0328379991973772,
- 0.0328415885238314,
- 0.0328433762972645,
- 0.0328431137036633,
- 0.0328406866616257,
- 0.0328361161023601,
- 0.0328295449710668,
- 0.0328212144470886,
- 0.0328114331050696,
- 0.0328005434533271,
- 0.0327888903897237,
- 0.0327767955909405,
- 0.032764540763526,
- 0.0327523611766561,
- 0.0327404491751266,
- 0.0327289656862228,
- 0.0327180563486988,
- 0.0327078680412859,
- 0.0326985614387178,
- 0.032690315834165,
- 0.0326833237690776,
- 0.0326777748104707,
- 0.0326738298241167,
- 0.0326715889832621,
- 0.0326710582215532,
- 0.0326721196577386,
- 0.0326745115665632,
- 0.0326778227364092,
- 0.0326815046255454,
- 0.0326849027596412,
- 0.0326873065016795,
- 0.0326880138989346,
- 0.0326864060232192,
- 0.0326820233443562,
- 0.0326746354932066,
- 0.032664295530204,
- 0.0326513707038611,
- 0.0326365436821198,
- 0.0326207812030928,
- 0.0326052706710748,
- 0.0325913289370903,
- 0.0325802908314229,
- 0.0325733875109026,
- 0.0325716260575183,
- 0.0325756819248905,
- 0.0325858148595875,
- 0.0326018170224154,
- 0.032622999433683,
- 0.0326482197762222,
- 0.0326759511792038,
- 0.0327043880258238,
- 0.0327315812658559,
- 0.0327555924434154,
- 0.0327746530518945,
- 0.0327873143510394,
- 0.0327925728467171,
- 0.0327899584972119,
- 0.0327795763331687,
- 0.03276209716608,
- 0.0327386987011442,
- 0.0327109637856451,
- 0.0326807468807554,
- 0.0326500225571166,
- 0.0326207306634619,
- 0.0325946319502143,
- 0.032573185754858,
- 0.0325574583857622,
- 0.0325480675453988,
- 0.0325451648510809,
- 0.0325484554328935,
- 0.0325572508063741,
- 0.0325705487984514,
- 0.0325871323576644,
- 0.0326056777798386,
- 0.0326248624411953,
- 0.0326434627208623,
- 0.0326604344384128,
- 0.0326749706385037,
- 0.0326865345196392,
- 0.0326948682015822,
- 0.0326999803591081,
- 0.0327021172024603,
- 0.0327017218011158,
- 0.0326993865125338,
- 0.0326958026070931,
- 0.0326917103831932,
+ 0.0337324099894203,
+ 0.0337506335248567,
+ 0.0337815679895183,
+ 0.0338209912000832,
+ 0.0338641105105671,
+ 0.0339058665346615,
+ 0.0339413251278595,
+ 0.0339661647523533,
+ 0.0339772125357947,
+ 0.0339729226566527,
+ 0.033953662168846,
+ 0.0339216978831281,
+ 0.0338808586295907,
+ 0.0338359442576699,
+ 0.0337920209846296,
+ 0.0337537562831184,
+ 0.0337249108692808,
+ 0.0337080457548248,
+ 0.033704443389631,
+ 0.0337141973540011,
+ 0.0337364005271348,
+ 0.0337693602118846,
+ 0.0338107901693356,
+ 0.0338579661016636,
+ 0.033907866910807,
+ 0.0339573418451188,
+ 0.0340033343075226,
+ 0.0340431605772702,
+ 0.0340748010716184,
+ 0.034097132772545,
+ 0.0341100301061137,
+ 0.0341142922198986,
+ 0.0341114062904791,
+ 0.0341032078009452,
+ 0.03409152897635,
+ 0.0340779253703681,
+ 0.0340635404307999,
+ 0.0340491209927421,
+ 0.0340351500724969,
+ 0.0340220330528303,
+ 0.0340102681240557,
+ 0.0340005493690034,
+ 0.033993779893465,
+ 0.0339910001189458,
+ 0.0339932552605644,
+ 0.0340014348366816,
+ 0.0340161171916296,
+ 0.034037444909226,
+ 0.0340650449162833,
+ 0.0340979944546954,
+ 0.0341348263808801,
+ 0.0341735676718665,
+ 0.0342118120544243,
+ 0.0342468352504469,
+ 0.0342757622070202,
+ 0.0342957864124756,
+ 0.0343044254091363,
+ 0.0342997822056084,
+ 0.0342807764448544,
+ 0.0342473124103017,
+ 0.0342003583703611,
+ 0.0341419193780046,
+ 0.0340748948191612,
+ 0.034002826796327,
+ 0.0339295658017467,
+ 0.0338588990911849,
+ 0.03379419544554,
+ 0.0337381134662892,
+ 0.0336924032026137,
+ 0.0336578114266735,
+ 0.0336340864165034,
+ 0.0336200705684679,
+ 0.0336138660169612,
+ 0.0336130564627704,
+ 0.0336149666460637,
+ 0.0336169403234354,
+ 0.0336166182757174,
+ 0.0336121971682577,
+ 0.0336026450574464,
+ 0.0335878415624405,
+ 0.0335686080761558,
+ 0.0335466049111733,
+ 0.0335240994826174,
+ 0.0335036426858069,
+ 0.0334877140258783,
+ 0.0334783993445209,
+ 0.0334771492826582,
+ 0.0334846421010131,
+ 0.0335007522731869,
+ 0.0335246118736179,
+ 0.0335547444208136,
+ 0.0335892473717161,
+ 0.0336259984275216,
+ 0.0336628628810158,
+ 0.0336978844456116,
+ 0.0337294474486912,
+ 0.0337563997337481,
+ 0.0337781222795808,
+ 0.0337945286560172,
+ 0.0338059829133448,
+ 0.0338131415840473,
+ 0.0338167482923759,
+ 0.0338174262773239,
+ 0.0338155157146304,
+ 0.0338109886993344,
+ 0.0338034529485203,
+ 0.0337922355519195,
+ 0.0337765261475695,
+ 0.033755554555658,
+ 0.0337287778079607,
+ 0.0336960528701551,
+ 0.0336577733961747,
+ 0.0336149516926188,
+ 0.0335692304756988,
+ 0.0335228129976949,
+ 0.033478306274087,
+ 0.0334384828710325,
+ 0.0334059823300392,
+ 0.0333829899030164,
+ 0.0333709412346123,
+ 0.0333703018876496,
+ 0.0333804599586907,
+ 0.0333997529737305,
+ 0.0334256328377962,
+ 0.0334549587868494,
+ 0.0334843981720504,
+ 0.0335109059615595,
+ 0.0335322440330649,
+ 0.0335474915815896,
+ 0.0335574916374436,
+ 0.0335651785877967,
+ 0.03357573820039,
+ 0.0335965647635699,
+ 0.0336370008378528,
+ 0.0337078742586673,
+ 0.0338208788327662,
+ 0.033987866921042,
+ 0.0342201212348864,
+ 0.0345276467895924,
+ 0.0349184816018572,
+ 0.0353979829415905,
+ 0.0359680209012253,
+ 0.0366260150845891,
+ 0.0373637928649968,
+ 0.0381663368530858,
+ 0.0390106279109435,
+ 0.0398649647909136,
+ 0.0406893034722926,
+ 0.0414372084540599,
+ 0.0420598075038544,
+ 0.0425115961931326,
+ 0.0427571377431437,
+ 0.0427770079817988,
+ 0.0425712321716512,
+ 0.042159177751094,
+ 0.0415760883250354,
+ 0.0408674992879576,
+ 0.0400831617163414,
+ 0.0392718032237518,
+ 0.038477414680372,
+ 0.0377371420818759,
+ 0.0370804807101817,
+ 0.0365293296982827,
+ 0.0360984916745405,
+ 0.0357963055171771,
+ 0.0356252191861262,
+ 0.0355822148722006,
+ 0.0356590823530655,
+ 0.0358425995981578,
+ 0.0361147243806243,
+ 0.0364529266948339,
+ 0.0368307971184145,
+ 0.0372190489812766,
+ 0.0375869907216185,
+ 0.0379044751839002,
+ 0.0381442277365231,
+ 0.0382843152905246,
+ 0.0383103737252675,
+ 0.0382171322450491,
+ 0.0380088384238591,
+ 0.0376984187692475,
+ 0.0373055314959159,
+ 0.0368539432991663,
+ 0.0363687767777155,
+ 0.035874106813921,
+ 0.0353911968057098,
+ 0.0349374542404644,
+ 0.0345260214551941,
+ 0.0341658304453148,
+ 0.0338619351411303,
+ 0.0336159683137654,
+ 0.0334266268148259,
+ 0.0332901455222305,
+ 0.0332007618762519,
+ 0.0331511923684558,
+ 0.0331331406725203,
+ 0.0331378410326719,
+ 0.033156619595547,
+ 0.0331814391259553,
+ 0.0332053836352998,
+ 0.0332230393874423,
+ 0.033230736134161,
+ 0.0332266260932526,
+ 0.0332105969339369,
+ 0.0331840359582552,
+ 0.0331494808202762,
+ 0.0331102028781955,
+ 0.0330697711460118,
+ 0.0330316399526864,
+ 0.0329987954456335,
+ 0.032973487438989,
+ 0.0329570641084601,
+ 0.0329499168373222,
+ 0.0329515308923834,
+ 0.0329606259502336,
+ 0.0329753613856429,
+ 0.0329935769069827,
+ 0.033013039997954,
+ 0.0330316760936281,
+ 0.0330477630463383,
+ 0.0330600765474452,
+ 0.0330679775409663,
+ 0.0330714369816827,
+ 0.0330709981438358,
+ 0.0330676820384678,
+ 0.0330628468337463,
+ 0.0330580168721871,
+ 0.033054700355099,
+ 0.0330542163968999,
+ 0.0330575513091469,
+ 0.0330652602926267,
+ 0.0330774244650625,
+ 0.0330936653615317,
+ 0.0331132112234422,
+ 0.0331350029838032,
+ 0.0331578237782978,
+ 0.0331804343284033,
+ 0.0332016974361468,
+ 0.0332206776291579,
+ 0.0332367061101011,
+ 0.0332494059668639,
+ 0.0332586775324617,
+ 0.0332646484641142,
+ 0.0332675972960628,
+ 0.0332678626162377,
+ 0.0332657521188895,
+ 0.0332614659598077,
+ 0.0332550466688508,
+ 0.0332463635366469,
+ 0.0332351337746866,
+ 0.0332209771183507,
+ 0.0332034959656748,
+ 0.0331823700523136,
+ 0.0331574529120501,
+ 0.0331288567173493,
+ 0.0330970126204502,
+ 0.0330626957979093,
+ 0.0330270082503143,
+ 0.0329913176613207,
+ 0.0329571563943439,
+ 0.0329260900347113,
+ 0.0328995691101606,
+ 0.032878780421661,
+ 0.0328645155664838,
+ 0.0328570734318808,
+ 0.03285621039535,
+ 0.0328611467268423,
+ 0.03287063086226,
+ 0.0328830559399051,
+ 0.0328966165514757,
+ 0.0329094890245876,
+ 0.0329200160916781,
+ 0.0329268763662157,
+ 0.0329292203460976,
+ 0.0329267575609791,
+ 0.0329197840061248,
+ 0.0329091450839221,
+ 0.0328961364441772,
+ 0.0328823525010279,
+ 0.0328694989476932,
+ 0.0328591903406138,
+ 0.0328527561310755,
+ 0.0328510780848232,
+ 0.0328544788853255,
+ 0.03286267621638,
+ 0.0328748093909228,
+ 0.0328895374437741,
+ 0.0329051994000428,
+ 0.0329200199744252,
+ 0.0329323379653347,
+ 0.0329408307393727,
+ 0.0329447070847789,
+ 0.0329438428733001,
+ 0.0329388396283983,
+ 0.0329309949126126,
+ 0.0329221843733263,
+ 0.0329146666828301,
+ 0.0329108326052374,
+ 0.032912926417629,
+ 0.0329227709918394,
+ 0.0329415269539816,
+ 0.0329695121684231,
+ 0.0330061014227554,
+ 0.0330497186754902,
+ 0.0330979262685075,
+ 0.0331476073300341,
+ 0.033195229113974,
+ 0.03323716621653,
+ 0.0332700539761426,
+ 0.0332911351902225,
+ 0.0332985595397165,
+ 0.0332915968403815,
+ 0.0332707336402626,
+ 0.0332376373104022,
+ 0.0331949902759941,
+ 0.0331462156680851,
+ 0.0330951304656611,
+ 0.0330455702254799,
+ 0.0330010297732093,
+ 0.0329643578110639,
+ 0.0329375327733984,
+ 0.0329215353381864,
+ 0.0329163221127051,
+ 0.0329208963081956,
+ 0.0329334646054858,
+ 0.0329516639968534,
+ 0.0329728372284784,
+ 0.0329943303112832,
+ 0.0330137812271861,
+ 0.0330293671068817,
+ 0.0330399795968502,
+ 0.0330453058528163,
+ 0.0330458050714452,
+ 0.0330425855994101,
+ 0.0330372023637525,
+ 0.0330314055946727,
+ 0.0330268774588495,
+ 0.0330249926505046,
+ 0.0330266330044756,
+ 0.0330320766092069,
+ 0.0330409708710896,
+ 0.0330523884017643,
+ 0.0330649556428663,
+ 0.0330770371749121,
+ 0.0330869535045729,
+ 0.0330932065814292,
+ 0.0330946855799089,
+ 0.0330908263297891,
+ 0.0330817020506408,
+ 0.0330680310607176,
+ 0.0330510981545525,
+ 0.0330325985909318,
+ 0.0330144248154845,
+ 0.0329984241325042,
+ 0.0329861593448163,
+ 0.0329787036848784,
+ 0.0329764967133358,
+ 0.0329792802071021,
+ 0.0329861234242122,
+ 0.0329955364616918,
+ 0.0330056595706299,
+ 0.033014506144576,
+ 0.0330202287430966,
+ 0.0330213723410299,
+ 0.0330170785295582,
+ 0.033007209778374,
+ 0.032992374122678,
+ 0.032973846138154,
+ 0.0329533966661082,
+ 0.0329330577261254,
+ 0.0329148574568681,
+ 0.0329005616192732,
+ 0.0328914540137109,
+ 0.0328881802082071,
+ 0.0328906695713095,
+ 0.0328981414767753,
+ 0.0329091935305732,
+ 0.0329219628472304,
+ 0.0329343454414836,
+ 0.0329442533108988,
+ 0.0329498836462614,
+ 0.0329499702788681,
+ 0.032943985162985,
+ 0.032932259149445,
+ 0.0329159981230518,
+ 0.0328971831636512,
+ 0.0328783602172046,
+ 0.0328623424565315,
+ 0.0328518629695121,
+ 0.0328492233884264,
+ 0.0328559843365849,
+ 0.0328727370254555,
+ 0.0328989842062715,
+ 0.0329331453446171,
+ 0.0329726870896905,
+ 0.0330143668204767,
+ 0.0330545648294649,
+ 0.0330896702066418,
+ 0.0331164777498503,
+ 0.0331325495992186,
+ 0.0331364970499333,
+ 0.0331281458431514,
+ 0.0331085618597029,
+ 0.0330799319914791,
+ 0.0330453143389758,
+ 0.0330082894284989,
+ 0.0329725567029216,
+ 0.0329415260743894,
+ 0.0329179524861774,
+ 0.0329036534873076,
+ 0.0328993380037367,
+ 0.0329045610747319,
+ 0.0329178059775152,
+ 0.0329366827504645,
+ 0.0329582209761423,
+ 0.0329792250763987,
+ 0.0329966529283203,
+ 0.0330079744243916,
+ 0.0330114669967842,
+ 0.0330064111401697,
+ 0.0329931607415162,
+ 0.0329730793810381,
+ 0.0329483522101985,
+ 0.0329217002523326,
+ 0.0328960368296855,
+ 0.0328741121460467,
+ 0.0328581912618948,
+ 0.0328498037226452,
+ 0.0328495918474783,
+ 0.0328572713194424,
+ 0.0328717041007573,
+ 0.0328910711737954,
+ 0.032913122067232,
+ 0.0329354701883746,
+ 0.0329558981454824,
+ 0.0329726359380944,
+ 0.0329845774521966,
+ 0.0329914072647823,
+ 0.0329936201257338,
+ 0.0329924288487049,
+ 0.0329895711739844,
+ 0.0329870403036769,
+ 0.0329867749190756,
+ 0.0329903507106359,
+ 0.0329987158857589,
+ 0.0330120079105195,
+ 0.0330294787574616,
+ 0.0330495423564144,
+ 0.0330699420937568,
+ 0.0330880196603966,
+ 0.0331010514133117,
+ 0.033106607293276,
+ 0.0331028827732016,
+ 0.0330889577891055,
+ 0.0330649477091713,
+ 0.0330320276902225,
+ 0.0329923296686908,
+ 0.0329487273564675,
+ 0.0329045368263683,
+ 0.0328631678914552,
+ 0.0328277647882032,
+ 0.032800874294462,
+ 0.0327841759642667,
+ 0.0327783031549684,
+ 0.0327827753537361,
+ 0.0327960522265119,
+ 0.0328157079596733,
+ 0.0328387111531937,
+ 0.0328617816756604,
+ 0.032881783395773,
+ 0.0328961033170409,
+ 0.0329029662147536,
+ 0.0329016411236449,
+ 0.0328925114500635,
+ 0.03287700112696,
+ 0.0328573705662619,
+ 0.0328364137070662,
+ 0.0328170982702778,
+ 0.032802194694836,
+ 0.0327939363434839,
+ 0.0327937465958374,
+ 0.0328020595120115,
+ 0.0328182512209107,
+ 0.0328406894684226,
+ 0.0328668985395424,
+ 0.0328938255971905,
+ 0.0329181824919968,
+ 0.0329368255584028,
+ 0.0329471272824969,
+ 0.0329472910008078,
+ 0.0329365652439224,
+ 0.0329153282237869,
+ 0.0328850328953258,
+ 0.0328480245625248,
+ 0.0328072612308098,
+ 0.0327659782078637,
+ 0.0327273415645361,
+ 0.0326941310513146,
+ 0.0326684844069956,
+ 0.0326517244235028,
+ 0.0326442797191478,
+ 0.032645700956335,
+ 0.0326547663062214,
+ 0.0326696628620445,
+ 0.0326882239936853,
+ 0.0327081963962604,
+ 0.0327275056999263,
+ 0.0327444875564567,
+ 0.0327580537916885,
+ 0.0327677714166889,
+ 0.0327738453607748,
+ 0.0327770113176161,
+ 0.0327783595924633,
+ 0.03277912097714,
+ 0.032780449487947,
+ 0.0327832342027094,
+ 0.032787964955902,
+ 0.0327946665901144,
+ 0.0328029059918153,
+ 0.0328118667580878,
+ 0.0328204787653334,
+ 0.0328275843010148,
+ 0.0328321187273331,
+ 0.032833281908527,
+ 0.0328306771019646,
+ 0.0328243970738022,
+ 0.0328150431191043,
+ 0.0328036712514172,
+ 0.032791670176637,
+ 0.0327805861766382,
+ 0.0327719187274384,
+ 0.0327669157830588,
+ 0.0327663981173929,
+ 0.0327706378921499,
+ 0.0327793086137807,
+ 0.0327915133743712,
+ 0.0328058874584813,
+ 0.0328207616128328,
+ 0.0328343647341849,
+ 0.0328450401984231,
+ 0.0328514488412159,
+ 0.0328527336209172,
+ 0.0328486258608914,
+ 0.0328394800911832,
+ 0.0328262331449713,
+ 0.0328102924194931,
+ 0.032793367036838,
+ 0.0327772629126493,
+ 0.0327636674318256,
+ 0.0327539508302487,
+ 0.0327490092629109,
+ 0.0327491691872493,
+ 0.0327541648124024,
+ 0.0327631909457959,
+ 0.0327750237536753,
+ 0.032788192968513,
+ 0.0328011821439252,
+ 0.0328126297411122,
+ 0.0328215038193948,
+ 0.0328272269956371,
+ 0.0328297355394753,
+ 0.0328294657939936,
+ 0.0328272710495511,
+ 0.0328242810850537,
+ 0.0328217236864875,
+ 0.0328207318775379,
+ 0.0328221621120101,
+ 0.0328264473646257,
+ 0.0328335051842192,
+ 0.032842714695018,
+ 0.0328529686606325,
+ 0.0328627975937796,
+ 0.0328705532756568,
+ 0.0328746300605016,
+ 0.0328736954203628,
+ 0.0328668978476706,
+ 0.0328540216336201,
+ 0.0328355644888239,
+ 0.0328127246367127,
+ 0.0327872969984257,
+ 0.0327614909372231,
+ 0.0327376924191494,
+ 0.0327181998322364,
+ 0.0327049646335127,
+ 0.032699365986412,
+ 0.0327020437012734,
+ 0.0327128072541068,
+ 0.0327306312742704,
+ 0.0327537400573488,
+ 0.0327797754578923,
+ 0.0328060340270784,
+ 0.0328297509035201,
+ 0.0328484007198989,
+ 0.032859981130938,
+ 0.0328632440903494,
+ 0.0328578447915093,
+ 0.0328443882113802,
+ 0.0328243670335621,
+ 0.0327999997937079,
+ 0.0327739913929627,
+ 0.0327492471820348,
+ 0.0327285753794365,
+ 0.0327144108374145,
+ 0.032708587406241,
+ 0.0327121781526787,
+ 0.0327254141009759,
+ 0.0327476840919022,
+ 0.0327776112953504,
+ 0.0328131959236844,
+ 0.0328520086830069,
+ 0.0328914154905328,
+ 0.032928811262991,
+ 0.0329618396626735,
+ 0.0329885771343673,
+ 0.0330076636906263,
+ 0.0330183695067838,
+ 0.0330205946519995,
+ 0.0330148078860376,
+ 0.0330019378882902,
+ 0.0329832352733507,
+ 0.0329601255581144,
+ 0.0329340718434339,
+ 0.0329064619404908,
+ 0.0328785289833571,
+ 0.0328513083284992,
+ 0.0328256277621494,
+ 0.0328021235023035,
+ 0.0327812716893641,
+ 0.032763424208231,
+ 0.0327488387028718,
+ 0.0327376952309613,
+ 0.0327300956848929,
+ 0.0327260462854185,
+ 0.0327254274950542,
+ 0.0327279589799332,
+ 0.0327331692454018,
+ 0.0327403799252541,
+ 0.032748713291494,
+ 0.0327571285115566,
+ 0.032764487916925,
+ 0.0327696496794448,
+ 0.0327715785662664,
+ 0.0327694626229815,
+ 0.0327628213708808,
+ 0.0327515908311506,
+ 0.0327361725360417,
+ 0.0327174374495439,
+ 0.0326966808871652,
+ 0.0326755303669367,
+ 0.0326558140245476,
+ 0.032639402021591,
+ 0.0326280366817029,
+ 0.032623168571166,
+ 0.0326258153266824,
+ 0.032636457869824,
+ 0.0326549850216284,
+ 0.0326806928005041,
+ 0.0327123392459361,
+ 0.032748249899438,
+ 0.0327864636059957,
+ 0.0328249036725897,
+ 0.0328615562718132,
+ 0.0328946368701722,
+ 0.0329227267298465,
+ 0.032944865164269,
+ 0.0329605888026975,
+ 0.0329699158679195,
+ 0.0329732804160255,
+ 0.0329714276247011,
+ 0.0329652856944671,
+ 0.0329558321741171,
+ 0.0329439723138113,
+ 0.0329304445141564,
+ 0.0329157635068069,
+ 0.0329002062236963,
+ 0.0328838391705643,
+ 0.0328665803370587,
+ 0.0328482840197704,
+ 0.0328288340286059,
+ 0.0328082299731105,
+ 0.0327866527518353,
+ 0.0327644987267418,
+ 0.0327423768008901,
+ 0.032721068004814,
+ 0.0327014524778883,
+ 0.0326844132429594,
+ 0.0326707294176402,
+ 0.0326609731701577,
+ 0.0326554246647031,
+ 0.0326540174495216,
+ 0.0326563233559938,
+ 0.0326615812815732,
+ 0.0326687686756695,
+ 0.0326767087655863,
+ 0.0326842013285606,
+ 0.0326901609689075,
+ 0.0326937451245499,
+ 0.0326944548383604,
+ 0.0326921946736041,
+ 0.0326872835270275,
+ 0.0326804146082046,
+ 0.0326725694529021,
+ 0.0326648965505588,
+ 0.0326585692986694,
+ 0.0326546402080301,
+ 0.0326539085360061,
+ 0.0326568169773081,
+ 0.0326633899338483,
+ 0.0326732214807288,
+ 0.0326855157418832,
+ 0.0326991763788338,
+ 0.0327129358345769,
+ 0.032725509596876,
+ 0.0327357568895054,
+ 0.0327428276320173,
+ 0.032746276695091,
+ 0.0327461304001807,
+ 0.0327428963066924,
+ 0.0327375146074952,
+ 0.0327312567474271,
+ 0.0327255831321737,
+ 0.0327219762723805,
+ 0.0327217680767718,
+ 0.0327259802795637,
+ 0.0327351953868908,
+ 0.0327494723568589,
+ 0.0327683167842426,
+ 0.0327907099261108,
+ 0.0328151948072357,
+ 0.0328400113473879,
+ 0.0328632666118635,
+ 0.0328831217165404,
+ 0.0328979744458136,
+ 0.03290661686854,
+ 0.0329083503145931,
+ 0.0329030455834457,
+ 0.0328911432775768,
+ 0.0328735965059425,
+ 0.0328517647526643,
+ 0.0328272726237257,
+ 0.0328018500578768,
+ 0.0327771713898497,
+ 0.0327547096132212,
+ 0.032735619650524,
+ 0.0327206607589504,
+ 0.0327101637263206,
+ 0.032704043600044,
+ 0.0327018537583068,
+ 0.0327028726854209,
+ 0.0327062114201905,
+ 0.0327109278325104,
+ 0.0327161339730332,
+ 0.032721084715227,
+ 0.0327252393580086,
+ 0.0327282920706403,
+ 0.0327301712415217,
+ 0.0327310112885513,
+ 0.0327311029559434,
+ 0.0327308295337519,
+ 0.0327305969726091,
+ 0.0327307657554586,
+ 0.0327315917830835,
+ 0.0327331824678616,
+ 0.032735472675555,
+ 0.0327382230878271,
+ 0.0327410410628002,
+ 0.0327434213833087,
+ 0.0327448017802201,
+ 0.0327446262455186,
+ 0.0327424082945678,
+ 0.0327377866992296,
+ 0.0327305677157237,
+ 0.0327207501171285,
+ 0.0327085318783677,
+ 0.032694299615332,
+ 0.0326786034763582,
+ 0.032662121006518,
+ 0.0326456136729145,
+ 0.0326298795073662,
+ 0.0326157049496461,
+ 0.0326038186259712,
+ 0.0325948495149759,
+ 0.0325892916818551,
+ 0.0325874774096432,
+ 0.0325895600596899,
+ 0.0325955073522765,
+ 0.0326051050471212,
+ 0.0326179703445168,
+ 0.0326335738423153,
+ 0.0326512686379668,
+ 0.0326703251312704,
+ 0.0326899701440241,
+ 0.0327094289630452,
+ 0.032727968699658,
+ 0.0327449409109572,
+ 0.0327598208504792,
+ 0.0327722402213894,
+ 0.0327820101406775,
+ 0.0327891313765008,
+ 0.0327937898524476,
+ 0.0327963368290941,
+ 0.0327972548557229,
+ 0.0327971122494926,
+ 0.0327965102302709,
+ 0.0327960277098014,
+ 0.0327961689999637,
+ 0.0327973193680327,
+ 0.0327997125124102,
+ 0.0328034127945091,
+ 0.0328083135918808,
+ 0.032814151578802,
+ 0.0328205352257872,
+ 0.0328269844615884,
+ 0.0328329773787127,
+ 0.0328379991973772,
+ 0.0328415885238314,
+ 0.0328433762972645,
+ 0.0328431137036633,
+ 0.0328406866616257,
+ 0.0328361161023601,
+ 0.0328295449710668,
+ 0.0328212144470886,
+ 0.0328114331050696,
+ 0.0328005434533271,
+ 0.0327888903897237,
+ 0.0327767955909405,
+ 0.032764540763526,
+ 0.0327523611766561,
+ 0.0327404491751266,
+ 0.0327289656862228,
+ 0.0327180563486988,
+ 0.0327078680412859,
+ 0.0326985614387178,
+ 0.032690315834165,
+ 0.0326833237690776,
+ 0.0326777748104707,
+ 0.0326738298241167,
+ 0.0326715889832621,
+ 0.0326710582215532,
+ 0.0326721196577386,
+ 0.0326745115665632,
+ 0.0326778227364092,
+ 0.0326815046255454,
+ 0.0326849027596412,
+ 0.0326873065016795,
+ 0.0326880138989346,
+ 0.0326864060232192,
+ 0.0326820233443562,
+ 0.0326746354932066,
+ 0.032664295530204,
+ 0.0326513707038611,
+ 0.0326365436821198,
+ 0.0326207812030928,
+ 0.0326052706710748,
+ 0.0325913289370903,
+ 0.0325802908314229,
+ 0.0325733875109026,
+ 0.0325716260575183,
+ 0.0325756819248905,
+ 0.0325858148595875,
+ 0.0326018170224154,
+ 0.032622999433683,
+ 0.0326482197762222,
+ 0.0326759511792038,
+ 0.0327043880258238,
+ 0.0327315812658559,
+ 0.0327555924434154,
+ 0.0327746530518945,
+ 0.0327873143510394,
+ 0.0327925728467171,
+ 0.0327899584972119,
+ 0.0327795763331687,
+ 0.03276209716608,
+ 0.0327386987011442,
+ 0.0327109637856451,
+ 0.0326807468807554,
+ 0.0326500225571166,
+ 0.0326207306634619,
+ 0.0325946319502143,
+ 0.032573185754858,
+ 0.0325574583857622,
+ 0.0325480675453988,
+ 0.0325451648510809,
+ 0.0325484554328935,
+ 0.0325572508063741,
+ 0.0325705487984514,
+ 0.0325871323576644,
+ 0.0326056777798386,
+ 0.0326248624411953,
+ 0.0326434627208623,
+ 0.0326604344384128,
+ 0.0326749706385037,
+ 0.0326865345196392,
+ 0.0326948682015822,
+ 0.0326999803591081,
+ 0.0327021172024603,
+ 0.0327017218011158,
+ 0.0326993865125338,
+ 0.0326958026070931,
+ 0.0326917103831932,
0.0326878523367249
- ],
- "fill": "none",
+ ],
+ "fill": "none",
"line": {
- "color": "#2ca02c",
- "dash": "solid",
- "shape": "linear",
+ "color": "#2ca02c",
+ "dash": "solid",
+ "shape": "linear",
"width": 3
- },
- "mode": "lines",
- "name": "(15 BPM, 16.5 BPM)",
- "opacity": 1,
- "showlegend": true,
- "type": "scatter",
- "uid": "2bc184",
- "visible": true,
- "xaxis": "x",
+ },
+ "mode": "lines",
+ "name": "(15 BPM, 16.5 BPM)",
+ "opacity": 1,
+ "showlegend": true,
+ "type": "scatter",
+ "visible": true,
+ "xaxis": "x",
"yaxis": "y"
- },
+ },
{
"x": [
- 6,
- 6.06,
- 6.12,
- 6.18,
- 6.24,
- 6.3,
- 6.36,
- 6.42,
- 6.48,
- 6.54,
- 6.6,
- 6.66,
- 6.72,
- 6.78,
- 6.84,
- 6.9,
- 6.96,
- 7.02,
- 7.08,
- 7.14,
- 7.2,
- 7.26,
- 7.32,
- 7.38,
- 7.44,
- 7.5,
- 7.56,
- 7.62,
- 7.68,
- 7.74,
- 7.8,
- 7.86,
- 7.92,
- 7.98,
- 8.04,
- 8.1,
- 8.16,
- 8.22,
- 8.28,
- 8.34,
- 8.4,
- 8.46,
- 8.52,
- 8.58,
- 8.64,
- 8.7,
- 8.76,
- 8.82,
- 8.88,
- 8.94,
- 9,
- 9.06,
- 9.12,
- 9.18,
- 9.24,
- 9.3,
- 9.36,
- 9.42,
- 9.48,
- 9.54,
- 9.6,
- 9.66,
- 9.72,
- 9.78,
- 9.84,
- 9.9,
- 9.96,
- 10.02,
- 10.08,
- 10.14,
- 10.2,
- 10.26,
- 10.32,
- 10.38,
- 10.44,
- 10.5,
- 10.56,
- 10.62,
- 10.68,
- 10.74,
- 10.8,
- 10.86,
- 10.92,
- 10.98,
- 11.04,
- 11.1,
- 11.16,
- 11.22,
- 11.28,
- 11.34,
- 11.4,
- 11.46,
- 11.52,
- 11.58,
- 11.64,
- 11.7,
- 11.76,
- 11.82,
- 11.88,
- 11.94,
- 12,
- 12.06,
- 12.12,
- 12.18,
- 12.24,
- 12.3,
- 12.36,
- 12.42,
- 12.48,
- 12.54,
- 12.6,
- 12.66,
- 12.72,
- 12.78,
- 12.84,
- 12.9,
- 12.96,
- 13.02,
- 13.08,
- 13.14,
- 13.2,
- 13.26,
- 13.32,
- 13.38,
- 13.44,
- 13.5,
- 13.56,
- 13.62,
- 13.68,
- 13.74,
- 13.8,
- 13.86,
- 13.92,
- 13.98,
- 14.04,
- 14.1,
- 14.16,
- 14.22,
- 14.28,
- 14.34,
- 14.4,
- 14.46,
- 14.52,
- 14.58,
- 14.64,
- 14.7,
- 14.76,
- 14.82,
- 14.88,
- 14.94,
- 15,
- 15.06,
- 15.12,
- 15.18,
- 15.24,
- 15.3,
- 15.36,
- 15.42,
- 15.48,
- 15.54,
- 15.6,
- 15.66,
- 15.72,
- 15.78,
- 15.84,
- 15.9,
- 15.96,
- 16.02,
- 16.08,
- 16.14,
- 16.2,
- 16.26,
- 16.32,
- 16.38,
- 16.44,
- 16.5,
- 16.56,
- 16.62,
- 16.68,
- 16.74,
- 16.8,
- 16.86,
- 16.92,
- 16.98,
- 17.04,
- 17.1,
- 17.16,
- 17.22,
- 17.28,
- 17.34,
- 17.4,
- 17.46,
- 17.52,
- 17.58,
- 17.64,
- 17.7,
- 17.76,
- 17.82,
- 17.88,
- 17.94,
- 18,
- 18.06,
- 18.12,
- 18.18,
- 18.24,
- 18.3,
- 18.36,
- 18.42,
- 18.48,
- 18.54,
- 18.6,
- 18.66,
- 18.72,
- 18.78,
- 18.84,
- 18.9,
- 18.96,
- 19.02,
- 19.08,
- 19.14,
- 19.2,
- 19.26,
- 19.32,
- 19.38,
- 19.44,
- 19.5,
- 19.56,
- 19.62,
- 19.68,
- 19.74,
- 19.8,
- 19.86,
- 19.92,
- 19.98,
- 20.04,
- 20.1,
- 20.16,
- 20.22,
- 20.28,
- 20.34,
- 20.4,
- 20.46,
- 20.52,
- 20.58,
- 20.64,
- 20.7,
- 20.76,
- 20.82,
- 20.88,
- 20.94,
- 21,
- 21.06,
- 21.12,
- 21.18,
- 21.24,
- 21.3,
- 21.36,
- 21.42,
- 21.48,
- 21.54,
- 21.6,
- 21.66,
- 21.72,
- 21.78,
- 21.84,
- 21.9,
- 21.96,
- 22.02,
- 22.08,
- 22.14,
- 22.2,
- 22.26,
- 22.32,
- 22.38,
- 22.44,
- 22.5,
- 22.56,
- 22.62,
- 22.68,
- 22.74,
- 22.8,
- 22.86,
- 22.92,
- 22.98,
- 23.04,
- 23.1,
- 23.16,
- 23.22,
- 23.28,
- 23.34,
- 23.4,
- 23.46,
- 23.52,
- 23.58,
- 23.64,
- 23.7,
- 23.76,
- 23.82,
- 23.88,
- 23.94,
- 24,
- 24.06,
- 24.12,
- 24.18,
- 24.24,
- 24.3,
- 24.36,
- 24.42,
- 24.48,
- 24.54,
- 24.6,
- 24.66,
- 24.72,
- 24.78,
- 24.84,
- 24.9,
- 24.96,
- 25.02,
- 25.08,
- 25.14,
- 25.2,
- 25.26,
- 25.32,
- 25.38,
- 25.44,
- 25.5,
- 25.56,
- 25.62,
- 25.68,
- 25.74,
- 25.8,
- 25.86,
- 25.92,
- 25.98,
- 26.04,
- 26.1,
- 26.16,
- 26.22,
- 26.28,
- 26.34,
- 26.4,
- 26.46,
- 26.52,
- 26.58,
- 26.64,
- 26.7,
- 26.76,
- 26.82,
- 26.88,
- 26.94,
- 27,
- 27.06,
- 27.12,
- 27.18,
- 27.24,
- 27.3,
- 27.36,
- 27.42,
- 27.48,
- 27.54,
- 27.6,
- 27.66,
- 27.72,
- 27.78,
- 27.84,
- 27.9,
- 27.96,
- 28.02,
- 28.08,
- 28.14,
- 28.2,
- 28.26,
- 28.32,
- 28.38,
- 28.44,
- 28.5,
- 28.56,
- 28.62,
- 28.68,
- 28.74,
- 28.8,
- 28.86,
- 28.92,
- 28.98,
- 29.04,
- 29.1,
- 29.16,
- 29.22,
- 29.28,
- 29.34,
- 29.4,
- 29.46,
- 29.52,
- 29.58,
- 29.64,
- 29.7,
- 29.76,
- 29.82,
- 29.88,
- 29.94,
- 30,
- 30.06,
- 30.12,
- 30.18,
- 30.24,
- 30.3,
- 30.36,
- 30.42,
- 30.48,
- 30.54,
- 30.6,
- 30.66,
- 30.72,
- 30.78,
- 30.84,
- 30.9,
- 30.96,
- 31.02,
- 31.08,
- 31.14,
- 31.2,
- 31.26,
- 31.32,
- 31.38,
- 31.44,
- 31.5,
- 31.56,
- 31.62,
- 31.68,
- 31.74,
- 31.8,
- 31.86,
- 31.92,
- 31.98,
- 32.04,
- 32.1,
- 32.16,
- 32.22,
- 32.28,
- 32.34,
- 32.4,
- 32.46,
- 32.52,
- 32.58,
- 32.64,
- 32.7,
- 32.76,
- 32.82,
- 32.88,
- 32.94,
- 33,
- 33.06,
- 33.12,
- 33.18,
- 33.24,
- 33.3,
- 33.36,
- 33.42,
- 33.48,
- 33.54,
- 33.6,
- 33.66,
- 33.72,
- 33.78,
- 33.84,
- 33.9,
- 33.96,
- 34.02,
- 34.08,
- 34.14,
- 34.2,
- 34.26,
- 34.32,
- 34.38,
- 34.44,
- 34.5,
- 34.56,
- 34.62,
- 34.68,
- 34.74,
- 34.8,
- 34.86,
- 34.92,
- 34.98,
- 35.04,
- 35.1,
- 35.16,
- 35.22,
- 35.28,
- 35.34,
- 35.4,
- 35.46,
- 35.52,
- 35.58,
- 35.64,
- 35.7,
- 35.76,
- 35.82,
- 35.88,
- 35.94,
- 36,
- 36.06,
- 36.12,
- 36.18,
- 36.24,
- 36.3,
- 36.36,
- 36.42,
- 36.48,
- 36.54,
- 36.6,
- 36.66,
- 36.72,
- 36.78,
- 36.84,
- 36.9,
- 36.96,
- 37.02,
- 37.08,
- 37.14,
- 37.2,
- 37.26,
- 37.32,
- 37.38,
- 37.44,
- 37.5,
- 37.56,
- 37.62,
- 37.68,
- 37.74,
- 37.8,
- 37.86,
- 37.92,
- 37.98,
- 38.04,
- 38.1,
- 38.16,
- 38.22,
- 38.28,
- 38.34,
- 38.4,
- 38.46,
- 38.52,
- 38.58,
- 38.64,
- 38.7,
- 38.76,
- 38.82,
- 38.88,
- 38.94,
- 39,
- 39.06,
- 39.12,
- 39.18,
- 39.24,
- 39.3,
- 39.36,
- 39.42,
- 39.48,
- 39.54,
- 39.6,
- 39.66,
- 39.72,
- 39.78,
- 39.84,
- 39.9,
- 39.96,
- 40.02,
- 40.08,
- 40.14,
- 40.2,
- 40.26,
- 40.32,
- 40.38,
- 40.44,
- 40.5,
- 40.56,
- 40.62,
- 40.68,
- 40.74,
- 40.8,
- 40.86,
- 40.92,
- 40.98,
- 41.04,
- 41.1,
- 41.16,
- 41.22,
- 41.28,
- 41.34,
- 41.4,
- 41.46,
- 41.52,
- 41.58,
- 41.64,
- 41.7,
- 41.76,
- 41.82,
- 41.88,
- 41.94,
- 42,
- 42.06,
- 42.12,
- 42.18,
- 42.24,
- 42.3,
- 42.36,
- 42.42,
- 42.48,
- 42.54,
- 42.6,
- 42.66,
- 42.72,
- 42.78,
- 42.84,
- 42.9,
- 42.96,
- 43.02,
- 43.08,
- 43.14,
- 43.2,
- 43.26,
- 43.32,
- 43.38,
- 43.44,
- 43.5,
- 43.56,
- 43.62,
- 43.68,
- 43.74,
- 43.8,
- 43.86,
- 43.92,
- 43.98,
- 44.04,
- 44.1,
- 44.16,
- 44.22,
- 44.28,
- 44.34,
- 44.4,
- 44.46,
- 44.52,
- 44.58,
- 44.64,
- 44.7,
- 44.76,
- 44.82,
- 44.88,
- 44.94,
- 45,
- 45.06,
- 45.12,
- 45.18,
- 45.24,
- 45.3,
- 45.36,
- 45.42,
- 45.48,
- 45.54,
- 45.6,
- 45.66,
- 45.72,
- 45.78,
- 45.84,
- 45.9,
- 45.96,
- 46.02,
- 46.08,
- 46.14,
- 46.2,
- 46.26,
- 46.32,
- 46.38,
- 46.44,
- 46.5,
- 46.56,
- 46.62,
- 46.68,
- 46.74,
- 46.8,
- 46.86,
- 46.92,
- 46.98,
- 47.04,
- 47.1,
- 47.16,
- 47.22,
- 47.28,
- 47.34,
- 47.4,
- 47.46,
- 47.52,
- 47.58,
- 47.64,
- 47.7,
- 47.76,
- 47.82,
- 47.88,
- 47.94,
- 48,
- 48.06,
- 48.12,
- 48.18,
- 48.24,
- 48.3,
- 48.36,
- 48.42,
- 48.48,
- 48.54,
- 48.6,
- 48.66,
- 48.72,
- 48.78,
- 48.84,
- 48.9,
- 48.96,
- 49.02,
- 49.08,
- 49.14,
- 49.2,
- 49.26,
- 49.32,
- 49.38,
- 49.44,
- 49.5,
- 49.56,
- 49.62,
- 49.68,
- 49.74,
- 49.8,
- 49.86,
- 49.92,
- 49.98,
- 50.04,
- 50.1,
- 50.16,
- 50.22,
- 50.28,
- 50.34,
- 50.4,
- 50.46,
- 50.52,
- 50.58,
- 50.64,
- 50.7,
- 50.76,
- 50.82,
- 50.88,
- 50.94,
- 51,
- 51.06,
- 51.12,
- 51.18,
- 51.24,
- 51.3,
- 51.36,
- 51.42,
- 51.48,
- 51.54,
- 51.6,
- 51.66,
- 51.72,
- 51.78,
- 51.84,
- 51.9,
- 51.96,
- 52.02,
- 52.08,
- 52.14,
- 52.2,
- 52.26,
- 52.32,
- 52.38,
- 52.44,
- 52.5,
- 52.56,
- 52.62,
- 52.68,
- 52.74,
- 52.8,
- 52.86,
- 52.92,
- 52.98,
- 53.04,
- 53.1,
- 53.16,
- 53.22,
- 53.28,
- 53.34,
- 53.4,
- 53.46,
- 53.52,
- 53.58,
- 53.64,
- 53.7,
- 53.76,
- 53.82,
- 53.88,
- 53.94,
- 54,
- 54.06,
- 54.12,
- 54.18,
- 54.24,
- 54.3,
- 54.36,
- 54.42,
- 54.48,
- 54.54,
- 54.6,
- 54.66,
- 54.72,
- 54.78,
- 54.84,
- 54.9,
- 54.96,
- 55.02,
- 55.08,
- 55.14,
- 55.2,
- 55.26,
- 55.32,
- 55.38,
- 55.44,
- 55.5,
- 55.56,
- 55.62,
- 55.68,
- 55.74,
- 55.8,
- 55.86,
- 55.92,
- 55.98,
- 56.04,
- 56.1,
- 56.16,
- 56.22,
- 56.28,
- 56.34,
- 56.4,
- 56.46,
- 56.52,
- 56.58,
- 56.64,
- 56.7,
- 56.76,
- 56.82,
- 56.88,
- 56.94,
- 57,
- 57.06,
- 57.12,
- 57.18,
- 57.24,
- 57.3,
- 57.36,
- 57.42,
- 57.48,
- 57.54,
- 57.6,
- 57.66,
- 57.72,
- 57.78,
- 57.84,
- 57.9,
- 57.96,
- 58.02,
- 58.08,
- 58.14,
- 58.2,
- 58.26,
- 58.32,
- 58.38,
- 58.44,
- 58.5,
- 58.56,
- 58.62,
- 58.68,
- 58.74,
- 58.8,
- 58.86,
- 58.92,
- 58.98,
- 59.04,
- 59.1,
- 59.16,
- 59.22,
- 59.28,
- 59.34,
- 59.4,
- 59.46,
- 59.52,
- 59.58,
- 59.64,
- 59.7,
- 59.76,
- 59.82,
- 59.88,
- 59.94,
+ 6,
+ 6.06,
+ 6.12,
+ 6.18,
+ 6.24,
+ 6.3,
+ 6.36,
+ 6.42,
+ 6.48,
+ 6.54,
+ 6.6,
+ 6.66,
+ 6.72,
+ 6.78,
+ 6.84,
+ 6.9,
+ 6.96,
+ 7.02,
+ 7.08,
+ 7.14,
+ 7.2,
+ 7.26,
+ 7.32,
+ 7.38,
+ 7.44,
+ 7.5,
+ 7.56,
+ 7.62,
+ 7.68,
+ 7.74,
+ 7.8,
+ 7.86,
+ 7.92,
+ 7.98,
+ 8.04,
+ 8.1,
+ 8.16,
+ 8.22,
+ 8.28,
+ 8.34,
+ 8.4,
+ 8.46,
+ 8.52,
+ 8.58,
+ 8.64,
+ 8.7,
+ 8.76,
+ 8.82,
+ 8.88,
+ 8.94,
+ 9,
+ 9.06,
+ 9.12,
+ 9.18,
+ 9.24,
+ 9.3,
+ 9.36,
+ 9.42,
+ 9.48,
+ 9.54,
+ 9.6,
+ 9.66,
+ 9.72,
+ 9.78,
+ 9.84,
+ 9.9,
+ 9.96,
+ 10.02,
+ 10.08,
+ 10.14,
+ 10.2,
+ 10.26,
+ 10.32,
+ 10.38,
+ 10.44,
+ 10.5,
+ 10.56,
+ 10.62,
+ 10.68,
+ 10.74,
+ 10.8,
+ 10.86,
+ 10.92,
+ 10.98,
+ 11.04,
+ 11.1,
+ 11.16,
+ 11.22,
+ 11.28,
+ 11.34,
+ 11.4,
+ 11.46,
+ 11.52,
+ 11.58,
+ 11.64,
+ 11.7,
+ 11.76,
+ 11.82,
+ 11.88,
+ 11.94,
+ 12,
+ 12.06,
+ 12.12,
+ 12.18,
+ 12.24,
+ 12.3,
+ 12.36,
+ 12.42,
+ 12.48,
+ 12.54,
+ 12.6,
+ 12.66,
+ 12.72,
+ 12.78,
+ 12.84,
+ 12.9,
+ 12.96,
+ 13.02,
+ 13.08,
+ 13.14,
+ 13.2,
+ 13.26,
+ 13.32,
+ 13.38,
+ 13.44,
+ 13.5,
+ 13.56,
+ 13.62,
+ 13.68,
+ 13.74,
+ 13.8,
+ 13.86,
+ 13.92,
+ 13.98,
+ 14.04,
+ 14.1,
+ 14.16,
+ 14.22,
+ 14.28,
+ 14.34,
+ 14.4,
+ 14.46,
+ 14.52,
+ 14.58,
+ 14.64,
+ 14.7,
+ 14.76,
+ 14.82,
+ 14.88,
+ 14.94,
+ 15,
+ 15.06,
+ 15.12,
+ 15.18,
+ 15.24,
+ 15.3,
+ 15.36,
+ 15.42,
+ 15.48,
+ 15.54,
+ 15.6,
+ 15.66,
+ 15.72,
+ 15.78,
+ 15.84,
+ 15.9,
+ 15.96,
+ 16.02,
+ 16.08,
+ 16.14,
+ 16.2,
+ 16.26,
+ 16.32,
+ 16.38,
+ 16.44,
+ 16.5,
+ 16.56,
+ 16.62,
+ 16.68,
+ 16.74,
+ 16.8,
+ 16.86,
+ 16.92,
+ 16.98,
+ 17.04,
+ 17.1,
+ 17.16,
+ 17.22,
+ 17.28,
+ 17.34,
+ 17.4,
+ 17.46,
+ 17.52,
+ 17.58,
+ 17.64,
+ 17.7,
+ 17.76,
+ 17.82,
+ 17.88,
+ 17.94,
+ 18,
+ 18.06,
+ 18.12,
+ 18.18,
+ 18.24,
+ 18.3,
+ 18.36,
+ 18.42,
+ 18.48,
+ 18.54,
+ 18.6,
+ 18.66,
+ 18.72,
+ 18.78,
+ 18.84,
+ 18.9,
+ 18.96,
+ 19.02,
+ 19.08,
+ 19.14,
+ 19.2,
+ 19.26,
+ 19.32,
+ 19.38,
+ 19.44,
+ 19.5,
+ 19.56,
+ 19.62,
+ 19.68,
+ 19.74,
+ 19.8,
+ 19.86,
+ 19.92,
+ 19.98,
+ 20.04,
+ 20.1,
+ 20.16,
+ 20.22,
+ 20.28,
+ 20.34,
+ 20.4,
+ 20.46,
+ 20.52,
+ 20.58,
+ 20.64,
+ 20.7,
+ 20.76,
+ 20.82,
+ 20.88,
+ 20.94,
+ 21,
+ 21.06,
+ 21.12,
+ 21.18,
+ 21.24,
+ 21.3,
+ 21.36,
+ 21.42,
+ 21.48,
+ 21.54,
+ 21.6,
+ 21.66,
+ 21.72,
+ 21.78,
+ 21.84,
+ 21.9,
+ 21.96,
+ 22.02,
+ 22.08,
+ 22.14,
+ 22.2,
+ 22.26,
+ 22.32,
+ 22.38,
+ 22.44,
+ 22.5,
+ 22.56,
+ 22.62,
+ 22.68,
+ 22.74,
+ 22.8,
+ 22.86,
+ 22.92,
+ 22.98,
+ 23.04,
+ 23.1,
+ 23.16,
+ 23.22,
+ 23.28,
+ 23.34,
+ 23.4,
+ 23.46,
+ 23.52,
+ 23.58,
+ 23.64,
+ 23.7,
+ 23.76,
+ 23.82,
+ 23.88,
+ 23.94,
+ 24,
+ 24.06,
+ 24.12,
+ 24.18,
+ 24.24,
+ 24.3,
+ 24.36,
+ 24.42,
+ 24.48,
+ 24.54,
+ 24.6,
+ 24.66,
+ 24.72,
+ 24.78,
+ 24.84,
+ 24.9,
+ 24.96,
+ 25.02,
+ 25.08,
+ 25.14,
+ 25.2,
+ 25.26,
+ 25.32,
+ 25.38,
+ 25.44,
+ 25.5,
+ 25.56,
+ 25.62,
+ 25.68,
+ 25.74,
+ 25.8,
+ 25.86,
+ 25.92,
+ 25.98,
+ 26.04,
+ 26.1,
+ 26.16,
+ 26.22,
+ 26.28,
+ 26.34,
+ 26.4,
+ 26.46,
+ 26.52,
+ 26.58,
+ 26.64,
+ 26.7,
+ 26.76,
+ 26.82,
+ 26.88,
+ 26.94,
+ 27,
+ 27.06,
+ 27.12,
+ 27.18,
+ 27.24,
+ 27.3,
+ 27.36,
+ 27.42,
+ 27.48,
+ 27.54,
+ 27.6,
+ 27.66,
+ 27.72,
+ 27.78,
+ 27.84,
+ 27.9,
+ 27.96,
+ 28.02,
+ 28.08,
+ 28.14,
+ 28.2,
+ 28.26,
+ 28.32,
+ 28.38,
+ 28.44,
+ 28.5,
+ 28.56,
+ 28.62,
+ 28.68,
+ 28.74,
+ 28.8,
+ 28.86,
+ 28.92,
+ 28.98,
+ 29.04,
+ 29.1,
+ 29.16,
+ 29.22,
+ 29.28,
+ 29.34,
+ 29.4,
+ 29.46,
+ 29.52,
+ 29.58,
+ 29.64,
+ 29.7,
+ 29.76,
+ 29.82,
+ 29.88,
+ 29.94,
+ 30,
+ 30.06,
+ 30.12,
+ 30.18,
+ 30.24,
+ 30.3,
+ 30.36,
+ 30.42,
+ 30.48,
+ 30.54,
+ 30.6,
+ 30.66,
+ 30.72,
+ 30.78,
+ 30.84,
+ 30.9,
+ 30.96,
+ 31.02,
+ 31.08,
+ 31.14,
+ 31.2,
+ 31.26,
+ 31.32,
+ 31.38,
+ 31.44,
+ 31.5,
+ 31.56,
+ 31.62,
+ 31.68,
+ 31.74,
+ 31.8,
+ 31.86,
+ 31.92,
+ 31.98,
+ 32.04,
+ 32.1,
+ 32.16,
+ 32.22,
+ 32.28,
+ 32.34,
+ 32.4,
+ 32.46,
+ 32.52,
+ 32.58,
+ 32.64,
+ 32.7,
+ 32.76,
+ 32.82,
+ 32.88,
+ 32.94,
+ 33,
+ 33.06,
+ 33.12,
+ 33.18,
+ 33.24,
+ 33.3,
+ 33.36,
+ 33.42,
+ 33.48,
+ 33.54,
+ 33.6,
+ 33.66,
+ 33.72,
+ 33.78,
+ 33.84,
+ 33.9,
+ 33.96,
+ 34.02,
+ 34.08,
+ 34.14,
+ 34.2,
+ 34.26,
+ 34.32,
+ 34.38,
+ 34.44,
+ 34.5,
+ 34.56,
+ 34.62,
+ 34.68,
+ 34.74,
+ 34.8,
+ 34.86,
+ 34.92,
+ 34.98,
+ 35.04,
+ 35.1,
+ 35.16,
+ 35.22,
+ 35.28,
+ 35.34,
+ 35.4,
+ 35.46,
+ 35.52,
+ 35.58,
+ 35.64,
+ 35.7,
+ 35.76,
+ 35.82,
+ 35.88,
+ 35.94,
+ 36,
+ 36.06,
+ 36.12,
+ 36.18,
+ 36.24,
+ 36.3,
+ 36.36,
+ 36.42,
+ 36.48,
+ 36.54,
+ 36.6,
+ 36.66,
+ 36.72,
+ 36.78,
+ 36.84,
+ 36.9,
+ 36.96,
+ 37.02,
+ 37.08,
+ 37.14,
+ 37.2,
+ 37.26,
+ 37.32,
+ 37.38,
+ 37.44,
+ 37.5,
+ 37.56,
+ 37.62,
+ 37.68,
+ 37.74,
+ 37.8,
+ 37.86,
+ 37.92,
+ 37.98,
+ 38.04,
+ 38.1,
+ 38.16,
+ 38.22,
+ 38.28,
+ 38.34,
+ 38.4,
+ 38.46,
+ 38.52,
+ 38.58,
+ 38.64,
+ 38.7,
+ 38.76,
+ 38.82,
+ 38.88,
+ 38.94,
+ 39,
+ 39.06,
+ 39.12,
+ 39.18,
+ 39.24,
+ 39.3,
+ 39.36,
+ 39.42,
+ 39.48,
+ 39.54,
+ 39.6,
+ 39.66,
+ 39.72,
+ 39.78,
+ 39.84,
+ 39.9,
+ 39.96,
+ 40.02,
+ 40.08,
+ 40.14,
+ 40.2,
+ 40.26,
+ 40.32,
+ 40.38,
+ 40.44,
+ 40.5,
+ 40.56,
+ 40.62,
+ 40.68,
+ 40.74,
+ 40.8,
+ 40.86,
+ 40.92,
+ 40.98,
+ 41.04,
+ 41.1,
+ 41.16,
+ 41.22,
+ 41.28,
+ 41.34,
+ 41.4,
+ 41.46,
+ 41.52,
+ 41.58,
+ 41.64,
+ 41.7,
+ 41.76,
+ 41.82,
+ 41.88,
+ 41.94,
+ 42,
+ 42.06,
+ 42.12,
+ 42.18,
+ 42.24,
+ 42.3,
+ 42.36,
+ 42.42,
+ 42.48,
+ 42.54,
+ 42.6,
+ 42.66,
+ 42.72,
+ 42.78,
+ 42.84,
+ 42.9,
+ 42.96,
+ 43.02,
+ 43.08,
+ 43.14,
+ 43.2,
+ 43.26,
+ 43.32,
+ 43.38,
+ 43.44,
+ 43.5,
+ 43.56,
+ 43.62,
+ 43.68,
+ 43.74,
+ 43.8,
+ 43.86,
+ 43.92,
+ 43.98,
+ 44.04,
+ 44.1,
+ 44.16,
+ 44.22,
+ 44.28,
+ 44.34,
+ 44.4,
+ 44.46,
+ 44.52,
+ 44.58,
+ 44.64,
+ 44.7,
+ 44.76,
+ 44.82,
+ 44.88,
+ 44.94,
+ 45,
+ 45.06,
+ 45.12,
+ 45.18,
+ 45.24,
+ 45.3,
+ 45.36,
+ 45.42,
+ 45.48,
+ 45.54,
+ 45.6,
+ 45.66,
+ 45.72,
+ 45.78,
+ 45.84,
+ 45.9,
+ 45.96,
+ 46.02,
+ 46.08,
+ 46.14,
+ 46.2,
+ 46.26,
+ 46.32,
+ 46.38,
+ 46.44,
+ 46.5,
+ 46.56,
+ 46.62,
+ 46.68,
+ 46.74,
+ 46.8,
+ 46.86,
+ 46.92,
+ 46.98,
+ 47.04,
+ 47.1,
+ 47.16,
+ 47.22,
+ 47.28,
+ 47.34,
+ 47.4,
+ 47.46,
+ 47.52,
+ 47.58,
+ 47.64,
+ 47.7,
+ 47.76,
+ 47.82,
+ 47.88,
+ 47.94,
+ 48,
+ 48.06,
+ 48.12,
+ 48.18,
+ 48.24,
+ 48.3,
+ 48.36,
+ 48.42,
+ 48.48,
+ 48.54,
+ 48.6,
+ 48.66,
+ 48.72,
+ 48.78,
+ 48.84,
+ 48.9,
+ 48.96,
+ 49.02,
+ 49.08,
+ 49.14,
+ 49.2,
+ 49.26,
+ 49.32,
+ 49.38,
+ 49.44,
+ 49.5,
+ 49.56,
+ 49.62,
+ 49.68,
+ 49.74,
+ 49.8,
+ 49.86,
+ 49.92,
+ 49.98,
+ 50.04,
+ 50.1,
+ 50.16,
+ 50.22,
+ 50.28,
+ 50.34,
+ 50.4,
+ 50.46,
+ 50.52,
+ 50.58,
+ 50.64,
+ 50.7,
+ 50.76,
+ 50.82,
+ 50.88,
+ 50.94,
+ 51,
+ 51.06,
+ 51.12,
+ 51.18,
+ 51.24,
+ 51.3,
+ 51.36,
+ 51.42,
+ 51.48,
+ 51.54,
+ 51.6,
+ 51.66,
+ 51.72,
+ 51.78,
+ 51.84,
+ 51.9,
+ 51.96,
+ 52.02,
+ 52.08,
+ 52.14,
+ 52.2,
+ 52.26,
+ 52.32,
+ 52.38,
+ 52.44,
+ 52.5,
+ 52.56,
+ 52.62,
+ 52.68,
+ 52.74,
+ 52.8,
+ 52.86,
+ 52.92,
+ 52.98,
+ 53.04,
+ 53.1,
+ 53.16,
+ 53.22,
+ 53.28,
+ 53.34,
+ 53.4,
+ 53.46,
+ 53.52,
+ 53.58,
+ 53.64,
+ 53.7,
+ 53.76,
+ 53.82,
+ 53.88,
+ 53.94,
+ 54,
+ 54.06,
+ 54.12,
+ 54.18,
+ 54.24,
+ 54.3,
+ 54.36,
+ 54.42,
+ 54.48,
+ 54.54,
+ 54.6,
+ 54.66,
+ 54.72,
+ 54.78,
+ 54.84,
+ 54.9,
+ 54.96,
+ 55.02,
+ 55.08,
+ 55.14,
+ 55.2,
+ 55.26,
+ 55.32,
+ 55.38,
+ 55.44,
+ 55.5,
+ 55.56,
+ 55.62,
+ 55.68,
+ 55.74,
+ 55.8,
+ 55.86,
+ 55.92,
+ 55.98,
+ 56.04,
+ 56.1,
+ 56.16,
+ 56.22,
+ 56.28,
+ 56.34,
+ 56.4,
+ 56.46,
+ 56.52,
+ 56.58,
+ 56.64,
+ 56.7,
+ 56.76,
+ 56.82,
+ 56.88,
+ 56.94,
+ 57,
+ 57.06,
+ 57.12,
+ 57.18,
+ 57.24,
+ 57.3,
+ 57.36,
+ 57.42,
+ 57.48,
+ 57.54,
+ 57.6,
+ 57.66,
+ 57.72,
+ 57.78,
+ 57.84,
+ 57.9,
+ 57.96,
+ 58.02,
+ 58.08,
+ 58.14,
+ 58.2,
+ 58.26,
+ 58.32,
+ 58.38,
+ 58.44,
+ 58.5,
+ 58.56,
+ 58.62,
+ 58.68,
+ 58.74,
+ 58.8,
+ 58.86,
+ 58.92,
+ 58.98,
+ 59.04,
+ 59.1,
+ 59.16,
+ 59.22,
+ 59.28,
+ 59.34,
+ 59.4,
+ 59.46,
+ 59.52,
+ 59.58,
+ 59.64,
+ 59.7,
+ 59.76,
+ 59.82,
+ 59.88,
+ 59.94,
60
- ],
+ ],
"y": [
- 0.0340096880658743,
- 0.0339825820393152,
- 0.0339848298736003,
- 0.0340157851855399,
- 0.0340724304148363,
- 0.0341495081433231,
- 0.0342398703671775,
- 0.0343350303754144,
- 0.0344258739048401,
- 0.0345034643808437,
- 0.0345598647459378,
- 0.0345888944580912,
- 0.0345867418531426,
- 0.034552359375196,
- 0.034487586482586,
- 0.0343969759723051,
- 0.034287340812167,
- 0.0341670795381046,
- 0.0340453666283684,
- 0.0339313035796742,
- 0.0338331183733763,
- 0.0337574823290288,
- 0.0337089911331313,
- 0.0336898360659585,
- 0.0336996746943116,
- 0.0337356984568631,
- 0.0337928873319698,
- 0.0338644374992819,
- 0.0339423433884236,
- 0.0340181065223892,
- 0.0340835267772121,
- 0.0341315077615123,
- 0.0341567841161288,
- 0.0341564672525686,
- 0.034130319456618,
- 0.0340807075327795,
- 0.034012245968177,
- 0.0339311962576987,
- 0.0338447250228825,
- 0.0337601308941295,
- 0.033684133280577,
- 0.0336222868256454,
- 0.0335785553680098,
- 0.0335550561530369,
- 0.033551971375453,
- 0.0335676185999944,
- 0.0335986707374863,
- 0.0336405156724845,
- 0.0336877411134937,
- 0.0337347188188549,
- 0.033776243720349,
- 0.0338081612184255,
- 0.0338278979010038,
- 0.0338348073049052,
- 0.0338302609097081,
- 0.0338174552899047,
- 0.0338009590366416,
- 0.033786071085753,
- 0.0337780907492723,
- 0.0337816034808435,
- 0.0337998701285619,
- 0.0338343818680142,
- 0.033884618029496,
- 0.0339480242629436,
- 0.0340202129362811,
- 0.0340953724040331,
- 0.0341668535052106,
- 0.0342278801904304,
- 0.0342723099577102,
- 0.0342953543501327,
- 0.0342941656808797,
- 0.0342682072298503,
- 0.0342193513535319,
- 0.0341516901922054,
- 0.0340710890786835,
- 0.0339845519790088,
- 0.0338994907177709,
- 0.0338229907697978,
- 0.0337611498974135,
- 0.033718541697195,
- 0.0336978342970708,
- 0.0336995804765624,
- 0.0337221887810325,
- 0.0337620811421438,
- 0.0338140358116027,
- 0.03387170171188,
- 0.0339282511783407,
- 0.0339771148057618,
- 0.0340127192713469,
- 0.034031133075424,
- 0.0340305236769344,
- 0.0340113485773826,
- 0.0339762430542312,
- 0.0339296204862267,
- 0.0338770525848932,
- 0.0338245309324931,
- 0.0337777197944195,
- 0.0337412955837993,
- 0.0337184407049311,
- 0.03371053019075,
- 0.033717025817944,
- 0.0337355755776265,
- 0.0337623037191558,
- 0.033792264404692,
- 0.0338200184156495,
- 0.0338402782059439,
- 0.0338485549223082,
- 0.0338417355349268,
- 0.0338185219073666,
- 0.0337796776594349,
- 0.0337280518805058,
- 0.0336683775602449,
- 0.0336068716025574,
- 0.0335506866158404,
- 0.0335072779451704,
- 0.0334837513065295,
- 0.0334862489603391,
- 0.0335194199271108,
- 0.0335860069037053,
- 0.0336865724516487,
- 0.0338193805903131,
- 0.0339804458868419,
- 0.0341637578951582,
- 0.034361681525324,
- 0.0345655216911705,
- 0.0347662232685804,
- 0.0349551570926305,
- 0.0351249234546311,
- 0.0352700913658205,
- 0.0353877894430125,
- 0.0354780755319346,
- 0.0355440368495389,
- 0.0355916064301381,
- 0.0356291178158403,
- 0.035666650087111,
- 0.0357152332146282,
- 0.0357859871461353,
- 0.0358892594872094,
- 0.0360338120427249,
- 0.0362260930337487,
- 0.0364696253298549,
- 0.0367645437237378,
- 0.0371073230705426,
- 0.0374907456110494,
- 0.037904148646256,
- 0.0383339641280863,
- 0.038764510451687,
- 0.0391789385373404,
- 0.0395601951477525,
- 0.0398918727304601,
- 0.0401588791666368,
- 0.040347967969535,
- 0.0404482725618394,
- 0.040452017641072,
- 0.0403554796367954,
- 0.0401600482129714,
- 0.0398730141503842,
- 0.0395076419726774,
- 0.0390822702066516,
- 0.0386185353370577,
- 0.0381391291465136,
- 0.0376656071472789,
- 0.0372166589825955,
- 0.036807041062638,
- 0.0364471759261387,
- 0.0361432987809871,
- 0.0358979787609245,
- 0.0357108371150595,
- 0.0355793054100671,
- 0.0354993015520113,
- 0.0354657439660759,
- 0.0354728705141005,
- 0.0355143743898741,
- 0.0355834096120071,
- 0.0356725487657081,
- 0.0357737892894161,
- 0.0358786949202361,
- 0.035978721121131,
- 0.0360657110061835,
- 0.0361324786297419,
- 0.0361733477985397,
- 0.036184513092221,
- 0.0361641423209476,
- 0.036112224946232,
- 0.0360302493811795,
- 0.0359208282832213,
- 0.0357873736967755,
- 0.0356338693803412,
- 0.0354647269400626,
- 0.0352846734949564,
- 0.0350986139456819,
- 0.0349114351321713,
- 0.0347277555978359,
- 0.0345516555285674,
- 0.0343864357432115,
- 0.0342344508079842,
- 0.0340970447465149,
- 0.0339745960910147,
- 0.0338666586693147,
- 0.0337721695734315,
- 0.0336896880516131,
- 0.0336176289272241,
- 0.0335544606614036,
- 0.0334988492150147,
- 0.0334497413426604,
- 0.0334063916372368,
- 0.0333683442986183,
- 0.0333353827835576,
- 0.0333074594753354,
- 0.0332846153140977,
- 0.0332668975296605,
- 0.0332542826694217,
- 0.0332466115142999,
- 0.0332435415020829,
- 0.0332445206593564,
- 0.0332487851232298,
- 0.0332553806980805,
- 0.0332632078107407,
- 0.0332710883441682,
- 0.0332778513408674,
- 0.0332824318139404,
- 0.0332839730247063,
- 0.0332819187931335,
- 0.0332760805984512,
- 0.0332666660346171,
- 0.0332542609585433,
- 0.0332397660312213,
- 0.0332242966911109,
- 0.0332090612745992,
- 0.0331952335747951,
- 0.0331838339398969,
- 0.0331756287917081,
- 0.0331710543333026,
- 0.033170167707841,
- 0.0331726282281587,
- 0.0331777116041595,
- 0.0331843598516531,
- 0.0331912674765488,
- 0.0331970001521551,
- 0.0332001361290021,
- 0.0331994146644745,
- 0.0331938718652813,
- 0.0331829442162015,
- 0.0331665244566833,
- 0.0331449627045299,
- 0.0331190158072741,
- 0.0330897570451746,
- 0.0330584639382375,
- 0.0330265026654278,
- 0.032995223899336,
- 0.032965878641225,
- 0.0329395564639612,
- 0.0329171444549774,
- 0.0328993038118672,
- 0.0328864618052168,
- 0.0328788181847829,
- 0.0328763655852763,
- 0.0328789223516394,
- 0.0328861737573891,
- 0.0328977149765886,
- 0.0329130877937861,
- 0.0329318038929577,
- 0.0329533507759887,
- 0.0329771810884046,
- 0.0330026909100763,
- 0.0330291958800039,
- 0.0330559148648653,
- 0.0330819691176033,
- 0.0331064012313502,
- 0.0331282139184895,
- 0.0331464249684519,
- 0.0331601324167954,
- 0.0331685830617046,
- 0.0331712375155888,
- 0.0331678253501199,
- 0.0331583842270358,
- 0.0331432773355155,
- 0.0331231844810513,
- 0.0330990642929777,
- 0.033072088346843,
- 0.0330435520638867,
- 0.0330147711353601,
- 0.0329869749201082,
- 0.0329612090790241,
- 0.032938258472123,
- 0.0329185984131772,
- 0.0329023784537977,
- 0.0328894387483607,
- 0.0328793554107733,
- 0.03287150855057,
- 0.0328651650253882,
- 0.0328595672835842,
- 0.0328540197665318,
- 0.0328479649611369,
- 0.032841042215003,
- 0.0328331238714847,
- 0.0328243252480738,
- 0.0328149875014819,
- 0.0328056353353492,
- 0.0327969144322703,
- 0.0327895159361892,
- 0.0327840968410754,
- 0.0327812055273219,
- 0.0327812209321077,
- 0.032784312109297,
- 0.0327904224556661,
- 0.0327992798980313,
- 0.0328104311375365,
- 0.0328232950088688,
- 0.0328372275975462,
- 0.0328515904309159,
- 0.0328658131271145,
- 0.0328794433581581,
- 0.0328921795078686,
- 0.0329038843594782,
- 0.0329145808380163,
- 0.0329244327233987,
- 0.0329337141214608,
- 0.0329427714601945,
- 0.0329519812606222,
- 0.032961706414049,
- 0.0329722535845316,
- 0.0329838347748768,
- 0.0329965368036798,
- 0.0330103028928976,
- 0.0330249301428297,
- 0.0330400849968958,
- 0.0330553359732826,
- 0.0330701995846663,
- 0.0330841924341411,
- 0.0330968809113037,
- 0.0331079203012691,
- 0.033117077452867,
- 0.033124234808754,
- 0.0331293775433865,
- 0.0331325686783536,
- 0.0331339185438932,
- 0.0331335545976458,
- 0.0331315958021585,
- 0.03312813337797,
- 0.0331232177836584,
- 0.0331168509391674,
- 0.0331089831464718,
- 0.0330995154071662,
- 0.0330883090393876,
- 0.0330752048020001,
- 0.0330600526523703,
- 0.0330427508777954,
- 0.0330232902852075,
- 0.0330017963796486,
- 0.0329785609928268,
- 0.0329540553121052,
- 0.0329289188418004,
- 0.0329039230206686,
- 0.0328799130342012,
- 0.0328577355839191,
- 0.0328381629461827,
- 0.0328218240044477,
- 0.03280915117209,
- 0.0328003489246895,
- 0.0327953860108276,
- 0.0327940102141593,
- 0.032795782342758,
- 0.0328001250088002,
- 0.0328063814374765,
- 0.0328138795397803,
- 0.0328219963917591,
- 0.0328302179219853,
- 0.0328381881789817,
- 0.0328457424446988,
- 0.0328529191559043,
- 0.0328599473912299,
- 0.0328672095146815,
- 0.0328751819845224,
- 0.0328843606466063,
- 0.0328951793548009,
- 0.0329079320599367,
- 0.0329227084797722,
- 0.0329393522688911,
- 0.0329574485150585,
- 0.032976344613913,
- 0.0329952052311355,
- 0.0330130982303537,
- 0.0330291043128124,
- 0.0330424390985487,
- 0.0330525731487777,
- 0.0330593337851934,
- 0.033062973192094,
- 0.0330641904946002,
- 0.0330641010194955,
- 0.0330641529077931,
- 0.033065998407665,
- 0.0330713332184428,
- 0.0330817211611392,
- 0.0330984227468919,
- 0.0331222450474762,
- 0.0331534272765369,
- 0.0331915725297938,
- 0.033235631995116,
- 0.0332839441037108,
- 0.0333343276092554,
- 0.0333842241643998,
- 0.0334308822061479,
- 0.0334715696479865,
- 0.0335037982642545,
- 0.033525538585023,
- 0.0335354018825747,
- 0.0335327667402648,
- 0.0335178325506482,
- 0.0334915909087233,
- 0.0334557169313506,
- 0.0334123938803167,
- 0.0333640937224046,
- 0.0333133415819778,
- 0.0332624926388995,
- 0.0332135462649048,
- 0.0331680153093952,
- 0.0331268600332847,
- 0.0330904877166773,
- 0.0330588114941292,
- 0.0330313561000947,
- 0.0330073941854268,
- 0.0329860947524559,
- 0.0329666650448864,
- 0.032948468892027,
- 0.0329311079631021,
- 0.0329144574170019,
- 0.0328986535912904,
- 0.0328840379517952,
- 0.0328710676040235,
- 0.032860207294372,
- 0.0328518202412217,
- 0.0328460749686461,
- 0.0328428826821556,
- 0.0328418751486472,
- 0.0328424272789969,
- 0.0328437224664964,
- 0.0328448529332094,
- 0.0328449424820764,
- 0.0328432756388722,
- 0.0328394155960329,
- 0.0328332939279719,
- 0.0328252578381265,
- 0.0328160655490258,
- 0.0328068268502685,
- 0.0327988929541056,
- 0.0327937066650533,
- 0.0327926294450093,
- 0.0327967654557874,
- 0.032806803645336,
- 0.0328228973631744,
- 0.0328445971302517,
- 0.0328708465565379,
- 0.0329000446152628,
- 0.0329301702075752,
- 0.0329589578684467,
- 0.0329841072814372,
- 0.0330035047043629,
- 0.0330154321258315,
- 0.0330187404741748,
- 0.0330129666764821,
- 0.0329983805798643,
- 0.0329759559909739,
- 0.0329472692540732,
- 0.0329143375511239,
- 0.0328794161944654,
- 0.0328447786223403,
- 0.0328125041032656,
- 0.0327842963292832,
- 0.0327613515869003,
- 0.0327442887702562,
- 0.0327331459885418,
- 0.0327274407634116,
- 0.0327262836107547,
- 0.032728528899709,
- 0.0327329429491333,
- 0.0327383678767855,
- 0.0327438610045761,
- 0.0327487934988161,
- 0.0327528978135026,
- 0.0327562604978784,
- 0.0327592639868801,
- 0.0327624871822293,
- 0.0327665792973842,
- 0.0327721242473965,
- 0.0327795137321367,
- 0.032788846141417,
- 0.0327998656051207,
- 0.0328119510588688,
- 0.0328241593301584,
- 0.03283531940003,
- 0.0328441678621415,
- 0.0328495091607805,
- 0.0328503795714698,
- 0.0328461921327892,
- 0.0328368414819517,
- 0.0328227527522196,
- 0.0328048665444353,
- 0.0327845610464919,
- 0.0327635209478055,
- 0.0327435694010262,
- 0.0327264830391621,
- 0.0327138108289474,
- 0.0327067158185912,
- 0.0327058554183787,
- 0.0327113115020891,
- 0.0327225768415854,
- 0.0327385993916264,
- 0.0327578807662483,
- 0.0327786199846679,
- 0.0327988885537322,
- 0.0328168188451293,
- 0.0328307853609009,
- 0.0328395586228896,
- 0.0328424144365871,
- 0.0328391869096469,
- 0.0328302609549811,
- 0.0328165077609553,
- 0.0327991734991565,
- 0.0327797363189741,
- 0.0327597489607115,
- 0.0327406842012872,
- 0.0327237983445806,
- 0.0327100247606093,
- 0.0326999056687322,
- 0.0326935663500007,
- 0.0326907319638691,
- 0.0326907832443082,
- 0.0326928437206622,
- 0.0326958880535794,
- 0.032698859031268,
- 0.0327007801775965,
- 0.032700852040548,
- 0.032698522974889,
- 0.0326935291369078,
- 0.032685902719412,
- 0.032675951355323,
- 0.0326642144664834,
- 0.0326514038251353,
- 0.0326383357881982,
- 0.032625861887586,
- 0.0326148031504939,
- 0.0326058920735451,
- 0.0325997248390401,
- 0.0325967252441599,
- 0.0325971209187534,
- 0.0326009317065105,
- 0.0326079695729359,
- 0.0326178491055311,
- 0.0326300076070597,
- 0.0326437339172447,
- 0.0326582053117,
- 0.0326725319279507,
- 0.0326858079551281,
- 0.0326971681685411,
- 0.0327058473122421,
- 0.0327112385260035,
- 0.0327129458135676,
- 0.0327108248458509,
- 0.032705006512131,
- 0.0326958987296758,
- 0.0326841640233885,
- 0.0326706729991163,
- 0.0326564366276659,
- 0.0326425227856031,
- 0.0326299644138028,
- 0.0326196677666315,
- 0.0326123295001037,
- 0.0326083708526553,
- 0.0326078959974416,
- 0.0326106798535253,
- 0.0326161882655075,
- 0.032623630537719,
- 0.0326320409604152,
- 0.0326403824546667,
- 0.0326476622184107,
- 0.0326530468303181,
- 0.0326559632251979,
- 0.0326561727142663,
- 0.0326538079082204,
- 0.0326493667458662,
- 0.0326436632051766,
- 0.0326377398153661,
- 0.0326327519139537,
- 0.0326298370028329,
- 0.0326299841691594,
- 0.0326339183078607,
- 0.032642012033775,
- 0.0326542350660329,
- 0.0326701468961974,
- 0.0326889340733502,
- 0.0327094887787201,
- 0.0327305208555231,
- 0.0327506915010337,
- 0.0327687538857001,
- 0.0327836845325215,
- 0.0327947897781852,
- 0.0328017742268612,
- 0.0328047626286183,
- 0.0328042725069617,
- 0.0328011412480847,
- 0.0327964172394754,
- 0.0327912290970373,
- 0.0327866494355596,
- 0.0327835698035158,
- 0.0327826014866724,
- 0.0327840133203829,
- 0.0327877129971055,
- 0.0327932731795565,
- 0.0327999985459293,
- 0.0328070251652225,
- 0.0328134397656268,
- 0.0328184039413676,
- 0.032821267522064,
- 0.0328216564561522,
- 0.0328195236580244,
- 0.0328151560464475,
- 0.0328091368453652,
- 0.0328022682744902,
- 0.0327954651014113,
- 0.0327896333612644,
- 0.0327855503647446,
- 0.0327837617645165,
- 0.0327845091240826,
- 0.0327876975561421,
- 0.0327929081027424,
- 0.0327994541622591,
- 0.032806475942752,
- 0.0328130621285811,
- 0.0328183841783011,
- 0.032821826416539,
- 0.0328230947721668,
- 0.0328222889099233,
- 0.0328199265625529,
- 0.0328169146700413,
- 0.0328144686792992,
- 0.0328139880320395,
- 0.0328169014501376,
- 0.0328244993276206,
- 0.0328377719574653,
- 0.0328572714807498,
- 0.0328830126997334,
- 0.0329144237758847,
- 0.0329503528895444,
- 0.0329891316378686,
- 0.0330286906516148,
- 0.0330667179129652,
- 0.0331008458610315,
- 0.0331288499602088,
- 0.0331488394460972,
- 0.0331594209311009,
- 0.0331598177828139,
- 0.0331499327004064,
- 0.0331303472820388,
- 0.0331022597358753,
- 0.0330673690902288,
- 0.0330277201418686,
- 0.0329855270519917,
- 0.0329429945382847,
- 0.0329021541296094,
- 0.0328647294968839,
- 0.0328320402461058,
- 0.032804948584496,
- 0.0327838486315395,
- 0.0327686942889341,
- 0.0327590587095796,
- 0.0327542165374165,
- 0.0327532391582084,
- 0.0327550931248625,
- 0.0327587326403744,
- 0.0327631784440706,
- 0.0327675775590751,
- 0.0327712409398356,
- 0.0327736588251258,
- 0.0327744962000769,
- 0.032773572841676,
- 0.0327708336797021,
- 0.0327663154998407,
- 0.0327601153667638,
- 0.0327523647374217,
- 0.0327432113846492,
- 0.0327328093445828,
- 0.0327213155156537,
- 0.0327088905600196,
- 0.0326957015207673,
- 0.0326819240147353,
- 0.0326677427674141,
- 0.0326533502987993,
- 0.0326389444182234,
- 0.0326247256058201,
- 0.0326108952712944,
- 0.032597655382665,
- 0.0325852092738736,
- 0.0325737628385902,
- 0.0325635250116867,
- 0.0325547065138355,
- 0.0325475162217149,
- 0.032542155046158,
- 0.0325388076420224,
- 0.0325376324870958,
- 0.0325387508289874,
- 0.0325422348197002,
- 0.0325480950320904,
- 0.0325562676687455,
- 0.0325666022208385,
- 0.0325788510440699,
- 0.0325926630678073,
- 0.0326075843295003,
- 0.0326230679321033,
- 0.0326384951876491,
- 0.0326532081705519,
- 0.0326665519169673,
- 0.0326779224959945,
- 0.0326868156222805,
- 0.0326928697702184,
- 0.0326958980787891,
- 0.0326959046423994,
- 0.0326930827862213,
- 0.0326877952251255,
- 0.0326805382091477,
- 0.0326718935721341,
- 0.0326624738664463,
- 0.0326528664401451,
- 0.0326435824053913,
- 0.0326350159799792,
- 0.0326274186748725,
- 0.0326208912818059,
- 0.0326153946733297,
- 0.0326107782352479,
- 0.0326068225684304,
- 0.0326032912360819,
- 0.0325999850928461,
- 0.0325967923257265,
- 0.0325937278312531,
- 0.0325909568581587,
- 0.032588799739349,
- 0.0325877167348816,
- 0.0325882742233461,
- 0.0325910954753216,
- 0.0325968008471321,
- 0.032605943328811,
- 0.0326189458912232,
- 0.0326360469618604,
- 0.0326572596177226,
- 0.0326823487730803,
- 0.032710828880604,
- 0.0327419826357806,
- 0.032774899094347,
- 0.0328085277070154,
- 0.0328417432479291,
- 0.0328734156204861,
- 0.032902478163975,
- 0.0329279883943177,
- 0.032949176070567,
- 0.0329654750043726,
- 0.03297653697432,
- 0.0329822282467891,
- 0.0329826112468778,
- 0.0329779155388275,
- 0.0329685031707705,
- 0.0329548334366354,
- 0.0329374312202965,
- 0.0329168615336368,
- 0.0328937110260124,
- 0.0328685755723788,
- 0.0328420519205279,
- 0.0328147309993261,
- 0.0327871908399863,
- 0.032759987919989,
- 0.0327336467671939,
- 0.0327086485269639,
- 0.0326854196773698,
- 0.0326643221291367,
- 0.0326456456836096,
- 0.0326296034490933,
- 0.0326163305220749,
- 0.0326058861072371,
- 0.0325982592191988,
- 0.0325933780204153,
- 0.0325911225396636,
- 0.0325913399220229,
- 0.0325938605847268,
- 0.0325985129412973,
- 0.0326051340134197,
- 0.0326135735125368,
- 0.0326236899043811,
- 0.0326353384204055,
- 0.0326483526312207,
- 0.0326625226620652,
- 0.032677574074142,
- 0.0326931516638784,
- 0.0327088119250458,
- 0.0327240268080752,
- 0.0327381999228116,
- 0.0327506947170407,
- 0.0327608726449592,
- 0.0327681380759955,
- 0.0327719857760146,
- 0.0327720462604258,
- 0.0327681241919,
- 0.0327602252992577,
- 0.0327485680650824,
- 0.0327335776930009,
- 0.032715861592092,
- 0.0326961676769815,
- 0.0326753289345995,
- 0.0326541996230532,
- 0.0326335898006285,
- 0.0326142053615155,
- 0.032596600250062,
- 0.0325811460799073,
- 0.0325680221999948,
- 0.032557226641581,
- 0.0325486057221147,
- 0.0325418977479013,
- 0.0325367845742706,
- 0.032532943983756,
- 0.0325300960337358,
- 0.0325280376581547,
- 0.0325266616886216,
- 0.0325259587788934,
- 0.032526003110962,
- 0.0325269248834319,
- 0.0325288741651039,
- 0.0325319815831506,
- 0.0325363214684528,
- 0.0325418825589643,
- 0.0325485502821948,
- 0.0325561031431807,
- 0.0325642239812732,
- 0.03257252497832,
- 0.0325805834668517,
- 0.0325879839943121,
- 0.0325943609722577,
- 0.032599435808001,
- 0.0326030428635511,
- 0.0326051399800199,
- 0.0326058015364472,
- 0.0326051947746358,
- 0.0326035429542412,
- 0.0326010812813271,
- 0.0325980130195223,
- 0.032594473457121,
- 0.0325905084048946,
- 0.0325860717977444,
- 0.0325810440955572,
- 0.032575269950321,
- 0.0325686104880969,
- 0.0325610029889897,
- 0.0325525191125307,
- 0.0325434123674726,
- 0.0325341463546729,
- 0.0325253973201407,
- 0.0325180274717635,
- 0.0325130289562066,
- 0.0325114419477951,
- 0.0325142535877887,
- 0.0325222872142461,
- 0.0325360931891511,
- 0.0325558534658828,
- 0.0325813117064823,
- 0.0326117391841028,
- 0.0326459439135629,
- 0.0326823265766051,
- 0.0327189821080218,
- 0.0327538406769252,
- 0.0327848367577437,
- 0.0328100906731696,
- 0.0328280840903451,
- 0.0328378100853706,
- 0.0328388799713924,
- 0.0328315731670112,
- 0.0328168225737605,
- 0.0327961354145647,
- 0.032771457147,
- 0.03274499272946,
- 0.0327190042019383,
- 0.0326956056653061,
- 0.0326765762197603,
- 0.0326632086226802,
- 0.0326562070113373,
- 0.0326556417551808,
- 0.0326609640084754,
- 0.0326710772808101,
- 0.0326844585848876,
- 0.0326993175897633,
- 0.0327137788255265,
- 0.0327260695610368,
- 0.0327346948410922,
- 0.0327385817262814,
- 0.0327371773655355,
- 0.032730490231795,
- 0.0327190703266847,
- 0.0327039315919025,
- 0.032686426968618,
- 0.0326680922546801,
- 0.0326504781260913,
- 0.0326349899728365,
- 0.0326227527561004,
- 0.0326145136571348,
+ 0.0340096880658743,
+ 0.0339825820393152,
+ 0.0339848298736003,
+ 0.0340157851855399,
+ 0.0340724304148363,
+ 0.0341495081433231,
+ 0.0342398703671775,
+ 0.0343350303754144,
+ 0.0344258739048401,
+ 0.0345034643808437,
+ 0.0345598647459378,
+ 0.0345888944580912,
+ 0.0345867418531426,
+ 0.034552359375196,
+ 0.034487586482586,
+ 0.0343969759723051,
+ 0.034287340812167,
+ 0.0341670795381046,
+ 0.0340453666283684,
+ 0.0339313035796742,
+ 0.0338331183733763,
+ 0.0337574823290288,
+ 0.0337089911331313,
+ 0.0336898360659585,
+ 0.0336996746943116,
+ 0.0337356984568631,
+ 0.0337928873319698,
+ 0.0338644374992819,
+ 0.0339423433884236,
+ 0.0340181065223892,
+ 0.0340835267772121,
+ 0.0341315077615123,
+ 0.0341567841161288,
+ 0.0341564672525686,
+ 0.034130319456618,
+ 0.0340807075327795,
+ 0.034012245968177,
+ 0.0339311962576987,
+ 0.0338447250228825,
+ 0.0337601308941295,
+ 0.033684133280577,
+ 0.0336222868256454,
+ 0.0335785553680098,
+ 0.0335550561530369,
+ 0.033551971375453,
+ 0.0335676185999944,
+ 0.0335986707374863,
+ 0.0336405156724845,
+ 0.0336877411134937,
+ 0.0337347188188549,
+ 0.033776243720349,
+ 0.0338081612184255,
+ 0.0338278979010038,
+ 0.0338348073049052,
+ 0.0338302609097081,
+ 0.0338174552899047,
+ 0.0338009590366416,
+ 0.033786071085753,
+ 0.0337780907492723,
+ 0.0337816034808435,
+ 0.0337998701285619,
+ 0.0338343818680142,
+ 0.033884618029496,
+ 0.0339480242629436,
+ 0.0340202129362811,
+ 0.0340953724040331,
+ 0.0341668535052106,
+ 0.0342278801904304,
+ 0.0342723099577102,
+ 0.0342953543501327,
+ 0.0342941656808797,
+ 0.0342682072298503,
+ 0.0342193513535319,
+ 0.0341516901922054,
+ 0.0340710890786835,
+ 0.0339845519790088,
+ 0.0338994907177709,
+ 0.0338229907697978,
+ 0.0337611498974135,
+ 0.033718541697195,
+ 0.0336978342970708,
+ 0.0336995804765624,
+ 0.0337221887810325,
+ 0.0337620811421438,
+ 0.0338140358116027,
+ 0.03387170171188,
+ 0.0339282511783407,
+ 0.0339771148057618,
+ 0.0340127192713469,
+ 0.034031133075424,
+ 0.0340305236769344,
+ 0.0340113485773826,
+ 0.0339762430542312,
+ 0.0339296204862267,
+ 0.0338770525848932,
+ 0.0338245309324931,
+ 0.0337777197944195,
+ 0.0337412955837993,
+ 0.0337184407049311,
+ 0.03371053019075,
+ 0.033717025817944,
+ 0.0337355755776265,
+ 0.0337623037191558,
+ 0.033792264404692,
+ 0.0338200184156495,
+ 0.0338402782059439,
+ 0.0338485549223082,
+ 0.0338417355349268,
+ 0.0338185219073666,
+ 0.0337796776594349,
+ 0.0337280518805058,
+ 0.0336683775602449,
+ 0.0336068716025574,
+ 0.0335506866158404,
+ 0.0335072779451704,
+ 0.0334837513065295,
+ 0.0334862489603391,
+ 0.0335194199271108,
+ 0.0335860069037053,
+ 0.0336865724516487,
+ 0.0338193805903131,
+ 0.0339804458868419,
+ 0.0341637578951582,
+ 0.034361681525324,
+ 0.0345655216911705,
+ 0.0347662232685804,
+ 0.0349551570926305,
+ 0.0351249234546311,
+ 0.0352700913658205,
+ 0.0353877894430125,
+ 0.0354780755319346,
+ 0.0355440368495389,
+ 0.0355916064301381,
+ 0.0356291178158403,
+ 0.035666650087111,
+ 0.0357152332146282,
+ 0.0357859871461353,
+ 0.0358892594872094,
+ 0.0360338120427249,
+ 0.0362260930337487,
+ 0.0364696253298549,
+ 0.0367645437237378,
+ 0.0371073230705426,
+ 0.0374907456110494,
+ 0.037904148646256,
+ 0.0383339641280863,
+ 0.038764510451687,
+ 0.0391789385373404,
+ 0.0395601951477525,
+ 0.0398918727304601,
+ 0.0401588791666368,
+ 0.040347967969535,
+ 0.0404482725618394,
+ 0.040452017641072,
+ 0.0403554796367954,
+ 0.0401600482129714,
+ 0.0398730141503842,
+ 0.0395076419726774,
+ 0.0390822702066516,
+ 0.0386185353370577,
+ 0.0381391291465136,
+ 0.0376656071472789,
+ 0.0372166589825955,
+ 0.036807041062638,
+ 0.0364471759261387,
+ 0.0361432987809871,
+ 0.0358979787609245,
+ 0.0357108371150595,
+ 0.0355793054100671,
+ 0.0354993015520113,
+ 0.0354657439660759,
+ 0.0354728705141005,
+ 0.0355143743898741,
+ 0.0355834096120071,
+ 0.0356725487657081,
+ 0.0357737892894161,
+ 0.0358786949202361,
+ 0.035978721121131,
+ 0.0360657110061835,
+ 0.0361324786297419,
+ 0.0361733477985397,
+ 0.036184513092221,
+ 0.0361641423209476,
+ 0.036112224946232,
+ 0.0360302493811795,
+ 0.0359208282832213,
+ 0.0357873736967755,
+ 0.0356338693803412,
+ 0.0354647269400626,
+ 0.0352846734949564,
+ 0.0350986139456819,
+ 0.0349114351321713,
+ 0.0347277555978359,
+ 0.0345516555285674,
+ 0.0343864357432115,
+ 0.0342344508079842,
+ 0.0340970447465149,
+ 0.0339745960910147,
+ 0.0338666586693147,
+ 0.0337721695734315,
+ 0.0336896880516131,
+ 0.0336176289272241,
+ 0.0335544606614036,
+ 0.0334988492150147,
+ 0.0334497413426604,
+ 0.0334063916372368,
+ 0.0333683442986183,
+ 0.0333353827835576,
+ 0.0333074594753354,
+ 0.0332846153140977,
+ 0.0332668975296605,
+ 0.0332542826694217,
+ 0.0332466115142999,
+ 0.0332435415020829,
+ 0.0332445206593564,
+ 0.0332487851232298,
+ 0.0332553806980805,
+ 0.0332632078107407,
+ 0.0332710883441682,
+ 0.0332778513408674,
+ 0.0332824318139404,
+ 0.0332839730247063,
+ 0.0332819187931335,
+ 0.0332760805984512,
+ 0.0332666660346171,
+ 0.0332542609585433,
+ 0.0332397660312213,
+ 0.0332242966911109,
+ 0.0332090612745992,
+ 0.0331952335747951,
+ 0.0331838339398969,
+ 0.0331756287917081,
+ 0.0331710543333026,
+ 0.033170167707841,
+ 0.0331726282281587,
+ 0.0331777116041595,
+ 0.0331843598516531,
+ 0.0331912674765488,
+ 0.0331970001521551,
+ 0.0332001361290021,
+ 0.0331994146644745,
+ 0.0331938718652813,
+ 0.0331829442162015,
+ 0.0331665244566833,
+ 0.0331449627045299,
+ 0.0331190158072741,
+ 0.0330897570451746,
+ 0.0330584639382375,
+ 0.0330265026654278,
+ 0.032995223899336,
+ 0.032965878641225,
+ 0.0329395564639612,
+ 0.0329171444549774,
+ 0.0328993038118672,
+ 0.0328864618052168,
+ 0.0328788181847829,
+ 0.0328763655852763,
+ 0.0328789223516394,
+ 0.0328861737573891,
+ 0.0328977149765886,
+ 0.0329130877937861,
+ 0.0329318038929577,
+ 0.0329533507759887,
+ 0.0329771810884046,
+ 0.0330026909100763,
+ 0.0330291958800039,
+ 0.0330559148648653,
+ 0.0330819691176033,
+ 0.0331064012313502,
+ 0.0331282139184895,
+ 0.0331464249684519,
+ 0.0331601324167954,
+ 0.0331685830617046,
+ 0.0331712375155888,
+ 0.0331678253501199,
+ 0.0331583842270358,
+ 0.0331432773355155,
+ 0.0331231844810513,
+ 0.0330990642929777,
+ 0.033072088346843,
+ 0.0330435520638867,
+ 0.0330147711353601,
+ 0.0329869749201082,
+ 0.0329612090790241,
+ 0.032938258472123,
+ 0.0329185984131772,
+ 0.0329023784537977,
+ 0.0328894387483607,
+ 0.0328793554107733,
+ 0.03287150855057,
+ 0.0328651650253882,
+ 0.0328595672835842,
+ 0.0328540197665318,
+ 0.0328479649611369,
+ 0.032841042215003,
+ 0.0328331238714847,
+ 0.0328243252480738,
+ 0.0328149875014819,
+ 0.0328056353353492,
+ 0.0327969144322703,
+ 0.0327895159361892,
+ 0.0327840968410754,
+ 0.0327812055273219,
+ 0.0327812209321077,
+ 0.032784312109297,
+ 0.0327904224556661,
+ 0.0327992798980313,
+ 0.0328104311375365,
+ 0.0328232950088688,
+ 0.0328372275975462,
+ 0.0328515904309159,
+ 0.0328658131271145,
+ 0.0328794433581581,
+ 0.0328921795078686,
+ 0.0329038843594782,
+ 0.0329145808380163,
+ 0.0329244327233987,
+ 0.0329337141214608,
+ 0.0329427714601945,
+ 0.0329519812606222,
+ 0.032961706414049,
+ 0.0329722535845316,
+ 0.0329838347748768,
+ 0.0329965368036798,
+ 0.0330103028928976,
+ 0.0330249301428297,
+ 0.0330400849968958,
+ 0.0330553359732826,
+ 0.0330701995846663,
+ 0.0330841924341411,
+ 0.0330968809113037,
+ 0.0331079203012691,
+ 0.033117077452867,
+ 0.033124234808754,
+ 0.0331293775433865,
+ 0.0331325686783536,
+ 0.0331339185438932,
+ 0.0331335545976458,
+ 0.0331315958021585,
+ 0.03312813337797,
+ 0.0331232177836584,
+ 0.0331168509391674,
+ 0.0331089831464718,
+ 0.0330995154071662,
+ 0.0330883090393876,
+ 0.0330752048020001,
+ 0.0330600526523703,
+ 0.0330427508777954,
+ 0.0330232902852075,
+ 0.0330017963796486,
+ 0.0329785609928268,
+ 0.0329540553121052,
+ 0.0329289188418004,
+ 0.0329039230206686,
+ 0.0328799130342012,
+ 0.0328577355839191,
+ 0.0328381629461827,
+ 0.0328218240044477,
+ 0.03280915117209,
+ 0.0328003489246895,
+ 0.0327953860108276,
+ 0.0327940102141593,
+ 0.032795782342758,
+ 0.0328001250088002,
+ 0.0328063814374765,
+ 0.0328138795397803,
+ 0.0328219963917591,
+ 0.0328302179219853,
+ 0.0328381881789817,
+ 0.0328457424446988,
+ 0.0328529191559043,
+ 0.0328599473912299,
+ 0.0328672095146815,
+ 0.0328751819845224,
+ 0.0328843606466063,
+ 0.0328951793548009,
+ 0.0329079320599367,
+ 0.0329227084797722,
+ 0.0329393522688911,
+ 0.0329574485150585,
+ 0.032976344613913,
+ 0.0329952052311355,
+ 0.0330130982303537,
+ 0.0330291043128124,
+ 0.0330424390985487,
+ 0.0330525731487777,
+ 0.0330593337851934,
+ 0.033062973192094,
+ 0.0330641904946002,
+ 0.0330641010194955,
+ 0.0330641529077931,
+ 0.033065998407665,
+ 0.0330713332184428,
+ 0.0330817211611392,
+ 0.0330984227468919,
+ 0.0331222450474762,
+ 0.0331534272765369,
+ 0.0331915725297938,
+ 0.033235631995116,
+ 0.0332839441037108,
+ 0.0333343276092554,
+ 0.0333842241643998,
+ 0.0334308822061479,
+ 0.0334715696479865,
+ 0.0335037982642545,
+ 0.033525538585023,
+ 0.0335354018825747,
+ 0.0335327667402648,
+ 0.0335178325506482,
+ 0.0334915909087233,
+ 0.0334557169313506,
+ 0.0334123938803167,
+ 0.0333640937224046,
+ 0.0333133415819778,
+ 0.0332624926388995,
+ 0.0332135462649048,
+ 0.0331680153093952,
+ 0.0331268600332847,
+ 0.0330904877166773,
+ 0.0330588114941292,
+ 0.0330313561000947,
+ 0.0330073941854268,
+ 0.0329860947524559,
+ 0.0329666650448864,
+ 0.032948468892027,
+ 0.0329311079631021,
+ 0.0329144574170019,
+ 0.0328986535912904,
+ 0.0328840379517952,
+ 0.0328710676040235,
+ 0.032860207294372,
+ 0.0328518202412217,
+ 0.0328460749686461,
+ 0.0328428826821556,
+ 0.0328418751486472,
+ 0.0328424272789969,
+ 0.0328437224664964,
+ 0.0328448529332094,
+ 0.0328449424820764,
+ 0.0328432756388722,
+ 0.0328394155960329,
+ 0.0328332939279719,
+ 0.0328252578381265,
+ 0.0328160655490258,
+ 0.0328068268502685,
+ 0.0327988929541056,
+ 0.0327937066650533,
+ 0.0327926294450093,
+ 0.0327967654557874,
+ 0.032806803645336,
+ 0.0328228973631744,
+ 0.0328445971302517,
+ 0.0328708465565379,
+ 0.0329000446152628,
+ 0.0329301702075752,
+ 0.0329589578684467,
+ 0.0329841072814372,
+ 0.0330035047043629,
+ 0.0330154321258315,
+ 0.0330187404741748,
+ 0.0330129666764821,
+ 0.0329983805798643,
+ 0.0329759559909739,
+ 0.0329472692540732,
+ 0.0329143375511239,
+ 0.0328794161944654,
+ 0.0328447786223403,
+ 0.0328125041032656,
+ 0.0327842963292832,
+ 0.0327613515869003,
+ 0.0327442887702562,
+ 0.0327331459885418,
+ 0.0327274407634116,
+ 0.0327262836107547,
+ 0.032728528899709,
+ 0.0327329429491333,
+ 0.0327383678767855,
+ 0.0327438610045761,
+ 0.0327487934988161,
+ 0.0327528978135026,
+ 0.0327562604978784,
+ 0.0327592639868801,
+ 0.0327624871822293,
+ 0.0327665792973842,
+ 0.0327721242473965,
+ 0.0327795137321367,
+ 0.032788846141417,
+ 0.0327998656051207,
+ 0.0328119510588688,
+ 0.0328241593301584,
+ 0.03283531940003,
+ 0.0328441678621415,
+ 0.0328495091607805,
+ 0.0328503795714698,
+ 0.0328461921327892,
+ 0.0328368414819517,
+ 0.0328227527522196,
+ 0.0328048665444353,
+ 0.0327845610464919,
+ 0.0327635209478055,
+ 0.0327435694010262,
+ 0.0327264830391621,
+ 0.0327138108289474,
+ 0.0327067158185912,
+ 0.0327058554183787,
+ 0.0327113115020891,
+ 0.0327225768415854,
+ 0.0327385993916264,
+ 0.0327578807662483,
+ 0.0327786199846679,
+ 0.0327988885537322,
+ 0.0328168188451293,
+ 0.0328307853609009,
+ 0.0328395586228896,
+ 0.0328424144365871,
+ 0.0328391869096469,
+ 0.0328302609549811,
+ 0.0328165077609553,
+ 0.0327991734991565,
+ 0.0327797363189741,
+ 0.0327597489607115,
+ 0.0327406842012872,
+ 0.0327237983445806,
+ 0.0327100247606093,
+ 0.0326999056687322,
+ 0.0326935663500007,
+ 0.0326907319638691,
+ 0.0326907832443082,
+ 0.0326928437206622,
+ 0.0326958880535794,
+ 0.032698859031268,
+ 0.0327007801775965,
+ 0.032700852040548,
+ 0.032698522974889,
+ 0.0326935291369078,
+ 0.032685902719412,
+ 0.032675951355323,
+ 0.0326642144664834,
+ 0.0326514038251353,
+ 0.0326383357881982,
+ 0.032625861887586,
+ 0.0326148031504939,
+ 0.0326058920735451,
+ 0.0325997248390401,
+ 0.0325967252441599,
+ 0.0325971209187534,
+ 0.0326009317065105,
+ 0.0326079695729359,
+ 0.0326178491055311,
+ 0.0326300076070597,
+ 0.0326437339172447,
+ 0.0326582053117,
+ 0.0326725319279507,
+ 0.0326858079551281,
+ 0.0326971681685411,
+ 0.0327058473122421,
+ 0.0327112385260035,
+ 0.0327129458135676,
+ 0.0327108248458509,
+ 0.032705006512131,
+ 0.0326958987296758,
+ 0.0326841640233885,
+ 0.0326706729991163,
+ 0.0326564366276659,
+ 0.0326425227856031,
+ 0.0326299644138028,
+ 0.0326196677666315,
+ 0.0326123295001037,
+ 0.0326083708526553,
+ 0.0326078959974416,
+ 0.0326106798535253,
+ 0.0326161882655075,
+ 0.032623630537719,
+ 0.0326320409604152,
+ 0.0326403824546667,
+ 0.0326476622184107,
+ 0.0326530468303181,
+ 0.0326559632251979,
+ 0.0326561727142663,
+ 0.0326538079082204,
+ 0.0326493667458662,
+ 0.0326436632051766,
+ 0.0326377398153661,
+ 0.0326327519139537,
+ 0.0326298370028329,
+ 0.0326299841691594,
+ 0.0326339183078607,
+ 0.032642012033775,
+ 0.0326542350660329,
+ 0.0326701468961974,
+ 0.0326889340733502,
+ 0.0327094887787201,
+ 0.0327305208555231,
+ 0.0327506915010337,
+ 0.0327687538857001,
+ 0.0327836845325215,
+ 0.0327947897781852,
+ 0.0328017742268612,
+ 0.0328047626286183,
+ 0.0328042725069617,
+ 0.0328011412480847,
+ 0.0327964172394754,
+ 0.0327912290970373,
+ 0.0327866494355596,
+ 0.0327835698035158,
+ 0.0327826014866724,
+ 0.0327840133203829,
+ 0.0327877129971055,
+ 0.0327932731795565,
+ 0.0327999985459293,
+ 0.0328070251652225,
+ 0.0328134397656268,
+ 0.0328184039413676,
+ 0.032821267522064,
+ 0.0328216564561522,
+ 0.0328195236580244,
+ 0.0328151560464475,
+ 0.0328091368453652,
+ 0.0328022682744902,
+ 0.0327954651014113,
+ 0.0327896333612644,
+ 0.0327855503647446,
+ 0.0327837617645165,
+ 0.0327845091240826,
+ 0.0327876975561421,
+ 0.0327929081027424,
+ 0.0327994541622591,
+ 0.032806475942752,
+ 0.0328130621285811,
+ 0.0328183841783011,
+ 0.032821826416539,
+ 0.0328230947721668,
+ 0.0328222889099233,
+ 0.0328199265625529,
+ 0.0328169146700413,
+ 0.0328144686792992,
+ 0.0328139880320395,
+ 0.0328169014501376,
+ 0.0328244993276206,
+ 0.0328377719574653,
+ 0.0328572714807498,
+ 0.0328830126997334,
+ 0.0329144237758847,
+ 0.0329503528895444,
+ 0.0329891316378686,
+ 0.0330286906516148,
+ 0.0330667179129652,
+ 0.0331008458610315,
+ 0.0331288499602088,
+ 0.0331488394460972,
+ 0.0331594209311009,
+ 0.0331598177828139,
+ 0.0331499327004064,
+ 0.0331303472820388,
+ 0.0331022597358753,
+ 0.0330673690902288,
+ 0.0330277201418686,
+ 0.0329855270519917,
+ 0.0329429945382847,
+ 0.0329021541296094,
+ 0.0328647294968839,
+ 0.0328320402461058,
+ 0.032804948584496,
+ 0.0327838486315395,
+ 0.0327686942889341,
+ 0.0327590587095796,
+ 0.0327542165374165,
+ 0.0327532391582084,
+ 0.0327550931248625,
+ 0.0327587326403744,
+ 0.0327631784440706,
+ 0.0327675775590751,
+ 0.0327712409398356,
+ 0.0327736588251258,
+ 0.0327744962000769,
+ 0.032773572841676,
+ 0.0327708336797021,
+ 0.0327663154998407,
+ 0.0327601153667638,
+ 0.0327523647374217,
+ 0.0327432113846492,
+ 0.0327328093445828,
+ 0.0327213155156537,
+ 0.0327088905600196,
+ 0.0326957015207673,
+ 0.0326819240147353,
+ 0.0326677427674141,
+ 0.0326533502987993,
+ 0.0326389444182234,
+ 0.0326247256058201,
+ 0.0326108952712944,
+ 0.032597655382665,
+ 0.0325852092738736,
+ 0.0325737628385902,
+ 0.0325635250116867,
+ 0.0325547065138355,
+ 0.0325475162217149,
+ 0.032542155046158,
+ 0.0325388076420224,
+ 0.0325376324870958,
+ 0.0325387508289874,
+ 0.0325422348197002,
+ 0.0325480950320904,
+ 0.0325562676687455,
+ 0.0325666022208385,
+ 0.0325788510440699,
+ 0.0325926630678073,
+ 0.0326075843295003,
+ 0.0326230679321033,
+ 0.0326384951876491,
+ 0.0326532081705519,
+ 0.0326665519169673,
+ 0.0326779224959945,
+ 0.0326868156222805,
+ 0.0326928697702184,
+ 0.0326958980787891,
+ 0.0326959046423994,
+ 0.0326930827862213,
+ 0.0326877952251255,
+ 0.0326805382091477,
+ 0.0326718935721341,
+ 0.0326624738664463,
+ 0.0326528664401451,
+ 0.0326435824053913,
+ 0.0326350159799792,
+ 0.0326274186748725,
+ 0.0326208912818059,
+ 0.0326153946733297,
+ 0.0326107782352479,
+ 0.0326068225684304,
+ 0.0326032912360819,
+ 0.0325999850928461,
+ 0.0325967923257265,
+ 0.0325937278312531,
+ 0.0325909568581587,
+ 0.032588799739349,
+ 0.0325877167348816,
+ 0.0325882742233461,
+ 0.0325910954753216,
+ 0.0325968008471321,
+ 0.032605943328811,
+ 0.0326189458912232,
+ 0.0326360469618604,
+ 0.0326572596177226,
+ 0.0326823487730803,
+ 0.032710828880604,
+ 0.0327419826357806,
+ 0.032774899094347,
+ 0.0328085277070154,
+ 0.0328417432479291,
+ 0.0328734156204861,
+ 0.032902478163975,
+ 0.0329279883943177,
+ 0.032949176070567,
+ 0.0329654750043726,
+ 0.03297653697432,
+ 0.0329822282467891,
+ 0.0329826112468778,
+ 0.0329779155388275,
+ 0.0329685031707705,
+ 0.0329548334366354,
+ 0.0329374312202965,
+ 0.0329168615336368,
+ 0.0328937110260124,
+ 0.0328685755723788,
+ 0.0328420519205279,
+ 0.0328147309993261,
+ 0.0327871908399863,
+ 0.032759987919989,
+ 0.0327336467671939,
+ 0.0327086485269639,
+ 0.0326854196773698,
+ 0.0326643221291367,
+ 0.0326456456836096,
+ 0.0326296034490933,
+ 0.0326163305220749,
+ 0.0326058861072371,
+ 0.0325982592191988,
+ 0.0325933780204153,
+ 0.0325911225396636,
+ 0.0325913399220229,
+ 0.0325938605847268,
+ 0.0325985129412973,
+ 0.0326051340134197,
+ 0.0326135735125368,
+ 0.0326236899043811,
+ 0.0326353384204055,
+ 0.0326483526312207,
+ 0.0326625226620652,
+ 0.032677574074142,
+ 0.0326931516638784,
+ 0.0327088119250458,
+ 0.0327240268080752,
+ 0.0327381999228116,
+ 0.0327506947170407,
+ 0.0327608726449592,
+ 0.0327681380759955,
+ 0.0327719857760146,
+ 0.0327720462604258,
+ 0.0327681241919,
+ 0.0327602252992577,
+ 0.0327485680650824,
+ 0.0327335776930009,
+ 0.032715861592092,
+ 0.0326961676769815,
+ 0.0326753289345995,
+ 0.0326541996230532,
+ 0.0326335898006285,
+ 0.0326142053615155,
+ 0.032596600250062,
+ 0.0325811460799073,
+ 0.0325680221999948,
+ 0.032557226641581,
+ 0.0325486057221147,
+ 0.0325418977479013,
+ 0.0325367845742706,
+ 0.032532943983756,
+ 0.0325300960337358,
+ 0.0325280376581547,
+ 0.0325266616886216,
+ 0.0325259587788934,
+ 0.032526003110962,
+ 0.0325269248834319,
+ 0.0325288741651039,
+ 0.0325319815831506,
+ 0.0325363214684528,
+ 0.0325418825589643,
+ 0.0325485502821948,
+ 0.0325561031431807,
+ 0.0325642239812732,
+ 0.03257252497832,
+ 0.0325805834668517,
+ 0.0325879839943121,
+ 0.0325943609722577,
+ 0.032599435808001,
+ 0.0326030428635511,
+ 0.0326051399800199,
+ 0.0326058015364472,
+ 0.0326051947746358,
+ 0.0326035429542412,
+ 0.0326010812813271,
+ 0.0325980130195223,
+ 0.032594473457121,
+ 0.0325905084048946,
+ 0.0325860717977444,
+ 0.0325810440955572,
+ 0.032575269950321,
+ 0.0325686104880969,
+ 0.0325610029889897,
+ 0.0325525191125307,
+ 0.0325434123674726,
+ 0.0325341463546729,
+ 0.0325253973201407,
+ 0.0325180274717635,
+ 0.0325130289562066,
+ 0.0325114419477951,
+ 0.0325142535877887,
+ 0.0325222872142461,
+ 0.0325360931891511,
+ 0.0325558534658828,
+ 0.0325813117064823,
+ 0.0326117391841028,
+ 0.0326459439135629,
+ 0.0326823265766051,
+ 0.0327189821080218,
+ 0.0327538406769252,
+ 0.0327848367577437,
+ 0.0328100906731696,
+ 0.0328280840903451,
+ 0.0328378100853706,
+ 0.0328388799713924,
+ 0.0328315731670112,
+ 0.0328168225737605,
+ 0.0327961354145647,
+ 0.032771457147,
+ 0.03274499272946,
+ 0.0327190042019383,
+ 0.0326956056653061,
+ 0.0326765762197603,
+ 0.0326632086226802,
+ 0.0326562070113373,
+ 0.0326556417551808,
+ 0.0326609640084754,
+ 0.0326710772808101,
+ 0.0326844585848876,
+ 0.0326993175897633,
+ 0.0327137788255265,
+ 0.0327260695610368,
+ 0.0327346948410922,
+ 0.0327385817262814,
+ 0.0327371773655355,
+ 0.032730490231795,
+ 0.0327190703266847,
+ 0.0327039315919025,
+ 0.032686426968618,
+ 0.0326680922546801,
+ 0.0326504781260913,
+ 0.0326349899728365,
+ 0.0326227527561004,
+ 0.0326145136571348,
0.0326105898459276
- ],
- "fill": "none",
+ ],
+ "fill": "none",
"line": {
- "color": "#d62728",
- "dash": "solid",
+ "color": "#d62728",
+ "dash": "solid",
"shape": "linear"
- },
- "mode": "lines",
- "name": "(15 BPM, 17 BPM)",
- "opacity": 1,
- "showlegend": true,
- "type": "scatter",
- "uid": "353443",
- "visible": true,
- "xaxis": "x",
+ },
+ "mode": "lines",
+ "name": "(15 BPM, 17 BPM)",
+ "opacity": 1,
+ "showlegend": true,
+ "type": "scatter",
+ "visible": true,
+ "xaxis": "x",
"yaxis": "y"
}
- ],
+ ],
"layout": {
"annotations": [
{
- "x": 0.5175,
- "y": 0.935,
- "align": "center",
- "bgcolor": "rgba(0, 0, 0, 0)",
- "bordercolor": "rgba(0, 0, 0, 0)",
- "borderpad": 1,
- "borderwidth": 1,
+ "x": 0.5175,
+ "y": 0.935,
+ "align": "center",
+ "bgcolor": "rgba(0, 0, 0, 0)",
+ "bordercolor": "rgba(0, 0, 0, 0)",
+ "borderpad": 1,
+ "borderwidth": 1,
"font": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 12
- },
- "opacity": 1,
- "showarrow": false,
- "text": "",
- "textangle": 0,
- "xanchor": "center",
- "xref": "paper",
- "yanchor": "bottom",
+ },
+ "opacity": 1,
+ "showarrow": false,
+ "text": "",
+ "textangle": 0,
+ "xanchor": "center",
+ "xref": "paper",
+ "yanchor": "bottom",
"yref": "paper"
}
- ],
- "dragmode": "zoom",
+ ],
+ "dragmode": "zoom",
"font": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 12
- },
- "height": 630,
- "hidesources": false,
- "hovermode": "x",
+ },
+ "height": 630,
+ "hidesources": false,
+ "hovermode": "x",
"legend": {
- "x": 0.5392124763053593,
- "y": 0.5492063492063494,
- "bgcolor": "#fff",
- "bordercolor": "#444",
- "borderwidth": 1,
+ "x": 0.5392124763053593,
+ "y": 0.5492063492063494,
+ "bgcolor": "#fff",
+ "bordercolor": "#444",
+ "borderwidth": 1,
"font": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 28
- },
- "traceorder": "normal",
- "xanchor": "left",
+ },
+ "traceorder": "normal",
+ "xanchor": "left",
"yanchor": "bottom"
- },
+ },
"margin": {
- "r": 0,
- "t": 0,
- "b": 0,
- "l": 0,
+ "r": 0,
+ "t": 0,
+ "b": 0,
+ "l": 0,
"pad": 0
- },
- "paper_bgcolor": "#fff",
- "plot_bgcolor": "#fff",
- "separators": ".,",
- "showlegend": true,
- "title": "",
+ },
+ "paper_bgcolor": "#fff",
+ "plot_bgcolor": "#fff",
+ "separators": ".,",
+ "showlegend": true,
+ "title": "",
"titlefont": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 17
- },
- "width": 840,
+ },
+ "width": 840,
"xaxis": {
- "anchor": "y",
- "autorange": false,
+ "anchor": "y",
+ "autorange": false,
"domain": [
- 0.13,
+ 0.13,
0.905
- ],
- "dtick": 5,
- "exponentformat": "B",
- "gridcolor": "#eee",
- "gridwidth": 2,
+ ],
+ "dtick": 5,
+ "exponentformat": "B",
+ "gridcolor": "#eee",
+ "gridwidth": 2,
"range": [
- 6,
+ 6,
30
- ],
- "rangemode": "normal",
- "showexponent": "all",
- "showgrid": true,
- "showline": false,
- "showticklabels": true,
- "side": "bottom",
- "tick0": 0,
- "tickangle": "auto",
+ ],
+ "rangemode": "normal",
+ "showexponent": "all",
+ "showgrid": true,
+ "showline": false,
+ "showticklabels": true,
+ "side": "bottom",
+ "tick0": 0,
+ "tickangle": "auto",
"tickfont": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 14
- },
- "tickmode": "linear",
- "ticks": "",
- "title": "Breathing Rate (BPM)",
+ },
+ "tickmode": "linear",
+ "ticks": "",
+ "title": "Breathing Rate (BPM)",
"titlefont": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 14
- },
- "type": "linear",
- "zeroline": true,
- "zerolinecolor": "#444",
+ },
+ "type": "linear",
+ "zeroline": true,
+ "zerolinecolor": "#444",
"zerolinewidth": 1
- },
+ },
"yaxis": {
- "anchor": "x",
- "autorange": true,
+ "anchor": "x",
+ "autorange": true,
"domain": [
- 0.11,
+ 0.11,
0.925
- ],
- "exponentformat": "B",
- "gridcolor": "#eee",
- "gridwidth": 2,
- "nticks": 0,
+ ],
+ "exponentformat": "B",
+ "gridcolor": "#eee",
+ "gridwidth": 2,
+ "nticks": 0,
"range": [
- 0.031941132723683784,
+ 0.031941132723683784,
0.04334731720591012
- ],
- "rangemode": "normal",
- "showexponent": "all",
- "showgrid": true,
- "showline": false,
- "showticklabels": true,
- "side": "left",
- "tickangle": "auto",
+ ],
+ "rangemode": "normal",
+ "showexponent": "all",
+ "showgrid": true,
+ "showline": false,
+ "showticklabels": true,
+ "side": "left",
+ "tickangle": "auto",
"tickfont": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 14
- },
- "tickmode": "auto",
- "ticks": "",
- "title": "Normalized Amplitude",
+ },
+ "tickmode": "auto",
+ "ticks": "",
+ "title": "Normalized Amplitude",
"titlefont": {
- "color": "#444",
- "family": "\"Open Sans\", verdana, arial, sans-serif",
+ "color": "#444",
+ "family": "\"Open Sans\", verdana, arial, sans-serif",
"size": 14
- },
- "type": "linear",
- "zeroline": true,
- "zerolinecolor": "#444",
+ },
+ "type": "linear",
+ "zeroline": true,
+ "zerolinecolor": "#444",
"zerolinewidth": 1
}
}
diff --git a/test/image/mocks/tick_attributes.json b/test/image/mocks/tick_attributes.json
index 2ef429043ae..9720c2a6546 100644
--- a/test/image/mocks/tick_attributes.json
+++ b/test/image/mocks/tick_attributes.json
@@ -10,8 +10,7 @@
1,
2,
3
- ],
- "uid": "02de62"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/titles-avoid-labels.json b/test/image/mocks/titles-avoid-labels.json
index 784a8ca67a9..9a811ee7940 100644
--- a/test/image/mocks/titles-avoid-labels.json
+++ b/test/image/mocks/titles-avoid-labels.json
@@ -19,7 +19,6 @@
3
]
],
- "uid": "085621",
"name": "trace 0",
"colorbar": {
"title": "colorbar title",
diff --git a/test/image/mocks/ultra_zoom.json b/test/image/mocks/ultra_zoom.json
index f3acf46e4aa..e71b81683c0 100644
--- a/test/image/mocks/ultra_zoom.json
+++ b/test/image/mocks/ultra_zoom.json
@@ -8,8 +8,7 @@
"y": [
0.0001,
10000
- ],
- "uid": "1376de"
+ ]
}
],
"layout": {
diff --git a/test/image/mocks/violins.json b/test/image/mocks/violins.json
index d5e3eb95689..7f2feda83f5 100644
--- a/test/image/mocks/violins.json
+++ b/test/image/mocks/violins.json
@@ -538,12 +538,9 @@
"(pdf(y), y)=(0.12, 2.05)",
"(pdf(y), y)=(0.12, 2.09)"
],
- "textsrc": "chelsea_lyn:13597:c50a88",
"type": "scatter",
"xaxis": "x1",
- "xsrc": "chelsea_lyn:13597:783289",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:75effa"
+ "yaxis": "y1"
},
{
"x": [
@@ -562,9 +559,7 @@
"name": "",
"type": "scatter",
"xaxis": "x1",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:757147"
+ "yaxis": "y1"
},
{
"x": [
@@ -585,12 +580,9 @@
"lower-quartile: -1.18",
"upper-quartile: 1.06"
],
- "textsrc": "chelsea_lyn:13597:d4f68a",
"type": "scatter",
"xaxis": "x1",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:6d297f"
+ "yaxis": "y1"
},
{
"x": [
@@ -608,12 +600,9 @@
"text": [
"median: -0.59"
],
- "textsrc": "chelsea_lyn:13597:ab8ead",
"type": "scatter",
"xaxis": "x1",
- "xsrc": "chelsea_lyn:13597:c2cc3e",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:f652c0"
+ "yaxis": "y1"
},
{
"x": [
@@ -648,9 +637,7 @@
"showlegend": false,
"type": "scatter",
"xaxis": "x1",
- "xsrc": "chelsea_lyn:13597:41cf2b",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:1cb5f1"
+ "yaxis": "y1"
},
{
"x": [
@@ -970,12 +957,9 @@
"(pdf(y), y)=(-0.18, 1.37)",
"(pdf(y), y)=(-0.17, 1.41)"
],
- "textsrc": "chelsea_lyn:13597:85c963",
"type": "scatter",
"xaxis": "x2",
- "xsrc": "chelsea_lyn:13597:8b1a21",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:22ff2a"
+ "yaxis": "y1"
},
{
"x": [
@@ -1295,12 +1279,9 @@
"(pdf(y), y)=(0.18, 1.37)",
"(pdf(y), y)=(0.17, 1.41)"
],
- "textsrc": "chelsea_lyn:13597:5602cd",
"type": "scatter",
"xaxis": "x2",
- "xsrc": "chelsea_lyn:13597:3c2c15",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:22ff2a"
+ "yaxis": "y1"
},
{
"x": [
@@ -1319,9 +1300,7 @@
"name": "",
"type": "scatter",
"xaxis": "x2",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:551288"
+ "yaxis": "y1"
},
{
"x": [
@@ -1342,12 +1321,9 @@
"lower-quartile: -2.92",
"upper-quartile: 1.41"
],
- "textsrc": "chelsea_lyn:13597:ee9c71",
"type": "scatter",
"xaxis": "x2",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:551288"
+ "yaxis": "y1"
},
{
"x": [
@@ -1365,12 +1341,9 @@
"text": [
"median: 0.30"
],
- "textsrc": "chelsea_lyn:13597:818917",
"type": "scatter",
"xaxis": "x2",
- "xsrc": "chelsea_lyn:13597:c2cc3e",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:fcb796"
+ "yaxis": "y1"
},
{
"x": [
@@ -1395,9 +1368,7 @@
"showlegend": false,
"type": "scatter",
"xaxis": "x2",
- "xsrc": "chelsea_lyn:13597:c80db0",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:8edb0a"
+ "yaxis": "y1"
},
{
"x": [
@@ -1717,12 +1688,9 @@
"(pdf(y), y)=(-0.29, 0.85)",
"(pdf(y), y)=(-0.28, 0.88)"
],
- "textsrc": "chelsea_lyn:13597:77d5f8",
"type": "scatter",
"xaxis": "x3",
- "xsrc": "chelsea_lyn:13597:1188e4",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:d66e1a"
+ "yaxis": "y1"
},
{
"x": [
@@ -2042,12 +2010,9 @@
"(pdf(y), y)=(0.29, 0.85)",
"(pdf(y), y)=(0.28, 0.88)"
],
- "textsrc": "chelsea_lyn:13597:b51028",
"type": "scatter",
"xaxis": "x3",
- "xsrc": "chelsea_lyn:13597:87c7a6",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:d66e1a"
+ "yaxis": "y1"
},
{
"x": [
@@ -2066,9 +2031,7 @@
"name": "",
"type": "scatter",
"xaxis": "x3",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:5eae65"
+ "yaxis": "y1"
},
{
"x": [
@@ -2089,12 +2052,9 @@
"lower-quartile: -1.22",
"upper-quartile: 0.79"
],
- "textsrc": "chelsea_lyn:13597:ee780d",
"type": "scatter",
"xaxis": "x3",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:436608"
+ "yaxis": "y1"
},
{
"x": [
@@ -2112,12 +2072,9 @@
"text": [
"median: -0.01"
],
- "textsrc": "chelsea_lyn:13597:fb1115",
"type": "scatter",
"xaxis": "x3",
- "xsrc": "chelsea_lyn:13597:c2cc3e",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:b87de2"
+ "yaxis": "y1"
},
{
"x": [
@@ -2146,9 +2103,7 @@
"showlegend": false,
"type": "scatter",
"xaxis": "x3",
- "xsrc": "chelsea_lyn:13597:6958d7",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:f5bc3a"
+ "yaxis": "y1"
},
{
"x": [
@@ -2468,12 +2423,9 @@
"(pdf(y), y)=(-0.27, 1.03)",
"(pdf(y), y)=(-0.27, 1.06)"
],
- "textsrc": "chelsea_lyn:13597:a70746",
"type": "scatter",
"xaxis": "x4",
- "xsrc": "chelsea_lyn:13597:5290fa",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:f4c2fb"
+ "yaxis": "y1"
},
{
"x": [
@@ -2793,12 +2745,9 @@
"(pdf(y), y)=(0.27, 1.03)",
"(pdf(y), y)=(0.27, 1.06)"
],
- "textsrc": "chelsea_lyn:13597:134786",
"type": "scatter",
"xaxis": "x4",
- "xsrc": "chelsea_lyn:13597:d5b3f6",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:f4c2fb"
+ "yaxis": "y1"
},
{
"x": [
@@ -2817,9 +2766,7 @@
"name": "",
"type": "scatter",
"xaxis": "x4",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:e51828"
+ "yaxis": "y1"
},
{
"x": [
@@ -2840,12 +2787,9 @@
"lower-quartile: -1.21",
"upper-quartile: 1.06"
],
- "textsrc": "chelsea_lyn:13597:bdd781",
"type": "scatter",
"xaxis": "x4",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:e51828"
+ "yaxis": "y1"
},
{
"x": [
@@ -2863,12 +2807,9 @@
"text": [
"median: 0.15"
],
- "textsrc": "chelsea_lyn:13597:63a415",
"type": "scatter",
"xaxis": "x4",
- "xsrc": "chelsea_lyn:13597:c2cc3e",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:b3ea06"
+ "yaxis": "y1"
},
{
"x": [
@@ -2893,9 +2834,7 @@
"showlegend": false,
"type": "scatter",
"xaxis": "x4",
- "xsrc": "chelsea_lyn:13597:773c60",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:478d96"
+ "yaxis": "y1"
},
{
"x": [
@@ -3215,12 +3154,9 @@
"(pdf(y), y)=(-0.25, -2.22)",
"(pdf(y), y)=(-0.25, -2.20)"
],
- "textsrc": "chelsea_lyn:13597:2e321a",
"type": "scatter",
"xaxis": "x5",
- "xsrc": "chelsea_lyn:13597:5f6618",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:60b60c"
+ "yaxis": "y1"
},
{
"x": [
@@ -3438,12 +3374,9 @@
"mode": "lines",
"name": "",
"opacity": 0.5,
- "textsrc": "chelsea_lyn:13597:838119",
"type": "scatter",
"xaxis": "x5",
- "xsrc": "chelsea_lyn:13597:bd2290",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:60b60c"
+ "yaxis": "y1"
},
{
"x": [
@@ -3462,9 +3395,7 @@
"name": "",
"type": "scatter",
"xaxis": "x5",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:8b4cf0"
+ "yaxis": "y1"
},
{
"x": [
@@ -3485,12 +3416,9 @@
"lower-quartile: -3.85",
"upper-quartile: -2.20"
],
- "textsrc": "chelsea_lyn:13597:ab9a6b",
"type": "scatter",
"xaxis": "x5",
- "xsrc": "chelsea_lyn:13597:a94dd5",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:8b4cf0"
+ "yaxis": "y1"
},
{
"x": [
@@ -3508,12 +3436,9 @@
"text": [
"median: -3.03"
],
- "textsrc": "chelsea_lyn:13597:2d529f",
"type": "scatter",
"xaxis": "x5",
- "xsrc": "chelsea_lyn:13597:c2cc3e",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:a0d205"
+ "yaxis": "y1"
},
{
"x": [
@@ -3534,9 +3459,7 @@
"showlegend": false,
"type": "scatter",
"xaxis": "x5",
- "xsrc": "chelsea_lyn:13597:09895d",
- "yaxis": "y1",
- "ysrc": "chelsea_lyn:13597:8b4cf0"
+ "yaxis": "y1"
}
],
"layout": {
diff --git a/test/image/mocks/world-cals.json b/test/image/mocks/world-cals.json
index 19ae3028e8b..4cd949d7b20 100644
--- a/test/image/mocks/world-cals.json
+++ b/test/image/mocks/world-cals.json
@@ -13,8 +13,7 @@
-3
],
"xcalendar": "coptic",
- "name": "coptic bars",
- "uid": "74ab24"
+ "name": "coptic bars"
},
{
"type": "box",
@@ -30,8 +29,7 @@
"orientation": "h",
"xcalendar": "discworld",
"y0": -3,
- "name": "discworld box",
- "uid": "8c8a7d"
+ "name": "discworld box"
},
{
"type": "contour",
@@ -65,7 +63,6 @@
"xcalendar": "ethiopian",
"name": "ethiopian contour",
"showscale": false,
- "uid": "506ec8",
"zmin": 1,
"zmax": 4,
"contours": {
@@ -101,7 +98,6 @@
"xcalendar": "hebrew",
"name": "hebrew heatmap",
"showscale": false,
- "uid": "2f8d3f",
"zmin": 1,
"zmax": 4
},
@@ -128,7 +124,6 @@
"nbinsx": 3,
"nbinsy": 2,
"showscale": false,
- "uid": "beb4e5",
"xbins": {
"start": "1388-12-14 12:00",
"end": "1389-06-14 12:00",
@@ -165,7 +160,6 @@
"nbinsx": 3,
"nbinsy": 2,
"showscale": false,
- "uid": "d01089",
"xbins": {
"start": "1969-10-16 12:00",
"end": "1970-08-16 12:00",
@@ -219,8 +213,7 @@
1
],
"xcalendar": "mayan",
- "name": "mayan",
- "uid": "af70cc"
+ "name": "mayan"
},
{
"type": "scatter",
@@ -237,8 +230,7 @@
1
],
"xcalendar": "nanakshahi",
- "name": "nanakshahi",
- "uid": "de4e9d"
+ "name": "nanakshahi"
},
{
"type": "scatter",
@@ -255,8 +247,7 @@
1
],
"xcalendar": "nepali",
- "name": "nepali",
- "uid": "5d4950"
+ "name": "nepali"
},
{
"type": "scatter",
@@ -273,8 +264,7 @@
1
],
"xcalendar": "persian",
- "name": "persian",
- "uid": "d13636"
+ "name": "persian"
},
{
"type": "scatter",
@@ -291,8 +281,7 @@
1
],
"xcalendar": "jalali",
- "name": "jalali",
- "uid": "612738"
+ "name": "jalali"
},
{
"type": "scatter",
@@ -309,8 +298,7 @@
1
],
"xcalendar": "taiwan",
- "name": "taiwan",
- "uid": "24ac23"
+ "name": "taiwan"
},
{
"type": "scatter",
@@ -327,8 +315,7 @@
1
],
"xcalendar": "thai",
- "name": "thai",
- "uid": "830f65"
+ "name": "thai"
},
{
"type": "histogram",
@@ -358,7 +345,6 @@
"target": "y"
}
],
- "uid": "cf8dad",
"ybins": {
"start": "5200-12-29 12:00",
"end": "5200-01-03 12:00",
diff --git a/test/jasmine/tests/drawing_test.js b/test/jasmine/tests/drawing_test.js
index 3c20e719a1a..a0752a6a7b0 100644
--- a/test/jasmine/tests/drawing_test.js
+++ b/test/jasmine/tests/drawing_test.js
@@ -2,6 +2,12 @@ var Drawing = require('@src/components/drawing');
var d3 = require('d3');
+var Plotly = require('@lib/index');
+
+var createGraphDiv = require('../assets/create_graph_div');
+var destroyGraphDiv = require('../assets/destroy_graph_div');
+var fail = require('../assets/fail_test');
+
describe('Drawing', function() {
'use strict';
@@ -309,3 +315,104 @@ describe('Drawing', function() {
});
});
});
+
+describe('gradients', function() {
+ var gd;
+
+ beforeEach(function() {
+ gd = createGraphDiv();
+ });
+
+ afterEach(destroyGraphDiv);
+
+ function checkGradientIds(ids, types, c1, c2) {
+ var expected = ids.map(function(id) {
+ return 'g' + gd._fullLayout._uid + '-' + gd._fullData[0].uid + id;
+ });
+
+ var gids = [];
+ var typesOut = [];
+ var c1Out = [];
+ var c2Out = [];
+ var gradients = d3.select(gd).selectAll('radialGradient,linearGradient');
+ gradients.each(function() {
+ gids.push(this.id);
+ typesOut.push(this.nodeName.replace('Gradient', ''));
+ c1Out.push(d3.select(this).select('stop[offset="100%"]').attr('stop-color'));
+ c2Out.push(d3.select(this).select('stop[offset="0%"]').attr('stop-color'));
+ });
+ gids.sort();
+
+ expect(gids.length).toBe(expected.length);
+
+ for(var i = 0; i < Math.min(gids.length, expected.length); i++) {
+ expect(gids[i]).toBe(expected[i]);
+ expect(typesOut[i]).toBe(types[i]);
+ expect(c1Out[i]).toBe(c1[i]);
+ expect(c2Out[i]).toBe(c2[i]);
+ }
+ }
+
+ it('clears unused gradients after a replot', function(done) {
+ Plotly.plot(gd, [{
+ y: [0, 1, 2],
+ mode: 'markers',
+ marker: {
+ color: '#123',
+ gradient: {
+ type: 'radial',
+ color: ['#fff', '#eee', '#ddd']
+ }
+ }
+ }])
+ .then(function() {
+ checkGradientIds(
+ ['-0', '-1', '-2'],
+ ['radial', 'radial', 'radial'],
+ ['rgb(17, 34, 51)', 'rgb(17, 34, 51)', 'rgb(17, 34, 51)'],
+ ['rgb(255, 255, 255)', 'rgb(238, 238, 238)', 'rgb(221, 221, 221)']);
+
+ return Plotly.restyle(gd, {'marker.color': '#456'});
+ })
+ .then(function() {
+ // simple scalar restyle doesn't trigger a full replot, so
+ // doesn't clear the old gradients
+ checkGradientIds(
+ ['-0', '-1', '-2'],
+ ['radial', 'radial', 'radial'],
+ ['rgb(68, 85, 102)', 'rgb(68, 85, 102)', 'rgb(68, 85, 102)'],
+ ['rgb(255, 255, 255)', 'rgb(238, 238, 238)', 'rgb(221, 221, 221)']);
+
+ return Plotly.restyle(gd, {'marker.gradient.type': [['horizontal', 'vertical', 'radial']]});
+ })
+ .then(function() {
+ // array restyle does replot
+ checkGradientIds(
+ ['-0', '-1', '-2'],
+ ['linear', 'linear', 'radial'],
+ ['rgb(68, 85, 102)', 'rgb(68, 85, 102)', 'rgb(68, 85, 102)'],
+ ['rgb(255, 255, 255)', 'rgb(238, 238, 238)', 'rgb(221, 221, 221)']);
+
+ return Plotly.restyle(gd, {
+ 'marker.gradient.type': 'vertical',
+ 'marker.gradient.color': '#abc'
+ });
+ })
+ .then(function() {
+ // down to a single gradient because they're all the same
+ checkGradientIds(
+ [''],
+ ['linear'],
+ ['rgb(68, 85, 102)'],
+ ['rgb(170, 187, 204)']);
+
+ return Plotly.restyle(gd, {'mode': 'lines'});
+ })
+ .then(function() {
+ // full replot and no resulting markers at all -> no gradients
+ checkGradientIds([], [], [], []);
+ })
+ .catch(fail)
+ .then(done);
+ });
+});
diff --git a/test/jasmine/tests/scattergeo_test.js b/test/jasmine/tests/scattergeo_test.js
index b95c06898cf..2104e23b4f0 100644
--- a/test/jasmine/tests/scattergeo_test.js
+++ b/test/jasmine/tests/scattergeo_test.js
@@ -89,7 +89,10 @@ describe('Test scattergeo calc', function() {
Plots.supplyDefaults(gd);
var fullTrace = gd._fullData[0];
- return ScatterGeo.calc(gd, fullTrace);
+ return ScatterGeo.calc(gd, fullTrace).map(function(obj) {
+ delete obj.i;
+ return obj;
+ });
}
it('should place lon/lat data in lonlat pairs', function() {
diff --git a/test/jasmine/tests/scatterternary_test.js b/test/jasmine/tests/scatterternary_test.js
index 14c3a0ecd69..1193cfe2c2c 100644
--- a/test/jasmine/tests/scatterternary_test.js
+++ b/test/jasmine/tests/scatterternary_test.js
@@ -246,7 +246,7 @@ describe('scatterternary calc', function() {
trace.b = [0.1, 0.3, null];
trace.c = [8, 0.4, 0.1];
- cd = calc(gd, trace);
+ cd = calc(gd, trace).map(function(obj) { delete obj.i; return obj; });
expect(objectToArray(cd[0])).toBeCloseToArray([
0.963414634, 0.012195121, 0.012195121, 0.012195121, 0.975609756