VegetaTesting/Windows/2020-04-20_9-win-plot-15m-10s.html

4173 lines
388 KiB
HTML
Raw Normal View History

2020-04-20 13:04:33 +02:00
<!doctype html>
<html>
<head>
<title>[Windows] 10 requests per second, 15 minutes (#9)</title>
<meta charset="utf-8">
<style>/**
* Default styles for the dygraphs charting library.
*/
.dygraph-legend {
position: absolute;
font-size: 14px;
z-index: 10;
width: 250px; /* labelsDivWidth */
/*
dygraphs determines these based on the presence of chart labels.
It might make more sense to create a wrapper div around the chart proper.
top: 0px;
right: 2px;
*/
background: white;
line-height: normal;
text-align: left;
overflow: hidden;
}
/* styles for a solid line in the legend */
.dygraph-legend-line {
display: inline-block;
position: relative;
bottom: .5ex;
padding-left: 1em;
height: 1px;
border-bottom-width: 2px;
border-bottom-style: solid;
/* border-bottom-color is set based on the series color */
}
/* styles for a dashed line in the legend, e.g. when strokePattern is set */
.dygraph-legend-dash {
display: inline-block;
position: relative;
bottom: .5ex;
height: 1px;
border-bottom-width: 2px;
border-bottom-style: solid;
/* border-bottom-color is set based on the series color */
/* margin-right is set based on the stroke pattern */
/* padding-left is set based on the stroke pattern */
}
.dygraph-roller {
position: absolute;
z-index: 10;
}
/* This class is shared by all annotations, including those with icons */
.dygraph-annotation {
position: absolute;
z-index: 10;
overflow: hidden;
}
/* This class only applies to annotations without icons */
/* Old class name: .dygraphDefaultAnnotation */
.dygraph-default-annotation {
border: 1px solid black;
background-color: white;
text-align: center;
}
.dygraph-axis-label {
/* position: absolute; */
/* font-size: 14px; */
z-index: 10;
line-height: normal;
overflow: hidden;
color: black; /* replaces old axisLabelColor option */
}
.dygraph-axis-label-x {
}
.dygraph-axis-label-y {
}
.dygraph-axis-label-y2 {
}
.dygraph-title {
font-weight: bold;
z-index: 10;
text-align: center;
/* font-size: based on titleHeight option */
}
.dygraph-xlabel {
text-align: center;
/* font-size: based on xLabelHeight option */
}
/* For y-axis label */
.dygraph-label-rotate-left {
text-align: center;
/* See http://caniuse.com/#feat=transforms2d */
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
}
/* For y2-axis label */
.dygraph-label-rotate-right {
text-align: center;
/* See http://caniuse.com/#feat=transforms2d */
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
}
</style>
</head>
<body>
<div id="latencies" style="font-family: Courier; width: 100%%; height: 600px"></div>
<button id="download">Download as PNG</button>
<script>/*!
* html2canvas 1.0.0-alpha.11 <https://html2canvas.hertzen.com>
* Copyright (c) 2018 Niklas von Hertzen <https://hertzen.com>
* Released under MIT License
*/
!function(A,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.html2canvas=e():A.html2canvas=e()}(this,function(){return function(A){var e={};function t(r){if(e[r])return e[r].exports;var n=e[r]={i:r,l:!1,exports:{}};return A[r].call(n.exports,n,n.exports,t),n.l=!0,n.exports}return t.m=A,t.c=e,t.d=function(A,e,r){t.o(A,e)||Object.defineProperty(A,e,{configurable:!1,enumerable:!0,get:r})},t.n=function(A){var e=A&&A.__esModule?function(){return A.default}:function(){return A};return t.d(e,"a",e),e},t.o=function(A,e){return Object.prototype.hasOwnProperty.call(A,e)},t.p="",t(t.s=27)}([function(A,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){return function(A,e){if(Array.isArray(A))return A;if(Symbol.iterator in Object(A))return function(A,e){var t=[],r=!0,n=!1,B=void 0;try{for(var a,s=A[Symbol.iterator]();!(r=(a=s.next()).done)&&(t.push(a.value),!e||t.length!==e);r=!0);}catch(A){n=!0,B=A}finally{try{!r&&s.return&&s.return()}finally{if(n)throw B}}return t}(A,e);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),n=function(){function A(A,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(A,r.key,r)}}return function(e,t,r){return t&&A(e.prototype,t),r&&A(e,r),e}}();var B=/^#([a-f0-9]{3})$/i,a=function(A){var e=A.match(B);return!!e&&[parseInt(e[1][0]+e[1][0],16),parseInt(e[1][1]+e[1][1],16),parseInt(e[1][2]+e[1][2],16),null]},s=/^#([a-f0-9]{6})$/i,o=function(A){var e=A.match(s);return!!e&&[parseInt(e[1].substring(0,2),16),parseInt(e[1].substring(2,4),16),parseInt(e[1].substring(4,6),16),null]},i=/^rgb\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)$/,c=function(A){var e=A.match(i);return!!e&&[Number(e[1]),Number(e[2]),Number(e[3]),null]},l=/^rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d?\.?\d+)\s*\)$/,u=function(A){var e=A.match(l);return!!(e&&e.length>4)&&[Number(e[1]),Number(e[2]),Number(e[3]),Number(e[4])]},Q=function(A){return[Math.min(A[0],255),Math.min(A[1],255),Math.min(A[2],255),A.length>3?A[3]:null]},w=function(A){var e=g[A.toLowerCase()];return e||!1},U=function(){function A(e){!function(A,e){if(!(A instanceof e))throw new TypeError("Cannot call a class as a function")}(this,A);var t=Array.isArray(e)?Q(e):a(e)||c(e)||u(e)||w(e)||o(e)||[0,0,0,null],n=r(t,4),B=n[0],s=n[1],i=n[2],l=n[3];this.r=B,this.g=s,this.b=i,this.a=l}return n(A,[{key:"isTransparent",value:function(){return 0===this.a}},{key:"toString",value:function(){return null!==this.a&&1!==this.a?"rgba("+this.r+","+this.g+","+this.b+","+this.a+")":"rgb("+this.r+","+this.g+","+this.b+")"}}]),A}();e.default=U;var g={transparent:[0,0,0,0],aliceblue:[240,248,255,null],antiquewhite:[250,235,215,null],aqua:[0,255,255,null],aquamarine:[127,255,212,null],azure:[240,255,255,null],beige:[245,245,220,null],bisque:[255,228,196,null],black:[0,0,0,null],blanchedalmond:[255,235,205,null],blue:[0,0,255,null],blueviolet:[138,43,226,null],brown:[165,42,42,null],burlywood:[222,184,135,null],cadetblue:[95,158,160,null],chartreuse:[127,255,0,null],chocolate:[210,105,30,null],coral:[255,127,80,null],cornflowerblue:[100,149,237,null],cornsilk:[255,248,220,null],crimson:[220,20,60,null],cyan:[0,255,255,null],darkblue:[0,0,139,null],darkcyan:[0,139,139,null],darkgoldenrod:[184,134,11,null],darkgray:[169,169,169,null],darkgreen:[0,100,0,null],darkgrey:[169,169,169,null],darkkhaki:[189,183,107,null],darkmagenta:[139,0,139,null],darkolivegreen:[85,107,47,null],darkorange:[255,140,0,null],darkorchid:[153,50,204,null],darkred:[139,0,0,null],darksalmon:[233,150,122,null],darkseagreen:[143,188,143,null],darkslateblue:[72,61,139,null],darkslategray:[47,79,79,null],darkslategrey:[47,79,79,null],darkturquoise:[0,206,209,null],darkviolet:[148,0,211,null],deeppink:[255,20,147,null],deepskyblue:[0,191,255,null],dimgray:[105,105,105,null],dimgrey:[105,105,105,null],dodgerblue:[30,144,255,null],firebrick:[178,34,34,null],flor
<script>/*! @license Copyright 2017 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Dygraph=t()}}(function(){return function t(e,a,i){function n(o,s){if(!a[o]){if(!e[o]){var l="function"==typeof require&&require;if(!s&&l)return l(o,!0);if(r)return r(o,!0);var h=new Error("Cannot find module '"+o+"'");throw h.code="MODULE_NOT_FOUND",h}var u=a[o]={exports:{}};e[o][0].call(u.exports,function(t){var a=e[o][1][t];return n(a||t)},u,u.exports,t,e,a,i)}return a[o].exports}for(var r="function"==typeof require&&require,o=0;o<i.length;o++)n(i[o]);return n}({1:[function(t,e,a){function i(){throw new Error("setTimeout has not been defined")}function n(){throw new Error("clearTimeout has not been defined")}function r(t){if(d===setTimeout)return setTimeout(t,0);if((d===i||!d)&&setTimeout)return d=setTimeout,setTimeout(t,0);try{return d(t,0)}catch(e){try{return d.call(null,t,0)}catch(e){return d.call(this,t,0)}}}function o(t){if(c===clearTimeout)return clearTimeout(t);if((c===n||!c)&&clearTimeout)return c=clearTimeout,clearTimeout(t);try{return c(t)}catch(e){try{return c.call(null,t)}catch(e){return c.call(this,t)}}}function s(){_&&g&&(_=!1,g.length?f=g.concat(f):v=-1,f.length&&l())}function l(){if(!_){var t=r(s);_=!0;for(var e=f.length;e;){for(g=f,f=[];++v<e;)g&&g[v].run();v=-1,e=f.length}g=null,_=!1,o(t)}}function h(t,e){this.fun=t,this.array=e}function u(){}var d,c,p=e.exports={};!function(){try{d="function"==typeof setTimeout?setTimeout:i}catch(t){d=i}try{c="function"==typeof clearTimeout?clearTimeout:n}catch(t){c=n}}();var g,f=[],_=!1,v=-1;p.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var a=1;a<arguments.length;a++)e[a-1]=arguments[a];f.push(new h(t,e)),1!==f.length||_||r(l)},h.prototype.run=function(){this.fun.apply(null,this.array)},p.title="browser",p.browser=!0,p.env={},p.argv=[],p.version="",p.versions={},p.on=u,p.addListener=u,p.once=u,p.off=u,p.removeListener=u,p.removeAllListeners=u,p.emit=u,p.prependListener=u,p.prependOnceListener=u,p.listeners=function(t){return[]},p.binding=function(t){throw new Error("process.binding is not supported")},p.cwd=function(){return"/"},p.chdir=function(t){throw new Error("process.chdir is not supported")},p.umask=function(){return 0}},{}],2:[function(t,e,a){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var i=t("./bars"),n=function(t){return t&&t.__esModule?t:{default:t}}(i),r=function(){};r.prototype=new n.default,r.prototype.extractSeries=function(t,e,a){for(var i,n,r,o=[],s=a.get("logscale"),l=0;l<t.length;l++)i=t[l][0],r=t[l][e],s&&null!==r&&(r[0]<=0||r[1]<=0||r[2]<=0)&&(r=null),null!==r?(n=r[1],null===n||isNaN(n)?o.push([i,n,[n,n]]):o.push([i,n,[r[0],r[2]]])):o.push([i,null,[null,null]]);return o},r.prototype.rollingAverage=function(t,e,a){e=Math.min(e,t.length);var i,n,r,o,s,l,h,u=[];for(n=0,o=0,r=0,s=0,l=0;l<t.length;l++){if(i=t[l][1],h=t[l][2],u[l]=t[l],null===i||isNaN(i)||(n+=h[0],o+=i,r+=h[1],s+=1),l-e>=0){var d=t[l-e];null===d[1]||isNaN(d[1])||(n-=d[2][0],o-=d[1],r-=d[2][1],s-=1)}u[l]=s?[t[l][0],1*o/s,[1*n/s,1*r/s]]:[t[l][0],null,[null,null]]}return u},a.default=r,e.exports=a.default},{"./bars":5}],3:[function(t,e,a){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var i=t("./bars"),n=function(t){return t&&t.__esModule?t:{default:t}}(i),r=function(){};r.prototype=new n.default,r.prototype.extractSeries=function(t,e,a){for(var i,n,r,o,s=[],l=a.get("sigma"),h=a.get("logscale"),u=0;u<t.length;u++)i=t[u][0],o=t[u][e],h&&null!==o&&(o[0]<=0||o[0]-l*o[1]<=0)&&(o=null),null!==o?(n=o[0],null===n||isNaN(n)?s.push([i,n,[n,n,n]]):(r=l*o[1],s.push([i,n,[n-r,n+r,o[1]]]))):s.push([i,null,[null,null,null]]);return s},r.prototype.rollingAverage=function(t,e,a){e=Math.min(e,t.length);var i,n,r,o,s,l,h,u,d,c=[],p=a.get("sigma");for(i=0;i<t.length;i++){for(s=0,u=0,l=0,n=Math.max(0,i-e+1);n<i+1;n++)null===(r=t[n][1])||isNaN(r)||(l++,s+=r,u+=Math.pow(t[n][2
null===d||isNaN(d)||(d=u.yval_stacked)),null===d&&(d=NaN,o||(u.yval=NaN)),u.y=r.calcYNormal_(s,d,l)}this.dygraph_.dataHandler_.onLineEvaluated(i,s,l)}},r.prototype._evaluateLineTicks=function(){var t,e,a,i,n,r;for(this.xticks=[],t=0;t<this.xTicks_.length;t++)e=this.xTicks_[t],a=e.label,r=!("label_v"in e),n=r?e.v:e.label_v,(i=this.dygraph_.toPercentXCoord(n))>=0&&i<1&&this.xticks.push({pos:i,label:a,has_tick:r});for(this.yticks=[],t=0;t<this.yAxes_.length;t++)for(var o=this.yAxes_[t],s=0;s<o.ticks.length;s++)e=o.ticks[s],a=e.label,r=!("label_v"in e),n=r?e.v:e.label_v,(i=this.dygraph_.toPercentYCoord(n,t))>0&&i<=1&&this.yticks.push({axis:t,pos:i,label:a,has_tick:r})},r.prototype._evaluateAnnotations=function(){var t,e={};for(t=0;t<this.annotations.length;t++){var a=this.annotations[t];e[a.xval+","+a.series]=a}if(this.annotated_points=[],this.annotations&&this.annotations.length)for(var i=0;i<this.points.length;i++){var n=this.points[i];for(t=0;t<n.length;t++){var r=n[t],o=r.xval+","+r.name;o in e&&(r.annotation=e[o],this.annotated_points.push(r))}}},r.prototype.removeAllDatasets=function(){delete this.points,delete this.setNames,delete this.setPointsLengths,delete this.setPointsOffsets,this.points=[],this.setNames=[],this.setPointsLengths=[],this.setPointsOffsets=[]},a.default=r,e.exports=a.default},{"./dygraph-utils":17}],14:[function(t,e,a){(function(t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var i=null;if(void 0!==t);a.default=i,e.exports=a.default}).call(this,t("_process"))},{_process:1}],15:[function(t,e,a){(function(i){"use strict";function n(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(a,"__esModule",{value:!0});var r=t("./dygraph-utils"),o=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e.default=t,e}(r),s=t("./dygraph-default-attrs"),l=n(s),h=t("./dygraph-options-reference"),u=(n(h),function(t){this.dygraph_=t,this.yAxes_=[],this.xAxis_={},this.series_={},this.global_=this.dygraph_.attrs_,this.user_=this.dygraph_.user_attrs_||{},this.labels_=[],this.highlightSeries_=this.get("highlightSeriesOpts")||{},this.reparseSeries()});if(u.AXIS_STRING_MAPPINGS_={y:0,Y:0,y1:0,Y1:0,y2:1,Y2:1},u.axisToIndex_=function(t){if("string"==typeof t){if(u.AXIS_STRING_MAPPINGS_.hasOwnProperty(t))return u.AXIS_STRING_MAPPINGS_[t];throw"Unknown axis : "+t}if("number"==typeof t){if(0===t||1===t)return t;throw"Dygraphs only supports two y-axes, indexed from 0-1."}if(t)throw"Unknown axis : "+t;return 0},u.prototype.reparseSeries=function(){var t=this.get("labels");if(t){this.labels_=t.slice(1),this.yAxes_=[{series:[],options:{}}],this.xAxis_={options:{}},this.series_={};for(var e=this.user_.series||{},a=0;a<this.labels_.length;a++){var i=this.labels_[a],n=e[i]||{},r=u.axisToIndex_(n.axis);this.series_[i]={idx:a,yAxis:r,options:n},this.yAxes_[r]?this.yAxes_[r].series.push(i):this.yAxes_[r]={series:[i],options:{}}}var s=this.user_.axes||{};o.update(this.yAxes_[0].options,s.y||{}),this.yAxes_.length>1&&o.update(this.yAxes_[1].options,s.y2||{}),o.update(this.xAxis_.options,s.x||{})}},u.prototype.get=function(t){var e=this.getGlobalUser_(t);return null!==e?e:this.getGlobalDefault_(t)},u.prototype.getGlobalUser_=function(t){return this.user_.hasOwnProperty(t)?this.user_[t]:null},u.prototype.getGlobalDefault_=function(t){return this.global_.hasOwnProperty(t)?this.global_[t]:l.default.hasOwnProperty(t)?l.default[t]:null},u.prototype.getForAxis=function(t,e){var a,i;if("number"==typeof e)a=e,i=0===a?"y":"y2";else{if("y1"==e&&(e="y"),"y"==e)a=0;else if("y2"==e)a=1;else{if("x"!=e)throw"Unknown axis "+e;a=-1}i=e}var n=-1==a?this.xAxis_:this.yAxes_[a];if(n){var r=n.options;if(r.hasOwnProperty(t))return r[t]}if("x"!==e||"logscale"!==t){var o=this.getGlobalUser_(t);if(null!==o)return o}var s=l.default.axes[i];return s.hasOwnProperty(t)?s[t]:this.getGlobalDefault_(t)},u.prototype.getForSeries=function(t,e){if(e===this.dygraph_.getHighlightSeries()&&this.highlightSeries_.hasOwnProperty(t))return this.highlightSeries_[t];if(!this.se
e.width=this.width_,e.height=this.height_,e.style.width=this.width_+"px",e.style.height=this.height_+"px",e},Q.prototype.createMouseEventElement_=function(){return this.canvas_},Q.prototype.setColors_=function(){var t=this.getLabels(),e=t.length-1;this.colors_=[],this.colorsMap_={};for(var a=this.getNumericOption("colorSaturation")||1,i=this.getNumericOption("colorValue")||.5,n=Math.ceil(e/2),r=this.getOption("colors"),o=this.visibility(),s=0;s<e;s++)if(o[s]){var l=t[s+1],h=this.attributes_.getForSeries("color",l);if(!h)if(r)h=r[s%r.length];else{var u=s%2?n+(s+1)/2:Math.ceil((s+1)/2),d=1*u/(1+e);h=x.hsvToRGB(d,a,i)}this.colors_.push(h),this.colorsMap_[l]=h}},Q.prototype.getColors=function(){return this.colors_},Q.prototype.getPropertiesForSeries=function(t){for(var e=-1,a=this.getLabels(),i=1;i<a.length;i++)if(a[i]==t){e=i;break}return-1==e?null:{name:t,column:e,visible:this.visibility()[e-1],color:this.colorsMap_[t],axis:1+this.attributes_.axisForSeries(t)}},Q.prototype.createRollInterface_=function(){var t=this,e=this.roller_;e||(this.roller_=e=document.createElement("input"),e.type="text",e.style.display="none",e.className="dygraph-roller",this.graphDiv.appendChild(e));var a=this.getBooleanOption("showRoller")?"block":"none",i=this.getArea(),n={top:i.y+i.h-25+"px",left:i.x+1+"px",display:a};e.size="2",e.value=this.rollPeriod_,x.update(e.style,n),e.onchange=function(){return t.adjustRoll(e.value)}},Q.prototype.createDragInterface_=function(){var t={isZooming:!1,isPanning:!1,is2DPan:!1,dragStartX:null,dragStartY:null,dragEndX:null,dragEndY:null,dragDirection:null,prevEndX:null,prevEndY:null,prevDragDirection:null,cancelNextDblclick:!1,initialLeftmostDate:null,xUnitsPerPixel:null,dateRange:null,px:0,py:0,boundedDates:null,boundedValues:null,tarp:new O.default,initializeMouseDown:function(t,e,a){t.preventDefault?t.preventDefault():(t.returnValue=!1,t.cancelBubble=!0);var i=x.findPos(e.canvas_);a.px=i.x,a.py=i.y,a.dragStartX=x.dragGetX_(t,a),a.dragStartY=x.dragGetY_(t,a),a.cancelNextDblclick=!1,a.tarp.cover()},destroy:function(){var t=this;if((t.isZooming||t.isPanning)&&(t.isZooming=!1,t.dragStartX=null,t.dragStartY=null),t.isPanning){t.isPanning=!1,t.draggingDate=null,t.dateRange=null;for(var e=0;e<a.axes_.length;e++)delete a.axes_[e].draggingValue,delete a.axes_[e].dragValueRange}t.tarp.uncover()}},e=this.getOption("interactionModel"),a=this;for(var i in e)e.hasOwnProperty(i)&&this.addAndTrackEvent(this.mouseEventElement_,i,function(e){return function(i){e(i,a,t)}}(e[i]));if(!e.willDestroyContextMyself){var n=function(e){t.destroy()};this.addAndTrackEvent(document,"mouseup",n)}},Q.prototype.drawZoomRect_=function(t,e,a,i,n,r,o,s){var l=this.canvas_ctx_;r==x.HORIZONTAL?l.clearRect(Math.min(e,o),this.layout_.getPlotArea().y,Math.abs(e-o),this.layout_.getPlotArea().h):r==x.VERTICAL&&l.clearRect(this.layout_.getPlotArea().x,Math.min(i,s),this.layout_.getPlotArea().w,Math.abs(i-s)),t==x.HORIZONTAL?a&&e&&(l.fillStyle="rgba(128,128,128,0.33)",l.fillRect(Math.min(e,a),this.layout_.getPlotArea().y,Math.abs(a-e),this.layout_.getPlotArea().h)):t==x.VERTICAL&&n&&i&&(l.fillStyle="rgba(128,128,128,0.33)",l.fillRect(this.layout_.getPlotArea().x,Math.min(i,n),this.layout_.getPlotArea().w,Math.abs(n-i)))},Q.prototype.clearZoomRect_=function(){this.currentZoomRectArgs_=null,this.canvas_ctx_.clearRect(0,0,this.width_,this.height_)},Q.prototype.doZoomX_=function(t,e){this.currentZoomRectArgs_=null;var a=this.toDataXCoord(t),i=this.toDataXCoord(e);this.doZoomXDates_(a,i)},Q.prototype.doZoomXDates_=function(t,e){var a=this,i=this.xAxisRange(),n=[t,e],r=this.getFunctionOption("zoomCallback");this.doAnimatedZoom(i,n,null,null,function(){r&&r.call(a,t,e,a.yAxisRanges())})},Q.prototype.doZoomY_=function(t,e){var a=this;this.currentZoomRectArgs_=null;for(var i=this.yAxisRanges(),n=[],r=0;r<this.axes_.length;r++){var o=this.toDataYCoord(t,r),l=this.toDataYCoord(e,r);n.push([l,o])}var h=this.getFunctionOption("zoomCallback");this.doAnimatedZoom(null,null,i,n,function(){if(h){var t=a.xAxisRange(),e=s(t,2),i=e[0],n=e[1];h.call(a,i,n,a.yAxisRanges())}
;d.style.fontSize=e.getOption("axisLabelFontSize")+"px";var c="dygraph-annotation";h.hasOwnProperty("icon")||(c+=" dygraphDefaultAnnotation dygraph-default-annotation"),h.hasOwnProperty("cssClass")&&(c+=" "+h.cssClass),d.className=c;var p=h.hasOwnProperty("width")?h.width:16,g=h.hasOwnProperty("height")?h.height:16;if(h.hasOwnProperty("icon")){var f=document.createElement("img");f.src=h.icon,f.width=p,f.height=g,d.appendChild(f)}else l.annotation.hasOwnProperty("shortText")&&d.appendChild(document.createTextNode(l.annotation.shortText));var _=l.canvasx-p/2;d.style.left=_+"px";var v=0;if(h.attachAtBottom){var y=r.y+r.h-g-u;o[_]?y-=o[_]:o[_]=0,o[_]+=u+g,v=y}else v=l.canvasy-g-u;d.style.top=v+"px",d.style.width=p+"px",d.style.height=g+"px",d.title=l.annotation.text,d.style.color=e.colorsMap_[l.name],d.style.borderColor=e.colorsMap_[l.name],h.div=d,e.addAndTrackEvent(d,"click",n("clickHandler","annotationClickHandler",l)),e.addAndTrackEvent(d,"mouseover",n("mouseOverHandler","annotationMouseOverHandler",l)),e.addAndTrackEvent(d,"mouseout",n("mouseOutHandler","annotationMouseOutHandler",l)),e.addAndTrackEvent(d,"dblclick",n("dblClickHandler","annotationDblClickHandler",l)),i.appendChild(d),this.annotations_.push(d);var x=t.drawingContext;if(x.save(),x.strokeStyle=h.hasOwnProperty("tickColor")?h.tickColor:e.colorsMap_[l.name],x.lineWidth=h.hasOwnProperty("tickWidth")?h.tickWidth:e.getOption("strokeWidth"),x.beginPath(),h.attachAtBottom){var y=v+g;x.moveTo(l.canvasx,y),x.lineTo(l.canvasx,y+u)}else x.moveTo(l.canvasx,l.canvasy),x.lineTo(l.canvasx,l.canvasy-2-u);x.closePath(),x.stroke(),x.restore()}}},i.prototype.destroy=function(){this.detachLabels()},a.default=i,e.exports=a.default},{}],21:[function(t,e,a){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var i=t("../dygraph-utils"),n=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e.default=t,e}(i),r=function(){this.xlabels_=[],this.ylabels_=[]};r.prototype.toString=function(){return"Axes Plugin"},r.prototype.activate=function(t){return{layout:this.layout,clearChart:this.clearChart,willDrawChart:this.willDrawChart}},r.prototype.layout=function(t){var e=t.dygraph;if(e.getOptionForAxis("drawAxis","y")){var a=e.getOptionForAxis("axisLabelWidth","y")+2*e.getOptionForAxis("axisTickSize","y");t.reserveSpaceLeft(a)}if(e.getOptionForAxis("drawAxis","x")){var i;i=e.getOption("xAxisHeight")?e.getOption("xAxisHeight"):e.getOptionForAxis("axisLabelFontSize","x")+2*e.getOptionForAxis("axisTickSize","x"),t.reserveSpaceBottom(i)}if(2==e.numAxes()){if(e.getOptionForAxis("drawAxis","y2")){var a=e.getOptionForAxis("axisLabelWidth","y2")+2*e.getOptionForAxis("axisTickSize","y2");t.reserveSpaceRight(a)}}else e.numAxes()>2&&e.error("Only two y-axes are supported at this time. (Trying to use "+e.numAxes()+")")},r.prototype.detachLabels=function(){function t(t){for(var e=0;e<t.length;e++){var a=t[e];a.parentNode&&a.parentNode.removeChild(a)}}t(this.xlabels_),t(this.ylabels_),this.xlabels_=[],this.ylabels_=[]},r.prototype.clearChart=function(t){this.detachLabels()},r.prototype.willDrawChart=function(t){function e(t){return Math.round(t)+.5}function a(t){return Math.round(t)-.5}var i=this,r=t.dygraph;if(r.getOptionForAxis("drawAxis","x")||r.getOptionForAxis("drawAxis","y")||r.getOptionForAxis("drawAxis","y2")){var o,s,l,h=t.drawingContext,u=t.canvas.parentNode,d=r.width_,c=r.height_,p=function(t){return{position:"absolute",fontSize:r.getOptionForAxis("axisLabelFontSize",t)+"px",width:r.getOptionForAxis("axisLabelWidth",t)+"px"}},g={x:p("x"),y:p("y"),y2:p("y2")},f=function(t,e,a){var i=document.createElement("div"),r=g["y2"==a?"y2":e];n.update(i.style,r);var o=document.createElement("div");return o.className="dygraph-axis-label dygraph-axis-label-"+e+(a?" dygraph-axis-label-"+a:""),o.innerHTML=t,i.appendChild(o),i};h.save();var _=r.layout_,v=t.dygraph.plotter_.area,y=function(t){return function(e){return r.getOptionForAxis(e,t)}};if(r.getOptionForAxis("drawAxis","y")){if(_.yticks&&_.yticks.length>0){va
//# sourceMappingURL=dist/dygraph.min.js.map</script>
<script>
document.getElementById("download").addEventListener("click", function(e) {
html2canvas(document.body, {background: "#fff"}).then(function(canvas) {
var url = canvas.toDataURL('image/png').replace(/^data:image\/[^;]/, 'data:application/octet-stream');
var a = document.createElement("a");
a.setAttribute("download", "vegeta-plot.png");
a.setAttribute("href", url);
a.click();
});
});
var container = document.getElementById("latencies");
var opts = {
"title": "[Windows] 10 requests per second, 15 minutes (#9)",
"labels": [
"Seconds",
": OK"
],
"ylabel": "Latency (ms)",
"xlabel": "Seconds elapsed",
"colors": [
"#A6DA83"
],
"legend": "always",
"showRoller": true,
"logScale": true,
"strokeWidth": 1.3
};
var data = [
[0,530.9979999999999],
[0.2,408.92830000000004],
[0.401,443.1281],
[0.499,248.8588],
[0.899,223.4846],
[0.999,230.3209],
[1.301,244.0043],
[1.501,225.72719999999998],
[1.6989999999999998,240.79149999999998],
[1.901,241.8605],
[2.199,224.4751],
[2.301,254.7682],
[2.501,227.4359],
[2.8,231.3278],
[3.099,255.6986],
[3.201,248.8845],
[3.601,233.9969],
[3.699,826.7931],
[3.899,239.1233],
[4.201,234.7626],
[4.501,271.3278],
[4.599,224.00320000000002],
[4.9,222.54489999999998],
[5.101,266.43080000000003],
[5.4,228.3914],
[5.599,253.75979999999998],
[5.8,258.53700000000003],
[5.999,255.35770000000002],
[6.2,809.1909],
[6.4,256.68800000000005],
[6.7,254.75300000000001],
[6.8,231.31199999999998],
[7,263.54179999999997],
[7.4,227.4124],
[7.499,244.9866],
[7.7,227.8245],
[8.101,228.46179999999998],
[8.299,242.04739999999998],
[8.5,859.6977],
[8.6,251.8074],
[8.899000000000001,218.58540000000002],
[9.099,264.4951],
[9.401,220.58939999999998],
[9.600999999999999,232.0214],
[9.899000000000001,236.00760000000002],
[10.101,745.1153],
[10.199,235.1482],
[10.499,242.0473],
[10.599,222.52859999999998],
[11,226.43179999999998],
[11.101,237.1515],
[11.399000000000001,239.11489999999998],
[11.699,237.1475],
[11.8,220.1881],
[12,245.59539999999998],
[12.299,224.7421],
[12.599,229.6835],
[12.8,254.7356],
[13,233.263],
[13.099,253.77640000000002],
[13.4,231.3118],
[13.699,229.3596],
[13.801,251.8073],
[14.001,231.3477],
[14.201,257.0579],
[14.5,232.617],
[14.801,248.423],
[14.999,233.4865],
[15.101,251.7067],
[15.501,242.1028],
[15.699,218.6232],
[15.899000000000001,238.1201],
[16.099,225.75029999999998],
[16.299,235.0047],
[16.499,222.0959],
[16.801,227.6482],
[17.001,259.3841],
[17.201,231.8871],
[17.501,254.7358],
[17.599,225.96269999999998],
[17.8,253.3017],
[18.199,264.32090000000005],
[18.399,250.3828],
[18.601,236.8911],
[18.801,278.9223],
[19,255.55519999999999],
[19.199,239.3024],
[19.499,234.7823],
[19.701,278.1594],
[19.901,246.8116],
[20.101,307.4368],
[20.299,259.6031],
[20.7,235.8962],
[20.899,275.7527],
[20.999,252.3242],
[21.299,236.2147],
[21.399,267.6058],
[21.699,248.87509999999997],
[22,257.09929999999997],
[22.199,249.872],
[22.3,272.3057],
[22.701,249.8727],
[22.799,902.7775],
[23,258.4395],
[23.199,279.1351],
[23.499,232.48160000000001],
[23.801,248.7798],
[24.001,824.6255],
[24.099,247.6799],
[24.499,264.4957],
[24.601,237.1685],
[24.801,256.6547],
[25.1,261.5802],
[25.3,238.2691],
[25.501,223.50390000000002],
[25.701,247.5471],
[25.999,227.3789],
[26.199,235.14669999999998],
[26.501,269.3754],
[26.599,227.40949999999998],
[26.799,252.7815],
[27.199,260.5926],
[27.399,245.9594],
[27.6,240.62890000000002],
[27.799,267.2333],
[28,230.215],
[28.199,215.9952],
[28.399,240.74699999999999],
[28.599,263.52009999999996],
[28.999,219.0316],
[29.099,239.1224],
[29.401,236.1962],
[29.499,218.6237],
[29.8,238.13119999999998],
[29.999,220.34210000000002],
[30.3,224.5246],
[30.399,240.14450000000002],
[30.799,236.1943],
[30.901,254.7416],
[31.199,239.11950000000002],
[31.499,247.9068],
[31.6,270.3476],
[31.8,245.94650000000001],
[32.099,259.4227],
[32.3,239.27689999999998],
[32.499,246.3749],
[32.7,263.5294],
[32.9,238.1234],
[33.101,284.6046],
[33.501,259.61580000000004],
[33.7,913.157],
[33.8,260.59130000000005],
[33.999,282.4941],
[34.4,253.76500000000001],
[34.5,260.2642],
[34.699,244.2195],
[34.901,226.4149],
[35.2,244.0035],
[35.501,238.1449],
[35.701,246.9229],
[35.799,261.55859999999996],
[36.1,251.8462],
[36.299,236.0208],
[36.601,230.3074],
[36.699,266.9303],
[37,246.9341],
[37.301,249.86059999999998],
[37.499,261.5699],
[37.6,238.12890000000002],
[37.899,264.5053],
[38.201,223.4514],
[38.299,262.056],
[38.699,228.4115],
[38.901,266.8263],
[39.1,239.5086],
[39.201,232.287],
[39.601,258.64],
[39.801,242.04829999999998],
[39.999,240.8459],
[40.099,253.5543],
[40.499,234.87820000000002],
[40.7,846.3076000000001],
[40.801,260.6152],
[41.1,255.63819999999998],
[41.301,235.25029999999998],
[41.6,255.7021],
[41.699,240.0853],
[42.001,224.466],
[42.3,244.0156],
[42.401,229.36329999999998],
[42.7,241.7253],
[42.799,226.08909999999997],
[43.101,229.364],
[43.4,263.5593],
[43.499,251.80970000000002],
[43.8,241.0543],
[43.899,250.8431],
[44.299,257.6897],
[44.4,244.9703],
[44.601,229.3597],
[44.799,239.763],
[45.099,242.6659],
[45.4,223.54389999999998],
[45.501,229.0405],
[45.9,272.3039],
[46.099,234.2536],
[46.3,261.567],
[46.399,243.0334],
[46.701,228.3835],
[46.9,251.80789999999996],
[47.101,245.3796],
[47.299,255.24099999999999],
[47.501,234.95170000000002],
[47.799,232.9738],
[47.999,248.92249999999999],
[48.3,235.2012],
[48.399,262.5553],
[48.799,243.02499999999998],
[48.999,272.2907],
[49.099,246.9433],
[49.4,270.3705],
[49.699,233.0971],
[49.899,897.5936],
[49.999,256.73249999999996],
[50.199,317.23440000000005],
[50.499,268.3995],
[50.8,243.0495],
[50.899,877.3947],
[51.099,264.51550000000003],
[51.399,252.73449999999997],
[51.7,278.0122],
[51.9,237.088],
[52.1,263.5188],
[52.301,252.7836],
[52.501,263.5405],
[52.8,243.0165],
[53.101,230.33509999999998],
[53.299,261.60159999999996],
[53.5,247.4923],
[53.601,254.299],
[53.799,234.2398],
[54.2,262.5231],
[54.4,255.7126],
[54.5,981.6462],
[54.699,261.5541],
[55.101,329.6712],
[55.201,277.18359999999996],
[55.401,244.0198],
[55.7,236.176],
[55.9,251.14350000000002],
[56.199,247.1532],
[56.399,268.9243],
[56.701,249.8554],
[56.901,256.6877],
[57.1,224.4613],
[57.2,252.80580000000003],
[57.599,260.5922],
[57.8,244.3197],
[58.001,257.08910000000003],
[58.099,266.6523],
[58.501,245.1827],
[58.699,862.7894],
[58.8,264.52189999999996],
[59.1,272.3037],
[59.299,248.8795],
[59.599,252.78650000000002],
[59.7,237.1906],
[59.9,242.96529999999998],
[60.299,232.3152],
[60.499,260.6114],
[60.601,226.45770000000002],
[60.9,232.31109999999998],
[61.101,265.471],
[61.4,239.6357],
[61.599,245.4904],
[61.801,232.2883],
[61.999,257.6653],
[62.3,244.0187],
[62.5,270.3439],
[62.599,246.9239],
[62.8,252.29600000000002],
[63.099,240.4302],
[63.399,266.45619999999997],
[63.501,234.2264],
[63.8,254.7357],
[64.099,244.9756],
[64.299,273.2606],
[64.401,238.14499999999998],
[64.601,259.27529999999996],
[65,254.10880000000003],
[65.099,229.7314],
[65.399,250.8463],
[65.5,1206.345],
[65.901,244.0045],
[66.101,866.8555],
[66.199,314.30989999999997],
[66.399,722.0018],
[66.699,323.1798],
[67,241.7395],
[67.101,232.3504],
[67.401,265.8783],
[67.701,252.77300000000002],
[67.9,236.1793],
[67.999,275.2325],
[68.399,284.9918],
[68.499,239.10739999999998],
[68.699,253.76729999999998],
[68.999,237.16789999999997],
[69.101,233.1534],
[69.499,254.7351],
[69.601,235.2321],
[69.799,246.92749999999998],
[70.199,226.4358],
[70.399,251.82860000000002],
[70.501,247.88],
[70.701,221.55159999999998],
[70.901,244.6368],
[71.301,247.6936],
[71.399,243.6317],
[71.701,244.9742],
[71.999,251.7933],
[72.199,227.9693],
[72.299,984.0699000000001],
[72.501,1036.7728],
[72.7,316.2491],
[72.999,1018.9536999999999],
[73.199,349.6947],
[73.401,249.8724],
[73.8,229.7184],
[74,250.24590000000003],
[74.101,867.6749],
[74.301,294.752],
[74.501,236.19129999999998],
[74.899,234.2348],
[75.001,248.8801],
[75.201,223.5245],
[75.401,268.1425],
[75.699,236.9078],
[76.001,276.2072],
[76.1,247.90709999999999],
[76.4,245.9488],
[76.601,257.66339999999997],
[76.9,237.1675],
[77.099,240.1045],
[77.3,275.8107],
[77.5,251.3752],
[77.799,237.5539],
[77.901,269.7736],
[78.199,236.1787],
[78.499,261.5675],
[78.699,255.71179999999998],
[78.899,254.7357],
[79,273.2795],
[79.299,258.6351],
[79.5,236.99960000000002],
[79.801,230.34099999999998],
[80.1,287.2167],
[80.299,244.5424],
[80.501,243.02370000000002],
[80.699,247.9014],
[80.899,989.3743000000001],
[81.099,238.1341],
[81.401,326.9596],
[81.601,250.53579999999997],
[81.801,258.37510000000003],
[82.1,230.5795],
[82.299,242.0592],
[82.499,238.1418],
[82.699,273.28000000000003],
[83.001,231.3344],
[83.099,247.90300000000002],
[83.3,237.1774],
[83.499,260.6068],
[83.8,253.3189],
[84.099,243.399],
[84.2,218.036],
[84.399,240.4502],
[84.699,224.4701],
[84.9,240.1075],
[85.201,239.0977],
[85.501,231.3107],
[85.701,240.6008],
[85.799,283.045],
[86.001,274.9937],
[86.201,227.41320000000002],
[86.601,238.5274],
[86.701,251.8303],
[86.901,235.21529999999998],
[87.2,224.4837],
[87.499,235.2157],
[87.699,856.3463],
[87.801,237.1672],
[88.199,252.19580000000002],
[88.3,233.6874],
[88.499,263.0153],
[88.8,230.3204],
[88.901,241.07680000000002],
[89.301,235.204],
[89.501,244.9942],
[89.6,229.375],
[90.001,266.626],
[90.1,255.42239999999998],
[90.3,232.3013],
[90.499,263.4703],
[90.799,248.9248],
[90.999,255.71139999999997],
[91.199,237.1687],
[91.399,226.4315],
[91.8,226.4107],
[91.899,287.9329],
[92.2,237.7382],
[92.501,241.07059999999998],
[92.699,240.0276],
[92.899,944.7824999999999],
[93.001,280.1132],
[93.401,252.80789999999996],
[93.5,290.8476],
[93.699,249.8613],
[93.899,256.6636],
[94.3,232.5616],
[94.499,236.2062],
[94.699,283.731],
[94.801,242.73829999999998],
[95.099,276.20529999999997],
[95.401,285.9798],
[95.5,246.9435],
[95.699,233.2636],
[96.001,262.587],
[96.201,250.83169999999998],
[96.499,264.1751],
[96.6,238.814],
[96.8,277.2004],
[97.2,230.9889],
[97.4,249.85389999999998],
[97.499,240.1041],
[97.801,237.16799999999998],
[98.001,262.54339999999996],
[98.199,233.2636],
[98.501,234.222],
[98.701,226.12769999999998],
[98.899,244.97650000000002],
[99.199,241.498],
[99.4,265.4712],
[99.6,241.0953],
[99.899,245.0094],
[100.001,232.3216],
[100.3,246.92749999999998],
[100.599,864.9291000000001],
[100.7,237.94889999999998],
[100.999,254.1635],
[101.201,232.9162],
[101.5,227.115],
[101.701,247.45839999999998],
[101.899,226.95329999999998],
[101.999,231.3108],
[102.301,260.5918],
[102.6,253.7604],
[102.701,219.5983],
[102.901,249.87539999999998],
[103.099,237.7822],
[103.501,273.9136],
[103.701,274.3263],
[103.799,243.9464],
[104.001,259.6592],
[104.3,259.6152],
[104.499,242.0462],
[104.699,269.35900000000004],
[104.999,266.4455],
[105.3,233.22660000000002],
[105.399,244.0215],
[105.599,238.1645],
[105.799,265.7491],
[106.1,238.1587],
[106.299,275.2305],
[106.499,244.9974],
[106.799,261.5555],
[106.999,264.4962],
[107.199,244.4477],
[107.499,266.4827],
[107.799,249.3129],
[107.9,243.2714],
[108.099,273.7663],
[108.3,239.1636],
[108.599,269.3856],
[108.901,234.32510000000002],
[108.999,258.7197],
[109.3,248.9041],
[109.601,976.6422],
[109.701,231.0239],
[109.901,271.2124],
[110.199,252.3109],
[110.3,293.3248],
[110.699,219.5991],
[110.899,223.4692],
[111,244.9751],
[111.399,273.2797],
[111.599,221.5515],
[111.701,217.4847],
[111.9,252.80180000000001],
[112.199,229.21259999999998],
[112.4,266.4492],
[112.699,235.2079],
[112.899,261.613],
[113.001,244.9753],
[113.299,266.45889999999997],
[113.499,236.1919],
[113.801,241.07229999999998],
[113.899,227.4777],
[114.301,226.5121],
[114.501,221.5675],
[114.6,240.0957],
[114.8,250.8415],
[115.099,221.5387],
[115.401,241.0711],
[115.499,219.60309999999998],
[115.801,238.70069999999998],
[115.999,240.27100000000002],
[116.2,227.0338],
[116.4,239.0317],
[116.799,226.5773],
[116.901,225.4555],
[117.2,241.0712],
[117.4,255.7106],
[117.6,226.4329],
[117.899,236.19129999999998],
[118.099,273.9932],
[118.201,230.15],
[118.499,228.1231],
[118.699,239.0067],
[118.999,279.1359],
[119.099,238.14360000000002],
[119.499,239.1208],
[119.601,268.40000000000003],
[119.801,246.9278],
[120.001,245.9512],
[120.299,230.3546],
[120.601,308.5138],
[120.699,233.41580000000002],
[120.9,250.8326],
[121.099,230.3354],
[121.501,247.9235],
[121.599,930.1623999999999],
[121.799,236.1914],
[122.2,232.28660000000002],
[122.4,251.84450000000004],
[122.499,247.5171],
[122.699,257.81510000000003],
[123.099,254.73790000000002],
[123.299,279.1355],
[123.501,283.0402],
[123.601,244.976],
[123.801,231.3116],
[124.199,257.66339999999997],
[124.399,261.56780000000003],
[124.599,254.9278],
[124.901,224.48299999999998],
[125,249.4473],
[125.3,236.19219999999999],
[125.399,251.80809999999997],
[125.799,248.87980000000002],
[125.901,1018.9746],
[126.099,257.65909999999997],
[126.4,301.58849999999995],
[126.699,246.76069999999999],
[126.9,976.2632],
[127.001,250.3123],
[127.2,253.76],
[127.399,234.23489999999998],
[127.699,243.9889],
[128,241.07670000000002],
[128.2,263.5055],
[128.5,297.87370000000004],
[128.601,252.6327],
[128.799,259.4704],
[129.101,240.6583],
[129.199,258.2275],
[129.499,240.0985],
[129.699,252.78509999999997],
[129.899,235.2152],
[130.101,241.0597],
[130.501,224.4805],
[130.599,231.9582],
[130.899,241.03369999999998],
[131.2,223.21769999999998],
[131.299,252.5061],
[131.599,245.9508],
[131.799,228.42090000000002],
[131.901,256.6903],
[132.299,217.6474],
[132.499,250.8323],
[132.699,233.2729],
[132.999,269.1064],
[133.099,258.3526],
[133.301,237.22750000000002],
[133.501,244.51129999999998],
[133.799,238.1442],
[133.999,261.567],
[134.2,228.382],
[134.501,236.1935],
[134.699,268.904],
[134.999,296.2892],
[135.099,252.7665],
[135.401,243.7856],
[135.701,264.0225],
[135.801,251.35459999999998],
[136.101,272.1139],
[136.301,244.9597],
[136.501,254.7353],
[136.799,234.2168],
[136.899,262.5428],
[137.201,245.9495],
[137.499,232.30700000000002],
[137.699,274.5412],
[137.901,245.9099],
[138,253.28850000000003],
[138.399,277.18330000000003],
[138.501,247.887],
[138.799,239.11950000000002],
[138.899,241.0729],
[139.099,223.5038],
[139.499,264.2139],
[139.7,240.1108],
[139.8,230.9583],
[140.101,277.1784],
[140.3,248.89430000000002],
[140.599,260.5713],
[140.799,266.4476],
[141.099,259.61580000000004],
[141.201,239.6407],
[141.501,238.93449999999999],
[141.599,1126.5348],
[141.799,267.1339],
[142.2,246.69740000000002],
[142.301,241.6364],
[142.499,283.04200000000003],
[142.7,233.2631],
[143.1,252.78390000000002],
[143.3,1019.6984],
[143.399,264.474],
[143.701,250.4055],
[144.001,280.30850000000004],
[144.2,309.34279999999995],
[144.399,262.49559999999997],
[144.701,257.6723],
[144.901,228.38330000000002],
[145,248.8767],
[145.299,245.9511],
[145.401,267.42490000000004],
[145.801,237.1714],
[146.001,988.7226999999999],
[146.099,251.45260000000002],
[146.501,243.7343],
[146.6,274.2926],
[146.799,239.1578],
[147.101,277.1844],
[147.199,248.8805],
[147.499,268.39869999999996],
[147.801,267.42379999999997],
[148,249.8546],
[148.299,258.03369999999995],
[148.401,988.1259],
[148.599,262.3066],
[148.901,274.2559],
[149.199,248.881],
[149.399,253.7773],
[149.499,239.118],
[149.801,234.2391],
[150.001,261.5492],
[150.3,281.1048],
[150.401,239.7104],
[150.601,268.6309],
[150.8,250.28990000000002],
[151.199,262.5381],
[151.4,232.3048],
[151.599,235.2157],
[151.899,241.0354],
[152,445.05499999999995],
[152.299,439.844],
[152.401,282.70820000000003],
[152.699,251.56699999999998],
[152.899,272.33459999999997],
[153.201,266.6906],
[153.3,248.3921],
[153.599,237.1677],
[153.901,249.8541],
[153.999,245.95600000000002],
[154.199,256.6869],
[154.6,240.1163],
[154.801,242.7009],
[154.899,264.1449],
[155.201,256.9132],
[155.299,244.7318],
[155.599,264.5012],
[155.899,233.2636],
[156.001,262.56600000000003],
[156.201,256.68760000000003],
[156.499,268.4011],
[156.801,238.2944],
[156.901,256.1378],
[157.1,273.2797],
[157.399,250.5405],
[157.699,235.2167],
[157.801,275.23199999999997],
[158.199,244.9752],
[158.4,259.6154],
[158.501,266.4458],
[158.8,260.59110000000004],
[159.101,272.3121],
[159.299,247.6894],
[159.4,260.6311],
[159.599,274.2953],
[159.899,253.77519999999998],
[160.1,243.0239],
[160.299,270.5194],
[160.5,236.9687],
[160.899,499.0653],
[161,280.1109],
[161.201,453.17069999999995],
[161.399,258.63960000000003],
[161.799,266.9763],
[162.001,247.9043],
[162.201,1081.4113],
[162.299,244.9758],
[162.7,272.3039],
[162.799,1056.6128999999999],
[162.999,269.3811],
[163.199,320.7033],
[163.401,252.8538],
[163.799,262.9654],
[163.899,237.96110000000002],
[164.1,254.73600000000002],
[164.3,231.3124],
[164.601,258.6236],
[164.799,276.1894],
[165.101,255.71139999999997],
[165.301,270.928],
[165.601,259.1995],
[165.699,250.83329999999998],
[166,244.0828],
[166.299,270.3933],
[166.501,233.7727],
[166.7,254.72689999999997],
[166.901,242.0401],
[167.199,234.2309],
[167.301,244.9918],
[167.599,255.5518],
[167.701,237.1692],
[167.999,256.1621],
[168.299,257.8627],
[168.499,240.09720000000002],
[168.7,264.4951],
[169,270.3525],
[169.101,245.95710000000003],
[169.301,227.4303],
[169.5,248.8811],
[169.699,253.7589],
[170.101,243.85680000000002],
[170.199,250.31300000000002],
[170.499,245.946],
[170.599,239.1196],
[170.901,255.7277],
[171.199,234.24020000000002],
[171.301,251.47039999999998],
[171.7,254.74429999999998],
[171.901,224.1086],
[172.1,231.3222],
[172.3,265.89279999999997],
[172.499,285.7539],
[172.799,227.44639999999998],
[172.899,276.5125],
[173.2,272.3035],
[173.3,250.8244],
[173.599,228.534],
[173.8,259.6316],
[174.101,242.1696],
[174.3,241.6892],
[174.501,271.2697],
[174.7,248.12300000000002],
[174.999,245.985],
[175.301,275.2314],
[175.501,248.4164],
[175.7,253.2875],
[175.801,1090.5320000000002],
[175.999,263.5244],
[176.401,267.2614],
[176.601,242.0633],
[176.8,258.8845],
[176.899,229.60330000000002],
[177.199,254.16129999999998],
[177.401,232.5621],
[177.7,255.71139999999997],
[177.999,218.3988],
[178.2,243.9985],
[178.3,260.5817],
[178.5,247.1514],
[178.7,232.5114],
[179.001,252.47930000000002],
[179.299,246.6432],
[179.5,219.2996],
[179.799,252.7838],
[179.899,238.14360000000002],
[180.201,229.3636],
[180.401,249.8559],
[180.601,243.0108],
[180.799,259.0247],
[181.1,224.7512],
[181.299,265.2056],
[181.5,225.0463],
[181.799,240.6515],
[181.9,240.6262],
[182.201,233.2641],
[182.499,235.2166],
[182.7,266.4466],
[182.9,234.3347],
[183,254.79200000000003],
[183.301,252.5462],
[183.599,225.4571],
[183.701,231.31189999999998],
[183.901,222.7302],
[184.3,252.8153],
[184.4,234.2704],
[184.6,253.78460000000004],
[184.801,233.2454],
[185.099,250.8154],
[185.299,238.1433],
[185.601,250.0045],
[185.699,276.2068],
[185.999,240.09910000000002],
[186.301,233.9446],
[186.399,255.4972],
[186.799,265.4845],
[187,1017.571],
[187.101,243.03990000000002],
[187.301,289.8722],
[187.499,253.7588],
[187.8,222.1317],
[188.101,257.286],
[188.201,255.7786],
[188.599,224.9869],
[188.701,258.6961],
[189,238.236],
[189.1,269.6123],
[189.301,232.2674],
[189.7,220.5737],
[189.8,236.1929],
[190.001,231.4863],
[190.201,257.6624],
[190.499,249.0088],
[190.699,240.8902],
[190.899,256.676],
[191.1,270.3637],
[191.399,243.5865],
[191.6,241.2712],
[191.899,264.1149],
[192.2,241.8253],
[192.301,1186.1048],
[192.501,252.7678],
[192.701,278.6817],
[193.1,251.8111],
[193.199,287.9216],
[193.399,257.6743],
[193.599,245.4963],
[193.799,230.892],
[194.199,250.7832],
[194.399,251.8121],
[194.5,230.0462],
[194.899,237.6868],
[195.099,267.43109999999996],
[195.3,244.9755],
[195.401,257.6601],
[195.8,238.1542],
[196.001,253.7619],
[196.099,230.53],
[196.299,246.49360000000001],
[196.501,248.0927],
[196.901,222.1123],
[197,260.16179999999997],
[197.3,241.0603],
[197.6,230.32549999999998],
[197.699,251.8073],
[197.899,263.5191],
[198.099,226.43179999999998],
[198.399,272.3417],
[198.601,244.6714],
[198.901,247.9031],
[199.101,273.2794],
[199.4,240.1262],
[199.501,227.4413],
[199.801,254.7353],
[199.899,240.0957],
[200.301,269.9518],
[200.399,254.9111],
[200.6,228.5761],
[200.801,244.9795],
[200.999,252.15609999999998],
[201.301,226.8539],
[201.601,223.5021],
[201.699,238.1547],
[201.9,249.8568],
[202.3,233.264],
[202.5,268.4168],
[202.599,239.1183],
[202.999,249.8483],
[203.101,239.0358],
[203.301,264.7142],
[203.499,227.9273],
[203.8,248.9065],
[203.999,251.85049999999998],
[204.299,237.1509],
[204.4,261.5717],
[204.7,239.10680000000002],
[204.899,274.9048],
[205.2,232.9154],
[205.401,256.70300000000003],
[205.5,221.4013],
[205.901,243.0287],
[206,232.7781],
[206.2,250.8142],
[206.601,254.73610000000002],
[206.699,1081.1054],
[206.899,239.12050000000002],
[207.099,270.3954],
[207.399,281.7832],
[207.599,250.63980000000004],
[207.801,266.0222],
[207.999,226.8588],
[208.201,250.83139999999997],
[208.499,234.2385],
[208.801,262.548],
[209.001,253.74370000000002],
[209.1,245.4455],
[209.4,272.97729999999996],
[209.701,241.85309999999998],
[209.799,268.42359999999996],
[209.999,239.387],
[210.401,297.6959],
[210.601,254.76],
[210.699,240.07899999999998],
[210.999,265.4721],
[211.301,246.16940000000002],
[211.499,253.34459999999999],
[211.699,229.0318],
[212,248.4927],
[212.201,235.0889],
[212.4,253.797],
[212.599,232.2877],
[212.699,252.8067],
[212.999,260.1212],
[213.299,227.407],
[213.499,245.4796],
[213.699,1062.683],
[213.901,258.21680000000003],
[214.201,256.7015],
[214.3,263.5402],
[214.599,247.1733],
[214.8,250.35950000000003],
[215.099,277.1845],
[215.2,228.3827],
[215.499,248.4111],
[215.799,237.1673],
[215.999,250.83109999999996],
[216.099,234.21800000000002],
[216.499,248.4386],
[216.7,229.3604],
[216.799,244.1071],
[217,236.6946],
[217.199,251.8095],
[217.5,255.711],
[217.7,235.2317],
[217.999,241.8042],
[218.101,267.0885],
[218.5,247.6418],
[218.6,252.78529999999998],
[218.801,246.91830000000002],
[219.199,264.0798],
[219.3,242.1414],
[219.501,262.5426],
[219.7,250.83299999999997],
[219.999,258.6723],
[220.2,242.0813],
[220.4,262.54319999999996],
[220.601,256.6809],
[220.899,256.7296],
[221.1,280.1107],
[221.3,267.4235],
[221.599,274.2554],
[221.8,1127.6302],
[222.001,237.31830000000002],
[222.299,279.2492],
[222.501,259.62809999999996],
[222.701,1086.6052],
[222.899,262.6895],
[223.101,223.51399999999998],
[223.3,249.41160000000002],
[223.499,282.0819],
[223.799,245.9751],
[223.999,257.6659],
[224.3,274.2679],
[224.399,251.63160000000002],
[224.7,268.1662],
[224.9,238.1424],
[225.199,239.12369999999999],
[225.399,278.1597],
[225.599,246.4941],
[225.799,239.1189],
[226.101,257.662],
[226.4,1197.1951000000001],
[226.499,255.72390000000001],
[226.699,539.732],
[226.999,526.0527000000001],
[227.1,310.3844],
[227.399,276.2075],
[227.701,265.4714],
[227.899,233.2679],
[228.099,272.30379999999997],
[228.299,230.34799999999998],
[228.601,234.2391],
[228.801,248.90519999999998],
[229.001,234.21259999999998],
[229.301,238.9043],
[229.5,256.7085],
[229.601,243.04809999999998],
[229.799,233.8446],
[230.099,260.61899999999997],
[230.299,244.9995],
[230.499,233.2623],
[230.699,280.1418],
[230.999,238.1087],
[231.2,255.2435],
[231.401,247.90699999999998],
[231.699,281.1094],
[232.001,222.5255],
[232.099,240.6416],
[232.401,235.8519],
[232.499,264.1721],
[232.9,258.66020000000003],
[233.099,236.17940000000002],
[233.299,289.87230000000005],
[233.499,254.7358],
[233.801,262.543],
[233.999,245.9752],
[234.199,271.32620000000003],
[234.3,270.3479],
[234.599,251.80780000000001],
[234.799,253.5339],
[235.1,244.9642],
[235.399,244.02589999999998],
[235.6,283.039],
[235.701,234.2396],
[236.001,240.09449999999998],
[236.099,1158.5745000000002],
[236.499,298.6545],
[236.699,582.6956],
[236.8,255.69380000000004],
[236.999,298.6762],
[237.4,238.97969999999998],
[237.501,250.66319999999996],
[237.799,248.9528],
[238.101,1213.1653000000001],
[238.2,255.7368],
[238.399,271.3448],
[238.601,285.96],
[238.899,256.6893],
[239.099,244.9525],
[239.299,276.1903],
[239.599,248.88060000000002],
[239.8,258.9889],
[239.999,261.0084],
[240.201,239.8066],
[240.4,270.3285],
[240.699,249.86700000000002],
[240.9,284.998],
[241.1,242.0321],
[241.299,232.2715],
[241.6,288.89540000000005],
[241.801,242.0632],
[242,254.7357],
[242.299,241.5897],
[242.399,254.25330000000002],
[242.699,243.98590000000002],
[243.001,250.8244],
[243.099,272.3237],
[243.499,285.4493],
[243.599,247.9451],
[243.9,271.327],
[243.999,236.75959999999998],
[244.199,258.23089999999996],
[244.499,250.83109999999996],
[244.699,268.3995],
[244.999,249.2089],
[245.299,276.99469999999997],
[245.4,1141.589],
[245.6,256.2592],
[245.799,263.52520000000004],
[246,247.9086],
[246.401,251.5136],
[246.6,1148.1296],
[246.699,243.0271],
[247.1,244.97469999999998],
[247.299,1160.7974000000002],
[247.399,249.5244],
[247.699,287.7235],
[247.8,245.0059],
[248.201,258.6393],
[248.299,248.89939999999999],
[248.601,256.3398],
[248.899,262.2159],
[249.099,248.5556],
[249.2,258.6626],
[249.399,269.8853],
[249.599,243.0239],
[249.901,269.3736],
[250.1,252.2418],
[250.401,270.2736],
[250.7,240.1208],
[250.9,236.176],
[251.099,266.9184],
[251.199,248.2281],
[251.4,245.3173],
[251.699,272.7626],
[252,280.10380000000004],
[252.201,260.5902],
[252.5,271.3194],
[252.7,250.83689999999999],
[252.9,252.7975],
[253.099,1219.3421],
[253.199,255.60399999999998],
[253.599,276.2075],
[253.799,257.1363],
[253.999,276.6554],
[254.299,259.1318],
[254.401,289.3849],
[254.6,253.75920000000002],
[254.899,267.42379999999997],
[255.099,278.1596],
[255.401,242.69],
[255.499,251.74059999999997],
[255.8,244.0001],
[256.099,257.6635],
[256.299,236.1653],
[256.499,267.9864],
[256.601,255.29770000000002],
[256.8,251.8088],
[257.2,258.63570000000004],
[257.401,276.2061],
[257.499,231.3065],
[257.899,230.3346],
[258.101,265.186],
[258.199,252.1017],
[258.499,258.63989999999995],
[258.8,284.9914],
[258.899,248.9873],
[259.201,241.5951],
[259.399,239.1182],
[259.699,1302.0107],
[259.801,243.0363],
[260.099,1465.9414],
[260.2,246.92700000000002],
[260.6,401.5787],
[260.699,1198.9917],
[260.899,445.029],
[261.199,611.3444999999999],
[261.3,389.7029],
[261.6,277.59139999999996],
[261.801,266.1074],
[262,263.1838],
[262.401,241.0708],
[262.5,260.58979999999997],
[262.799,249.856],
[262.999,274.7595],
[263.299,243.99960000000002],
[263.5,253.7601],
[263.601,238.14430000000002],
[263.899,252.78260000000003],
[264.101,244.9749],
[264.399,256.91],
[264.599,238.47209999999998],
[264.8,263.5132],
[264.901,286.9425],
[265.2,241.0718],
[265.401,295.2943],
[265.599,299.6312],
[265.8,256.6877],
[266.2,243.0233],
[266.299,285.9672],
[266.601,298.3454],
[266.7,258.9971],
[267,262.5907],
[267.301,269.2564],
[267.401,259.1931],
[267.701,244.00050000000002],
[267.899,274.1165],
[268.1,247.5231],
[268.399,252.8014],
[268.501,233.2649],
[268.8,275.2564],
[269.099,229.4869],
[269.2,252.80740000000003],
[269.499,244.4873],
[269.799,236.1918],
[269.899,252.80599999999998],
[270.299,237.1684],
[270.499,255.30239999999998],
[270.701,240.73919999999998],
[270.799,244.6433],
[270.999,253.40810000000002],
[271.399,224.4838],
[271.5,245.9511],
[271.799,227.4457],
[271.901,254.18049999999997],
[272.2,237.8911],
[272.401,251.8075],
[272.699,258.6502],
[272.8,258.6441],
[273.1,237.1678],
[273.399,256.6875],
[273.599,252.78390000000002],
[273.9,260.59090000000003],
[273.999,1220.4307000000001],
[274.2,284.0154],
[274.4,259.4113],
[274.799,244.9756],
[274.9,283.0372],
[275.1,245.9529],
[275.399,267.4225],
[275.701,245.95149999999998],
[275.8,254.7352],
[275.999,245.95159999999998],
[276.299,244.00379999999998],
[276.4,265.4717],
[276.7,259.6155],
[276.899,247.90300000000002],
[277.099,253.76530000000002],
[277.399,245.5601],
[277.699,237.1683],
[277.8,251.8074],
[278.099,275.9671],
[278.401,275.2316],
[278.6,242.04680000000002],
[278.8,236.19889999999998],
[278.899,249.85660000000001],
[279.3,248.023],
[279.5,257.66139999999996],
[279.7,1212.1934999999999],
[279.799,242.0472],
[280.101,257.6844],
[280.301,252.78240000000002],
[280.599,252.7836],
[280.801,261.5954],
[281.1,246.4784],
[281.199,259.6154],
[281.399,280.1047],
[281.6,245.9671],
[281.8,236.1879],
[282.099,259.83430000000004],
[282.299,242.08599999999998],
[282.499,276.1911],
[282.701,246.92749999999998],
[283.1,244.983],
[283.2,250.83109999999996],
[283.399,288.26079999999996],
[283.699,241.1084],
[283.899,270.351],
[284.099,239.1199],
[284.301,232.2875],
[284.5,227.9357],
[284.801,302.3239],
[285.001,244.0094],
[285.299,246.9273],
[285.401,245.9649],
[285.699,223.5475],
[285.9,244.9745],
[286.101,269.3762],
[286.501,271.3396],
[286.701,241.0753],
[286.8,235.1986],
[286.999,262.5424],
[287.399,233.2838],
[287.599,244.98829999999998],
[287.701,238.1432],
[288,250.83159999999998],
[288.299,236.19109999999998],
[288.4,253.75910000000002],
[288.699,228.231],
[288.899,248.0541],
[289.199,1352.5803],
[289.3,245.95620000000002],
[289.599,1279.2475],
[289.701,252.4954],
[289.899,335.4615],
[290.301,309.3714],
[290.5,245.9476],
[290.699,247.90300000000002],
[290.8,1155.224],
[291.099,263.16040000000004],
[291.301,229.36180000000002],
[291.499,250.83149999999998],
[291.699,258.6435],
[292.099,228.3923],
[292.201,250.8321],
[292.401,268.13009999999997],
[292.699,240.362],
[292.999,262.531],
[293.199,244.975],
[293.399,276.0702],
[293.6,229.2555],
[293.799,243.0548],
[293.999,238.14370000000002],
[294.199,236.1906],
[294.4,288.894],
[294.699,232.28650000000002],
[295.001,239.7101],
[295.101,274.81280000000004],
[295.399,231.3114],
[295.701,251.80819999999997],
[295.901,242.0638],
[296.101,1169.6395],
[296.199,256.0683],
[296.599,243.0221],
[296.8,267.44689999999997],
[296.999,261.5935],
[297.301,271.31440000000003],
[297.399,251.8068],
[297.701,272.30359999999996],
[297.901,232.2881],
[298.2,273.2783],
[298.301,253.75979999999998],
[298.499,264.46979999999996],
[298.799,239.84730000000002],
[299.1,276.0772],
[299.201,256.9257],
[299.399,262.5422],
[299.701,256.6753],
[300,257.6637],
[300.2,279.1963],
[300.3,246.98770000000002],
[300.6,238.1332],
[300.8,267.4285],
[301.001,246.92749999999998],
[301.299,290.4945],
[301.4,251.8094],
[301.799,248.74609999999998],
[301.901,1889.6114000000002],
[302.199,1958.1364999999998],
[302.299,315.2471],
[302.701,454.3879],
[302.799,1589.6696000000002],
[303.099,297.37010000000004],
[303.3,645.355],
[303.399,358.1906],
[303.701,520.4069999999999],
[303.999,308.4148],
[304.099,287.9017],
[304.499,229.37769999999998],
[304.601,244.98700000000002],
[304.899,267.42359999999996],
[305.099,242.6561],
[305.401,1354.0311000000002],
[305.499,264.16479999999996],
[305.8,248.8795],
[306.001,1444.6408],
[306.099,302.22139999999996],
[306.501,267.41310000000004],
[306.699,339.1746],
[306.801,1226.3649],
[307.001,329.4225],
[307.307,271.32529999999997],
[307.599,226.42960000000002],
[307.701,271.335],
[308.1,243.22170000000003],
[308.2,253.79990000000004],
[308.401,271.83459999999997],
[308.599,248.8957],
[308.899,264.72069999999997],
[309.099,258.1352],
[309.3,243.2524],
[309.599,260.60790000000003],
[309.701,241.087],
[310,259.59900000000005],
[310.201,246.5846],
[310.501,274.2553],
[310.699,240.112],
[311.001,267.42510000000004],
[311.099,248.864],
[311.401,246.6764],
[311.499,277.6616],
[311.901,266.43440000000004],
[311.999,233.24030000000002],
[312.301,252.7816],
[312.4,1216.7963],
[312.699,251.97350000000003],
[312.901,279.7167],
[313.099,253.3352],
[313.499,235.21529999999998],
[313.601,250.84830000000002],
[313.801,244.9526],
[314.099,260.15749999999997],
[314.4,1257.7019],
[314.499,246.92690000000002],
[314.799,277.5163],
[314.899,253.76080000000002],
[315.3,311.933],
[315.499,261.1855],
[315.601,1364.6974],
[315.801,274.2747],
[316.199,264.4951],
[316.299,1349.0858],
[316.5,422.1768],
[316.801,265.72630000000004],
[316.901,305.21540000000005],
[317.199,268.399],
[317.399,254.7357],
[317.6,241.0533],
[317.899,252.32909999999998],
[318.101,292.3933],
[318.4,239.14360000000002],
[318.601,261.5571],
[318.699,274.2539],
[318.999,256.6674],
[319.3,285.96700000000004],
[319.501,249.5737],
[319.7,247.8819],
[319.999,232.2882],
[320.199,260.57599999999996],
[320.399,233.2791],
[320.701,265.0031],
[320.9,241.9902],
[320.999,269.2999],
[321.199,252.8186],
[321.399,258.6382],
[321.799,235.8674],
[321.999,237.84259999999998],
[322.101,264.1798],
[322.299,232.2996],
[322.599,250.82999999999998],
[322.9,229.3708],
[322.999,242.06050000000002],
[323.401,253.5634],
[323.6,250.97419999999997],
[323.799,236.2292],
[323.899,246.92680000000001],
[324.199,237.1654],
[324.399,255.6428],
[324.7,237.1626],
[324.901,286.6147],
[324.999,248.5676],
[325.3,272.8294],
[325.601,252.98860000000002],
[325.799,247.9014],
[325.9,264.4069],
[326.299,249.8688],
[326.5,246.9237],
[326.699,266.43280000000004],
[326.9,1241.6997999999999],
[327.101,270.3773],
[327.3,269.3593],
[327.501,266.44849999999997],
[327.899,239.1182],
[328.099,271.0413],
[328.301,264.4879],
[328.4,241.1046],
[328.799,258.65250000000003],
[328.9,272.2904],
[329.1,283.9988],
[329.301,255.2877],
[329.599,249.8348],
[329.799,263.505],
[330.101,254.73649999999998],
[330.199,254.734],
[330.599,285.5327],
[330.699,1314.6683],
[330.901,275.6896],
[331.201,277.2245],
[331.499,271.3159],
[331.7,1291.5055],
[331.799,278.15610000000004],
[332.101,250.3882],
[332.199,283.1575],
[332.599,294.9072],
[332.699,253.9481],
[332.899,240.0961],
[333.299,249.4001],
[333.499,243.03050000000002],
[333.699,285.6531],
[333.801,263.2119],
[334.2,244.00150000000002],
[334.4,307.4572],
[334.601,255.9877],
[334.699,253.052],
[334.9,271.34409999999997],
[335.3,258.6561],
[335.399,243.0476],
[335.6,253.7586],
[335.901,253.1658],
[336.099,240.5449],
[336.399,239.0866],
[336.5,275.21909999999997],
[336.799,238.1379],
[336.999,249.8559],
[337.301,259.6137],
[337.399,243.0225],
[337.699,259.6157],
[337.899,261.54929999999996],
[338.099,234.2409],
[338.401,233.1137],
[338.699,264.49420000000003],
[338.801,251.8188],
[339.001,256.6873],
[339.199,230.3353],
[339.399,242.0657],
[339.701,225.80020000000002],
[339.899,251.89790000000002],
[340.099,259.4613],
[340.401,236.19219999999999],
[340.699,256.6877],
[340.799,239.226],
[341.1,230.3218],
[341.299,1263.2245],
[341.5,263.5071],
[341.8,250.81900000000002],
[341.999,307.9442],
[342.199,242.5198],
[342.4,262.7002],
[342.601,243.0407],
[342.8,262.5307],
[343.001,243.0443],
[343.299,244.9867],
[343.601,276.22380000000004],
[343.801,266.4351],
[344,1378.6817],
[344.2,275.2316],
[344.499,298.6547],
[344.6,264.484],
[344.9,290.85909999999996],
[345.1,266.4622],
[345.401,252.79970000000003],
[345.599,258.6395],
[345.9,242.14749999999998],
[346.1,240.19879999999998],
[346.3,276.6747],
[346.399,253.28270000000003],
[346.599,233.0083],
[346.9,291.8479],
[347.199,252.3244],
[347.3,266.00210000000004],
[347.499,311.35220000000004],
[347.8,248.8793],
[348.001,239.1189],
[348.301,247.90499999999997],
[348.599,1234.6195],
[348.701,265.4707],
[349,248.8803],
[349.199,242.0356],
[349.499,246.93390000000002],
[349.6,286.9264],
[349.899,235.578],
[350,229.084],
[350.399,265.0561],
[350.501,246.52550000000002],
[350.699,247.2856],
[350.999,258.7631],
[351.299,278.0043],
[351.399,236.176],
[351.699,262.5492],
[351.801,250.8307],
[352.099,276.2246],
[352.299,237.1702],
[352.499,267.7025],
[352.7,254.96859999999998],
[352.999,253.9092],
[353.199,232.79410000000001],
[353.4,235.2166],
[353.699,264.4723],
[354.001,227.4108],
[354.199,227.4075],
[354.399,248.1396],
[354.6,244.0158],
[354.901,259.6072],
[354.999,240.07909999999998],
[355.2,269.33750000000003],
[355.499,245.9556],
[355.699,1240.097],
[355.9,279.1363],
[356.201,245.944],
[356.399,234.23579999999998],
[356.599,275.8273],
[356.899,240.0944],
[357.099,244.9585],
[357.299,230.3354],
[357.599,297.67929999999996],
[357.7,241.0721],
[357.9,256.775],
[358.199,236.1833],
[358.301,1206.7085],
[358.6,243.45729999999998],
[358.899,255.4127],
[359,269.15119999999996],
[359.4,238.14350000000002],
[359.5,260.5792],
[359.8,242.0593],
[360.001,267.70070000000004],
[360.299,247.90609999999998],
[360.5,262.0283],
[360.699,253.43179999999998],
[360.899,280.11150000000004],
[361.099,240.11450000000002],
[361.401,268.3171],
[361.499,242.9418],
[361.801,270.3383],
[362,274.24359999999996],
[362.201,237.1675],
[362.401,279.1357],
[362.699,254.7353],
[362.999,244.0023],
[363.1,260.57439999999997],
[363.301,235.2151],
[363.501,267.423],
[363.901,236.1927],
[364,290.8643],
[364.201,246.7955],
[364.499,267.42470000000003],
[364.801,265.4722],
[364.899,249.85999999999999],
[365.201,225.4558],
[365.401,267.4241],
[365.599,244.9742],
[365.799,256.6862],
[365.999,240.09130000000002],
[366.301,231.43800000000002],
[366.499,257.0792],
[366.699,233.20469999999997],
[367.001,243.98590000000002],
[367.099,232.26420000000002],
[367.499,277.16659999999996],
[367.599,243.0043],
[367.799,235.21339999999998],
[368.199,231.3153],
[368.301,250.8306],
[368.501,238.1385],
[368.701,230.35240000000002],
[369.099,263.5194],
[369.201,245.9255],
[369.499,238.8508],
[369.699,225.10350000000003],
[369.801,232.8867],
[370.099,246.9277],
[370.401,238.1351],
[370.499,246.464],
[370.899,275.22950000000003],
[371.099,245.9518],
[371.201,275.2072],
[371.401,236.1686],
[371.801,231.3109],
[371.899,250.8318],
[372.199,264.7205],
[372.4,246.9396],
[372.6,1463.8509],
[372.801,243.68619999999999],
[373.099,1448.2154999999998],
[373.201,262.37719999999996],
[373.5,688.1034000000001],
[373.699,735.9042999999999],
[373.899,286.94350000000003],
[374.1,522.1586],
[374.3,305.4864],
[374.701,298.65500000000003],
[374.799,246.9319],
[375.101,229.86960000000002],
[375.299,240.1402],
[375.5,240.0787],
[375.799,274.256],
[375.999,242.0485],
[376.2,223.5075],
[376.499,255.3703],
[376.6,270.463],
[376.9,244.4387],
[377.101,245.5979],
[377.3,260.59409999999997],
[377.5,239.1275],
[377.799,252.78990000000002],
[377.901,242.063],
[378.199,275.218],
[378.399,260.0256],
[378.599,254.0648],
[378.799,281.06239999999997],
[379.199,236.48749999999998],
[379.401,272.80080000000004],
[379.599,244.98],
[379.799,257.6622],
[379.999,261.5596],
[380.2,265.4718],
[380.499,248.90619999999998],
[380.8,244.5772],
[380.899,265.0727],
[381.201,252.74609999999998],
[381.4,290.6725],
[381.499,285.8774],
[381.801,240.6055],
[382.1,221.5684],
[382.201,244.9481],
[382.599,245.0026],
[382.799,265.4726],
[383,1394.5149999999999],
[383.101,265.0344],
[383.399,242.0303],
[383.599,270.3368],
[383.901,248.448],
[383.999,261.1055],
[384.3,237.19039999999998],
[384.499,235.2157],
[384.799,247.90290000000002],
[384.901,238.14350000000002],
[385.101,230.3504],
[385.501,242.1591],
[385.699,232.2209],
[385.899,252.7935],
[386.201,223.06210000000002],
[386.401,1356.1733],
[386.499,232.2931],
[386.801,1476.7128],
[386.899,258.6365],
[387.2,384.5481],
[387.499,366.3612],
[387.7,1353.6457],
[387.799,254.7665],
[388.1,295.139],
[388.4,245.48],
[388.5,264.0081],
[388.701,250.83159999999998],
[389.099,247.9059],
[389.2,265.4746],
[389.499,240.0953],
[389.801,251.18649999999997],
[390,281.74830000000003],
[390.199,288.9138],
[390.399,240.69889999999998],
[390.701,1444.9582],
[390.799,250.3626],
[391.099,260.5782],
[391.299,247.90400000000002],
[391.499,1402.0209000000002],
[391.7,296.7013],
[391.901,325.9779],
[392.101,273.25579999999997],
[392.399,308.96299999999997],
[392.6,261.10060000000004],
[392.8,275.2306],
[392.999,253.75940000000003],
[393.3,239.1192],
[393.501,255.71769999999998],
[393.701,232.2834],
[393.899,261.2614],
[394.2,283.4744],
[394.499,238.2124],
[394.6,256.7864],
[394.801,241.0798],
[395.099,226.4316],
[395.3,279.1344],
[395.499,253.7583],
[395.701,266.4415],
[395.999,243.0302],
[396.2,240.1188],
[396.399,273.31260000000003],
[396.699,264.57570000000004],
[396.801,245.9495],
[397.201,267.4138],
[397.401,236.1823],
[397.599,286.9436],
[397.799,239.10500000000002],
[398.101,271.3272],
[398.3,258.2044],
[398.499,1418.586],
[398.6,265.5273],
[399,281.0177],
[399.201,247.90370000000001],
[399.299,241.0744],
[399.499,297.6787],
[399.8,234.2405],
[399.999,233.7686],
[400.201,250.83169999999998],
[400.501,292.80830000000003],
[400.699,257.3208],
[400.999,238.1631],
[401.199,284.0145],
[401.399,241.087],
[401.599,275.23150000000004],
[401.901,253.7738],
[401.999,286.9794],
[402.299,262.5423],
[402.599,276.8554],
[402.7,284.9925],
[402.9,239.7826],
[403.301,278.2017],
[403.4,248.4204],
[403.701,237.2053],
[403.799,272.3068],
[404.001,249.8563],
[404.401,247.9157],
[404.6,252.78250000000003],
[404.8,1330.1536999999998],
[404.899,267.1333],
[405.3,259.81759999999997],
[405.501,244.6517],
[405.7,244.01129999999998],
[405.901,275.2316],
[406.101,241.0721],
[406.3,253.7589],
[406.501,236.2109],
[406.699,263.0501],
[406.999,228.3408],
[407.301,245.2411],
[407.501,244.2885],
[407.6,273.30359999999996],
[407.899,240.07999999999998],
[408.201,240.0995],
[408.299,263.5118],
[408.599,243.0359],
[408.799,257.6631],
[408.999,271.32820000000004],
[409.301,260.185],
[409.4,247.0043],
[409.801,272.3224],
[409.9,266.4476],
[410.099,262.5446],
[410.3,279.1363],
[410.701,282.0507],
[410.799,267.2489],
[411.101,256.6605],
[411.2,1446.0774000000001],
[411.5,280.11039999999997],
[411.701,302.29220000000004],
[411.999,248.8792],
[412.101,269.36690000000004],
[412.399,249.8537],
[412.7,262.5052],
[412.901,251.8246],
[413.2,285.2901],
[413.299,257.6854],
[413.599,243.6795],
[413.7,256.8012],
[413.901,244.9612],
[414.199,289.87039999999996],
[414.399,248.8787],
[414.6,271.3104],
[414.899,250.8321],
[415.2,272.0597],
[415.3,250.56430000000003],
[415.499,253.44850000000002],
[415.799,275.9209],
[415.999,257.6636],
[416.3,250.83109999999996],
[416.5,258.6284],
[416.8,246.9445],
[416.901,284.01500000000004],
[417.199,240.0956],
[417.299,252.9303],
[417.699,290.4643],
[417.8,251.7527],
[418.099,249.838],
[418.299,256.6892],
[418.6,266.4327],
[418.801,245.9384],
[419.001,249.4298],
[419.2,1379.8762],
[419.299,251.58009999999996],
[419.699,265.8827],
[419.799,277.4841],
[420,255.6289],
[420.401,275.2556],
[420.5,252.78390000000002],
[420.799,270.378],
[420.9,253.7214],
[421.3,227.59029999999998],
[421.499,261.4962],
[421.699,245.7265],
[421.901,297.4039],
[422.101,253.33169999999998],
[422.401,292.8014],
[422.5,243.0271],
[422.699,266.8689],
[422.899,272.4583],
[423.3,248.8673],
[423.499,256.1499],
[423.601,246.09619999999998],
[423.899,272.3165],
[424.099,244.7783],
[424.301,258.7011],
[424.601,263.3642],
[424.8,287.662],
[425.101,239.8295],
[425.199,235.41400000000002],
[425.5,257.6631],
[425.7,1451.7917],
[425.899,258.5291],
[426.1,270.4803],
[426.399,234.959],
[426.6,279.4956],
[426.899,241.0708],
[427.1,273.2733],
[427.3,252.7832],
[427.501,272.2883],
[427.799,250.83109999999996],
[428,263.5113],
[428.199,283.3242],
[428.301,263.81539999999995],
[428.699,256.693],
[428.801,313.2931],
[429.1,238.1532],
[429.399,265.47700000000003],
[429.599,252.782],
[429.701,291.8084],
[429.901,299.6315],
[430.101,261.5674],
[430.499,253.9053],
[430.6,274.39950000000005],
[430.8,268.9109],
[431.2,275.23720000000003],
[431.401,252.76739999999998],
[431.601,260.59159999999997],
[431.8,1455.4455],
[431.9,286.9434],
[432.3,244.9808],
[432.499,258.27889999999996],
[432.699,249.1589],
[432.8,260.6733],
[433.2,253.7648],
[433.4,253.7588],
[433.499,283.9832],
[433.801,243.0067],
[434.001,270.35179999999997],
[434.3,269.3724],
[434.5,238.3624],
[434.799,247.401],
[434.9,278.1584],
[435.199,250.8418],
[435.399,264.4767],
[435.5,282.0632],
[435.799,267.42359999999996],
[436.101,266.1473],
[436.299,241.4955],
[436.499,1689.0822],
[436.7,284.9895],
[436.999,2004.1341],
[437.1,314.1769],
[437.299,1214.1399],
[437.701,813.001],
[437.799,1462.6933],
[437.999,1384.3615],
[438.199,489.52000000000004],
[438.501,587.2258],
[438.7,781.6639],
[439,348.3347],
[439.199,276.9319],
[439.501,289.8956],
[439.599,260.5907],
[439.799,276.20660000000004],
[440.201,285.9758],
[440.4,239.1193],
[440.6,265.4548],
[440.801,254.73259999999996],
[441.001,295.00300000000004],
[441.199,250.86370000000002],
[441.4,257.3779],
[441.704,253.75959999999998],
[442,285.9678],
[442.099,1447.6024],
[442.299,264.4955],
[442.5,301.5838],
[442.7,266.456],
[443.101,265.9991],
[443.201,253.77129999999997],
[443.499,241.9503],
[443.699,268.1521],
[444,278.55780000000004],
[444.201,255.3568],
[444.299,268.3791],
[444.7,240.1225],
[444.899,280.1123],
[445.099,295.73909999999995],
[445.299,255.7109],
[445.599,246.86739999999998],
[445.701,298.1357],
[446,253.75969999999998],
[446.201,240.1134],
[446.499,246.9281],
[446.599,268.3995],
[446.901,252.80019999999996],
[446.999,249.8564],
[447.399,268.7336],
[447.5,270.3503],
[447.7,248.8951],
[448.001,259.9553],
[448.199,244.99679999999998],
[448.4,245.6582],
[448.701,269.37489999999997],
[448.8,261.5666],
[449.2,272.3021],
[449.299,259.6289],
[449.601,260.59],
[449.9,239.3237],
[450,264.7612],
[450.3,255.19910000000002],
[450.501,275.9298],
[450.599,257.09340000000003],
[451,254.74710000000002],
[451.199,268.3994],
[451.3,251.8064],
[451.699,250.828],
[451.801,267.4507],
[452.099,286.5044],
[452.201,259.5857],
[452.601,266.9701],
[452.799,253.254],
[452.899,261.5684],
[453.099,290.851],
[453.3,262.54490000000004],
[453.601,243.9832],
[453.801,289.8709],
[454.099,251.60840000000002],
[454.301,280.8996],
[454.499,264.36510000000004],
[454.699,285.0424],
[454.899,256.2237],
[455.199,249.8853],
[455.399,244.0155],
[455.701,264.4941],
[455.799,263.52009999999996],
[456,245.9522],
[456.399,246.025],
[456.599,262.998],
[456.701,243.523],
[456.9,254.71670000000003],
[457.3,237.1636],
[457.501,264.4976],
[457.701,263.5364],
[457.8,243.0359],
[458.199,254.4819],
[458.399,278.749],
[458.499,246.9085],
[458.9,307.08790000000005],
[459.1,272.30379999999997],
[459.299,262.5561],
[459.401,270.35130000000004],
[459.801,267.43460000000005],
[459.9,1540.9495],
[460.1,264.4952],
[460.3,262.0802],
[460.699,256.7068],
[460.9,264.8324],
[461.101,289.871],
[461.3,247.9008],
[461.599,299.62719999999996],
[461.7,272.3201],
[462,270.3503],
[462.201,250.84810000000002],
[462.401,271.3311],
[462.699,257.94329999999997],
[462.901,253.75969999999998],
[463.1,264.4957],
[463.3,232.3154],
[463.501,271.3271],
[463.8,242.04749999999999],
[464,284.988],
[464.099,247.4684],
[464.401,316.8881],
[464.601,244.6413],
[464.8,273.64820000000003],
[465.001,293.1199],
[465.399,255.70100000000002],
[465.5,249.8553],
[465.8,280.11],
[466,251.8075],
[466.201,282.06170000000003],
[466.401,261.1101],
[466.6,273.2848],
[466.8,252.77159999999998],
[467.199,259.6889],
[467.401,241.04510000000002],
[467.5,275.2088],
[467.699,251.80710000000002],
[468.001,245.9725],
[468.299,257.6643],
[468.5,252.7938],
[468.699,274.4104],
[468.901,284.47610000000003],
[469.1,258.34240000000005],
[469.401,239.6532],
[469.599,232.2677],
[469.799,280.1118],
[469.999,283.999],
[470.299,243.9907],
[470.499,254.73459999999997],
[470.8,291.3548],
[470.9,247.4383],
[471.101,278.1631],
[471.301,260.2896],
[471.7,259.61560000000003],
[471.799,281.077],
[472,280.1441],
[472.4,241.07590000000002],
[472.5,259.6145],
[472.701,282.085],
[472.999,257.687],
[473.299,257.4303],
[473.499,237.2079],
[473.701,258.2122],
[473.901,246.5149],
[474.099,277.18710000000004],
[474.401,253.76559999999998],
[474.601,249.84519999999998],
[474.801,1516.9913999999999],
[474.899,269.3952],
[475.301,251.8073],
[475.399,277.1837],
[475.701,278.7657],
[475.9,260.2845],
[476.2,269.3479],
[476.4,255.7107],
[476.5,274.254],
[476.901,267.3848],
[477.1,254.7547],
[477.199,281.09139999999996],
[477.501,253.4559],
[477.7,275.06370000000004],
[477.999,262.2856],
[478.2,278.1585],
[478.399,275.2465],
[478.599,260.6031],
[478.901,284.0161],
[478.999,268.3992],
[479.299,280.11019999999996],
[479.601,305.3277],
[479.799,266.4221],
[479.899,272.5727],
[480.101,256.51439999999997],
[480.399,270.0216],
[480.701,244.8418],
[480.799,300.3369],
[480.999,277.1834],
[481.399,278.1727],
[481.6,247.9031],
[481.701,1574.5171999999998],
[481.901,278.8579],
[482.199,252.80019999999996],
[482.5,293.60979999999995],
[482.699,259.6194],
[482.899,272.9323],
[483.101,260.6728],
[483.4,255.71149999999997],
[483.6,259.6162],
[483.8,303.5357],
[484.099,266.4492],
[484.299,272.3169],
[484.499,263.05260000000004],
[484.701,248.2386],
[484.8,1506.2584000000002],
[485.101,284.6983],
[485.3,265.76],
[485.501,259.22479999999996],
[485.901,304.515],
[485.999,1504.0371000000002],
[486.199,278.1595],
[486.501,260.5904],
[486.699,255.7106],
[486.899,275.7395],
[487.201,277.0043],
[487.401,257.44509999999997],
[487.6,245.4905],
[487.799,256.23449999999997],
[488.001,274.2545],
[488.201,253.7588],
[488.5,237.167],
[488.701,256.6871],
[488.9,243.9968],
[489.199,269.8956],
[489.401,249.5077],
[489.6,248.9028],
[489.899,254.74809999999997],
[490,269.3775],
[490.299,251.8064],
[490.5,310.36809999999997],
[490.801,238.1547],
[490.9,249.8496],
[491.3,261.9981],
[491.5,254.6988],
[491.699,265.2933],
[491.8,248.4054],
[492.101,239.4441],
[492.3,267.9306],
[492.6,256.6855],
[492.8,273.2776],
[492.899,241.0975],
[493.299,266.2133],
[493.499,252.78659999999996],
[493.7,271.334],
[493.8,248.8758],
[494.099,250.5351],
[494.299,267.1307],
[494.601,262.5289],
[494.699,280.0936],
[495.1,252.7736],
[495.299,1541.9747],
[495.399,268.3877],
[495.801,315.30789999999996],
[495.9,293.8368],
[496.1,256.68809999999996],
[496.399,276.4969],
[496.701,255.7108],
[496.799,244.9734],
[497,274.2541],
[497.201,275.2303],
[497.601,279.125],
[497.801,1607.1027],
[497.899,273.80670000000003],
[498.099,298.21389999999997],
[498.4,317.6492],
[498.6,264.8931],
[498.9,290.8481],
[498.999,304.5081],
[499.301,262.5462],
[499.6,305.5488],
[499.701,274.2565],
[500,266.95750000000004],
[500.301,1561.0826],
[500.4,288.7262],
[500.599,292.21209999999996],
[500.799,271.0523],
[501.001,291.82419999999996],
[501.399,296.7025],
[501.599,251.8069],
[501.799,281.089],
[501.999,1507.5936],
[502.199,266.43699999999995],
[502.499,299.0221],
[502.599,250.4866],
[502.899,259.1967],
[503.2,290.6495],
[503.299,313.0961],
[503.6,260.5983],
[503.699,268.4085],
[504.1,263.5197],
[504.3,243.0401],
[504.5,269.6521],
[504.599,260.8591],
[505,258.9445],
[505.099,297.985],
[505.3,277.16400000000004],
[505.599,262.5448],
[505.799,292.8199],
[505.999,288.8925],
[506.199,257.6623],
[506.399,262.0779],
[506.801,247.9044],
[506.999,265.1225],
[507.2,281.78229999999996],
[507.301,268.5338],
[507.599,276.209],
[507.799,273.27909999999997],
[508,252.78859999999997],
[508.4,274.2816],
[508.6,252.77880000000002],
[508.699,299.6294],
[508.899,264.79110000000003],
[509.1,278.5304],
[509.501,256.5145],
[509.7,1594.0964],
[509.799,265.8639],
[510.201,307.43989999999997],
[510.401,1833.0537],
[510.499,441.1514],
[510.801,492.8785],
[510.9,393.32669999999996],
[511.3,254.7341],
[511.501,260.5907],
[511.599,1534.3979000000002],
[511.799,396.4874],
[512.2,274.25719999999995],
[512.4,290.8203],
[512.499,266.45869999999996],
[512.699,297.67929999999996],
[512.999,259.6161],
[513.301,260.4157],
[513.4,253.46689999999998],
[513.799,264.97520000000003],
[513.9,286.0264],
[514.199,336.267],
[514.401,261.5673],
[514.499,315.2653],
[514.799,262.54359999999997],
[514.999,273.2622],
[515.301,268.3922],
[515.601,288.23720000000003],
[515.699,289.7735],
[516,255.1216],
[516.199,265.9217],
[516.499,240.72979999999998],
[516.599,243.99460000000002],
[516.799,277.19739999999996],
[517,248.85180000000003],
[517.299,295.7203],
[517.499,252.77949999999998],
[517.8,248.7055],
[518.001,265.0294],
[518.099,267.113],
[518.401,253.7625],
[518.601,269.37699999999995],
[518.9,268.4017],
[519.1,243.9988],
[519.399,261.5575],
[519.501,245.9469],
[519.701,262.5431],
[520.101,248.861],
[520.299,258.25399999999996],
[520.399,249.5977],
[520.599,246.928],
[520.999,255.7122],
[521.101,243.9835],
[521.4,259.6286],
[521.499,253.76339999999996],
[521.7,277.6291],
[522.1,270.971],
[522.199,242.0253],
[522.399,264.287],
[522.7,256.6874],
[522.9,287.9212],
[523.199,267.42339999999996],
[523.301,253.77129999999997],
[523.701,302.0855],
[523.8,267.93440000000004],
[524.1,281.3271],
[524.299,257.3752],
[524.599,245.3485],
[524.801,273.7155],
[525,262.5235],
[525.099,305.4878],
[525.299,248.8791],
[525.699,267.4433],
[525.9,260.5751],
[526.001,251.3533],
[526.301,241.6833],
[526.501,232.2895],
[526.799,276.2873],
[526.899,281.4951],
[527.199,250.84659999999997],
[527.499,251.82729999999998],
[527.699,259.61580000000004],
[527.9,273.2798],
[528.001,282.05780000000004],
[528.401,270.35179999999997],
[528.5,278.2138],
[528.701,274.5455],
[529.001,248.87509999999997],
[529.299,247.90380000000002],
[529.499,281.0881],
[529.7,255.71129999999997],
[529.901,291.8104],
[530.199,276.8704],
[530.399,258.3139],
[530.5,276.2077],
[530.699,322.1713],
[530.999,273.50239999999997],
[531.299,267.9576],
[531.399,257.66339999999997],
[531.601,266.444],
[532.001,267.3856],
[532.201,1655.9648],
[532.3,293.7749],
[532.499,362.4293],
[532.799,376.7393],
[533,262.5004],
[533.3,292.1624],
[533.599,264.4936],
[533.701,284.0175],
[533.901,260.59250000000003],
[534.2,251.80560000000003],
[534.501,275.2303],
[534.699,281.59250000000003],
[534.801,254.2661],
[535.1,276.4475],
[535.401,247.67839999999998],
[535.601,264.4692],
[535.799,262.6273],
[536,285.96700000000004],
[536.101,260.59529999999995],
[536.499,288.8953],
[536.601,260.5879],
[536.8,269.3653],
[537.201,251.71779999999998],
[537.401,270.3138],
[537.499,254.3847],
[537.8,279.2463],
[538.099,252.55949999999999],
[538.201,1544.1044000000002],
[538.4,273.7937],
[538.6,277.192],
[538.899,252.7837],
[539.099,289.8634],
[539.4,255.71129999999997],
[539.499,264.02759999999995],
[539.699,276.72229999999996],
[540,237.6028],
[540.199,270.3758],
[540.399,287.682],
[540.799,264.4955],
[540.999,278.1521],
[541.199,258.6391],
[541.399,243.02380000000002],
[541.6,280.1245],
[541.799,250.5863],
[541.999,270.8213],
[542.199,254.4381],
[542.499,248.89249999999998],
[542.7,257.6671],
[543.001,285.9672],
[543.099,300.60740000000004],
[543.4,291.8233],
[543.699,272.3065],
[543.9,263.5217],
[544.199,276.229],
[544.4,266.42719999999997],
[544.501,266.1333],
[544.799,278.937],
[545.001,1736.1816999999999],
[545.199,263.52779999999996],
[545.399,289.8718],
[545.701,284.9749],
[545.799,301.6085],
[546.101,327.6476],
[546.299,262.44210000000004],
[546.6,254.7357],
[546.901,296.7066],
[547.101,261.56800000000004],
[547.199,257.6629],
[547.401,290.8519],
[547.801,264.4954],
[547.899,268.3991],
[548.201,272.08700000000005],
[548.399,294.30830000000003],
[548.499,261.5688],
[548.8,273.02070000000003],
[549.001,261.9458],
[549.199,293.1437],
[549.499,256.7006],
[549.7,300.6073],
[549.999,260.5899],
[550.1,270.3506],
[550.301,285.9721],
[550.599,276.20230000000004],
[550.799,250.11299999999997],
[551.101,275.2307],
[551.199,1889.0687000000003],
[551.501,327.4659],
[551.7,596.3267],
[551.999,703.696],
[552.101,366.9943],
[552.399,505.58349999999996],
[552.599,314.27290000000005],
[552.799,266.4359],
[553.199,265.4717],
[553.4,1561.871],
[553.499,276.1887],
[553.699,254.73479999999998],
[553.899,281.0731],
[554.201,264.4955],
[554.399,275.219],
[554.599,274.2553],
[554.901,262.1207],
[555.1,285.9662],
[555.3,268.6105],
[555.501,262.56669999999997],
[555.8,283.04],
[556.099,245.94740000000002],
[556.299,265.4794],
[556.4,249.85660000000001],
[556.699,271.8426],
[557,259.7005],
[557.201,284.7955],
[557.3,241.2341],
[557.699,259.87399999999997],
[557.9,244.00359999999998],
[558.101,255.71120000000002],
[558.199,1575.8071],
[558.399,277.15770000000003],
[558.699,278.1555],
[558.9,258.6395],
[559.099,269.7638],
[559.499,256.3008],
[559.7,296.7265],
[559.801,327.5272],
[560.099,252.7445],
[560.4,279.11940000000004],
[560.5,241.0597],
[560.801,263.50079999999997],
[560.9,253.77779999999998],
[561.2,278.9465],
[561.401,249.1601],
[561.601,275.0165],
[561.801,262.9304],
[561.999,273.9662],
[562.301,254.5133],
[562.599,267.923],
[562.801,255.71159999999998],
[563,275.2258],
[563.3,281.10049999999995],
[563.501,264.4937],
[563.599,273.29940000000005],
[563.8,253.7554],
[564.199,256.6917],
[564.3,237.1721],
[564.5,255.05040000000002],
[564.9,263.51989999999995],
[565.1,260.59529999999995],
[565.201,291.82239999999996],
[565.401,290.8483],
[565.699,259.6132],
[565.9,302.9937],
[566.099,258.2128],
[566.299,249.42139999999998],
[566.701,275.1573],
[566.9,266.9833],
[566.999,280.1114],
[567.2,254.7413],
[567.499,303.5355],
[567.801,273.2832],
[568.001,288.87980000000005],
[568.099,274.2542],
[568.399,282.9685],
[568.699,259.30969999999996],
[568.799,286.6446],
[569.099,259.2865],
[569.401,258.6387],
[569.601,299.6297],
[569.8,301.5839],
[569.899,252.7529],
[570.299,245.95139999999998],
[570.5,265.1566],
[570.699,270.356],
[570.9,260.2176],
[571.201,290.3737],
[571.301,258.59569999999997],
[571.501,254.7322],
[571.799,251.8077],
[572,263.4995],
[572.2,266.4466],
[572.5,264.49679999999995],
[572.601,272.3181],
[572.9,304.6559],
[573.1,273.42490000000004],
[573.399,272.2912],
[573.501,299.6199],
[573.701,269.3754],
[574,247.9044],
[574.201,259.6146],
[574.5,245.74679999999998],
[574.6,267.8388],
[575,268.988],
[575.1,1683.6989],
[575.299,254.28529999999998],
[575.5,278.1333],
[575.8,264.4956],
[576.099,269.37260000000003],
[576.201,255.71670000000003],
[576.401,296.704],
[576.699,270.3508],
[576.9,271.32849999999996],
[577.1,251.3069],
[577.499,250.838],
[577.699,1650.9224],
[577.8,273.2795],
[578.001,290.8471],
[578.299,273.27889999999996],
[578.599,284.9972],
[578.799,278.16380000000004],
[578.999,1587.2513000000001],
[579.101,306.9542],
[579.401,265.49580000000003],
[579.599,253.7589],
[579.9,266.4535],
[580.101,300.595],
[580.399,258.1033],
[580.501,287.37010000000004],
[580.799,243.6455],
[580.999,257.9753],
[581.299,241.06910000000002],
[581.4,250.83169999999998],
[581.699,243.005],
[581.899,263.51989999999995],
[582.201,283.0559],
[582.3,257.1968],
[582.601,284.0645],
[582.7,258.7501],
[583.1,242.7027],
[583.201,269.0799],
[583.501,235.9923],
[583.799,255.70349999999996],
[583.901,284.99170000000004],
[584.199,259.6167],
[584.299,258.6453],
[584.601,254.7221],
[584.899,273.30379999999997],
[585.1,258.2216],
[585.299,275.74179999999996],
[585.599,248.231],
[585.701,262.2969],
[585.899,276.04990000000004],
[586.2,284.0155],
[586.299,246.9239],
[586.6,279.1329],
[586.8,255.71189999999999],
[587.099,294.3604],
[587.4,258.90590000000003],
[587.499,311.599],
[587.799,240.83350000000002],
[587.9,272.901],
[588.299,288.8949],
[588.5,254.73639999999997],
[588.699,272.3017],
[588.8,286.94989999999996],
[589.099,248.8741],
[589.399,242.0289],
[589.501,272.28400000000005],
[589.799,258.6277],
[590.1,261.1888],
[590.301,294.7522],
[590.4,265.4733],
[590.701,278.1594],
[590.901,282.07500000000005],
[591.199,240.0977],
[591.299,244.01819999999998],
[591.6,261.0672],
[591.899,260.57000000000005],
[592.099,2914.4046000000003],
[592.201,262.752],
[592.499,302.116],
[592.601,3296.3757],
[592.901,618.778],
[593.101,3650.5951],
[593.401,1130.5633],
[593.499,913.0779],
[593.801,6153.9951],
[593.999,2751.2121],
[594.199,4680.7721],
[594.399,756.7481],
[594.799,4864.8103],
[594.901,2183.0798],
[595.1,4367.0470000000005],
[595.301,1450.8041999999998],
[595.599,494.8418],
[595.899,4450.015600000001],
[596,1685.8335],
[596.301,2246.9475],
[596.5,1248.321],
[596.799,2434.4706],
[596.899,1648.4963000000002],
[597.301,2653.8632],
[597.399,2555.3142],
[597.599,1633.9631],
[597.8,1864.3064],
[598.201,1266.0078],
[598.299,1655.4435],
[598.501,1163.0313999999998],
[598.701,1254.0648],
[598.9,1078.4087],
[599.199,755.421],
[599.501,536.7823999999999],
[599.699,536.799],
[599.8,566.0668],
[600.099,285.97159999999997],
[600.299,304.5113],
[600.601,245.2163],
[600.699,1667.7267],
[600.999,295.86220000000003],
[601.201,271.0048],
[601.499,262.5456],
[601.801,264.4728],
[601.899,292.79949999999997],
[602.201,252.7832],
[602.299,291.8246],
[602.599,239.1308],
[602.901,294.1841],
[602.999,289.30289999999997],
[603.2,256.7046],
[603.401,302.4344],
[603.699,259.6275],
[604,266.4211],
[604.1,250.83879999999996],
[604.501,273.68019999999996],
[604.599,253.1912],
[604.899,288.41810000000004],
[605.001,1691.9051],
[605.199,289.8548],
[605.599,257.66830000000004],
[605.699,309.3882],
[605.899,274.25],
[606.099,290.8397],
[606.401,255.7105],
[606.6,299.3634],
[606.799,275.2747],
[606.999,244.6283],
[607.401,236.1869],
[607.5,236.1928],
[607.701,248.8766],
[608.1,268.39889999999997],
[608.199,254.7392],
[608.4,281.09279999999995],
[608.599,277.06969999999995],
[608.801,249.9003],
[609.2,241.0786],
[609.401,289.1607],
[609.499,261.5668],
[609.899,264.46599999999995],
[610.101,248.38950000000003],
[610.201,267.4235],
[610.401,247.01129999999998],
[610.601,257.6646],
[610.901,241.0584],
[611.1,235.216],
[611.399,264.20799999999997],
[611.701,260.7079],
[611.8,1656.0575],
[612,269.0977],
[612.201,247.44469999999998],
[612.501,284.991],
[612.701,258.6431],
[613,284.9914],
[613.099,265.4726],
[613.499,261.6517],
[613.7,271.3303],
[613.9,272.8813],
[613.999,267.0419],
[614.3,278.174],
[614.601,265.4725],
[614.801,253.7388],
[614.999,279.1523],
[615.199,261.58169999999996],
[615.399,269.89639999999997],
[615.6,280.5411],
[615.799,256.86199999999997],
[616,268.0435],
[616.299,256.6025],
[616.5,267.9489],
[616.699,250.8205],
[617,270.3478],
[617.201,274.2566],
[617.5,251.80799999999996],
[617.7,273.2798],
[617.901,242.5064],
[618.099,272.3237],
[618.401,255.71329999999998],
[618.601,284.0236],
[618.699,1720.9279],
[618.999,279.1289],
[619.301,261.5656],
[619.399,301.4478],
[619.701,257.65130000000005],
[620,265.152],
[620.199,283.76050000000004],
[620.301,256.1721],
[620.599,238.2032],
[620.901,275.23290000000003],
[621.101,246.9435],
[621.199,254.7527],
[621.399,273.28520000000003],
[621.701,242.0298],
[621.899,276.20709999999997],
[622.099,273.27889999999996],
[622.3,259.3867],
[622.601,282.0627],
[622.899,250.8511],
[623.001,271.3272],
[623.401,318.1754],
[623.5,271.3137],
[623.699,282.0611],
[623.901,257.6641],
[624.101,278.157],
[624.499,253.79439999999997],
[624.699,255.413],
[624.9,306.4635],
[625,275.236],
[625.299,252.7879],
[625.599,270.3504],
[625.699,248.8805],
[626.101,264.6694],
[626.299,251.3959],
[626.499,250.64229999999998],
[626.699,255.75750000000002],
[627,1741.0709],
[627.101,265.4724],
[627.301,281.0283],
[627.501,267.4201],
[627.899,287.04540000000003],
[628.099,254.8187],
[628.201,274.2545],
[628.4,248.3476],
[628.799,255.5498],
[628.9,265.0364],
[629.199,267.4323],
[629.399,251.79489999999998],
[629.6,266.46009999999995],
[629.901,255.70730000000003],
[630.101,266.4512],
[630.199,277.1828],
[630.601,254.6135],
[630.701,260.835],
[631.001,246.9459],
[631.099,266.8496],
[631.499,283.0396],
[631.601,260.5908],
[631.801,278.1601],
[632.199,247.9031],
[632.399,279.11560000000003],
[632.5,252.8051],
[632.701,272.43739999999997],
[632.9,257.8011],
[633.299,251.57790000000003],
[633.401,312.8284],
[633.701,252.7837],
[634,1982.9396],
[634.1,250.85020000000003],
[634.299,305.4865],
[634.601,262.5444],
[634.9,282.13280000000003],
[635.001,2270.0491],
[635.199,255.81939999999997],
[635.499,2386.1068],
[635.601,402.1185],
[635.9,544.6369],
[636.199,591.1923],
[636.399,365.99739999999997],
[636.501,715.5378999999999],
[636.901,357.3476],
[637,459.8331],
[637.299,309.4111],
[637.601,265.55580000000003],
[637.701,285.5672],
[637.999,292.8012],
[638.199,255.71899999999997],
[638.4,269.39570000000003],
[638.699,245.93519999999998],
[638.899,307.4398],
[639,278.1415],
[639.299,276.8121],
[639.6,247.53810000000001],
[639.699,258.6415],
[639.899,244.29690000000002],
[640.301,262.53159999999997],
[640.501,1762.4989],
[640.6,265.4552],
[640.899,276.2085],
[641.099,258.6444],
[641.401,296.2534],
[641.501,264.4962],
[641.7,268.88],
[641.999,307.2278],
[642.201,277.1823],
[642.501,289.8705],
[642.701,256.68780000000004],
[642.799,286.9508],
[643.199,304.51099999999997],
[643.301,282.0633],
[643.6,286.9553],
[643.801,272.84580000000005],
[643.999,289.59770000000003],
[644.3,287.01349999999996],
[644.499,277.2232],
[644.801,297.713],
[644.901,266.9756],
[645.199,260.59139999999996],
[645.4,299.6313],
[645.501,274.2567],
[645.901,284.5183],
[646,262.0746],
[646.301,266.94669999999996],
[646.499,1825.5729000000001],
[646.699,273.8459],
[646.901,284.0018],
[647.2,267.3795],
[647.299,278.1606],
[647.601,257.6649],
[647.8,270.35110000000003],
[648.001,257.66450000000003],
[648.3,282.0901],
[648.499,250.35039999999998],
[648.7,268.3519],
[648.9,277.6751],
[649.101,253.2261],
[649.4,246.92700000000002],
[649.6,266.447],
[649.799,290.8484],
[650.1,261.572],
[650.301,282.0646],
[650.501,269.8888],
[650.801,264.4973],
[650.9,1670.8892],
[651.199,270.7414],
[651.499,256.7421],
[651.6,273.3271],
[652,278.1575],
[652.099,263.5052],
[652.401,254.73459999999997],
[652.601,254.7368],
[652.899,1607.6485],
[653.001,273.0134],
[653.299,249.842],
[653.499,243.03050000000002],
[653.601,257.59250000000003],
[653.9,262.0745],
[654.101,284.0155],
[654.299,254.7353],
[654.699,276.2115],
[654.801,242.0488],
[655.099,273.25890000000004],
[655.2,273.1051],
[655.399,251.612],
[655.699,294.1689],
[655.9,258.4424],
[656.2,256.68429999999995],
[656.4,244.0071],
[656.699,255.71509999999998],
[656.801,246.92739999999998],
[657.099,261.5679],
[657.4,258.2198],
[657.5,236.7543],
[657.8,255.01239999999999],
[657.901,237.79649999999998],
[658.201,250.8403],
[658.499,245.9472],
[658.7,251.823],
[658.9,232.2881],
[659.199,243.99960000000002],
[659.3,278.1519],
[659.501,255.7103],
[659.799,259.3891],
[659.9,295.27639999999997],
[660.3,294.15790000000004],
[660.499,249.8457],
[660.699,237.1683],
[660.8,292.7826],
[661.099,253.75959999999998],
[661.401,260.5945],
[661.5,242.03820000000002],
[661.799,250.8306],
[661.999,244.00140000000002],
[662.199,243.2082],
[662.499,277.1945],
[662.699,291.8238],
[663,242.0478],
[663.1,248.8852],
[663.299,239.1198],
[663.699,240.09459999999999],
[663.899,260.59389999999996],
[664.001,241.0909],
[664.201,258.3808],
[664.6,243.99970000000002],
[664.699,240.0975],
[665.001,241.0728],
[665.099,261.56649999999996],
[665.299,250.84509999999997],
[665.701,271.76860000000005],
[665.799,246.13080000000002],
[666.001,265.177],
[666.299,248.1063],
[666.5,245.96689999999998],
[666.699,293.38219999999995],
[666.901,273.2745],
[667.199,277.18330000000003],
[667.499,255.72299999999998],
[667.6,281.087],
[667.8,263.5073],
[668.001,256.6927],
[668.299,298.2593],
[668.6,253.0322],
[668.701,256.20739999999995],
[668.899,244.9739],
[669.199,266.44780000000003],
[669.4,252.7676],
[669.599,262.5596],
[670,261.49830000000003],
[670.101,250.78509999999997],
[670.399,275.7399],
[670.6,247.67759999999998],
[670.9,279.1551],
[670.999,254.73610000000002],
[671.199,239.1196],
[671.399,252.7833],
[671.8,243.0231],
[672.001,267.2156],
[672.099,245.74380000000002],
[672.4,273.0949],
[672.6,248.2287],
[672.9,268.4002],
[673.101,256.7015],
[673.2,254.7357],
[673.399,295.711],
[673.8,258.6418],
[673.9,266.4488],
[674.201,259.9633],
[674.501,258.4844],
[674.599,1866.1105],
[674.8,279.45779999999996],
[675.001,252.77169999999998],
[675.4,304.49330000000003],
[675.601,252.77149999999997],
[675.801,294.7527],
[675.999,251.809],
[676.099,273.36850000000004],
[676.5,291.8405],
[676.7,247.5991],
[676.799,243.3535],
[677.199,272.3042],
[677.3,251.80780000000001],
[677.501,249.8547],
[677.7,258.6239],
[678,255.7277],
[678.201,305.4887],
[678.401,246.5701],
[678.701,271.0948],
[678.999,265.8624],
[679.201,310.9577],
[679.399,268.40029999999996],
[679.599,260.5922],
[679.701,280.11170000000004],
[680,293.77619999999996],
[680.299,259.6164],
[680.401,272.30379999999997],
[680.801,281.6173],
[681,262.5454],
[681.201,287.6513],
[681.3,2083.3078],
[681.5,303.5642],
[681.799,267.4268],
[682.101,273.2799],
[682.299,2648.8697],
[682.401,287.9654],
[682.801,513.36],
[682.899,429.4559],
[683.201,460.67289999999997],
[683.299,2531.9671000000003],
[683.599,507.53329999999994],
[683.799,1148.7149000000002],
[684,496.7838],
[684.301,269.3943],
[684.499,666.7309],
[684.801,737.0436],
[685,402.43640000000005],
[685.2,506.0291],
[685.501,503.6775999999999],
[685.601,371.40450000000004],
[685.799,257.6456],
[686,244.0008],
[686.399,276.2011],
[686.601,263.5214],
[686.699,272.3032],
[687.001,276.2504],
[687.299,251.76870000000002],
[687.401,278.1023],
[687.601,262.8842],
[687.901,253.0111],
[688.2,275.2285],
[688.4,258.6394],
[688.601,249.8407],
[688.7,257.664],
[689,261.1368],
[689.199,251.52609999999999],
[689.4,260.74809999999997],
[689.8,263.777],
[689.999,242.0397],
[690.199,267.44059999999996],
[690.399,273.8123],
[690.601,249.85180000000003],
[690.899,254.7312],
[691.099,248.8796],
[691.3,243.0231],
[691.599,274.8258],
[691.8,243.02499999999998],
[691.899,243.9966],
[692.101,262.1907],
[692.401,244.9767],
[692.6,258.6293],
[692.801,249.621],
[693.001,282.78209999999996],
[693.299,260.57869999999997],
[693.601,286.9438],
[693.7,275.2314],
[693.999,271.3365],
[694.3,249.7182],
[694.4,278.0243],
[694.701,256.68980000000005],
[694.901,261.56780000000003],
[695.2,257.6346],
[695.4,252.80370000000002],
[695.6,236.1873],
[695.801,243.99460000000002],
[696.001,276.19939999999997],
[696.299,295.7015],
[696.401,255.7294],
[696.599,262.5585],
[696.901,260.6134],
[697.101,281.6803],
[697.3,255.0276],
[697.599,261.58480000000003],
[697.901,271.345],
[698.099,238.1487],
[698.299,258.6232],
[698.499,264.4953],
[698.699,240.0947],
[698.9,258.6393],
[699.1,248.87980000000002],
[699.399,248.99550000000002],
[699.699,279.6431],
[699.801,249.3881],
[700.101,266.435],
[700.2,275.23150000000004],
[700.4,251.79030000000003],
[700.8,255.70680000000002],
[700.899,257.6925],
[701.099,278.1396],
[701.401,268.4068],
[701.7,265.4504],
[701.801,287.101],
[702.001,254.76140000000004],
[702.3,266.427],
[702.5,258.6021],
[702.701,258.6234],
[702.901,288.8795],
[703.101,245.9325],
[703.499,267.4246],
[703.699,277.18350000000004],
[703.801,249.8547],
[704.001,271.3275],
[704.3,275.9086],
[704.5,251.357],
[704.7,263.881],
[705.001,239.1196],
[705.201,273.27259999999995],
[705.5,241.0724],
[705.599,280.1116],
[705.901,243.0234],
[706.101,267.4436],
[706.4,241.0575],
[706.599,264.49089999999995],
[706.899,253.4474],
[707.001,272.9618],
[707.199,274.2424],
[707.499,276.20709999999997],
[707.601,250.8106],
[708.001,270.3075],
[708.201,242.031],
[708.3,273.94960000000003],
[708.6,249.8177],
[708.801,263.5197],
[709,241.04719999999998],
[709.201,308.43559999999997],
[709.499,237.6665],
[709.701,291.91060000000004],
[709.999,252.42350000000002],
[710.101,265.108],
[710.501,238.09920000000002],
[710.7,251.80780000000001],
[710.799,258.1762],
[710.999,262.0532],
[711.399,253.75930000000002],
[711.501,1829.964],
[711.7,275.2393],
[711.999,256.5279],
[712.3,257.8837],
[712.5,266.9553],
[712.6,259.96819999999997],
[712.8,274.565],
[713.2,253.74210000000002],
[713.401,287.59950000000003],
[713.6,244.9752],
[713.699,291.8139],
[714.1,242.0429],
[714.201,1742.1559],
[714.401,287.9187],
[714.599,278.1594],
[714.799,252.78270000000003],
[715.1,244.95600000000002],
[715.399,268.4027],
[715.6,269.3514],
[715.899,253.75920000000002],
[716.001,252.78669999999997],
[716.299,278.9189],
[716.401,257.4456],
[716.801,246.92739999999998],
[717.001,252.7838],
[717.099,271.189],
[717.299,239.95759999999999],
[717.5,271.3277],
[717.899,274.2558],
[718.101,269.3286],
[718.199,249.8583],
[718.399,261.5681],
[718.799,249.8639],
[718.999,248.87400000000002],
[719.1,266.4491],
[719.4,258.6398],
[719.701,269.3766],
[719.899,255.66519999999997],
[720.1,272.8666],
[720.301,247.90400000000002],
[720.599,291.82370000000003],
[720.799,261.5918],
[721.1,294.3435],
[721.301,229.3444],
[721.501,240.4811],
[721.7,2333.7257],
[721.801,245.9142],
[722.099,275.21139999999997],
[722.399,274.8219],
[722.499,2163.5616999999997],
[722.699,279.5382],
[722.999,281.69939999999997],
[723.199,312.33369999999996],
[723.399,638.0373000000001],
[723.599,312.1718],
[723.901,276.0656],
[724.199,290.82439999999997],
[724.3,247.91830000000002],
[724.501,260.61859999999996],
[724.899,264.4516],
[725,251.82670000000002],
[725.201,245.9649],
[725.401,287.9151],
[725.8,242.0473],
[726.001,234.2075],
[726.099,276.1806],
[726.301,239.119],
[726.599,236.0043],
[726.799,245.93200000000002],
[726.999,268.4245],
[727.301,250.83149999999998],
[727.599,252.4384],
[727.7,250.7936],
[727.999,268.3949],
[728.199,242.0438],
[728.501,243.0282],
[728.599,251.79160000000002],
[728.9,247.036],
[729.199,256.6879],
[729.3,240.0874],
[729.5,259.616],
[729.8,267.43600000000004],
[730.101,247.4857],
[730.3,264.492],
[730.501,241.017],
[730.599,253.726],
[730.9,261.567],
[731.2,240.0955],
[731.3,1753.1436],
[731.501,246.92849999999999],
[731.699,279.13320000000004],
[732.001,255.6816],
[732.201,304.5138],
[732.401,262.5607],
[732.8,270.9261],
[732.899,256.29449999999997],
[733.199,245.0194],
[733.4,238.1628],
[733.499,262.5217],
[733.801,236.3754],
[734.1,250.43939999999998],
[734.299,251.82719999999998],
[734.4,267.4432],
[734.801,285.96349999999995],
[734.9,288.9069],
[735.199,240.87990000000002],
[735.499,247.68519999999998],
[735.7,273.0631],
[735.801,276.2152],
[736.1,238.14509999999999],
[736.399,265.4762],
[736.599,246.92430000000002],
[736.701,242.0534],
[736.901,237.1675],
[737.2,285.9676],
[737.4,258.63190000000003],
[737.7,252.95820000000003],
[737.8,265.59310000000005],
[738.001,241.07059999999998],
[738.3,260.61060000000003],
[738.501,250.83109999999996],
[738.799,272.2896],
[738.901,1873.8195],
[739.199,295.4133],
[739.4,318.1764],
[739.701,239.1033],
[739.999,278.1615],
[740.199,244.00050000000002],
[740.299,261.5684],
[740.499,237.6802],
[740.7,255.43120000000002],
[740.999,240.0957],
[741.199,235.2306],
[741.399,281.0862],
[741.599,243.0312],
[741.999,240.0969],
[742.2,260.5917],
[742.299,247.9239],
[742.601,280.1275],
[742.899,258.64369999999997],
[743.1,255.71280000000002],
[743.2,237.1685],
[743.399,256.6871],
[743.799,240.0602],
[743.999,274.27230000000003],
[744.101,263.5208],
[744.5,245.90300000000002],
[744.6,264.54490000000004],
[744.801,272.3035],
[745.001,276.2032],
[745.3,250.8278],
[745.5,264.6633],
[745.701,255.71110000000002],
[745.901,278.15810000000005],
[746.299,240.1032],
[746.401,270.3509],
[746.699,270.0348],
[746.899,281.0913],
[747.201,271.3027],
[747.299,251.80859999999998],
[747.6,266.4474],
[747.699,244.97469999999998],
[748.001,270.347],
[748.301,248.41379999999998],
[748.401,239.06730000000002],
[748.6,258.6194],
[748.9,265.4714],
[749.201,240.7825],
[749.4,243.4977],
[749.601,272.814],
[749.701,260.5684],
[750.1,260.6078],
[750.3,1855.4561],
[750.401,245.0035],
[750.601,273.00059999999996],
[750.999,285.9676],
[751.101,258.30330000000004],
[751.301,245.60670000000002],
[751.701,272.3288],
[751.8,237.1706],
[752,271.3303],
[752.199,258.6433],
[752.4,281.08709999999996],
[752.699,246.9468],
[753.001,274.7407],
[753.099,245.45759999999999],
[753.301,230.35420000000002],
[753.7,244.98819999999998],
[753.801,2127.8186],
[754.001,2469.4387],
[754.2,353.3357],
[754.499,323.6215],
[754.801,567.5662],
[754.9,322.56940000000003],
[755.301,773.0096],
[755.499,319.172],
[755.6,397.25169999999997],
[755.899,257.6624],
[756,314.2718],
[756.299,246.9273],
[756.601,248.90370000000001],
[756.799,250.72489999999996],
[757.1,1755.9197],
[757.2,246.9303],
[757.401,265.6561],
[757.599,248.8796],
[757.9,266.44820000000004],
[758.1,236.18030000000002],
[758.301,281.2842],
[758.501,276.4989],
[758.9,244.9966],
[759.1,247.9041],
[759.3,270.3661],
[759.501,245.523],
[759.599,237.7147],
[759.899,263.5195],
[760.199,243.0234],
[760.299,265.47090000000003],
[760.501,254.731],
[760.799,257.7122],
[761,257.4783],
[761.299,263.9051],
[761.499,238.89509999999999],
[761.801,237.1434],
[761.899,246.92759999999998],
[762.099,248.1482],
[762.399,353.3111],
[762.599,247.9081],
[762.799,237.1714],
[762.999,228.3575],
[763.199,245.9472],
[763.499,261.1607],
[763.7,244.9633],
[763.901,260.5956],
[764.101,266.40979999999996],
[764.499,239.2252],
[764.601,255.71179999999998],
[764.899,258.07590000000005],
[765.2,236.2003],
[765.301,264.4848],
[765.501,247.90370000000001],
[765.799,258.7608],
[766.099,247.4664],
[766.3,241.072],
[766.501,249.8805],
[766.701,240.1096],
[766.999,262.5439],
[767.099,1822.0792999999999],
[767.3,273.9014],
[767.501,273.2617],
[767.8,244.9733],
[768.001,272.3193],
[768.299,242.0353],
[768.5,243.6816],
[768.8,266.02389999999997],
[769,272.3043],
[769.101,252.7837],
[769.399,228.3834],
[769.599,242.5281],
[769.8,226.4344],
[769.999,244.5094],
[770.299,255.2445],
[770.501,236.2071],
[770.699,261.5592],
[771.001,250.4576],
[771.2,1986.9703],
[771.301,248.5102],
[771.7,335.7301],
[771.799,263.5188],
[771.999,273.2785],
[772.2,248.88080000000002],
[772.499,254.1768],
[772.799,302.68309999999997],
[772.9,277.3277],
[773.101,250.8199],
[773.399,262.0808],
[773.701,233.01440000000002],
[773.9,261.5557],
[774.099,228.36999999999998],
[774.399,288.89520000000005],
[774.599,237.6764],
[774.8,260.125],
[774.999,243.10399999999998],
[775.301,281.09119999999996],
[775.399,228.9633],
[775.601,245.2896],
[776.001,263.5323],
[776.099,251.823],
[776.399,257.673],
[776.599,241.18200000000002],
[776.7,261.8811],
[777.101,271.3322],
[777.299,248.5301],
[777.401,260.2405],
[777.801,242.0473],
[778,242.0476],
[778.201,1843.8375],
[778.299,260.5923],
[778.499,247.8841],
[778.9,251.82330000000002],
[778.999,266.1275],
[779.201,250.8128],
[779.499,285.95189999999997],
[779.801,254.73659999999998],
[780.001,288.8799],
[780.099,245.9396],
[780.401,229.3596],
[780.7,281.72409999999996],
[780.799,240.7319],
[781.099,258.6405],
[781.2,1797.3825],
[781.501,244.0412],
[781.799,242.04749999999999],
[781.899,251.8076],
[782.299,282.0795],
[782.499,250.8143],
[782.601,264.5073],
[782.801,250.8335],
[783.099,243.9987],
[783.399,253.22519999999997],
[783.601,291.8034],
[783.699,227.40550000000002],
[783.899,258.6394],
[784.2,239.1186],
[784.401,251.80710000000002],
[784.7,238.11669999999998],
[784.901,231.31199999999998],
[785.199,232.8225],
[785.301,247.2107],
[785.5,269.3739],
[785.699,239.6351],
[785.999,284.0109],
[786.299,235.2097],
[786.499,252.74039999999997],
[786.699,295.7276],
[786.899,264.4964],
[787.201,250.8152],
[787.399,242.4766],
[787.6,238.6537],
[787.799,259.5958],
[788,247.87980000000002],
[788.2,260.5868],
[788.6,266.443],
[788.699,242.04819999999998],
[788.899,297.2945],
[789.199,252.9282],
[789.499,1921.2046],
[789.601,268.48499999999996],
[789.799,291.3633],
[790.099,240.0743],
[790.299,284.99170000000004],
[790.599,254.73669999999998],
[790.799,290.8359],
[791,260.5919],
[791.199,269.7678],
[791.5,245.949],
[791.601,252.7759],
[791.799,246.2773],
[792.199,258.638],
[792.299,1840.0266],
[792.5,265.472],
[792.801,293.79],
[792.9,261.5479],
[793.201,251.82139999999998],
[793.499,296.6898],
[793.599,276.2209],
[793.799,276.9055],
[794.201,256.1917],
[794.301,269.3915],
[794.5,300.5916],
[794.701,241.0728],
[794.999,254.73610000000002],
[795.199,275.2314],
[795.4,244.4167],
[795.599,238.6297],
[795.899,256.395],
[796.2,277.2523],
[796.401,254.71640000000002],
[796.499,265.4917],
[796.801,238.1492],
[796.999,256.6842],
[797.3,262.5272],
[797.5,258.5135],
[797.701,251.8087],
[797.999,260.032],
[798.201,282.0779],
[798.499,272.30330000000004],
[798.699,241.0726],
[798.9,248.9307],
[798.999,254.7705],
[799.399,251.8087],
[799.6,260.59110000000004],
[799.799,247.9036],
[800,273.8106],
[800.2,245.283],
[800.399,262.2194],
[800.599,243.9998],
[800.799,255.1177],
[801.099,243.024],
[801.401,276.2081],
[801.601,243.9993],
[801.699,245.9376],
[801.899,270.3517],
[802.199,267.42359999999996],
[802.399,247.1114],
[802.699,255.34040000000002],
[803,2365.2598],
[803.101,2639.9692999999997],
[803.301,282.5707],
[803.601,277.1844],
[803.801,720.2954000000001],
[804.001,317.2008],
[804.3,332.8153],
[804.4,572.9106],
[804.599,392.3335],
[804.901,410.7322],
[805.101,319.1515],
[805.3,278.1505],
[805.599,270.35130000000004],
[805.8,234.24],
[805.999,260.592],
[806.2,274.2555],
[806.499,231.3596],
[806.7,242.77609999999999],
[806.899,246.7927],
[807.099,266.0576],
[807.499,254.7356],
[807.601,1843.7106],
[807.8,283.9989],
[808.001,244],
[808.401,261.5681],
[808.599,255.2368],
[808.7,279.9117],
[808.9,252.86979999999997],
[809.299,273.533],
[809.499,248.88479999999998],
[809.701,270.823],
[809.899,244.32780000000002],
[810.199,246.9278],
[810.3,255.70999999999998],
[810.599,235.20569999999998],
[810.8,262.53549999999996],
[810.999,240.0933],
[811.299,274.2562],
[811.4,255.69209999999998],
[811.701,248.8787],
[811.899,231.24140000000003],
[812.199,274.2553],
[812.399,242.0461],
[812.599,285.96709999999996],
[812.901,243.9999],
[813.099,260.57599999999996],
[813.2,277.1612],
[813.499,242.85109999999997],
[813.699,254.5329],
[813.899,251.80200000000002],
[814.2,259.61129999999997],
[814.5,268.3985],
[814.699,249.8552],
[814.9,256.68780000000004],
[815.1,244.0134],
[815.199,265.4765],
[815.599,255.07940000000002],
[815.8,2281.0383],
[815.899,267.40209999999996],
[816.299,282.5826],
[816.499,256.6636],
[816.699,2618.3397],
[816.8,348.4404],
[817.201,972.7465],
[817.299,357.6606],
[817.499,807.7586],
[817.799,361.34529999999995],
[818.099,2128.0861999999997],
[818.201,559.2911],
[818.499,787.1383],
[818.701,494.81550000000004],
[818.8,542.6251],
[819.101,297.67969999999997],
[819.301,274.2333],
[819.499,278.1593],
[819.699,243.4595],
[820.099,260.26680000000005],
[820.201,264.4347],
[820.401,240.3233],
[820.799,249.8347],
[820.999,271.3263],
[821.199,243.9955],
[821.4,275.1879],
[821.501,308.398],
[821.8,242.5865],
[821.999,237.9687],
[822.301,259.8301],
[822.499,253.3341],
[822.7,261.5673],
[822.901,283.043],
[823.101,255.711],
[823.299,247.9033],
[823.6,250.83109999999996],
[823.8,261.5681],
[824.1,252.9651],
[824.301,264.12629999999996],
[824.5,255.8437],
[824.699,265.9488],
[825,245.9342],
[825.099,263.52029999999996],
[825.401,260.59139999999996],
[825.6,263.49719999999996],
[825.9,260.5894],
[826.001,236.8047],
[826.301,247.5078],
[826.499,281.8384],
[826.7,248.3909],
[826.899,244.3811],
[827.299,275.2308],
[827.499,254.73659999999998],
[827.601,262.5379],
[827.9,271.329],
[828.1,242.0294],
[828.3,273.2796],
[828.501,256.5764],
[828.799,290.64390000000003],
[829.1,251.8075],
[829.2,247.8794],
[829.399,279.13100000000003],
[829.599,253.75930000000002],
[829.899,263.47369999999995],
[830.099,250.8148],
[830.299,280.1114],
[830.499,254.2448],
[830.799,277.80219999999997],
[831.1,249.6491],
[831.201,275.231],
[831.499,246.9136],
[831.699,241.0711],
[832.001,265.4708],
[832.199,248.879],
[832.5,303.5405],
[832.701,274.2559],
[832.799,266.4497],
[833.101,250.8725],
[833.299,290.8076],
[833.499,244.9762],
[833.699,269.3745],
[834.001,277.1845],
[834.099,254.7357],
[834.401,261.5674],
[834.601,246.92720000000003],
[834.799,266.0346],
[835,254.70239999999998],
[835.401,255.7127],
[835.499,2247.8497],
[835.699,250.83139999999997],
[835.999,297.682],
[836.2,258.6407],
[836.501,283.3594],
[836.6,2272.7571],
[836.801,470.81640000000004],
[837.099,520.4949],
[837.301,332.7537],
[837.501,389.5156],
[837.701,389.5181],
[838,276.2093],
[838.299,293.7536],
[838.401,258.639],
[838.601,272.3041],
[839.001,263.5453],
[839.199,275.7538],
[839.301,1902.2389],
[839.499,255.3843],
[839.799,274.54479999999995],
[840.1,244.9757],
[840.3,273.2802],
[840.399,256.6889],
[840.7,249.3888],
[840.899,279.1358],
[841.1,237.80409999999998],
[841.401,257.0271],
[841.6,259.1461],
[841.799,252.78430000000003],
[841.999,282.0637],
[842.2,253.7599],
[842.6,294.7394],
[842.699,262.28630000000004],
[843,267.4239],
[843.299,292.34270000000004],
[843.399,274.1368],
[843.7,258.4475],
[843.801,294.7451],
[844.001,271.3273],
[844.301,308.4152],
[844.501,264.4955],
[844.701,293.7753],
[845.101,272.028],
[845.301,2157.7324999999996],
[845.399,296.4308],
[845.599,278.8532],
[845.799,258.6813],
[846.1,278.1611],
[846.399,285.9685],
[846.501,258.63960000000003],
[846.801,291.822],
[847.099,261.09729999999996],
[847.2,289.4375],
[847.501,277.28589999999997],
[847.801,1991.5232],
[847.899,271.8141],
[848.101,306.44460000000004],
[848.399,307.4392],
[848.6,249.8558],
[848.899,288.89639999999997],
[849.1,249.85920000000002],
[849.2,265.4937],
[849.6,278.1598],
[849.801,250.83109999999996],
[849.999,281.0874],
[850.1,230.336],
[850.501,260.5922],
[850.701,252.80200000000002],
[850.8,236.1991],
[851.099,257.2299],
[851.299,242.16869999999997],
[851.599,314.1782],
[851.699,258.7902],
[851.9,252.809],
[852.201,272.82030000000003],
[852.399,245.92149999999998],
[852.6,263.9203],
[852.9,272.2968],
[853.101,249.856],
[853.399,306.4804],
[853.6,240.0961],
[853.8,259.6162],
[854.099,246.6473],
[854.3,275.737],
[854.399,282.5962],
[854.601,248.9105],
[854.999,259.61580000000004],
[855.1,247.8868],
[855.301,265.4723],
[855.5,279.67740000000003],
[855.9,262.5438],
[856.001,240.0958],
[856.299,242.04739999999998],
[856.499,265.4525],
[856.599,252.7834],
[856.999,247.8921],
[857.1,263.5071],
[857.4,278.1705],
[857.6,247.9096],
[857.899,265.5923],
[858,256.2614],
[858.3,275.2286],
[858.501,267.4232],
[858.8,240.6187],
[858.901,260.13730000000004],
[859.101,243.0363],
[859.301,278.6565],
[859.601,245.9586],
[859.801,266.4471],
[860.001,253.75950000000003],
[860.199,246.9273],
[860.599,258.4286],
[860.701,251.6199],
[860.901,258.6227],
[861.1,267.4133],
[861.5,259.63259999999997],
[861.701,252.7682],
[861.899,262.4189],
[862,2083.6479],
[862.299,264.493],
[862.499,279.1225],
[862.801,247.9026],
[863.001,286.94239999999996],
[863.201,268.3994],
[863.399,278.1596],
[863.701,267.4245],
[864,267.4182],
[864.2,255.71149999999997],
[864.4,270.0336],
[864.499,257.3468],
[864.9,282.8095],
[865.1,245.9481],
[865.301,260.71509999999995],
[865.399,243.1611],
[865.801,287.9291],
[866.001,256.6792],
[866.201,2012.4239],
[866.299,281.0875],
[866.499,293.7554],
[866.9,259.2427],
[866.999,282.6675],
[867.201,273.2796],
[867.601,312.3231],
[867.801,268.9075],
[867.899,294.29319999999996],
[868.101,246.92739999999998],
[868.5,267.5884],
[868.599,254.7354],
[868.899,247.9035],
[869,297.6792],
[869.2,256.6885],
[869.601,251.80590000000004],
[869.7,262.5445],
[869.899,248.8734],
[870.199,276.2075],
[870.501,256.6882],
[870.701,259.5991],
[870.901,274.59889999999996],
[871.201,248.1427],
[871.399,256.68960000000004],
[871.5,285.9713],
[871.799,253.7602],
[872,278.1595],
[872.2,255.0371],
[872.401,266.05069999999995],
[872.6,266.4476],
[873.001,255.6985],
[873.1,291.8238],
[873.401,261.5674],
[873.601,1948.9895999999999],
[873.7,251.8075],
[873.999,270.352],
[874.301,286.95619999999997],
[874.399,258.6384],
[874.701,255.94850000000002],
[874.899,291.9634],
[875.201,259.2628],
[875.401,275.2327],
[875.5,291.8153],
[875.8,269.4107],
[876.001,266.4081],
[876.201,317.19960000000003],
[876.499,279.9431],
[876.699,265.4767],
[876.999,258.6365],
[877.199,290.8484],
[877.3,271.7293],
[877.699,261.11620000000005],
[877.801,271.36969999999997],
[878.1,287.9122],
[878.201,265.47130000000004],
[878.501,269.8843],
[878.699,290.07680000000005],
[878.899,310.369],
[879.199,264.49580000000003],
[879.501,290.8476],
[879.701,273.27790000000005],
[879.901,305.48769999999996],
[880.099,254.7356],
[880.4,261.56800000000004],
[880.6,267.4253],
[880.8,251.3419],
[880.999,258.639],
[881.299,249.89829999999998],
[881.399,280.1377],
[881.6,357.5511],
[881.801,251.1674],
[882.199,308.9457],
[882.301,254.45669999999998],
[882.5,246.96450000000002],
[882.699,280.111],
[882.999,248.8863],
[883.2,259.6149],
[883.4,254.73960000000002],
[883.701,299.3259],
[883.999,249.85660000000001],
[884.1,2156.0651000000003],
[884.301,285.969],
[884.599,294.7514],
[884.801,259.6163],
[885.001,285.0091],
[885.299,253.8432],
[885.599,272.3046],
[885.7,257.6664],
[885.901,268.3988],
[886.199,247.9023],
[886.501,247.9033],
[886.599,264.49580000000003],
[886.799,270.3612],
[887.099,260.5919],
[887.201,277.183],
[887.499,253.50850000000003],
[887.8,246.45829999999998],
[887.899,270.53880000000004],
[888.3,258.64169999999996],
[888.501,271.3299],
[888.701,251.1527],
[888.799,259.9411],
[889.1,278.1584],
[889.3,261.5516],
[889.601,275.2319],
[889.799,256.6716],
[889.999,282.048],
[890.301,248.87980000000002],
[890.399,261.5629],
[890.701,272.3023],
[890.901,254.73590000000002],
[891.099,251.8087],
[891.299,268.4239],
[891.601,276.61409999999995],
[891.701,255.62709999999998],
[891.999,289.8715],
[892.199,261.5673],
[892.499,259.61560000000003],
[892.601,298.40299999999996],
[893,252.7836],
[893.2,282.0631],
[893.299,257.66450000000003],
[893.699,266.447],
[893.9,257.64779999999996],
[894,278.1505],
[894.2,263.5057],
[894.599,259.6162],
[894.799,283.0441],
[894.999,262.5482],
[895.2,2257.8967],
[895.3,283.5511],
[895.601,279.7956],
[895.799,258.6446],
[896,282.0631],
[896.201,318.2036],
[896.6,251.58560000000003],
[896.799,250.81599999999997],
[896.999,2151.8714999999997],
[897.099,275.2318],
[897.401,335.7292],
[897.7,265.1248],
[897.899,264.15070000000003],
[898.001,302.54609999999997],
[898.299,251.8088],
[898.499,273.27459999999996],
[898.801,259.2621],
[898.899,275.5857],
[899.301,280.1094],
[899.501,264.49899999999997],
[899.8,288.8953],
[899.899,270.34540000000004] ];
var plot = new Dygraph(container, data, opts);
</script>
</body>
</html>