Skip to content

Instantly share code, notes, and snippets.

@armollica
Last active November 28, 2019 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save armollica/a3629bcf68f46f16b76dc92650fedf7b to your computer and use it in GitHub Desktop.
Save armollica/a3629bcf68f46f16b76dc92650fedf7b to your computer and use it in GitHub Desktop.
Wind speed
height: 30000
node_modules
#!/usr/bin/env node
const os = require('os');
const fs = require('fs');
const d3 = require('d3');
const request = require('request');
const commander = require('commander');
// Parse from UTC
function parseDatetime(year, day_of_year, time) {
return d3.utcParse('%Y %j %H%M')(year + ' ' + day_of_year + ' ' + time);
}
// Format in CST
const formatDatetime = d3.timeFormat('%Y-%m-%d %H:%M');
function parseValue(d) {
const value = parseFloat(d);
if (value == -99) return null;
return value;
}
// N E S W
// GLERL: 0 90 180 270
// SVG/CSS: 270 0 90 180
function parseWindDirection(d) {
var direction = parseValue(d) - 90;
if (direction < 0) return direction + 360
return direction;
}
// 2.23694 mph == 1 m/s
function parseWindSpeed(d) {
return parseValue(d) * 2.23694;
}
function parseRow(row) {
const id = parseInt(row.slice(0, 2));
const year = row.slice(3, 7);
const day_of_year = row.slice(8, 11);
const time = row.slice(12, 16);
const datetime = formatDatetime(parseDatetime(year, day_of_year, time));
const temp = parseValue(row.slice(17, 23));
const avg_wind_speed = parseWindSpeed(row.slice(24, 31));
const max_wind_speed = parseWindSpeed(row.slice(32, 39));
const wind_direction = parseWindDirection(row.slice(40));
return {
datetime,
temp,
avg_wind_speed,
max_wind_speed,
wind_direction
};
}
function formatUrl(date) {
const stub = d3.timeFormat('%Y%m%d')(date);
return `https://www.glerl.noaa.gov/metdata/mil/2017/${stub}.01t.txt`;
}
commander
.version('1.0.0')
.description('Download wind data for Milwaukee from GLERL')
.option('-d, --date <date>', 'Date from 2017: YYYY-MM-DD')
.parse(process.argv);
if (commander.date === undefined) {
throw new Error('No date provided');
}
const date = d3.timeParse('%Y-%m-%d')(commander.date);
const url = formatUrl(date);
request(url, (error, response, raw) => {
if (error) throw error;
const rows = raw
.split(os.EOL) // split lines into array
.slice(2) // drop top two header rows
.slice(0, -1) // drop empty last row
.map(parseRow);
const csv = d3.csvFormat(rows);
process.stdout.write(csv + os.EOL);
});
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet">
<style>
html,
body {
font-family: 'Inconsolata', monospace;
}
.hidden {
/* display: none; */
}
.container {
position: relative;
}
.container canvas,
.container svg {
position: absolute;
left: 0;
top: 0;
}
.container .tooltip {
position: absolute;
top: 0px;
right: 0px;
}
.tick text {
font-family: 'Inconsolata', monospace;
}
.line {
fill: none;
stroke: #000;
}
.axis text {
font-size: 14px;
fill: #999;
text-shadow: -1px -1px 1px #fff,
-1px 0px 1px #fff,
-1px 1px 1px #fff,
0px -1px 1px #fff,
0px 1px 1px #fff,
1px -1px 1px #fff,
1px 0px 1px #fff,
1px 1px 1px #fff;
}
.axis .domain {
display: none;
}
.axis .title {
font-family: 'Inconsolata', monospace;
font-size: 16px;
fill: #434343;
}
.axis--x.axis--under .tick text {
display: none;
}
.axis--x.axis--over .tick line {
display: none;
}
.axis--x .tick line {
stroke: #ddd;
}
.axis--x.axis--extra .tick line {
display: none;
}
.axis--y .tick line {
stroke: #ccc;
}
.axis--y .tick.midnight line {
stroke: #666;
}
.axis--y .tick.midnight text.date {
font-size: 20px;
font-weight: bold;
fill: #434343;
}
.tooltip .left,
.tooltip .right {
height: 60px;
}
.tooltip .left {
float: left;
width: 100px;
}
.tooltip .right {
float: right;
width: 50px;
}
.tooltip .right .title {
text-anchor: middle;
text-transform: uppercase;
font-size: 9px;
font-weight: bold;
fill: #999;
}
.tooltip .right svg {
position: static;
width: 100%;
height: 100%;
}
.tooltip svg line {
stroke: #555;
stroke-width: 4px;
}
.tooltip svg #arrow {
fill: #555;
}
.tooltip .date {
font-size: 14px;
color: #999;
}
.tooltip .time {
font-size: 16px;
font-weight: bold;
color: #434343;
margin-bottom: 5px;
}
.tooltip .temp {
font-size: 14px;
color: #666;
}
.tooltip--svg line {
stroke: #434343;
stroke-dasharray: 2, 2;
}
.tooltip--svg .marker text {
text-shadow: -1px -1px 1px #fff,
-1px 0px 1px #fff,
-1px 1px 1px #fff,
0px -1px 1px #fff,
0px 1px 1px #fff,
1px -1px 1px #fff,
1px 0px 1px #fff,
1px 1px 1px #fff;
}
.tooltip--svg .marker .label {
font-size: 10px;
font-weight: bold;
fill: #999;
text-transform: uppercase;
}
.tooltip--svg .marker .value {
font-size: 12px;
fill: #434343;
}
.tooltip--svg .marker .tick {
stroke: #434343;
stroke-dasharray: none;
}
</style>
</head>
<body>
<div class="container">
<svg class="layer--under"></svg>
<canvas></canvas>
<div class="tooltip">
<div class="left">
<div class="date"></div>
<div class="time"></div>
<div class="temp"></div>
</div>
<div class="right">
<svg class="right" viewBox="0 0 50 50" preserveAspectRatio="xMidYMid meet">
<defs>
<marker id="arrow" refX="2" refY="2" markerWidth="5" markerHeight="5" orient="auto">
<path d="M 0 0 L 0 4 L 4 2 z" />
</marker>
</defs>
<g transform="translate(25, 25)">
<line x1="15" x2="-15" marker-end="url(#arrow)"></line>
</g>
<text class="title" x="25" y="0" dy="0.33em">Wind dir.</text>
</svg>
</div>
</div>
<svg class="layer--over"></svg>
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script>
var margin = { top: 30, right: 10, bottom: 10, left: 75 },
width = 960 - margin.left - margin.right,
height = 30000 - margin.top - margin.bottom;
var container = d3.select('.container')
.style('width', (width + margin.left + margin.right) + 'px')
.style('height', (height + margin.top + margin.bottom) + 'px');
var canvas = container.select('canvas')
.attr('width', width)
.attr('height', height)
.style('left', margin.left + 'px')
.style('top', margin.top + 'px');
var context = canvas.node().getContext('2d');
var gUnder = container.select('svg.layer--under')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
var gOver = container.select('svg.layer--over')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
var tooltip = container.select('.tooltip');
var gTooltip = gOver.append('g')
.attr('class', 'tooltip--svg');
gTooltip.append('line')
.attr('class', 'marker marker--divider')
.attr('x0', 0)
.attr('x1', width);
var markerMax = gTooltip.append('g')
.attr('class', 'marker marker--max');
markerMax.append('text')
.attr('class', 'label')
.attr('x', -5)
.attr('y', -5)
.attr('dy', '-1.67em')
.text('Max.');
markerMax.append('text')
.attr('class', 'value')
.attr('x', -5)
.attr('y', -5)
.attr('dy', '-0.33em');
markerMax.append('line')
.attr('class', 'tick')
.attr('y1', 0)
.attr('y2', -5);
var markerAvg = gTooltip.append('g')
.attr('class', 'marker marker--avg');
markerAvg.append('text')
.attr('class', 'label')
.attr('x', -5)
.attr('y', -5)
.attr('dy', '-1.67em')
.text('Avg.');
markerAvg.append('text')
.attr('class', 'value')
.attr('x', -5)
.attr('y', -5)
.attr('dy', '-0.33em');
markerAvg.append('line')
.attr('class', 'tick')
.attr('y1', 0)
.attr('y2', -5);
var backgroundRect = gOver.append('rect')
.attr('width', width)
.attr('height', height)
.style('fill-opacity', 0);
var gXAxisUnder = gUnder.append('g').attr('class', 'axis axis--x axis--under'),
gXAxisOver = gOver.append('g').attr('class', 'axis axis--x axis--over'),
gYAxis = gOver.append('g').attr('class', 'axis axis--y axis--over');
var bisectDate = d3.bisector(function(d) { return d.datetime; }).left;
var xScale = d3.scaleLinear().range([0, width]),
xAxis = d3.axisTop(xScale);
function formatTick(d) {
var hour = d.getHours(),
midnight = hour === 0,
noon = hour === 12;
if (midnight) return d3.timeFormat('%A, %b %_d')(d);
else if (noon) return 'Noon';
return d3.timeFormat('%_I %p')(d);
}
var yScale = d3.scaleTime().range([0, height]),
yAxis = d3.axisLeft(yScale)
.ticks(d3.timeHour)
.tickFormat(formatTick);
var colorScale = d3.scaleSequential(d3.interpolateBuPu);
var area = d3.area()
.x0(0)
.y(function(d) { return yScale(d.datetime); })
.curve(d3.curveStep)
.context(context);
var parseDatetime = d3.timeParse('%Y-%m-%d %H:%M');
function row(d) {
return {
datetime: parseDatetime(d.datetime),
avg_wind_speed: +d.avg_wind_speed,
max_wind_speed: +d.max_wind_speed,
wind_direction: +d.wind_direction,
temp: +d.temp
};
}
d3.csv('wind.csv', row, function(error, wind) {
if (error) throw error;
// ----
// Updates scales based on wind data
xScale.domain([0, d3.max(wind, function(d) { return d.max_wind_speed; })]);
yScale.domain(d3.extent(wind, function(d) { return d.datetime; }));
colorScale.domain(d3.extent(xScale.ticks()));
// ----
// Draw axes
gXAxisUnder.call(xAxis)
.selectAll('.tick line')
.attr('y1', height);
gXAxisOver.call(xAxis);
gXAxisOver.selectAll('.tick text')
.attr('dx', 5)
.attr('dy', '1em')
.attr('text-anchor', 'start')
.filter(function(d) {
var lastTick = xScale.ticks().slice(-1)[0];
return d === lastTick;
})
.text(function(d) { return d + ' mph'; });
gXAxisOver.append('text')
.attr('class', 'title')
.attr('x', width)
.attr('dx', -5)
.attr('y', 0)
.attr('dy', '-1em')
.attr('text-anchor', 'end')
.text('Wind speed');
gYAxis.call(yAxis)
.selectAll('.tick')
.classed('midnight', function(d) { return d.getHours() === 0; })
.classed('noon', function(d) { return d.getHours() === 12; })
.each(function(d) {
var hour = d.getHours(),
midnight = hour === 0,
noon = hour === 12,
line = d3.select(this).select('line'),
text = d3.select(this).select('text');
if (midnight) {
line.attr('x1', width);
text
.attr('class', 'date')
.attr('x', width)
.attr('dx', -5)
.attr('dy', '-0.67em');
d3.select(this).append('text')
.attr('x', -8)
.attr('dy', '0.33em')
.attr('text-anchor', 'end')
.text('Midnight');
} else if (noon) {
line.attr('x1', width);
}
if (midnight || noon) {
d3.select(this).append('g')
.attr('class', 'axis axis--x axis--extra')
.call(xAxis)
.selectAll('.tick text')
.attr('dx', 5)
.attr('y', 0)
.attr('dy', '1em')
.attr('text-anchor', 'start')
.filter(function(d) {
var lastTick = xScale.ticks().slice(-1)[0];
return d === lastTick;
})
.text(function(d) { return d + ' mph'; });
}
});
// ----
// Draw specks for max wind speed
area.x1(function(d) { return xScale(d.max_wind_speed); });
context.save();
wind.forEach(function(d) {
var x = xScale(d.max_wind_speed),
y = yScale(d.datetime);
context.beginPath();
context.fillStyle = colorScale(d.max_wind_speed);
context.fillRect(x - 1, y - 1, 2, 2);
});
context.restore();
// ----
// Draw area slices for average wind speed
area.x1(function(d) { return xScale(d.avg_wind_speed); });
xScale.ticks()
.slice(1)
.reverse()
.forEach(function(cap) {
area.x1(function(d) {
if (d.avg_wind_speed > cap) return xScale(cap);
return xScale(d.avg_wind_speed);
});
context.save();
context.beginPath();
area(wind);
context.fillStyle = colorScale(cap);
context.fill();
context.restore();
});
function updateTooltip(y) {
var y0 = yScale.invert(y),
i = bisectDate(wind, y0, 1),
d0 = wind[i - 1],
d1 = wind[i],
d = y0 - d0.datetime > d1.datetime - y0 ? d1 : d0;
var y = yScale(d.datetime);
gTooltip
.attr('transform', 'translate(0,' + y + ')');
markerAvg
.attr('transform', 'translate(' + xScale(d.avg_wind_speed) + ',0)');
markerAvg.select('.value')
.text(d3.format('.0f')(d.avg_wind_speed));
markerMax
.attr('transform', 'translate(' + xScale(d.max_wind_speed) + ',0)');
markerMax.select('.value')
.text(d3.format('.0f')(d.max_wind_speed) + ' mph');
tooltip
.style('top', (y + margin.top + 5) + 'px');
var time = d3.timeFormat('%_I:%M %p')(d.datetime),
date = d3.timeFormat('%b %_d, %Y')(d.datetime),
fahrenheit = d3.format('.0f')(celsiusToFahrenheit(d.temp)),
celsius = d3.format('.0f')(d.temp),
temp = fahrenheit + ' °F (' + celsius + ' °C)';
tooltip.select('.time').text(time);
tooltip.select('.date').text(date);
tooltip.select('.temp').text(temp);
tooltip.select('svg line')
.attr('transform', 'rotate(' + d.wind_direction + ')');
}
function mousemove() {
var y = d3.mouse(this)[1];
updateTooltip(y);
}
function mouseenter() {
gTooltip.classed('hidden', false);
tooltip.classed('hidden', false);
}
function mouseleave() {
gTooltip.classed('hidden', true);
tooltip.classed('hidden', true);
}
function wheel() {
var transform = gTooltip.attr('transform');
if (transform) {
var y0 = +transform.split(',')[1].replace(')', ''),
y = y0 + d3.event.deltaY;
updateTooltip(y);
}
}
backgroundRect
.on('mouseenter', mouseenter)
.on('mouseleave', mouseleave)
.on('mousemove', mousemove);
d3.select(window)
.on('wheel', wheel);
});
function celsiusToFahrenheit(celsius) {
return celsius * 9 / 5 + 32;
}
</script>
</body>
</html>
SHELL=/bin/bash
wind.csv:
node gimme-wind.js -d 2017-12-01 > wind-1.csv
node gimme-wind.js -d 2017-12-02 > wind-2.csv
node gimme-wind.js -d 2017-12-03 > wind-3.csv
node gimme-wind.js -d 2017-12-04 > wind-4.csv
node gimme-wind.js -d 2017-12-05 > wind-5.csv
node gimme-wind.js -d 2017-12-06 > wind-6.csv
node gimme-wind.js -d 2017-12-07 > wind-7.csv
node gimme-wind.js -d 2017-12-08 > wind-8.csv
node gimme-wind.js -d 2017-12-09 > wind-9.csv
node gimme-wind.js -d 2017-12-10 > wind-10.csv
node gimme-wind.js -d 2017-12-11 > wind-11.csv
node gimme-wind.js -d 2017-12-12 > wind-12.csv
node gimme-wind.js -d 2017-12-13 > wind-13.csv
node gimme-wind.js -d 2017-12-14 > wind-14.csv
node gimme-wind.js -d 2017-12-15 > wind-15.csv
node gimme-wind.js -d 2017-12-16 > wind-16.csv
node gimme-wind.js -d 2017-12-16 > wind-17.csv
cat wind-1.csv \
<(tail -n +2 wind-2.csv) \
<(tail -n +2 wind-3.csv) \
<(tail -n +2 wind-4.csv) \
<(tail -n +2 wind-5.csv) \
<(tail -n +2 wind-6.csv) \
<(tail -n +2 wind-7.csv) \
<(tail -n +2 wind-8.csv) \
<(tail -n +2 wind-9.csv) \
<(tail -n +2 wind-10.csv) \
<(tail -n +2 wind-11.csv) \
<(tail -n +2 wind-12.csv) \
<(tail -n +2 wind-13.csv) \
<(tail -n +2 wind-14.csv) \
<(tail -n +2 wind-15.csv) \
<(tail -n +2 wind-16.csv) \
<(tail -n +2 wind-17.csv) \
> $@
rm wind-*.csv
{
"name": "wind",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"ajv": {
"version": "https://registry.npmjs.org/ajv/-/ajv-5.5.1.tgz",
"integrity": "sha1-s4u4h22ehr7plJVqBOch6IskjrI=",
"requires": {
"co": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"fast-deep-equal": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz",
"fast-json-stable-stringify": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
"json-schema-traverse": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"
}
},
"asn1": {
"version": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
},
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"asynckit": {
"version": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"aws-sign2": {
"version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
},
"aws4": {
"version": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
"integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4="
},
"bcrypt-pbkdf": {
"version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
"integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
"optional": true,
"requires": {
"tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
}
},
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz",
"integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=",
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"
}
},
"caseless": {
"version": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"co": {
"version": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
},
"combined-stream": {
"version": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"requires": {
"delayed-stream": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
}
},
"commander": {
"version": "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz",
"integrity": "sha1-D1lGxCftnsDZGka7ne9T5UZQ5VU="
},
"core-util-is": {
"version": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"cryptiles": {
"version": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
"integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
"requires": {
"boom": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz"
},
"dependencies": {
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz",
"integrity": "sha1-XdnabuOl8wIHdDYpDLcX0/SlTgI=",
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"
}
}
}
},
"d3": {
"version": "https://registry.npmjs.org/d3/-/d3-4.12.0.tgz",
"integrity": "sha1-dezLOepA9gGN6M+idSkFvufapG8=",
"requires": {
"d3-array": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz",
"d3-axis": "https://registry.npmjs.org/d3-axis/-/d3-axis-1.0.8.tgz",
"d3-brush": "https://registry.npmjs.org/d3-brush/-/d3-brush-1.0.4.tgz",
"d3-chord": "https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.4.tgz",
"d3-collection": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.4.tgz",
"d3-color": "https://registry.npmjs.org/d3-color/-/d3-color-1.0.3.tgz",
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-drag": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.1.tgz",
"d3-dsv": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.0.8.tgz",
"d3-ease": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.3.tgz",
"d3-force": "https://registry.npmjs.org/d3-force/-/d3-force-1.1.0.tgz",
"d3-format": "https://registry.npmjs.org/d3-format/-/d3-format-1.2.1.tgz",
"d3-geo": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.9.0.tgz",
"d3-hierarchy": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.5.tgz",
"d3-interpolate": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"d3-path": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.5.tgz",
"d3-polygon": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.3.tgz",
"d3-quadtree": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.3.tgz",
"d3-queue": "https://registry.npmjs.org/d3-queue/-/d3-queue-3.0.7.tgz",
"d3-random": "https://registry.npmjs.org/d3-random/-/d3-random-1.1.0.tgz",
"d3-request": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz",
"d3-scale": "https://registry.npmjs.org/d3-scale/-/d3-scale-1.0.7.tgz",
"d3-selection": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.2.0.tgz",
"d3-shape": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.2.0.tgz",
"d3-time": "https://registry.npmjs.org/d3-time/-/d3-time-1.0.8.tgz",
"d3-time-format": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.1.tgz",
"d3-timer": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.7.tgz",
"d3-transition": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.1.1.tgz",
"d3-voronoi": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.2.tgz",
"d3-zoom": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.7.1.tgz"
}
},
"d3-array": {
"version": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz",
"integrity": "sha1-0coz3i9qwx76244FCgIdfiOW1dw="
},
"d3-axis": {
"version": "https://registry.npmjs.org/d3-axis/-/d3-axis-1.0.8.tgz",
"integrity": "sha1-MacFoLU15ldZ3hQXOjGTMTfxjvo="
},
"d3-brush": {
"version": "https://registry.npmjs.org/d3-brush/-/d3-brush-1.0.4.tgz",
"integrity": "sha1-AMLyOAGfJPbAoZSibUGhUw/+e8Q=",
"requires": {
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-drag": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.1.tgz",
"d3-interpolate": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"d3-selection": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.2.0.tgz",
"d3-transition": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.1.1.tgz"
}
},
"d3-chord": {
"version": "https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.4.tgz",
"integrity": "sha1-fexPC6iG9xP+ERxF92NBT290yiw=",
"requires": {
"d3-array": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz",
"d3-path": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.5.tgz"
}
},
"d3-collection": {
"version": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.4.tgz",
"integrity": "sha1-NC39EoN8kJdPM/HMCnha6lcNzcI="
},
"d3-color": {
"version": "https://registry.npmjs.org/d3-color/-/d3-color-1.0.3.tgz",
"integrity": "sha1-vHZD/KjlOoNH4vva/6I2eWtYUJs="
},
"d3-dispatch": {
"version": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"integrity": "sha1-RuFJHqqbWMNY/OW+TovtYm54cfg="
},
"d3-drag": {
"version": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.1.tgz",
"integrity": "sha1-343UxQL7SQ/HRiBGqK2YpcR5KC0=",
"requires": {
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-selection": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.2.0.tgz"
}
},
"d3-dsv": {
"version": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.0.8.tgz",
"integrity": "sha1-kH4kDVezhmGNxWRous/na/GXZK4=",
"requires": {
"commander": "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz",
"iconv-lite": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
"rw": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz"
}
},
"d3-ease": {
"version": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.3.tgz",
"integrity": "sha1-aL+8NJM4o4DETYrMT7wzBKotjA4="
},
"d3-force": {
"version": "https://registry.npmjs.org/d3-force/-/d3-force-1.1.0.tgz",
"integrity": "sha1-zr88aU8QePzD1Nr45Wey+9cNTqM=",
"requires": {
"d3-collection": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.4.tgz",
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-quadtree": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.3.tgz",
"d3-timer": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.7.tgz"
}
},
"d3-format": {
"version": "https://registry.npmjs.org/d3-format/-/d3-format-1.2.1.tgz",
"integrity": "sha1-Thns2wgaNB2vr19VXulWvP2/Fn8="
},
"d3-geo": {
"version": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.9.0.tgz",
"integrity": "sha1-FcfXqOqTRuWe0VDcex9/lUeQVuk=",
"requires": {
"d3-array": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz"
}
},
"d3-hierarchy": {
"version": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.5.tgz",
"integrity": "sha1-ochFxC+Eoga88cAcAQmOpN2qeiY="
},
"d3-interpolate": {
"version": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"integrity": "sha1-LPOVriOBgE3wiqG/dmt/l7X2j7Y=",
"requires": {
"d3-color": "https://registry.npmjs.org/d3-color/-/d3-color-1.0.3.tgz"
}
},
"d3-path": {
"version": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.5.tgz",
"integrity": "sha1-JB6xhJvZ6egCHA0KeZ+KDo5EF2Q="
},
"d3-polygon": {
"version": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.3.tgz",
"integrity": "sha1-FoiOkCZGCTPysXllKtN4Ik04LGI="
},
"d3-quadtree": {
"version": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.3.tgz",
"integrity": "sha1-rHmH4+I/6AWpkPKOG1DTj8uCJDg="
},
"d3-queue": {
"version": "https://registry.npmjs.org/d3-queue/-/d3-queue-3.0.7.tgz",
"integrity": "sha1-yTouVLQXwJWRKdfXP2z31Ckudhg="
},
"d3-random": {
"version": "https://registry.npmjs.org/d3-random/-/d3-random-1.1.0.tgz",
"integrity": "sha1-ZkLlBsb6OmSFldKyRpeIqNElKdM="
},
"d3-request": {
"version": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz",
"integrity": "sha1-oQRKnvTsKMgkFxyTefrm15R0sZ8=",
"requires": {
"d3-collection": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.4.tgz",
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-dsv": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.0.8.tgz",
"xmlhttprequest": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"
}
},
"d3-scale": {
"version": "https://registry.npmjs.org/d3-scale/-/d3-scale-1.0.7.tgz",
"integrity": "sha1-+pAySz6op3ZCK9BHKvqwslKglF0=",
"requires": {
"d3-array": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz",
"d3-collection": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.4.tgz",
"d3-color": "https://registry.npmjs.org/d3-color/-/d3-color-1.0.3.tgz",
"d3-format": "https://registry.npmjs.org/d3-format/-/d3-format-1.2.1.tgz",
"d3-interpolate": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"d3-time": "https://registry.npmjs.org/d3-time/-/d3-time-1.0.8.tgz",
"d3-time-format": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.1.tgz"
}
},
"d3-selection": {
"version": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.2.0.tgz",
"integrity": "sha1-G47Bx87a37aR8rogpKPPvrcbvIg="
},
"d3-shape": {
"version": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.2.0.tgz",
"integrity": "sha1-RdAVOPBkuv0F6j1tLLdI/YxB93c=",
"requires": {
"d3-path": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.5.tgz"
}
},
"d3-time": {
"version": "https://registry.npmjs.org/d3-time/-/d3-time-1.0.8.tgz",
"integrity": "sha1-29LWAHv0Fv5np20XlHt4S//qHoQ="
},
"d3-time-format": {
"version": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.1.tgz",
"integrity": "sha1-hbfN+8n/yhh/FNPEVv/aJoCBuzE=",
"requires": {
"d3-time": "https://registry.npmjs.org/d3-time/-/d3-time-1.0.8.tgz"
}
},
"d3-timer": {
"version": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.7.tgz",
"integrity": "sha1-35ZQylh/bJZgf/TmDMOCKejdhTE="
},
"d3-transition": {
"version": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.1.1.tgz",
"integrity": "sha1-2O+Jw7hIc1sGDlSjmzKq66pCEDk=",
"requires": {
"d3-color": "https://registry.npmjs.org/d3-color/-/d3-color-1.0.3.tgz",
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-ease": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.3.tgz",
"d3-interpolate": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"d3-selection": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.2.0.tgz",
"d3-timer": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.7.tgz"
}
},
"d3-voronoi": {
"version": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.2.tgz",
"integrity": "sha1-Fodmfo8TotFYyAwUgMWinLDYlzw="
},
"d3-zoom": {
"version": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.7.1.tgz",
"integrity": "sha1-AvQ7PD4ttU82RYLX5KI2zMVQa2M=",
"requires": {
"d3-dispatch": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.3.tgz",
"d3-drag": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.1.tgz",
"d3-interpolate": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"d3-selection": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.2.0.tgz",
"d3-transition": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.1.1.tgz"
}
},
"dashdash": {
"version": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
}
},
"delayed-stream": {
"version": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
},
"ecc-jsbn": {
"version": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
"integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
"optional": true,
"requires": {
"jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
}
},
"extend": {
"version": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz",
"integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ="
},
"extsprintf": {
"version": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
},
"fast-deep-equal": {
"version": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz",
"integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8="
},
"fast-json-stable-stringify": {
"version": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
"integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
},
"forever-agent": {
"version": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
},
"form-data": {
"version": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz",
"integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=",
"requires": {
"asynckit": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"combined-stream": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz"
}
},
"getpass": {
"version": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
}
},
"har-schema": {
"version": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
"integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
},
"har-validator": {
"version": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz",
"integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=",
"requires": {
"ajv": "https://registry.npmjs.org/ajv/-/ajv-5.5.1.tgz",
"har-schema": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"
}
},
"hawk": {
"version": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
"integrity": "sha1-r02RTrBl+bXOTZ0RwcshJu7MMDg=",
"requires": {
"boom": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz",
"cryptiles": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
"hoek": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz",
"sntp": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz"
}
},
"hoek": {
"version": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz",
"integrity": "sha1-ctnQdU9/4lyi0BrY+PmpRJqJUm0="
},
"http-signature": {
"version": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
"integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"jsprim": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
"sshpk": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz"
}
},
"iconv-lite": {
"version": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
"integrity": "sha1-90aPYBNfXl2tM5nAqBvpoWA6CCs="
},
"is-typedarray": {
"version": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
"integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
},
"isstream": {
"version": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
},
"jsbn": {
"version": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
"integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
"optional": true
},
"json-schema": {
"version": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
},
"json-schema-traverse": {
"version": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
"integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A="
},
"json-stringify-safe": {
"version": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
},
"jsprim": {
"version": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"extsprintf": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"json-schema": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
"verror": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"
}
},
"mime-db": {
"version": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
"integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE="
},
"mime-types": {
"version": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz",
"integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
"requires": {
"mime-db": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz"
}
},
"oauth-sign": {
"version": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
"integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM="
},
"performance-now": {
"version": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
"integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
},
"punycode": {
"version": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
},
"qs": {
"version": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
"integrity": "sha1-NJzfbu+J7EXBLX1es/wMhwNDptg="
},
"request": {
"version": "https://registry.npmjs.org/request/-/request-2.83.0.tgz",
"integrity": "sha1-ygtl2gLtYpNYh4COb1EDgQNOM1Y=",
"requires": {
"aws-sign2": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"aws4": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
"caseless": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"combined-stream": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"extend": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz",
"forever-agent": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
"form-data": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz",
"har-validator": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz",
"hawk": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
"http-signature": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
"is-typedarray": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
"isstream": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
"json-stringify-safe": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"mime-types": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz",
"oauth-sign": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
"performance-now": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
"qs": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
"safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
"stringstream": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
"tough-cookie": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz",
"tunnel-agent": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"uuid": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz"
}
},
"rw": {
"version": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
"integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q="
},
"safe-buffer": {
"version": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
"integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM="
},
"sntp": {
"version": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz",
"integrity": "sha1-LGzsFP7cIiJznK+bXD2F0cxaLMg=",
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"
}
},
"sshpk": {
"version": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz",
"integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=",
"requires": {
"asn1": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"bcrypt-pbkdf": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
"dashdash": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
"ecc-jsbn": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
"getpass": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
"tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
}
},
"stringstream": {
"version": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
"integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg="
},
"tough-cookie": {
"version": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz",
"integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=",
"requires": {
"punycode": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
}
},
"tunnel-agent": {
"version": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
"requires": {
"safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz"
}
},
"tweetnacl": {
"version": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
"integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
"optional": true
},
"uuid": {
"version": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz",
"integrity": "sha1-PdPT55Crwk17DToDT/q6vijrvAQ="
},
"verror": {
"version": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
"integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
"requires": {
"assert-plus": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"core-util-is": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"extsprintf": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
}
},
"xmlhttprequest": {
"version": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz",
"integrity": "sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw="
}
}
}
{
"name": "wind",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^2.12.2",
"d3": "^4.12.0",
"request": "^2.83.0"
}
}
We can't make this file beautiful and searchable because it's too large.
datetime,temp,avg_wind_speed,max_wind_speed,wind_direction
2017-11-30 17:56,8.2,5.592350000000001,6.71082,188
2017-11-30 17:58,8.2,4.921268,5.3686560000000005,186
2017-11-30 18:00,8.2,5.3686560000000005,6.934514000000001,182
2017-11-30 18:02,8.2,6.71082,8.276678,185
2017-11-30 18:04,8.2,7.82929,9.171454,179
2017-11-30 18:06,8.3,7.381902,8.500372,186
2017-11-30 18:08,8.2,7.82929,10.513618000000001,186
2017-11-30 18:10,8.2,7.381902,10.289924,187
2017-11-30 18:12,8.2,7.381902,8.724066,185
2017-11-30 18:14,8.2,7.381902,8.94776,190
2017-11-30 18:16,8.2,5.816044000000001,6.71082,189
2017-11-30 18:18,8.2,6.934514000000001,8.724066,192
2017-11-30 18:20,8.2,5.3686560000000005,6.039738000000001,189
2017-11-30 18:22,8.1,5.592350000000001,7.158208000000001,190
2017-11-30 18:24,8.1,6.487126,8.94776,188
2017-11-30 18:26,8,6.263432,8.052984,196
2017-11-30 18:28,8,6.71082,8.500372,198
2017-11-30 18:30,8,6.71082,8.276678,191
2017-11-30 18:32,7.9,5.592350000000001,6.934514000000001,185
2017-11-30 18:34,7.9,5.592350000000001,6.71082,195
2017-11-30 18:36,7.9,7.158208000000001,8.276678,187
2017-11-30 18:38,7.8,7.605596,9.171454,192
2017-11-30 18:40,7.8,7.605596,9.842536,192
2017-11-30 18:42,7.8,8.052984,9.618842,193
2017-11-30 18:44,7.8,7.605596,9.171454,191
2017-11-30 18:46,7.8,7.158208000000001,9.842536,192
2017-11-30 18:48,7.7,7.158208000000001,8.724066,186
2017-11-30 18:50,7.6,5.592350000000001,6.71082,194
2017-11-30 18:52,7.6,5.144962,6.263432,191
2017-11-30 18:54,7.6,5.592350000000001,6.934514000000001,192
2017-11-30 18:56,7.6,5.592350000000001,7.158208000000001,191
2017-11-30 18:58,7.6,6.71082,8.724066,187
2017-11-30 19:00,7.6,6.934514000000001,8.724066,185
2017-11-30 19:02,7.6,7.381902,9.395148,191
2017-11-30 19:04,7.6,5.816044000000001,7.82929,193
2017-11-30 19:06,7.5,5.816044000000001,7.605596,198
2017-11-30 19:08,7.5,5.592350000000001,6.934514000000001,197
2017-11-30 19:10,7.4,5.3686560000000005,6.263432,196
2017-11-30 19:12,7.4,6.039738000000001,6.487126,200
2017-11-30 19:14,7.3,6.039738000000001,6.934514000000001,204
2017-11-30 19:16,7.3,6.487126,7.158208000000001,200
2017-11-30 19:18,7.2,6.71082,9.171454,200
2017-11-30 19:20,7.2,6.71082,8.94776,199
2017-11-30 19:22,7.2,7.381902,10.513618000000001,197
2017-11-30 19:24,7.3,8.052984,10.289924,199
2017-11-30 19:26,7.3,7.158208000000001,9.842536,198
2017-11-30 19:28,7.2,7.82929,9.618842,197
2017-11-30 19:30,7.2,7.82929,8.500372,193
2017-11-30 19:32,7.2,8.500372,9.842536,193
2017-11-30 19:34,7.1,6.934514000000001,8.500372,195
2017-11-30 19:36,7.1,6.487126,7.605596,194
2017-11-30 19:38,7,5.816044000000001,6.71082,186
2017-11-30 19:40,7,6.263432,8.052984,195
2017-11-30 19:42,7,6.934514000000001,8.94776,193
2017-11-30 19:44,7,6.263432,7.82929,189
2017-11-30 19:46,6.9,6.263432,8.052984,197
2017-11-30 19:48,6.9,6.934514000000001,10.066230000000001,198
2017-11-30 19:50,7,7.605596,9.618842,193
2017-11-30 19:52,6.9,6.263432,7.605596,198
2017-11-30 19:54,6.8,7.381902,9.842536,199
2017-11-30 19:56,6.8,7.82929,8.94776,199
2017-11-30 19:58,6.8,8.724066,10.513618000000001,195
2017-11-30 20:00,6.8,8.724066,11.632088000000001,197
2017-11-30 20:02,6.7,8.276678,10.289924,197
2017-11-30 20:04,6.7,9.395148,12.079476000000001,197
2017-11-30 20:06,6.7,8.500372,10.513618000000001,201
2017-11-30 20:08,6.7,9.171454,10.737312000000001,201
2017-11-30 20:10,6.7,8.724066,10.513618000000001,198
2017-11-30 20:12,6.7,9.395148,11.855782,195
2017-11-30 20:14,6.7,8.276678,9.842536,197
2017-11-30 20:16,6.6,8.500372,10.961006000000001,201
2017-11-30 20:18,6.6,7.605596,9.171454,198
2017-11-30 20:20,6.6,8.052984,10.289924,202
2017-11-30 20:22,6.5,8.052984,9.618842,198
2017-11-30 20:24,6.5,8.276678,9.842536,198
2017-11-30 20:26,6.5,8.724066,12.079476000000001,200
2017-11-30 20:28,6.5,8.724066,10.961006000000001,200
2017-11-30 20:30,6.4,8.724066,11.632088000000001,203
2017-11-30 20:32,6.4,9.618842,12.974252,203
2017-11-30 20:34,6.4,8.052984,11.184700000000001,197
2017-11-30 20:36,6.3,8.500372,10.066230000000001,197
2017-11-30 20:38,6.3,9.395148,11.632088000000001,197
2017-11-30 20:40,6.4,9.618842,12.079476000000001,195
2017-11-30 20:42,6.4,10.066230000000001,12.303170000000001,198
2017-11-30 20:44,6.4,9.395148,11.408394,200
2017-11-30 20:46,6.4,10.289924,12.303170000000001,195
2017-11-30 20:48,6.4,9.618842,12.079476000000001,201
2017-11-30 20:50,6.4,9.395148,11.408394,202
2017-11-30 20:52,6.3,8.500372,10.289924,204
2017-11-30 20:54,6.2,6.71082,8.276678,202
2017-11-30 20:56,6.2,6.263432,8.052984,208
2017-11-30 20:58,6.2,6.039738000000001,7.381902,199
2017-11-30 21:00,6.2,7.158208000000001,8.94776,196
2017-11-30 21:02,6.1,7.605596,9.395148,200
2017-11-30 21:04,6.1,7.82929,9.618842,200
2017-11-30 21:06,6.1,8.276678,10.513618000000001,200
2017-11-30 21:08,6.1,8.052984,9.842536,202
2017-11-30 21:10,6.1,8.276678,9.618842,199
2017-11-30 21:12,6,6.71082,8.276678,201
2017-11-30 21:14,5.9,7.158208000000001,9.395148,203
2017-11-30 21:16,5.9,8.276678,10.289924,200
2017-11-30 21:18,5.9,8.052984,10.737312000000001,200
2017-11-30 21:20,5.9,8.276678,10.289924,202
2017-11-30 21:22,5.9,7.605596,9.842536,200
2017-11-30 21:24,5.8,7.381902,8.724066,202
2017-11-30 21:26,5.8,7.158208000000001,9.618842,201
2017-11-30 21:28,5.8,7.381902,9.395148,198
2017-11-30 21:30,5.8,8.276678,9.842536,196
2017-11-30 21:32,5.7,7.381902,9.171454,199
2017-11-30 21:34,5.7,8.724066,10.289924,199
2017-11-30 21:36,5.6,8.500372,9.618842,197
2017-11-30 21:38,5.6,8.052984,9.618842,197
2017-11-30 21:40,5.6,8.500372,10.066230000000001,199
2017-11-30 21:42,5.6,8.500372,10.066230000000001,200
2017-11-30 21:44,5.6,8.500372,10.289924,203
2017-11-30 21:46,5.6,9.395148,10.961006000000001,199
2017-11-30 21:48,5.6,8.276678,9.842536,195
2017-11-30 21:50,5.6,8.276678,10.289924,199
2017-11-30 21:52,5.6,8.052984,10.289924,197
2017-11-30 21:54,5.5,7.605596,9.171454,201
2017-11-30 21:56,5.5,7.605596,8.724066,202
2017-11-30 21:58,5.5,7.381902,9.842536,200
2017-11-30 22:00,5.5,7.605596,10.066230000000001,202
2017-11-30 22:02,5.5,8.052984,8.94776,204
2017-11-30 22:04,5.5,8.276678,11.408394,200
2017-11-30 22:06,5.5,8.724066,11.184700000000001,199
2017-11-30 22:08,5.5,8.94776,10.513618000000001,201
2017-11-30 22:10,5.5,9.842536,12.750558000000002,204
2017-11-30 22:12,5.5,8.052984,9.618842,202
2017-11-30 22:14,5.5,7.381902,9.842536,205
2017-11-30 22:16,5.5,7.82929,9.618842,206
2017-11-30 22:18,5.5,7.605596,9.171454,201
2017-11-30 22:20,5.5,8.276678,9.842536,201
2017-11-30 22:22,5.5,8.052984,10.289924,199
2017-11-30 22:24,5.5,8.052984,10.066230000000001,201
2017-11-30 22:26,5.5,9.618842,11.184700000000001,196
2017-11-30 22:28,5.5,8.94776,11.184700000000001,197
2017-11-30 22:30,5.4,7.82929,9.395148,196
2017-11-30 22:32,5.4,7.381902,8.500372,195
2017-11-30 22:34,5.3,7.82929,10.066230000000001,195
2017-11-30 22:36,5.4,8.500372,10.513618000000001,193
2017-11-30 22:38,5.3,7.158208000000001,8.724066,191
2017-11-30 22:40,5.3,8.276678,10.289924,193
2017-11-30 22:42,5.3,7.158208000000001,8.724066,192
2017-11-30 22:44,5.2,8.724066,11.184700000000001,190
2017-11-30 22:46,5.2,8.052984,9.618842,191
2017-11-30 22:48,5.1,6.934514000000001,8.052984,188
2017-11-30 22:50,5.1,6.934514000000001,8.94776,185
2017-11-30 22:52,5,7.82929,9.395148,188
2017-11-30 22:54,5,8.94776,11.184700000000001,186
2017-11-30 22:56,5,8.94776,10.513618000000001,193
2017-11-30 22:58,5,9.842536,11.855782,195
2017-11-30 23:00,5,8.724066,10.289924,194
2017-11-30 23:02,4.9,8.276678,9.618842,196
2017-11-30 23:04,4.9,9.618842,11.632088000000001,194
2017-11-30 23:06,4.8,7.82929,10.513618000000001,194
2017-11-30 23:08,4.8,7.158208000000001,8.94776,192
2017-11-30 23:10,4.8,7.381902,8.724066,194
2017-11-30 23:12,4.8,7.381902,9.171454,187
2017-11-30 23:14,4.8,7.381902,7.82929,186
2017-11-30 23:16,4.8,7.158208000000001,8.94776,185
2017-11-30 23:18,4.8,7.605596,8.724066,190
2017-11-30 23:20,4.8,8.276678,9.618842,192
2017-11-30 23:22,4.8,8.276678,9.171454,191
2017-11-30 23:24,4.8,8.724066,10.961006000000001,192
2017-11-30 23:26,4.8,8.724066,11.184700000000001,193
2017-11-30 23:28,4.8,7.605596,8.500372,195
2017-11-30 23:30,4.8,8.724066,9.618842,191
2017-11-30 23:32,4.8,9.171454,12.079476000000001,190
2017-11-30 23:34,4.8,9.171454,11.408394,189
2017-11-30 23:36,4.8,7.82929,9.395148,193
2017-11-30 23:38,4.7,7.82929,9.395148,189
2017-11-30 23:40,4.7,8.500372,9.842536,191
2017-11-30 23:42,4.7,7.82929,9.171454,193
2017-11-30 23:44,4.7,7.605596,8.94776,188
2017-11-30 23:46,4.6,6.263432,7.381902,191
2017-11-30 23:48,4.6,6.487126,8.052984,192
2017-11-30 23:50,4.6,7.605596,8.94776,195
2017-11-30 23:52,4.7,7.158208000000001,8.94776,198
2017-11-30 23:54,4.6,7.158208000000001,8.500372,196
2017-11-30 23:56,4.6,8.052984,10.289924,193
2017-11-30 23:58,4.6,8.500372,10.289924,195
2017-12-01 00:00,4.6,7.381902,8.94776,196
2017-12-01 00:02,4.6,6.71082,8.724066,196
2017-12-01 00:04,4.6,6.263432,7.605596,195
2017-12-01 00:06,4.6,6.934514000000001,8.94776,198
2017-12-01 00:08,4.6,6.934514000000001,8.94776,193
2017-12-01 00:10,4.6,7.605596,8.94776,199
2017-12-01 00:12,4.6,6.71082,7.605596,200
2017-12-01 00:14,4.5,7.158208000000001,8.94776,200
2017-12-01 00:16,4.4,7.605596,9.395148,203
2017-12-01 00:18,4.4,7.82929,9.842536,202
2017-12-01 00:20,4.4,8.052984,9.395148,205
2017-12-01 00:22,4.4,8.052984,9.618842,204
2017-12-01 00:24,4.3,8.276678,9.842536,202
2017-12-01 00:26,4.3,7.158208000000001,8.052984,203
2017-12-01 00:28,4.3,6.934514000000001,8.052984,202
2017-12-01 00:30,4.2,6.487126,7.381902,202
2017-12-01 00:32,4.2,6.71082,7.82929,205
2017-12-01 00:34,4.2,6.71082,7.82929,204
2017-12-01 00:36,4.2,6.487126,7.605596,206
2017-12-01 00:38,4.2,6.263432,8.276678,207
2017-12-01 00:40,4.2,6.487126,7.158208000000001,205
2017-12-01 00:42,4.2,6.71082,8.276678,204
2017-12-01 00:44,4.2,6.487126,7.82929,204
2017-12-01 00:46,4.2,6.71082,8.94776,207
2017-12-01 00:48,4.2,6.039738000000001,6.71082,206
2017-12-01 00:50,4.2,6.487126,7.158208000000001,203
2017-12-01 00:52,4.1,5.816044000000001,7.82929,204
2017-12-01 00:54,4.1,5.592350000000001,6.934514000000001,203
2017-12-01 00:56,4.1,4.026492,5.3686560000000005,200
2017-12-01 00:58,4.1,4.026492,5.816044000000001,187
2017-12-01 01:00,4.1,6.934514000000001,8.500372,191
2017-12-01 01:02,4.1,6.263432,7.158208000000001,197
2017-12-01 01:04,4.2,6.487126,7.82929,197
2017-12-01 01:06,4.3,6.487126,7.82929,199
2017-12-01 01:08,4.3,6.039738000000001,6.934514000000001,198
2017-12-01 01:10,4.3,6.039738000000001,6.934514000000001,204
2017-12-01 01:12,4.2,5.816044000000001,7.158208000000001,205
2017-12-01 01:14,4.2,5.816044000000001,6.71082,203
2017-12-01 01:16,4.2,5.3686560000000005,6.71082,203
2017-12-01 01:18,4.2,5.3686560000000005,6.71082,194
2017-12-01 01:20,4.3,6.71082,7.82929,194
2017-12-01 01:22,4.3,6.263432,7.158208000000001,195
2017-12-01 01:24,4.2,6.263432,7.605596,196
2017-12-01 01:26,4.3,6.263432,8.724066,192
2017-12-01 01:28,4.2,5.144962,6.039738000000001,194
2017-12-01 01:30,4.2,6.263432,7.82929,197
2017-12-01 01:32,4.2,6.039738000000001,6.71082,202
2017-12-01 01:34,4.2,6.263432,7.158208000000001,207
2017-12-01 01:36,4.2,6.487126,7.158208000000001,208
2017-12-01 01:38,4.1,6.263432,7.158208000000001,208
2017-12-01 01:40,4.1,5.816044000000001,6.934514000000001,208
2017-12-01 01:42,4.1,6.71082,7.82929,207
2017-12-01 01:44,4,6.487126,7.381902,206
2017-12-01 01:46,4,6.71082,7.381902,202
2017-12-01 01:48,3.9,6.71082,7.381902,200
2017-12-01 01:50,3.9,7.605596,8.94776,200
2017-12-01 01:52,3.8,7.605596,9.171454,198
2017-12-01 01:54,3.9,7.381902,10.066230000000001,203
2017-12-01 01:56,3.9,7.381902,8.276678,202
2017-12-01 01:58,3.8,7.158208000000001,8.276678,203
2017-12-01 02:00,3.8,6.487126,7.381902,203
2017-12-01 02:02,3.8,6.263432,7.158208000000001,202
2017-12-01 02:04,3.7,6.487126,7.605596,202
2017-12-01 02:06,3.7,6.263432,7.381902,201
2017-12-01 02:08,3.7,6.71082,7.381902,198
2017-12-01 02:10,3.7,6.934514000000001,8.276678,198
2017-12-01 02:12,3.7,6.71082,7.381902,197
2017-12-01 02:14,3.7,7.158208000000001,8.276678,198
2017-12-01 02:16,3.8,7.605596,9.171454,195
2017-12-01 02:18,3.8,7.158208000000001,8.724066,199
2017-12-01 02:20,3.7,7.381902,8.276678,198
2017-12-01 02:22,3.7,7.158208000000001,8.276678,202
2017-12-01 02:24,3.7,7.381902,9.618842,195
2017-12-01 02:26,3.7,7.381902,8.500372,193
2017-12-01 02:28,3.7,7.82929,8.724066,194
2017-12-01 02:30,3.8,7.605596,9.171454,195
2017-12-01 02:32,3.7,7.605596,8.724066,195
2017-12-01 02:34,3.8,8.276678,11.184700000000001,192
2017-12-01 02:36,3.8,8.276678,9.395148,198
2017-12-01 02:38,3.7,8.052984,10.066230000000001,195
2017-12-01 02:40,3.7,7.381902,8.276678,196
2017-12-01 02:42,3.7,7.158208000000001,8.94776,195
2017-12-01 02:44,3.6,6.934514000000001,8.276678,197
2017-12-01 02:46,3.6,6.487126,7.381902,199
2017-12-01 02:48,3.5,7.381902,8.724066,195
2017-12-01 02:50,3.6,8.500372,10.066230000000001,194
2017-12-01 02:52,3.6,7.82929,9.171454,197
2017-12-01 02:54,3.5,8.052984,9.395148,200
2017-12-01 02:56,3.5,7.82929,9.171454,202
2017-12-01 02:58,3.5,8.052984,9.842536,197
2017-12-01 03:00,3.5,7.381902,8.500372,197
2017-12-01 03:02,3.4,7.158208000000001,8.500372,198
2017-12-01 03:04,3.4,7.381902,8.500372,198
2017-12-01 03:06,3.3,7.605596,8.94776,198
2017-12-01 03:08,3.3,8.276678,10.066230000000001,199
2017-12-01 03:10,3.4,8.500372,10.066230000000001,200
2017-12-01 03:12,3.4,8.724066,9.618842,198
2017-12-01 03:14,3.4,8.276678,9.395148,197
2017-12-01 03:16,3.3,8.052984,8.724066,200
2017-12-01 03:18,3.3,7.82929,8.724066,200
2017-12-01 03:20,3.3,7.605596,8.500372,202
2017-12-01 03:22,3.4,7.82929,9.395148,203
2017-12-01 03:24,3.4,7.605596,8.500372,201
2017-12-01 03:26,3.4,7.82929,8.94776,201
2017-12-01 03:28,3.4,7.605596,8.94776,203
2017-12-01 03:30,3.4,8.052984,9.618842,203
2017-12-01 03:32,3.3,7.605596,8.724066,201
2017-12-01 03:34,3.3,8.276678,9.395148,204
2017-12-01 03:36,3.3,8.276678,9.171454,204
2017-12-01 03:38,3.3,8.052984,9.395148,202
2017-12-01 03:40,3.2,7.605596,9.842536,199
2017-12-01 03:42,3.2,7.82929,8.500372,199
2017-12-01 03:44,3.2,7.82929,8.94776,197
2017-12-01 03:46,3.2,7.82929,8.94776,197
2017-12-01 03:48,3.3,7.381902,9.842536,196
2017-12-01 03:50,3.2,6.934514000000001,8.276678,195
2017-12-01 03:52,3.2,7.158208000000001,8.724066,192
2017-12-01 03:54,3.3,8.276678,9.842536,188
2017-12-01 03:56,3.4,8.276678,10.066230000000001,191
2017-12-01 03:58,3.4,7.381902,8.724066,192
2017-12-01 04:00,3.3,7.381902,9.171454,192
2017-12-01 04:02,3.3,6.71082,7.82929,189
2017-12-01 04:04,3.3,6.039738000000001,7.605596,187
2017-12-01 04:06,3.3,5.816044000000001,6.934514000000001,182
2017-12-01 04:08,3.3,4.921268,6.71082,184
2017-12-01 04:10,3.3,4.026492,4.921268,176
2017-12-01 04:12,3.3,4.47388,5.592350000000001,176
2017-12-01 04:14,3.3,4.026492,4.697574,170
2017-12-01 04:16,3.3,3.131716,4.697574,170
2017-12-01 04:18,3.4,2.9080220000000003,3.802798,169
2017-12-01 04:20,3.4,3.5791040000000005,4.250186,159
2017-12-01 04:22,3.4,4.026492,5.144962,150
2017-12-01 04:24,3.4,3.5791040000000005,4.921268,160
2017-12-01 04:26,3.4,2.9080220000000003,3.802798,151
2017-12-01 04:28,3.4,2.6843280000000003,3.35541,147
2017-12-01 04:30,3.4,3.35541,4.250186,149
2017-12-01 04:32,3.4,3.131716,4.026492,148
2017-12-01 04:34,3.4,3.35541,3.802798,159
2017-12-01 04:36,3.5,3.802798,4.47388,158
2017-12-01 04:38,3.5,4.250186,4.921268,168
2017-12-01 04:40,3.6,4.026492,4.47388,176
2017-12-01 04:42,3.6,4.250186,4.47388,175
2017-12-01 04:44,3.6,3.802798,4.47388,183
2017-12-01 04:46,3.5,3.131716,3.5791040000000005,192
2017-12-01 04:48,3.5,2.6843280000000003,3.131716,189
2017-12-01 04:50,3.4,2.23694,2.9080220000000003,180
2017-12-01 04:52,3.4,1.7895520000000003,2.23694,159
2017-12-01 04:54,3.4,2.460634,4.250186,147
2017-12-01 04:56,3.3,4.697574,5.592350000000001,124
2017-12-01 04:58,3.3,5.144962,6.487126,118
2017-12-01 05:00,3,5.816044000000001,6.263432,116
2017-12-01 05:02,2.9,4.921268,5.592350000000001,125
2017-12-01 05:04,2.9,4.921268,5.592350000000001,131
2017-12-01 05:06,2.9,5.592350000000001,6.263432,135
2017-12-01 05:08,2.8,6.263432,6.71082,131
2017-12-01 05:10,2.7,6.039738000000001,6.487126,126
2017-12-01 05:12,2.6,6.263432,6.71082,125
2017-12-01 05:14,2.6,6.487126,6.934514000000001,129
2017-12-01 05:16,2.5,6.487126,7.158208000000001,129
2017-12-01 05:18,2.5,6.934514000000001,7.381902,128
2017-12-01 05:20,2.4,7.158208000000001,7.605596,130
2017-12-01 05:22,2.4,7.158208000000001,7.82929,134
2017-12-01 05:24,2.4,7.605596,8.052984,136
2017-12-01 05:26,2.3,7.82929,8.276678,137
2017-12-01 05:28,2.4,7.605596,8.276678,140
2017-12-01 05:30,2.4,7.82929,8.500372,140
2017-12-01 05:32,2.4,8.052984,8.724066,142
2017-12-01 05:34,2.4,8.052984,8.94776,147
2017-12-01 05:36,2.4,8.500372,10.066230000000001,144
2017-12-01 05:38,2.5,9.171454,10.066230000000001,143
2017-12-01 05:40,2.5,8.94776,9.618842,145
2017-12-01 05:42,2.5,8.500372,9.171454,147
2017-12-01 05:44,2.6,8.500372,9.171454,145
2017-12-01 05:46,2.5,8.276678,9.171454,143
2017-12-01 05:48,2.5,7.82929,8.276678,146
2017-12-01 05:50,2.6,7.82929,8.724066,148
2017-12-01 05:52,2.6,8.276678,8.724066,146
2017-12-01 05:54,2.6,7.381902,8.052984,148
2017-12-01 05:56,2.7,6.71082,7.381902,151
2017-12-01 05:58,2.7,6.934514000000001,7.605596,150
2017-12-01 06:00,2.7,6.934514000000001,7.605596,156
2017-12-01 06:02,2.8,6.039738000000001,6.934514000000001,158
2017-12-01 06:04,2.8,4.47388,5.144962,165
2017-12-01 06:06,2.8,3.5791040000000005,4.47388,165
2017-12-01 06:08,2.8,3.5791040000000005,4.026492,166
2017-12-01 06:10,2.8,3.802798,4.250186,162
2017-12-01 06:12,2.8,3.35541,4.026492,166
2017-12-01 06:14,2.8,3.5791040000000005,4.47388,165
2017-12-01 06:16,2.9,4.026492,5.144962,165
2017-12-01 06:18,2.9,3.35541,4.026492,176
2017-12-01 06:20,2.9,3.5791040000000005,4.47388,170
2017-12-01 06:22,2.9,4.026492,5.144962,164
2017-12-01 06:24,2.9,4.026492,4.697574,164
2017-12-01 06:26,2.9,4.026492,4.47388,158
2017-12-01 06:28,2.9,4.026492,4.697574,156
2017-12-01 06:30,2.9,5.3686560000000005,6.934514000000001,154
2017-12-01 06:32,2.8,6.487126,7.605596,156
2017-12-01 06:34,2.8,5.816044000000001,6.71082,162
2017-12-01 06:36,2.8,6.039738000000001,6.934514000000001,163
2017-12-01 06:38,2.8,4.921268,6.71082,167
2017-12-01 06:40,2.8,6.71082,7.82929,154
2017-12-01 06:42,2.7,6.934514000000001,7.605596,152
2017-12-01 06:44,2.6,7.381902,8.276678,151
2017-12-01 06:46,2.6,7.82929,9.171454,149
2017-12-01 06:48,2.6,9.171454,10.289924,152
2017-12-01 06:50,2.6,9.171454,10.066230000000001,155
2017-12-01 06:52,2.7,8.276678,10.066230000000001,165
2017-12-01 06:54,2.8,6.039738000000001,7.381902,175
2017-12-01 06:56,2.7,4.47388,6.487126,175
2017-12-01 06:58,2.7,4.250186,6.934514000000001,178
2017-12-01 07:00,2.6,6.039738000000001,9.395148,164
2017-12-01 07:02,2.6,6.934514000000001,8.500372,160
2017-12-01 07:04,2.6,6.71082,8.500372,168
2017-12-01 07:06,2.6,6.71082,8.276678,170
2017-12-01 07:08,2.5,5.144962,6.71082,176
2017-12-01 07:10,2.5,5.592350000000001,6.934514000000001,175
2017-12-01 07:12,2.5,6.487126,7.82929,173
2017-12-01 07:14,2.6,6.487126,7.82929,172
2017-12-01 07:16,2.6,6.039738000000001,7.381902,169
2017-12-01 07:18,2.5,6.263432,6.934514000000001,175
2017-12-01 07:20,2.6,7.158208000000001,8.276678,163
2017-12-01 07:22,2.6,6.039738000000001,6.487126,174
2017-12-01 07:24,2.5,5.816044000000001,6.71082,174
2017-12-01 07:26,2.5,5.816044000000001,6.487126,172
2017-12-01 07:28,2.6,6.263432,6.934514000000001,170
2017-12-01 07:30,2.6,6.039738000000001,6.934514000000001,174
2017-12-01 07:32,2.7,6.263432,7.605596,173
2017-12-01 07:34,2.7,6.039738000000001,6.934514000000001,173
2017-12-01 07:36,2.7,6.487126,7.158208000000001,173
2017-12-01 07:38,2.7,6.71082,7.82929,174
2017-12-01 07:40,2.7,6.487126,7.158208000000001,174
2017-12-01 07:42,2.8,6.039738000000001,7.381902,175
2017-12-01 07:44,2.9,5.144962,6.263432,173
2017-12-01 07:46,3,5.144962,6.039738000000001,173
2017-12-01 07:48,3.1,4.921268,5.816044000000001,174
2017-12-01 07:50,3.2,4.47388,5.144962,174
2017-12-01 07:52,3.3,4.250186,4.697574,170
2017-12-01 07:54,3.4,4.697574,5.3686560000000005,173
2017-12-01 07:56,3.4,4.921268,5.592350000000001,175
2017-12-01 07:58,3.5,4.47388,5.592350000000001,176
2017-12-01 08:00,3.6,4.026492,4.47388,180
2017-12-01 08:02,3.7,4.026492,4.697574,174
2017-12-01 08:04,3.8,3.35541,4.47388,168
2017-12-01 08:06,3.9,2.6843280000000003,3.131716,176
2017-12-01 08:08,4,2.9080220000000003,3.5791040000000005,163
2017-12-01 08:10,4.1,3.5791040000000005,5.3686560000000005,149
2017-12-01 08:12,4.1,4.47388,5.816044000000001,143
2017-12-01 08:14,4.1,4.921268,6.039738000000001,145
2017-12-01 08:16,4,6.263432,7.158208000000001,146
2017-12-01 08:18,3.9,7.381902,9.395148,145
2017-12-01 08:20,3.7,5.144962,7.381902,152
2017-12-01 08:22,3.8,5.144962,7.381902,150
2017-12-01 08:24,3.7,6.263432,7.605596,144
2017-12-01 08:26,3.8,5.816044000000001,7.605596,142
2017-12-01 08:28,3.9,4.921268,7.158208000000001,139
2017-12-01 08:30,4,6.039738000000001,7.158208000000001,139
2017-12-01 08:32,4,5.3686560000000005,6.263432,144
2017-12-01 08:34,4.1,6.039738000000001,7.605596,141
2017-12-01 08:36,4.1,6.039738000000001,7.381902,137
2017-12-01 08:38,4,6.934514000000001,8.276678,144
2017-12-01 08:40,4,6.934514000000001,8.052984,140
2017-12-01 08:42,4.1,7.158208000000001,8.724066,144
2017-12-01 08:44,4.3,6.487126,8.276678,147
2017-12-01 08:46,4.4,5.816044000000001,7.605596,143
2017-12-01 08:48,4.5,7.605596,8.94776,150
2017-12-01 08:50,4.6,6.71082,8.052984,144
2017-12-01 08:52,4.8,8.052984,10.513618000000001,149
2017-12-01 08:54,5,7.381902,10.066230000000001,149
2017-12-01 08:56,4.9,8.500372,10.289924,144
2017-12-01 08:58,4.8,8.500372,9.842536,139
2017-12-01 09:00,4.7,9.395148,10.289924,142
2017-12-01 09:02,4.7,10.961006000000001,13.42164,150
2017-12-01 09:04,4.9,10.961006000000001,13.197946000000002,146
2017-12-01 09:06,5,10.961006000000001,13.197946000000002,148
2017-12-01 09:08,5.1,11.408394,14.54011,148
2017-12-01 09:10,5.2,10.289924,11.855782,147
2017-12-01 09:12,5.3,10.737312000000001,13.197946000000002,149
2017-12-01 09:14,5.2,11.408394,13.197946000000002,144
2017-12-01 09:16,5.1,10.961006000000001,11.855782,140
2017-12-01 09:18,5,10.961006000000001,12.303170000000001,142
2017-12-01 09:20,5,11.408394,12.526864,143
2017-12-01 09:22,5,11.408394,13.197946000000002,142
2017-12-01 09:24,5.1,11.408394,12.526864,148
2017-12-01 09:26,5.2,12.079476000000001,13.869028000000002,147
2017-12-01 09:28,5.3,12.303170000000001,13.869028000000002,147
2017-12-01 09:30,5.3,12.079476000000001,12.750558000000002,147
2017-12-01 09:32,5.3,11.184700000000001,12.526864,148
2017-12-01 09:34,5.4,11.184700000000001,12.750558000000002,146
2017-12-01 09:36,5.5,11.408394,14.316416000000002,146
2017-12-01 09:38,5.5,12.079476000000001,13.42164,147
2017-12-01 09:40,5.6,11.855782,13.197946000000002,146
2017-12-01 09:42,5.7,12.079476000000001,13.42164,147
2017-12-01 09:44,5.8,12.526864,14.763804,147
2017-12-01 09:46,5.9,11.855782,14.092722,147
2017-12-01 09:48,6,12.526864,14.316416000000002,151
2017-12-01 09:50,6.1,12.079476000000001,13.869028000000002,151
2017-12-01 09:52,6.2,12.974252,14.54011,151
2017-12-01 09:54,6.2,12.974252,14.987498000000002,152
2017-12-01 09:56,6.3,11.855782,13.645334,152
2017-12-01 09:58,6.3,13.869028000000002,15.65858,150
2017-12-01 10:00,6.4,13.869028000000002,14.987498000000002,150
2017-12-01 10:02,6.5,13.42164,15.434886000000002,147
2017-12-01 10:04,6.6,12.079476000000001,13.645334,146
2017-12-01 10:06,6.7,12.750558000000002,14.092722,152
2017-12-01 10:08,6.7,12.750558000000002,14.54011,148
2017-12-01 10:10,6.8,12.526864,14.54011,146
2017-12-01 10:12,6.9,15.434886000000002,17.224438000000003,143
2017-12-01 10:14,6.9,13.869028000000002,15.434886000000002,143
2017-12-01 10:16,7,11.855782,13.197946000000002,148
2017-12-01 10:18,7,10.737312000000001,12.303170000000001,148
2017-12-01 10:20,7.1,11.184700000000001,12.526864,150
2017-12-01 10:22,7.2,10.289924,11.855782,146
2017-12-01 10:24,7.2,11.184700000000001,14.092722,142
2017-12-01 10:26,7.2,12.750558000000002,14.54011,137
2017-12-01 10:28,7.2,14.092722,15.211192,136
2017-12-01 10:30,7.2,13.197946000000002,14.316416000000002,133
2017-12-01 10:32,7.3,11.408394,14.092722,142
2017-12-01 10:34,7.4,14.316416000000002,17.224438000000003,141
2017-12-01 10:36,7.5,14.763804,16.553356,139
2017-12-01 10:38,7.5,14.092722,15.434886000000002,139
2017-12-01 10:40,7.5,13.869028000000002,15.211192,139
2017-12-01 10:42,7.5,14.092722,16.329662,136
2017-12-01 10:44,7.6,14.54011,16.553356,139
2017-12-01 10:46,7.7,13.197946000000002,14.987498000000002,142
2017-12-01 10:48,7.8,12.303170000000001,14.092722,144
2017-12-01 10:50,7.8,11.408394,14.316416000000002,143
2017-12-01 10:52,7.7,10.737312000000001,12.750558000000002,147
2017-12-01 10:54,7.9,10.737312000000001,12.079476000000001,150
2017-12-01 10:56,7.9,10.289924,12.974252,152
2017-12-01 10:58,7.9,10.289924,12.526864,150
2017-12-01 11:00,7.9,10.961006000000001,13.197946000000002,150
2017-12-01 11:02,8,11.408394,12.974252,144
2017-12-01 11:04,7.9,13.197946000000002,15.211192,156
2017-12-01 11:06,8,11.408394,13.197946000000002,154
2017-12-01 11:08,8,11.632088000000001,13.197946000000002,155
2017-12-01 11:10,8,13.869028000000002,16.329662,162
2017-12-01 11:12,8.1,12.974252,15.882274,150
2017-12-01 11:14,8.2,10.737312000000001,12.079476000000001,152
2017-12-01 11:16,8.1,12.079476000000001,14.092722,154
2017-12-01 11:18,8.2,11.855782,14.316416000000002,147
2017-12-01 11:20,8.2,12.303170000000001,15.434886000000002,153
2017-12-01 11:22,8.2,14.316416000000002,15.434886000000002,155
2017-12-01 11:24,8.2,12.526864,15.211192,145
2017-12-01 11:26,8.2,11.855782,14.54011,151
2017-12-01 11:28,8.2,12.974252,15.65858,146
2017-12-01 11:30,8.2,13.42164,15.434886000000002,145
2017-12-01 11:32,8.3,13.869028000000002,15.434886000000002,147
2017-12-01 11:34,8.3,14.316416000000002,15.65858,145
2017-12-01 11:36,8.4,13.645334,15.434886000000002,149
2017-12-01 11:38,8.4,12.974252,14.316416000000002,146
2017-12-01 11:40,8.3,11.855782,13.197946000000002,144
2017-12-01 11:42,8.3,12.303170000000001,13.42164,145
2017-12-01 11:44,8.4,12.526864,14.092722,147
2017-12-01 11:46,8.5,12.974252,14.54011,145
2017-12-01 11:48,8.5,12.526864,14.092722,147
2017-12-01 11:50,8.5,10.737312000000001,12.526864,150
2017-12-01 11:52,8.6,10.066230000000001,11.632088000000001,150
2017-12-01 11:54,8.6,9.842536,11.184700000000001,149
2017-12-01 11:56,8.6,8.500372,9.842536,151
2017-12-01 11:58,8.6,10.513618000000001,12.079476000000001,141
2017-12-01 12:00,8.6,9.842536,11.184700000000001,143
2017-12-01 12:02,8.7,9.842536,12.079476000000001,141
2017-12-01 12:04,8.5,11.184700000000001,13.42164,132
2017-12-01 12:06,8.5,10.737312000000001,13.197946000000002,134
2017-12-01 12:08,8.6,11.408394,13.197946000000002,133
2017-12-01 12:10,8.8,9.618842,10.737312000000001,133
2017-12-01 12:12,8.8,10.289924,12.750558000000002,132
2017-12-01 12:14,8.7,13.197946000000002,14.54011,135
2017-12-01 12:16,8.9,13.197946000000002,14.54011,144
2017-12-01 12:18,8.9,11.184700000000001,13.869028000000002,135
2017-12-01 12:20,8.8,12.526864,14.092722,136
2017-12-01 12:22,8.9,11.855782,13.42164,138
2017-12-01 12:24,9,9.395148,12.079476000000001,142
2017-12-01 12:26,9,12.079476000000001,14.092722,144
2017-12-01 12:28,9,13.42164,15.434886000000002,135
2017-12-01 12:30,9,13.869028000000002,15.434886000000002,140
2017-12-01 12:32,9.1,12.526864,14.316416000000002,144
2017-12-01 12:34,9.1,12.750558000000002,14.316416000000002,143
2017-12-01 12:36,9.2,10.289924,12.750558000000002,138
2017-12-01 12:38,9.2,12.079476000000001,14.316416000000002,150
2017-12-01 12:40,9.2,10.961006000000001,13.869028000000002,127
2017-12-01 12:42,9.2,9.842536,12.079476000000001,126
2017-12-01 12:44,9.2,11.184700000000001,12.526864,114
2017-12-01 12:46,9.2,9.842536,10.513618000000001,118
2017-12-01 12:48,9.2,9.171454,10.737312000000001,117
2017-12-01 12:50,9,7.82929,8.94776,119
2017-12-01 12:52,8.9,7.605596,10.066230000000001,123
2017-12-01 12:54,8.9,7.605596,8.500372,117
2017-12-01 12:56,9,7.605596,9.842536,135
2017-12-01 12:58,9.1,7.158208000000001,9.395148,125
2017-12-01 13:00,9.2,12.526864,14.763804,131
2017-12-01 13:02,9.4,13.869028000000002,15.434886000000002,138
2017-12-01 13:04,9.5,12.303170000000001,14.54011,147
2017-12-01 13:06,9.4,10.513618000000001,11.408394,144
2017-12-01 13:08,9.5,11.184700000000001,12.750558000000002,155
2017-12-01 13:10,9.6,11.408394,12.974252,152
2017-12-01 13:12,9.6,11.632088000000001,14.092722,154
2017-12-01 13:14,9.6,10.737312000000001,12.079476000000001,145
2017-12-01 13:16,9.5,10.513618000000001,12.303170000000001,148
2017-12-01 13:18,9.6,12.526864,14.092722,141
2017-12-01 13:20,9.7,12.974252,15.211192,140
2017-12-01 13:22,9.7,12.526864,14.54011,139
2017-12-01 13:24,9.7,12.750558000000002,14.987498000000002,138
2017-12-01 13:26,9.7,12.303170000000001,14.316416000000002,140
2017-12-01 13:28,9.7,12.974252,14.316416000000002,133
2017-12-01 13:30,9.7,11.408394,12.750558000000002,133
2017-12-01 13:32,9.8,9.618842,11.632088000000001,131
2017-12-01 13:34,9.7,9.395148,10.737312000000001,134
2017-12-01 13:36,9.7,10.513618000000001,12.526864,135
2017-12-01 13:38,9.7,9.842536,11.408394,130
2017-12-01 13:40,9.6,9.171454,10.513618000000001,133
2017-12-01 13:42,9.6,8.724066,10.737312000000001,145
2017-12-01 13:44,9.7,8.724066,9.618842,140
2017-12-01 13:46,9.8,7.605596,9.842536,155
2017-12-01 13:48,9.8,7.605596,8.724066,147
2017-12-01 13:50,9.7,7.158208000000001,8.052984,145
2017-12-01 13:52,9.8,5.816044000000001,6.487126,140
2017-12-01 13:54,9.8,6.487126,7.605596,137
2017-12-01 13:56,9.9,6.263432,7.381902,147
2017-12-01 13:58,10.1,5.592350000000001,6.487126,144
2017-12-01 14:00,10.1,5.3686560000000005,6.934514000000001,135
2017-12-01 14:02,10.1,6.934514000000001,8.724066,129
2017-12-01 14:04,10.1,6.934514000000001,8.724066,116
2017-12-01 14:06,10,9.395148,12.079476000000001,111
2017-12-01 14:08,9.9,7.381902,10.066230000000001,135
2017-12-01 14:10,9.9,7.381902,9.618842,128
2017-12-01 14:12,10.1,8.500372,12.079476000000001,143
2017-12-01 14:14,10.1,8.276678,10.066230000000001,135
2017-12-01 14:16,10.1,9.171454,11.408394,134
2017-12-01 14:18,9.9,9.618842,11.855782,142
2017-12-01 14:20,10,10.961006000000001,12.079476000000001,143
2017-12-01 14:22,10.1,10.737312000000001,13.42164,137
2017-12-01 14:24,10.2,9.618842,12.079476000000001,142
2017-12-01 14:26,10,11.408394,13.42164,136
2017-12-01 14:28,10,11.855782,12.974252,132
2017-12-01 14:30,10.1,10.961006000000001,11.855782,135
2017-12-01 14:32,10.1,12.303170000000001,13.645334,133
2017-12-01 14:34,10.1,12.750558000000002,15.211192,134
2017-12-01 14:36,10.2,11.855782,14.316416000000002,143
2017-12-01 14:38,10.2,10.961006000000001,12.526864,140
2017-12-01 14:40,10.1,9.618842,10.961006000000001,142
2017-12-01 14:42,10.1,9.395148,12.079476000000001,134
2017-12-01 14:44,10.2,7.82929,8.500372,139
2017-12-01 14:46,10.1,8.276678,10.066230000000001,132
2017-12-01 14:48,10,10.961006000000001,12.526864,139
2017-12-01 14:50,10,9.842536,12.079476000000001,139
2017-12-01 14:52,10,11.408394,12.303170000000001,130
2017-12-01 14:54,10.1,11.184700000000001,13.197946000000002,129
2017-12-01 14:56,10,9.395148,12.526864,128
2017-12-01 14:58,9.9,9.842536,11.632088000000001,149
2017-12-01 15:00,10,10.289924,11.632088000000001,133
2017-12-01 15:02,10.1,10.737312000000001,12.303170000000001,126
2017-12-01 15:04,10.1,9.171454,10.513618000000001,135
2017-12-01 15:06,10.1,9.171454,10.513618000000001,137
2017-12-01 15:08,10.1,8.94776,9.395148,133
2017-12-01 15:10,10.1,8.500372,9.618842,134
2017-12-01 15:12,10.1,9.171454,9.842536,138
2017-12-01 15:14,10.1,7.82929,8.724066,134
2017-12-01 15:16,10.1,7.605596,8.500372,127
2017-12-01 15:18,9.9,6.934514000000001,8.276678,125
2017-12-01 15:20,9.9,8.500372,9.618842,125
2017-12-01 15:22,10,8.724066,9.842536,129
2017-12-01 15:24,10,7.82929,10.066230000000001,128
2017-12-01 15:26,10,7.381902,8.500372,127
2017-12-01 15:28,10,6.934514000000001,7.605596,128
2017-12-01 15:30,9.9,6.934514000000001,7.82929,127
2017-12-01 15:32,9.9,5.592350000000001,6.263432,109
2017-12-01 15:34,9.9,5.816044000000001,6.263432,107
2017-12-01 15:36,9.9,6.263432,6.487126,106
2017-12-01 15:38,10,7.381902,8.276678,111
2017-12-01 15:40,9.9,8.724066,9.842536,109
2017-12-01 15:42,9.9,8.500372,9.618842,112
2017-12-01 15:44,9.9,7.82929,8.276678,113
2017-12-01 15:46,9.5,6.934514000000001,8.052984,120
2017-12-01 15:48,9.4,7.381902,7.82929,126
2017-12-01 15:50,9.7,7.82929,8.276678,122
2017-12-01 15:52,9.7,7.82929,8.500372,119
2017-12-01 15:54,9.7,8.500372,9.171454,123
2017-12-01 15:56,9.6,8.276678,8.94776,122
2017-12-01 15:58,9.8,8.94776,10.737312000000001,118
2017-12-01 16:00,9.7,10.066230000000001,10.513618000000001,115
2017-12-01 16:02,9.5,10.961006000000001,12.974252,109
2017-12-01 16:04,9.6,11.632088000000001,13.42164,109
2017-12-01 16:06,9.6,11.408394,12.750558000000002,110
2017-12-01 16:08,9.6,11.632088000000001,12.526864,112
2017-12-01 16:10,9.6,11.855782,12.974252,112
2017-12-01 16:12,9.5,11.408394,12.079476000000001,118
2017-12-01 16:14,9.6,11.632088000000001,12.526864,115
2017-12-01 16:16,9.5,10.961006000000001,12.750558000000002,114
2017-12-01 16:18,9.6,11.408394,12.526864,120
2017-12-01 16:20,9.6,10.961006000000001,12.750558000000002,118
2017-12-01 16:22,9.6,12.079476000000001,13.197946000000002,121
2017-12-01 16:24,9.6,12.526864,14.092722,121
2017-12-01 16:26,9.5,10.513618000000001,12.079476000000001,132
2017-12-01 16:28,9.4,9.618842,11.184700000000001,134
2017-12-01 16:30,9.4,12.079476000000001,13.869028000000002,135
2017-12-01 16:32,9.4,11.408394,12.750558000000002,134
2017-12-01 16:34,9.3,10.737312000000001,12.750558000000002,134
2017-12-01 16:36,9.3,9.842536,10.737312000000001,135
2017-12-01 16:38,9.3,10.066230000000001,11.184700000000001,134
2017-12-01 16:40,9.3,9.842536,11.408394,138
2017-12-01 16:42,9.3,8.724066,9.395148,135
2017-12-01 16:44,9.2,8.052984,9.618842,135
2017-12-01 16:46,9.1,8.276678,9.618842,135
2017-12-01 16:48,9.2,9.171454,10.513618000000001,137
2017-12-01 16:50,9.2,8.052984,9.618842,140
2017-12-01 16:52,9.1,8.500372,9.395148,137
2017-12-01 16:54,9,8.052984,9.395148,130
2017-12-01 16:56,9,8.724066,9.842536,122
2017-12-01 16:58,9,8.94776,10.737312000000001,122
2017-12-01 17:00,9,10.737312000000001,12.750558000000002,129
2017-12-01 17:02,9,10.737312000000001,11.184700000000001,128
2017-12-01 17:04,9,9.842536,10.737312000000001,129
2017-12-01 17:06,8.9,9.842536,10.289924,131
2017-12-01 17:08,8.9,9.395148,10.066230000000001,131
2017-12-01 17:10,8.9,9.395148,9.842536,129
2017-12-01 17:12,8.9,8.500372,8.94776,132
2017-12-01 17:14,9,7.82929,8.500372,136
2017-12-01 17:16,9,7.158208000000001,7.605596,133
2017-12-01 17:18,9,6.934514000000001,7.158208000000001,130
2017-12-01 17:20,8.9,6.71082,7.381902,128
2017-12-01 17:22,8.9,6.487126,7.158208000000001,124
2017-12-01 17:24,8.9,6.934514000000001,7.605596,122
2017-12-01 17:26,8.8,7.158208000000001,7.605596,116
2017-12-01 17:28,8.7,6.263432,6.487126,103
2017-12-01 17:30,8.3,6.71082,7.381902,73
2017-12-01 17:32,7.8,6.934514000000001,8.276678,68
2017-12-01 17:34,7.9,7.82929,8.276678,71
2017-12-01 17:36,8,7.605596,8.052984,76
2017-12-01 17:38,8.1,7.158208000000001,7.82929,80
2017-12-01 17:40,8.2,6.487126,6.934514000000001,81
2017-12-01 17:42,8.2,6.934514000000001,7.381902,76
2017-12-01 17:44,7.9,6.71082,7.158208000000001,74
2017-12-01 17:46,7.8,6.71082,7.158208000000001,68
2017-12-01 17:48,7.7,6.039738000000001,6.263432,73
2017-12-01 17:50,7.9,6.039738000000001,6.487126,72
2017-12-01 17:52,8.1,6.263432,6.487126,72
2017-12-01 17:54,8.2,6.263432,6.71082,72
2017-12-01 17:56,8.2,6.487126,6.934514000000001,70
2017-12-01 17:58,8.2,6.487126,6.934514000000001,74
2017-12-01 18:00,8.2,6.71082,6.934514000000001,74
2017-12-01 18:02,8.2,6.71082,7.158208000000001,72
2017-12-01 18:04,8.2,7.158208000000001,7.381902,75
2017-12-01 18:06,8.2,6.71082,6.934514000000001,78
2017-12-01 18:08,8.1,6.487126,6.934514000000001,78
2017-12-01 18:10,8.1,6.71082,7.158208000000001,77
2017-12-01 18:12,7.8,6.934514000000001,7.158208000000001,74
2017-12-01 18:14,7.6,6.487126,7.381902,66
2017-12-01 18:16,7.3,6.71082,7.381902,69
2017-12-01 18:18,7.1,7.381902,7.82929,69
2017-12-01 18:20,7,7.605596,7.82929,72
2017-12-01 18:22,7,7.381902,7.82929,72
2017-12-01 18:24,6.9,7.605596,8.276678,62
2017-12-01 18:26,6.8,7.82929,8.276678,57
2017-12-01 18:28,6.6,8.276678,9.171454,65
2017-12-01 18:30,6.4,8.500372,9.171454,71
2017-12-01 18:32,6.4,8.500372,8.94776,75
2017-12-01 18:34,6.4,8.500372,9.171454,76
2017-12-01 18:36,6.4,8.724066,9.171454,80
2017-12-01 18:38,6.4,8.052984,8.94776,80
2017-12-01 18:40,6.4,6.934514000000001,7.605596,83
2017-12-01 18:42,6.3,6.487126,7.158208000000001,86
2017-12-01 18:44,6.3,6.487126,7.158208000000001,90
2017-12-01 18:46,6.2,7.158208000000001,7.605596,87
2017-12-01 18:48,6.3,7.381902,8.052984,86
2017-12-01 18:50,6.2,8.276678,8.724066,90
2017-12-01 18:52,6.3,8.500372,8.724066,93
2017-12-01 18:54,6.5,8.052984,8.500372,97
2017-12-01 18:56,6.6,7.381902,7.82929,97
2017-12-01 18:58,6.6,6.934514000000001,7.605596,98
2017-12-01 19:00,6.7,6.263432,6.934514000000001,99
2017-12-01 19:02,6.7,6.263432,6.71082,100
2017-12-01 19:04,6.7,6.039738000000001,6.263432,97
2017-12-01 19:06,6.7,5.816044000000001,6.487126,78
2017-12-01 19:08,6.5,7.158208000000001,8.276678,77
2017-12-01 19:10,6.3,6.934514000000001,8.052984,84
2017-12-01 19:12,6.3,7.605596,8.724066,80
2017-12-01 19:14,6.6,7.605596,8.276678,78
2017-12-01 19:16,6.6,7.158208000000001,7.381902,78
2017-12-01 19:18,6.6,7.158208000000001,7.605596,71
2017-12-01 19:20,6.5,7.158208000000001,7.82929,69
2017-12-01 19:22,6.3,7.158208000000001,7.82929,71
2017-12-01 19:24,6.2,7.158208000000001,7.605596,76
2017-12-01 19:26,6.3,6.71082,7.158208000000001,81
2017-12-01 19:28,6.3,6.71082,7.381902,88
2017-12-01 19:30,6.3,6.487126,6.934514000000001,95
2017-12-01 19:32,6.3,6.487126,7.158208000000001,101
2017-12-01 19:34,6.4,7.158208000000001,7.605596,101
2017-12-01 19:36,6.4,6.934514000000001,7.381902,105
2017-12-01 19:38,6.4,6.487126,7.158208000000001,108
2017-12-01 19:40,6.4,5.3686560000000005,6.039738000000001,112
2017-12-01 19:42,6.3,4.47388,4.921268,112
2017-12-01 19:44,6.3,4.921268,5.3686560000000005,109
2017-12-01 19:46,6.3,5.592350000000001,6.039738000000001,102
2017-12-01 19:48,6.3,5.3686560000000005,6.263432,95
2017-12-01 19:50,6.3,4.921268,5.592350000000001,89
2017-12-01 19:52,6.3,5.144962,5.816044000000001,87
2017-12-01 19:54,6.3,5.144962,5.3686560000000005,87
2017-12-01 19:56,6.4,5.144962,5.3686560000000005,87
2017-12-01 19:58,6.3,4.921268,5.3686560000000005,94
2017-12-01 20:00,6.3,5.144962,6.039738000000001,99
2017-12-01 20:02,6.4,6.039738000000001,6.71082,101
2017-12-01 20:04,6.5,7.158208000000001,7.605596,100
2017-12-01 20:06,6.6,7.82929,8.500372,101
2017-12-01 20:08,6.7,8.052984,9.395148,100
2017-12-01 20:10,6.8,8.052984,8.94776,97
2017-12-01 20:12,6.8,7.82929,9.171454,97
2017-12-01 20:14,6.8,8.500372,9.618842,99
2017-12-01 20:16,6.9,9.171454,9.842536,102
2017-12-01 20:18,6.9,9.618842,10.066230000000001,103
2017-12-01 20:20,7,9.842536,10.737312000000001,103
2017-12-01 20:22,7,9.395148,10.066230000000001,107
2017-12-01 20:24,6.9,9.618842,10.289924,104
2017-12-01 20:26,6.9,9.395148,10.513618000000001,106
2017-12-01 20:28,6.9,8.94776,10.066230000000001,114
2017-12-01 20:30,6.9,8.724066,9.395148,112
2017-12-01 20:32,6.9,8.500372,9.171454,108
2017-12-01 20:34,6.8,8.276678,8.94776,107
2017-12-01 20:36,6.8,8.276678,8.94776,107
2017-12-01 20:38,6.8,8.276678,8.94776,107
2017-12-01 20:40,6.8,8.276678,8.724066,111
2017-12-01 20:42,6.9,8.052984,8.94776,115
2017-12-01 20:44,7,7.381902,9.171454,124
2017-12-01 20:46,7,6.71082,9.171454,127
2017-12-01 20:48,6.9,7.158208000000001,8.276678,135
2017-12-01 20:50,6.9,7.605596,8.724066,138
2017-12-01 20:52,6.9,7.82929,8.500372,141
2017-12-01 20:54,6.9,6.934514000000001,7.605596,144
2017-12-01 20:56,6.9,6.039738000000001,7.381902,150
2017-12-01 20:58,6.9,6.934514000000001,8.276678,148
2017-12-01 21:00,7,8.94776,10.066230000000001,140
2017-12-01 21:02,7,10.066230000000001,11.184700000000001,135
2017-12-01 21:04,7.1,8.94776,10.289924,134
2017-12-01 21:06,7,8.052984,10.289924,135
2017-12-01 21:08,7,8.276678,10.513618000000001,135
2017-12-01 21:10,7,7.605596,9.842536,135
2017-12-01 21:12,7,8.724066,10.066230000000001,131
2017-12-01 21:14,7,8.94776,9.842536,135
2017-12-01 21:16,7,9.842536,10.737312000000001,135
2017-12-01 21:18,6.9,9.171454,10.513618000000001,135
2017-12-01 21:20,6.9,9.395148,10.737312000000001,136
2017-12-01 21:22,6.9,9.171454,10.513618000000001,131
2017-12-01 21:24,6.9,9.395148,10.066230000000001,131
2017-12-01 21:26,6.9,10.066230000000001,11.408394,129
2017-12-01 21:28,6.8,9.171454,9.842536,130
2017-12-01 21:30,6.8,8.94776,9.618842,128
2017-12-01 21:32,6.8,8.724066,9.395148,130
2017-12-01 21:34,6.7,8.500372,9.395148,132
2017-12-01 21:36,6.7,8.276678,8.94776,128
2017-12-01 21:38,6.6,8.276678,8.94776,127
2017-12-01 21:40,6.6,8.276678,9.842536,126
2017-12-01 21:42,6.6,8.500372,9.395148,127
2017-12-01 21:44,6.6,8.276678,8.94776,132
2017-12-01 21:46,6.5,8.052984,9.395148,132
2017-12-01 21:48,6.5,8.94776,9.842536,135
2017-12-01 21:50,6.5,9.395148,9.842536,134
2017-12-01 21:52,6.4,9.618842,10.066230000000001,134
2017-12-01 21:54,6.5,9.618842,10.289924,132
2017-12-01 21:56,6.4,9.842536,10.513618000000001,132
2017-12-01 21:58,6.4,9.842536,11.184700000000001,130
2017-12-01 22:00,6.4,10.066230000000001,10.737312000000001,129
2017-12-01 22:02,6.5,9.842536,10.513618000000001,128
2017-12-01 22:04,6.5,9.842536,10.513618000000001,128
2017-12-01 22:06,6.5,9.395148,10.066230000000001,127
2017-12-01 22:08,6.4,8.94776,9.842536,125
2017-12-01 22:10,6.4,8.724066,9.842536,125
2017-12-01 22:12,6.4,7.605596,8.052984,123
2017-12-01 22:14,6.3,8.052984,8.724066,119
2017-12-01 22:16,6.4,7.82929,8.500372,117
2017-12-01 22:18,6.3,7.605596,8.276678,115
2017-12-01 22:20,6.2,7.605596,8.94776,115
2017-12-01 22:22,6.2,7.605596,8.724066,111
2017-12-01 22:24,6.2,6.934514000000001,7.605596,113
2017-12-01 22:26,6.1,6.263432,6.71082,111
2017-12-01 22:28,6.1,6.71082,7.158208000000001,111
2017-12-01 22:30,6,6.487126,7.158208000000001,109
2017-12-01 22:32,6,6.71082,7.158208000000001,112
2017-12-01 22:34,6,6.934514000000001,7.158208000000001,112
2017-12-01 22:36,6,6.487126,7.158208000000001,113
2017-12-01 22:38,6,6.039738000000001,6.934514000000001,112
2017-12-01 22:40,6,6.039738000000001,6.487126,110
2017-12-01 22:42,6,5.592350000000001,5.816044000000001,110
2017-12-01 22:44,6,5.3686560000000005,6.263432,110
2017-12-01 22:46,6,5.3686560000000005,5.816044000000001,110
2017-12-01 22:48,6,5.144962,5.816044000000001,114
2017-12-01 22:50,6,5.592350000000001,6.487126,119
2017-12-01 22:52,6.1,6.487126,7.381902,120
2017-12-01 22:54,6.3,8.276678,9.171454,115
2017-12-01 22:56,6.4,8.500372,9.395148,118
2017-12-01 22:58,6.4,8.276678,9.171454,116
2017-12-01 23:00,6.4,9.842536,11.184700000000001,117
2017-12-01 23:02,6.5,10.289924,12.079476000000001,114
2017-12-01 23:04,6.5,9.395148,10.737312000000001,117
2017-12-01 23:06,6.5,10.066230000000001,12.079476000000001,118
2017-12-01 23:08,6.5,9.842536,11.632088000000001,115
2017-12-01 23:10,6.5,10.066230000000001,11.184700000000001,114
2017-12-01 23:12,6.5,10.289924,11.408394,113
2017-12-01 23:14,6.5,10.513618000000001,11.855782,115
2017-12-01 23:16,6.4,9.842536,11.184700000000001,113
2017-12-01 23:18,6.4,9.842536,10.961006000000001,114
2017-12-01 23:20,6.4,9.171454,10.289924,111
2017-12-01 23:22,6.4,9.618842,10.513618000000001,114
2017-12-01 23:24,6.4,9.395148,10.737312000000001,113
2017-12-01 23:26,6.4,9.171454,10.289924,112
2017-12-01 23:28,6.4,8.94776,10.066230000000001,112
2017-12-01 23:30,6.4,8.500372,9.395148,113
2017-12-01 23:32,6.4,6.934514000000001,8.276678,113
2017-12-01 23:34,6.3,6.487126,7.605596,112
2017-12-01 23:36,6.3,6.934514000000001,9.171454,114
2017-12-01 23:38,6.3,7.381902,8.724066,114
2017-12-01 23:40,6.3,5.816044000000001,7.605596,105
2017-12-01 23:42,6.3,6.263432,8.052984,109
2017-12-01 23:44,6.2,4.921268,5.816044000000001,111
2017-12-01 23:46,6.2,5.3686560000000005,5.816044000000001,113
2017-12-01 23:48,6.2,5.144962,6.039738000000001,115
2017-12-01 23:50,6.2,5.144962,5.816044000000001,117
2017-12-01 23:52,6.2,4.697574,5.592350000000001,114
2017-12-01 23:54,6.2,4.697574,5.3686560000000005,120
2017-12-01 23:56,6.2,4.250186,4.921268,124
2017-12-01 23:58,6.2,4.697574,5.592350000000001,138
2017-12-02 00:00,6.2,6.039738000000001,6.934514000000001,144
2017-12-02 00:02,6.2,6.71082,7.381902,139
2017-12-02 00:04,6.2,7.82929,8.94776,138
2017-12-02 00:06,6.2,8.94776,9.842536,131
2017-12-02 00:08,6.3,9.171454,10.737312000000001,129
2017-12-02 00:10,6.3,10.961006000000001,12.750558000000002,126
2017-12-02 00:12,6.3,9.842536,10.737312000000001,128
2017-12-02 00:14,6.2,8.94776,10.066230000000001,128
2017-12-02 00:16,6.1,8.052984,9.171454,129
2017-12-02 00:18,6.1,7.381902,8.052984,125
2017-12-02 00:20,6.1,7.605596,8.724066,130
2017-12-02 00:22,6,8.052984,8.94776,139
2017-12-02 00:24,6.1,8.276678,10.513618000000001,143
2017-12-02 00:26,6.1,8.500372,10.066230000000001,148
2017-12-02 00:28,6.1,8.052984,8.94776,147
2017-12-02 00:30,6.1,8.052984,8.94776,146
2017-12-02 00:32,6.1,9.395148,10.961006000000001,149
2017-12-02 00:34,6,10.066230000000001,11.184700000000001,147
2017-12-02 00:36,6,9.842536,11.408394,152
2017-12-02 00:38,5.9,10.289924,11.184700000000001,146
2017-12-02 00:40,5.8,9.842536,10.961006000000001,145
2017-12-02 00:42,5.7,8.94776,10.513618000000001,139
2017-12-02 00:44,5.7,10.066230000000001,12.303170000000001,141
2017-12-02 00:46,5.6,10.289924,11.184700000000001,142
2017-12-02 00:48,5.6,9.171454,10.289924,139
2017-12-02 00:50,5.6,9.395148,10.513618000000001,139
2017-12-02 00:52,5.6,8.94776,10.289924,140
2017-12-02 00:54,5.5,9.171454,10.066230000000001,138
2017-12-02 00:56,5.6,9.171454,10.066230000000001,144
2017-12-02 00:58,5.6,10.289924,11.855782,148
2017-12-02 01:00,5.6,10.513618000000001,12.526864,150
2017-12-02 01:02,5.6,10.066230000000001,11.184700000000001,151
2017-12-02 01:04,5.6,9.171454,11.184700000000001,143
2017-12-02 01:06,5.5,8.724066,10.066230000000001,145
2017-12-02 01:08,5.5,9.171454,10.066230000000001,145
2017-12-02 01:10,5.6,9.842536,11.184700000000001,142
2017-12-02 01:12,5.6,10.066230000000001,11.855782,141
2017-12-02 01:14,5.6,10.289924,11.855782,137
2017-12-02 01:16,5.6,10.066230000000001,12.079476000000001,139
2017-12-02 01:18,5.7,9.171454,10.961006000000001,137
2017-12-02 01:20,5.7,9.395148,10.513618000000001,139
2017-12-02 01:22,5.7,9.395148,10.289924,137
2017-12-02 01:24,5.7,8.500372,9.171454,141
2017-12-02 01:26,5.7,9.171454,11.184700000000001,145
2017-12-02 01:28,5.7,8.94776,10.513618000000001,146
2017-12-02 01:30,5.7,10.289924,13.42164,144
2017-12-02 01:32,5.7,9.171454,10.961006000000001,144
2017-12-02 01:34,5.7,10.737312000000001,12.079476000000001,143
2017-12-02 01:36,5.7,10.737312000000001,11.855782,145
2017-12-02 01:38,5.7,10.961006000000001,12.303170000000001,147
2017-12-02 01:40,5.8,13.42164,15.434886000000002,149
2017-12-02 01:42,5.8,12.079476000000001,14.987498000000002,142
2017-12-02 01:44,5.7,12.079476000000001,13.42164,141
2017-12-02 01:46,5.6,11.184700000000001,12.750558000000002,143
2017-12-02 01:48,5.6,9.395148,10.737312000000001,142
2017-12-02 01:50,5.5,9.171454,10.289924,136
2017-12-02 01:52,5.5,7.381902,8.724066,135
2017-12-02 01:54,5.5,8.052984,9.395148,134
2017-12-02 01:56,5.5,6.934514000000001,8.052984,131
2017-12-02 01:58,5.5,6.263432,7.381902,126
2017-12-02 02:00,5.4,6.487126,7.82929,125
2017-12-02 02:02,5.4,7.82929,9.618842,127
2017-12-02 02:04,5.4,7.82929,8.94776,127
2017-12-02 02:06,5.4,8.276678,8.94776,124
2017-12-02 02:08,5.4,8.500372,9.395148,127
2017-12-02 02:10,5.3,7.605596,7.82929,126
2017-12-02 02:12,5.3,8.276678,9.842536,134
2017-12-02 02:14,5.4,8.94776,10.066230000000001,133
2017-12-02 02:16,5.3,8.276678,8.724066,130
2017-12-02 02:18,5.4,8.500372,10.289924,130
2017-12-02 02:20,5.4,8.276678,9.842536,127
2017-12-02 02:22,5.4,8.276678,10.289924,128
2017-12-02 02:24,5.3,7.605596,8.276678,127
2017-12-02 02:26,5.3,7.605596,8.500372,124
2017-12-02 02:28,5.3,6.934514000000001,7.605596,124
2017-12-02 02:30,5.3,6.263432,7.158208000000001,116
2017-12-02 02:32,5.3,5.592350000000001,6.039738000000001,119
2017-12-02 02:34,5.3,4.697574,5.592350000000001,111
2017-12-02 02:36,5.3,4.47388,5.144962,115
2017-12-02 02:38,5.3,5.816044000000001,7.82929,115
2017-12-02 02:40,5.2,7.605596,8.052984,113
2017-12-02 02:42,5.2,6.934514000000001,8.276678,112
2017-12-02 02:44,5.2,7.158208000000001,7.82929,116
2017-12-02 02:46,5.2,7.381902,8.500372,123
2017-12-02 02:48,5.2,7.605596,8.500372,121
2017-12-02 02:50,5.2,7.82929,9.842536,120
2017-12-02 02:52,5.2,7.381902,7.82929,125
2017-12-02 02:54,5.3,7.82929,9.171454,125
2017-12-02 02:56,5.3,7.381902,8.052984,120
2017-12-02 02:58,5.2,7.605596,8.500372,117
2017-12-02 03:00,5.3,7.605596,8.724066,113
2017-12-02 03:02,5.2,7.158208000000001,8.052984,115
2017-12-02 03:04,5.2,7.381902,8.276678,116
2017-12-02 03:06,5.2,7.82929,8.724066,113
2017-12-02 03:08,5.2,8.500372,9.842536,119
2017-12-02 03:10,5.2,7.82929,8.500372,114
2017-12-02 03:12,5.2,8.052984,8.94776,117
2017-12-02 03:14,5.2,7.381902,9.171454,120
2017-12-02 03:16,5.1,8.724066,9.618842,121
2017-12-02 03:18,5.1,8.94776,9.842536,110
2017-12-02 03:20,5.1,9.171454,9.842536,109
2017-12-02 03:22,5,8.94776,9.618842,111
2017-12-02 03:24,5,8.94776,9.842536,111
2017-12-02 03:26,5,8.724066,10.289924,100
2017-12-02 03:28,4.9,8.94776,10.066230000000001,100
2017-12-02 03:30,4.9,8.724066,9.842536,98
2017-12-02 03:32,4.8,8.724066,10.066230000000001,100
2017-12-02 03:34,4.7,9.171454,10.289924,101
2017-12-02 03:36,4.7,9.842536,10.513618000000001,101
2017-12-02 03:38,4.7,9.842536,11.408394,104
2017-12-02 03:40,4.7,9.171454,11.184700000000001,106
2017-12-02 03:42,4.7,10.066230000000001,11.855782,109
2017-12-02 03:44,4.7,9.842536,10.737312000000001,109
2017-12-02 03:46,4.7,8.94776,9.395148,105
2017-12-02 03:48,4.7,9.618842,10.961006000000001,107
2017-12-02 03:50,4.7,9.842536,10.289924,109
2017-12-02 03:52,4.8,9.618842,10.289924,106
2017-12-02 03:54,4.8,8.724066,9.618842,105
2017-12-02 03:56,4.8,8.94776,9.618842,106
2017-12-02 03:58,4.8,8.724066,9.842536,110
2017-12-02 04:00,4.9,8.276678,9.171454,113
2017-12-02 04:02,4.9,8.276678,8.94776,112
2017-12-02 04:04,4.9,7.605596,8.724066,112
2017-12-02 04:06,4.9,7.605596,8.276678,112
2017-12-02 04:08,5,7.605596,8.276678,114
2017-12-02 04:10,5,7.605596,8.500372,111
2017-12-02 04:12,5.1,8.052984,9.395148,117
2017-12-02 04:14,5.1,8.500372,10.289924,114
2017-12-02 04:16,5.1,7.605596,8.500372,111
2017-12-02 04:18,5.2,7.605596,8.276678,109
2017-12-02 04:20,5.2,8.276678,9.842536,112
2017-12-02 04:22,5.2,8.500372,9.171454,114
2017-12-02 04:24,5.2,8.724066,11.855782,113
2017-12-02 04:26,5.2,8.500372,11.408394,122
2017-12-02 04:28,5.2,8.500372,9.171454,117
2017-12-02 04:30,5.2,8.276678,9.395148,118
2017-12-02 04:32,5.2,8.500372,9.842536,123
2017-12-02 04:34,5.3,8.724066,10.066230000000001,123
2017-12-02 04:36,5.3,10.289924,11.408394,129
2017-12-02 04:38,5.3,9.395148,10.961006000000001,128
2017-12-02 04:40,5.3,10.066230000000001,10.513618000000001,127
2017-12-02 04:42,5.3,10.289924,12.079476000000001,129
2017-12-02 04:44,5.3,10.513618000000001,11.632088000000001,133
2017-12-02 04:46,5.3,9.618842,10.961006000000001,129
2017-12-02 04:48,5.3,11.184700000000001,12.526864,130
2017-12-02 04:50,5.3,10.961006000000001,12.750558000000002,131
2017-12-02 04:52,5.3,11.632088000000001,12.750558000000002,132
2017-12-02 04:54,5.3,11.855782,13.869028000000002,133
2017-12-02 04:56,5.3,12.079476000000001,14.316416000000002,136
2017-12-02 04:58,5.3,12.303170000000001,14.316416000000002,135
2017-12-02 05:00,5.3,11.632088000000001,12.974252,135
2017-12-02 05:02,5.3,11.408394,12.750558000000002,136
2017-12-02 05:04,5.3,10.513618000000001,12.079476000000001,136
2017-12-02 05:06,5.3,10.066230000000001,11.184700000000001,135
2017-12-02 05:08,5.3,9.618842,10.513618000000001,134
2017-12-02 05:10,5.3,9.842536,10.513618000000001,133
2017-12-02 05:12,5.3,9.395148,10.066230000000001,133
2017-12-02 05:14,5.3,9.395148,10.289924,135
2017-12-02 05:16,5.3,9.618842,10.737312000000001,136
2017-12-02 05:18,5.3,10.513618000000001,11.632088000000001,140
2017-12-02 05:20,5.4,10.289924,11.855782,142
2017-12-02 05:22,5.4,10.289924,12.526864,138
2017-12-02 05:24,5.4,12.303170000000001,14.316416000000002,135
2017-12-02 05:26,5.5,12.750558000000002,13.869028000000002,138
2017-12-02 05:28,5.5,12.079476000000001,14.316416000000002,138
2017-12-02 05:30,5.5,12.974252,15.882274,139
2017-12-02 05:32,5.5,12.750558000000002,14.092722,141
2017-12-02 05:34,5.5,13.42164,15.882274,142
2017-12-02 05:36,5.5,14.092722,15.434886000000002,141
2017-12-02 05:38,5.5,12.750558000000002,15.882274,140
2017-12-02 05:40,5.5,12.974252,14.316416000000002,139
2017-12-02 05:42,5.4,11.184700000000001,12.526864,140
2017-12-02 05:44,5.4,12.079476000000001,13.197946000000002,140
2017-12-02 05:46,5.4,11.632088000000001,13.645334,139
2017-12-02 05:48,5.5,12.079476000000001,12.974252,137
2017-12-02 05:50,5.4,10.513618000000001,11.408394,140
2017-12-02 05:52,5.4,10.737312000000001,11.855782,139
2017-12-02 05:54,5.4,10.737312000000001,12.303170000000001,136
2017-12-02 05:56,5.4,11.855782,12.974252,141
2017-12-02 05:58,5.4,12.303170000000001,13.645334,144
2017-12-02 06:00,5.4,11.408394,13.197946000000002,140
2017-12-02 06:02,5.4,10.513618000000001,11.184700000000001,140
2017-12-02 06:04,5.3,11.184700000000001,12.750558000000002,137
2017-12-02 06:06,5.3,10.961006000000001,11.855782,136
2017-12-02 06:08,5.3,11.632088000000001,13.42164,140
2017-12-02 06:10,5.3,11.408394,12.750558000000002,142
2017-12-02 06:12,5.3,11.408394,13.197946000000002,140
2017-12-02 06:14,5.3,11.632088000000001,12.974252,140
2017-12-02 06:16,5.3,10.737312000000001,12.079476000000001,138
2017-12-02 06:18,5.3,10.737312000000001,11.855782,140
2017-12-02 06:20,5.3,10.513618000000001,11.184700000000001,142
2017-12-02 06:22,5.3,9.842536,11.408394,141
2017-12-02 06:24,5.2,10.737312000000001,11.855782,140
2017-12-02 06:26,5.3,10.737312000000001,11.855782,141
2017-12-02 06:28,5.2,10.961006000000001,12.750558000000002,142
2017-12-02 06:30,5.2,11.408394,12.303170000000001,141
2017-12-02 06:32,5.2,11.408394,12.303170000000001,141
2017-12-02 06:34,5.2,10.513618000000001,11.632088000000001,139
2017-12-02 06:36,5.2,10.513618000000001,11.855782,138
2017-12-02 06:38,5.2,10.513618000000001,11.855782,139
2017-12-02 06:40,5.1,11.632088000000001,12.974252,140
2017-12-02 06:42,5.1,10.513618000000001,12.526864,137
2017-12-02 06:44,5.1,11.184700000000001,12.750558000000002,139
2017-12-02 06:46,5.1,11.632088000000001,13.197946000000002,141
2017-12-02 06:48,5.1,11.632088000000001,13.869028000000002,142
2017-12-02 06:50,5.1,11.184700000000001,13.197946000000002,141
2017-12-02 06:52,5,10.961006000000001,12.303170000000001,141
2017-12-02 06:54,5,11.408394,12.526864,141
2017-12-02 06:56,5,11.184700000000001,13.869028000000002,142
2017-12-02 06:58,5,12.079476000000001,13.197946000000002,142
2017-12-02 07:00,5,12.079476000000001,13.869028000000002,145
2017-12-02 07:02,5,11.855782,13.645334,143
2017-12-02 07:04,4.9,11.855782,13.869028000000002,142
2017-12-02 07:06,4.9,12.079476000000001,13.645334,142
2017-12-02 07:08,4.8,11.632088000000001,12.750558000000002,142
2017-12-02 07:10,4.8,12.079476000000001,13.645334,145
2017-12-02 07:12,4.8,11.408394,13.42164,142
2017-12-02 07:14,4.8,11.408394,12.526864,140
2017-12-02 07:16,4.7,12.079476000000001,13.869028000000002,136
2017-12-02 07:18,4.7,12.750558000000002,14.092722,135
2017-12-02 07:20,4.7,11.855782,12.526864,131
2017-12-02 07:22,4.6,10.961006000000001,11.632088000000001,132
2017-12-02 07:24,4.6,10.961006000000001,12.974252,132
2017-12-02 07:26,4.6,10.737312000000001,11.408394,135
2017-12-02 07:28,4.6,9.618842,11.184700000000001,134
2017-12-02 07:30,4.5,10.961006000000001,11.855782,133
2017-12-02 07:32,4.5,10.513618000000001,11.408394,137
2017-12-02 07:34,4.5,10.513618000000001,11.408394,133
2017-12-02 07:36,4.5,10.513618000000001,11.408394,132
2017-12-02 07:38,4.5,10.066230000000001,11.408394,133
2017-12-02 07:40,4.5,10.066230000000001,10.737312000000001,130
2017-12-02 07:42,4.5,9.842536,10.961006000000001,130
2017-12-02 07:44,4.5,10.066230000000001,10.961006000000001,132
2017-12-02 07:46,4.5,10.513618000000001,11.408394,134
2017-12-02 07:48,4.6,9.842536,11.184700000000001,135
2017-12-02 07:50,4.6,10.289924,11.632088000000001,136
2017-12-02 07:52,4.6,10.737312000000001,11.632088000000001,136
2017-12-02 07:54,4.6,10.737312000000001,11.632088000000001,135
2017-12-02 07:56,4.7,10.513618000000001,11.408394,138
2017-12-02 07:58,4.7,11.184700000000001,12.303170000000001,135
2017-12-02 08:00,4.7,10.737312000000001,11.632088000000001,137
2017-12-02 08:02,4.7,10.961006000000001,12.079476000000001,136
2017-12-02 08:04,4.7,10.513618000000001,11.632088000000001,138
2017-12-02 08:06,4.8,11.408394,12.750558000000002,137
2017-12-02 08:08,4.8,10.737312000000001,12.303170000000001,138
2017-12-02 08:10,4.9,11.855782,12.750558000000002,142
2017-12-02 08:12,5,11.632088000000001,12.303170000000001,141
2017-12-02 08:14,5,12.974252,14.092722,145
2017-12-02 08:16,5.1,14.092722,17.000744,147
2017-12-02 08:18,5.2,13.645334,15.434886000000002,146
2017-12-02 08:20,5.2,12.750558000000002,13.645334,145
2017-12-02 08:22,5.3,12.750558000000002,14.092722,145
2017-12-02 08:24,5.3,12.750558000000002,14.987498000000002,149
2017-12-02 08:26,5.3,12.526864,13.869028000000002,149
2017-12-02 08:28,5.4,12.079476000000001,13.869028000000002,149
2017-12-02 08:30,5.4,12.974252,15.65858,146
2017-12-02 08:32,5.5,13.645334,15.65858,148
2017-12-02 08:34,5.5,13.645334,16.105968,147
2017-12-02 08:36,5.6,12.079476000000001,13.42164,147
2017-12-02 08:38,5.6,12.303170000000001,13.197946000000002,150
2017-12-02 08:40,5.6,10.737312000000001,11.855782,158
2017-12-02 08:42,5.6,10.289924,12.079476000000001,155
2017-12-02 08:44,5.6,11.408394,12.974252,155
2017-12-02 08:46,5.6,11.632088000000001,14.316416000000002,156
2017-12-02 08:48,5.6,12.750558000000002,14.54011,159
2017-12-02 08:50,5.6,12.750558000000002,14.316416000000002,152
2017-12-02 08:52,5.7,12.974252,14.316416000000002,153
2017-12-02 08:54,5.7,11.855782,13.645334,150
2017-12-02 08:56,5.7,13.197946000000002,15.434886000000002,155
2017-12-02 08:58,5.8,13.197946000000002,14.987498000000002,155
2017-12-02 09:00,5.9,11.855782,13.197946000000002,145
2017-12-02 09:02,6,11.184700000000001,12.526864,145
2017-12-02 09:04,6.1,11.408394,13.42164,150
2017-12-02 09:06,6.1,11.408394,12.974252,149
2017-12-02 09:08,6.2,12.526864,13.869028000000002,156
2017-12-02 09:10,6.2,12.079476000000001,15.211192,154
2017-12-02 09:12,6.3,12.079476000000001,13.42164,153
2017-12-02 09:14,6.4,14.987498000000002,16.553356,152
2017-12-02 09:16,6.4,13.645334,15.882274,154
2017-12-02 09:18,6.4,13.42164,16.329662,150
2017-12-02 09:20,6.4,13.869028000000002,15.65858,153
2017-12-02 09:22,6.4,13.645334,15.882274,160
2017-12-02 09:24,6.4,14.763804,16.777050000000003,166
2017-12-02 09:26,6.3,14.763804,17.671826000000003,159
2017-12-02 09:28,6.3,15.211192,17.671826000000003,161
2017-12-02 09:30,6.3,12.974252,16.329662,160
2017-12-02 09:32,6.3,14.54011,16.329662,151
2017-12-02 09:34,6.4,14.54011,18.119214,154
2017-12-02 09:36,6.4,13.42164,15.65858,149
2017-12-02 09:38,6.5,12.526864,14.316416000000002,151
2017-12-02 09:40,6.6,12.079476000000001,13.42164,149
2017-12-02 09:42,6.6,11.632088000000001,13.42164,147
2017-12-02 09:44,6.7,10.737312000000001,12.526864,150
2017-12-02 09:46,6.8,10.289924,12.750558000000002,147
2017-12-02 09:48,6.8,10.961006000000001,12.079476000000001,142
2017-12-02 09:50,6.8,10.066230000000001,11.184700000000001,146
2017-12-02 09:52,6.9,10.289924,12.079476000000001,142
2017-12-02 09:54,6.8,10.513618000000001,12.303170000000001,139
2017-12-02 09:56,6.8,11.184700000000001,12.079476000000001,136
2017-12-02 09:58,6.9,11.408394,12.526864,139
2017-12-02 10:00,7,11.408394,12.526864,144
2017-12-02 10:02,7.1,11.184700000000001,12.526864,145
2017-12-02 10:04,7.2,10.066230000000001,11.184700000000001,143
2017-12-02 10:06,7.2,9.171454,10.737312000000001,143
2017-12-02 10:08,7.2,9.171454,12.079476000000001,140
2017-12-02 10:10,7.2,8.500372,9.842536,141
2017-12-02 10:12,7.4,7.381902,8.052984,140
2017-12-02 10:14,7.4,8.724066,10.961006000000001,147
2017-12-02 10:16,7.6,9.171454,10.513618000000001,147
2017-12-02 10:18,7.6,9.171454,10.513618000000001,157
2017-12-02 10:20,7.6,9.395148,11.184700000000001,149
2017-12-02 10:22,7.7,9.395148,11.408394,146
2017-12-02 10:24,7.8,7.82929,8.94776,149
2017-12-02 10:26,7.9,7.605596,9.842536,148
2017-12-02 10:28,7.9,8.94776,9.842536,144
2017-12-02 10:30,7.9,8.724066,10.066230000000001,154
2017-12-02 10:32,7.9,9.618842,11.184700000000001,152
2017-12-02 10:34,8,8.94776,9.842536,152
2017-12-02 10:36,8.1,8.500372,10.066230000000001,148
2017-12-02 10:38,8.1,8.500372,9.842536,143
2017-12-02 10:40,8.2,7.381902,8.500372,153
2017-12-02 10:42,8.3,7.381902,8.94776,156
2017-12-02 10:44,8.3,8.500372,9.842536,142
2017-12-02 10:46,8.3,8.724066,9.842536,149
2017-12-02 10:48,8.4,8.94776,11.184700000000001,142
2017-12-02 10:50,8.3,8.500372,9.842536,136
2017-12-02 10:52,8.3,8.500372,9.842536,139
2017-12-02 10:54,8.2,9.842536,11.184700000000001,134
2017-12-02 10:56,8.2,9.842536,11.408394,134
2017-12-02 10:58,8.3,10.961006000000001,12.750558000000002,137
2017-12-02 11:00,8.3,9.842536,10.961006000000001,138
2017-12-02 11:02,8.4,9.618842,10.289924,136
2017-12-02 11:04,8.6,9.395148,10.961006000000001,136
2017-12-02 11:06,8.7,8.500372,9.842536,144
2017-12-02 11:08,8.8,7.82929,9.618842,146
2017-12-02 11:10,8.9,6.934514000000001,7.605596,155
2017-12-02 11:12,9,7.82929,8.94776,141
2017-12-02 11:14,9.1,6.487126,7.82929,148
2017-12-02 11:16,9.2,8.276678,10.289924,148
2017-12-02 11:18,9.1,8.94776,10.737312000000001,162
2017-12-02 11:20,9.2,8.052984,9.842536,164
2017-12-02 11:22,9.3,6.263432,7.605596,145
2017-12-02 11:24,9.5,6.039738000000001,7.381902,148
2017-12-02 11:26,9.6,6.934514000000001,7.381902,145
2017-12-02 11:28,9.5,8.500372,9.618842,140
2017-12-02 11:30,9.4,8.052984,9.171454,132
2017-12-02 11:32,9.3,8.276678,9.395148,135
2017-12-02 11:34,9.3,7.82929,9.618842,130
2017-12-02 11:36,9.3,8.276678,9.618842,131
2017-12-02 11:38,9.3,8.500372,9.395148,141
2017-12-02 11:40,9.5,6.934514000000001,8.276678,144
2017-12-02 11:42,9.5,8.94776,10.289924,149
2017-12-02 11:44,9.5,8.94776,10.289924,157
2017-12-02 11:46,9.6,9.395148,11.184700000000001,169
2017-12-02 11:48,9.7,7.381902,10.513618000000001,158
2017-12-02 11:50,9.8,6.934514000000001,8.500372,149
2017-12-02 11:52,9.9,5.592350000000001,7.158208000000001,161
2017-12-02 11:54,9.9,4.250186,5.3686560000000005,159
2017-12-02 11:56,10,6.039738000000001,8.276678,154
2017-12-02 11:58,9.9,7.82929,8.724066,154
2017-12-02 12:00,10,8.052984,9.618842,153
2017-12-02 12:02,10,7.381902,8.500372,149
2017-12-02 12:04,10,6.934514000000001,7.82929,152
2017-12-02 12:06,10,9.171454,10.737312000000001,148
2017-12-02 12:08,9.9,9.618842,10.961006000000001,147
2017-12-02 12:10,10,8.724066,10.066230000000001,150
2017-12-02 12:12,10,10.289924,11.408394,146
2017-12-02 12:14,10,9.842536,12.526864,153
2017-12-02 12:16,10,10.961006000000001,12.750558000000002,160
2017-12-02 12:18,10,9.842536,11.632088000000001,154
2017-12-02 12:20,10,8.276678,10.289924,152
2017-12-02 12:22,10.1,9.842536,12.303170000000001,157
2017-12-02 12:24,10.1,8.500372,9.618842,160
2017-12-02 12:26,10.1,7.158208000000001,9.395148,160
2017-12-02 12:28,10.1,7.381902,8.500372,152
2017-12-02 12:30,10.1,7.605596,9.842536,172
2017-12-02 12:32,10.1,6.263432,8.276678,159
2017-12-02 12:34,10.1,6.934514000000001,8.500372,155
2017-12-02 12:36,10.2,5.816044000000001,7.82929,148
2017-12-02 12:38,10.1,7.381902,10.066230000000001,145
2017-12-02 12:40,10.1,10.066230000000001,11.408394,148
2017-12-02 12:42,10.1,9.842536,11.855782,142
2017-12-02 12:44,10.1,9.395148,10.289924,139
2017-12-02 12:46,10.1,8.500372,9.618842,139
2017-12-02 12:48,10.1,9.171454,10.737312000000001,144
2017-12-02 12:50,10.2,8.052984,9.395148,146
2017-12-02 12:52,10.2,8.500372,11.632088000000001,147
2017-12-02 12:54,10.3,8.94776,11.855782,151
2017-12-02 12:56,10.3,7.82929,10.513618000000001,165
2017-12-02 12:58,10.4,8.052984,10.513618000000001,167
2017-12-02 13:00,10.4,7.381902,8.276678,163
2017-12-02 13:02,10.4,6.487126,7.381902,169
2017-12-02 13:04,10.5,7.82929,9.395148,179
2017-12-02 13:06,10.6,8.724066,11.408394,168
2017-12-02 13:08,10.5,6.934514000000001,8.724066,163
2017-12-02 13:10,10.5,8.052984,9.842536,161
2017-12-02 13:12,10.6,6.039738000000001,7.381902,165
2017-12-02 13:14,10.6,7.381902,9.171454,158
2017-12-02 13:16,10.6,8.276678,10.737312000000001,165
2017-12-02 13:18,10.5,6.71082,7.605596,161
2017-12-02 13:20,10.5,9.618842,12.079476000000001,157
2017-12-02 13:22,10.7,8.276678,10.961006000000001,150
2017-12-02 13:24,10.6,10.289924,12.079476000000001,153
2017-12-02 13:26,10.6,9.842536,11.632088000000001,156
2017-12-02 13:28,10.7,10.289924,13.645334,153
2017-12-02 13:30,10.8,9.395148,12.303170000000001,162
2017-12-02 13:32,10.9,10.513618000000001,13.197946000000002,156
2017-12-02 13:34,10.9,9.618842,10.737312000000001,159
2017-12-02 13:36,10.9,9.618842,11.184700000000001,157
2017-12-02 13:38,11,8.724066,10.289924,158
2017-12-02 13:40,10.9,7.158208000000001,8.276678,157
2017-12-02 13:42,10.9,6.487126,7.82929,156
2017-12-02 13:44,10.8,8.052984,10.066230000000001,148
2017-12-02 13:46,10.9,8.724066,10.289924,155
2017-12-02 13:48,10.9,9.395148,10.737312000000001,149
2017-12-02 13:50,11,7.82929,9.395148,156
2017-12-02 13:52,10.9,7.158208000000001,9.618842,184
2017-12-02 13:54,10.8,8.724066,9.842536,209
2017-12-02 13:56,10.6,8.052984,9.395148,213
2017-12-02 13:58,10.5,8.500372,11.632088000000001,211
2017-12-02 14:00,10.5,8.94776,10.737312000000001,209
2017-12-02 14:02,10.5,8.276678,10.066230000000001,208
2017-12-02 14:04,10.5,7.82929,9.842536,206
2017-12-02 14:06,10.5,6.487126,7.158208000000001,203
2017-12-02 14:08,10.5,7.381902,8.276678,206
2017-12-02 14:10,10.5,7.158208000000001,8.724066,201
2017-12-02 14:12,10.5,7.158208000000001,9.395148,199
2017-12-02 14:14,10.5,7.158208000000001,8.276678,205
2017-12-02 14:16,10.6,6.039738000000001,6.934514000000001,192
2017-12-02 14:18,10.6,7.158208000000001,8.276678,198
2017-12-02 14:20,10.6,7.381902,8.276678,197
2017-12-02 14:22,10.6,6.934514000000001,9.171454,197
2017-12-02 14:24,10.7,5.592350000000001,6.487126,199
2017-12-02 14:26,10.7,5.144962,6.71082,186
2017-12-02 14:28,10.7,7.82929,8.94776,178
2017-12-02 14:30,10.8,8.500372,10.737312000000001,177
2017-12-02 14:32,10.8,7.605596,9.395148,172
2017-12-02 14:34,10.7,7.158208000000001,8.724066,180
2017-12-02 14:36,10.7,6.71082,8.052984,183
2017-12-02 14:38,10.7,6.039738000000001,7.82929,203
2017-12-02 14:40,10.7,6.934514000000001,7.82929,202
2017-12-02 14:42,10.6,5.592350000000001,6.263432,200
2017-12-02 14:44,10.6,5.3686560000000005,6.487126,195
2017-12-02 14:46,10.6,6.934514000000001,8.724066,189
2017-12-02 14:48,10.6,7.158208000000001,8.276678,191
2017-12-02 14:50,10.6,6.487126,7.82929,194
2017-12-02 14:52,10.7,6.263432,8.724066,193
2017-12-02 14:54,10.7,4.921268,5.592350000000001,196
2017-12-02 14:56,10.6,6.487126,8.276678,187
2017-12-02 14:58,10.7,4.921268,6.487126,184
2017-12-02 15:00,10.6,4.026492,4.921268,177
2017-12-02 15:02,10.7,5.144962,7.158208000000001,169
2017-12-02 15:04,10.7,6.263432,7.381902,168
2017-12-02 15:06,10.7,5.592350000000001,6.934514000000001,168
2017-12-02 15:08,10.6,6.487126,7.605596,170
2017-12-02 15:10,10.4,4.921268,6.487126,190
2017-12-02 15:12,10.4,3.802798,4.921268,181
2017-12-02 15:14,10.5,5.144962,7.381902,180
2017-12-02 15:16,10.5,7.381902,9.395148,192
2017-12-02 15:18,10.5,6.71082,8.052984,194
2017-12-02 15:20,10.5,5.816044000000001,6.487126,193
2017-12-02 15:22,10.5,5.3686560000000005,6.263432,184
2017-12-02 15:24,10.5,5.592350000000001,6.71082,184
2017-12-02 15:26,10.5,5.592350000000001,7.158208000000001,180
2017-12-02 15:28,10.4,6.71082,8.276678,166
2017-12-02 15:30,10.4,10.737312000000001,13.197946000000002,165
2017-12-02 15:32,10.5,9.395148,10.961006000000001,171
2017-12-02 15:34,10.6,10.066230000000001,11.855782,169
2017-12-02 15:36,10.5,10.737312000000001,12.750558000000002,168
2017-12-02 15:38,10.5,8.724066,11.184700000000001,177
2017-12-02 15:40,10.4,9.842536,12.303170000000001,179
2017-12-02 15:42,10.5,8.500372,10.289924,176
2017-12-02 15:44,10.5,10.066230000000001,11.184700000000001,176
2017-12-02 15:46,10.5,10.513618000000001,14.092722,171
2017-12-02 15:48,10.5,11.855782,13.869028000000002,177
2017-12-02 15:50,10.5,8.94776,11.408394,180
2017-12-02 15:52,10.4,6.039738000000001,7.605596,183
2017-12-02 15:54,10.3,5.144962,6.263432,181
2017-12-02 15:56,10.2,5.816044000000001,6.934514000000001,183
2017-12-02 15:58,10.3,8.276678,9.618842,183
2017-12-02 16:00,10.3,8.276678,9.171454,185
2017-12-02 16:02,10.3,7.158208000000001,9.395148,184
2017-12-02 16:04,10.3,6.487126,8.94776,186
2017-12-02 16:06,10.3,4.47388,5.592350000000001,192
2017-12-02 16:08,10.2,4.921268,5.3686560000000005,185
2017-12-02 16:10,10.2,6.263432,7.381902,191
2017-12-02 16:12,10.2,6.039738000000001,7.381902,188
2017-12-02 16:14,10.2,7.82929,10.066230000000001,190
2017-12-02 16:16,10.1,6.71082,7.82929,191
2017-12-02 16:18,10.1,6.263432,7.158208000000001,184
2017-12-02 16:20,10,7.381902,8.500372,191
2017-12-02 16:22,10,6.934514000000001,8.052984,188
2017-12-02 16:24,10,6.71082,7.605596,189
2017-12-02 16:26,10,6.934514000000001,9.618842,193
2017-12-02 16:28,9.9,6.487126,7.605596,186
2017-12-02 16:30,9.9,7.605596,9.842536,189
2017-12-02 16:32,10,6.934514000000001,8.276678,193
2017-12-02 16:34,9.9,6.934514000000001,7.82929,192
2017-12-02 16:36,9.9,6.71082,7.605596,187
2017-12-02 16:38,9.9,6.487126,7.605596,186
2017-12-02 16:40,9.9,6.487126,7.381902,183
2017-12-02 16:42,9.9,6.263432,7.158208000000001,184
2017-12-02 16:44,9.8,6.263432,7.381902,186
2017-12-02 16:46,9.8,6.487126,7.381902,192
2017-12-02 16:48,9.7,6.934514000000001,8.276678,195
2017-12-02 16:50,9.8,6.71082,7.605596,192
2017-12-02 16:52,9.7,6.263432,8.052984,195
2017-12-02 16:54,9.7,6.487126,8.276678,199
2017-12-02 16:56,9.7,7.381902,9.171454,193
2017-12-02 16:58,9.8,8.276678,10.066230000000001,192
2017-12-02 17:00,9.8,6.934514000000001,7.82929,197
2017-12-02 17:02,9.7,7.82929,9.395148,198
2017-12-02 17:04,9.7,8.052984,9.171454,192
2017-12-02 17:06,9.7,8.724066,9.842536,196
2017-12-02 17:08,9.8,9.618842,11.408394,190
2017-12-02 17:10,9.7,7.381902,8.276678,189
2017-12-02 17:12,9.6,7.605596,8.724066,193
2017-12-02 17:14,9.6,8.052984,9.842536,196
2017-12-02 17:16,9.7,8.500372,10.513618000000001,195
2017-12-02 17:18,9.6,8.052984,9.171454,192
2017-12-02 17:20,9.6,8.052984,10.066230000000001,196
2017-12-02 17:22,9.6,8.94776,9.842536,193
2017-12-02 17:24,9.6,8.052984,9.618842,195
2017-12-02 17:26,9.5,8.724066,11.855782,195
2017-12-02 17:28,9.5,7.82929,9.618842,192
2017-12-02 17:30,9.5,8.500372,9.842536,192
2017-12-02 17:32,9.5,7.82929,9.395148,194
2017-12-02 17:34,9.4,7.605596,8.94776,189
2017-12-02 17:36,9.4,8.500372,9.842536,189
2017-12-02 17:38,9.4,7.381902,8.94776,183
2017-12-02 17:40,9.4,8.276678,9.618842,182
2017-12-02 17:42,9.5,7.158208000000001,8.052984,189
2017-12-02 17:44,9.4,6.934514000000001,8.500372,188
2017-12-02 17:46,9.4,8.052984,9.618842,192
2017-12-02 17:48,9.4,8.052984,9.618842,189
2017-12-02 17:50,9.4,8.052984,9.395148,190
2017-12-02 17:52,9.4,8.724066,10.513618000000001,191
2017-12-02 17:54,9.4,9.395148,10.737312000000001,192
2017-12-02 17:56,9.4,8.052984,10.066230000000001,193
2017-12-02 17:58,9.3,8.724066,11.408394,192
2017-12-02 18:00,9.4,10.513618000000001,12.526864,189
2017-12-02 18:02,9.5,8.052984,9.618842,193
2017-12-02 18:04,9.4,8.500372,9.842536,188
2017-12-02 18:06,9.5,8.724066,10.289924,191
2017-12-02 18:08,9.4,7.158208000000001,7.82929,195
2017-12-02 18:10,9.3,7.605596,8.94776,193
2017-12-02 18:12,9.3,6.71082,9.842536,201
2017-12-02 18:14,9.4,8.500372,9.618842,202
2017-12-02 18:16,9.3,8.052984,9.618842,199
2017-12-02 18:18,9.3,7.381902,9.171454,199
2017-12-02 18:20,9.2,8.276678,10.066230000000001,196
2017-12-02 18:22,9.3,8.724066,10.737312000000001,196
2017-12-02 18:24,9.3,8.724066,11.184700000000001,193
2017-12-02 18:26,9.2,7.605596,9.395148,194
2017-12-02 18:28,9.1,6.71082,7.605596,200
2017-12-02 18:30,9.1,7.381902,10.066230000000001,196
2017-12-02 18:32,9.2,8.052984,10.737312000000001,197
2017-12-02 18:34,9.1,6.934514000000001,8.500372,198
2017-12-02 18:36,9.1,7.381902,8.724066,199
2017-12-02 18:38,9.1,6.934514000000001,8.052984,194
2017-12-02 18:40,9,6.487126,7.82929,199
2017-12-02 18:42,9,7.158208000000001,8.500372,193
2017-12-02 18:44,9,6.487126,7.605596,191
2017-12-02 18:46,9,7.158208000000001,8.500372,190
2017-12-02 18:48,9.1,8.500372,9.842536,191
2017-12-02 18:50,9.1,7.82929,8.94776,192
2017-12-02 18:52,9.1,8.500372,9.842536,197
2017-12-02 18:54,9.2,7.605596,9.171454,195
2017-12-02 18:56,9.2,7.605596,9.842536,194
2017-12-02 18:58,9.2,8.276678,11.855782,195
2017-12-02 19:00,9.2,8.276678,9.842536,196
2017-12-02 19:02,9.1,7.605596,8.276678,195
2017-12-02 19:04,9.1,6.934514000000001,8.276678,197
2017-12-02 19:06,9.2,8.052984,9.395148,199
2017-12-02 19:08,9.2,7.158208000000001,8.500372,199
2017-12-02 19:10,9.1,7.605596,8.94776,200
2017-12-02 19:12,9.1,7.605596,8.94776,195
2017-12-02 19:14,9.1,8.276678,9.842536,195
2017-12-02 19:16,9.1,8.500372,9.842536,194
2017-12-02 19:18,9.1,9.171454,11.632088000000001,194
2017-12-02 19:20,9.1,8.724066,9.842536,194
2017-12-02 19:22,9.1,8.500372,10.513618000000001,193
2017-12-02 19:24,9,7.82929,9.395148,194
2017-12-02 19:26,8.9,6.934514000000001,8.052984,194
2017-12-02 19:28,8.9,7.605596,8.94776,196
2017-12-02 19:30,8.9,7.605596,9.842536,195
2017-12-02 19:32,8.9,6.71082,7.605596,195
2017-12-02 19:34,8.9,7.381902,8.94776,196
2017-12-02 19:36,8.9,7.158208000000001,8.500372,195
2017-12-02 19:38,8.9,8.276678,10.066230000000001,198
2017-12-02 19:40,8.9,7.158208000000001,8.94776,196
2017-12-02 19:42,8.8,7.82929,9.842536,195
2017-12-02 19:44,8.8,7.381902,8.276678,194
2017-12-02 19:46,8.7,7.381902,8.94776,194
2017-12-02 19:48,8.8,7.381902,8.500372,193
2017-12-02 19:50,8.7,6.934514000000001,7.605596,193
2017-12-02 19:52,8.7,7.158208000000001,7.82929,190
2017-12-02 19:54,8.8,7.381902,8.500372,191
2017-12-02 19:56,8.8,7.158208000000001,8.724066,186
2017-12-02 19:58,8.7,6.263432,7.158208000000001,185
2017-12-02 20:00,8.6,6.039738000000001,6.71082,180
2017-12-02 20:02,8.6,6.263432,7.381902,183
2017-12-02 20:04,8.5,5.816044000000001,6.71082,187
2017-12-02 20:06,8.5,6.039738000000001,8.94776,183
2017-12-02 20:08,8.5,5.816044000000001,8.94776,190
2017-12-02 20:10,8.7,7.82929,10.066230000000001,188
2017-12-02 20:12,8.8,8.052984,9.842536,186
2017-12-02 20:14,8.7,7.605596,8.94776,191
2017-12-02 20:16,8.8,8.724066,9.618842,186
2017-12-02 20:18,8.8,8.276678,9.618842,191
2017-12-02 20:20,8.7,8.052984,9.618842,195
2017-12-02 20:22,8.7,8.94776,10.737312000000001,193
2017-12-02 20:24,8.7,7.381902,8.724066,194
2017-12-02 20:26,8.6,8.052984,9.842536,193
2017-12-02 20:28,8.5,8.276678,10.289924,196
2017-12-02 20:30,8.5,8.500372,10.513618000000001,196
2017-12-02 20:32,8.4,8.052984,9.842536,194
2017-12-02 20:34,8.4,8.94776,10.513618000000001,194
2017-12-02 20:36,8.3,8.724066,11.408394,197
2017-12-02 20:38,8.3,10.066230000000001,12.079476000000001,194
2017-12-02 20:40,8.3,9.395148,11.632088000000001,193
2017-12-02 20:42,8.3,9.395148,10.737312000000001,193
2017-12-02 20:44,8.3,10.513618000000001,12.303170000000001,193
2017-12-02 20:46,8.3,10.289924,11.408394,192
2017-12-02 20:48,8.2,9.395148,10.513618000000001,191
2017-12-02 20:50,8.1,8.500372,9.618842,191
2017-12-02 20:52,8.1,8.94776,10.513618000000001,191
2017-12-02 20:54,8.1,8.724066,9.618842,193
2017-12-02 20:56,8.1,7.82929,8.724066,192
2017-12-02 20:58,8.1,8.500372,10.066230000000001,194
2017-12-02 21:00,8.1,8.276678,9.395148,194
2017-12-02 21:02,8.1,7.82929,10.289924,192
2017-12-02 21:04,8,7.381902,8.500372,193
2017-12-02 21:06,8,8.500372,9.395148,195
2017-12-02 21:08,8.1,8.052984,9.395148,193
2017-12-02 21:10,8,7.381902,9.842536,195
2017-12-02 21:12,8,7.605596,9.171454,197
2017-12-02 21:14,8,8.276678,9.842536,196
2017-12-02 21:16,8,8.500372,10.737312000000001,196
2017-12-02 21:18,8,8.724066,10.737312000000001,196
2017-12-02 21:20,8,8.276678,9.618842,194
2017-12-02 21:22,8,8.724066,10.289924,193
2017-12-02 21:24,8,9.842536,12.974252,194
2017-12-02 21:26,8,9.618842,11.855782,194
2017-12-02 21:28,8,9.395148,11.408394,194
2017-12-02 21:30,8,8.724066,9.395148,192
2017-12-02 21:32,8,8.276678,8.94776,194
2017-12-02 21:34,8,8.724066,9.842536,195
2017-12-02 21:36,8,9.395148,10.513618000000001,193
2017-12-02 21:38,8,9.395148,10.513618000000001,195
2017-12-02 21:40,8,9.171454,10.513618000000001,194
2017-12-02 21:42,8,9.171454,10.961006000000001,193
2017-12-02 21:44,8,9.842536,11.184700000000001,193
2017-12-02 21:46,8,9.618842,10.737312000000001,194
2017-12-02 21:48,8,10.513618000000001,12.526864,193
2017-12-02 21:50,8,10.513618000000001,12.303170000000001,193
2017-12-02 21:52,7.9,9.171454,9.842536,192
2017-12-02 21:54,7.9,9.618842,11.184700000000001,192
2017-12-02 21:56,7.9,8.724066,10.289924,194
2017-12-02 21:58,7.8,8.276678,9.395148,196
2017-12-02 22:00,7.8,9.842536,11.408394,193
2017-12-02 22:02,7.9,9.842536,11.855782,199
2017-12-02 22:04,7.8,9.618842,11.855782,196
2017-12-02 22:06,7.7,9.842536,11.855782,198
2017-12-02 22:08,7.7,9.395148,11.632088000000001,200
2017-12-02 22:10,7.5,8.724066,10.289924,198
2017-12-02 22:12,7.5,9.395148,10.961006000000001,197
2017-12-02 22:14,7.4,8.500372,9.618842,201
2017-12-02 22:16,7.4,8.94776,10.961006000000001,201
2017-12-02 22:18,7.3,8.500372,10.513618000000001,199
2017-12-02 22:20,7.2,8.724066,9.618842,200
2017-12-02 22:22,7.1,8.500372,9.842536,199
2017-12-02 22:24,7.1,8.94776,10.737312000000001,199
2017-12-02 22:26,7.1,8.052984,8.94776,198
2017-12-02 22:28,7.1,9.395148,11.408394,197
2017-12-02 22:30,7.1,8.94776,9.842536,193
2017-12-02 22:32,7.1,8.500372,9.842536,194
2017-12-02 22:34,7.1,8.94776,9.842536,193
2017-12-02 22:36,7.1,8.276678,9.842536,195
2017-12-02 22:38,7.1,9.171454,10.737312000000001,196
2017-12-02 22:40,7.1,8.500372,10.513618000000001,194
2017-12-02 22:42,7.1,8.724066,10.513618000000001,193
2017-12-02 22:44,7.1,8.94776,10.513618000000001,194
2017-12-02 22:46,7,8.94776,10.289924,190
2017-12-02 22:48,7,9.171454,11.408394,195
2017-12-02 22:50,7,8.724066,10.289924,193
2017-12-02 22:52,7,8.94776,10.066230000000001,192
2017-12-02 22:54,6.9,9.171454,11.184700000000001,193
2017-12-02 22:56,6.9,9.395148,11.184700000000001,193
2017-12-02 22:58,6.9,8.276678,8.94776,198
2017-12-02 23:00,6.9,8.052984,9.618842,197
2017-12-02 23:02,6.8,8.500372,9.842536,198
2017-12-02 23:04,6.8,9.395148,11.408394,198
2017-12-02 23:06,6.8,9.171454,10.737312000000001,198
2017-12-02 23:08,6.7,8.724066,12.079476000000001,197
2017-12-02 23:10,6.6,8.052984,10.737312000000001,200
2017-12-02 23:12,6.6,8.500372,9.618842,201
2017-12-02 23:14,6.6,8.500372,9.618842,200
2017-12-02 23:16,6.6,9.618842,12.079476000000001,199
2017-12-02 23:18,6.6,9.618842,10.737312000000001,197
2017-12-02 23:20,6.6,8.94776,10.961006000000001,198
2017-12-02 23:22,6.5,8.94776,10.737312000000001,201
2017-12-02 23:24,6.5,9.618842,11.855782,201
2017-12-02 23:26,6.5,9.395148,10.961006000000001,200
2017-12-02 23:28,6.5,9.618842,11.855782,200
2017-12-02 23:30,6.4,9.171454,10.513618000000001,201
2017-12-02 23:32,6.4,8.724066,10.066230000000001,199
2017-12-02 23:34,6.4,8.276678,10.737312000000001,196
2017-12-02 23:36,6.4,8.052984,8.724066,195
2017-12-02 23:38,6.4,8.500372,9.842536,195
2017-12-02 23:40,6.4,8.724066,10.066230000000001,199
2017-12-02 23:42,6.4,8.724066,10.066230000000001,196
2017-12-02 23:44,6.4,8.94776,10.737312000000001,196
2017-12-02 23:46,6.4,8.500372,10.513618000000001,199
2017-12-02 23:48,6.5,9.171454,10.066230000000001,199
2017-12-02 23:50,6.4,8.724066,10.289924,201
2017-12-02 23:52,6.4,8.500372,9.618842,199
2017-12-02 23:54,6.4,9.171454,10.737312000000001,201
2017-12-02 23:56,6.4,8.500372,10.066230000000001,198
2017-12-02 23:58,6.4,8.724066,9.842536,200
2017-12-03 00:00,6.3,8.500372,10.289924,202
2017-12-03 00:02,6.3,8.724066,10.066230000000001,202
2017-12-03 00:04,6.3,8.94776,10.961006000000001,202
2017-12-03 00:06,6.3,9.395148,10.961006000000001,203
2017-12-03 00:08,6.2,9.395148,10.513618000000001,200
2017-12-03 00:10,6.2,9.842536,10.961006000000001,202
2017-12-03 00:12,6.1,9.842536,11.408394,201
2017-12-03 00:14,6.1,9.618842,11.184700000000001,204
2017-12-03 00:16,6.1,9.618842,11.408394,201
2017-12-03 00:18,6.1,9.171454,10.513618000000001,203
2017-12-03 00:20,6.1,8.94776,10.513618000000001,203
2017-12-03 00:22,6.1,9.171454,10.289924,204
2017-12-03 00:24,6.1,8.94776,9.842536,204
2017-12-03 00:26,6.1,9.618842,10.961006000000001,204
2017-12-03 00:28,6.1,9.395148,10.961006000000001,206
2017-12-03 00:30,6.1,9.395148,10.961006000000001,203
2017-12-03 00:32,6.1,9.618842,10.961006000000001,203
2017-12-03 00:34,6,9.842536,11.408394,203
2017-12-03 00:36,6,9.842536,11.408394,201
2017-12-03 00:38,6,9.171454,10.289924,204
2017-12-03 00:40,6.1,10.066230000000001,11.632088000000001,207
2017-12-03 00:42,6.1,9.842536,11.184700000000001,204
2017-12-03 00:44,6.1,9.842536,11.184700000000001,202
2017-12-03 00:46,6,9.618842,10.961006000000001,204
2017-12-03 00:48,6,9.618842,11.408394,205
2017-12-03 00:50,6,10.289924,11.408394,203
2017-12-03 00:52,5.9,9.618842,11.408394,202
2017-12-03 00:54,5.9,9.618842,11.408394,203
2017-12-03 00:56,5.9,9.618842,11.184700000000001,202
2017-12-03 00:58,5.9,9.395148,10.961006000000001,202
2017-12-03 01:00,5.9,9.395148,11.184700000000001,204
2017-12-03 01:02,5.9,9.618842,10.513618000000001,206
2017-12-03 01:04,5.8,9.618842,10.513618000000001,205
2017-12-03 01:06,5.8,9.618842,11.184700000000001,206
2017-12-03 01:08,5.7,10.066230000000001,11.855782,205
2017-12-03 01:10,5.7,10.066230000000001,11.184700000000001,207
2017-12-03 01:12,5.6,9.395148,11.184700000000001,206
2017-12-03 01:14,5.6,9.171454,11.184700000000001,207
2017-12-03 01:16,5.6,10.066230000000001,11.408394,205
2017-12-03 01:18,5.6,10.066230000000001,11.632088000000001,205
2017-12-03 01:20,5.6,9.842536,11.855782,205
2017-12-03 01:22,5.6,10.066230000000001,11.408394,207
2017-12-03 01:24,5.6,10.066230000000001,12.079476000000001,210
2017-12-03 01:26,5.6,9.395148,10.961006000000001,207
2017-12-03 01:28,5.6,10.066230000000001,10.961006000000001,208
2017-12-03 01:30,5.6,9.842536,11.855782,207
2017-12-03 01:32,5.6,9.842536,11.632088000000001,206
2017-12-03 01:34,5.6,9.842536,11.184700000000001,205
2017-12-03 01:36,5.6,9.618842,10.961006000000001,206
2017-12-03 01:38,5.5,9.395148,10.289924,204
2017-12-03 01:40,5.5,9.171454,10.289924,207
2017-12-03 01:42,5.5,9.618842,10.737312000000001,208
2017-12-03 01:44,5.5,9.842536,11.408394,206
2017-12-03 01:46,5.5,9.842536,11.408394,207
2017-12-03 01:48,5.5,9.171454,10.961006000000001,206
2017-12-03 01:50,5.5,10.066230000000001,11.408394,205
2017-12-03 01:52,5.5,9.618842,11.408394,205
2017-12-03 01:54,5.5,9.395148,11.184700000000001,206
2017-12-03 01:56,5.5,9.618842,10.961006000000001,206
2017-12-03 01:58,5.4,9.171454,10.513618000000001,204
2017-12-03 02:00,5.4,8.94776,10.066230000000001,204
2017-12-03 02:02,5.4,8.724066,10.066230000000001,204
2017-12-03 02:04,5.3,8.724066,10.066230000000001,205
2017-12-03 02:06,5.3,8.724066,9.618842,206
2017-12-03 02:08,5.3,8.94776,10.066230000000001,206
2017-12-03 02:10,5.3,8.724066,10.289924,204
2017-12-03 02:12,5.3,8.94776,10.066230000000001,206
2017-12-03 02:14,5.3,9.171454,10.513618000000001,203
2017-12-03 02:16,5.3,9.395148,11.632088000000001,202
2017-12-03 02:18,5.2,9.171454,10.066230000000001,202
2017-12-03 02:20,5.2,10.066230000000001,10.737312000000001,201
2017-12-03 02:22,5.2,9.618842,10.961006000000001,202
2017-12-03 02:24,5.2,9.395148,10.513618000000001,200
2017-12-03 02:26,5.2,8.94776,10.289924,200
2017-12-03 02:28,5.1,9.618842,11.408394,200
2017-12-03 02:30,5.1,9.618842,10.961006000000001,200
2017-12-03 02:32,5.2,9.842536,10.737312000000001,200
2017-12-03 02:34,5.2,9.618842,11.408394,201
2017-12-03 02:36,5.2,9.842536,10.961006000000001,201
2017-12-03 02:38,5.2,9.842536,11.408394,203
2017-12-03 02:40,5.2,9.842536,10.961006000000001,202
2017-12-03 02:42,5.2,9.842536,11.408394,204
2017-12-03 02:44,5.2,9.395148,10.737312000000001,200
2017-12-03 02:46,5.1,9.618842,10.961006000000001,202
2017-12-03 02:48,5.1,10.066230000000001,11.855782,205
2017-12-03 02:50,5.1,10.066230000000001,10.737312000000001,205
2017-12-03 02:52,5.1,9.618842,10.513618000000001,206
2017-12-03 02:54,5.1,10.066230000000001,11.632088000000001,204
2017-12-03 02:56,5.1,9.618842,11.184700000000001,203
2017-12-03 02:58,5.1,10.513618000000001,11.632088000000001,206
2017-12-03 03:00,5.1,10.737312000000001,12.750558000000002,206
2017-12-03 03:02,5,10.066230000000001,11.855782,204
2017-12-03 03:04,4.9,10.513618000000001,11.632088000000001,205
2017-12-03 03:06,4.9,9.842536,11.408394,204
2017-12-03 03:08,4.8,10.289924,11.408394,202
2017-12-03 03:10,4.8,10.289924,11.855782,203
2017-12-03 03:12,4.7,10.289924,11.632088000000001,202
2017-12-03 03:14,4.7,10.066230000000001,11.184700000000001,205
2017-12-03 03:16,4.7,10.513618000000001,12.303170000000001,205
2017-12-03 03:18,4.7,10.289924,11.632088000000001,205
2017-12-03 03:20,4.7,9.618842,11.408394,204
2017-12-03 03:22,4.7,10.289924,12.526864,206
2017-12-03 03:24,4.7,10.513618000000001,11.408394,204
2017-12-03 03:26,4.7,9.395148,10.289924,205
2017-12-03 03:28,4.7,10.066230000000001,12.750558000000002,205
2017-12-03 03:30,4.6,9.618842,11.408394,209
2017-12-03 03:32,4.6,10.066230000000001,11.632088000000001,209
2017-12-03 03:34,4.7,9.618842,11.855782,211
2017-12-03 03:36,4.7,9.618842,11.408394,211
2017-12-03 03:38,4.7,9.395148,11.632088000000001,212
2017-12-03 03:40,4.6,9.842536,11.408394,209
2017-12-03 03:42,4.7,9.618842,11.408394,209
2017-12-03 03:44,4.7,10.289924,11.855782,210
2017-12-03 03:46,4.8,9.618842,11.408394,210
2017-12-03 03:48,4.8,10.066230000000001,12.079476000000001,210
2017-12-03 03:50,4.8,9.842536,11.855782,210
2017-12-03 03:52,4.7,10.066230000000001,11.632088000000001,208
2017-12-03 03:54,4.7,10.513618000000001,12.079476000000001,208
2017-12-03 03:56,4.6,10.066230000000001,12.303170000000001,205
2017-12-03 03:58,4.5,10.066230000000001,12.079476000000001,207
2017-12-03 04:00,4.5,9.618842,11.184700000000001,204
2017-12-03 04:02,4.5,9.618842,12.079476000000001,209
2017-12-03 04:04,4.4,8.724066,10.066230000000001,205
2017-12-03 04:06,4.4,8.94776,11.408394,206
2017-12-03 04:08,4.4,9.171454,10.737312000000001,208
2017-12-03 04:10,4.4,8.724066,10.737312000000001,209
2017-12-03 04:12,4.4,8.724066,10.066230000000001,211
2017-12-03 04:14,4.4,9.395148,10.289924,211
2017-12-03 04:16,4.4,9.395148,10.289924,209
2017-12-03 04:18,4.4,9.171454,10.513618000000001,212
2017-12-03 04:20,4.4,9.171454,11.184700000000001,208
2017-12-03 04:22,4.3,9.618842,11.408394,209
2017-12-03 04:24,4.2,9.395148,10.289924,209
2017-12-03 04:26,4.2,9.842536,11.855782,211
2017-12-03 04:28,4.2,9.395148,11.408394,209
2017-12-03 04:30,4.2,9.842536,11.184700000000001,211
2017-12-03 04:32,4.1,9.395148,10.961006000000001,209
2017-12-03 04:34,4.1,9.171454,10.961006000000001,210
2017-12-03 04:36,4.1,8.724066,9.842536,211
2017-12-03 04:38,4.1,8.724066,9.842536,212
2017-12-03 04:40,4.1,8.724066,9.842536,211
2017-12-03 04:42,4,8.724066,10.289924,208
2017-12-03 04:44,3.9,8.94776,10.066230000000001,205
2017-12-03 04:46,3.9,8.500372,10.513618000000001,206
2017-12-03 04:48,3.8,7.82929,9.395148,207
2017-12-03 04:50,3.8,8.052984,9.618842,210
2017-12-03 04:52,3.8,7.82929,8.724066,206
2017-12-03 04:54,3.7,7.158208000000001,10.289924,209
2017-12-03 04:56,3.6,8.052984,9.171454,207
2017-12-03 04:58,3.6,7.381902,8.94776,215
2017-12-03 05:00,3.7,4.697574,7.82929,243
2017-12-03 05:02,3.7,4.47388,7.605596,248
2017-12-03 05:04,3.6,4.47388,6.71082,236
2017-12-03 05:06,3.6,6.71082,8.500372,216
2017-12-03 05:08,3.7,7.605596,8.724066,209
2017-12-03 05:10,3.7,7.82929,9.618842,208
2017-12-03 05:12,3.6,6.934514000000001,8.276678,208
2017-12-03 05:14,3.6,6.263432,7.82929,214
2017-12-03 05:16,3.6,5.816044000000001,7.158208000000001,212
2017-12-03 05:18,3.6,4.921268,6.487126,215
2017-12-03 05:20,3.6,3.131716,4.921268,218
2017-12-03 05:22,3.5,0.6710820000000001,2.013246,248
2017-12-03 05:24,3.5,2.6843280000000003,4.026492,13
2017-12-03 05:26,3.5,2.6843280000000003,4.47388,350
2017-12-03 05:28,3.5,2.23694,2.6843280000000003,325
2017-12-03 05:30,3.5,2.013246,3.131716,321
2017-12-03 05:32,3.4,2.6843280000000003,3.131716,309
2017-12-03 05:34,3.3,2.6843280000000003,4.250186,269
2017-12-03 05:36,3.3,2.9080220000000003,3.5791040000000005,241
2017-12-03 05:38,3.4,3.5791040000000005,5.144962,219
2017-12-03 05:40,3.6,4.026492,4.697574,236
2017-12-03 05:42,3.6,4.47388,5.144962,222
2017-12-03 05:44,3.6,4.697574,4.921268,217
2017-12-03 05:46,3.6,4.250186,4.697574,212
2017-12-03 05:48,3.6,4.47388,5.592350000000001,204
2017-12-03 05:50,3.5,3.802798,4.697574,196
2017-12-03 05:52,3.4,4.47388,5.592350000000001,190
2017-12-03 05:54,3.4,5.3686560000000005,5.816044000000001,192
2017-12-03 05:56,3.4,5.144962,5.592350000000001,188
2017-12-03 05:58,3.4,4.250186,5.144962,186
2017-12-03 06:00,3.5,3.35541,4.026492,191
2017-12-03 06:02,3.6,2.9080220000000003,4.47388,194
2017-12-03 06:04,3.6,3.35541,4.250186,203
2017-12-03 06:06,3.6,2.23694,2.6843280000000003,211
2017-12-03 06:08,3.6,2.9080220000000003,3.802798,203
2017-12-03 06:10,3.7,3.802798,4.47388,203
2017-12-03 06:12,3.6,4.47388,5.144962,196
2017-12-03 06:14,3.7,4.47388,4.921268,196
2017-12-03 06:16,3.7,3.35541,4.026492,191
2017-12-03 06:18,3.7,2.9080220000000003,3.35541,182
2017-12-03 06:20,3.8,2.460634,3.131716,158
2017-12-03 06:22,3.8,2.23694,2.9080220000000003,125
2017-12-03 06:24,3.7,1.11847,2.013246,120
2017-12-03 06:26,3.7,0.22369400000000003,0.6710820000000001,119
2017-12-03 06:28,3.7,0.8947760000000001,2.013246,179
2017-12-03 06:30,3.8,2.23694,2.9080220000000003,208
2017-12-03 06:32,3.8,0.6710820000000001,1.11847,198
2017-12-03 06:34,3.8,0,1.11847,37
2017-12-03 06:36,3.8,2.013246,2.23694,56
2017-12-03 06:38,3.7,0.8947760000000001,1.565858,75
2017-12-03 06:40,3.7,2.6843280000000003,3.131716,174
2017-12-03 06:42,3.7,3.35541,3.5791040000000005,190
2017-12-03 06:44,3.7,3.131716,3.802798,199
2017-12-03 06:46,3.7,2.9080220000000003,3.35541,195
2017-12-03 06:48,3.7,2.460634,2.9080220000000003,178
2017-12-03 06:50,3.6,2.23694,2.460634,142
2017-12-03 06:52,3.7,2.460634,2.9080220000000003,134
2017-12-03 06:54,3.5,3.131716,3.802798,145
2017-12-03 06:56,3.4,4.026492,4.250186,157
2017-12-03 06:58,3.4,4.250186,4.697574,168
2017-12-03 07:00,3.4,4.250186,4.47388,173
2017-12-03 07:02,3.5,4.250186,4.921268,177
2017-12-03 07:04,3.6,3.35541,4.026492,156
2017-12-03 07:06,3.6,3.5791040000000005,4.250186,163
2017-12-03 07:08,3.7,3.35541,3.802798,156
2017-12-03 07:10,3.7,3.35541,4.026492,171
2017-12-03 07:12,3.7,3.802798,4.250186,174
2017-12-03 07:14,3.6,4.250186,4.47388,172
2017-12-03 07:16,3.6,3.5791040000000005,4.026492,172
2017-12-03 07:18,3.6,3.131716,3.35541,173
2017-12-03 07:20,3.7,2.6843280000000003,2.9080220000000003,167
2017-12-03 07:22,3.7,2.6843280000000003,3.35541,171
2017-12-03 07:24,3.9,2.460634,3.131716,180
2017-12-03 07:26,3.9,2.9080220000000003,4.026492,182
2017-12-03 07:28,4,2.6843280000000003,2.9080220000000003,188
2017-12-03 07:30,4.1,2.9080220000000003,3.5791040000000005,194
2017-12-03 07:32,4.2,3.35541,4.026492,190
2017-12-03 07:34,4.3,2.9080220000000003,3.5791040000000005,182
2017-12-03 07:36,4.5,2.013246,2.460634,165
2017-12-03 07:38,4.6,2.23694,2.6843280000000003,175
2017-12-03 07:40,4.7,1.7895520000000003,2.23694,176
2017-12-03 07:42,4.7,2.013246,2.460634,191
2017-12-03 07:44,4.8,1.7895520000000003,2.23694,202
2017-12-03 07:46,4.9,1.565858,1.7895520000000003,192
2017-12-03 07:48,5.1,0.8947760000000001,1.3421640000000001,207
2017-12-03 07:50,5.4,0.6710820000000001,1.11847,229
2017-12-03 07:52,5.8,0.22369400000000003,0.6710820000000001,230
2017-12-03 07:54,6.2,0.22369400000000003,0.44738800000000006,230
2017-12-03 07:56,6.5,0.22369400000000003,0.6710820000000001,230
2017-12-03 07:58,6.9,0.22369400000000003,0.6710820000000001,230
2017-12-03 08:00,7.3,0.22369400000000003,1.3421640000000001,273
2017-12-03 08:02,7.2,0.8947760000000001,1.3421640000000001,293
2017-12-03 08:04,7.1,0.6710820000000001,0.8947760000000001,294
2017-12-03 08:06,7.4,0.8947760000000001,2.460634,315
2017-12-03 08:08,7.9,2.460634,2.6843280000000003,351
2017-12-03 08:10,8.2,2.6843280000000003,3.131716,353
2017-12-03 08:12,8.4,3.131716,3.35541,357
2017-12-03 08:14,8.5,2.460634,3.35541,3
2017-12-03 08:16,8.4,1.7895520000000003,2.013246,24
2017-12-03 08:18,7.7,1.565858,1.7895520000000003,32
2017-12-03 08:20,7.2,1.565858,2.013246,29
2017-12-03 08:22,6.9,1.565858,2.23694,23
2017-12-03 08:24,6.8,2.013246,2.23694,19
2017-12-03 08:26,6.6,2.460634,2.9080220000000003,20
2017-12-03 08:28,6.3,2.460634,2.9080220000000003,23
2017-12-03 08:30,6.1,1.565858,1.7895520000000003,36
2017-12-03 08:32,6.1,1.3421640000000001,1.565858,58
2017-12-03 08:34,6,2.013246,2.460634,66
2017-12-03 08:36,5.8,2.23694,2.460634,75
2017-12-03 08:38,5.6,2.013246,2.460634,97
2017-12-03 08:40,5.6,2.013246,2.23694,127
2017-12-03 08:42,5.6,2.460634,3.131716,142
2017-12-03 08:44,5.5,2.23694,2.460634,133
2017-12-03 08:46,5.5,2.23694,2.460634,116
2017-12-03 08:48,5.3,2.6843280000000003,2.9080220000000003,104
2017-12-03 08:50,5.1,2.6843280000000003,2.9080220000000003,105
2017-12-03 08:52,5,2.6843280000000003,2.9080220000000003,120
2017-12-03 08:54,4.9,2.9080220000000003,3.131716,125
2017-12-03 08:56,4.9,2.6843280000000003,2.9080220000000003,125
2017-12-03 08:58,4.9,2.9080220000000003,3.35541,106
2017-12-03 09:00,4.9,3.5791040000000005,3.802798,88
2017-12-03 09:02,4.8,3.802798,4.026492,93
2017-12-03 09:04,4.8,3.35541,3.802798,106
2017-12-03 09:06,4.9,3.131716,3.5791040000000005,116
2017-12-03 09:08,5,2.9080220000000003,3.131716,124
2017-12-03 09:10,5.1,2.6843280000000003,2.9080220000000003,137
2017-12-03 09:12,5.3,2.23694,2.6843280000000003,142
2017-12-03 09:14,5.6,1.7895520000000003,2.013246,140
2017-12-03 09:16,5.8,1.7895520000000003,2.013246,139
2017-12-03 09:18,6,1.7895520000000003,2.013246,147
2017-12-03 09:20,6.2,2.013246,2.013246,153
2017-12-03 09:22,6.4,1.565858,2.013246,151
2017-12-03 09:24,6.6,1.7895520000000003,2.013246,124
2017-12-03 09:26,6.4,2.23694,2.460634,97
2017-12-03 09:28,6.1,2.460634,2.6843280000000003,91
2017-12-03 09:30,6,2.460634,2.6843280000000003,103
2017-12-03 09:32,6,2.6843280000000003,2.9080220000000003,114
2017-12-03 09:34,5.9,3.131716,3.35541,116
2017-12-03 09:36,5.8,3.131716,3.35541,113
2017-12-03 09:38,5.8,2.9080220000000003,2.9080220000000003,111
2017-12-03 09:40,5.8,2.6843280000000003,2.9080220000000003,101
2017-12-03 09:42,5.8,2.23694,2.6843280000000003,95
2017-12-03 09:44,5.8,2.23694,2.460634,96
2017-12-03 09:46,5.9,2.013246,2.013246,104
2017-12-03 09:48,6,1.7895520000000003,2.013246,104
2017-12-03 09:50,6.1,1.7895520000000003,2.23694,94
2017-12-03 09:52,6.2,2.23694,2.460634,87
2017-12-03 09:54,6.2,2.23694,2.460634,89
2017-12-03 09:56,6.3,2.013246,2.23694,97
2017-12-03 09:58,6.5,1.7895520000000003,1.7895520000000003,103
2017-12-03 10:00,6.6,1.7895520000000003,2.013246,104
2017-12-03 10:02,6.7,2.013246,2.013246,103
2017-12-03 10:04,6.7,1.7895520000000003,2.013246,99
2017-12-03 10:06,6.7,1.565858,2.013246,85
2017-12-03 10:08,6.7,2.23694,2.6843280000000003,72
2017-12-03 10:10,6.6,2.6843280000000003,2.9080220000000003,63
2017-12-03 10:12,6.5,2.9080220000000003,2.9080220000000003,55
2017-12-03 10:14,6.5,3.131716,3.35541,46
2017-12-03 10:16,6.4,3.5791040000000005,3.802798,45
2017-12-03 10:18,6.1,4.026492,4.47388,48
2017-12-03 10:20,5.9,4.47388,4.921268,52
2017-12-03 10:22,5.8,3.802798,4.250186,55
2017-12-03 10:24,5.8,3.802798,4.026492,48
2017-12-03 10:26,5.8,3.802798,4.026492,46
2017-12-03 10:28,5.7,3.802798,4.250186,52
2017-12-03 10:30,5.8,3.131716,3.35541,57
2017-12-03 10:32,5.9,2.6843280000000003,3.131716,59
2017-12-03 10:34,6.1,2.460634,2.9080220000000003,64
2017-12-03 10:36,6.3,1.7895520000000003,2.013246,68
2017-12-03 10:38,6.5,2.013246,2.460634,52
2017-12-03 10:40,6.6,1.7895520000000003,2.013246,47
2017-12-03 10:42,6.7,2.013246,2.460634,41
2017-12-03 10:44,6.8,2.23694,2.460634,33
2017-12-03 10:46,6.9,2.013246,2.460634,38
2017-12-03 10:48,6.8,2.6843280000000003,3.131716,40
2017-12-03 10:50,6.7,3.131716,3.802798,39
2017-12-03 10:52,6.6,3.35541,3.5791040000000005,45
2017-12-03 10:54,6.5,3.131716,3.5791040000000005,55
2017-12-03 10:56,6.5,2.9080220000000003,3.35541,63
2017-12-03 10:58,6.5,3.131716,3.802798,56
2017-12-03 11:00,6.4,3.802798,4.697574,54
2017-12-03 11:02,6.3,4.250186,4.47388,55
2017-12-03 11:04,6.3,4.47388,5.816044000000001,56
2017-12-03 11:06,6.3,6.263432,7.381902,58
2017-12-03 11:08,6.2,7.158208000000001,7.82929,57
2017-12-03 11:10,6.2,8.052984,8.500372,55
2017-12-03 11:12,6.3,7.82929,8.94776,53
2017-12-03 11:14,6.4,7.158208000000001,7.605596,54
2017-12-03 11:16,6.4,7.605596,8.276678,54
2017-12-03 11:18,6.4,8.276678,9.395148,53
2017-12-03 11:20,6.4,8.94776,10.066230000000001,53
2017-12-03 11:22,6.3,8.500372,9.618842,53
2017-12-03 11:24,6.2,8.724066,9.842536,54
2017-12-03 11:26,6.2,8.276678,9.171454,53
2017-12-03 11:28,6.1,8.276678,9.395148,57
2017-12-03 11:30,6.2,7.82929,8.500372,55
2017-12-03 11:32,6.2,8.276678,8.94776,56
2017-12-03 11:34,6.2,8.276678,9.171454,53
2017-12-03 11:36,6.2,8.94776,9.842536,55
2017-12-03 11:38,6.3,9.171454,10.066230000000001,57
2017-12-03 11:40,6.3,9.618842,10.513618000000001,58
2017-12-03 11:42,6.3,9.618842,10.289924,56
2017-12-03 11:44,6.3,9.171454,10.066230000000001,52
2017-12-03 11:46,6.4,9.395148,10.513618000000001,51
2017-12-03 11:48,6.3,10.066230000000001,10.513618000000001,47
2017-12-03 11:50,6.4,9.618842,10.513618000000001,50
2017-12-03 11:52,6.4,9.395148,9.842536,50
2017-12-03 11:54,6.5,8.94776,9.618842,48
2017-12-03 11:56,6.5,9.171454,10.066230000000001,45
2017-12-03 11:58,6.4,9.395148,10.289924,43
2017-12-03 12:00,6.4,9.395148,9.842536,42
2017-12-03 12:02,6.4,9.618842,10.289924,42
2017-12-03 12:04,6.4,9.618842,10.289924,47
2017-12-03 12:06,6.4,8.724066,9.618842,49
2017-12-03 12:08,6.4,8.276678,8.94776,47
2017-12-03 12:10,6.4,8.724066,9.171454,44
2017-12-03 12:12,6.4,8.500372,9.171454,44
2017-12-03 12:14,6.4,8.276678,8.94776,47
2017-12-03 12:16,6.4,8.94776,9.842536,45
2017-12-03 12:18,6.4,9.842536,10.289924,45
2017-12-03 12:20,6.4,9.842536,10.961006000000001,48
2017-12-03 12:22,6.4,9.842536,10.737312000000001,47
2017-12-03 12:24,6.4,10.513618000000001,11.184700000000001,48
2017-12-03 12:26,6.4,9.618842,10.961006000000001,45
2017-12-03 12:28,6.4,10.066230000000001,11.184700000000001,44
2017-12-03 12:30,6.4,10.066230000000001,11.184700000000001,44
2017-12-03 12:32,6.4,10.513618000000001,11.408394,46
2017-12-03 12:34,6.5,10.066230000000001,10.961006000000001,45
2017-12-03 12:36,6.5,9.842536,10.289924,44
2017-12-03 12:38,6.5,10.737312000000001,12.079476000000001,46
2017-12-03 12:40,6.6,11.632088000000001,12.303170000000001,45
2017-12-03 12:42,6.6,11.632088000000001,12.303170000000001,42
2017-12-03 12:44,6.7,12.079476000000001,13.197946000000002,45
2017-12-03 12:46,6.7,12.750558000000002,14.092722,45
2017-12-03 12:48,6.7,12.526864,13.645334,48
2017-12-03 12:50,6.7,11.855782,12.750558000000002,48
2017-12-03 12:52,6.7,11.855782,12.750558000000002,49
2017-12-03 12:54,6.7,12.079476000000001,12.974252,51
2017-12-03 12:56,6.7,11.855782,12.750558000000002,50
2017-12-03 12:58,6.7,12.526864,13.645334,45
2017-12-03 13:00,6.8,12.974252,13.869028000000002,47
2017-12-03 13:02,6.8,13.42164,14.987498000000002,47
2017-12-03 13:04,6.8,12.526864,13.645334,48
2017-12-03 13:06,6.8,12.303170000000001,13.197946000000002,49
2017-12-03 13:08,6.8,12.303170000000001,13.645334,49
2017-12-03 13:10,6.8,12.303170000000001,13.42164,47
2017-12-03 13:12,6.7,12.303170000000001,13.42164,47
2017-12-03 13:14,6.7,12.303170000000001,13.197946000000002,52
2017-12-03 13:16,6.7,11.184700000000001,12.526864,54
2017-12-03 13:18,6.7,11.632088000000001,12.303170000000001,52
2017-12-03 13:20,6.7,12.303170000000001,13.645334,48
2017-12-03 13:22,6.7,12.974252,14.092722,48
2017-12-03 13:24,6.6,13.197946000000002,14.763804,50
2017-12-03 13:26,6.6,13.869028000000002,15.211192,52
2017-12-03 13:28,6.6,14.092722,15.211192,51
2017-12-03 13:30,6.5,14.316416000000002,15.434886000000002,51
2017-12-03 13:32,6.5,14.763804,16.105968,49
2017-12-03 13:34,6.5,15.211192,16.105968,49
2017-12-03 13:36,6.5,14.987498000000002,16.329662,50
2017-12-03 13:38,6.5,14.987498000000002,15.882274,50
2017-12-03 13:40,6.5,14.763804,15.882274,51
2017-12-03 13:42,6.4,14.54011,16.329662,53
2017-12-03 13:44,6.4,13.869028000000002,14.763804,54
2017-12-03 13:46,6.4,14.763804,16.105968,57
2017-12-03 13:48,6.4,14.54011,15.65858,55
2017-12-03 13:50,6.3,14.316416000000002,16.105968,57
2017-12-03 13:52,6.3,15.434886000000002,16.777050000000003,57
2017-12-03 13:54,6.3,15.211192,16.329662,57
2017-12-03 13:56,6.3,15.211192,16.329662,55
2017-12-03 13:58,6.3,15.434886000000002,16.777050000000003,56
2017-12-03 14:00,6.4,14.54011,15.65858,55
2017-12-03 14:02,6.4,14.316416000000002,15.882274,54
2017-12-03 14:04,6.4,15.434886000000002,16.777050000000003,53
2017-12-03 14:06,6.4,15.434886000000002,16.329662,55
2017-12-03 14:08,6.4,16.553356,18.119214,55
2017-12-03 14:10,6.4,16.329662,17.000744,57
2017-12-03 14:12,6.4,15.882274,17.224438000000003,58
2017-12-03 14:14,6.4,15.882274,17.224438000000003,59
2017-12-03 14:16,6.3,15.65858,16.777050000000003,59
2017-12-03 14:18,6.3,15.65858,17.448132,60
2017-12-03 14:20,6.4,15.434886000000002,16.777050000000003,60
2017-12-03 14:22,6.4,14.763804,16.105968,60
2017-12-03 14:24,6.4,15.211192,16.105968,62
2017-12-03 14:26,6.4,15.211192,16.553356,60
2017-12-03 14:28,6.4,14.987498000000002,16.553356,60
2017-12-03 14:30,6.4,13.869028000000002,15.211192,61
2017-12-03 14:32,6.4,13.869028000000002,15.211192,62
2017-12-03 14:34,6.4,14.316416000000002,15.65858,66
2017-12-03 14:36,6.4,13.869028000000002,15.434886000000002,65
2017-12-03 14:38,6.4,14.54011,16.329662,64
2017-12-03 14:40,6.4,15.65858,16.553356,63
2017-12-03 14:42,6.4,14.316416000000002,15.882274,62
2017-12-03 14:44,6.3,14.54011,15.882274,64
2017-12-03 14:46,6.3,14.092722,16.105968,64
2017-12-03 14:48,6.3,14.763804,15.882274,64
2017-12-03 14:50,6.3,14.54011,15.65858,63
2017-12-03 14:52,6.3,14.54011,15.434886000000002,61
2017-12-03 14:54,6.3,14.316416000000002,15.434886000000002,59
2017-12-03 14:56,6.3,15.434886000000002,16.329662,61
2017-12-03 14:58,6.3,15.211192,17.224438000000003,62
2017-12-03 15:00,6.3,15.211192,16.329662,60
2017-12-03 15:02,6.3,16.329662,18.342908,61
2017-12-03 15:04,6.3,16.777050000000003,18.566602000000003,60
2017-12-03 15:06,6.4,16.329662,18.342908,59
2017-12-03 15:08,6.3,16.329662,17.671826000000003,60
2017-12-03 15:10,6.3,16.553356,18.790296,61
2017-12-03 15:12,6.4,17.000744,18.342908,61
2017-12-03 15:14,6.4,17.671826000000003,19.237684,61
2017-12-03 15:16,6.4,17.89552,19.461378,61
2017-12-03 15:18,6.5,17.89552,19.237684,61
2017-12-03 15:20,6.4,17.671826000000003,19.461378,62
2017-12-03 15:22,6.5,17.224438000000003,18.119214,65
2017-12-03 15:24,6.5,15.65858,17.448132,67
2017-12-03 15:26,6.4,15.211192,17.000744,68
2017-12-03 15:28,6.4,15.211192,16.329662,70
2017-12-03 15:30,6.4,14.987498000000002,15.882274,69
2017-12-03 15:32,6.4,15.211192,16.553356,69
2017-12-03 15:34,6.4,15.65858,17.448132,66
2017-12-03 15:36,6.5,15.65858,16.777050000000003,65
2017-12-03 15:38,6.5,14.763804,15.882274,65
2017-12-03 15:40,6.5,14.763804,16.329662,63
2017-12-03 15:42,6.5,14.763804,16.105968,62
2017-12-03 15:44,6.5,14.316416000000002,14.763804,62
2017-12-03 15:46,6.5,14.763804,15.882274,61
2017-12-03 15:48,6.5,14.763804,15.65858,62
2017-12-03 15:50,6.5,14.763804,15.882274,64
2017-12-03 15:52,6.5,13.869028000000002,14.763804,64
2017-12-03 15:54,6.5,13.42164,14.092722,62
2017-12-03 15:56,6.5,13.42164,14.54011,64
2017-12-03 15:58,6.5,12.974252,14.316416000000002,62
2017-12-03 16:00,6.5,12.526864,13.645334,63
2017-12-03 16:02,6.5,13.42164,14.763804,66
2017-12-03 16:04,6.6,13.645334,14.316416000000002,65
2017-12-03 16:06,6.6,12.750558000000002,13.645334,66
2017-12-03 16:08,6.6,13.197946000000002,14.316416000000002,68
2017-12-03 16:10,6.6,12.974252,13.42164,68
2017-12-03 16:12,6.6,12.974252,13.645334,69
2017-12-03 16:14,6.6,12.303170000000001,13.197946000000002,69
2017-12-03 16:16,6.5,12.079476000000001,12.750558000000002,69
2017-12-03 16:18,6.5,11.632088000000001,12.079476000000001,69
2017-12-03 16:20,6.5,11.184700000000001,12.079476000000001,70
2017-12-03 16:22,6.5,11.184700000000001,11.855782,70
2017-12-03 16:24,6.6,11.408394,12.303170000000001,70
2017-12-03 16:26,6.6,11.184700000000001,12.079476000000001,71
2017-12-03 16:28,6.6,10.961006000000001,11.632088000000001,70
2017-12-03 16:30,6.6,10.737312000000001,11.408394,69
2017-12-03 16:32,6.6,11.184700000000001,12.079476000000001,68
2017-12-03 16:34,6.6,11.184700000000001,11.632088000000001,68
2017-12-03 16:36,6.5,11.408394,12.303170000000001,66
2017-12-03 16:38,6.5,11.632088000000001,12.303170000000001,66
2017-12-03 16:40,6.5,11.855782,12.079476000000001,65
2017-12-03 16:42,6.5,11.855782,12.526864,67
2017-12-03 16:44,6.5,11.632088000000001,12.079476000000001,69
2017-12-03 16:46,6.5,11.632088000000001,12.303170000000001,68
2017-12-03 16:48,6.5,11.408394,12.079476000000001,69
2017-12-03 16:50,6.5,11.632088000000001,12.079476000000001,69
2017-12-03 16:52,6.5,11.632088000000001,12.974252,67
2017-12-03 16:54,6.5,11.855782,12.526864,64
2017-12-03 16:56,6.4,12.079476000000001,12.750558000000002,65
2017-12-03 16:58,6.4,11.632088000000001,12.750558000000002,67
2017-12-03 17:00,6.4,11.408394,11.855782,68
2017-12-03 17:02,6.4,10.961006000000001,11.632088000000001,70
2017-12-03 17:04,6.4,10.513618000000001,11.184700000000001,71
2017-12-03 17:06,6.4,10.513618000000001,11.184700000000001,72
2017-12-03 17:08,6.4,10.737312000000001,11.184700000000001,71
2017-12-03 17:10,6.4,10.961006000000001,11.632088000000001,71
2017-12-03 17:12,6.4,10.961006000000001,11.408394,70
2017-12-03 17:14,6.4,10.513618000000001,11.632088000000001,70
2017-12-03 17:16,6.4,9.842536,10.737312000000001,69
2017-12-03 17:18,6.4,9.842536,10.737312000000001,64
2017-12-03 17:20,6.4,9.618842,10.289924,63
2017-12-03 17:22,6.4,9.618842,10.737312000000001,61
2017-12-03 17:24,6.4,9.842536,10.737312000000001,59
2017-12-03 17:26,6.4,9.842536,10.513618000000001,59
2017-12-03 17:28,6.4,10.066230000000001,10.737312000000001,60
2017-12-03 17:30,6.4,9.842536,10.513618000000001,63
2017-12-03 17:32,6.5,9.618842,10.513618000000001,63
2017-12-03 17:34,6.5,9.171454,9.842536,65
2017-12-03 17:36,6.4,8.94776,9.618842,69
2017-12-03 17:38,6.4,8.94776,9.395148,74
2017-12-03 17:40,6.4,8.724066,9.395148,76
2017-12-03 17:42,6.4,8.500372,9.171454,75
2017-12-03 17:44,6.4,8.276678,8.94776,73
2017-12-03 17:46,6.4,7.605596,8.276678,67
2017-12-03 17:48,6.4,7.82929,8.500372,62
2017-12-03 17:50,6.4,8.052984,8.724066,60
2017-12-03 17:52,6.4,8.276678,8.724066,56
2017-12-03 17:54,6.4,8.052984,8.94776,54
2017-12-03 17:56,6.4,8.052984,8.724066,56
2017-12-03 17:58,6.4,8.052984,8.724066,55
2017-12-03 18:00,6.4,8.276678,9.171454,53
2017-12-03 18:02,6.4,8.276678,8.724066,52
2017-12-03 18:04,6.4,8.052984,8.724066,51
2017-12-03 18:06,6.4,7.158208000000001,7.82929,55
2017-12-03 18:08,6.3,6.263432,6.934514000000001,61
2017-12-03 18:10,6.3,5.816044000000001,6.71082,63
2017-12-03 18:12,6.3,5.144962,5.816044000000001,65
2017-12-03 18:14,6.3,5.144962,5.592350000000001,66
2017-12-03 18:16,6.3,5.144962,5.592350000000001,70
2017-12-03 18:18,6.3,4.47388,5.592350000000001,70
2017-12-03 18:20,6.3,4.47388,5.144962,68
2017-12-03 18:22,6.3,4.921268,5.592350000000001,66
2017-12-03 18:24,6.3,4.47388,5.144962,69
2017-12-03 18:26,6.2,4.697574,5.592350000000001,75
2017-12-03 18:28,6.2,5.592350000000001,6.263432,83
2017-12-03 18:30,6.2,5.816044000000001,6.934514000000001,82
2017-12-03 18:32,6.2,6.487126,7.605596,79
2017-12-03 18:34,6.2,7.381902,8.724066,77
2017-12-03 18:36,6.2,8.500372,9.618842,75
2017-12-03 18:38,6.2,9.171454,10.066230000000001,73
2017-12-03 18:40,6.2,9.842536,11.632088000000001,70
2017-12-03 18:42,6.2,10.289924,10.961006000000001,68
2017-12-03 18:44,6.2,9.842536,10.737312000000001,67
2017-12-03 18:46,6.3,10.289924,11.184700000000001,67
2017-12-03 18:48,6.3,10.066230000000001,10.961006000000001,70
2017-12-03 18:50,6.3,9.618842,10.737312000000001,73
2017-12-03 18:52,6.3,9.618842,11.184700000000001,74
2017-12-03 18:54,6.3,9.842536,11.184700000000001,74
2017-12-03 18:56,6.3,10.513618000000001,11.632088000000001,69
2017-12-03 18:58,6.3,10.513618000000001,11.855782,66
2017-12-03 19:00,6.4,10.737312000000001,12.303170000000001,65
2017-12-03 19:02,6.4,10.513618000000001,11.408394,66
2017-12-03 19:04,6.4,9.842536,10.961006000000001,68
2017-12-03 19:06,6.3,9.618842,10.513618000000001,69
2017-12-03 19:08,6.3,9.395148,10.289924,68
2017-12-03 19:10,6.3,9.171454,9.842536,72
2017-12-03 19:12,6.3,8.94776,10.066230000000001,73
2017-12-03 19:14,6.4,8.724066,10.289924,72
2017-12-03 19:16,6.4,8.724066,9.618842,71
2017-12-03 19:18,6.4,8.276678,9.395148,69
2017-12-03 19:20,6.4,8.500372,9.395148,73
2017-12-03 19:22,6.4,8.500372,9.842536,71
2017-12-03 19:24,6.5,8.94776,9.842536,68
2017-12-03 19:26,6.5,9.171454,9.842536,67
2017-12-03 19:28,6.5,9.395148,10.066230000000001,63
2017-12-03 19:30,6.5,9.171454,10.289924,65
2017-12-03 19:32,6.5,9.395148,10.066230000000001,64
2017-12-03 19:34,6.5,9.842536,10.737312000000001,61
2017-12-03 19:36,6.5,10.066230000000001,11.184700000000001,63
2017-12-03 19:38,6.6,10.737312000000001,12.079476000000001,63
2017-12-03 19:40,6.6,11.184700000000001,12.079476000000001,63
2017-12-03 19:42,6.6,11.855782,12.750558000000002,63
2017-12-03 19:44,6.7,12.303170000000001,13.869028000000002,63
2017-12-03 19:46,6.7,13.197946000000002,14.316416000000002,64
2017-12-03 19:48,6.8,12.750558000000002,13.869028000000002,65
2017-12-03 19:50,6.8,12.750558000000002,14.316416000000002,64
2017-12-03 19:52,6.8,12.079476000000001,12.974252,65
2017-12-03 19:54,6.8,11.632088000000001,12.526864,64
2017-12-03 19:56,6.7,11.632088000000001,12.750558000000002,66
2017-12-03 19:58,6.7,12.303170000000001,13.645334,67
2017-12-03 20:00,6.7,12.303170000000001,13.869028000000002,67
2017-12-03 20:02,6.7,12.974252,14.092722,66
2017-12-03 20:04,6.8,12.750558000000002,13.869028000000002,65
2017-12-03 20:06,6.8,12.750558000000002,14.092722,65
2017-12-03 20:08,6.8,12.974252,14.316416000000002,64
2017-12-03 20:10,6.8,13.42164,14.54011,65
2017-12-03 20:12,6.8,13.869028000000002,14.987498000000002,65
2017-12-03 20:14,6.9,13.869028000000002,15.211192,64
2017-12-03 20:16,6.9,14.092722,14.763804,63
2017-12-03 20:18,6.9,14.092722,14.763804,64
2017-12-03 20:20,6.9,13.645334,15.211192,66
2017-12-03 20:22,6.9,13.645334,14.54011,63
2017-12-03 20:24,6.9,13.42164,14.763804,64
2017-12-03 20:26,6.9,12.974252,14.54011,61
2017-12-03 20:28,6.9,12.750558000000002,13.869028000000002,62
2017-12-03 20:30,6.9,12.526864,13.42164,63
2017-12-03 20:32,6.9,12.750558000000002,13.645334,61
2017-12-03 20:34,6.9,12.750558000000002,14.092722,61
2017-12-03 20:36,6.8,12.526864,13.197946000000002,60
2017-12-03 20:38,6.8,12.750558000000002,13.869028000000002,62
2017-12-03 20:40,6.8,12.079476000000001,13.645334,64
2017-12-03 20:42,6.8,12.303170000000001,13.645334,62
2017-12-03 20:44,6.8,12.079476000000001,12.974252,63
2017-12-03 20:46,6.9,12.974252,14.54011,63
2017-12-03 20:48,6.9,12.750558000000002,14.54011,64
2017-12-03 20:50,6.9,12.974252,14.092722,61
2017-12-03 20:52,7,13.197946000000002,14.092722,62
2017-12-03 20:54,7,13.197946000000002,14.316416000000002,59
2017-12-03 20:56,7,13.645334,14.987498000000002,59
2017-12-03 20:58,7,13.197946000000002,14.54011,59
2017-12-03 21:00,7,13.42164,14.54011,62
2017-12-03 21:02,7.1,14.092722,14.987498000000002,62
2017-12-03 21:04,7.1,14.316416000000002,15.882274,66
2017-12-03 21:06,7.2,14.763804,15.65858,61
2017-12-03 21:08,7.2,14.763804,15.882274,60
2017-12-03 21:10,7.2,15.211192,16.553356,60
2017-12-03 21:12,7.3,14.987498000000002,15.882274,58
2017-12-03 21:14,7.2,14.54011,15.65858,58
2017-12-03 21:16,7.2,14.54011,15.434886000000002,58
2017-12-03 21:18,7.2,14.54011,15.882274,57
2017-12-03 21:20,7.2,14.316416000000002,15.65858,58
2017-12-03 21:22,7.2,13.645334,15.211192,58
2017-12-03 21:24,7.3,13.645334,14.987498000000002,57
2017-12-03 21:26,7.3,12.750558000000002,13.645334,57
2017-12-03 21:28,7.2,12.750558000000002,13.869028000000002,55
2017-12-03 21:30,7.3,12.750558000000002,13.869028000000002,53
2017-12-03 21:32,7.3,12.303170000000001,13.869028000000002,51
2017-12-03 21:34,7.3,12.526864,12.974252,49
2017-12-03 21:36,7.3,11.855782,13.42164,52
2017-12-03 21:38,7.3,11.632088000000001,12.303170000000001,51
2017-12-03 21:40,7.4,12.750558000000002,14.092722,53
2017-12-03 21:42,7.5,13.197946000000002,14.316416000000002,53
2017-12-03 21:44,7.5,13.869028000000002,15.434886000000002,54
2017-12-03 21:46,7.5,13.645334,15.65858,51
2017-12-03 21:48,7.5,14.092722,15.65858,52
2017-12-03 21:50,7.5,14.763804,15.65858,54
2017-12-03 21:52,7.5,14.54011,15.434886000000002,56
2017-12-03 21:54,7.5,14.763804,16.553356,58
2017-12-03 21:56,7.5,15.211192,17.000744,57
2017-12-03 21:58,7.5,15.434886000000002,16.777050000000003,59
2017-12-03 22:00,7.5,16.105968,17.224438000000003,58
2017-12-03 22:02,7.5,16.105968,17.224438000000003,57
2017-12-03 22:04,7.5,16.105968,17.224438000000003,58
2017-12-03 22:06,7.5,14.54011,15.882274,58
2017-12-03 22:08,7.4,14.763804,15.882274,60
2017-12-03 22:10,7.5,14.54011,15.882274,62
2017-12-03 22:12,7.5,14.092722,15.211192,61
2017-12-03 22:14,7.5,14.763804,16.329662,62
2017-12-03 22:16,7.5,15.434886000000002,17.448132,62
2017-12-03 22:18,7.5,16.329662,18.342908,62
2017-12-03 22:20,7.5,16.553356,17.224438000000003,62
2017-12-03 22:22,7.5,16.777050000000003,18.566602000000003,61
2017-12-03 22:24,7.5,16.777050000000003,18.790296,63
2017-12-03 22:26,7.5,16.105968,17.448132,63
2017-12-03 22:28,7.4,15.434886000000002,17.224438000000003,65
2017-12-03 22:30,7.4,14.316416000000002,15.434886000000002,64
2017-12-03 22:32,7.3,14.54011,16.777050000000003,63
2017-12-03 22:34,7.4,14.316416000000002,16.105968,65
2017-12-03 22:36,7.4,13.869028000000002,15.65858,66
2017-12-03 22:38,7.4,13.42164,15.434886000000002,69
2017-12-03 22:40,7.4,12.974252,14.092722,69
2017-12-03 22:42,7.4,12.526864,14.54011,67
2017-12-03 22:44,7.4,12.303170000000001,13.645334,67
2017-12-03 22:46,7.4,11.184700000000001,11.632088000000001,64
2017-12-03 22:48,7.4,11.632088000000001,12.303170000000001,60
2017-12-03 22:50,7.5,11.632088000000001,13.42164,59
2017-12-03 22:52,7.5,10.961006000000001,12.079476000000001,57
2017-12-03 22:54,7.4,10.066230000000001,10.961006000000001,59
2017-12-03 22:56,7.4,9.842536,10.289924,59
2017-12-03 22:58,7.4,9.171454,10.066230000000001,56
2017-12-03 23:00,7.5,9.171454,10.289924,54
2017-12-03 23:02,7.4,9.395148,10.961006000000001,53
2017-12-03 23:04,7.4,9.395148,10.737312000000001,58
2017-12-03 23:06,7.4,8.94776,10.289924,61
2017-12-03 23:08,7.4,8.500372,9.618842,60
2017-12-03 23:10,7.4,8.94776,9.842536,58
2017-12-03 23:12,7.4,9.618842,10.737312000000001,59
2017-12-03 23:14,7.3,9.395148,10.066230000000001,61
2017-12-03 23:16,7.3,10.066230000000001,10.961006000000001,62
2017-12-03 23:18,7.3,10.961006000000001,12.079476000000001,63
2017-12-03 23:20,7.3,10.961006000000001,11.855782,63
2017-12-03 23:22,7.2,10.961006000000001,12.079476000000001,62
2017-12-03 23:24,7.2,11.184700000000001,13.197946000000002,61
2017-12-03 23:26,7.2,11.632088000000001,12.750558000000002,59
2017-12-03 23:28,7.1,11.855782,12.974252,59
2017-12-03 23:30,7.1,11.408394,12.974252,63
2017-12-03 23:32,7.1,11.855782,13.645334,61
2017-12-03 23:34,7.1,11.632088000000001,13.197946000000002,63
2017-12-03 23:36,7.1,12.079476000000001,13.645334,66
2017-12-03 23:38,7.1,12.303170000000001,13.42164,63
2017-12-03 23:40,7.2,13.197946000000002,14.316416000000002,63
2017-12-03 23:42,7.2,13.197946000000002,14.316416000000002,62
2017-12-03 23:44,7.2,12.750558000000002,14.763804,63
2017-12-03 23:46,7.2,13.42164,15.65858,62
2017-12-03 23:48,7.2,14.092722,15.211192,64
2017-12-03 23:50,7.2,13.869028000000002,14.763804,63
2017-12-03 23:52,7.2,13.645334,15.434886000000002,62
2017-12-03 23:54,7.2,14.092722,15.882274,63
2017-12-03 23:56,7.2,13.645334,15.434886000000002,63
2017-12-03 23:58,7.2,14.316416000000002,15.65858,62
2017-12-04 00:00,7.2,13.645334,15.211192,61
2017-12-04 00:02,7.1,13.197946000000002,14.092722,62
2017-12-04 00:04,7.1,12.974252,14.987498000000002,63
2017-12-04 00:06,7.1,12.974252,15.434886000000002,63
2017-12-04 00:08,7.1,12.303170000000001,13.645334,63
2017-12-04 00:10,7.1,12.303170000000001,13.42164,63
2017-12-04 00:12,7.1,12.974252,14.092722,63
2017-12-04 00:14,7.1,12.526864,14.763804,64
2017-12-04 00:16,7.2,13.197946000000002,14.316416000000002,65
2017-12-04 00:18,7.2,13.197946000000002,14.316416000000002,64
2017-12-04 00:20,7.2,14.54011,15.211192,64
2017-12-04 00:22,7.2,14.316416000000002,16.329662,62
2017-12-04 00:24,7.2,14.092722,15.882274,64
2017-12-04 00:26,7.2,13.869028000000002,14.763804,63
2017-12-04 00:28,7.1,14.54011,16.105968,63
2017-12-04 00:30,7.2,16.105968,19.01399,63
2017-12-04 00:32,7.2,15.434886000000002,17.224438000000003,64
2017-12-04 00:34,7.2,14.987498000000002,16.777050000000003,66
2017-12-04 00:36,7.2,15.434886000000002,18.342908,66
2017-12-04 00:38,7.2,16.105968,17.448132,67
2017-12-04 00:40,7.2,16.105968,17.448132,68
2017-12-04 00:42,7.2,15.882274,17.671826000000003,69
2017-12-04 00:44,7.2,16.329662,18.119214,70
2017-12-04 00:46,7.2,15.65858,16.777050000000003,72
2017-12-04 00:48,7.3,16.105968,17.224438000000003,70
2017-12-04 00:50,7.2,15.434886000000002,17.000744,70
2017-12-04 00:52,7.3,16.329662,17.671826000000003,69
2017-12-04 00:54,7.3,16.329662,17.89552,68
2017-12-04 00:56,7.3,16.105968,17.448132,67
2017-12-04 00:58,7.3,15.65858,17.448132,67
2017-12-04 01:00,7.3,15.434886000000002,16.329662,65
2017-12-04 01:02,7.3,16.553356,17.671826000000003,61
2017-12-04 01:04,7.3,15.882274,17.671826000000003,61
2017-12-04 01:06,7.3,15.882274,17.448132,61
2017-12-04 01:08,7.3,15.434886000000002,16.329662,58
2017-12-04 01:10,7.3,15.65858,17.671826000000003,59
2017-12-04 01:12,7.3,15.434886000000002,17.000744,58
2017-12-04 01:14,7.3,14.54011,15.434886000000002,57
2017-12-04 01:16,7.3,14.763804,16.329662,60
2017-12-04 01:18,7.3,14.54011,16.105968,61
2017-12-04 01:20,7.3,13.869028000000002,14.987498000000002,63
2017-12-04 01:22,7.3,14.316416000000002,15.65858,63
2017-12-04 01:24,7.4,15.65858,17.000744,61
2017-12-04 01:26,7.4,15.434886000000002,16.777050000000003,61
2017-12-04 01:28,7.4,15.882274,17.224438000000003,60
2017-12-04 01:30,7.4,15.211192,16.777050000000003,59
2017-12-04 01:32,7.3,15.434886000000002,17.000744,57
2017-12-04 01:34,7.4,16.329662,17.448132,60
2017-12-04 01:36,7.4,15.882274,17.000744,57
2017-12-04 01:38,7.3,16.329662,18.119214,57
2017-12-04 01:40,7.3,16.553356,18.342908,62
2017-12-04 01:42,7.3,15.65858,17.224438000000003,60
2017-12-04 01:44,7.2,16.105968,17.448132,62
2017-12-04 01:46,7.3,16.777050000000003,17.448132,61
2017-12-04 01:48,7.2,15.882274,17.671826000000003,64
2017-12-04 01:50,7.2,15.65858,17.89552,65
2017-12-04 01:52,7.2,16.777050000000003,18.342908,64
2017-12-04 01:54,7.2,17.671826000000003,19.237684,62
2017-12-04 01:56,7.2,17.448132,18.342908,63
2017-12-04 01:58,7.2,17.000744,18.342908,63
2017-12-04 02:00,7.2,19.237684,20.579848,61
2017-12-04 02:02,7.2,17.671826000000003,19.685072,62
2017-12-04 02:04,7.3,18.342908,19.908766000000004,61
2017-12-04 02:06,7.3,16.777050000000003,18.566602000000003,61
2017-12-04 02:08,7.2,17.448132,19.01399,63
2017-12-04 02:10,7.2,17.000744,18.790296,61
2017-12-04 02:12,7.2,17.448132,19.01399,61
2017-12-04 02:14,7.2,17.224438000000003,18.790296,61
2017-12-04 02:16,7.2,16.777050000000003,18.342908,59
2017-12-04 02:18,7.2,17.000744,19.685072,62
2017-12-04 02:20,7.2,17.000744,18.566602000000003,60
2017-12-04 02:22,7.2,16.105968,17.89552,62
2017-12-04 02:24,7.1,16.553356,18.119214,60
2017-12-04 02:26,7.2,15.882274,17.448132,59
2017-12-04 02:28,7.2,16.105968,17.224438000000003,63
2017-12-04 02:30,7.3,16.329662,17.89552,61
2017-12-04 02:32,7.3,16.329662,17.671826000000003,61
2017-12-04 02:34,7.3,16.777050000000003,18.342908,62
2017-12-04 02:36,7.4,16.329662,18.119214,66
2017-12-04 02:38,7.4,17.224438000000003,19.237684,64
2017-12-04 02:40,7.5,17.89552,19.461378,65
2017-12-04 02:42,7.5,17.671826000000003,20.132460000000002,64
2017-12-04 02:44,7.5,18.342908,20.803542000000004,68
2017-12-04 02:46,7.6,18.566602000000003,20.132460000000002,69
2017-12-04 02:48,7.6,18.790296,20.579848,69
2017-12-04 02:50,7.6,18.566602000000003,19.908766000000004,68
2017-12-04 02:52,7.6,17.000744,18.790296,70
2017-12-04 02:54,7.6,17.89552,19.461378,71
2017-12-04 02:56,7.5,17.448132,18.790296,71
2017-12-04 02:58,7.5,18.119214,19.461378,69
2017-12-04 03:00,7.5,18.342908,19.908766000000004,71
2017-12-04 03:02,7.5,18.790296,21.25093,68
2017-12-04 03:04,7.6,19.01399,21.027236000000002,67
2017-12-04 03:06,7.6,20.356154,23.48787,66
2017-12-04 03:08,7.5,20.132460000000002,22.145706,65
2017-12-04 03:10,7.5,19.237684,21.027236000000002,66
2017-12-04 03:12,7.5,20.132460000000002,21.474624000000002,65
2017-12-04 03:14,7.5,19.685072,21.25093,64
2017-12-04 03:16,7.5,20.132460000000002,22.145706,65
2017-12-04 03:18,7.4,20.803542000000004,23.040482000000004,64
2017-12-04 03:20,7.5,20.356154,22.369400000000002,64
2017-12-04 03:22,7.5,19.685072,21.698318,65
2017-12-04 03:24,7.5,20.132460000000002,21.922012000000002,67
2017-12-04 03:26,7.4,20.132460000000002,22.369400000000002,65
2017-12-04 03:28,7.4,21.027236000000002,22.593094,64
2017-12-04 03:30,7.4,20.803542000000004,22.369400000000002,65
2017-12-04 03:32,7.4,21.25093,23.48787,65
2017-12-04 03:34,7.4,21.922012000000002,24.158952000000003,64
2017-12-04 03:36,7.4,21.698318,24.382646,65
2017-12-04 03:38,7.4,21.474624000000002,22.593094,63
2017-12-04 03:40,7.4,22.145706,24.382646,65
2017-12-04 03:42,7.4,21.698318,23.711564,63
2017-12-04 03:44,7.3,22.369400000000002,25.277422000000005,65
2017-12-04 03:46,7.4,22.816788,25.277422000000005,65
2017-12-04 03:48,7.4,22.369400000000002,24.158952000000003,67
2017-12-04 03:50,7.3,21.698318,23.935258,66
2017-12-04 03:52,7.3,22.369400000000002,23.935258,66
2017-12-04 03:54,7.3,21.922012000000002,23.935258,65
2017-12-04 03:56,7.3,21.474624000000002,24.158952000000003,65
2017-12-04 03:58,7.3,21.474624000000002,24.606340000000003,65
2017-12-04 04:00,7.3,21.25093,23.711564,66
2017-12-04 04:02,7.4,21.474624000000002,23.264176000000003,67
2017-12-04 04:04,7.4,20.803542000000004,23.040482000000004,66
2017-12-04 04:06,7.4,20.579848,22.145706,64
2017-12-04 04:08,7.4,19.685072,21.698318,66
2017-12-04 04:10,7.3,19.237684,21.027236000000002,66
2017-12-04 04:12,7.3,18.566602000000003,20.356154,65
2017-12-04 04:14,7.3,19.01399,20.803542000000004,64
2017-12-04 04:16,7.4,19.685072,21.474624000000002,64
2017-12-04 04:18,7.4,19.01399,20.356154,64
2017-12-04 04:20,7.3,19.01399,20.356154,65
2017-12-04 04:22,7.4,18.790296,20.579848,65
2017-12-04 04:24,7.4,18.790296,20.356154,65
2017-12-04 04:26,7.4,18.342908,19.908766000000004,65
2017-12-04 04:28,7.4,18.342908,20.132460000000002,68
2017-12-04 04:30,7.4,18.790296,21.25093,66
2017-12-04 04:32,7.4,19.685072,20.803542000000004,67
2017-12-04 04:34,7.4,19.237684,20.356154,68
2017-12-04 04:36,7.4,17.671826000000003,19.01399,68
2017-12-04 04:38,7.3,17.000744,19.237684,71
2017-12-04 04:40,7.3,15.65858,17.000744,70
2017-12-04 04:42,7.3,15.211192,16.553356,69
2017-12-04 04:44,7.2,14.316416000000002,16.329662,73
2017-12-04 04:46,7.2,13.197946000000002,14.092722,67
2017-12-04 04:48,7.1,12.303170000000001,13.645334,70
2017-12-04 04:50,7.1,11.184700000000001,11.632088000000001,70
2017-12-04 04:52,7.1,9.842536,10.961006000000001,72
2017-12-04 04:54,7.1,9.842536,10.737312000000001,70
2017-12-04 04:56,7.1,10.513618000000001,11.408394,61
2017-12-04 04:58,7,11.855782,13.197946000000002,60
2017-12-04 05:00,6.9,12.750558000000002,13.645334,65
2017-12-04 05:02,6.9,12.303170000000001,13.869028000000002,67
2017-12-04 05:04,6.9,11.855782,12.750558000000002,67
2017-12-04 05:06,6.9,12.303170000000001,14.092722,68
2017-12-04 05:08,6.9,13.645334,14.763804,63
2017-12-04 05:10,7,14.092722,15.211192,64
2017-12-04 05:12,7,14.54011,15.882274,65
2017-12-04 05:14,7.1,15.434886000000002,17.224438000000003,63
2017-12-04 05:16,7.1,15.882274,17.671826000000003,64
2017-12-04 05:18,7.1,15.434886000000002,16.553356,64
2017-12-04 05:20,7.2,15.65858,17.224438000000003,68
2017-12-04 05:22,7.2,15.434886000000002,16.553356,66
2017-12-04 05:24,7.2,15.882274,17.224438000000003,63
2017-12-04 05:26,7.2,16.105968,17.448132,62
2017-12-04 05:28,7.2,15.434886000000002,17.224438000000003,65
2017-12-04 05:30,7.2,15.434886000000002,17.448132,67
2017-12-04 05:32,7.2,16.329662,17.671826000000003,67
2017-12-04 05:34,7.2,16.105968,17.671826000000003,67
2017-12-04 05:36,7.2,16.553356,17.89552,69
2017-12-04 05:38,7.2,15.65858,17.671826000000003,71
2017-12-04 05:40,7.2,16.329662,18.342908,71
2017-12-04 05:42,7.2,16.329662,18.119214,71
2017-12-04 05:44,7.2,17.000744,18.342908,70
2017-12-04 05:46,7.2,16.105968,17.448132,73
2017-12-04 05:48,7.2,15.65858,18.119214,72
2017-12-04 05:50,7.2,15.211192,16.329662,73
2017-12-04 05:52,7.2,13.869028000000002,15.434886000000002,74
2017-12-04 05:54,7.1,13.197946000000002,15.211192,72
2017-12-04 05:56,7.1,14.092722,16.105968,66
2017-12-04 05:58,7,14.316416000000002,15.65858,68
2017-12-04 06:00,7,14.763804,15.65858,68
2017-12-04 06:02,7.1,14.316416000000002,15.434886000000002,68
2017-12-04 06:04,7.1,13.197946000000002,14.987498000000002,70
2017-12-04 06:06,7.1,11.855782,12.750558000000002,71
2017-12-04 06:08,7.1,12.303170000000001,13.42164,67
2017-12-04 06:10,7,12.303170000000001,13.42164,71
2017-12-04 06:12,7.1,12.079476000000001,12.750558000000002,71
2017-12-04 06:14,7.2,11.408394,12.303170000000001,70
2017-12-04 06:16,7.2,12.079476000000001,12.974252,68
2017-12-04 06:18,7.2,12.974252,13.869028000000002,68
2017-12-04 06:20,7.2,12.750558000000002,14.092722,69
2017-12-04 06:22,7.2,13.645334,15.211192,72
2017-12-04 06:24,7.2,13.869028000000002,15.65858,72
2017-12-04 06:26,7.3,14.092722,15.434886000000002,76
2017-12-04 06:28,7.4,13.645334,14.987498000000002,75
2017-12-04 06:30,7.4,13.869028000000002,15.211192,74
2017-12-04 06:32,7.4,14.316416000000002,14.987498000000002,72
2017-12-04 06:34,7.4,14.092722,15.211192,71
2017-12-04 06:36,7.4,14.987498000000002,16.329662,70
2017-12-04 06:38,7.4,14.316416000000002,15.211192,70
2017-12-04 06:40,7.5,14.763804,16.105968,68
2017-12-04 06:42,7.5,14.987498000000002,17.448132,69
2017-12-04 06:44,7.5,15.65858,17.000744,67
2017-12-04 06:46,7.5,16.329662,17.448132,68
2017-12-04 06:48,7.5,15.882274,17.224438000000003,65
2017-12-04 06:50,7.4,15.434886000000002,16.553356,67
2017-12-04 06:52,7.3,15.65858,17.224438000000003,68
2017-12-04 06:54,7.3,15.211192,16.553356,65
2017-12-04 06:56,7.4,15.65858,16.777050000000003,67
2017-12-04 06:58,7.3,14.54011,15.434886000000002,68
2017-12-04 07:00,7.3,14.54011,15.882274,65
2017-12-04 07:02,7.3,15.211192,16.553356,68
2017-12-04 07:04,7.5,15.65858,17.000744,68
2017-12-04 07:06,7.5,14.54011,16.105968,68
2017-12-04 07:08,7.5,14.092722,15.882274,64
2017-12-04 07:10,7.5,15.65858,17.671826000000003,63
2017-12-04 07:12,7.5,14.316416000000002,16.553356,70
2017-12-04 07:14,7.6,14.316416000000002,16.553356,67
2017-12-04 07:16,7.5,15.882274,17.448132,64
2017-12-04 07:18,7.6,15.65858,17.000744,64
2017-12-04 07:20,7.7,15.65858,17.89552,66
2017-12-04 07:22,7.8,16.105968,17.224438000000003,68
2017-12-04 07:24,7.7,14.54011,15.65858,68
2017-12-04 07:26,7.7,15.65858,17.448132,67
2017-12-04 07:28,7.7,15.65858,17.000744,67
2017-12-04 07:30,7.6,15.882274,17.448132,64
2017-12-04 07:32,7.8,16.329662,17.671826000000003,68
2017-12-04 07:34,7.8,16.105968,18.342908,64
2017-12-04 07:36,7.7,17.224438000000003,18.566602000000003,63
2017-12-04 07:38,7.7,15.882274,17.89552,66
2017-12-04 07:40,7.7,15.882274,17.448132,69
2017-12-04 07:42,7.7,14.987498000000002,16.105968,69
2017-12-04 07:44,7.8,14.763804,16.553356,72
2017-12-04 07:46,8.3,15.434886000000002,17.000744,70
2017-12-04 07:48,8.1,14.316416000000002,16.105968,66
2017-12-04 07:50,8,14.763804,16.105968,66
2017-12-04 07:52,8.2,13.42164,14.763804,70
2017-12-04 07:54,8.2,13.645334,14.763804,71
2017-12-04 07:56,8.5,12.974252,14.316416000000002,73
2017-12-04 07:58,8.3,11.855782,12.974252,68
2017-12-04 08:00,8,12.303170000000001,13.869028000000002,71
2017-12-04 08:02,8.1,12.526864,13.645334,65
2017-12-04 08:04,8,11.408394,12.974252,64
2017-12-04 08:06,7.8,12.079476000000001,13.42164,62
2017-12-04 08:08,7.7,12.079476000000001,13.42164,62
2017-12-04 08:10,7.6,11.408394,12.303170000000001,64
2017-12-04 08:12,7.6,12.526864,13.869028000000002,60
2017-12-04 08:14,7.5,12.526864,13.869028000000002,64
2017-12-04 08:16,7.9,12.974252,14.092722,62
2017-12-04 08:18,7.8,13.197946000000002,14.763804,59
2017-12-04 08:20,7.5,12.974252,14.54011,63
2017-12-04 08:22,7.5,14.092722,15.434886000000002,59
2017-12-04 08:24,7.5,14.987498000000002,16.105968,58
2017-12-04 08:26,7.7,14.987498000000002,16.329662,62
2017-12-04 08:28,7.7,14.763804,16.553356,61
2017-12-04 08:30,7.9,14.092722,16.329662,65
2017-12-04 08:32,7.9,13.869028000000002,14.987498000000002,62
2017-12-04 08:34,8,13.869028000000002,14.987498000000002,66
2017-12-04 08:36,8.1,12.526864,13.645334,70
2017-12-04 08:38,8.4,11.855782,14.092722,76
2017-12-04 08:40,8.7,11.408394,14.316416000000002,80
2017-12-04 08:42,10.1,13.42164,16.329662,94
2017-12-04 08:44,11,14.092722,15.882274,94
2017-12-04 08:46,11.5,14.763804,17.448132,96
2017-12-04 08:48,11.9,16.553356,19.685072,99
2017-12-04 08:50,12,15.882274,16.777050000000003,96
2017-12-04 08:52,11.9,15.434886000000002,16.777050000000003,97
2017-12-04 08:54,11.8,13.869028000000002,15.882274,95
2017-12-04 08:56,11.9,14.316416000000002,18.119214,99
2017-12-04 08:58,12.3,17.000744,20.579848,98
2017-12-04 09:00,12.3,15.211192,16.553356,98
2017-12-04 09:02,12.3,16.105968,18.790296,103
2017-12-04 09:04,12.3,14.987498000000002,17.89552,102
2017-12-04 09:06,12.2,14.763804,16.553356,107
2017-12-04 09:08,12.1,14.092722,16.553356,101
2017-12-04 09:10,12.3,15.434886000000002,18.119214,104
2017-12-04 09:12,12.2,13.197946000000002,15.211192,104
2017-12-04 09:14,12.4,14.987498000000002,17.671826000000003,101
2017-12-04 09:16,12.7,16.553356,19.01399,101
2017-12-04 09:18,12.6,15.211192,18.566602000000003,103
2017-12-04 09:20,12.6,14.54011,17.000744,99
2017-12-04 09:22,12.5,14.987498000000002,17.224438000000003,101
2017-12-04 09:24,12.7,16.777050000000003,19.908766000000004,102
2017-12-04 09:26,12.9,15.882274,19.237684,102
2017-12-04 09:28,13,14.987498000000002,16.553356,101
2017-12-04 09:30,13,14.987498000000002,19.01399,104
2017-12-04 09:32,12.8,14.316416000000002,16.329662,101
2017-12-04 09:34,12.8,16.105968,18.342908,104
2017-12-04 09:36,13.2,16.329662,18.342908,104
2017-12-04 09:38,13.2,16.777050000000003,18.566602000000003,102
2017-12-04 09:40,13.2,16.105968,17.89552,100
2017-12-04 09:42,13,18.119214,21.474624000000002,104
2017-12-04 09:44,13.1,17.448132,18.790296,106
2017-12-04 09:46,13.1,17.448132,19.685072,104
2017-12-04 09:48,13.3,20.132460000000002,25.72481,109
2017-12-04 09:50,13.1,18.119214,21.474624000000002,102
2017-12-04 09:52,13.2,19.461378,23.040482000000004,106
2017-12-04 09:54,13,18.342908,20.803542000000004,103
2017-12-04 09:56,13.1,19.01399,20.356154,106
2017-12-04 09:58,13.1,19.01399,22.145706,106
2017-12-04 10:00,13.4,20.132460000000002,22.369400000000002,106
2017-12-04 10:02,13.5,21.474624000000002,23.264176000000003,105
2017-12-04 10:04,13.4,19.685072,23.48787,105
2017-12-04 10:06,13.2,18.566602000000003,22.816788,105
2017-12-04 10:08,13.6,20.579848,22.593094,106
2017-12-04 10:10,13.9,21.474624000000002,24.830034,109
2017-12-04 10:12,13.8,20.579848,23.040482000000004,101
2017-12-04 10:14,13.7,19.908766000000004,21.474624000000002,101
2017-12-04 10:16,13.8,21.027236000000002,26.395892000000003,99
2017-12-04 10:18,13.7,20.356154,22.593094,101
2017-12-04 10:20,13.9,20.579848,24.830034,101
2017-12-04 10:22,13.6,18.342908,21.698318,104
2017-12-04 10:24,13.2,16.553356,19.685072,109
2017-12-04 10:26,13.4,21.027236000000002,27.961750000000002,107
2017-12-04 10:28,13.8,20.579848,24.606340000000003,107
2017-12-04 10:30,13.7,21.027236000000002,25.277422000000005,107
2017-12-04 10:32,13.6,18.566602000000003,22.145706,104
2017-12-04 10:34,13.7,18.119214,21.25093,108
2017-12-04 10:36,13.6,19.908766000000004,23.48787,109
2017-12-04 10:38,13.9,21.922012000000002,24.830034,106
2017-12-04 10:40,13.9,19.685072,22.593094,107
2017-12-04 10:42,13.7,18.119214,24.606340000000003,110
2017-12-04 10:44,13.9,21.698318,27.961750000000002,108
2017-12-04 10:46,13.5,17.671826000000003,20.356154,108
2017-12-04 10:48,13.7,18.566602000000003,22.593094,116
2017-12-04 10:50,13.9,19.237684,21.027236000000002,108
2017-12-04 10:52,13.8,16.553356,20.356154,111
2017-12-04 10:54,14.2,18.566602000000003,22.369400000000002,110
2017-12-04 10:56,14.3,21.922012000000002,26.619586,108
2017-12-04 10:58,14.1,18.790296,23.040482000000004,109
2017-12-04 11:00,13.7,19.01399,21.922012000000002,106
2017-12-04 11:02,13.8,19.461378,26.172198,110
2017-12-04 11:04,14,19.908766000000004,25.277422000000005,104
2017-12-04 11:06,13.9,21.922012000000002,25.501116000000003,106
2017-12-04 11:08,14.3,22.593094,26.395892000000003,109
2017-12-04 11:10,14,17.89552,21.474624000000002,108
2017-12-04 11:12,13.8,20.803542000000004,26.172198,105
2017-12-04 11:14,14,21.25093,23.48787,110
2017-12-04 11:16,13.9,21.25093,25.277422000000005,109
2017-12-04 11:18,13.9,22.593094,26.395892000000003,112
2017-12-04 11:20,13.7,22.593094,26.172198,110
2017-12-04 11:22,13.9,26.619586,32.883018,113
2017-12-04 11:24,14.4,27.290668,30.422384,116
2017-12-04 11:26,14.1,23.935258,29.08022,106
2017-12-04 11:28,14.1,26.84328,34.001488,106
2017-12-04 11:30,14.2,29.303914000000002,34.448876000000006,108
2017-12-04 11:32,14.4,29.08022,34.448876000000006,113
2017-12-04 11:34,14.3,24.158952000000003,29.974996000000004,108
2017-12-04 11:36,13.7,21.698318,27.514362000000002,112
2017-12-04 11:38,14,25.053728,28.856526000000002,111
2017-12-04 11:40,14,24.606340000000003,28.632832000000004,106
2017-12-04 11:42,14.1,22.816788,26.395892000000003,106
2017-12-04 11:44,14,21.474624000000002,26.172198,105
2017-12-04 11:46,13.7,21.25093,24.382646,106
2017-12-04 11:48,13.8,20.132460000000002,23.935258,107
2017-12-04 11:50,13.5,19.237684,22.816788,108
2017-12-04 11:52,13.6,20.132460000000002,24.606340000000003,105
2017-12-04 11:54,13.5,20.132460000000002,23.935258,104
2017-12-04 11:56,13.7,23.264176000000003,26.619586,103
2017-12-04 11:58,13.8,24.830034,32.211936,103
2017-12-04 12:00,14.1,25.501116000000003,30.646078,103
2017-12-04 12:02,14.2,23.711564,29.974996000000004,108
2017-12-04 12:04,14.2,24.382646,29.974996000000004,110
2017-12-04 12:06,13.8,21.25093,24.830034,103
2017-12-04 12:08,13.9,26.172198,31.988242000000003,108
2017-12-04 12:10,13.9,23.264176000000003,27.066974000000002,108
2017-12-04 12:12,14.1,22.369400000000002,25.948504,107
2017-12-04 12:14,13.7,21.474624000000002,30.198690000000003,108
2017-12-04 12:16,14.1,25.053728,29.527608,108
2017-12-04 12:18,14.1,23.040482000000004,26.619586,106
2017-12-04 12:20,14.3,22.816788,27.290668,109
2017-12-04 12:22,13.7,18.342908,19.908766000000004,107
2017-12-04 12:24,13.7,20.803542000000004,26.84328,107
2017-12-04 12:26,14.3,23.48787,27.514362000000002,112
2017-12-04 12:28,14.4,22.369400000000002,26.172198,106
2017-12-04 12:30,14.3,21.474624000000002,25.053728,109
2017-12-04 12:32,14.3,22.145706,24.830034,105
2017-12-04 12:34,14,20.356154,23.48787,107
2017-12-04 12:36,14.1,20.132460000000002,23.040482000000004,106
2017-12-04 12:38,14.2,22.145706,25.053728,109
2017-12-04 12:40,14.5,21.474624000000002,27.961750000000002,110
2017-12-04 12:42,14,17.89552,21.25093,105
2017-12-04 12:44,14,19.908766000000004,23.040482000000004,110
2017-12-04 12:46,14.1,21.25093,23.935258,109
2017-12-04 12:48,14.4,21.698318,25.501116000000003,105
2017-12-04 12:50,14.4,23.711564,27.738056000000004,110
2017-12-04 12:52,14.2,19.237684,21.25093,105
2017-12-04 12:54,14.3,21.25093,26.84328,104
2017-12-04 12:56,14.1,19.908766000000004,25.501116000000003,104
2017-12-04 12:58,14.3,21.25093,25.948504,102
2017-12-04 13:00,14.4,21.25093,23.935258,107
2017-12-04 13:02,14.2,20.803542000000004,22.816788,104
2017-12-04 13:04,14.6,22.369400000000002,26.619586,106
2017-12-04 13:06,14.3,20.132460000000002,23.48787,108
2017-12-04 13:08,14.6,22.145706,26.172198,100
2017-12-04 13:10,14.4,18.119214,23.711564,101
2017-12-04 13:12,13.8,15.882274,21.474624000000002,103
2017-12-04 13:14,14.1,19.237684,23.040482000000004,98
2017-12-04 13:16,14.2,19.908766000000004,22.816788,106
2017-12-04 13:18,14.2,21.027236000000002,23.48787,107
2017-12-04 13:20,14.1,18.119214,20.579848,107
2017-12-04 13:22,14.2,19.237684,23.48787,104
2017-12-04 13:24,14.3,16.777050000000003,22.145706,102
2017-12-04 13:26,14.6,20.132460000000002,24.382646,100
2017-12-04 13:28,14.6,18.342908,20.803542000000004,102
2017-12-04 13:30,14.4,17.89552,19.685072,106
2017-12-04 13:32,14.4,19.237684,24.158952000000003,104
2017-12-04 13:34,14.6,21.027236000000002,25.053728,101
2017-12-04 13:36,14.6,17.89552,19.461378,101
2017-12-04 13:38,14.5,20.132460000000002,23.264176000000003,105
2017-12-04 13:40,14.8,19.908766000000004,23.935258,108
2017-12-04 13:42,14.7,20.579848,24.158952000000003,103
2017-12-04 13:44,14.6,19.685072,23.935258,108
2017-12-04 13:46,14.4,20.579848,23.935258,106
2017-12-04 13:48,14.9,21.027236000000002,24.830034,104
2017-12-04 13:50,15.1,22.593094,27.514362000000002,109
2017-12-04 13:52,14.7,20.356154,22.145706,106
2017-12-04 13:54,14.7,19.685072,23.48787,111
2017-12-04 13:56,14.9,21.027236000000002,24.830034,105
2017-12-04 13:58,14.7,19.237684,21.474624000000002,105
2017-12-04 14:00,14.4,20.356154,23.711564,106
2017-12-04 14:02,14.5,20.132460000000002,22.369400000000002,108
2017-12-04 14:04,14.7,21.922012000000002,28.409138,108
2017-12-04 14:06,15,20.579848,24.606340000000003,107
2017-12-04 14:08,15.2,21.25093,24.606340000000003,111
2017-12-04 14:10,14.9,21.474624000000002,24.830034,111
2017-12-04 14:12,15.4,23.48787,26.619586,111
2017-12-04 14:14,15.4,20.579848,23.935258,109
2017-12-04 14:16,14.9,19.908766000000004,23.040482000000004,108
2017-12-04 14:18,15.5,23.264176000000003,28.185444,110
2017-12-04 14:20,15.6,23.711564,27.514362000000002,110
2017-12-04 14:22,15.2,19.237684,21.474624000000002,107
2017-12-04 14:24,15,21.25093,29.974996000000004,109
2017-12-04 14:26,15.5,23.264176000000003,27.066974000000002,108
2017-12-04 14:28,15.2,18.566602000000003,22.145706,108
2017-12-04 14:30,15,20.356154,24.830034,108
2017-12-04 14:32,15.1,21.474624000000002,24.606340000000003,105
2017-12-04 14:34,15.4,22.816788,25.501116000000003,107
2017-12-04 14:36,15.1,21.474624000000002,24.158952000000003,105
2017-12-04 14:38,15.2,20.356154,22.816788,108
2017-12-04 14:40,15.1,22.369400000000002,27.290668,106
2017-12-04 14:42,15.3,21.474624000000002,23.935258,106
2017-12-04 14:44,15.1,21.474624000000002,25.277422000000005,104
2017-12-04 14:46,15.1,20.132460000000002,22.816788,101
2017-12-04 14:48,15.1,20.132460000000002,22.816788,105
2017-12-04 14:50,15.4,21.25093,25.053728,103
2017-12-04 14:52,15.4,22.369400000000002,26.619586,109
2017-12-04 14:54,15.3,23.040482000000004,26.84328,111
2017-12-04 14:56,15.5,22.593094,27.066974000000002,109
2017-12-04 14:58,15.4,21.25093,25.277422000000005,109
2017-12-04 15:00,15.3,21.474624000000002,23.711564,106
2017-12-04 15:02,15.3,20.356154,23.48787,107
2017-12-04 15:04,15,18.342908,20.132460000000002,106
2017-12-04 15:06,15.5,23.040482000000004,27.514362000000002,111
2017-12-04 15:08,15.8,19.461378,23.711564,107
2017-12-04 15:10,15.6,21.027236000000002,27.290668,109
2017-12-04 15:12,15.6,19.01399,23.040482000000004,107
2017-12-04 15:14,15.8,21.25093,24.606340000000003,111
2017-12-04 15:16,15.4,19.01399,21.027236000000002,107
2017-12-04 15:18,15.4,20.132460000000002,23.711564,106
2017-12-04 15:20,15.2,19.237684,23.48787,105
2017-12-04 15:22,15.7,24.606340000000003,28.632832000000004,105
2017-12-04 15:24,15.8,22.369400000000002,27.738056000000004,105
2017-12-04 15:26,15.6,22.593094,25.501116000000003,104
2017-12-04 15:28,15.8,22.369400000000002,23.935258,103
2017-12-04 15:30,15.6,21.698318,23.935258,106
2017-12-04 15:32,15.5,22.145706,25.948504,108
2017-12-04 15:34,15.7,22.593094,26.172198,107
2017-12-04 15:36,15.9,23.264176000000003,28.185444,114
2017-12-04 15:38,15.6,20.803542000000004,25.053728,108
2017-12-04 15:40,15.5,20.579848,24.606340000000003,106
2017-12-04 15:42,15.8,23.935258,28.856526000000002,105
2017-12-04 15:44,16.2,25.277422000000005,30.869772000000005,111
2017-12-04 15:46,16,23.711564,28.856526000000002,108
2017-12-04 15:48,15.9,23.264176000000003,26.84328,110
2017-12-04 15:50,16,22.145706,26.172198,112
2017-12-04 15:52,15.7,20.803542000000004,25.277422000000005,107
2017-12-04 15:54,15.7,20.132460000000002,23.264176000000003,109
2017-12-04 15:56,15.5,20.356154,22.369400000000002,107
2017-12-04 15:58,15.5,19.908766000000004,22.145706,104
2017-12-04 16:00,15.9,19.461378,22.816788,99
2017-12-04 16:02,15.5,18.342908,20.803542000000004,102
2017-12-04 16:04,15.6,19.908766000000004,23.264176000000003,106
2017-12-04 16:06,15.6,22.593094,27.961750000000002,106
2017-12-04 16:08,16,25.053728,28.409138,108
2017-12-04 16:10,16.1,26.395892000000003,35.119958000000004,108
2017-12-04 16:12,15.7,21.25093,25.948504,111
2017-12-04 16:14,15.7,23.48787,26.619586,107
2017-12-04 16:16,16.2,23.935258,27.066974000000002,112
2017-12-04 16:18,16.1,21.027236000000002,23.935258,112
2017-12-04 16:20,15.9,22.145706,27.514362000000002,109
2017-12-04 16:22,16.2,25.501116000000003,30.198690000000003,110
2017-12-04 16:24,16.4,26.619586,34.001488,112
2017-12-04 16:26,16,24.158952000000003,29.303914000000002,110
2017-12-04 16:28,16,23.48787,28.409138,111
2017-12-04 16:30,16,23.711564,27.290668,110
2017-12-04 16:32,15.9,22.369400000000002,24.830034,111
2017-12-04 16:34,15.7,22.816788,26.172198,112
2017-12-04 16:36,16,23.040482000000004,27.514362000000002,111
2017-12-04 16:38,15.9,24.158952000000003,28.856526000000002,107
2017-12-04 16:40,15.8,22.369400000000002,25.501116000000003,108
2017-12-04 16:42,15.9,20.803542000000004,23.935258,112
2017-12-04 16:44,15.9,21.922012000000002,25.72481,110
2017-12-04 16:46,15.9,20.132460000000002,23.264176000000003,109
2017-12-04 16:48,15.6,17.671826000000003,20.356154,110
2017-12-04 16:50,15.7,23.040482000000004,29.974996000000004,111
2017-12-04 16:52,16,22.816788,25.72481,108
2017-12-04 16:54,15.9,21.698318,25.501116000000003,106
2017-12-04 16:56,15.5,20.132460000000002,22.593094,106
2017-12-04 16:58,15.6,19.685072,23.040482000000004,107
2017-12-04 17:00,15.5,19.01399,23.48787,110
2017-12-04 17:02,15.8,20.579848,25.501116000000003,108
2017-12-04 17:04,16.3,25.277422000000005,28.856526000000002,113
2017-12-04 17:06,16.5,25.277422000000005,29.08022,113
2017-12-04 17:08,16.7,25.277422000000005,29.527608,114
2017-12-04 17:10,16.3,20.579848,25.277422000000005,114
2017-12-04 17:12,16.1,19.908766000000004,23.935258,111
2017-12-04 17:14,16,22.369400000000002,25.948504,113
2017-12-04 17:16,15.9,20.579848,25.277422000000005,109
2017-12-04 17:18,16.1,25.277422000000005,33.330406,109
2017-12-04 17:20,16.3,24.606340000000003,28.632832000000004,109
2017-12-04 17:22,15.8,22.593094,25.948504,113
2017-12-04 17:24,16.2,25.948504,30.198690000000003,113
2017-12-04 17:26,16.2,24.158952000000003,25.501116000000003,109
2017-12-04 17:28,16.3,25.72481,32.43563,111
2017-12-04 17:30,16.5,26.395892000000003,32.211936,111
2017-12-04 17:32,16.6,26.619586,30.869772000000005,109
2017-12-04 17:34,16.6,29.527608,36.238428,111
2017-12-04 17:36,16.1,23.040482000000004,29.08022,109
2017-12-04 17:38,16,25.948504,30.198690000000003,107
2017-12-04 17:40,16.3,27.290668,32.43563,106
2017-12-04 17:42,15.9,25.053728,28.856526000000002,107
2017-12-04 17:44,15.8,24.382646,31.540854000000003,106
2017-12-04 17:46,15.8,23.48787,27.290668,103
2017-12-04 17:48,15.8,23.48787,30.198690000000003,104
2017-12-04 17:50,15.8,23.711564,27.961750000000002,106
2017-12-04 17:52,16,25.501116000000003,29.303914000000002,103
2017-12-04 17:54,16,23.48787,25.72481,105
2017-12-04 17:56,15.9,23.264176000000003,25.948504,102
2017-12-04 17:58,15.6,23.48787,26.84328,106
2017-12-04 18:00,15.8,23.711564,28.409138,110
2017-12-04 18:02,16,23.264176000000003,27.514362000000002,105
2017-12-04 18:04,15.8,23.48787,28.409138,108
2017-12-04 18:06,15.8,23.040482000000004,29.08022,109
2017-12-04 18:08,15.9,22.816788,27.514362000000002,108
2017-12-04 18:10,16.2,23.935258,27.738056000000004,107
2017-12-04 18:12,16,24.606340000000003,33.330406,104
2017-12-04 18:14,15.8,24.606340000000003,27.961750000000002,104
2017-12-04 18:16,16,25.72481,28.632832000000004,105
2017-12-04 18:18,16,27.066974000000002,30.422384,103
2017-12-04 18:20,15.8,24.158952000000003,28.856526000000002,105
2017-12-04 18:22,15.3,20.579848,24.830034,105
2017-12-04 18:24,15.8,26.619586,32.883018,103
2017-12-04 18:26,15.7,23.935258,25.501116000000003,107
2017-12-04 18:28,15.6,24.382646,31.988242000000003,108
2017-12-04 18:30,15.8,26.172198,28.632832000000004,101
2017-12-04 18:32,15.6,23.48787,27.514362000000002,103
2017-12-04 18:34,15.8,26.619586,30.198690000000003,103
2017-12-04 18:36,15.8,23.48787,26.172198,102
2017-12-04 18:38,15.6,24.606340000000003,31.093466000000003,102
2017-12-04 18:40,15.8,25.948504,30.646078,101
2017-12-04 18:42,15.8,26.172198,30.198690000000003,104
2017-12-04 18:44,15.8,27.066974000000002,31.093466000000003,105
2017-12-04 18:46,15.4,23.48787,27.514362000000002,103
2017-12-04 18:48,15.8,27.514362000000002,31.764548,104
2017-12-04 18:50,15.8,26.84328,29.974996000000004,102
2017-12-04 18:52,15.8,25.72481,28.632832000000004,103
2017-12-04 18:54,15.4,24.830034,29.751302000000003,106
2017-12-04 18:56,15.5,24.606340000000003,31.540854000000003,109
2017-12-04 18:58,15.6,23.711564,27.514362000000002,106
2017-12-04 19:00,15.8,25.501116000000003,29.751302000000003,109
2017-12-04 19:02,15.9,27.514362000000002,32.211936,107
2017-12-04 19:04,16.1,25.72481,30.869772000000005,104
2017-12-04 19:06,15.7,28.632832000000004,34.448876000000006,108
2017-12-04 19:08,15.9,27.961750000000002,31.764548,103
2017-12-04 19:10,15.8,25.72481,30.646078,104
2017-12-04 19:12,15.6,23.935258,28.185444,105
2017-12-04 19:14,15.6,24.158952000000003,26.619586,107
2017-12-04 19:16,15.5,23.711564,29.303914000000002,108
2017-12-04 19:18,15.6,27.066974000000002,33.777794,108
2017-12-04 19:20,15.3,23.264176000000003,26.84328,107
2017-12-04 19:22,15.4,26.395892000000003,33.554100000000005,109
2017-12-04 19:24,15.6,27.290668,31.764548,107
2017-12-04 19:26,16.1,28.409138,31.31716,109
2017-12-04 19:28,15.9,27.290668,29.751302000000003,105
2017-12-04 19:30,15.9,26.619586,30.422384,109
2017-12-04 19:32,15.7,24.158952000000003,27.514362000000002,106
2017-12-04 19:34,15.4,23.264176000000003,26.84328,104
2017-12-04 19:36,15.6,24.830034,28.409138,106
2017-12-04 19:38,15.9,28.409138,39.14645,104
2017-12-04 19:40,15.9,27.961750000000002,32.883018,107
2017-12-04 19:42,15.7,27.961750000000002,37.133204000000006,107
2017-12-04 19:44,15.7,27.961750000000002,34.896264,109
2017-12-04 19:46,15.6,25.501116000000003,34.896264,104
2017-12-04 19:48,15.8,27.066974000000002,36.462122,104
2017-12-04 19:50,16,29.527608,34.67257,102
2017-12-04 19:52,16,26.84328,30.869772000000005,101
2017-12-04 19:54,15.5,24.830034,27.290668,103
2017-12-04 19:56,15.3,24.382646,25.948504,103
2017-12-04 19:58,15.4,26.619586,31.31716,106
2017-12-04 20:00,15.5,26.172198,33.554100000000005,106
2017-12-04 20:02,15.6,27.066974000000002,32.659324,102
2017-12-04 20:04,15.3,26.619586,30.198690000000003,106
2017-12-04 20:06,15.3,26.619586,30.422384,104
2017-12-04 20:08,15.5,28.409138,36.685816,110
2017-12-04 20:10,15.6,27.514362000000002,31.093466000000003,111
2017-12-04 20:12,15.5,28.409138,32.883018,110
2017-12-04 20:14,15.3,28.185444,31.988242000000003,107
2017-12-04 20:16,15,27.290668,32.43563,106
2017-12-04 20:18,15.2,28.632832000000004,36.014734000000004,110
2017-12-04 20:20,15.4,26.172198,31.540854000000003,104
2017-12-04 20:22,15.1,25.501116000000003,29.974996000000004,105
2017-12-04 20:24,15.1,26.619586,31.31716,107
2017-12-04 20:26,14.8,24.606340000000003,28.632832000000004,106
2017-12-04 20:28,15,25.72481,31.764548,106
2017-12-04 20:30,15.2,26.172198,31.988242000000003,102
2017-12-04 20:32,15,25.277422000000005,32.43563,105
2017-12-04 20:34,14.9,25.053728,28.632832000000004,107
2017-12-04 20:36,15.2,25.053728,29.08022,111
2017-12-04 20:38,14.8,23.48787,27.514362000000002,112
2017-12-04 20:40,14.8,23.48787,28.185444,110
2017-12-04 20:42,15.1,24.830034,31.540854000000003,111
2017-12-04 20:44,15.3,26.84328,31.093466000000003,111
2017-12-04 20:46,15.2,25.72481,30.869772000000005,109
2017-12-04 20:48,15.6,27.738056000000004,32.211936,111
2017-12-04 20:50,15.5,26.619586,29.974996000000004,104
2017-12-04 20:52,15.4,25.053728,28.632832000000004,109
2017-12-04 20:54,15.2,25.501116000000003,32.659324,111
2017-12-04 20:56,15.6,24.382646,27.961750000000002,107
2017-12-04 20:58,15.6,25.72481,29.303914000000002,104
2017-12-04 21:00,15.4,25.053728,29.08022,106
2017-12-04 21:02,15.5,27.290668,33.330406,104
2017-12-04 21:04,15.2,22.593094,25.053728,105
2017-12-04 21:06,14.9,25.053728,30.869772000000005,107
2017-12-04 21:08,15.1,27.066974000000002,29.974996000000004,111
2017-12-04 21:10,15.2,24.606340000000003,29.303914000000002,110
2017-12-04 21:12,15.4,27.961750000000002,31.764548,109
2017-12-04 21:14,15.7,28.856526000000002,33.777794,108
2017-12-04 21:16,15.8,25.72481,32.659324,108
2017-12-04 21:18,15.6,28.856526000000002,31.988242000000003,111
2017-12-04 21:20,15.5,21.698318,27.066974000000002,103
2017-12-04 21:22,15.3,24.606340000000003,32.211936,109
2017-12-04 21:24,15.6,23.935258,29.751302000000003,109
2017-12-04 21:26,15.2,22.816788,26.619586,107
2017-12-04 21:28,15.5,29.527608,37.133204000000006,108
2017-12-04 21:30,15.5,25.501116000000003,28.409138,109
2017-12-04 21:32,15.6,27.514362000000002,38.02798,111
2017-12-04 21:34,15.9,26.172198,34.001488,112
2017-12-04 21:36,15.9,29.751302000000003,34.001488,111
2017-12-04 21:38,15.9,29.974996000000004,38.25167400000001,115
2017-12-04 21:40,16,34.448876000000006,39.593838,116
2017-12-04 21:42,16.5,33.330406,38.25167400000001,118
2017-12-04 21:44,16.1,29.08022,34.448876000000006,114
2017-12-04 21:46,16,30.198690000000003,35.343652000000006,113
2017-12-04 21:48,15.8,31.093466000000003,34.896264,113
2017-12-04 21:50,16,32.883018,36.462122,112
2017-12-04 21:52,15.6,29.08022,33.777794,110
2017-12-04 21:54,15.6,27.961750000000002,33.106712,111
2017-12-04 21:56,15.7,33.554100000000005,42.054472000000004,111
2017-12-04 21:58,15.8,34.225182000000004,39.14645,109
2017-12-04 22:00,15.7,30.869772000000005,36.909510000000004,114
2017-12-04 22:02,15.5,27.290668,33.330406,111
2017-12-04 22:04,15.7,32.883018,44.96249400000001,119
2017-12-04 22:06,15.6,26.395892000000003,33.777794,106
2017-12-04 22:08,15.1,26.395892000000003,33.554100000000005,111
2017-12-04 22:10,15.4,29.08022,35.79104,109
2017-12-04 22:12,15.4,27.961750000000002,34.001488,113
2017-12-04 22:14,15.3,34.225182000000004,41.159696,117
2017-12-04 22:16,15,25.72481,31.31716,113
2017-12-04 22:18,14.7,26.619586,30.646078,115
2017-12-04 22:20,14.9,29.08022,36.462122,110
2017-12-04 22:22,15.2,28.856526000000002,34.448876000000006,118
2017-12-04 22:24,15,27.066974000000002,34.001488,131
2017-12-04 22:26,14.7,25.72481,30.422384,138
2017-12-04 22:28,15,25.501116000000003,29.751302000000003,136
2017-12-04 22:30,14.8,25.277422000000005,30.646078,137
2017-12-04 22:32,14.8,27.961750000000002,34.896264,135
2017-12-04 22:34,14.7,30.422384,36.238428,136
2017-12-04 22:36,14.8,27.961750000000002,31.988242000000003,135
2017-12-04 22:38,14.6,24.606340000000003,27.738056000000004,139
2017-12-04 22:40,14.4,26.172198,33.777794,147
2017-12-04 22:42,14.3,33.106712,42.72555400000001,148
2017-12-04 22:44,13.9,30.646078,38.02798,154
2017-12-04 22:46,13.5,34.001488,43.396636,150
2017-12-04 22:48,13.3,31.540854000000003,36.685816,148
2017-12-04 22:50,13.1,25.948504,30.646078,150
2017-12-04 22:52,13.1,30.422384,37.580592,149
2017-12-04 22:54,12.9,25.053728,34.448876000000006,157
2017-12-04 22:56,12.7,30.869772000000005,38.699062000000005,147
2017-12-04 22:58,12.4,29.974996000000004,37.133204000000006,142
2017-12-04 23:00,12.3,33.106712,44.738800000000005,148
2017-12-04 23:02,12.1,30.869772000000005,37.804286,150
2017-12-04 23:04,12,30.198690000000003,38.25167400000001,152
2017-12-04 23:06,11.8,27.961750000000002,32.211936,152
2017-12-04 23:08,11.7,31.764548,35.343652000000006,152
2017-12-04 23:10,11.7,33.106712,37.804286,151
2017-12-04 23:12,11.5,29.527608,34.448876000000006,146
2017-12-04 23:14,11.3,30.646078,38.922756,146
2017-12-04 23:16,11.2,32.211936,38.25167400000001,145
2017-12-04 23:18,11.1,26.84328,32.211936,145
2017-12-04 23:20,10.9,25.501116000000003,28.632832000000004,142
2017-12-04 23:22,10.8,32.659324,37.133204000000006,146
2017-12-04 23:24,10.8,31.093466000000003,39.14645,151
2017-12-04 23:26,10.8,30.646078,35.567346,152
2017-12-04 23:28,10.6,33.554100000000005,45.633576,143
2017-12-04 23:30,10.3,29.303914000000002,36.238428,162
2017-12-04 23:32,10,33.106712,39.370144,161
2017-12-04 23:34,9.8,26.395892000000003,38.475368,150
2017-12-04 23:36,9.5,31.764548,41.383390000000006,149
2017-12-04 23:38,9.3,27.290668,33.777794,152
2017-12-04 23:40,9.2,29.303914000000002,36.462122,167
2017-12-04 23:42,8.8,37.133204000000006,47.64682200000001,168
2017-12-04 23:44,8.6,31.988242000000003,37.133204000000006,159
2017-12-04 23:46,8.4,29.303914000000002,42.054472000000004,164
2017-12-04 23:48,8.3,32.43563,41.159696,165
2017-12-04 23:50,8.2,34.67257,47.870516,161
2017-12-04 23:52,8.1,33.554100000000005,43.62033,165
2017-12-04 23:54,8,37.580592,48.988986,173
2017-12-04 23:56,7.9,27.290668,31.764548,174
2017-12-04 23:58,7.8,28.185444,37.804286,169
2017-12-05 00:00,7.8,32.211936,38.699062000000005,157
2017-12-05 00:02,7.8,25.501116000000003,33.554100000000005,161
2017-12-05 00:04,7.7,26.84328,34.67257,160
2017-12-05 00:06,7.7,25.501116000000003,35.343652000000006,157
2017-12-05 00:08,7.7,25.277422000000005,28.409138,163
2017-12-05 00:10,7.7,25.72481,30.422384,160
2017-12-05 00:12,7.6,24.606340000000003,35.119958000000004,154
2017-12-05 00:14,7.5,27.738056000000004,34.225182000000004,152
2017-12-05 00:16,7.4,25.948504,31.764548,151
2017-12-05 00:18,7.3,28.632832000000004,39.593838,158
2017-12-05 00:20,7.2,32.211936,38.922756,156
2017-12-05 00:22,7.1,29.974996000000004,39.14645,154
2017-12-05 00:24,7,32.659324,39.593838,150
2017-12-05 00:26,7,30.646078,47.870516,164
2017-12-05 00:28,7,36.909510000000004,51.44962,168
2017-12-05 00:30,6.9,31.540854000000003,44.96249400000001,165
2017-12-05 00:32,6.9,29.527608,38.02798,158
2017-12-05 00:34,6.9,33.777794,40.264920000000004,156
2017-12-05 00:36,6.8,27.290668,36.685816,159
2017-12-05 00:38,6.7,33.777794,46.752046,160
2017-12-05 00:40,6.7,35.119958000000004,48.094210000000004,162
2017-12-05 00:42,6.5,34.67257,47.423128,148
2017-12-05 00:44,6.4,33.777794,42.278166,153
2017-12-05 00:46,6.4,34.001488,42.50186,149
2017-12-05 00:48,6.4,22.145706,27.066974000000002,163
2017-12-05 00:50,6.4,25.72481,35.79104,157
2017-12-05 00:52,6.3,31.093466000000003,36.685816,159
2017-12-05 00:54,6.2,33.106712,44.515106,161
2017-12-05 00:56,6.2,34.896264,48.988986,159
2017-12-05 00:58,6.1,28.185444,38.699062000000005,172
2017-12-05 01:00,6,25.053728,31.988242000000003,167
2017-12-05 01:02,5.9,35.343652000000006,45.85727,160
2017-12-05 01:04,5.8,30.646078,41.830778,160
2017-12-05 01:06,5.8,24.606340000000003,30.646078,164
2017-12-05 01:08,5.7,29.751302000000003,39.81753200000001,165
2017-12-05 01:10,5.5,37.580592,47.870516,169
2017-12-05 01:12,5.4,26.619586,31.093466000000003,170
2017-12-05 01:14,5.3,31.988242000000003,45.186188,169
2017-12-05 01:16,5.3,23.935258,35.343652000000006,168
2017-12-05 01:18,5.3,27.066974000000002,38.475368,167
2017-12-05 01:20,5.3,27.961750000000002,31.764548,178
2017-12-05 01:22,5.2,28.632832000000004,40.264920000000004,168
2017-12-05 01:24,5.2,25.501116000000003,32.883018,164
2017-12-05 01:26,5.1,28.632832000000004,41.60708400000001,171
2017-12-05 01:28,5,35.79104,50.107456,174
2017-12-05 01:30,5,35.343652000000006,41.830778,164
2017-12-05 01:32,4.9,33.554100000000005,44.291412,165
2017-12-05 01:34,4.9,27.961750000000002,35.119958000000004,162
2017-12-05 01:36,4.9,32.43563,44.067718,162
2017-12-05 01:38,4.9,34.896264,44.738800000000005,166
2017-12-05 01:40,4.9,29.974996000000004,40.264920000000004,165
2017-12-05 01:42,4.9,27.066974000000002,36.238428,166
2017-12-05 01:44,4.9,23.48787,29.08022,158
2017-12-05 01:46,4.9,33.106712,41.159696,163
2017-12-05 01:48,4.9,30.422384,37.356898,161
2017-12-05 01:50,4.9,29.974996000000004,41.60708400000001,165
2017-12-05 01:52,4.9,31.988242000000003,38.922756,165
2017-12-05 01:54,4.9,23.711564,29.751302000000003,162
2017-12-05 01:56,4.9,29.08022,36.462122,158
2017-12-05 01:58,4.9,29.303914000000002,35.119958000000004,168
2017-12-05 02:00,4.9,30.869772000000005,37.804286,171
2017-12-05 02:02,4.9,25.277422000000005,32.883018,170
2017-12-05 02:04,4.9,28.632832000000004,34.896264,158
2017-12-05 02:06,4.9,24.606340000000003,33.330406,163
2017-12-05 02:08,4.9,27.961750000000002,43.62033,163
2017-12-05 02:10,4.9,31.540854000000003,43.62033,162
2017-12-05 02:12,4.9,27.514362000000002,39.81753200000001,160
2017-12-05 02:14,4.9,32.43563,43.62033,154
2017-12-05 02:16,4.9,30.869772000000005,41.383390000000006,157
2017-12-05 02:18,4.9,23.935258,29.527608,156
2017-12-05 02:20,4.9,31.31716,40.712308,153
2017-12-05 02:22,4.8,30.869772000000005,38.475368,159
2017-12-05 02:24,4.9,34.225182000000004,53.015478,162
2017-12-05 02:26,4.8,30.646078,42.278166,162
2017-12-05 02:28,4.8,32.659324,48.765292,167
2017-12-05 02:30,4.8,32.883018,40.712308,158
2017-12-05 02:32,4.8,27.514362000000002,38.699062000000005,159
2017-12-05 02:34,4.8,30.198690000000003,42.949248000000004,166
2017-12-05 02:36,4.8,29.974996000000004,36.238428,158
2017-12-05 02:38,4.7,28.185444,36.238428,164
2017-12-05 02:40,4.7,28.632832000000004,38.699062000000005,165
2017-12-05 02:42,4.5,37.356898,48.765292,168
2017-12-05 02:44,4.4,32.883018,40.936002,168
2017-12-05 02:46,4.3,35.567346,45.409882,163
2017-12-05 02:48,4.2,31.093466000000003,40.712308,173
2017-12-05 02:50,4,29.751302000000003,37.580592,171
2017-12-05 02:52,3.9,31.31716,38.02798,176
2017-12-05 02:54,3.6,33.554100000000005,45.633576,167
2017-12-05 02:56,3.5,34.225182000000004,46.08096400000001,162
2017-12-05 02:58,3.3,31.988242000000003,43.844024000000005,166
2017-12-05 03:00,3.2,27.066974000000002,34.448876000000006,162
2017-12-05 03:02,3.1,30.422384,39.14645,170
2017-12-05 03:04,3.1,24.382646,32.43563,163
2017-12-05 03:06,3,30.422384,37.580592,169
2017-12-05 03:08,3,35.79104,46.304658,162
2017-12-05 03:10,2.9,31.540854000000003,47.199434000000004,173
2017-12-05 03:12,2.9,29.527608,37.133204000000006,163
2017-12-05 03:14,2.9,30.422384,38.699062000000005,169
2017-12-05 03:16,2.8,31.093466000000003,38.475368,175
2017-12-05 03:18,2.9,23.711564,31.093466000000003,173
2017-12-05 03:20,2.8,22.145706,27.738056000000004,175
2017-12-05 03:22,2.8,28.185444,36.462122,162
2017-12-05 03:24,2.8,25.72481,32.43563,163
2017-12-05 03:26,2.8,22.816788,29.974996000000004,160
2017-12-05 03:28,2.8,27.961750000000002,39.81753200000001,167
2017-12-05 03:30,2.8,23.935258,30.198690000000003,169
2017-12-05 03:32,2.8,19.461378,26.172198,170
2017-12-05 03:34,2.8,22.816788,30.422384,173
2017-12-05 03:36,2.8,19.461378,27.514362000000002,164
2017-12-05 03:38,2.8,24.382646,30.422384,162
2017-12-05 03:40,2.8,25.277422000000005,30.422384,170
2017-12-05 03:42,2.8,21.922012000000002,29.08022,161
2017-12-05 03:44,2.9,22.369400000000002,28.632832000000004,177
2017-12-05 03:46,2.8,22.369400000000002,31.31716,171
2017-12-05 03:48,2.8,23.48787,30.646078,171
2017-12-05 03:50,2.8,19.01399,24.606340000000003,169
2017-12-05 03:52,2.9,19.01399,27.738056000000004,163
2017-12-05 03:54,2.8,26.172198,34.225182000000004,164
2017-12-05 03:56,2.8,25.72481,37.133204000000006,168
2017-12-05 03:58,2.8,22.593094,33.330406,161
2017-12-05 04:00,2.8,18.790296,27.066974000000002,166
2017-12-05 04:02,2.8,22.593094,27.514362000000002,162
2017-12-05 04:04,2.8,21.25093,27.290668,162
2017-12-05 04:06,2.8,25.948504,31.31716,156
2017-12-05 04:08,2.9,25.501116000000003,37.133204000000006,156
2017-12-05 04:10,2.8,25.277422000000005,29.751302000000003,154
2017-12-05 04:12,2.8,25.72481,32.883018,166
2017-12-05 04:14,2.7,24.382646,31.31716,163
2017-12-05 04:16,2.7,24.158952000000003,29.974996000000004,161
2017-12-05 04:18,2.7,21.474624000000002,27.066974000000002,158
2017-12-05 04:20,2.7,21.698318,28.185444,160
2017-12-05 04:22,2.6,30.198690000000003,37.133204000000006,162
2017-12-05 04:24,2.6,25.948504,31.093466000000003,159
2017-12-05 04:26,2.6,23.264176000000003,29.527608,169
2017-12-05 04:28,2.6,25.948504,35.567346,159
2017-12-05 04:30,2.5,27.514362000000002,34.225182000000004,166
2017-12-05 04:32,2.5,19.908766000000004,26.619586,168
2017-12-05 04:34,2.5,28.409138,38.475368,166
2017-12-05 04:36,2.5,27.738056000000004,33.777794,160
2017-12-05 04:38,2.4,24.606340000000003,31.988242000000003,165
2017-12-05 04:40,2.4,27.514362000000002,30.869772000000005,163
2017-12-05 04:42,2.3,23.48787,29.527608,161
2017-12-05 04:44,2.3,26.84328,33.554100000000005,169
2017-12-05 04:46,2.3,23.264176000000003,30.198690000000003,169
2017-12-05 04:48,2.3,24.158952000000003,34.67257,166
2017-12-05 04:50,2.3,21.027236000000002,27.290668,165
2017-12-05 04:52,2.3,24.158952000000003,30.422384,165
2017-12-05 04:54,2.3,23.264176000000003,30.646078,158
2017-12-05 04:56,2.3,20.356154,25.053728,175
2017-12-05 04:58,2.4,17.671826000000003,23.040482000000004,161
2017-12-05 05:00,2.4,22.816788,27.961750000000002,159
2017-12-05 05:02,2.4,19.01399,29.974996000000004,163
2017-12-05 05:04,2.4,16.777050000000003,22.369400000000002,165
2017-12-05 05:06,2.3,25.72481,34.225182000000004,179
2017-12-05 05:08,2.2,25.277422000000005,31.540854000000003,172
2017-12-05 05:10,2.2,21.027236000000002,26.84328,163
2017-12-05 05:12,2.2,23.48787,27.066974000000002,161
2017-12-05 05:14,2.1,21.922012000000002,26.395892000000003,163
2017-12-05 05:16,2.1,19.461378,24.158952000000003,167
2017-12-05 05:18,2.1,29.08022,40.936002,163
2017-12-05 05:20,2,27.961750000000002,38.25167400000001,171
2017-12-05 05:22,2,21.027236000000002,27.514362000000002,161
2017-12-05 05:24,2,22.145706,27.290668,159
2017-12-05 05:26,2,24.830034,29.974996000000004,159
2017-12-05 05:28,1.9,21.698318,29.303914000000002,158
2017-12-05 05:30,1.9,22.593094,32.211936,158
2017-12-05 05:32,2,23.935258,29.751302000000003,161
2017-12-05 05:34,2.1,22.145706,27.961750000000002,156
2017-12-05 05:36,2,20.132460000000002,25.053728,164
2017-12-05 05:38,2,23.935258,29.527608,165
2017-12-05 05:40,2,19.908766000000004,27.290668,164
2017-12-05 05:42,2,24.382646,33.330406,160
2017-12-05 05:44,2,23.935258,34.001488,162
2017-12-05 05:46,2,19.01399,23.935258,161
2017-12-05 05:48,2,18.566602000000003,23.48787,171
2017-12-05 05:50,2,17.224438000000003,22.145706,163
2017-12-05 05:52,2,21.922012000000002,28.409138,163
2017-12-05 05:54,1.9,24.606340000000003,33.554100000000005,170
2017-12-05 05:56,1.9,19.685072,23.48787,162
2017-12-05 05:58,2,19.908766000000004,28.856526000000002,157
2017-12-05 06:00,2,23.711564,29.751302000000003,160
2017-12-05 06:02,1.9,24.606340000000003,33.106712,167
2017-12-05 06:04,1.9,23.48787,28.632832000000004,165
2017-12-05 06:06,1.8,25.501116000000003,34.67257,166
2017-12-05 06:08,1.8,27.514362000000002,37.580592,160
2017-12-05 06:10,1.8,28.409138,37.580592,167
2017-12-05 06:12,1.8,22.816788,30.422384,172
2017-12-05 06:14,1.9,21.922012000000002,26.84328,154
2017-12-05 06:16,1.9,21.027236000000002,26.172198,154
2017-12-05 06:18,1.8,20.579848,25.501116000000003,162
2017-12-05 06:20,1.8,21.027236000000002,25.501116000000003,159
2017-12-05 06:22,1.8,19.908766000000004,23.264176000000003,160
2017-12-05 06:24,1.7,26.172198,33.777794,162
2017-12-05 06:26,1.5,28.409138,35.79104,148
2017-12-05 06:28,1.4,28.856526000000002,36.462122,148
2017-12-05 06:30,1.2,31.988242000000003,37.356898,144
2017-12-05 06:32,1.1,32.211936,38.25167400000001,144
2017-12-05 06:34,1,32.43563,41.159696,148
2017-12-05 06:36,1,27.961750000000002,38.02798,158
2017-12-05 06:38,1.1,25.948504,34.448876000000006,160
2017-12-05 06:40,0.9,29.303914000000002,36.238428,160
2017-12-05 06:42,0.7,31.540854000000003,39.370144,163
2017-12-05 06:44,0.6,31.31716,37.133204000000006,161
2017-12-05 06:46,0.5,29.751302000000003,34.225182000000004,169
2017-12-05 06:48,0.5,27.514362000000002,34.001488,167
2017-12-05 06:50,0.5,24.606340000000003,36.909510000000004,163
2017-12-05 06:52,0.3,29.303914000000002,38.475368,171
2017-12-05 06:54,0.2,23.935258,31.988242000000003,171
2017-12-05 06:56,0.2,26.172198,35.79104,169
2017-12-05 06:58,0.2,24.382646,31.31716,170
2017-12-05 07:00,0.3,26.395892000000003,33.554100000000005,165
2017-12-05 07:02,0.3,22.593094,31.764548,169
2017-12-05 07:04,0.3,23.264176000000003,28.632832000000004,167
2017-12-05 07:06,0.3,21.922012000000002,29.974996000000004,171
2017-12-05 07:08,0.3,23.040482000000004,29.527608,166
2017-12-05 07:10,0.3,20.803542000000004,24.606340000000003,160
2017-12-05 07:12,0.3,19.01399,23.711564,169
2017-12-05 07:14,0.3,18.342908,22.593094,167
2017-12-05 07:16,0.3,21.25093,26.619586,175
2017-12-05 07:18,0.4,25.053728,32.883018,159
2017-12-05 07:20,0.4,20.579848,27.066974000000002,162
2017-12-05 07:22,0.4,19.237684,26.172198,156
2017-12-05 07:24,0.5,19.908766000000004,27.738056000000004,165
2017-12-05 07:26,0.5,21.922012000000002,29.527608,166
2017-12-05 07:28,0.5,21.25093,24.830034,161
2017-12-05 07:30,0.5,20.579848,25.277422000000005,161
2017-12-05 07:32,0.5,23.935258,28.185444,145
2017-12-05 07:34,0.5,22.816788,27.290668,154
2017-12-05 07:36,0.4,22.145706,27.066974000000002,162
2017-12-05 07:38,0.4,24.830034,30.869772000000005,158
2017-12-05 07:40,0.4,25.948504,38.02798,150
2017-12-05 07:42,0.3,28.856526000000002,37.356898,150
2017-12-05 07:44,0.2,28.185444,33.777794,156
2017-12-05 07:46,0,29.08022,35.119958000000004,162
2017-12-05 07:48,-0.1,26.172198,38.922756,167
2017-12-05 07:50,-0.1,23.935258,32.211936,163
2017-12-05 07:52,-0.2,29.974996000000004,36.014734000000004,158
2017-12-05 07:54,-0.2,31.093466000000003,38.922756,147
2017-12-05 07:56,-0.3,31.764548,38.922756,149
2017-12-05 07:58,-0.3,29.08022,33.777794,145
2017-12-05 08:00,-0.2,23.264176000000003,28.856526000000002,149
2017-12-05 08:02,-0.4,27.961750000000002,33.777794,160
2017-12-05 08:04,-0.4,25.72481,31.31716,156
2017-12-05 08:06,-0.4,21.698318,27.738056000000004,151
2017-12-05 08:08,-0.2,19.685072,26.395892000000003,156
2017-12-05 08:10,-0.1,24.382646,28.632832000000004,148
2017-12-05 08:12,-0.3,25.72481,31.540854000000003,150
2017-12-05 08:14,-0.3,24.158952000000003,30.198690000000003,149
2017-12-05 08:16,-0.3,24.158952000000003,29.303914000000002,155
2017-12-05 08:18,-0.3,22.145706,29.08022,150
2017-12-05 08:20,-0.3,27.066974000000002,36.685816,154
2017-12-05 08:22,-0.5,24.158952000000003,29.751302000000003,164
2017-12-05 08:24,-0.4,21.698318,27.290668,150
2017-12-05 08:26,-0.4,24.158952000000003,30.646078,164
2017-12-05 08:28,-0.5,26.619586,31.31716,154
2017-12-05 08:30,-0.7,26.172198,32.659324,160
2017-12-05 08:32,-0.7,24.382646,30.198690000000003,165
2017-12-05 08:34,-0.8,27.290668,35.119958000000004,169
2017-12-05 08:36,-0.8,24.158952000000003,29.527608,164
2017-12-05 08:38,-0.7,25.501116000000003,30.422384,152
2017-12-05 08:40,-0.7,26.84328,30.646078,155
2017-12-05 08:42,-0.8,28.856526000000002,35.567346,153
2017-12-05 08:44,-0.9,27.514362000000002,32.43563,164
2017-12-05 08:46,-1,28.409138,36.685816,166
2017-12-05 08:48,-1,21.922012000000002,29.527608,163
2017-12-05 08:50,-1.2,28.409138,33.330406,162
2017-12-05 08:52,-1.2,31.31716,41.383390000000006,155
2017-12-05 08:54,-1.1,25.948504,34.001488,158
2017-12-05 08:56,-1.1,22.369400000000002,27.290668,161
2017-12-05 08:58,-1,21.698318,27.961750000000002,165
2017-12-05 09:00,-1.1,22.369400000000002,27.290668,162
2017-12-05 09:02,-1.2,25.501116000000003,33.777794,165
2017-12-05 09:04,-1.1,25.277422000000005,30.869772000000005,159
2017-12-05 09:06,-1.1,25.277422000000005,30.869772000000005,164
2017-12-05 09:08,-1.2,28.409138,32.659324,155
2017-12-05 09:10,-1.2,27.066974000000002,34.001488,159
2017-12-05 09:12,-1.2,25.053728,31.764548,163
2017-12-05 09:14,-1.2,23.935258,32.43563,160
2017-12-05 09:16,-1.3,27.514362000000002,34.67257,160
2017-12-05 09:18,-1.1,24.382646,27.961750000000002,162
2017-12-05 09:20,-1.2,24.606340000000003,30.198690000000003,162
2017-12-05 09:22,-1.2,25.72481,31.540854000000003,154
2017-12-05 09:24,-1.2,26.84328,33.554100000000005,167
2017-12-05 09:26,-1.2,25.72481,29.08022,171
2017-12-05 09:28,-1.2,24.158952000000003,31.988242000000003,159
2017-12-05 09:30,-1.1,27.066974000000002,34.001488,157
2017-12-05 09:32,-1.2,27.066974000000002,34.001488,161
2017-12-05 09:34,-1.3,25.72481,31.093466000000003,168
2017-12-05 09:36,-1.1,27.290668,35.79104,159
2017-12-05 09:38,-1.2,27.066974000000002,31.988242000000003,157
2017-12-05 09:40,-1.2,25.053728,33.106712,159
2017-12-05 09:42,-1.2,23.040482000000004,29.527608,171
2017-12-05 09:44,-1.2,23.935258,31.764548,169
2017-12-05 09:46,-1.2,25.501116000000003,33.554100000000005,175
2017-12-05 09:48,-1.1,21.474624000000002,27.290668,163
2017-12-05 09:50,-1.1,22.593094,29.751302000000003,170
2017-12-05 09:52,-1.1,21.698318,29.751302000000003,158
2017-12-05 09:54,-0.9,23.040482000000004,31.093466000000003,163
2017-12-05 09:56,-0.9,21.474624000000002,26.84328,156
2017-12-05 09:58,-0.9,27.290668,34.67257,163
2017-12-05 10:00,-1,24.158952000000003,28.409138,162
2017-12-05 10:02,-1.1,26.84328,33.330406,164
2017-12-05 10:04,-1,24.606340000000003,28.856526000000002,164
2017-12-05 10:06,-1.1,25.72481,34.67257,163
2017-12-05 10:08,-1.1,21.922012000000002,27.514362000000002,165
2017-12-05 10:10,-1,26.619586,38.02798,160
2017-12-05 10:12,-1.1,25.501116000000003,32.211936,171
2017-12-05 10:14,-1,22.145706,28.409138,157
2017-12-05 10:16,-0.9,26.172198,32.43563,162
2017-12-05 10:18,-0.9,23.040482000000004,33.330406,168
2017-12-05 10:20,-0.7,20.803542000000004,26.619586,169
2017-12-05 10:22,-0.7,17.89552,22.816788,162
2017-12-05 10:24,-0.8,22.369400000000002,35.79104,159
2017-12-05 10:26,-0.8,26.84328,36.238428,161
2017-12-05 10:28,-0.9,24.382646,32.883018,164
2017-12-05 10:30,-0.9,23.040482000000004,31.988242000000003,167
2017-12-05 10:32,-1,27.514362000000002,37.804286,173
2017-12-05 10:34,-0.8,22.369400000000002,32.211936,168
2017-12-05 10:36,-0.9,25.72481,37.580592,168
2017-12-05 10:38,-0.8,21.698318,28.856526000000002,171
2017-12-05 10:40,-0.8,23.040482000000004,30.869772000000005,159
2017-12-05 10:42,-0.9,29.303914000000002,36.238428,159
2017-12-05 10:44,-0.9,27.961750000000002,34.001488,159
2017-12-05 10:46,-0.9,27.290668,33.777794,154
2017-12-05 10:48,-0.9,27.961750000000002,36.909510000000004,168
2017-12-05 10:50,-1,27.290668,35.79104,162
2017-12-05 10:52,-1.1,31.093466000000003,37.580592,164
2017-12-05 10:54,-1,27.961750000000002,38.02798,168
2017-12-05 10:56,-1,22.593094,30.646078,161
2017-12-05 10:58,-0.9,25.72481,32.43563,166
2017-12-05 11:00,-0.8,23.040482000000004,29.751302000000003,174
2017-12-05 11:02,-1,29.527608,43.844024000000005,176
2017-12-05 11:04,-0.9,26.619586,38.25167400000001,184
2017-12-05 11:06,-0.8,18.790296,24.606340000000003,174
2017-12-05 11:08,-0.7,19.685072,25.277422000000005,162
2017-12-05 11:10,-0.8,24.158952000000003,30.646078,163
2017-12-05 11:12,-0.8,23.040482000000004,27.290668,162
2017-12-05 11:14,-0.8,26.172198,29.527608,155
2017-12-05 11:16,-0.5,17.89552,23.935258,166
2017-12-05 11:18,-0.6,21.027236000000002,27.290668,178
2017-12-05 11:20,-0.7,26.172198,35.119958000000004,169
2017-12-05 11:22,-0.7,26.619586,36.909510000000004,163
2017-12-05 11:24,-0.8,25.053728,32.659324,177
2017-12-05 11:26,-0.8,24.830034,34.67257,180
2017-12-05 11:28,-0.8,21.474624000000002,26.84328,178
2017-12-05 11:30,-0.7,19.237684,25.053728,164
2017-12-05 11:32,-0.7,26.172198,33.330406,159
2017-12-05 11:34,-0.7,27.738056000000004,38.02798,183
2017-12-05 11:36,-0.6,19.237684,24.606340000000003,173
2017-12-05 11:38,-0.6,23.264176000000003,31.988242000000003,161
2017-12-05 11:40,-0.7,25.053728,31.988242000000003,165
2017-12-05 11:42,-0.7,23.711564,29.527608,165
2017-12-05 11:44,-0.6,22.369400000000002,29.527608,164
2017-12-05 11:46,-0.6,21.698318,26.172198,160
2017-12-05 11:48,-0.7,28.185444,43.844024000000005,165
2017-12-05 11:50,-0.6,23.264176000000003,29.527608,164
2017-12-05 11:52,-0.6,22.593094,30.869772000000005,166
2017-12-05 11:54,-0.7,24.606340000000003,30.198690000000003,172
2017-12-05 11:56,-0.7,26.395892000000003,33.554100000000005,164
2017-12-05 11:58,-0.8,31.764548,41.60708400000001,166
2017-12-05 12:00,-0.8,24.382646,29.08022,179
2017-12-05 12:02,-0.5,20.132460000000002,27.514362000000002,164
2017-12-05 12:04,-0.6,30.198690000000003,36.462122,154
2017-12-05 12:06,-0.7,22.593094,30.646078,164
2017-12-05 12:08,-0.7,23.264176000000003,29.527608,181
2017-12-05 12:10,-0.7,23.711564,30.869772000000005,168
2017-12-05 12:12,-0.7,21.698318,27.738056000000004,159
2017-12-05 12:14,-0.4,20.356154,33.777794,181
2017-12-05 12:16,-0.5,26.619586,40.712308,175
2017-12-05 12:18,-0.6,27.738056000000004,40.936002,183
2017-12-05 12:20,-0.8,28.185444,36.462122,173
2017-12-05 12:22,-0.9,29.303914000000002,33.554100000000005,179
2017-12-05 12:24,-0.9,28.856526000000002,38.922756,171
2017-12-05 12:26,-0.8,31.31716,40.264920000000004,173
2017-12-05 12:28,-0.8,32.43563,40.264920000000004,176
2017-12-05 12:30,-0.7,30.422384,43.172942000000006,166
2017-12-05 12:32,-0.7,31.093466000000003,39.593838,183
2017-12-05 12:34,-0.7,30.198690000000003,39.81753200000001,185
2017-12-05 12:36,-0.7,24.382646,31.31716,179
2017-12-05 12:38,-0.6,26.172198,31.093466000000003,178
2017-12-05 12:40,-0.7,29.974996000000004,35.119958000000004,182
2017-12-05 12:42,-0.6,22.816788,30.422384,169
2017-12-05 12:44,-0.4,29.751302000000003,41.383390000000006,168
2017-12-05 12:46,-0.6,26.172198,39.81753200000001,178
2017-12-05 12:48,-0.5,23.264176000000003,35.79104,179
2017-12-05 12:50,-0.7,29.974996000000004,37.580592,182
2017-12-05 12:52,-0.7,26.619586,32.883018,176
2017-12-05 12:54,-0.6,23.040482000000004,32.211936,170
2017-12-05 12:56,-0.6,27.961750000000002,38.02798,183
2017-12-05 12:58,-0.7,31.988242000000003,49.883762000000004,183
2017-12-05 13:00,-0.6,35.119958000000004,44.067718,174
2017-12-05 13:02,-0.7,32.659324,42.949248000000004,168
2017-12-05 13:04,-0.6,25.72481,40.041226,170
2017-12-05 13:06,-0.6,29.303914000000002,38.699062000000005,171
2017-12-05 13:08,-0.8,30.422384,43.172942000000006,180
2017-12-05 13:10,-0.7,26.172198,31.093466000000003,180
2017-12-05 13:12,-0.6,28.856526000000002,38.699062000000005,154
2017-12-05 13:14,-0.7,32.211936,41.830778,157
2017-12-05 13:16,-0.6,28.856526000000002,36.909510000000004,163
2017-12-05 13:18,-0.5,22.816788,34.225182000000004,165
2017-12-05 13:20,-0.7,27.290668,33.330406,165
2017-12-05 13:22,-0.7,23.935258,31.31716,168
2017-12-05 13:24,-0.8,29.527608,37.133204000000006,182
2017-12-05 13:26,-0.8,29.527608,33.106712,178
2017-12-05 13:28,-0.7,27.066974000000002,37.133204000000006,165
2017-12-05 13:30,-0.7,27.738056000000004,38.475368,178
2017-12-05 13:32,-0.8,27.738056000000004,36.685816,170
2017-12-05 13:34,-0.8,27.738056000000004,34.67257,182
2017-12-05 13:36,-0.7,26.84328,33.106712,176
2017-12-05 13:38,-0.7,27.290668,36.909510000000004,176
2017-12-05 13:40,-0.6,22.816788,26.395892000000003,178
2017-12-05 13:42,-0.5,21.922012000000002,27.738056000000004,161
2017-12-05 13:44,-0.5,25.277422000000005,42.949248000000004,163
2017-12-05 13:46,-0.8,31.988242000000003,38.02798,167
2017-12-05 13:48,-0.7,31.093466000000003,48.094210000000004,175
2017-12-05 13:50,-0.9,32.43563,39.81753200000001,169
2017-12-05 13:52,-0.9,31.540854000000003,40.264920000000004,172
2017-12-05 13:54,-0.8,31.093466000000003,44.291412,161
2017-12-05 13:56,-0.8,30.198690000000003,44.067718,170
2017-12-05 13:58,-0.8,28.856526000000002,37.804286,165
2017-12-05 14:00,-0.8,27.514362000000002,34.67257,176
2017-12-05 14:02,-0.7,24.606340000000003,30.422384,166
2017-12-05 14:04,-0.7,29.751302000000003,37.356898,168
2017-12-05 14:06,-0.8,26.84328,37.580592,169
2017-12-05 14:08,-0.7,27.290668,35.343652000000006,175
2017-12-05 14:10,-0.7,23.711564,31.988242000000003,182
2017-12-05 14:12,-0.7,22.593094,28.409138,172
2017-12-05 14:14,-0.6,26.619586,37.804286,169
2017-12-05 14:16,-0.5,26.395892000000003,40.488614000000005,178
2017-12-05 14:18,-0.7,21.698318,34.67257,167
2017-12-05 14:20,-0.6,29.08022,38.922756,165
2017-12-05 14:22,-0.7,29.08022,38.25167400000001,169
2017-12-05 14:24,-0.7,23.48787,30.198690000000003,175
2017-12-05 14:26,-0.7,25.501116000000003,30.422384,164
2017-12-05 14:28,-0.7,18.566602000000003,26.395892000000003,173
2017-12-05 14:30,-0.6,24.382646,39.81753200000001,165
2017-12-05 14:32,-0.6,25.053728,34.225182000000004,185
2017-12-05 14:34,-0.6,27.066974000000002,41.159696,175
2017-12-05 14:36,-0.8,27.738056000000004,42.054472000000004,182
2017-12-05 14:38,-0.7,27.066974000000002,34.225182000000004,181
2017-12-05 14:40,-0.8,29.08022,40.041226,186
2017-12-05 14:42,-0.8,30.422384,37.356898,167
2017-12-05 14:44,-0.8,27.961750000000002,36.014734000000004,183
2017-12-05 14:46,-0.8,27.514362000000002,32.659324,182
2017-12-05 14:48,-0.7,21.25093,27.961750000000002,174
2017-12-05 14:50,-0.5,19.685072,27.961750000000002,179
2017-12-05 14:52,-0.6,18.790296,25.501116000000003,167
2017-12-05 14:54,-0.6,25.72481,36.685816,158
2017-12-05 14:56,-0.6,26.395892000000003,40.041226,170
2017-12-05 14:58,-0.8,27.290668,35.567346,165
2017-12-05 15:00,-0.8,31.988242000000003,38.475368,161
2017-12-05 15:02,-0.8,29.08022,41.830778,176
2017-12-05 15:04,-0.7,26.395892000000003,36.238428,165
2017-12-05 15:06,-0.7,28.409138,39.81753200000001,168
2017-12-05 15:08,-0.8,28.185444,39.593838,176
2017-12-05 15:10,-0.7,22.593094,27.066974000000002,166
2017-12-05 15:12,-0.6,23.935258,31.31716,162
2017-12-05 15:14,-0.8,24.382646,36.909510000000004,165
2017-12-05 15:16,-0.8,26.172198,38.475368,162
2017-12-05 15:18,-0.7,30.869772000000005,38.25167400000001,170
2017-12-05 15:20,-0.8,31.31716,42.72555400000001,170
2017-12-05 15:22,-0.8,25.72481,32.43563,178
2017-12-05 15:24,-0.8,21.25093,31.31716,171
2017-12-05 15:26,-0.8,23.040482000000004,31.540854000000003,178
2017-12-05 15:28,-0.9,28.632832000000004,42.278166,184
2017-12-05 15:30,-0.8,26.172198,37.580592,168
2017-12-05 15:32,-0.8,27.514362000000002,36.685816,166
2017-12-05 15:34,-0.8,24.382646,31.988242000000003,177
2017-12-05 15:36,-0.8,25.948504,41.830778,177
2017-12-05 15:38,-0.9,25.72481,32.43563,177
2017-12-05 15:40,-0.8,29.974996000000004,38.699062000000005,183
2017-12-05 15:42,-0.7,25.948504,34.225182000000004,172
2017-12-05 15:44,-0.8,23.935258,28.632832000000004,181
2017-12-05 15:46,-0.8,22.816788,27.290668,174
2017-12-05 15:48,-0.8,27.961750000000002,36.014734000000004,173
2017-12-05 15:50,-0.8,26.84328,32.211936,177
2017-12-05 15:52,-0.8,24.158952000000003,30.422384,176
2017-12-05 15:54,-0.8,23.040482000000004,29.527608,173
2017-12-05 15:56,-0.8,18.119214,24.606340000000003,177
2017-12-05 15:58,-0.7,21.474624000000002,31.988242000000003,162
2017-12-05 16:00,-0.7,18.566602000000003,22.369400000000002,179
2017-12-05 16:02,-0.8,16.777050000000003,30.198690000000003,169
2017-12-05 16:04,-0.6,21.698318,28.856526000000002,167
2017-12-05 16:06,-0.7,19.685072,23.711564,174
2017-12-05 16:08,-0.8,22.145706,26.619586,168
2017-12-05 16:10,-0.7,20.132460000000002,29.527608,163
2017-12-05 16:12,-0.8,25.277422000000005,30.646078,175
2017-12-05 16:14,-0.8,23.48787,30.869772000000005,170
2017-12-05 16:16,-0.8,22.369400000000002,29.527608,180
2017-12-05 16:18,-0.8,22.369400000000002,37.356898,179
2017-12-05 16:20,-0.8,24.830034,31.093466000000003,172
2017-12-05 16:22,-0.7,19.237684,23.040482000000004,178
2017-12-05 16:24,-0.7,21.474624000000002,29.751302000000003,171
2017-12-05 16:26,-0.7,23.711564,37.804286,170
2017-12-05 16:28,-0.8,29.751302000000003,38.699062000000005,169
2017-12-05 16:30,-0.8,28.632832000000004,34.001488,179
2017-12-05 16:32,-0.9,30.869772000000005,40.712308,177
2017-12-05 16:34,-0.9,28.185444,34.001488,176
2017-12-05 16:36,-0.9,22.145706,28.409138,165
2017-12-05 16:38,-0.8,24.158952000000003,38.922756,162
2017-12-05 16:40,-0.9,24.158952000000003,30.869772000000005,175
2017-12-05 16:42,-0.8,19.01399,25.948504,176
2017-12-05 16:44,-1,25.277422000000005,37.133204000000006,174
2017-12-05 16:46,-0.9,24.606340000000003,33.554100000000005,172
2017-12-05 16:48,-1,25.72481,31.540854000000003,172
2017-12-05 16:50,-1,23.48787,33.554100000000005,169
2017-12-05 16:52,-0.9,22.593094,31.093466000000003,169
2017-12-05 16:54,-1,23.48787,29.303914000000002,167
2017-12-05 16:56,-1,26.619586,33.106712,160
2017-12-05 16:58,-1,24.158952000000003,28.632832000000004,167
2017-12-05 17:00,-1.1,27.066974000000002,37.580592,159
2017-12-05 17:02,-1.1,23.264176000000003,29.974996000000004,181
2017-12-05 17:04,-1.2,22.816788,40.712308,182
2017-12-05 17:06,-1.3,27.514362000000002,35.79104,185
2017-12-05 17:08,-1.2,25.948504,35.343652000000006,177
2017-12-05 17:10,-1.3,25.948504,34.001488,179
2017-12-05 17:12,-1.3,22.369400000000002,29.08022,177
2017-12-05 17:14,-1.4,26.619586,33.330406,171
2017-12-05 17:16,-1.4,27.290668,33.554100000000005,166
2017-12-05 17:18,-1.4,22.593094,27.290668,164
2017-12-05 17:20,-1.5,27.290668,34.448876000000006,174
2017-12-05 17:22,-1.5,27.961750000000002,33.777794,164
2017-12-05 17:24,-1.6,26.172198,32.43563,189
2017-12-05 17:26,-1.6,29.08022,43.172942000000006,178
2017-12-05 17:28,-1.7,26.395892000000003,31.093466000000003,178
2017-12-05 17:30,-1.7,24.382646,34.67257,181
2017-12-05 17:32,-1.7,25.948504,36.238428,180
2017-12-05 17:34,-1.7,28.632832000000004,39.81753200000001,168
2017-12-05 17:36,-1.8,27.738056000000004,33.106712,180
2017-12-05 17:38,-1.8,24.606340000000003,34.896264,175
2017-12-05 17:40,-1.9,29.303914000000002,41.60708400000001,170
2017-12-05 17:42,-1.9,26.395892000000003,32.211936,181
2017-12-05 17:44,-1.9,28.409138,32.43563,183
2017-12-05 17:46,-2,27.514362000000002,37.356898,180
2017-12-05 17:48,-1.9,20.356154,25.277422000000005,183
2017-12-05 17:50,-2,24.158952000000003,30.198690000000003,180
2017-12-05 17:52,-1.9,20.356154,27.290668,177
2017-12-05 17:54,-1.9,25.277422000000005,31.988242000000003,176
2017-12-05 17:56,-2,26.619586,33.330406,184
2017-12-05 17:58,-2,21.474624000000002,31.988242000000003,181
2017-12-05 18:00,-2,22.593094,26.84328,167
2017-12-05 18:02,-2,17.671826000000003,25.277422000000005,176
2017-12-05 18:04,-2,15.882274,22.816788,170
2017-12-05 18:06,-1.9,17.224438000000003,23.711564,166
2017-12-05 18:08,-2,19.908766000000004,24.606340000000003,168
2017-12-05 18:10,-1.9,18.119214,25.277422000000005,162
2017-12-05 18:12,-2,22.145706,28.856526000000002,167
2017-12-05 18:14,-2.2,22.369400000000002,27.738056000000004,177
2017-12-05 18:16,-2.2,26.395892000000003,30.422384,163
2017-12-05 18:18,-2.2,25.053728,31.764548,164
2017-12-05 18:20,-2.2,18.342908,23.264176000000003,169
2017-12-05 18:22,-2.3,24.158952000000003,34.225182000000004,173
2017-12-05 18:24,-2.3,21.698318,27.066974000000002,172
2017-12-05 18:26,-2.2,21.922012000000002,26.84328,179
2017-12-05 18:28,-2.3,18.119214,22.369400000000002,182
2017-12-05 18:30,-2.3,15.882274,20.356154,178
2017-12-05 18:32,-2.2,17.448132,24.606340000000003,161
2017-12-05 18:34,-2.3,14.316416000000002,16.553356,175
2017-12-05 18:36,-2.2,13.42164,18.119214,174
2017-12-05 18:38,-2.3,17.000744,23.040482000000004,182
2017-12-05 18:40,-2.4,21.25093,25.277422000000005,178
2017-12-05 18:42,-2.4,21.25093,30.422384,178
2017-12-05 18:44,-2.5,22.816788,31.093466000000003,177
2017-12-05 18:46,-2.4,20.132460000000002,25.72481,168
2017-12-05 18:48,-2.4,19.01399,23.711564,172
2017-12-05 18:50,-2.4,26.395892000000003,32.659324,182
2017-12-05 18:52,-2.5,24.606340000000003,33.330406,179
2017-12-05 18:54,-2.5,18.790296,24.158952000000003,179
2017-12-05 18:56,-2.5,15.211192,19.908766000000004,185
2017-12-05 18:58,-2.4,16.553356,21.25093,179
2017-12-05 19:00,-2.4,19.461378,25.948504,179
2017-12-05 19:02,-2.5,18.790296,23.935258,177
2017-12-05 19:04,-2.5,17.224438000000003,25.501116000000003,177
2017-12-05 19:06,-2.4,17.224438000000003,22.593094,165
2017-12-05 19:08,-2.5,21.698318,32.211936,167
2017-12-05 19:10,-2.5,16.777050000000003,20.132460000000002,171
2017-12-05 19:12,-2.5,16.553356,20.132460000000002,176
2017-12-05 19:14,-2.6,20.356154,29.08022,181
2017-12-05 19:16,-2.6,19.237684,24.158952000000003,179
2017-12-05 19:18,-2.6,21.027236000000002,25.72481,173
2017-12-05 19:20,-2.5,21.922012000000002,29.527608,170
2017-12-05 19:22,-2.6,21.698318,29.527608,175
2017-12-05 19:24,-2.6,20.132460000000002,23.48787,178
2017-12-05 19:26,-2.5,19.01399,25.277422000000005,169
2017-12-05 19:28,-2.5,19.237684,31.988242000000003,172
2017-12-05 19:30,-2.5,16.329662,20.132460000000002,173
2017-12-05 19:32,-2.5,20.803542000000004,25.053728,168
2017-12-05 19:34,-2.6,15.211192,18.790296,169
2017-12-05 19:36,-2.5,15.65858,17.89552,170
2017-12-05 19:38,-2.5,15.434886000000002,22.593094,171
2017-12-05 19:40,-2.6,19.908766000000004,24.830034,172
2017-12-05 19:42,-2.6,24.382646,31.540854000000003,166
2017-12-05 19:44,-2.6,21.698318,29.527608,177
2017-12-05 19:46,-2.6,26.619586,33.106712,184
2017-12-05 19:48,-2.7,19.685072,24.606340000000003,181
2017-12-05 19:50,-2.7,18.566602000000003,24.830034,176
2017-12-05 19:52,-2.6,19.237684,24.830034,179
2017-12-05 19:54,-2.6,16.105968,25.277422000000005,171
2017-12-05 19:56,-2.5,20.356154,25.72481,173
2017-12-05 19:58,-2.6,22.593094,30.869772000000005,174
2017-12-05 20:00,-2.6,19.461378,27.290668,182
2017-12-05 20:02,-2.6,18.566602000000003,22.145706,179
2017-12-05 20:04,-2.5,14.987498000000002,16.777050000000003,174
2017-12-05 20:06,-2.6,13.42164,17.448132,173
2017-12-05 20:08,-2.6,17.89552,26.395892000000003,179
2017-12-05 20:10,-2.5,21.922012000000002,29.303914000000002,176
2017-12-05 20:12,-2.5,19.685072,26.619586,165
2017-12-05 20:14,-2.6,20.579848,29.751302000000003,180
2017-12-05 20:16,-2.6,20.356154,30.198690000000003,175
2017-12-05 20:18,-2.6,21.027236000000002,26.172198,162
2017-12-05 20:20,-2.6,21.698318,25.277422000000005,172
2017-12-05 20:22,-2.5,17.671826000000003,21.922012000000002,166
2017-12-05 20:24,-2.5,15.882274,22.593094,169
2017-12-05 20:26,-2.6,22.593094,26.172198,165
2017-12-05 20:28,-2.6,18.119214,25.053728,172
2017-12-05 20:30,-2.5,17.000744,20.579848,168
2017-12-05 20:32,-2.6,17.89552,23.264176000000003,180
2017-12-05 20:34,-2.6,17.224438000000003,25.501116000000003,162
2017-12-05 20:36,-2.6,17.448132,28.409138,169
2017-12-05 20:38,-2.5,18.119214,23.935258,170
2017-12-05 20:40,-2.6,19.908766000000004,27.738056000000004,172
2017-12-05 20:42,-2.6,19.01399,21.922012000000002,176
2017-12-05 20:44,-2.6,17.671826000000003,24.158952000000003,173
2017-12-05 20:46,-2.6,20.356154,25.72481,176
2017-12-05 20:48,-2.6,18.566602000000003,27.066974000000002,170
2017-12-05 20:50,-2.6,22.816788,28.185444,170
2017-12-05 20:52,-2.6,17.224438000000003,23.264176000000003,175
2017-12-05 20:54,-2.6,21.698318,29.751302000000003,167
2017-12-05 20:56,-2.6,18.566602000000003,24.606340000000003,163
2017-12-05 20:58,-2.6,19.908766000000004,27.514362000000002,170
2017-12-05 21:00,-2.6,21.027236000000002,27.290668,168
2017-12-05 21:02,-2.7,19.685072,24.158952000000003,172
2017-12-05 21:04,-2.7,16.553356,20.803542000000004,174
2017-12-05 21:06,-2.6,14.987498000000002,21.698318,163
2017-12-05 21:08,-2.5,16.105968,27.290668,177
2017-12-05 21:10,-2.7,18.566602000000003,22.593094,180
2017-12-05 21:12,-2.6,12.750558000000002,16.329662,168
2017-12-05 21:14,-2.5,12.079476000000001,17.671826000000003,176
2017-12-05 21:16,-2.6,17.224438000000003,25.72481,175
2017-12-05 21:18,-2.7,17.224438000000003,27.066974000000002,162
2017-12-05 21:20,-2.6,14.316416000000002,19.237684,174
2017-12-05 21:22,-2.6,13.42164,18.119214,166
2017-12-05 21:24,-2.7,16.329662,23.711564,177
2017-12-05 21:26,-2.7,20.132460000000002,27.290668,162
2017-12-05 21:28,-2.8,20.356154,27.514362000000002,171
2017-12-05 21:30,-2.8,15.211192,19.01399,172
2017-12-05 21:32,-2.8,15.882274,20.803542000000004,171
2017-12-05 21:34,-2.7,14.987498000000002,23.48787,167
2017-12-05 21:36,-2.7,18.790296,24.382646,159
2017-12-05 21:38,-2.8,17.448132,20.579848,173
2017-12-05 21:40,-2.8,18.119214,23.711564,171
2017-12-05 21:42,-2.7,17.671826000000003,23.264176000000003,166
2017-12-05 21:44,-2.7,16.105968,20.579848,159
2017-12-05 21:46,-2.8,17.224438000000003,23.48787,168
2017-12-05 21:48,-2.8,19.908766000000004,25.053728,172
2017-12-05 21:50,-2.9,18.119214,24.830034,164
2017-12-05 21:52,-2.9,16.553356,24.382646,170
2017-12-05 21:54,-3,16.777050000000003,22.369400000000002,173
2017-12-05 21:56,-2.9,15.882274,19.237684,159
2017-12-05 21:58,-2.9,17.448132,19.685072,170
2017-12-05 22:00,-2.9,18.566602000000003,25.277422000000005,167
2017-12-05 22:02,-2.9,17.224438000000003,22.369400000000002,177
2017-12-05 22:04,-2.9,14.763804,20.356154,165
2017-12-05 22:06,-2.9,17.671826000000003,23.48787,162
2017-12-05 22:08,-3,18.790296,22.369400000000002,170
2017-12-05 22:10,-3,16.329662,22.369400000000002,171
2017-12-05 22:12,-3,15.882274,19.685072,166
2017-12-05 22:14,-3,16.553356,20.579848,167
2017-12-05 22:16,-3,18.342908,24.158952000000003,166
2017-12-05 22:18,-3,18.790296,24.382646,169
2017-12-05 22:20,-3.1,19.685072,25.277422000000005,170
2017-12-05 22:22,-3.1,16.777050000000003,21.698318,165
2017-12-05 22:24,-3.1,18.342908,24.158952000000003,157
2017-12-05 22:26,-3.1,17.224438000000003,25.277422000000005,167
2017-12-05 22:28,-3.1,13.42164,21.922012000000002,172
2017-12-05 22:30,-3.2,16.553356,20.803542000000004,166
2017-12-05 22:32,-3.1,12.526864,14.763804,164
2017-12-05 22:34,-3.1,13.197946000000002,17.448132,163
2017-12-05 22:36,-3.1,14.316416000000002,17.000744,164
2017-12-05 22:38,-3,11.184700000000001,14.987498000000002,169
2017-12-05 22:40,-3.1,14.54011,18.342908,167
2017-12-05 22:42,-3.1,16.329662,22.816788,163
2017-12-05 22:44,-3.2,17.224438000000003,23.935258,166
2017-12-05 22:46,-3.2,14.987498000000002,22.593094,160
2017-12-05 22:48,-3.1,16.777050000000003,20.356154,169
2017-12-05 22:50,-3.1,16.329662,20.132460000000002,168
2017-12-05 22:52,-3.2,13.197946000000002,15.434886000000002,166
2017-12-05 22:54,-3.1,14.54011,17.000744,169
2017-12-05 22:56,-3.3,14.316416000000002,19.908766000000004,166
2017-12-05 22:58,-3.3,11.632088000000001,16.105968,176
2017-12-05 23:00,-3.3,14.763804,21.698318,168
2017-12-05 23:02,-3.3,15.65858,20.579848,174
2017-12-05 23:04,-3.3,14.316416000000002,21.474624000000002,175
2017-12-05 23:06,-3.3,16.777050000000003,23.48787,165
2017-12-05 23:08,-3.2,15.65858,17.448132,161
2017-12-05 23:10,-3.3,14.987498000000002,19.461378,178
2017-12-05 23:12,-3.2,12.526864,19.237684,159
2017-12-05 23:14,-3.2,14.763804,21.922012000000002,168
2017-12-05 23:16,-3.3,17.000744,21.25093,171
2017-12-05 23:18,-3.3,15.434886000000002,18.342908,169
2017-12-05 23:20,-3.3,15.211192,18.119214,172
2017-12-05 23:22,-3.3,11.632088000000001,16.329662,170
2017-12-05 23:24,-3.2,12.526864,16.329662,165
2017-12-05 23:26,-3.3,13.645334,18.790296,172
2017-12-05 23:28,-3.3,15.211192,19.01399,180
2017-12-05 23:30,-3.3,10.737312000000001,15.211192,165
2017-12-05 23:32,-3.3,13.645334,16.105968,169
2017-12-05 23:34,-3.3,11.408394,15.65858,162
2017-12-05 23:36,-3.3,13.42164,17.000744,173
2017-12-05 23:38,-3.3,11.855782,14.316416000000002,161
2017-12-05 23:40,-3.4,14.092722,17.671826000000003,173
2017-12-05 23:42,-3.4,15.65858,19.461378,163
2017-12-05 23:44,-3.4,16.553356,19.461378,165
2017-12-05 23:46,-3.4,17.000744,22.145706,153
2017-12-05 23:48,-3.5,17.224438000000003,21.698318,160
2017-12-05 23:50,-3.5,14.763804,20.579848,161
2017-12-05 23:52,-3.4,13.645334,17.224438000000003,162
2017-12-05 23:54,-3.4,12.079476000000001,14.987498000000002,169
2017-12-05 23:56,-3.5,13.869028000000002,23.48787,164
2017-12-05 23:58,-3.6,14.092722,17.448132,167
2017-12-06 00:00,-3.5,14.54011,21.25093,165
2017-12-06 00:02,-3.6,17.000744,22.593094,168
2017-12-06 00:04,-3.5,14.316416000000002,18.566602000000003,169
2017-12-06 00:06,-3.5,15.65858,21.474624000000002,163
2017-12-06 00:08,-3.6,16.329662,23.264176000000003,170
2017-12-06 00:10,-3.6,15.434886000000002,20.579848,177
2017-12-06 00:12,-3.6,13.869028000000002,17.448132,161
2017-12-06 00:14,-3.7,15.882274,20.132460000000002,169
2017-12-06 00:16,-3.7,15.211192,22.816788,176
2017-12-06 00:18,-3.7,16.777050000000003,19.237684,163
2017-12-06 00:20,-3.6,12.303170000000001,17.224438000000003,170
2017-12-06 00:22,-3.5,12.526864,14.987498000000002,163
2017-12-06 00:24,-3.5,10.961006000000001,15.65858,178
2017-12-06 00:26,-3.6,11.632088000000001,17.448132,159
2017-12-06 00:28,-3.6,16.105968,21.922012000000002,167
2017-12-06 00:30,-3.7,17.000744,21.698318,172
2017-12-06 00:32,-3.6,13.42164,17.224438000000003,172
2017-12-06 00:34,-3.7,13.197946000000002,18.790296,166
2017-12-06 00:36,-3.6,15.882274,20.356154,157
2017-12-06 00:38,-3.7,14.987498000000002,19.237684,173
2017-12-06 00:40,-3.7,14.987498000000002,19.685072,167
2017-12-06 00:42,-3.7,15.65858,19.461378,161
2017-12-06 00:44,-3.7,12.750558000000002,17.448132,175
2017-12-06 00:46,-3.7,13.42164,14.987498000000002,167
2017-12-06 00:48,-3.8,16.553356,22.593094,169
2017-12-06 00:50,-3.7,15.882274,19.461378,157
2017-12-06 00:52,-3.7,16.329662,18.342908,159
2017-12-06 00:54,-3.8,16.329662,21.027236000000002,170
2017-12-06 00:56,-3.8,14.092722,22.145706,179
2017-12-06 00:58,-3.8,10.289924,14.763804,167
2017-12-06 01:00,-3.8,12.079476000000001,14.987498000000002,170
2017-12-06 01:02,-3.8,12.750558000000002,18.790296,162
2017-12-06 01:04,-3.7,12.079476000000001,14.316416000000002,166
2017-12-06 01:06,-3.7,10.961006000000001,13.42164,171
2017-12-06 01:08,-3.8,14.987498000000002,19.908766000000004,157
2017-12-06 01:10,-3.8,14.316416000000002,19.01399,163
2017-12-06 01:12,-3.8,14.763804,18.119214,161
2017-12-06 01:14,-3.7,14.316416000000002,17.89552,167
2017-12-06 01:16,-3.7,13.645334,18.566602000000003,156
2017-12-06 01:18,-3.7,14.092722,19.237684,155
2017-12-06 01:20,-3.8,15.434886000000002,19.237684,174
2017-12-06 01:22,-3.8,13.869028000000002,17.89552,159
2017-12-06 01:24,-3.8,13.42164,16.329662,162
2017-12-06 01:26,-3.8,15.434886000000002,22.593094,152
2017-12-06 01:28,-3.7,12.303170000000001,15.882274,168
2017-12-06 01:30,-3.8,16.777050000000003,19.685072,169
2017-12-06 01:32,-3.9,16.105968,21.027236000000002,163
2017-12-06 01:34,-3.9,14.54011,19.908766000000004,161
2017-12-06 01:36,-3.8,13.869028000000002,19.685072,158
2017-12-06 01:38,-3.9,14.54011,17.671826000000003,174
2017-12-06 01:40,-3.9,14.092722,18.790296,161
2017-12-06 01:42,-3.8,13.869028000000002,18.342908,158
2017-12-06 01:44,-3.9,14.763804,18.342908,162
2017-12-06 01:46,-3.9,13.42164,17.448132,150
2017-12-06 01:48,-3.8,13.42164,20.356154,163
2017-12-06 01:50,-3.9,13.869028000000002,18.566602000000003,163
2017-12-06 01:52,-3.8,15.434886000000002,19.237684,150
2017-12-06 01:54,-3.9,16.329662,19.01399,161
2017-12-06 01:56,-3.9,16.329662,21.027236000000002,154
2017-12-06 01:58,-3.9,17.448132,21.25093,158
2017-12-06 02:00,-3.9,16.105968,20.132460000000002,160
2017-12-06 02:02,-3.9,16.777050000000003,21.027236000000002,158
2017-12-06 02:04,-4,18.790296,23.711564,157
2017-12-06 02:06,-4,14.54011,17.224438000000003,158
2017-12-06 02:08,-3.9,15.434886000000002,18.790296,164
2017-12-06 02:10,-4,14.092722,18.790296,161
2017-12-06 02:12,-3.9,14.316416000000002,19.237684,157
2017-12-06 02:14,-3.9,14.092722,17.671826000000003,163
2017-12-06 02:16,-3.9,14.316416000000002,16.777050000000003,161
2017-12-06 02:18,-3.9,13.869028000000002,18.119214,153
2017-12-06 02:20,-3.9,15.211192,19.01399,156
2017-12-06 02:22,-3.9,14.092722,17.671826000000003,155
2017-12-06 02:24,-4,13.197946000000002,17.671826000000003,170
2017-12-06 02:26,-4,12.303170000000001,15.882274,158
2017-12-06 02:28,-3.9,13.42164,16.329662,161
2017-12-06 02:30,-4,15.211192,19.685072,155
2017-12-06 02:32,-4,15.211192,20.132460000000002,155
2017-12-06 02:34,-4,14.987498000000002,20.356154,155
2017-12-06 02:36,-4.1,16.777050000000003,22.369400000000002,160
2017-12-06 02:38,-4,19.01399,22.816788,159
2017-12-06 02:40,-4.2,16.329662,20.356154,151
2017-12-06 02:42,-4.2,17.224438000000003,20.579848,152
2017-12-06 02:44,-4.2,16.329662,22.369400000000002,164
2017-12-06 02:46,-4.1,17.448132,22.369400000000002,169
2017-12-06 02:48,-4.2,17.448132,21.027236000000002,164
2017-12-06 02:50,-4.2,15.882274,18.342908,164
2017-12-06 02:52,-4.2,16.329662,21.25093,160
2017-12-06 02:54,-4.2,17.000744,21.25093,158
2017-12-06 02:56,-4.2,18.342908,22.816788,155
2017-12-06 02:58,-4.2,21.027236000000002,25.277422000000005,153
2017-12-06 03:00,-4,17.000744,19.461378,161
2017-12-06 03:02,-4.1,15.882274,18.342908,159
2017-12-06 03:04,-4.2,19.237684,24.382646,162
2017-12-06 03:06,-4.1,15.882274,18.790296,168
2017-12-06 03:08,-4.1,14.987498000000002,18.342908,159
2017-12-06 03:10,-4.1,16.329662,22.816788,154
2017-12-06 03:12,-4.2,19.908766000000004,24.382646,161
2017-12-06 03:14,-4.2,16.329662,22.145706,156
2017-12-06 03:16,-4.1,16.553356,20.356154,154
2017-12-06 03:18,-4.1,16.329662,20.579848,161
2017-12-06 03:20,-4.2,19.908766000000004,22.816788,159
2017-12-06 03:22,-4.1,12.750558000000002,15.65858,163
2017-12-06 03:24,-4,15.211192,20.356154,161
2017-12-06 03:26,-4.1,15.211192,19.461378,160
2017-12-06 03:28,-4.1,16.329662,21.027236000000002,154
2017-12-06 03:30,-4.1,17.671826000000003,22.145706,161
2017-12-06 03:32,-4.1,16.105968,21.25093,177
2017-12-06 03:34,-4.2,13.42164,19.01399,165
2017-12-06 03:36,-4.1,12.750558000000002,16.777050000000003,164
2017-12-06 03:38,-4.1,15.882274,20.132460000000002,162
2017-12-06 03:40,-4.1,18.566602000000003,27.738056000000004,159
2017-12-06 03:42,-4.2,17.000744,24.382646,172
2017-12-06 03:44,-4.2,14.987498000000002,19.01399,169
2017-12-06 03:46,-4.2,13.42164,17.224438000000003,167
2017-12-06 03:48,-4.2,15.65858,20.132460000000002,169
2017-12-06 03:50,-4.2,17.000744,20.132460000000002,162
2017-12-06 03:52,-4.3,14.092722,19.01399,171
2017-12-06 03:54,-4.3,17.448132,22.369400000000002,175
2017-12-06 03:56,-4.2,15.211192,21.25093,174
2017-12-06 03:58,-4.1,14.987498000000002,18.790296,164
2017-12-06 04:00,-4.1,16.329662,22.145706,161
2017-12-06 04:02,-4.2,16.329662,20.803542000000004,169
2017-12-06 04:04,-4.1,14.092722,16.105968,162
2017-12-06 04:06,-4.2,13.645334,15.882274,166
2017-12-06 04:08,-4.1,13.197946000000002,19.908766000000004,154
2017-12-06 04:10,-4,14.54011,18.119214,164
2017-12-06 04:12,-4.1,16.329662,19.461378,163
2017-12-06 04:14,-4.1,15.882274,20.803542000000004,169
2017-12-06 04:16,-4.1,15.65858,20.356154,162
2017-12-06 04:18,-4.1,16.105968,20.132460000000002,164
2017-12-06 04:20,-4.1,18.119214,21.698318,159
2017-12-06 04:22,-4.1,16.329662,19.908766000000004,162
2017-12-06 04:24,-4.1,16.105968,20.803542000000004,159
2017-12-06 04:26,-4.2,17.671826000000003,22.369400000000002,157
2017-12-06 04:28,-4.2,16.329662,21.922012000000002,159
2017-12-06 04:30,-4.1,17.89552,22.369400000000002,160
2017-12-06 04:32,-4.1,18.566602000000003,25.72481,158
2017-12-06 04:34,-4.1,17.671826000000003,19.461378,163
2017-12-06 04:36,-4.2,13.42164,19.237684,169
2017-12-06 04:38,-4.2,16.329662,19.908766000000004,164
2017-12-06 04:40,-4.2,17.000744,23.040482000000004,169
2017-12-06 04:42,-4.1,15.434886000000002,19.908766000000004,162
2017-12-06 04:44,-4.1,16.553356,20.579848,166
2017-12-06 04:46,-4.2,15.882274,19.01399,176
2017-12-06 04:48,-4.2,16.553356,21.25093,165
2017-12-06 04:50,-4.2,15.434886000000002,17.671826000000003,171
2017-12-06 04:52,-4.1,16.329662,20.132460000000002,150
2017-12-06 04:54,-4.2,18.790296,22.816788,157
2017-12-06 04:56,-4.2,16.105968,23.935258,166
2017-12-06 04:58,-4.1,15.65858,18.342908,164
2017-12-06 05:00,-4.1,16.105968,21.474624000000002,163
2017-12-06 05:02,-4.1,19.461378,23.040482000000004,151
2017-12-06 05:04,-4.1,16.553356,21.922012000000002,167
2017-12-06 05:06,-4.1,17.448132,21.027236000000002,173
2017-12-06 05:08,-4.2,14.763804,18.790296,167
2017-12-06 05:10,-4.2,14.316416000000002,20.132460000000002,173
2017-12-06 05:12,-4.2,12.750558000000002,17.000744,164
2017-12-06 05:14,-4.1,18.342908,25.053728,161
2017-12-06 05:16,-4.1,17.671826000000003,21.474624000000002,168
2017-12-06 05:18,-4.1,14.763804,19.237684,168
2017-12-06 05:20,-4.1,14.763804,17.89552,166
2017-12-06 05:22,-4.1,15.211192,21.922012000000002,167
2017-12-06 05:24,-3.9,14.316416000000002,18.342908,169
2017-12-06 05:26,-4,15.434886000000002,18.342908,167
2017-12-06 05:28,-4,15.211192,19.685072,159
2017-12-06 05:30,-4,15.65858,19.01399,160
2017-12-06 05:32,-4,16.329662,19.685072,159
2017-12-06 05:34,-4,13.869028000000002,18.790296,158
2017-12-06 05:36,-3.9,13.645334,17.89552,162
2017-12-06 05:38,-4,16.329662,18.342908,174
2017-12-06 05:40,-4,15.65858,18.342908,165
2017-12-06 05:42,-3.9,14.54011,21.027236000000002,164
2017-12-06 05:44,-4.1,16.777050000000003,20.132460000000002,173
2017-12-06 05:46,-4,14.316416000000002,17.000744,161
2017-12-06 05:48,-4,17.671826000000003,21.922012000000002,164
2017-12-06 05:50,-4,13.869028000000002,15.434886000000002,165
2017-12-06 05:52,-3.9,13.869028000000002,15.882274,170
2017-12-06 05:54,-4.1,16.105968,21.027236000000002,165
2017-12-06 05:56,-4.1,16.553356,21.027236000000002,173
2017-12-06 05:58,-4.1,12.974252,17.000744,173
2017-12-06 06:00,-4,14.763804,21.027236000000002,162
2017-12-06 06:02,-4.1,17.89552,24.158952000000003,171
2017-12-06 06:04,-4,15.434886000000002,19.685072,171
2017-12-06 06:06,-4.1,15.434886000000002,21.027236000000002,173
2017-12-06 06:08,-4.1,13.645334,16.777050000000003,167
2017-12-06 06:10,-4,11.855782,14.54011,169
2017-12-06 06:12,-4.1,13.197946000000002,16.777050000000003,179
2017-12-06 06:14,-4.2,13.645334,16.777050000000003,178
2017-12-06 06:16,-4.1,16.777050000000003,20.132460000000002,171
2017-12-06 06:18,-4.1,14.316416000000002,17.448132,160
2017-12-06 06:20,-4,13.869028000000002,15.882274,163
2017-12-06 06:22,-4.1,14.763804,20.579848,166
2017-12-06 06:24,-4.1,12.974252,16.105968,170
2017-12-06 06:26,-4,14.316416000000002,17.000744,165
2017-12-06 06:28,-4.1,18.566602000000003,22.145706,165
2017-12-06 06:30,-4.1,15.65858,17.224438000000003,180
2017-12-06 06:32,-4.2,12.079476000000001,15.65858,184
2017-12-06 06:34,-4.2,14.54011,18.342908,166
2017-12-06 06:36,-4.2,14.987498000000002,18.119214,166
2017-12-06 06:38,-4.1,13.197946000000002,17.224438000000003,171
2017-12-06 06:40,-4.1,15.211192,19.908766000000004,184
2017-12-06 06:42,-4.2,15.434886000000002,21.027236000000002,163
2017-12-06 06:44,-4.1,15.65858,23.48787,171
2017-12-06 06:46,-4.2,20.132460000000002,27.961750000000002,174
2017-12-06 06:48,-4.1,16.329662,21.474624000000002,163
2017-12-06 06:50,-4.1,14.763804,19.01399,173
2017-12-06 06:52,-4.1,14.092722,18.119214,170
2017-12-06 06:54,-4.1,14.54011,18.566602000000003,169
2017-12-06 06:56,-4.1,15.882274,21.027236000000002,170
2017-12-06 06:58,-4.2,19.908766000000004,26.84328,181
2017-12-06 07:00,-4.2,15.882274,22.593094,164
2017-12-06 07:02,-4.2,16.777050000000003,20.803542000000004,171
2017-12-06 07:04,-4.2,17.448132,20.356154,172
2017-12-06 07:06,-4,17.224438000000003,25.948504,168
2017-12-06 07:08,-4.2,17.671826000000003,21.922012000000002,164
2017-12-06 07:10,-4.2,17.000744,20.132460000000002,177
2017-12-06 07:12,-4.2,16.329662,21.25093,166
2017-12-06 07:14,-4.2,19.908766000000004,26.395892000000003,167
2017-12-06 07:16,-4.2,17.224438000000003,22.369400000000002,173
2017-12-06 07:18,-4.2,17.224438000000003,21.25093,171
2017-12-06 07:20,-4.2,16.777050000000003,22.369400000000002,160
2017-12-06 07:22,-4.1,17.224438000000003,24.382646,173
2017-12-06 07:24,-4.2,21.698318,29.08022,176
2017-12-06 07:26,-4.1,17.448132,23.264176000000003,163
2017-12-06 07:28,-4.1,17.89552,22.816788,169
2017-12-06 07:30,-4.1,17.448132,21.25093,168
2017-12-06 07:32,-4,15.211192,18.342908,167
2017-12-06 07:34,-4,18.342908,21.25093,167
2017-12-06 07:36,-4.1,17.448132,21.698318,169
2017-12-06 07:38,-4.1,20.132460000000002,25.948504,168
2017-12-06 07:40,-4.2,19.685072,25.72481,167
2017-12-06 07:42,-4.1,19.908766000000004,24.158952000000003,163
2017-12-06 07:44,-4.1,16.777050000000003,21.922012000000002,167
2017-12-06 07:46,-4.1,18.119214,21.698318,167
2017-12-06 07:48,-4.1,19.461378,23.264176000000003,166
2017-12-06 07:50,-4.1,17.224438000000003,20.132460000000002,175
2017-12-06 07:52,-4.2,20.132460000000002,30.869772000000005,165
2017-12-06 07:54,-4,17.224438000000003,20.132460000000002,169
2017-12-06 07:56,-4,17.448132,21.922012000000002,168
2017-12-06 07:58,-4.2,19.685072,23.264176000000003,168
2017-12-06 08:00,-4.1,17.448132,22.145706,162
2017-12-06 08:02,-4.1,18.342908,23.711564,168
2017-12-06 08:04,-4.1,19.461378,27.290668,169
2017-12-06 08:06,-4.1,19.461378,24.830034,164
2017-12-06 08:08,-4,18.790296,24.830034,165
2017-12-06 08:10,-3.9,17.000744,20.803542000000004,172
2017-12-06 08:12,-4,17.671826000000003,23.935258,171
2017-12-06 08:14,-4,20.132460000000002,25.72481,170
2017-12-06 08:16,-4.1,21.922012000000002,27.290668,169
2017-12-06 08:18,-4,16.329662,19.237684,167
2017-12-06 08:20,-3.9,16.553356,21.027236000000002,178
2017-12-06 08:22,-3.9,15.882274,22.369400000000002,168
2017-12-06 08:24,-3.9,20.356154,30.869772000000005,186
2017-12-06 08:26,-4,21.25093,25.948504,180
2017-12-06 08:28,-4,18.342908,23.48787,173
2017-12-06 08:30,-3.9,20.356154,30.198690000000003,165
2017-12-06 08:32,-3.9,22.816788,30.646078,167
2017-12-06 08:34,-4,20.356154,25.277422000000005,169
2017-12-06 08:36,-3.9,18.790296,24.382646,166
2017-12-06 08:38,-3.8,21.474624000000002,25.277422000000005,167
2017-12-06 08:40,-3.9,21.922012000000002,29.974996000000004,176
2017-12-06 08:42,-3.8,21.474624000000002,29.527608,172
2017-12-06 08:44,-3.9,21.027236000000002,25.948504,178
2017-12-06 08:46,-3.9,21.922012000000002,27.961750000000002,181
2017-12-06 08:48,-3.8,19.908766000000004,26.84328,177
2017-12-06 08:50,-3.8,22.816788,29.303914000000002,168
2017-12-06 08:52,-3.9,21.25093,25.72481,170
2017-12-06 08:54,-3.7,19.685072,23.040482000000004,168
2017-12-06 08:56,-3.6,18.342908,21.474624000000002,168
2017-12-06 08:58,-3.7,20.356154,26.172198,184
2017-12-06 09:00,-3.6,18.119214,22.369400000000002,182
2017-12-06 09:02,-3.4,18.119214,21.027236000000002,165
2017-12-06 09:04,-3.3,19.01399,27.514362000000002,175
2017-12-06 09:06,-3.5,17.89552,21.698318,177
2017-12-06 09:08,-3.4,20.803542000000004,27.514362000000002,182
2017-12-06 09:10,-3.4,19.01399,25.277422000000005,175
2017-12-06 09:12,-3.4,19.237684,25.501116000000003,183
2017-12-06 09:14,-3.5,18.119214,25.501116000000003,173
2017-12-06 09:16,-3.5,20.579848,28.409138,163
2017-12-06 09:18,-3.4,17.224438000000003,22.369400000000002,174
2017-12-06 09:20,-3.4,18.566602000000003,22.816788,179
2017-12-06 09:22,-3.3,16.777050000000003,21.698318,186
2017-12-06 09:24,-3.3,16.329662,24.158952000000003,173
2017-12-06 09:26,-3.3,20.803542000000004,26.395892000000003,171
2017-12-06 09:28,-3.3,20.356154,25.72481,177
2017-12-06 09:30,-3.2,18.119214,25.948504,179
2017-12-06 09:32,-3.4,24.606340000000003,29.974996000000004,182
2017-12-06 09:34,-3.2,18.566602000000003,23.935258,188
2017-12-06 09:36,-3.2,21.027236000000002,25.501116000000003,172
2017-12-06 09:38,-3.2,20.132460000000002,25.948504,168
2017-12-06 09:40,-3,14.316416000000002,18.342908,193
2017-12-06 09:42,-3.1,19.685072,25.948504,198
2017-12-06 09:44,-3.2,17.448132,21.698318,188
2017-12-06 09:46,-3.2,17.89552,22.593094,178
2017-12-06 09:48,-3.2,21.474624000000002,27.961750000000002,181
2017-12-06 09:50,-3.1,17.671826000000003,23.040482000000004,184
2017-12-06 09:52,-2.9,15.65858,17.000744,170
2017-12-06 09:54,-2.7,17.224438000000003,23.48787,178
2017-12-06 09:56,-2.8,19.01399,24.158952000000003,186
2017-12-06 09:58,-2.9,19.01399,24.606340000000003,180
2017-12-06 10:00,-2.9,19.237684,23.48787,182
2017-12-06 10:02,-2.9,18.566602000000003,22.145706,173
2017-12-06 10:04,-2.9,23.040482000000004,27.066974000000002,180
2017-12-06 10:06,-2.9,19.461378,25.277422000000005,183
2017-12-06 10:08,-2.8,18.790296,25.277422000000005,188
2017-12-06 10:10,-2.8,16.105968,20.803542000000004,182
2017-12-06 10:12,-2.5,12.974252,15.882274,182
2017-12-06 10:14,-2.5,16.777050000000003,20.356154,179
2017-12-06 10:16,-2.6,19.01399,29.08022,174
2017-12-06 10:18,-2.8,24.382646,31.764548,184
2017-12-06 10:20,-2.9,22.816788,26.395892000000003,178
2017-12-06 10:22,-2.9,22.145706,25.948504,180
2017-12-06 10:24,-2.7,19.01399,24.158952000000003,172
2017-12-06 10:26,-2.6,20.579848,24.382646,173
2017-12-06 10:28,-2.6,21.25093,26.395892000000003,173
2017-12-06 10:30,-2.6,20.356154,23.711564,176
2017-12-06 10:32,-2.6,21.474624000000002,26.84328,178
2017-12-06 10:34,-2.5,20.803542000000004,25.72481,178
2017-12-06 10:36,-2.5,18.119214,23.935258,187
2017-12-06 10:38,-2.5,21.698318,27.066974000000002,181
2017-12-06 10:40,-2.5,20.132460000000002,25.053728,170
2017-12-06 10:42,-2.5,20.803542000000004,25.948504,173
2017-12-06 10:44,-2.5,19.01399,23.48787,178
2017-12-06 10:46,-2.4,18.342908,21.698318,174
2017-12-06 10:48,-2.3,17.671826000000003,23.040482000000004,189
2017-12-06 10:50,-2.2,18.566602000000003,22.816788,174
2017-12-06 10:52,-2.2,18.342908,22.145706,165
2017-12-06 10:54,-2.1,15.882274,21.25093,167
2017-12-06 10:56,-2.1,21.922012000000002,26.172198,157
2017-12-06 10:58,-2.1,20.356154,24.606340000000003,170
2017-12-06 11:00,-2.2,20.132460000000002,22.145706,179
2017-12-06 11:02,-2.2,17.89552,22.816788,189
2017-12-06 11:04,-2.1,19.237684,26.619586,172
2017-12-06 11:06,-2.1,19.908766000000004,25.277422000000005,174
2017-12-06 11:08,-2.1,23.48787,29.08022,176
2017-12-06 11:10,-2.1,23.711564,27.066974000000002,179
2017-12-06 11:12,-2,21.027236000000002,25.501116000000003,177
2017-12-06 11:14,-2,19.908766000000004,24.382646,175
2017-12-06 11:16,-1.9,19.908766000000004,25.053728,182
2017-12-06 11:18,-1.9,21.25093,26.84328,183
2017-12-06 11:20,-1.9,14.763804,19.01399,187
2017-12-06 11:22,-1.7,16.105968,19.237684,177
2017-12-06 11:24,-1.7,16.553356,22.816788,178
2017-12-06 11:26,-1.8,21.027236000000002,26.84328,187
2017-12-06 11:28,-1.7,19.461378,26.619586,183
2017-12-06 11:30,-1.6,18.566602000000003,24.830034,177
2017-12-06 11:32,-1.6,19.908766000000004,25.948504,178
2017-12-06 11:34,-1.6,19.908766000000004,26.619586,178
2017-12-06 11:36,-1.5,18.790296,25.277422000000005,166
2017-12-06 11:38,-1.5,21.027236000000002,26.172198,177
2017-12-06 11:40,-1.4,21.698318,25.277422000000005,182
2017-12-06 11:42,-1.4,21.698318,27.961750000000002,179
2017-12-06 11:44,-1.3,22.145706,27.290668,185
2017-12-06 11:46,-1.3,18.342908,22.145706,176
2017-12-06 11:48,-1.2,17.000744,21.474624000000002,171
2017-12-06 11:50,-1.2,17.671826000000003,21.922012000000002,166
2017-12-06 11:52,-1.1,19.01399,27.738056000000004,166
2017-12-06 11:54,-1.2,21.698318,27.514362000000002,168
2017-12-06 11:56,-1,20.803542000000004,29.751302000000003,170
2017-12-06 11:58,-1.1,19.908766000000004,26.172198,178
2017-12-06 12:00,-1,20.132460000000002,26.84328,180
2017-12-06 12:02,-0.9,17.000744,23.935258,181
2017-12-06 12:04,-0.9,17.89552,24.158952000000003,191
2017-12-06 12:06,-0.9,18.790296,27.066974000000002,189
2017-12-06 12:08,-0.7,14.54011,19.237684,170
2017-12-06 12:10,-0.8,19.01399,25.053728,181
2017-12-06 12:12,-0.7,18.342908,23.040482000000004,188
2017-12-06 12:14,-0.6,15.65858,23.040482000000004,175
2017-12-06 12:16,-0.6,18.566602000000003,24.830034,184
2017-12-06 12:18,-0.5,16.105968,20.803542000000004,171
2017-12-06 12:20,-0.5,18.342908,26.84328,179
2017-12-06 12:22,-0.6,20.132460000000002,25.948504,173
2017-12-06 12:24,-0.6,19.908766000000004,28.632832000000004,173
2017-12-06 12:26,-0.5,21.922012000000002,26.172198,185
2017-12-06 12:28,-0.6,19.237684,23.48787,184
2017-12-06 12:30,-0.5,18.566602000000003,26.395892000000003,183
2017-12-06 12:32,-0.3,14.092722,18.566602000000003,181
2017-12-06 12:34,-0.2,16.329662,24.606340000000003,183
2017-12-06 12:36,-0.3,19.461378,21.698318,188
2017-12-06 12:38,-0.4,21.25093,27.961750000000002,198
2017-12-06 12:40,-0.3,18.342908,21.25093,190
2017-12-06 12:42,-0.2,21.922012000000002,27.514362000000002,181
2017-12-06 12:44,-0.2,22.369400000000002,29.751302000000003,175
2017-12-06 12:46,-0.3,20.356154,26.619586,171
2017-12-06 12:48,-0.2,20.356154,28.409138,176
2017-12-06 12:50,-0.1,21.25093,28.856526000000002,178
2017-12-06 12:52,-0.2,23.040482000000004,29.08022,176
2017-12-06 12:54,-0.2,21.698318,25.948504,187
2017-12-06 12:56,-0.3,23.48787,30.422384,186
2017-12-06 12:58,-0.2,20.356154,27.066974000000002,187
2017-12-06 13:00,-0.1,19.01399,22.369400000000002,186
2017-12-06 13:02,-0.1,18.342908,22.145706,190
2017-12-06 13:04,0,18.342908,23.935258,194
2017-12-06 13:06,0.1,17.671826000000003,24.158952000000003,180
2017-12-06 13:08,0.1,19.685072,25.277422000000005,203
2017-12-06 13:10,0.1,20.579848,25.72481,188
2017-12-06 13:12,0,19.908766000000004,26.172198,185
2017-12-06 13:14,0.1,20.356154,25.72481,181
2017-12-06 13:16,0,22.145706,26.619586,177
2017-12-06 13:18,0.1,19.685072,24.382646,183
2017-12-06 13:20,0.2,16.329662,19.908766000000004,188
2017-12-06 13:22,0.3,17.671826000000003,22.593094,180
2017-12-06 13:24,0.3,21.922012000000002,26.84328,195
2017-12-06 13:26,0.1,23.935258,29.303914000000002,202
2017-12-06 13:28,0.2,19.237684,24.382646,198
2017-12-06 13:30,0.3,19.01399,23.48787,195
2017-12-06 13:32,0.3,17.671826000000003,20.356154,186
2017-12-06 13:34,0.4,15.882274,22.145706,199
2017-12-06 13:36,0.3,16.777050000000003,21.027236000000002,199
2017-12-06 13:38,0.4,14.987498000000002,19.908766000000004,181
2017-12-06 13:40,0.4,15.434886000000002,19.461378,163
2017-12-06 13:42,0.4,23.48787,31.764548,171
2017-12-06 13:44,0.3,24.606340000000003,31.093466000000003,175
2017-12-06 13:46,0.2,19.461378,26.619586,175
2017-12-06 13:48,0.3,19.461378,23.264176000000003,179
2017-12-06 13:50,0.4,16.329662,23.935258,177
2017-12-06 13:52,0.4,19.908766000000004,24.606340000000003,178
2017-12-06 13:54,0.4,18.790296,26.172198,189
2017-12-06 13:56,0.4,19.908766000000004,24.158952000000003,181
2017-12-06 13:58,0.4,19.461378,23.040482000000004,203
2017-12-06 14:00,0.5,18.790296,22.145706,185
2017-12-06 14:02,0.5,15.65858,20.356154,182
2017-12-06 14:04,0.6,13.197946000000002,17.224438000000003,192
2017-12-06 14:06,0.7,14.316416000000002,20.803542000000004,189
2017-12-06 14:08,0.7,15.434886000000002,21.698318,172
2017-12-06 14:10,0.8,14.987498000000002,21.474624000000002,178
2017-12-06 14:12,0.6,18.790296,23.711564,182
2017-12-06 14:14,0.6,19.461378,23.711564,183
2017-12-06 14:16,0.5,18.342908,24.606340000000003,174
2017-12-06 14:18,0.5,21.474624000000002,24.606340000000003,182
2017-12-06 14:20,0.6,18.566602000000003,25.72481,176
2017-12-06 14:22,0.6,22.145706,28.185444,186
2017-12-06 14:24,0.6,20.356154,27.961750000000002,180
2017-12-06 14:26,0.6,22.145706,27.066974000000002,190
2017-12-06 14:28,0.6,20.356154,26.619586,191
2017-12-06 14:30,0.6,20.356154,26.172198,194
2017-12-06 14:32,0.6,15.211192,18.790296,198
2017-12-06 14:34,0.7,16.553356,23.48787,186
2017-12-06 14:36,0.6,16.329662,20.356154,192
2017-12-06 14:38,0.7,14.763804,18.566602000000003,197
2017-12-06 14:40,0.7,16.105968,23.935258,182
2017-12-06 14:42,0.6,21.922012000000002,25.501116000000003,189
2017-12-06 14:44,0.5,18.566602000000003,23.264176000000003,184
2017-12-06 14:46,0.6,19.685072,24.382646,175
2017-12-06 14:48,0.6,16.777050000000003,22.145706,183
2017-12-06 14:50,0.7,16.329662,19.461378,185
2017-12-06 14:52,0.7,17.224438000000003,22.145706,184
2017-12-06 14:54,0.7,17.224438000000003,21.474624000000002,187
2017-12-06 14:56,0.8,12.750558000000002,15.882274,183
2017-12-06 14:58,0.9,12.526864,19.237684,181
2017-12-06 15:00,0.9,14.54011,19.908766000000004,172
2017-12-06 15:02,0.8,17.224438000000003,19.685072,171
2017-12-06 15:04,0.7,19.461378,25.948504,183
2017-12-06 15:06,0.8,14.54011,16.777050000000003,192
2017-12-06 15:08,0.8,14.092722,19.461378,191
2017-12-06 15:10,0.8,14.987498000000002,18.790296,201
2017-12-06 15:12,0.7,15.65858,20.132460000000002,192
2017-12-06 15:14,0.7,14.763804,17.224438000000003,185
2017-12-06 15:16,0.8,14.987498000000002,22.145706,179
2017-12-06 15:18,0.8,14.316416000000002,22.369400000000002,188
2017-12-06 15:20,0.7,20.132460000000002,25.053728,192
2017-12-06 15:22,0.7,18.342908,25.053728,189
2017-12-06 15:24,0.7,16.329662,24.382646,189
2017-12-06 15:26,0.7,17.224438000000003,22.593094,189
2017-12-06 15:28,0.7,17.000744,21.474624000000002,204
2017-12-06 15:30,0.7,19.685072,25.501116000000003,196
2017-12-06 15:32,0.7,14.987498000000002,19.237684,191
2017-12-06 15:34,0.7,14.763804,17.89552,189
2017-12-06 15:36,0.7,12.303170000000001,16.329662,186
2017-12-06 15:38,0.7,12.750558000000002,14.763804,187
2017-12-06 15:40,0.6,16.553356,20.803542000000004,199
2017-12-06 15:42,0.6,17.000744,22.369400000000002,189
2017-12-06 15:44,0.6,14.763804,17.89552,191
2017-12-06 15:46,0.6,12.974252,15.882274,182
2017-12-06 15:48,0.6,12.750558000000002,15.882274,187
2017-12-06 15:50,0.6,14.54011,20.132460000000002,184
2017-12-06 15:52,0.6,14.54011,19.461378,196
2017-12-06 15:54,0.6,16.105968,18.790296,184
2017-12-06 15:56,0.5,19.237684,22.593094,187
2017-12-06 15:58,0.4,18.790296,23.711564,192
2017-12-06 16:00,0.4,16.777050000000003,21.25093,187
2017-12-06 16:02,0.4,16.553356,23.935258,183
2017-12-06 16:04,0.3,18.342908,21.027236000000002,179
2017-12-06 16:06,0.3,19.685072,23.264176000000003,186
2017-12-06 16:08,0.3,17.671826000000003,23.935258,192
2017-12-06 16:10,0.3,13.645334,19.01399,186
2017-12-06 16:12,0.3,10.737312000000001,15.434886000000002,186
2017-12-06 16:14,0.3,15.211192,21.25093,175
2017-12-06 16:16,0.3,17.89552,23.040482000000004,178
2017-12-06 16:18,0.2,17.89552,23.040482000000004,187
2017-12-06 16:20,0.2,19.685072,23.935258,194
2017-12-06 16:22,0.2,17.224438000000003,20.803542000000004,188
2017-12-06 16:24,0.2,16.553356,20.356154,184
2017-12-06 16:26,0.2,15.65858,22.369400000000002,184
2017-12-06 16:28,0.1,21.027236000000002,27.514362000000002,192
2017-12-06 16:30,0.1,17.448132,20.803542000000004,189
2017-12-06 16:32,0.1,14.987498000000002,19.01399,190
2017-12-06 16:34,0.1,17.224438000000003,21.922012000000002,186
2017-12-06 16:36,0.1,14.092722,18.566602000000003,180
2017-12-06 16:38,0.1,17.224438000000003,21.698318,179
2017-12-06 16:40,0,19.237684,23.935258,179
2017-12-06 16:42,0,16.553356,21.698318,184
2017-12-06 16:44,0,13.197946000000002,14.316416000000002,185
2017-12-06 16:46,0,15.434886000000002,20.803542000000004,188
2017-12-06 16:48,0,16.329662,21.027236000000002,192
2017-12-06 16:50,-0.1,14.763804,17.671826000000003,195
2017-12-06 16:52,-0.1,12.303170000000001,15.65858,195
2017-12-06 16:54,-0.1,16.105968,21.474624000000002,193
2017-12-06 16:56,-0.1,12.974252,17.224438000000003,185
2017-12-06 16:58,-0.1,12.526864,17.224438000000003,183
2017-12-06 17:00,-0.1,12.303170000000001,14.763804,188
2017-12-06 17:02,-0.2,14.316416000000002,20.803542000000004,189
2017-12-06 17:04,-0.2,12.750558000000002,17.671826000000003,192
2017-12-06 17:06,-0.2,12.079476000000001,15.434886000000002,198
2017-12-06 17:08,-0.1,10.289924,12.526864,186
2017-12-06 17:10,-0.2,13.42164,17.000744,192
2017-12-06 17:12,-0.2,10.737312000000001,12.526864,186
2017-12-06 17:14,-0.2,10.961006000000001,15.434886000000002,186
2017-12-06 17:16,-0.2,10.737312000000001,14.54011,191
2017-12-06 17:18,-0.2,9.842536,13.42164,195
2017-12-06 17:20,-0.3,13.197946000000002,17.000744,195
2017-12-06 17:22,-0.3,13.197946000000002,16.105968,190
2017-12-06 17:24,-0.3,12.750558000000002,15.65858,195
2017-12-06 17:26,-0.3,10.513618000000001,12.974252,190
2017-12-06 17:28,-0.3,9.618842,12.526864,188
2017-12-06 17:30,-0.3,10.961006000000001,13.42164,188
2017-12-06 17:32,-0.3,12.079476000000001,14.763804,183
2017-12-06 17:34,-0.3,10.737312000000001,13.197946000000002,193
2017-12-06 17:36,-0.3,10.289924,13.42164,198
2017-12-06 17:38,-0.3,11.632088000000001,14.763804,207
2017-12-06 17:40,-0.3,10.066230000000001,14.763804,196
2017-12-06 17:42,-0.4,13.869028000000002,17.448132,201
2017-12-06 17:44,-0.4,15.211192,19.461378,198
2017-12-06 17:46,-0.4,14.763804,18.342908,199
2017-12-06 17:48,-0.3,15.65858,20.356154,190
2017-12-06 17:50,-0.4,12.750558000000002,16.105968,195
2017-12-06 17:52,-0.3,12.526864,17.224438000000003,201
2017-12-06 17:54,-0.3,12.526864,17.448132,196
2017-12-06 17:56,-0.4,14.987498000000002,18.342908,199
2017-12-06 17:58,-0.4,11.855782,14.987498000000002,187
2017-12-06 18:00,-0.4,14.316416000000002,16.329662,185
2017-12-06 18:02,-0.4,12.526864,15.211192,201
2017-12-06 18:04,-0.4,12.526864,14.316416000000002,205
2017-12-06 18:06,-0.4,12.303170000000001,15.882274,195
2017-12-06 18:08,-0.5,11.408394,14.316416000000002,201
2017-12-06 18:10,-0.5,12.974252,16.329662,202
2017-12-06 18:12,-0.5,12.303170000000001,16.553356,201
2017-12-06 18:14,-0.5,11.408394,16.329662,203
2017-12-06 18:16,-0.5,12.974252,16.777050000000003,198
2017-12-06 18:18,-0.5,12.079476000000001,14.316416000000002,193
2017-12-06 18:20,-0.6,13.869028000000002,17.89552,186
2017-12-06 18:22,-0.6,10.961006000000001,14.763804,194
2017-12-06 18:24,-0.6,11.184700000000001,14.316416000000002,193
2017-12-06 18:26,-0.6,10.513618000000001,12.303170000000001,196
2017-12-06 18:28,-0.6,10.961006000000001,12.526864,200
2017-12-06 18:30,-0.6,11.184700000000001,15.434886000000002,204
2017-12-06 18:32,-0.6,10.513618000000001,11.632088000000001,200
2017-12-06 18:34,-0.7,9.618842,12.526864,199
2017-12-06 18:36,-0.7,13.42164,19.01399,197
2017-12-06 18:38,-0.7,12.750558000000002,16.105968,203
2017-12-06 18:40,-0.7,10.961006000000001,13.869028000000002,204
2017-12-06 18:42,-0.7,12.526864,16.105968,208
2017-12-06 18:44,-0.7,11.632088000000001,16.105968,200
2017-12-06 18:46,-0.7,9.842536,12.974252,207
2017-12-06 18:48,-0.7,10.066230000000001,12.974252,206
2017-12-06 18:50,-0.7,10.513618000000001,13.197946000000002,202
2017-12-06 18:52,-0.7,11.855782,16.777050000000003,203
2017-12-06 18:54,-0.8,12.303170000000001,16.777050000000003,207
2017-12-06 18:56,-0.8,13.197946000000002,15.211192,208
2017-12-06 18:58,-0.8,12.750558000000002,20.132460000000002,199
2017-12-06 19:00,-0.8,14.54011,17.224438000000003,195
2017-12-06 19:02,-0.8,12.526864,15.882274,196
2017-12-06 19:04,-0.8,13.197946000000002,17.671826000000003,194
2017-12-06 19:06,-0.8,12.974252,14.54011,205
2017-12-06 19:08,-0.7,13.645334,18.119214,196
2017-12-06 19:10,-0.7,10.289924,14.763804,209
2017-12-06 19:12,-0.7,11.855782,16.329662,213
2017-12-06 19:14,-0.8,10.961006000000001,12.750558000000002,210
2017-12-06 19:16,-0.8,12.526864,16.777050000000003,218
2017-12-06 19:18,-0.7,10.513618000000001,13.197946000000002,219
2017-12-06 19:20,-0.8,10.737312000000001,14.987498000000002,215
2017-12-06 19:22,-0.8,12.079476000000001,19.908766000000004,224
2017-12-06 19:24,-1.1,15.211192,24.606340000000003,231
2017-12-06 19:26,-1.2,17.224438000000003,20.803542000000004,226
2017-12-06 19:28,-1.3,16.329662,19.908766000000004,222
2017-12-06 19:30,-1.3,13.197946000000002,17.448132,222
2017-12-06 19:32,-1.3,13.42164,17.671826000000003,223
2017-12-06 19:34,-1.4,17.671826000000003,21.698318,242
2017-12-06 19:36,-2.1,21.027236000000002,24.158952000000003,252
2017-12-06 19:38,-2.5,19.908766000000004,23.935258,251
2017-12-06 19:40,-2.5,16.105968,21.698318,240
2017-12-06 19:42,-2.5,14.54011,21.474624000000002,241
2017-12-06 19:44,-2.6,17.224438000000003,23.711564,249
2017-12-06 19:46,-2.9,16.553356,19.908766000000004,248
2017-12-06 19:48,-3,16.105968,18.790296,251
2017-12-06 19:50,-3,17.448132,21.027236000000002,249
2017-12-06 19:52,-3.1,15.211192,20.132460000000002,241
2017-12-06 19:54,-3,13.197946000000002,16.777050000000003,225
2017-12-06 19:56,-2.9,10.961006000000001,15.434886000000002,238
2017-12-06 19:58,-3,10.961006000000001,14.316416000000002,235
2017-12-06 20:00,-3.1,15.882274,20.579848,239
2017-12-06 20:02,-3.2,13.645334,16.553356,238
2017-12-06 20:04,-3.4,14.987498000000002,18.566602000000003,247
2017-12-06 20:06,-3.4,14.987498000000002,19.461378,245
2017-12-06 20:08,-3.3,14.316416000000002,22.145706,243
2017-12-06 20:10,-3.5,17.000744,22.369400000000002,249
2017-12-06 20:12,-3.6,16.553356,19.908766000000004,237
2017-12-06 20:14,-3.7,12.974252,17.89552,239
2017-12-06 20:16,-3.6,12.750558000000002,17.448132,237
2017-12-06 20:18,-3.6,12.526864,15.65858,239
2017-12-06 20:20,-3.7,13.42164,16.777050000000003,235
2017-12-06 20:22,-3.8,14.316416000000002,18.790296,236
2017-12-06 20:24,-3.9,15.211192,17.448132,237
2017-12-06 20:26,-3.8,10.289924,12.526864,241
2017-12-06 20:28,-3.8,16.777050000000003,22.369400000000002,236
2017-12-06 20:30,-4,16.777050000000003,21.474624000000002,227
2017-12-06 20:32,-4,15.211192,21.922012000000002,235
2017-12-06 20:34,-3.9,11.632088000000001,14.54011,230
2017-12-06 20:36,-3.9,16.329662,22.593094,237
2017-12-06 20:38,-4,17.89552,21.25093,241
2017-12-06 20:40,-4,15.211192,21.25093,242
2017-12-06 20:42,-4.1,16.777050000000003,20.356154,222
2017-12-06 20:44,-4.3,17.224438000000003,21.027236000000002,218
2017-12-06 20:46,-4.4,14.54011,18.790296,216
2017-12-06 20:48,-4.3,13.645334,17.89552,221
2017-12-06 20:50,-4.3,15.211192,19.908766000000004,226
2017-12-06 20:52,-4.4,15.882274,22.593094,225
2017-12-06 20:54,-4.4,17.448132,27.066974000000002,228
2017-12-06 20:56,-4.5,14.987498000000002,19.908766000000004,228
2017-12-06 20:58,-4.4,12.303170000000001,16.777050000000003,237
2017-12-06 21:00,-4.5,13.197946000000002,18.566602000000003,229
2017-12-06 21:02,-4.6,16.553356,21.922012000000002,214
2017-12-06 21:04,-4.7,16.329662,23.040482000000004,214
2017-12-06 21:06,-4.7,15.65858,19.237684,213
2017-12-06 21:08,-4.6,15.882274,21.027236000000002,222
2017-12-06 21:10,-4.7,12.974252,18.119214,222
2017-12-06 21:12,-4.7,13.869028000000002,17.448132,219
2017-12-06 21:14,-4.7,16.553356,21.25093,223
2017-12-06 21:16,-4.8,13.42164,16.105968,228
2017-12-06 21:18,-4.7,15.211192,20.356154,220
2017-12-06 21:20,-4.8,17.224438000000003,20.579848,226
2017-12-06 21:22,-4.7,13.197946000000002,17.000744,231
2017-12-06 21:24,-4.7,11.184700000000001,17.671826000000003,224
2017-12-06 21:26,-4.8,15.65858,19.461378,221
2017-12-06 21:28,-4.8,13.42164,18.119214,220
2017-12-06 21:30,-4.8,14.763804,22.145706,224
2017-12-06 21:32,-4.8,12.526864,17.000744,226
2017-12-06 21:34,-4.9,16.777050000000003,21.25093,224
2017-12-06 21:36,-4.9,16.329662,23.711564,231
2017-12-06 21:38,-4.8,13.42164,19.461378,226
2017-12-06 21:40,-4.8,13.42164,17.224438000000003,221
2017-12-06 21:42,-4.9,15.211192,19.461378,218
2017-12-06 21:44,-4.9,15.882274,20.579848,224
2017-12-06 21:46,-4.9,13.42164,19.01399,235
2017-12-06 21:48,-4.7,13.42164,16.777050000000003,237
2017-12-06 21:50,-4.8,12.974252,17.000744,234
2017-12-06 21:52,-4.9,13.645334,18.119214,236
2017-12-06 21:54,-5,14.316416000000002,19.685072,216
2017-12-06 21:56,-5,11.184700000000001,14.54011,223
2017-12-06 21:58,-4.9,9.395148,15.65858,230
2017-12-06 22:00,-4.9,14.54011,17.448132,225
2017-12-06 22:02,-4.9,12.750558000000002,16.777050000000003,226
2017-12-06 22:04,-5,14.54011,19.237684,212
2017-12-06 22:06,-5,13.645334,18.566602000000003,221
2017-12-06 22:08,-5.1,13.869028000000002,20.132460000000002,223
2017-12-06 22:10,-5.1,14.54011,19.685072,233
2017-12-06 22:12,-5.1,14.54011,21.027236000000002,226
2017-12-06 22:14,-5.1,12.303170000000001,17.671826000000003,214
2017-12-06 22:16,-5.1,8.94776,12.079476000000001,217
2017-12-06 22:18,-5,9.395148,14.763804,222
2017-12-06 22:20,-5.1,13.197946000000002,18.566602000000003,211
2017-12-06 22:22,-5.2,17.000744,21.25093,202
2017-12-06 22:24,-5.2,13.197946000000002,19.237684,214
2017-12-06 22:26,-5.1,12.526864,17.224438000000003,207
2017-12-06 22:28,-5,9.842536,14.316416000000002,219
2017-12-06 22:30,-5,8.052984,10.961006000000001,223
2017-12-06 22:32,-4.9,8.276678,10.289924,220
2017-12-06 22:34,-5,13.645334,18.566602000000003,228
2017-12-06 22:36,-5.1,16.105968,19.685072,228
2017-12-06 22:38,-5.1,15.65858,19.908766000000004,227
2017-12-06 22:40,-5.1,15.434886000000002,20.803542000000004,232
2017-12-06 22:42,-5,13.869028000000002,19.685072,234
2017-12-06 22:44,-5,11.184700000000001,15.65858,225
2017-12-06 22:46,-5.1,12.974252,15.882274,222
2017-12-06 22:48,-5.3,17.000744,21.474624000000002,220
2017-12-06 22:50,-5.5,19.01399,23.711564,226
2017-12-06 22:52,-5.6,15.434886000000002,21.027236000000002,232
2017-12-06 22:54,-5.5,13.42164,17.000744,225
2017-12-06 22:56,-5.5,13.197946000000002,18.342908,231
2017-12-06 22:58,-5.5,10.066230000000001,14.763804,217
2017-12-06 23:00,-5.6,13.197946000000002,20.803542000000004,220
2017-12-06 23:02,-5.6,10.066230000000001,14.316416000000002,225
2017-12-06 23:04,-5.6,11.408394,15.65858,206
2017-12-06 23:06,-5.6,12.303170000000001,16.777050000000003,220
2017-12-06 23:08,-5.6,11.184700000000001,14.763804,221
2017-12-06 23:10,-5.5,10.513618000000001,14.763804,216
2017-12-06 23:12,-5.5,11.184700000000001,17.448132,209
2017-12-06 23:14,-5.6,13.42164,18.342908,210
2017-12-06 23:16,-5.7,12.750558000000002,16.105968,225
2017-12-06 23:18,-5.6,12.079476000000001,13.869028000000002,218
2017-12-06 23:20,-5.6,10.961006000000001,14.987498000000002,218
2017-12-06 23:22,-5.7,10.961006000000001,14.763804,211
2017-12-06 23:24,-5.8,14.54011,19.461378,222
2017-12-06 23:26,-5.8,14.763804,20.356154,220
2017-12-06 23:28,-5.8,11.855782,15.434886000000002,214
2017-12-06 23:30,-5.8,10.289924,13.869028000000002,223
2017-12-06 23:32,-5.8,11.855782,16.553356,222
2017-12-06 23:34,-6,13.645334,18.119214,214
2017-12-06 23:36,-5.9,12.303170000000001,16.553356,209
2017-12-06 23:38,-6,17.000744,21.027236000000002,210
2017-12-06 23:40,-6,13.869028000000002,17.448132,210
2017-12-06 23:42,-6,13.42164,16.553356,212
2017-12-06 23:44,-6,12.974252,16.105968,210
2017-12-06 23:46,-6,13.645334,18.119214,214
2017-12-06 23:48,-6,15.882274,22.145706,207
2017-12-06 23:50,-6,11.184700000000001,14.316416000000002,209
2017-12-06 23:52,-5.9,12.974252,16.553356,206
2017-12-06 23:54,-6,16.105968,18.566602000000003,205
2017-12-06 23:56,-6,14.763804,17.448132,206
2017-12-06 23:58,-6.1,17.000744,20.356154,209
2017-12-07 00:00,-6.1,15.211192,18.566602000000003,206
2017-12-07 00:02,-6,14.763804,20.803542000000004,200
2017-12-07 00:04,-6.1,15.434886000000002,19.908766000000004,207
2017-12-07 00:06,-6.1,16.553356,21.25093,210
2017-12-07 00:08,-6,13.869028000000002,18.342908,209
2017-12-07 00:10,-5.9,10.961006000000001,18.342908,217
2017-12-07 00:12,-6,14.763804,17.89552,214
2017-12-07 00:14,-6,15.65858,18.790296,212
2017-12-07 00:16,-5.9,15.211192,20.803542000000004,205
2017-12-07 00:18,-6,13.42164,16.553356,203
2017-12-07 00:20,-6,18.566602000000003,24.382646,208
2017-12-07 00:22,-6.1,17.224438000000003,22.369400000000002,205
2017-12-07 00:24,-6.1,16.777050000000003,21.698318,210
2017-12-07 00:26,-6,16.105968,20.132460000000002,212
2017-12-07 00:28,-6,15.211192,18.790296,206
2017-12-07 00:30,-6.1,17.89552,21.922012000000002,210
2017-12-07 00:32,-6.1,14.54011,19.237684,216
2017-12-07 00:34,-6,13.42164,17.000744,219
2017-12-07 00:36,-6,12.079476000000001,15.211192,217
2017-12-07 00:38,-6,14.987498000000002,21.474624000000002,210
2017-12-07 00:40,-6.1,17.000744,20.579848,210
2017-12-07 00:42,-6,15.434886000000002,18.566602000000003,211
2017-12-07 00:44,-6.1,17.89552,21.25093,212
2017-12-07 00:46,-6.1,15.882274,21.027236000000002,211
2017-12-07 00:48,-6.1,15.211192,18.790296,212
2017-12-07 00:50,-6,13.197946000000002,17.448132,206
2017-12-07 00:52,-6.1,12.974252,16.105968,205
2017-12-07 00:54,-6,12.303170000000001,15.65858,217
2017-12-07 00:56,-6.1,14.316416000000002,17.89552,215
2017-12-07 00:58,-6.1,12.974252,16.329662,212
2017-12-07 01:00,-6,11.855782,15.211192,214
2017-12-07 01:02,-6.1,11.855782,14.316416000000002,215
2017-12-07 01:04,-6.1,11.855782,15.65858,212
2017-12-07 01:06,-6.1,11.855782,14.763804,219
2017-12-07 01:08,-6,9.618842,13.645334,206
2017-12-07 01:10,-6.1,14.54011,20.132460000000002,210
2017-12-07 01:12,-6.1,14.987498000000002,19.01399,207
2017-12-07 01:14,-6.3,15.65858,19.237684,204
2017-12-07 01:16,-6.3,18.342908,23.264176000000003,212
2017-12-07 01:18,-6.3,18.119214,20.356154,213
2017-12-07 01:20,-6.2,14.092722,17.224438000000003,214
2017-12-07 01:22,-6.2,12.974252,17.448132,208
2017-12-07 01:24,-6.2,17.000744,22.145706,200
2017-12-07 01:26,-6.2,14.54011,16.553356,197
2017-12-07 01:28,-6.2,12.750558000000002,14.987498000000002,207
2017-12-07 01:30,-6.1,12.974252,14.763804,212
2017-12-07 01:32,-6.2,12.750558000000002,14.987498000000002,203
2017-12-07 01:34,-6.1,13.869028000000002,18.119214,191
2017-12-07 01:36,-6.2,15.211192,18.566602000000003,192
2017-12-07 01:38,-6.2,15.211192,20.579848,199
2017-12-07 01:40,-6.2,17.224438000000003,20.356154,198
2017-12-07 01:42,-6.1,16.777050000000003,21.922012000000002,197
2017-12-07 01:44,-6.2,15.211192,18.566602000000003,196
2017-12-07 01:46,-6.2,17.448132,20.803542000000004,193
2017-12-07 01:48,-6.1,15.211192,19.237684,199
2017-12-07 01:50,-6,15.65858,17.89552,195
2017-12-07 01:52,-6.1,16.105968,18.790296,204
2017-12-07 01:54,-6.1,12.974252,17.000744,203
2017-12-07 01:56,-6,11.184700000000001,14.316416000000002,206
2017-12-07 01:58,-6,12.079476000000001,16.329662,207
2017-12-07 02:00,-5.9,13.42164,15.211192,196
2017-12-07 02:02,-5.9,12.526864,16.553356,198
2017-12-07 02:04,-6,13.197946000000002,17.224438000000003,206
2017-12-07 02:06,-6.1,14.092722,18.342908,201
2017-12-07 02:08,-6.2,17.89552,23.040482000000004,197
2017-12-07 02:10,-6.2,18.119214,23.48787,197
2017-12-07 02:12,-6.2,18.790296,25.501116000000003,200
2017-12-07 02:14,-6.2,17.224438000000003,21.922012000000002,202
2017-12-07 02:16,-6.2,18.342908,22.145706,197
2017-12-07 02:18,-6.1,16.105968,19.685072,197
2017-12-07 02:20,-6.2,17.224438000000003,22.593094,198
2017-12-07 02:22,-6.2,15.65858,19.685072,198
2017-12-07 02:24,-6.2,14.987498000000002,18.342908,194
2017-12-07 02:26,-6.2,14.763804,17.671826000000003,205
2017-12-07 02:28,-6.1,12.303170000000001,16.329662,202
2017-12-07 02:30,-6.2,15.434886000000002,19.908766000000004,195
2017-12-07 02:32,-6.3,17.89552,23.48787,203
2017-12-07 02:34,-6.2,13.42164,15.65858,202
2017-12-07 02:36,-6.1,15.65858,21.027236000000002,199
2017-12-07 02:38,-6.2,17.000744,20.579848,200
2017-12-07 02:40,-6.2,14.987498000000002,18.342908,207
2017-12-07 02:42,-6.1,15.65858,18.790296,206
2017-12-07 02:44,-6.2,16.329662,19.908766000000004,216
2017-12-07 02:46,-6.2,12.974252,16.329662,213
2017-12-07 02:48,-6.1,11.855782,15.211192,219
2017-12-07 02:50,-6.1,12.750558000000002,15.882274,210
2017-12-07 02:52,-6.2,13.42164,15.882274,207
2017-12-07 02:54,-6.3,16.329662,20.356154,205
2017-12-07 02:56,-6.3,16.777050000000003,20.356154,196
2017-12-07 02:58,-6.2,14.987498000000002,17.224438000000003,193
2017-12-07 03:00,-6.3,14.987498000000002,17.671826000000003,201
2017-12-07 03:02,-6.3,13.645334,16.553356,214
2017-12-07 03:04,-6.2,15.434886000000002,18.790296,202
2017-12-07 03:06,-6.3,14.763804,18.119214,210
2017-12-07 03:08,-6.3,16.329662,20.579848,201
2017-12-07 03:10,-6.3,13.869028000000002,16.777050000000003,207
2017-12-07 03:12,-6.2,12.303170000000001,14.987498000000002,208
2017-12-07 03:14,-6.1,13.645334,18.790296,198
2017-12-07 03:16,-6.1,12.750558000000002,16.105968,201
2017-12-07 03:18,-6.2,14.763804,18.566602000000003,200
2017-12-07 03:20,-6.2,14.092722,19.237684,210
2017-12-07 03:22,-6.2,16.553356,20.579848,200
2017-12-07 03:24,-6.3,14.092722,18.342908,193
2017-12-07 03:26,-6.3,16.105968,22.369400000000002,195
2017-12-07 03:28,-6.3,15.882274,20.803542000000004,205
2017-12-07 03:30,-6.3,13.869028000000002,21.027236000000002,203
2017-12-07 03:32,-6.4,19.461378,23.040482000000004,208
2017-12-07 03:34,-6.3,15.434886000000002,19.237684,211
2017-12-07 03:36,-6.3,12.526864,16.553356,215
2017-12-07 03:38,-6.3,14.987498000000002,19.01399,206
2017-12-07 03:40,-6.4,13.869028000000002,17.000744,205
2017-12-07 03:42,-6.3,15.434886000000002,19.685072,210
2017-12-07 03:44,-6.4,14.987498000000002,19.908766000000004,210
2017-12-07 03:46,-6.3,12.526864,15.65858,199
2017-12-07 03:48,-6.2,13.645334,16.777050000000003,198
2017-12-07 03:50,-6.3,16.105968,20.132460000000002,191
2017-12-07 03:52,-6.4,16.777050000000003,20.803542000000004,193
2017-12-07 03:54,-6.4,15.65858,18.790296,194
2017-12-07 03:56,-6.4,16.553356,21.474624000000002,205
2017-12-07 03:58,-6.5,15.434886000000002,19.685072,206
2017-12-07 04:00,-6.5,14.316416000000002,20.579848,203
2017-12-07 04:02,-6.5,14.54011,19.908766000000004,204
2017-12-07 04:04,-6.5,15.65858,19.461378,203
2017-12-07 04:06,-6.3,13.869028000000002,16.329662,193
2017-12-07 04:08,-6.3,14.316416000000002,21.474624000000002,199
2017-12-07 04:10,-6.4,14.54011,18.566602000000003,217
2017-12-07 04:12,-6.4,12.079476000000001,18.790296,209
2017-12-07 04:14,-6.3,12.526864,17.448132,196
2017-12-07 04:16,-6.4,12.526864,17.89552,204
2017-12-07 04:18,-6.4,13.869028000000002,15.882274,199
2017-12-07 04:20,-6.4,14.316416000000002,18.566602000000003,199
2017-12-07 04:22,-6.4,13.197946000000002,19.01399,203
2017-12-07 04:24,-6.4,15.65858,18.790296,205
2017-12-07 04:26,-6.5,15.434886000000002,19.237684,199
2017-12-07 04:28,-6.6,14.092722,17.000744,192
2017-12-07 04:30,-6.6,16.777050000000003,19.685072,201
2017-12-07 04:32,-6.6,13.869028000000002,17.89552,206
2017-12-07 04:34,-6.5,12.079476000000001,15.211192,206
2017-12-07 04:36,-6.5,11.855782,15.211192,196
2017-12-07 04:38,-6.7,14.54011,17.448132,200
2017-12-07 04:40,-6.8,16.105968,20.579848,211
2017-12-07 04:42,-6.8,12.750558000000002,16.553356,206
2017-12-07 04:44,-6.7,12.526864,16.553356,203
2017-12-07 04:46,-6.8,13.645334,16.105968,209
2017-12-07 04:48,-6.8,13.197946000000002,15.882274,210
2017-12-07 04:50,-6.8,14.987498000000002,22.593094,203
2017-12-07 04:52,-6.8,15.434886000000002,19.685072,201
2017-12-07 04:54,-6.8,12.974252,15.65858,201
2017-12-07 04:56,-6.8,14.763804,19.685072,205
2017-12-07 04:58,-6.8,14.316416000000002,17.671826000000003,202
2017-12-07 05:00,-6.9,17.000744,20.579848,199
2017-12-07 05:02,-6.9,16.329662,20.579848,197
2017-12-07 05:04,-6.9,14.987498000000002,19.237684,206
2017-12-07 05:06,-6.9,14.763804,19.237684,207
2017-12-07 05:08,-6.8,13.869028000000002,18.790296,205
2017-12-07 05:10,-6.5,10.737312000000001,13.42164,207
2017-12-07 05:12,-6.7,14.316416000000002,17.671826000000003,199
2017-12-07 05:14,-6.7,14.54011,19.461378,202
2017-12-07 05:16,-6.8,18.119214,23.264176000000003,198
2017-12-07 05:18,-6.8,14.54011,18.790296,214
2017-12-07 05:20,-6.8,13.197946000000002,17.89552,213
2017-12-07 05:22,-6.7,12.079476000000001,14.763804,205
2017-12-07 05:24,-6.8,16.553356,21.027236000000002,201
2017-12-07 05:26,-6.8,14.54011,19.237684,198
2017-12-07 05:28,-6.8,15.211192,21.698318,199
2017-12-07 05:30,-6.9,14.54011,16.329662,198
2017-12-07 05:32,-6.9,13.869028000000002,16.553356,197
2017-12-07 05:34,-6.9,14.092722,17.000744,193
2017-12-07 05:36,-6.9,13.645334,15.65858,202
2017-12-07 05:38,-6.9,13.42164,17.448132,207
2017-12-07 05:40,-6.9,15.434886000000002,19.908766000000004,205
2017-12-07 05:42,-6.9,13.42164,16.329662,196
2017-12-07 05:44,-6.9,14.987498000000002,20.356154,197
2017-12-07 05:46,-6.9,15.434886000000002,19.461378,202
2017-12-07 05:48,-6.9,12.974252,15.882274,198
2017-12-07 05:50,-6.9,14.316416000000002,18.119214,196
2017-12-07 05:52,-7,14.54011,18.566602000000003,201
2017-12-07 05:54,-7.1,14.987498000000002,17.671826000000003,200
2017-12-07 05:56,-7,14.092722,19.461378,196
2017-12-07 05:58,-7.1,14.54011,19.461378,196
2017-12-07 06:00,-7,14.763804,20.579848,197
2017-12-07 06:02,-7,13.645334,17.448132,203
2017-12-07 06:04,-6.9,12.974252,16.777050000000003,201
2017-12-07 06:06,-6.9,13.197946000000002,15.211192,203
2017-12-07 06:08,-6.9,14.092722,17.671826000000003,200
2017-12-07 06:10,-7,13.42164,15.211192,203
2017-12-07 06:12,-6.9,14.54011,17.224438000000003,197
2017-12-07 06:14,-6.9,12.974252,16.105968,202
2017-12-07 06:16,-6.8,11.408394,14.54011,207
2017-12-07 06:18,-6.8,11.632088000000001,14.763804,199
2017-12-07 06:20,-6.7,13.197946000000002,17.000744,196
2017-12-07 06:22,-6.9,15.65858,21.027236000000002,203
2017-12-07 06:24,-6.9,14.092722,17.89552,196
2017-12-07 06:26,-6.9,13.645334,17.000744,203
2017-12-07 06:28,-6.8,12.303170000000001,16.329662,200
2017-12-07 06:30,-6.8,13.197946000000002,15.211192,202
2017-12-07 06:32,-6.7,10.737312000000001,14.092722,199
2017-12-07 06:34,-6.7,11.408394,14.763804,196
2017-12-07 06:36,-6.7,10.513618000000001,14.763804,205
2017-12-07 06:38,-6.7,11.408394,15.434886000000002,205
2017-12-07 06:40,-6.8,11.855782,14.092722,205
2017-12-07 06:42,-6.8,12.974252,17.224438000000003,204
2017-12-07 06:44,-6.8,14.763804,17.448132,197
2017-12-07 06:46,-6.8,14.092722,16.553356,196
2017-12-07 06:48,-6.9,15.65858,19.237684,200
2017-12-07 06:50,-6.9,13.197946000000002,17.224438000000003,201
2017-12-07 06:52,-6.9,14.092722,17.671826000000003,199
2017-12-07 06:54,-6.8,13.645334,16.553356,202
2017-12-07 06:56,-6.8,14.316416000000002,17.224438000000003,204
2017-12-07 06:58,-6.8,12.303170000000001,16.553356,204
2017-12-07 07:00,-6.8,10.737312000000001,12.526864,199
2017-12-07 07:02,-6.7,12.079476000000001,14.316416000000002,214
2017-12-07 07:04,-6.8,12.750558000000002,16.105968,200
2017-12-07 07:06,-6.8,14.54011,19.908766000000004,202
2017-12-07 07:08,-6.8,15.434886000000002,19.01399,204
2017-12-07 07:10,-6.9,15.211192,18.566602000000003,205
2017-12-07 07:12,-6.9,12.303170000000001,15.211192,203
2017-12-07 07:14,-6.8,13.42164,18.790296,200
2017-12-07 07:16,-6.8,14.54011,17.671826000000003,206
2017-12-07 07:18,-6.8,12.526864,16.105968,205
2017-12-07 07:20,-6.8,14.316416000000002,18.342908,202
2017-12-07 07:22,-6.8,15.65858,19.237684,201
2017-12-07 07:24,-6.8,14.987498000000002,19.01399,209
2017-12-07 07:26,-6.8,11.408394,14.54011,207
2017-12-07 07:28,-6.7,12.303170000000001,14.763804,209
2017-12-07 07:30,-6.7,13.197946000000002,17.671826000000003,199
2017-12-07 07:32,-6.7,15.65858,21.027236000000002,209
2017-12-07 07:34,-6.8,13.645334,16.777050000000003,218
2017-12-07 07:36,-6.7,13.869028000000002,17.000744,208
2017-12-07 07:38,-6.7,12.974252,16.329662,212
2017-12-07 07:40,-6.7,10.066230000000001,12.079476000000001,206
2017-12-07 07:42,-6.7,10.737312000000001,15.434886000000002,209
2017-12-07 07:44,-6.7,12.079476000000001,14.763804,201
2017-12-07 07:46,-6.7,10.513618000000001,13.197946000000002,202
2017-12-07 07:48,-6.7,12.526864,17.448132,197
2017-12-07 07:50,-6.7,12.750558000000002,14.763804,195
2017-12-07 07:52,-6.7,12.079476000000001,14.316416000000002,191
2017-12-07 07:54,-6.6,14.54011,17.448132,197
2017-12-07 07:56,-6.7,12.526864,15.65858,204
2017-12-07 07:58,-6.6,12.303170000000001,17.224438000000003,202
2017-12-07 08:00,-6.7,12.526864,16.329662,192
2017-12-07 08:02,-6.6,13.42164,17.000744,200
2017-12-07 08:04,-6.6,14.987498000000002,18.566602000000003,201
2017-12-07 08:06,-6.5,10.289924,13.645334,194
2017-12-07 08:08,-6.6,15.882274,21.922012000000002,193
2017-12-07 08:10,-6.5,13.197946000000002,21.027236000000002,204
2017-12-07 08:12,-6.5,15.65858,20.579848,204
2017-12-07 08:14,-6.6,15.882274,20.579848,203
2017-12-07 08:16,-6.6,14.54011,17.89552,199
2017-12-07 08:18,-6.6,13.869028000000002,20.132460000000002,206
2017-12-07 08:20,-6.6,14.987498000000002,18.342908,196
2017-12-07 08:22,-6.6,12.750558000000002,16.105968,204
2017-12-07 08:24,-6.6,16.553356,21.25093,203
2017-12-07 08:26,-6.5,16.329662,19.01399,197
2017-12-07 08:28,-6.5,13.42164,16.105968,201
2017-12-07 08:30,-6.4,11.855782,16.329662,195
2017-12-07 08:32,-6.3,13.645334,20.579848,196
2017-12-07 08:34,-6.4,15.882274,18.342908,203
2017-12-07 08:36,-6.4,13.42164,17.224438000000003,199
2017-12-07 08:38,-6.3,13.869028000000002,17.89552,199
2017-12-07 08:40,-6.3,12.974252,15.211192,198
2017-12-07 08:42,-6.3,14.316416000000002,18.342908,195
2017-12-07 08:44,-6.3,17.000744,20.579848,199
2017-12-07 08:46,-6.2,14.092722,17.000744,192
2017-12-07 08:48,-6.2,17.000744,19.908766000000004,195
2017-12-07 08:50,-6.3,15.882274,20.579848,195
2017-12-07 08:52,-6.3,18.566602000000003,23.711564,189
2017-12-07 08:54,-6.3,15.882274,19.237684,202
2017-12-07 08:56,-6.2,13.197946000000002,16.329662,200
2017-12-07 08:58,-6.2,12.526864,14.316416000000002,210
2017-12-07 09:00,-6.2,11.632088000000001,14.316416000000002,215
2017-12-07 09:02,-6.1,10.961006000000001,14.987498000000002,213
2017-12-07 09:04,-6.2,14.092722,18.566602000000003,203
2017-12-07 09:06,-6.2,14.54011,17.89552,196
2017-12-07 09:08,-6.3,14.987498000000002,19.461378,214
2017-12-07 09:10,-6.4,17.224438000000003,20.803542000000004,212
2017-12-07 09:12,-6.3,12.974252,19.01399,197
2017-12-07 09:14,-6.3,13.42164,17.224438000000003,210
2017-12-07 09:16,-6.1,11.855782,18.790296,193
2017-12-07 09:18,-6.3,18.790296,22.369400000000002,194
2017-12-07 09:20,-6.3,16.553356,20.803542000000004,194
2017-12-07 09:22,-6.3,14.763804,18.342908,197
2017-12-07 09:24,-6.3,13.645334,17.000744,203
2017-12-07 09:26,-6.3,14.987498000000002,19.685072,193
2017-12-07 09:28,-6.4,17.89552,20.132460000000002,189
2017-12-07 09:30,-6.4,14.763804,19.685072,200
2017-12-07 09:32,-6.2,12.526864,15.65858,194
2017-12-07 09:34,-6.4,16.105968,19.908766000000004,193
2017-12-07 09:36,-6.5,17.224438000000003,19.685072,188
2017-12-07 09:38,-6.5,17.448132,21.474624000000002,187
2017-12-07 09:40,-6.5,18.119214,20.803542000000004,184
2017-12-07 09:42,-6.6,17.89552,22.369400000000002,195
2017-12-07 09:44,-6.6,17.000744,19.685072,189
2017-12-07 09:46,-6.6,17.000744,20.356154,198
2017-12-07 09:48,-6.5,15.434886000000002,19.685072,202
2017-12-07 09:50,-6.6,16.105968,20.579848,195
2017-12-07 09:52,-6.6,15.65858,22.369400000000002,193
2017-12-07 09:54,-6.5,15.65858,19.685072,198
2017-12-07 09:56,-6.5,16.777050000000003,19.908766000000004,197
2017-12-07 09:58,-6.6,14.987498000000002,18.566602000000003,192
2017-12-07 10:00,-6.6,16.105968,20.579848,187
2017-12-07 10:02,-6.6,15.434886000000002,17.448132,203
2017-12-07 10:04,-6.5,13.645334,16.105968,202
2017-12-07 10:06,-6.4,13.869028000000002,19.237684,198
2017-12-07 10:08,-6.4,12.303170000000001,16.553356,212
2017-12-07 10:10,-6.3,11.408394,14.316416000000002,207
2017-12-07 10:12,-6.2,14.316416000000002,21.027236000000002,212
2017-12-07 10:14,-6.5,14.316416000000002,18.790296,208
2017-12-07 10:16,-6.4,16.777050000000003,20.356154,205
2017-12-07 10:18,-6.6,15.211192,19.01399,204
2017-12-07 10:20,-6.7,15.882274,21.474624000000002,206
2017-12-07 10:22,-6.8,16.105968,20.132460000000002,208
2017-12-07 10:24,-6.8,16.777050000000003,20.803542000000004,204
2017-12-07 10:26,-6.8,17.224438000000003,21.027236000000002,203
2017-12-07 10:28,-6.6,15.882274,19.01399,202
2017-12-07 10:30,-6.6,16.777050000000003,21.25093,210
2017-12-07 10:32,-6.7,14.316416000000002,18.566602000000003,204
2017-12-07 10:34,-6.6,13.645334,17.000744,207
2017-12-07 10:36,-6.3,13.197946000000002,20.132460000000002,193
2017-12-07 10:38,-6.5,15.65858,18.790296,191
2017-12-07 10:40,-6.6,14.54011,17.448132,191
2017-12-07 10:42,-6.4,14.316416000000002,17.89552,186
2017-12-07 10:44,-6.6,18.119214,23.264176000000003,201
2017-12-07 10:46,-6.7,17.224438000000003,19.461378,199
2017-12-07 10:48,-6.6,15.882274,18.790296,194
2017-12-07 10:50,-6.4,14.763804,19.685072,193
2017-12-07 10:52,-6.5,16.777050000000003,18.790296,201
2017-12-07 10:54,-6.7,15.434886000000002,19.461378,206
2017-12-07 10:56,-6.7,17.224438000000003,20.579848,200
2017-12-07 10:58,-6.5,16.329662,20.803542000000004,207
2017-12-07 11:00,-6.7,15.882274,21.474624000000002,216
2017-12-07 11:02,-6.6,13.869028000000002,18.342908,199
2017-12-07 11:04,-6.3,14.54011,18.566602000000003,192
2017-12-07 11:06,-6.4,16.329662,18.790296,191
2017-12-07 11:08,-6.5,18.119214,22.593094,190
2017-12-07 11:10,-6.6,16.329662,18.566602000000003,198
2017-12-07 11:12,-6.5,16.105968,20.579848,206
2017-12-07 11:14,-6.5,14.987498000000002,19.461378,201
2017-12-07 11:16,-6.5,14.54011,19.908766000000004,193
2017-12-07 11:18,-6.3,17.224438000000003,20.803542000000004,205
2017-12-07 11:20,-6.3,15.211192,17.89552,205
2017-12-07 11:22,-6.2,17.000744,23.264176000000003,214
2017-12-07 11:24,-6.1,14.54011,18.119214,206
2017-12-07 11:26,-6.1,17.448132,21.922012000000002,201
2017-12-07 11:28,-6.2,17.224438000000003,25.277422000000005,200
2017-12-07 11:30,-6.1,14.987498000000002,20.356154,200
2017-12-07 11:32,-6,18.566602000000003,23.040482000000004,194
2017-12-07 11:34,-6,17.224438000000003,22.593094,189
2017-12-07 11:36,-6.1,20.579848,23.040482000000004,192
2017-12-07 11:38,-6.1,17.671826000000003,22.816788,201
2017-12-07 11:40,-6,17.89552,21.922012000000002,204
2017-12-07 11:42,-6,18.342908,24.830034,205
2017-12-07 11:44,-6.1,20.579848,26.619586,204
2017-12-07 11:46,-6.1,18.566602000000003,24.158952000000003,203
2017-12-07 11:48,-6.1,18.566602000000003,25.053728,203
2017-12-07 11:50,-5.9,12.750558000000002,15.434886000000002,199
2017-12-07 11:52,-5.9,13.197946000000002,15.434886000000002,206
2017-12-07 11:54,-5.6,16.105968,21.027236000000002,196
2017-12-07 11:56,-5.8,16.105968,20.356154,193
2017-12-07 11:58,-5.9,16.777050000000003,21.698318,191
2017-12-07 12:00,-5.8,17.224438000000003,23.711564,200
2017-12-07 12:02,-5.7,15.434886000000002,21.698318,209
2017-12-07 12:04,-5.5,13.869028000000002,18.119214,207
2017-12-07 12:06,-5.4,11.632088000000001,16.329662,198
2017-12-07 12:08,-5.3,16.777050000000003,20.579848,204
2017-12-07 12:10,-5.5,18.342908,23.040482000000004,195
2017-12-07 12:12,-5.5,17.671826000000003,20.579848,198
2017-12-07 12:14,-5.5,16.329662,20.803542000000004,197
2017-12-07 12:16,-5.4,15.65858,23.040482000000004,185
2017-12-07 12:18,-5.4,17.224438000000003,22.145706,185
2017-12-07 12:20,-5.4,17.000744,20.579848,182
2017-12-07 12:22,-5.2,14.987498000000002,18.342908,185
2017-12-07 12:24,-5.1,14.092722,17.000744,188
2017-12-07 12:26,-5,15.65858,18.566602000000003,201
2017-12-07 12:28,-5,15.65858,19.461378,206
2017-12-07 12:30,-5,15.882274,18.790296,200
2017-12-07 12:32,-5,15.65858,18.790296,203
2017-12-07 12:34,-4.9,15.434886000000002,19.908766000000004,177
2017-12-07 12:36,-4.9,14.987498000000002,17.89552,188
2017-12-07 12:38,-4.8,13.197946000000002,15.211192,199
2017-12-07 12:40,-4.7,17.89552,21.027236000000002,187
2017-12-07 12:42,-4.8,18.342908,20.803542000000004,178
2017-12-07 12:44,-4.9,19.908766000000004,24.830034,181
2017-12-07 12:46,-4.7,15.65858,21.922012000000002,195
2017-12-07 12:48,-4.9,19.461378,23.935258,192
2017-12-07 12:50,-5,17.671826000000003,21.698318,187
2017-12-07 12:52,-4.7,15.434886000000002,21.698318,194
2017-12-07 12:54,-4.7,16.777050000000003,21.474624000000002,202
2017-12-07 12:56,-4.7,17.89552,21.922012000000002,199
2017-12-07 12:58,-4.8,18.119214,21.698318,200
2017-12-07 13:00,-4.8,19.237684,25.72481,190
2017-12-07 13:02,-4.8,18.566602000000003,23.711564,182
2017-12-07 13:04,-4.6,17.448132,21.922012000000002,185
2017-12-07 13:06,-4.6,16.553356,22.145706,194
2017-12-07 13:08,-4.6,15.434886000000002,18.119214,205
2017-12-07 13:10,-4.5,17.671826000000003,21.474624000000002,200
2017-12-07 13:12,-4.6,18.566602000000003,22.145706,203
2017-12-07 13:14,-4.6,17.89552,25.053728,205
2017-12-07 13:16,-4.7,17.448132,22.369400000000002,203
2017-12-07 13:18,-4.6,16.329662,21.027236000000002,193
2017-12-07 13:20,-4.6,15.434886000000002,20.132460000000002,182
2017-12-07 13:22,-4.5,17.000744,22.145706,185
2017-12-07 13:24,-4.5,16.329662,21.027236000000002,187
2017-12-07 13:26,-4.4,16.777050000000003,21.474624000000002,192
2017-12-07 13:28,-4.5,14.987498000000002,18.790296,207
2017-12-07 13:30,-4.5,14.763804,17.224438000000003,201
2017-12-07 13:32,-4.3,11.855782,15.434886000000002,200
2017-12-07 13:34,-4.1,13.645334,21.698318,187
2017-12-07 13:36,-4.3,16.777050000000003,21.474624000000002,196
2017-12-07 13:38,-4.4,18.342908,21.474624000000002,206
2017-12-07 13:40,-4.5,17.448132,20.356154,208
2017-12-07 13:42,-4.4,16.329662,18.342908,207
2017-12-07 13:44,-4.4,12.526864,16.777050000000003,206
2017-12-07 13:46,-4.3,12.750558000000002,15.211192,200
2017-12-07 13:48,-4.1,15.65858,20.579848,182
2017-12-07 13:50,-4.2,18.119214,20.356154,185
2017-12-07 13:52,-4.3,18.790296,22.145706,180
2017-12-07 13:54,-4.3,18.790296,22.816788,188
2017-12-07 13:56,-4.2,17.671826000000003,19.908766000000004,190
2017-12-07 13:58,-4.2,12.303170000000001,17.89552,199
2017-12-07 14:00,-4,15.434886000000002,19.685072,184
2017-12-07 14:02,-4,16.329662,19.461378,184
2017-12-07 14:04,-4,14.54011,18.342908,188
2017-12-07 14:06,-4,15.211192,18.342908,186
2017-12-07 14:08,-4.1,15.65858,17.89552,189
2017-12-07 14:10,-4.1,14.316416000000002,17.224438000000003,177
2017-12-07 14:12,-4,16.105968,21.698318,192
2017-12-07 14:14,-4.1,17.000744,19.461378,194
2017-12-07 14:16,-4.2,19.908766000000004,23.264176000000003,193
2017-12-07 14:18,-4.2,17.671826000000003,21.027236000000002,190
2017-12-07 14:20,-4.2,16.777050000000003,21.25093,191
2017-12-07 14:22,-4.2,14.54011,23.040482000000004,197
2017-12-07 14:24,-4.2,17.89552,22.369400000000002,196
2017-12-07 14:26,-4.2,14.763804,19.01399,198
2017-12-07 14:28,-4,12.750558000000002,16.105968,198
2017-12-07 14:30,-4,17.000744,21.027236000000002,179
2017-12-07 14:32,-4.1,17.000744,19.461378,187
2017-12-07 14:34,-4.1,16.777050000000003,20.132460000000002,188
2017-12-07 14:36,-4.1,16.105968,22.593094,183
2017-12-07 14:38,-4,14.54011,18.790296,183
2017-12-07 14:40,-4,13.42164,16.105968,181
2017-12-07 14:42,-3.9,13.42164,16.553356,193
2017-12-07 14:44,-3.9,15.882274,17.448132,194
2017-12-07 14:46,-3.9,17.224438000000003,21.698318,197
2017-12-07 14:48,-4,15.65858,20.579848,199
2017-12-07 14:50,-4,17.000744,22.593094,210
2017-12-07 14:52,-3.9,15.882274,21.25093,208
2017-12-07 14:54,-3.9,13.42164,17.000744,201
2017-12-07 14:56,-3.9,13.42164,16.329662,195
2017-12-07 14:58,-3.8,14.316416000000002,19.461378,188
2017-12-07 15:00,-3.7,15.65858,19.237684,179
2017-12-07 15:02,-3.8,17.224438000000003,20.356154,176
2017-12-07 15:04,-3.8,17.671826000000003,21.922012000000002,187
2017-12-07 15:06,-3.8,16.553356,20.356154,190
2017-12-07 15:08,-3.9,15.211192,20.803542000000004,198
2017-12-07 15:10,-3.7,14.987498000000002,19.01399,192
2017-12-07 15:12,-3.8,16.553356,22.145706,205
2017-12-07 15:14,-3.8,14.763804,18.119214,199
2017-12-07 15:16,-3.8,17.448132,21.25093,198
2017-12-07 15:18,-3.9,18.790296,22.816788,201
2017-12-07 15:20,-3.8,13.645334,18.566602000000003,201
2017-12-07 15:22,-3.8,14.987498000000002,18.790296,204
2017-12-07 15:24,-3.7,14.316416000000002,18.119214,200
2017-12-07 15:26,-3.8,14.763804,19.461378,200
2017-12-07 15:28,-3.8,13.42164,15.434886000000002,206
2017-12-07 15:30,-3.9,15.65858,20.803542000000004,204
2017-12-07 15:32,-3.8,11.855782,16.329662,188
2017-12-07 15:34,-3.7,12.079476000000001,17.448132,193
2017-12-07 15:36,-3.7,13.197946000000002,17.224438000000003,184
2017-12-07 15:38,-3.7,12.974252,15.65858,182
2017-12-07 15:40,-3.8,12.526864,21.25093,180
2017-12-07 15:42,-3.9,13.869028000000002,17.224438000000003,180
2017-12-07 15:44,-3.9,13.645334,16.777050000000003,193
2017-12-07 15:46,-3.9,12.526864,15.434886000000002,183
2017-12-07 15:48,-3.8,12.079476000000001,14.092722,186
2017-12-07 15:50,-3.8,13.869028000000002,17.89552,184
2017-12-07 15:52,-3.8,14.763804,18.790296,191
2017-12-07 15:54,-3.9,15.65858,18.342908,186
2017-12-07 15:56,-4,19.01399,25.053728,188
2017-12-07 15:58,-4,16.553356,20.803542000000004,179
2017-12-07 16:00,-3.9,17.89552,20.579848,186
2017-12-07 16:02,-3.9,17.448132,19.908766000000004,185
2017-12-07 16:04,-4,17.224438000000003,20.356154,186
2017-12-07 16:06,-4,14.092722,22.145706,184
2017-12-07 16:08,-4,17.000744,21.027236000000002,191
2017-12-07 16:10,-4,14.54011,17.89552,196
2017-12-07 16:12,-4,16.329662,22.369400000000002,191
2017-12-07 16:14,-4,15.434886000000002,19.237684,193
2017-12-07 16:16,-4,15.882274,19.237684,188
2017-12-07 16:18,-4,16.105968,20.132460000000002,185
2017-12-07 16:20,-4.1,17.000744,21.698318,197
2017-12-07 16:22,-4.1,15.434886000000002,21.474624000000002,192
2017-12-07 16:24,-4.1,15.882274,19.461378,192
2017-12-07 16:26,-4,11.408394,13.197946000000002,189
2017-12-07 16:28,-4.1,12.750558000000002,16.329662,195
2017-12-07 16:30,-4,9.618842,11.408394,194
2017-12-07 16:32,-4,10.289924,12.750558000000002,192
2017-12-07 16:34,-4.1,12.750558000000002,15.211192,192
2017-12-07 16:36,-4.1,13.645334,17.671826000000003,200
2017-12-07 16:38,-4.1,15.882274,20.132460000000002,195
2017-12-07 16:40,-4.1,17.448132,20.803542000000004,195
2017-12-07 16:42,-4.1,17.000744,19.908766000000004,190
2017-12-07 16:44,-4.1,15.211192,18.342908,188
2017-12-07 16:46,-4.1,17.000744,22.816788,180
2017-12-07 16:48,-4.1,15.882274,20.132460000000002,181
2017-12-07 16:50,-4.1,17.224438000000003,20.803542000000004,193
2017-12-07 16:52,-4.1,15.434886000000002,19.685072,190
2017-12-07 16:54,-4.2,14.987498000000002,18.342908,196
2017-12-07 16:56,-4.2,15.211192,17.89552,196
2017-12-07 16:58,-4.2,11.855782,14.092722,186
2017-12-07 17:00,-4.2,13.869028000000002,15.65858,183
2017-12-07 17:02,-4.2,14.092722,18.342908,179
2017-12-07 17:04,-4.2,12.526864,15.434886000000002,190
2017-12-07 17:06,-4.2,11.184700000000001,14.316416000000002,194
2017-12-07 17:08,-4.2,13.645334,20.803542000000004,189
2017-12-07 17:10,-4.3,17.671826000000003,20.803542000000004,180
2017-12-07 17:12,-4.3,15.434886000000002,19.908766000000004,181
2017-12-07 17:14,-4.2,12.750558000000002,16.105968,180
2017-12-07 17:16,-4.3,12.303170000000001,16.105968,184
2017-12-07 17:18,-4.2,12.750558000000002,15.434886000000002,187
2017-12-07 17:20,-4.2,10.066230000000001,12.303170000000001,189
2017-12-07 17:22,-4.2,10.961006000000001,13.869028000000002,181
2017-12-07 17:24,-4.3,14.316416000000002,16.777050000000003,182
2017-12-07 17:26,-4.3,13.645334,17.89552,181
2017-12-07 17:28,-4.3,13.869028000000002,17.671826000000003,180
2017-12-07 17:30,-4.3,11.632088000000001,15.211192,181
2017-12-07 17:32,-4.2,9.171454,14.092722,179
2017-12-07 17:34,-4.2,11.184700000000001,13.42164,177
2017-12-07 17:36,-4.3,12.303170000000001,14.54011,180
2017-12-07 17:38,-4.4,12.974252,16.553356,178
2017-12-07 17:40,-4.4,11.408394,14.316416000000002,185
2017-12-07 17:42,-4.3,10.513618000000001,19.01399,176
2017-12-07 17:44,-4.4,13.645334,17.671826000000003,185
2017-12-07 17:46,-4.4,11.408394,16.553356,188
2017-12-07 17:48,-4.4,14.316416000000002,16.329662,194
2017-12-07 17:50,-4.4,9.171454,12.750558000000002,185
2017-12-07 17:52,-4.4,11.184700000000001,14.092722,175
2017-12-07 17:54,-4.4,11.184700000000001,13.869028000000002,196
2017-12-07 17:56,-4.4,10.513618000000001,13.197946000000002,174
2017-12-07 17:58,-4.4,11.408394,14.763804,175
2017-12-07 18:00,-4.4,11.855782,15.882274,186
2017-12-07 18:02,-4.4,12.303170000000001,15.65858,179
2017-12-07 18:04,-4.4,10.289924,12.974252,192
2017-12-07 18:06,-4.4,14.54011,17.89552,174
2017-12-07 18:08,-4.4,14.763804,17.89552,185
2017-12-07 18:10,-4.4,11.408394,14.54011,186
2017-12-07 18:12,-4.4,13.42164,17.448132,179
2017-12-07 18:14,-4.4,13.197946000000002,16.105968,179
2017-12-07 18:16,-4.4,11.632088000000001,14.54011,188
2017-12-07 18:18,-4.5,13.42164,18.566602000000003,179
2017-12-07 18:20,-4.5,14.092722,18.119214,182
2017-12-07 18:22,-4.5,12.750558000000002,15.882274,192
2017-12-07 18:24,-4.4,12.750558000000002,15.434886000000002,195
2017-12-07 18:26,-4.4,9.842536,11.855782,174
2017-12-07 18:28,-4.5,16.329662,23.711564,176
2017-12-07 18:30,-4.4,11.184700000000001,14.316416000000002,184
2017-12-07 18:32,-4.4,12.750558000000002,16.553356,176
2017-12-07 18:34,-4.4,12.303170000000001,14.763804,183
2017-12-07 18:36,-4.4,10.513618000000001,14.092722,181
2017-12-07 18:38,-4.5,15.434886000000002,18.566602000000003,182
2017-12-07 18:40,-4.6,13.869028000000002,20.356154,183
2017-12-07 18:42,-4.5,11.632088000000001,15.65858,184
2017-12-07 18:44,-4.5,15.65858,19.461378,180
2017-12-07 18:46,-4.6,15.434886000000002,18.119214,181
2017-12-07 18:48,-4.6,12.303170000000001,15.882274,186
2017-12-07 18:50,-4.6,12.526864,14.763804,182
2017-12-07 18:52,-4.6,14.316416000000002,17.671826000000003,184
2017-12-07 18:54,-4.6,13.197946000000002,19.01399,187
2017-12-07 18:56,-4.6,12.974252,17.89552,175
2017-12-07 18:58,-4.6,15.434886000000002,21.698318,180
2017-12-07 19:00,-4.6,13.869028000000002,18.566602000000003,181
2017-12-07 19:02,-4.6,16.553356,20.356154,180
2017-12-07 19:04,-4.6,14.763804,18.566602000000003,180
2017-12-07 19:06,-4.6,16.329662,20.356154,175
2017-12-07 19:08,-4.6,14.54011,16.777050000000003,183
2017-12-07 19:10,-4.7,14.316416000000002,19.461378,183
2017-12-07 19:12,-4.7,12.079476000000001,14.54011,183
2017-12-07 19:14,-4.7,14.54011,19.908766000000004,185
2017-12-07 19:16,-4.7,17.000744,20.132460000000002,178
2017-12-07 19:18,-4.7,14.763804,20.803542000000004,179
2017-12-07 19:20,-4.7,16.553356,19.685072,180
2017-12-07 19:22,-4.7,16.777050000000003,22.593094,180
2017-12-07 19:24,-4.8,16.553356,19.685072,186
2017-12-07 19:26,-4.8,14.092722,19.685072,186
2017-12-07 19:28,-4.7,15.65858,21.25093,178
2017-12-07 19:30,-4.7,15.65858,20.132460000000002,184
2017-12-07 19:32,-4.7,14.54011,21.027236000000002,186
2017-12-07 19:34,-4.8,15.65858,19.237684,186
2017-12-07 19:36,-4.9,20.132460000000002,24.158952000000003,192
2017-12-07 19:38,-4.9,17.89552,24.158952000000003,186
2017-12-07 19:40,-4.8,14.763804,20.579848,192
2017-12-07 19:42,-4.9,17.89552,22.369400000000002,190
2017-12-07 19:44,-5,18.566602000000003,21.474624000000002,190
2017-12-07 19:46,-5,16.329662,19.908766000000004,183
2017-12-07 19:48,-4.9,18.342908,22.816788,186
2017-12-07 19:50,-5,17.448132,21.474624000000002,183
2017-12-07 19:52,-5,15.882274,20.579848,189
2017-12-07 19:54,-4.8,13.869028000000002,18.119214,190
2017-12-07 19:56,-4.9,17.000744,20.132460000000002,182
2017-12-07 19:58,-5,15.65858,21.25093,186
2017-12-07 20:00,-5.1,18.566602000000003,22.816788,181
2017-12-07 20:02,-5.1,12.750558000000002,15.882274,185
2017-12-07 20:04,-5,15.211192,21.25093,178
2017-12-07 20:06,-5.1,18.342908,24.606340000000003,188
2017-12-07 20:08,-5,14.987498000000002,20.356154,183
2017-12-07 20:10,-5,14.54011,20.803542000000004,182
2017-12-07 20:12,-5.1,14.763804,19.685072,183
2017-12-07 20:14,-5.1,14.763804,20.803542000000004,174
2017-12-07 20:16,-5.1,16.329662,19.908766000000004,179
2017-12-07 20:18,-5.1,14.316416000000002,18.790296,182
2017-12-07 20:20,-5.1,16.553356,18.566602000000003,174
2017-12-07 20:22,-5.1,15.65858,18.790296,176
2017-12-07 20:24,-5.1,14.092722,18.566602000000003,172
2017-12-07 20:26,-5.1,15.211192,18.566602000000003,172
2017-12-07 20:28,-5.1,15.882274,20.356154,178
2017-12-07 20:30,-5.2,17.224438000000003,22.816788,173
2017-12-07 20:32,-5.3,16.777050000000003,21.25093,175
2017-12-07 20:34,-5.4,16.777050000000003,21.25093,177
2017-12-07 20:36,-5.3,15.882274,18.566602000000003,176
2017-12-07 20:38,-5.3,15.882274,17.89552,180
2017-12-07 20:40,-5.3,17.671826000000003,19.908766000000004,169
2017-12-07 20:42,-5.2,16.105968,19.461378,174
2017-12-07 20:44,-5.3,17.89552,21.25093,170
2017-12-07 20:46,-5.3,21.25093,29.303914000000002,177
2017-12-07 20:48,-5.4,20.132460000000002,23.935258,179
2017-12-07 20:50,-5.4,19.01399,22.145706,180
2017-12-07 20:52,-5.3,14.763804,17.89552,180
2017-12-07 20:54,-5.3,15.65858,18.790296,179
2017-12-07 20:56,-5.4,17.000744,23.711564,181
2017-12-07 20:58,-5.5,20.579848,25.72481,177
2017-12-07 21:00,-5.5,19.685072,23.264176000000003,181
2017-12-07 21:02,-5.4,18.119214,21.922012000000002,171
2017-12-07 21:04,-5.5,18.790296,21.698318,172
2017-12-07 21:06,-5.5,17.671826000000003,23.264176000000003,180
2017-12-07 21:08,-5.5,16.105968,19.908766000000004,179
2017-12-07 21:10,-5.5,14.316416000000002,18.566602000000003,180
2017-12-07 21:12,-5.5,16.329662,21.027236000000002,183
2017-12-07 21:14,-5.5,16.105968,20.132460000000002,184
2017-12-07 21:16,-5.5,12.303170000000001,18.790296,176
2017-12-07 21:18,-5.5,13.645334,17.000744,177
2017-12-07 21:20,-5.6,14.092722,18.790296,177
2017-12-07 21:22,-5.5,13.869028000000002,18.342908,175
2017-12-07 21:24,-5.6,15.882274,19.237684,168
2017-12-07 21:26,-5.6,16.553356,19.908766000000004,175
2017-12-07 21:28,-5.6,13.869028000000002,18.790296,179
2017-12-07 21:30,-5.6,14.987498000000002,17.000744,172
2017-12-07 21:32,-5.5,16.553356,19.461378,168
2017-12-07 21:34,-5.6,16.777050000000003,22.816788,172
2017-12-07 21:36,-5.6,15.65858,18.790296,185
2017-12-07 21:38,-5.7,16.777050000000003,19.685072,178
2017-12-07 21:40,-5.6,15.211192,19.685072,178
2017-12-07 21:42,-5.8,14.987498000000002,20.132460000000002,180
2017-12-07 21:44,-5.7,14.092722,17.89552,172
2017-12-07 21:46,-5.7,12.750558000000002,16.105968,176
2017-12-07 21:48,-5.7,18.119214,21.698318,181
2017-12-07 21:50,-5.8,17.448132,20.132460000000002,179
2017-12-07 21:52,-5.8,16.105968,20.803542000000004,177
2017-12-07 21:54,-5.7,15.65858,20.803542000000004,175
2017-12-07 21:56,-5.7,17.224438000000003,23.264176000000003,181
2017-12-07 21:58,-5.7,17.000744,21.25093,173
2017-12-07 22:00,-5.7,17.000744,21.027236000000002,169
2017-12-07 22:02,-5.7,18.566602000000003,23.264176000000003,168
2017-12-07 22:04,-5.8,20.356154,26.619586,175
2017-12-07 22:06,-5.8,20.356154,26.395892000000003,176
2017-12-07 22:08,-5.7,18.566602000000003,23.935258,175
2017-12-07 22:10,-5.9,19.908766000000004,24.830034,179
2017-12-07 22:12,-5.9,17.671826000000003,20.132460000000002,172
2017-12-07 22:14,-5.9,18.342908,22.593094,178
2017-12-07 22:16,-5.8,18.342908,23.264176000000003,177
2017-12-07 22:18,-5.8,18.566602000000003,26.619586,173
2017-12-07 22:20,-5.8,21.25093,25.501116000000003,175
2017-12-07 22:22,-5.9,19.461378,23.711564,180
2017-12-07 22:24,-5.9,17.89552,20.579848,175
2017-12-07 22:26,-5.9,18.790296,24.158952000000003,171
2017-12-07 22:28,-5.9,16.777050000000003,19.908766000000004,177
2017-12-07 22:30,-5.9,19.685072,24.382646,182
2017-12-07 22:32,-6,17.89552,22.369400000000002,174
2017-12-07 22:34,-5.9,19.01399,23.264176000000003,179
2017-12-07 22:36,-5.9,14.987498000000002,18.342908,173
2017-12-07 22:38,-5.9,17.448132,20.803542000000004,169
2017-12-07 22:40,-5.9,16.105968,20.579848,167
2017-12-07 22:42,-5.8,16.329662,20.579848,167
2017-12-07 22:44,-5.9,15.882274,19.461378,179
2017-12-07 22:46,-5.8,16.329662,21.698318,178
2017-12-07 22:48,-6,17.000744,21.474624000000002,180
2017-12-07 22:50,-5.8,15.65858,20.803542000000004,170
2017-12-07 22:52,-5.9,16.553356,19.461378,170
2017-12-07 22:54,-5.9,18.342908,23.935258,167
2017-12-07 22:56,-5.9,17.000744,21.698318,170
2017-12-07 22:58,-6,18.790296,24.830034,174
2017-12-07 23:00,-6,15.65858,20.803542000000004,177
2017-12-07 23:02,-6,14.763804,17.000744,179
2017-12-07 23:04,-5.9,15.434886000000002,19.685072,174
2017-12-07 23:06,-6.1,17.448132,19.908766000000004,178
2017-12-07 23:08,-6,15.882274,19.01399,174
2017-12-07 23:10,-5.9,16.329662,19.461378,169
2017-12-07 23:12,-6,14.987498000000002,17.000744,175
2017-12-07 23:14,-6,14.092722,17.671826000000003,177
2017-12-07 23:16,-6,15.211192,21.922012000000002,181
2017-12-07 23:18,-5.9,16.553356,21.027236000000002,165
2017-12-07 23:20,-6,18.790296,21.922012000000002,169
2017-12-07 23:22,-6,18.566602000000003,23.711564,167
2017-12-07 23:24,-6.1,19.01399,22.593094,174
2017-12-07 23:26,-6,16.105968,20.356154,171
2017-12-07 23:28,-6,17.89552,21.698318,171
2017-12-07 23:30,-5.9,15.434886000000002,17.89552,168
2017-12-07 23:32,-5.9,18.790296,22.816788,180
2017-12-07 23:34,-5.9,14.987498000000002,19.237684,170
2017-12-07 23:36,-5.9,13.869028000000002,17.000744,177
2017-12-07 23:38,-5.9,14.092722,17.89552,174
2017-12-07 23:40,-6,15.882274,18.342908,169
2017-12-07 23:42,-6,15.882274,22.816788,162
2017-12-07 23:44,-6,15.434886000000002,21.027236000000002,176
2017-12-07 23:46,-6,14.092722,17.448132,182
2017-12-07 23:48,-6,16.553356,21.474624000000002,175
2017-12-07 23:50,-6,15.65858,18.790296,172
2017-12-07 23:52,-6,13.645334,14.987498000000002,176
2017-12-07 23:54,-6,13.869028000000002,19.01399,171
2017-12-07 23:56,-5.9,13.197946000000002,17.448132,167
2017-12-07 23:58,-6,16.105968,21.474624000000002,163
2017-12-08 00:00,-6.1,15.882274,18.342908,157
2017-12-08 00:02,-6.1,14.763804,17.671826000000003,169
2017-12-08 00:04,-6.1,16.329662,18.790296,173
2017-12-08 00:06,-6.1,14.987498000000002,18.566602000000003,169
2017-12-08 00:08,-6.2,16.329662,20.132460000000002,168
2017-12-08 00:10,-6.1,12.750558000000002,15.434886000000002,161
2017-12-08 00:12,-6.1,14.763804,17.448132,171
2017-12-08 00:14,-6.2,12.974252,16.105968,167
2017-12-08 00:16,-6.1,15.65858,19.685072,155
2017-12-08 00:18,-6.2,13.42164,16.553356,164
2017-12-08 00:20,-6.1,13.42164,16.329662,162
2017-12-08 00:22,-6.1,11.632088000000001,12.974252,173
2017-12-08 00:24,-6.1,11.855782,14.092722,162
2017-12-08 00:26,-6.1,11.855782,17.000744,165
2017-12-08 00:28,-6.1,13.645334,17.671826000000003,163
2017-12-08 00:30,-6.1,12.750558000000002,16.777050000000003,168
2017-12-08 00:32,-6.1,13.869028000000002,16.329662,175
2017-12-08 00:34,-6,13.42164,15.211192,173
2017-12-08 00:36,-6.1,13.645334,17.89552,171
2017-12-08 00:38,-6.1,13.645334,17.000744,170
2017-12-08 00:40,-6.1,13.645334,17.000744,169
2017-12-08 00:42,-6.1,13.869028000000002,16.777050000000003,164
2017-12-08 00:44,-6.2,17.224438000000003,22.816788,173
2017-12-08 00:46,-6.3,16.553356,21.25093,173
2017-12-08 00:48,-6.2,16.553356,19.685072,171
2017-12-08 00:50,-6.2,13.869028000000002,17.000744,175
2017-12-08 00:52,-6.3,16.105968,20.132460000000002,169
2017-12-08 00:54,-6.2,16.329662,19.685072,162
2017-12-08 00:56,-6.2,15.65858,20.803542000000004,165
2017-12-08 00:58,-6.3,17.448132,22.593094,163
2017-12-08 01:00,-6.3,15.882274,20.132460000000002,163
2017-12-08 01:02,-6.2,18.342908,21.698318,158
2017-12-08 01:04,-6.3,18.342908,22.816788,164
2017-12-08 01:06,-6.4,19.908766000000004,23.040482000000004,162
2017-12-08 01:08,-6.4,19.01399,24.606340000000003,162
2017-12-08 01:10,-6.3,19.461378,22.145706,162
2017-12-08 01:12,-6.2,19.237684,22.593094,156
2017-12-08 01:14,-6.2,18.790296,24.830034,164
2017-12-08 01:16,-6.4,19.461378,24.382646,160
2017-12-08 01:18,-6.4,18.342908,23.264176000000003,155
2017-12-08 01:20,-6.4,19.908766000000004,24.382646,163
2017-12-08 01:22,-6.3,19.908766000000004,26.395892000000003,158
2017-12-08 01:24,-6.3,19.01399,23.711564,161
2017-12-08 01:26,-6.1,19.01399,26.395892000000003,162
2017-12-08 01:28,-6.2,17.89552,24.830034,162
2017-12-08 01:30,-6.3,18.119214,22.816788,158
2017-12-08 01:32,-6.2,19.461378,24.158952000000003,164
2017-12-08 01:34,-6.3,17.224438000000003,21.474624000000002,156
2017-12-08 01:36,-6.3,16.553356,19.237684,158
2017-12-08 01:38,-6.1,16.329662,19.01399,155
2017-12-08 01:40,-6.2,16.553356,21.698318,156
2017-12-08 01:42,-6.3,16.105968,19.01399,159
2017-12-08 01:44,-6.3,15.434886000000002,20.132460000000002,160
2017-12-08 01:46,-6.4,17.448132,21.027236000000002,159
2017-12-08 01:48,-6.2,15.434886000000002,19.237684,160
2017-12-08 01:50,-6.2,16.105968,19.908766000000004,158
2017-12-08 01:52,-6.2,14.54011,17.000744,157
2017-12-08 01:54,-6.2,17.000744,23.040482000000004,165
2017-12-08 01:56,-6.3,18.342908,21.474624000000002,160
2017-12-08 01:58,-6.3,16.553356,18.119214,155
2017-12-08 02:00,-6.3,17.671826000000003,21.698318,151
2017-12-08 02:02,-6.3,17.89552,22.593094,155
2017-12-08 02:04,-6.4,17.671826000000003,22.369400000000002,160
2017-12-08 02:06,-6.3,19.01399,21.698318,152
2017-12-08 02:08,-6.3,19.01399,22.369400000000002,158
2017-12-08 02:10,-6.4,18.119214,21.027236000000002,162
2017-12-08 02:12,-6.3,18.790296,21.698318,161
2017-12-08 02:14,-6.4,18.566602000000003,24.606340000000003,163
2017-12-08 02:16,-6.5,17.671826000000003,20.803542000000004,161
2017-12-08 02:18,-6.4,17.89552,21.25093,160
2017-12-08 02:20,-6.3,18.566602000000003,21.698318,166
2017-12-08 02:22,-6.2,20.356154,26.395892000000003,163
2017-12-08 02:24,-6.2,19.908766000000004,25.72481,162
2017-12-08 02:26,-6.4,19.685072,23.711564,160
2017-12-08 02:28,-6.2,18.566602000000003,25.501116000000003,164
2017-12-08 02:30,-6.3,20.579848,25.053728,161
2017-12-08 02:32,-6.3,21.027236000000002,25.053728,164
2017-12-08 02:34,-6.2,18.566602000000003,22.145706,164
2017-12-08 02:36,-6.3,19.908766000000004,23.040482000000004,161
2017-12-08 02:38,-6.3,20.803542000000004,26.84328,161
2017-12-08 02:40,-6.3,19.685072,24.606340000000003,164
2017-12-08 02:42,-6.4,21.25093,26.619586,163
2017-12-08 02:44,-6.3,20.356154,25.053728,162
2017-12-08 02:46,-6.3,19.461378,24.830034,164
2017-12-08 02:48,-6.2,20.579848,25.053728,164
2017-12-08 02:50,-6.3,19.461378,23.935258,164
2017-12-08 02:52,-6.2,19.461378,25.501116000000003,159
2017-12-08 02:54,-6.1,19.461378,24.158952000000003,163
2017-12-08 02:56,-6.3,19.237684,23.48787,169
2017-12-08 02:58,-6.2,19.685072,22.145706,164
2017-12-08 03:00,-6.2,19.01399,22.145706,167
2017-12-08 03:02,-6.3,19.237684,24.158952000000003,165
2017-12-08 03:04,-6.3,19.01399,22.145706,162
2017-12-08 03:06,-6.2,17.671826000000003,21.027236000000002,166
2017-12-08 03:08,-6.3,17.000744,20.356154,164
2017-12-08 03:10,-6.2,15.882274,18.790296,166
2017-12-08 03:12,-6.2,19.237684,23.935258,171
2017-12-08 03:14,-6.3,21.027236000000002,24.606340000000003,159
2017-12-08 03:16,-6.2,19.461378,23.48787,166
2017-12-08 03:18,-6.3,18.119214,24.830034,164
2017-12-08 03:20,-6.2,20.356154,28.632832000000004,166
2017-12-08 03:22,-6.2,20.579848,24.382646,157
2017-12-08 03:24,-6.3,20.803542000000004,23.264176000000003,164
2017-12-08 03:26,-6.2,22.593094,28.632832000000004,162
2017-12-08 03:28,-6.2,22.816788,27.514362000000002,162
2017-12-08 03:30,-6.2,22.593094,30.646078,163
2017-12-08 03:32,-6.2,21.25093,24.382646,160
2017-12-08 03:34,-6.2,21.25093,27.066974000000002,170
2017-12-08 03:36,-6.1,23.040482000000004,31.31716,167
2017-12-08 03:38,-6.2,21.474624000000002,28.632832000000004,163
2017-12-08 03:40,-6.1,18.119214,20.356154,172
2017-12-08 03:42,-6.2,15.434886000000002,19.908766000000004,177
2017-12-08 03:44,-6.2,19.461378,23.040482000000004,176
2017-12-08 03:46,-6.2,19.685072,23.040482000000004,162
2017-12-08 03:48,-6,18.119214,24.382646,169
2017-12-08 03:50,-6.1,19.685072,24.158952000000003,169
2017-12-08 03:52,-6.2,19.908766000000004,23.935258,170
2017-12-08 03:54,-6.2,20.356154,25.501116000000003,172
2017-12-08 03:56,-6.1,17.448132,23.040482000000004,173
2017-12-08 03:58,-6.1,18.566602000000003,23.264176000000003,173
2017-12-08 04:00,-6.2,22.369400000000002,26.84328,170
2017-12-08 04:02,-6.2,19.685072,23.264176000000003,167
2017-12-08 04:04,-6.1,17.671826000000003,23.711564,166
2017-12-08 04:06,-6.1,19.461378,22.816788,173
2017-12-08 04:08,-6.1,17.000744,21.474624000000002,171
2017-12-08 04:10,-6,18.566602000000003,21.474624000000002,166
2017-12-08 04:12,-5.9,18.342908,21.698318,167
2017-12-08 04:14,-6,18.119214,25.277422000000005,170
2017-12-08 04:16,-6,16.105968,18.566602000000003,175
2017-12-08 04:18,-5.9,18.342908,22.369400000000002,165
2017-12-08 04:20,-6,17.448132,20.356154,163
2017-12-08 04:22,-6,18.790296,21.474624000000002,172
2017-12-08 04:24,-5.9,17.448132,20.356154,164
2017-12-08 04:26,-5.8,17.000744,20.132460000000002,160
2017-12-08 04:28,-5.9,20.579848,23.040482000000004,159
2017-12-08 04:30,-5.7,19.461378,25.72481,162
2017-12-08 04:32,-5.8,21.698318,25.277422000000005,163
2017-12-08 04:34,-5.8,18.790296,23.040482000000004,161
2017-12-08 04:36,-5.8,19.461378,23.264176000000003,160
2017-12-08 04:38,-5.8,19.237684,23.935258,164
2017-12-08 04:40,-5.9,21.25093,26.619586,167
2017-12-08 04:42,-5.8,19.908766000000004,25.501116000000003,165
2017-12-08 04:44,-5.9,20.803542000000004,27.066974000000002,162
2017-12-08 04:46,-5.8,21.027236000000002,24.382646,169
2017-12-08 04:48,-5.9,20.132460000000002,24.830034,169
2017-12-08 04:50,-5.9,20.132460000000002,26.172198,167
2017-12-08 04:52,-5.9,20.132460000000002,24.158952000000003,164
2017-12-08 04:54,-5.9,24.382646,28.632832000000004,159
2017-12-08 04:56,-5.9,22.593094,28.856526000000002,165
2017-12-08 04:58,-5.9,22.369400000000002,27.290668,167
2017-12-08 05:00,-5.9,22.816788,27.514362000000002,168
2017-12-08 05:02,-5.9,19.01399,23.711564,168
2017-12-08 05:04,-5.8,20.356154,25.501116000000003,165
2017-12-08 05:06,-5.9,22.369400000000002,27.514362000000002,176
2017-12-08 05:08,-5.9,19.01399,23.264176000000003,168
2017-12-08 05:10,-5.9,18.790296,21.698318,163
2017-12-08 05:12,-5.9,18.566602000000003,25.501116000000003,168
2017-12-08 05:14,-5.9,20.356154,27.961750000000002,175
2017-12-08 05:16,-5.9,17.000744,19.908766000000004,176
2017-12-08 05:18,-5.9,19.461378,24.382646,177
2017-12-08 05:20,-5.8,18.342908,23.711564,170
2017-12-08 05:22,-5.8,18.119214,24.382646,171
2017-12-08 05:24,-5.8,18.790296,21.25093,166
2017-12-08 05:26,-5.9,21.027236000000002,24.606340000000003,164
2017-12-08 05:28,-5.9,19.908766000000004,23.264176000000003,170
2017-12-08 05:30,-5.8,18.566602000000003,23.040482000000004,171
2017-12-08 05:32,-5.9,19.908766000000004,24.382646,161
2017-12-08 05:34,-5.8,22.145706,26.395892000000003,165
2017-12-08 05:36,-5.8,22.369400000000002,30.422384,168
2017-12-08 05:38,-5.8,22.593094,29.08022,157
2017-12-08 05:40,-5.7,18.342908,21.25093,168
2017-12-08 05:42,-5.8,21.922012000000002,25.72481,164
2017-12-08 05:44,-5.8,21.474624000000002,27.514362000000002,167
2017-12-08 05:46,-5.9,23.48787,28.856526000000002,166
2017-12-08 05:48,-5.8,20.132460000000002,22.816788,173
2017-12-08 05:50,-5.8,19.685072,25.72481,169
2017-12-08 05:52,-5.7,17.000744,20.132460000000002,169
2017-12-08 05:54,-5.7,17.448132,20.356154,167
2017-12-08 05:56,-5.8,19.461378,23.040482000000004,169
2017-12-08 05:58,-5.7,17.000744,20.356154,169
2017-12-08 06:00,-5.7,19.461378,23.711564,159
2017-12-08 06:02,-5.7,15.65858,19.685072,168
2017-12-08 06:04,-5.7,18.119214,23.040482000000004,170
2017-12-08 06:06,-5.8,18.119214,21.474624000000002,175
2017-12-08 06:08,-5.8,17.000744,21.027236000000002,172
2017-12-08 06:10,-5.9,17.89552,21.027236000000002,170
2017-12-08 06:12,-5.9,17.448132,21.698318,169
2017-12-08 06:14,-5.8,15.434886000000002,19.908766000000004,171
2017-12-08 06:16,-5.8,14.54011,17.448132,170
2017-12-08 06:18,-5.9,17.000744,20.356154,170
2017-12-08 06:20,-5.8,15.65858,17.448132,170
2017-12-08 06:22,-5.8,14.987498000000002,18.790296,169
2017-12-08 06:24,-5.9,18.342908,23.040482000000004,174
2017-12-08 06:26,-5.9,14.987498000000002,20.803542000000004,175
2017-12-08 06:28,-5.8,17.000744,21.698318,169
2017-12-08 06:30,-5.8,14.763804,18.566602000000003,171
2017-12-08 06:32,-5.9,15.211192,20.132460000000002,170
2017-12-08 06:34,-5.9,15.882274,19.685072,177
2017-12-08 06:36,-6,16.329662,21.474624000000002,172
2017-12-08 06:38,-5.9,17.89552,22.145706,173
2017-12-08 06:40,-5.9,18.342908,21.474624000000002,170
2017-12-08 06:42,-6,17.671826000000003,22.145706,177
2017-12-08 06:44,-5.8,14.987498000000002,17.224438000000003,171
2017-12-08 06:46,-5.8,15.211192,17.448132,167
2017-12-08 06:48,-5.9,15.434886000000002,20.803542000000004,165
2017-12-08 06:50,-5.9,14.763804,18.790296,174
2017-12-08 06:52,-5.9,16.105968,20.579848,166
2017-12-08 06:54,-6,16.329662,19.461378,179
2017-12-08 06:56,-6,15.65858,19.461378,172
2017-12-08 06:58,-6.1,16.777050000000003,19.461378,169
2017-12-08 07:00,-6,17.224438000000003,23.935258,171
2017-12-08 07:02,-6.1,16.777050000000003,21.474624000000002,177
2017-12-08 07:04,-6,14.763804,17.89552,171
2017-12-08 07:06,-6,15.65858,20.803542000000004,182
2017-12-08 07:08,-6,16.329662,18.790296,173
2017-12-08 07:10,-6.1,17.224438000000003,22.369400000000002,168
2017-12-08 07:12,-6,13.869028000000002,15.434886000000002,179
2017-12-08 07:14,-5.9,14.763804,22.593094,171
2017-12-08 07:16,-5.9,15.211192,17.448132,182
2017-12-08 07:18,-5.9,13.645334,16.329662,173
2017-12-08 07:20,-6,18.790296,23.264176000000003,174
2017-12-08 07:22,-6.1,17.448132,22.593094,173
2017-12-08 07:24,-6.1,18.790296,24.606340000000003,173
2017-12-08 07:26,-6.1,19.01399,22.369400000000002,176
2017-12-08 07:28,-6,15.434886000000002,20.356154,170
2017-12-08 07:30,-6,16.553356,19.01399,181
2017-12-08 07:32,-5.9,14.987498000000002,18.566602000000003,178
2017-12-08 07:34,-6,15.211192,21.698318,183
2017-12-08 07:36,-5.9,16.777050000000003,21.698318,180
2017-12-08 07:38,-6,14.54011,17.89552,174
2017-12-08 07:40,-5.9,17.448132,22.369400000000002,181
2017-12-08 07:42,-5.9,13.869028000000002,17.671826000000003,178
2017-12-08 07:44,-5.8,16.329662,22.145706,167
2017-12-08 07:46,-5.8,17.671826000000003,21.698318,170
2017-12-08 07:48,-5.7,14.316416000000002,19.461378,172
2017-12-08 07:50,-5.7,17.224438000000003,21.474624000000002,179
2017-12-08 07:52,-5.9,18.790296,23.711564,181
2017-12-08 07:54,-5.8,19.461378,23.935258,181
2017-12-08 07:56,-5.8,17.89552,22.816788,176
2017-12-08 07:58,-5.8,18.566602000000003,22.369400000000002,179
2017-12-08 08:00,-5.8,19.237684,22.593094,177
2017-12-08 08:02,-5.8,15.434886000000002,18.566602000000003,174
2017-12-08 08:04,-5.7,14.763804,21.027236000000002,180
2017-12-08 08:06,-5.5,13.197946000000002,15.434886000000002,180
2017-12-08 08:08,-5.5,14.316416000000002,19.908766000000004,174
2017-12-08 08:10,-5.5,17.000744,20.579848,178
2017-12-08 08:12,-5.5,14.987498000000002,17.671826000000003,170
2017-12-08 08:14,-5.4,14.316416000000002,19.01399,174
2017-12-08 08:16,-5.4,14.316416000000002,19.237684,170
2017-12-08 08:18,-5.5,14.54011,17.224438000000003,164
2017-12-08 08:20,-5.4,14.54011,17.000744,179
2017-12-08 08:22,-5.4,13.645334,17.224438000000003,183
2017-12-08 08:24,-5.5,17.000744,20.132460000000002,184
2017-12-08 08:26,-5.5,15.65858,20.803542000000004,166
2017-12-08 08:28,-5.5,13.42164,15.434886000000002,174
2017-12-08 08:30,-5.4,14.763804,17.000744,171
2017-12-08 08:32,-5.4,14.987498000000002,19.685072,176
2017-12-08 08:34,-5.4,17.224438000000003,21.698318,177
2017-12-08 08:36,-5.3,14.316416000000002,17.671826000000003,171
2017-12-08 08:38,-5.3,14.092722,18.119214,179
2017-12-08 08:40,-5.3,16.329662,19.685072,169
2017-12-08 08:42,-5.3,14.092722,16.105968,191
2017-12-08 08:44,-5.2,13.197946000000002,17.224438000000003,179
2017-12-08 08:46,-5.2,14.763804,18.119214,189
2017-12-08 08:48,-5.2,17.224438000000003,20.579848,177
2017-12-08 08:50,-5.2,13.197946000000002,17.448132,183
2017-12-08 08:52,-5.1,14.54011,17.448132,183
2017-12-08 08:54,-5.1,13.42164,17.89552,179
2017-12-08 08:56,-5.1,16.329662,21.027236000000002,196
2017-12-08 08:58,-5.1,12.750558000000002,15.882274,186
2017-12-08 09:00,-4.9,10.737312000000001,14.987498000000002,188
2017-12-08 09:02,-4.9,12.303170000000001,17.448132,193
2017-12-08 09:04,-5,13.197946000000002,17.89552,184
2017-12-08 09:06,-4.9,12.079476000000001,17.224438000000003,192
2017-12-08 09:08,-4.9,11.408394,14.092722,180
2017-12-08 09:10,-4.8,11.632088000000001,15.211192,171
2017-12-08 09:12,-4.7,12.750558000000002,15.434886000000002,163
2017-12-08 09:14,-4.8,12.974252,16.777050000000003,173
2017-12-08 09:16,-4.9,11.855782,14.54011,174
2017-12-08 09:18,-4.8,11.184700000000001,12.974252,179
2017-12-08 09:20,-4.8,10.961006000000001,14.54011,167
2017-12-08 09:22,-4.6,13.645334,17.448132,161
2017-12-08 09:24,-4.6,13.42164,21.25093,165
2017-12-08 09:26,-4.7,13.197946000000002,16.553356,171
2017-12-08 09:28,-4.5,12.303170000000001,14.54011,173
2017-12-08 09:30,-4.6,15.65858,18.790296,183
2017-12-08 09:32,-4.6,11.408394,15.211192,182
2017-12-08 09:34,-4.6,13.42164,21.474624000000002,190
2017-12-08 09:36,-4.6,13.645334,16.777050000000003,182
2017-12-08 09:38,-4.5,13.645334,19.461378,177
2017-12-08 09:40,-4.4,12.974252,14.987498000000002,158
2017-12-08 09:42,-4.1,13.645334,18.342908,164
2017-12-08 09:44,-4.2,12.303170000000001,15.65858,154
2017-12-08 09:46,-4,11.184700000000001,16.105968,174
2017-12-08 09:48,-4.1,11.632088000000001,16.553356,177
2017-12-08 09:50,-4.3,14.316416000000002,17.224438000000003,196
2017-12-08 09:52,-4.2,11.632088000000001,14.316416000000002,193
2017-12-08 09:54,-4.1,10.513618000000001,12.303170000000001,191
2017-12-08 09:56,-4,11.632088000000001,14.092722,184
2017-12-08 09:58,-3.9,8.94776,11.184700000000001,173
2017-12-08 10:00,-3.7,11.184700000000001,16.777050000000003,188
2017-12-08 10:02,-3.9,12.750558000000002,14.987498000000002,198
2017-12-08 10:04,-3.9,12.750558000000002,16.553356,183
2017-12-08 10:06,-3.9,12.079476000000001,14.092722,191
2017-12-08 10:08,-3.8,8.724066,11.408394,176
2017-12-08 10:10,-3.8,13.197946000000002,15.65858,185
2017-12-08 10:12,-3.9,12.526864,15.434886000000002,189
2017-12-08 10:14,-3.7,13.197946000000002,17.89552,186
2017-12-08 10:16,-3.8,11.855782,13.869028000000002,191
2017-12-08 10:18,-3.7,10.289924,12.079476000000001,189
2017-12-08 10:20,-3.7,11.855782,14.987498000000002,194
2017-12-08 10:22,-3.6,8.052984,10.961006000000001,194
2017-12-08 10:24,-3.5,9.842536,14.763804,184
2017-12-08 10:26,-3.6,9.395148,11.408394,196
2017-12-08 10:28,-3.5,10.961006000000001,14.987498000000002,181
2017-12-08 10:30,-3.5,9.618842,13.42164,173
2017-12-08 10:32,-3.6,12.526864,14.763804,169
2017-12-08 10:34,-3.5,10.066230000000001,14.316416000000002,182
2017-12-08 10:36,-3.4,11.408394,14.092722,157
2017-12-08 10:38,-3.4,12.526864,15.65858,176
2017-12-08 10:40,-3.4,9.171454,12.526864,173
2017-12-08 10:42,-3.3,9.395148,11.855782,168
2017-12-08 10:44,-3.4,10.961006000000001,12.750558000000002,177
2017-12-08 10:46,-3.6,9.842536,12.750558000000002,171
2017-12-08 10:48,-3.5,13.197946000000002,17.671826000000003,146
2017-12-08 10:50,-3.5,12.526864,16.553356,147
2017-12-08 10:52,-3.3,14.316416000000002,16.105968,147
2017-12-08 10:54,-3.3,12.079476000000001,13.869028000000002,165
2017-12-08 10:56,-3.4,12.303170000000001,15.882274,158
2017-12-08 10:58,-3.3,14.54011,16.777050000000003,151
2017-12-08 11:00,-3.1,10.961006000000001,12.526864,159
2017-12-08 11:02,-3.2,11.408394,13.197946000000002,160
2017-12-08 11:04,-3.3,13.197946000000002,14.987498000000002,161
2017-12-08 11:06,-3.3,11.184700000000001,12.750558000000002,168
2017-12-08 11:08,-3.2,12.079476000000001,13.645334,173
2017-12-08 11:10,-3.3,10.737312000000001,14.54011,185
2017-12-08 11:12,-3.3,10.289924,12.750558000000002,167
2017-12-08 11:14,-3.1,8.500372,15.65858,165
2017-12-08 11:16,-3,12.974252,15.882274,157
2017-12-08 11:18,-3.1,11.855782,17.224438000000003,166
2017-12-08 11:20,-3.1,10.513618000000001,14.54011,178
2017-12-08 11:22,-3.1,11.184700000000001,14.316416000000002,177
2017-12-08 11:24,-3.2,12.750558000000002,16.105968,182
2017-12-08 11:26,-3.1,8.276678,9.842536,180
2017-12-08 11:28,-2.9,9.171454,13.42164,165
2017-12-08 11:30,-2.8,10.737312000000001,14.316416000000002,177
2017-12-08 11:32,-2.9,10.289924,12.526864,189
2017-12-08 11:34,-2.8,10.513618000000001,14.092722,201
2017-12-08 11:36,-2.7,9.171454,13.645334,181
2017-12-08 11:38,-2.7,11.408394,13.869028000000002,201
2017-12-08 11:40,-2.7,10.961006000000001,13.42164,206
2017-12-08 11:42,-2.6,10.289924,12.303170000000001,197
2017-12-08 11:44,-2.5,11.184700000000001,15.434886000000002,188
2017-12-08 11:46,-2.6,12.974252,15.434886000000002,193
2017-12-08 11:48,-2.6,13.197946000000002,18.119214,184
2017-12-08 11:50,-2.6,12.974252,17.000744,193
2017-12-08 11:52,-2.5,13.645334,17.224438000000003,179
2017-12-08 11:54,-2.4,12.303170000000001,14.763804,171
2017-12-08 11:56,-2.3,11.632088000000001,16.105968,176
2017-12-08 11:58,-2.3,13.645334,14.763804,172
2017-12-08 12:00,-2.3,12.750558000000002,16.329662,185
2017-12-08 12:02,-2.3,12.079476000000001,14.987498000000002,179
2017-12-08 12:04,-2.3,9.842536,11.855782,187
2017-12-08 12:06,-2.3,10.737312000000001,13.197946000000002,175
2017-12-08 12:08,-2.2,12.750558000000002,14.763804,191
2017-12-08 12:10,-2.2,12.303170000000001,13.869028000000002,183
2017-12-08 12:12,-2.2,14.316416000000002,17.224438000000003,184
2017-12-08 12:14,-2.3,12.079476000000001,15.65858,200
2017-12-08 12:16,-2.2,9.842536,13.197946000000002,189
2017-12-08 12:18,-2.1,10.513618000000001,12.526864,183
2017-12-08 12:20,-2,10.737312000000001,14.316416000000002,201
2017-12-08 12:22,-2,6.71082,10.513618000000001,199
2017-12-08 12:24,-1.9,8.500372,11.184700000000001,206
2017-12-08 12:26,-1.8,10.513618000000001,12.750558000000002,192
2017-12-08 12:28,-1.8,11.408394,14.987498000000002,170
2017-12-08 12:30,-1.8,11.632088000000001,14.092722,168
2017-12-08 12:32,-1.8,11.184700000000001,14.54011,159
2017-12-08 12:34,-1.8,11.408394,14.092722,173
2017-12-08 12:36,-1.8,11.184700000000001,14.316416000000002,157
2017-12-08 12:38,-1.7,8.052984,10.961006000000001,186
2017-12-08 12:40,-1.7,8.724066,11.184700000000001,192
2017-12-08 12:42,-1.7,11.408394,13.197946000000002,166
2017-12-08 12:44,-1.7,10.737312000000001,12.974252,168
2017-12-08 12:46,-1.7,9.842536,11.855782,170
2017-12-08 12:48,-1.6,7.158208000000001,10.289924,148
2017-12-08 12:50,-1.4,7.381902,8.724066,138
2017-12-08 12:52,-1.2,6.039738000000001,6.71082,158
2017-12-08 12:54,-1.2,10.066230000000001,12.750558000000002,156
2017-12-08 12:56,-1.3,10.961006000000001,13.645334,169
2017-12-08 12:58,-1.4,6.71082,8.94776,158
2017-12-08 13:00,-1.2,8.052984,9.842536,167
2017-12-08 13:02,-1.2,8.276678,11.632088000000001,144
2017-12-08 13:04,-1.1,8.500372,12.750558000000002,166
2017-12-08 13:06,-1.2,10.513618000000001,14.54011,168
2017-12-08 13:08,-1.1,7.82929,10.961006000000001,153
2017-12-08 13:10,-1,10.066230000000001,13.42164,130
2017-12-08 13:12,-1,10.737312000000001,13.197946000000002,170
2017-12-08 13:14,-1.1,8.94776,13.197946000000002,173
2017-12-08 13:16,-1.1,7.381902,9.395148,169
2017-12-08 13:18,-0.9,6.71082,9.395148,168
2017-12-08 13:20,-0.7,8.724066,12.303170000000001,151
2017-12-08 13:22,-0.9,11.855782,14.092722,158
2017-12-08 13:24,-0.9,10.289924,13.42164,157
2017-12-08 13:26,-0.8,6.934514000000001,8.500372,144
2017-12-08 13:28,-0.8,10.289924,12.526864,169
2017-12-08 13:30,-0.9,10.737312000000001,13.645334,174
2017-12-08 13:32,-0.9,5.592350000000001,7.605596,180
2017-12-08 13:34,-0.8,7.605596,13.197946000000002,174
2017-12-08 13:36,-0.5,5.3686560000000005,7.605596,165
2017-12-08 13:38,-0.6,9.618842,12.303170000000001,195
2017-12-08 13:40,-0.8,8.052984,10.066230000000001,200
2017-12-08 13:42,-0.7,6.487126,8.724066,166
2017-12-08 13:44,-0.5,6.71082,10.066230000000001,140
2017-12-08 13:46,-0.5,11.632088000000001,13.645334,142
2017-12-08 13:48,-0.5,10.513618000000001,12.079476000000001,147
2017-12-08 13:50,-0.5,9.171454,11.632088000000001,153
2017-12-08 13:52,-0.4,8.94776,10.737312000000001,141
2017-12-08 13:54,-0.6,9.618842,12.079476000000001,125
2017-12-08 13:56,-0.6,10.961006000000001,13.869028000000002,154
2017-12-08 13:58,-0.6,8.052984,9.842536,160
2017-12-08 14:00,-0.6,10.737312000000001,12.079476000000001,134
2017-12-08 14:02,-0.6,10.961006000000001,12.974252,139
2017-12-08 14:04,-0.5,9.171454,10.961006000000001,151
2017-12-08 14:06,-0.5,6.71082,8.724066,159
2017-12-08 14:08,-0.4,5.3686560000000005,7.605596,139
2017-12-08 14:10,-0.2,2.460634,4.250186,163
2017-12-08 14:12,-0.3,5.816044000000001,8.052984,171
2017-12-08 14:14,-0.3,7.605596,11.408394,138
2017-12-08 14:16,-0.3,10.737312000000001,12.526864,143
2017-12-08 14:18,-0.2,7.605596,9.171454,148
2017-12-08 14:20,-0.2,6.71082,7.605596,159
2017-12-08 14:22,-0.3,6.263432,8.724066,158
2017-12-08 14:24,-0.3,7.82929,10.289924,167
2017-12-08 14:26,-0.3,10.513618000000001,12.526864,153
2017-12-08 14:28,-0.2,8.276678,11.632088000000001,140
2017-12-08 14:30,-0.2,7.381902,8.276678,148
2017-12-08 14:32,-0.2,7.381902,9.842536,158
2017-12-08 14:34,-0.1,8.724066,10.289924,151
2017-12-08 14:36,0,7.605596,10.289924,145
2017-12-08 14:38,0,10.737312000000001,14.092722,140
2017-12-08 14:40,-0.1,12.750558000000002,15.434886000000002,149
2017-12-08 14:42,-0.1,10.066230000000001,11.855782,150
2017-12-08 14:44,-0.1,8.276678,10.513618000000001,143
2017-12-08 14:46,-0.1,7.158208000000001,9.171454,135
2017-12-08 14:48,-0.2,6.263432,8.724066,130
2017-12-08 14:50,-0.1,4.250186,6.039738000000001,155
2017-12-08 14:52,-0.1,5.592350000000001,9.842536,149
2017-12-08 14:54,0,8.500372,10.513618000000001,157
2017-12-08 14:56,0,6.71082,10.289924,144
2017-12-08 14:58,0,10.961006000000001,14.316416000000002,153
2017-12-08 15:00,-0.1,6.71082,10.513618000000001,180
2017-12-08 15:02,-0.1,9.171454,11.184700000000001,166
2017-12-08 15:04,-0.1,8.500372,10.066230000000001,155
2017-12-08 15:06,-0.1,10.737312000000001,12.974252,139
2017-12-08 15:08,0,10.513618000000001,12.303170000000001,151
2017-12-08 15:10,0,9.171454,10.961006000000001,179
2017-12-08 15:12,-0.1,6.039738000000001,8.052984,193
2017-12-08 15:14,-0.1,7.158208000000001,8.500372,191
2017-12-08 15:16,0,7.381902,11.184700000000001,184
2017-12-08 15:18,0,6.934514000000001,9.842536,174
2017-12-08 15:20,0,10.513618000000001,14.54011,189
2017-12-08 15:22,-0.1,10.289924,12.079476000000001,195
2017-12-08 15:24,-0.1,9.395148,12.079476000000001,199
2017-12-08 15:26,0,7.605596,8.276678,189
2017-12-08 15:28,0,8.94776,12.526864,198
2017-12-08 15:30,0,8.500372,9.842536,185
2017-12-08 15:32,0,7.605596,9.842536,164
2017-12-08 15:34,0,4.921268,6.263432,176
2017-12-08 15:36,0.1,6.263432,9.395148,182
2017-12-08 15:38,0.1,8.500372,10.066230000000001,178
2017-12-08 15:40,0.1,7.381902,9.842536,177
2017-12-08 15:42,0.1,4.921268,6.487126,173
2017-12-08 15:44,0.2,6.71082,10.513618000000001,177
2017-12-08 15:46,0.2,4.47388,6.487126,175
2017-12-08 15:48,0.2,8.276678,11.632088000000001,166
2017-12-08 15:50,0.2,7.605596,10.961006000000001,158
2017-12-08 15:52,0.2,5.144962,6.487126,180
2017-12-08 15:54,0.2,7.605596,9.395148,190
2017-12-08 15:56,0.2,6.934514000000001,9.618842,189
2017-12-08 15:58,0.2,5.592350000000001,7.605596,172
2017-12-08 16:00,0.2,7.605596,9.618842,169
2017-12-08 16:02,0.2,6.71082,7.381902,185
2017-12-08 16:04,0.2,7.381902,9.171454,172
2017-12-08 16:06,0.2,5.144962,7.158208000000001,174
2017-12-08 16:08,0.2,5.592350000000001,8.052984,182
2017-12-08 16:10,0.2,5.144962,6.71082,191
2017-12-08 16:12,0.1,5.144962,6.71082,189
2017-12-08 16:14,0.1,6.263432,8.500372,180
2017-12-08 16:16,0.2,7.82929,10.513618000000001,175
2017-12-08 16:18,0.2,8.276678,9.842536,174
2017-12-08 16:20,0.2,6.71082,7.605596,173
2017-12-08 16:22,0.2,4.47388,5.816044000000001,181
2017-12-08 16:24,0.2,7.605596,9.395148,185
2017-12-08 16:26,0.2,8.724066,11.408394,182
2017-12-08 16:28,0.2,6.263432,8.276678,177
2017-12-08 16:30,0.2,8.276678,11.184700000000001,169
2017-12-08 16:32,0.3,7.82929,9.171454,166
2017-12-08 16:34,0.3,5.816044000000001,7.158208000000001,166
2017-12-08 16:36,0.3,5.3686560000000005,6.487126,175
2017-12-08 16:38,0.2,6.039738000000001,7.605596,191
2017-12-08 16:40,0.2,7.158208000000001,8.724066,192
2017-12-08 16:42,0.2,6.71082,7.82929,201
2017-12-08 16:44,0.2,7.381902,9.618842,188
2017-12-08 16:46,0.2,6.487126,8.052984,171
2017-12-08 16:48,0.2,6.487126,7.605596,185
2017-12-08 16:50,0.2,7.158208000000001,8.94776,184
2017-12-08 16:52,0.2,5.144962,6.487126,182
2017-12-08 16:54,0.2,4.697574,6.71082,172
2017-12-08 16:56,0.2,4.47388,5.592350000000001,177
2017-12-08 16:58,0.2,4.47388,6.487126,165
2017-12-08 17:00,0.2,4.026492,4.697574,161
2017-12-08 17:02,0.2,5.3686560000000005,6.487126,146
2017-12-08 17:04,0.2,5.592350000000001,6.487126,130
2017-12-08 17:06,0.2,6.487126,7.605596,131
2017-12-08 17:08,0.2,5.816044000000001,6.934514000000001,119
2017-12-08 17:10,0.2,6.934514000000001,7.82929,120
2017-12-08 17:12,0.2,6.263432,7.381902,115
2017-12-08 17:14,0.2,6.263432,7.381902,115
2017-12-08 17:16,0.2,6.934514000000001,8.052984,115
2017-12-08 17:18,0.2,8.052984,9.395148,118
2017-12-08 17:20,0.2,8.500372,9.395148,127
2017-12-08 17:22,0.2,7.82929,8.94776,126
2017-12-08 17:24,0.3,7.82929,9.171454,134
2017-12-08 17:26,0.3,7.381902,8.500372,140
2017-12-08 17:28,0.3,6.71082,7.605596,141
2017-12-08 17:30,0.3,7.381902,8.052984,149
2017-12-08 17:32,0.2,6.71082,8.052984,148
2017-12-08 17:34,0.2,5.592350000000001,6.263432,160
2017-12-08 17:36,0.2,6.71082,7.605596,144
2017-12-08 17:38,0.2,6.039738000000001,7.158208000000001,146
2017-12-08 17:40,0.2,4.250186,4.921268,152
2017-12-08 17:42,0.3,3.35541,4.026492,165
2017-12-08 17:44,0.2,2.9080220000000003,4.697574,182
2017-12-08 17:46,0.3,4.921268,5.592350000000001,186
2017-12-08 17:48,0.3,4.026492,4.921268,175
2017-12-08 17:50,0.3,3.131716,4.026492,184
2017-12-08 17:52,0.3,4.026492,5.592350000000001,163
2017-12-08 17:54,0.3,3.131716,4.026492,162
2017-12-08 17:56,0.3,4.250186,5.592350000000001,142
2017-12-08 17:58,0.3,5.592350000000001,7.381902,145
2017-12-08 18:00,0.3,5.144962,6.039738000000001,142
2017-12-08 18:02,0.3,5.592350000000001,6.487126,137
2017-12-08 18:04,0.3,5.592350000000001,6.487126,145
2017-12-08 18:06,0.3,4.47388,5.592350000000001,143
2017-12-08 18:08,0.3,5.816044000000001,6.71082,153
2017-12-08 18:10,0.3,5.816044000000001,7.381902,144
2017-12-08 18:12,0.3,4.921268,5.592350000000001,140
2017-12-08 18:14,0.2,4.026492,4.921268,134
2017-12-08 18:16,0.3,3.802798,4.921268,130
2017-12-08 18:18,0.3,3.802798,4.47388,138
2017-12-08 18:20,0.3,4.697574,5.592350000000001,120
2017-12-08 18:22,0.3,4.47388,5.592350000000001,124
2017-12-08 18:24,0.3,3.5791040000000005,4.697574,125
2017-12-08 18:26,0.3,3.802798,4.697574,135
2017-12-08 18:28,0.3,4.026492,5.144962,117
2017-12-08 18:30,0.3,4.697574,5.592350000000001,117
2017-12-08 18:32,0.2,5.144962,6.263432,122
2017-12-08 18:34,0.3,5.592350000000001,6.487126,115
2017-12-08 18:36,0.3,5.592350000000001,6.934514000000001,127
2017-12-08 18:38,0.3,5.144962,6.263432,127
2017-12-08 18:40,0.3,4.921268,6.263432,130
2017-12-08 18:42,0.3,4.921268,6.039738000000001,117
2017-12-08 18:44,0.3,6.487126,7.82929,125
2017-12-08 18:46,0.3,6.71082,8.276678,119
2017-12-08 18:48,0.3,6.934514000000001,8.94776,136
2017-12-08 18:50,0.3,6.71082,8.94776,139
2017-12-08 18:52,0.3,6.039738000000001,8.276678,136
2017-12-08 18:54,0.2,6.71082,8.052984,135
2017-12-08 18:56,0.2,6.934514000000001,9.171454,135
2017-12-08 18:58,0.2,8.052984,10.289924,136
2017-12-08 19:00,0.3,8.052984,9.171454,137
2017-12-08 19:02,0.2,8.052984,9.171454,156
2017-12-08 19:04,0.2,8.500372,9.395148,155
2017-12-08 19:06,0.2,7.381902,9.171454,150
2017-12-08 19:08,0.2,4.921268,7.381902,108
2017-12-08 19:10,0.2,4.250186,10.737312000000001,99
2017-12-08 19:12,0.2,8.724066,10.737312000000001,142
2017-12-08 19:14,0.2,8.052984,9.395148,138
2017-12-08 19:16,0.2,8.500372,9.395148,139
2017-12-08 19:18,0.2,9.171454,11.408394,140
2017-12-08 19:20,0.1,10.066230000000001,11.408394,141
2017-12-08 19:22,0.1,8.724066,10.289924,137
2017-12-08 19:24,0.1,8.724066,9.842536,129
2017-12-08 19:26,0.1,8.724066,10.289924,135
2017-12-08 19:28,0.1,8.94776,11.855782,130
2017-12-08 19:30,0,9.842536,11.408394,135
2017-12-08 19:32,0,8.500372,10.737312000000001,137
2017-12-08 19:34,0,7.381902,8.724066,135
2017-12-08 19:36,0,8.276678,9.618842,141
2017-12-08 19:38,0,8.052984,9.842536,133
2017-12-08 19:40,0,8.276678,10.066230000000001,132
2017-12-08 19:42,0,7.605596,9.842536,134
2017-12-08 19:44,0,7.82929,8.500372,139
2017-12-08 19:46,0,6.263432,7.158208000000001,131
2017-12-08 19:48,0,7.605596,8.052984,141
2017-12-08 19:50,0,7.158208000000001,8.724066,135
2017-12-08 19:52,0,8.052984,9.618842,135
2017-12-08 19:54,0.1,6.934514000000001,7.82929,141
2017-12-08 19:56,0.1,7.82929,8.500372,136
2017-12-08 19:58,0.1,8.052984,9.618842,132
2017-12-08 20:00,0.1,7.158208000000001,8.276678,132
2017-12-08 20:02,0.1,7.381902,8.052984,135
2017-12-08 20:04,0.1,7.158208000000001,8.94776,142
2017-12-08 20:06,0.1,7.82929,8.500372,138
2017-12-08 20:08,0.1,7.381902,8.500372,137
2017-12-08 20:10,0.1,7.158208000000001,8.276678,135
2017-12-08 20:12,0.1,6.263432,7.605596,136
2017-12-08 20:14,0,7.158208000000001,8.276678,129
2017-12-08 20:16,0,6.263432,7.158208000000001,130
2017-12-08 20:18,0.1,7.381902,8.94776,130
2017-12-08 20:20,0.1,8.276678,10.066230000000001,125
2017-12-08 20:22,0.1,8.724066,9.618842,120
2017-12-08 20:24,0.1,8.052984,9.395148,128
2017-12-08 20:26,0.1,9.618842,11.632088000000001,125
2017-12-08 20:28,0.1,10.066230000000001,11.408394,124
2017-12-08 20:30,0.1,10.961006000000001,12.079476000000001,121
2017-12-08 20:32,0.2,10.737312000000001,11.855782,124
2017-12-08 20:34,0.2,10.513618000000001,11.855782,123
2017-12-08 20:36,0.1,10.961006000000001,12.079476000000001,126
2017-12-08 20:38,0.1,10.737312000000001,11.855782,125
2017-12-08 20:40,0.1,10.289924,11.855782,130
2017-12-08 20:42,0.1,8.500372,10.066230000000001,133
2017-12-08 20:44,0.1,8.724066,9.842536,122
2017-12-08 20:46,0.1,8.276678,9.395148,127
2017-12-08 20:48,0.1,10.513618000000001,11.632088000000001,119
2017-12-08 20:50,0.1,9.171454,10.289924,124
2017-12-08 20:52,0.1,9.842536,11.632088000000001,126
2017-12-08 20:54,0,10.289924,12.079476000000001,123
2017-12-08 20:56,0,10.513618000000001,11.632088000000001,125
2017-12-08 20:58,0,9.842536,10.961006000000001,125
2017-12-08 21:00,0,11.632088000000001,13.645334,132
2017-12-08 21:02,0,10.289924,11.632088000000001,128
2017-12-08 21:04,0,10.961006000000001,12.750558000000002,136
2017-12-08 21:06,0.1,11.632088000000001,12.750558000000002,128
2017-12-08 21:08,0,11.632088000000001,14.316416000000002,120
2017-12-08 21:10,-0.1,13.42164,15.211192,128
2017-12-08 21:12,-0.2,12.079476000000001,14.316416000000002,122
2017-12-08 21:14,-0.1,12.974252,14.763804,120
2017-12-08 21:16,-0.2,14.316416000000002,16.553356,123
2017-12-08 21:18,-0.3,12.526864,13.869028000000002,129
2017-12-08 21:20,-0.2,9.842536,11.184700000000001,131
2017-12-08 21:22,-0.1,12.526864,14.763804,125
2017-12-08 21:24,-0.2,12.079476000000001,14.54011,131
2017-12-08 21:26,-0.2,13.197946000000002,17.224438000000003,127
2017-12-08 21:28,-0.2,12.526864,15.434886000000002,122
2017-12-08 21:30,-0.1,13.197946000000002,15.211192,119
2017-12-08 21:32,-0.1,15.211192,17.448132,122
2017-12-08 21:34,-0.2,15.882274,19.237684,130
2017-12-08 21:36,-0.3,16.329662,19.685072,125
2017-12-08 21:38,-0.3,15.65858,18.566602000000003,128
2017-12-08 21:40,-0.3,13.645334,15.65858,124
2017-12-08 21:42,-0.3,12.974252,13.869028000000002,130
2017-12-08 21:44,-0.3,14.316416000000002,17.448132,122
2017-12-08 21:46,-0.3,13.645334,14.763804,126
2017-12-08 21:48,-0.2,13.869028000000002,16.105968,136
2017-12-08 21:50,-0.2,13.197946000000002,14.54011,133
2017-12-08 21:52,-0.3,12.750558000000002,13.869028000000002,140
2017-12-08 21:54,-0.3,13.645334,15.65858,134
2017-12-08 21:56,-0.2,11.855782,13.42164,148
2017-12-08 21:58,-0.2,10.961006000000001,15.882274,150
2017-12-08 22:00,-0.2,13.197946000000002,16.329662,158
2017-12-08 22:02,-0.2,14.092722,17.224438000000003,151
2017-12-08 22:04,-0.2,10.289924,12.974252,154
2017-12-08 22:06,-0.2,9.842536,12.526864,164
2017-12-08 22:08,-0.2,10.066230000000001,12.303170000000001,158
2017-12-08 22:10,-0.2,10.737312000000001,13.869028000000002,161
2017-12-08 22:12,-0.3,10.066230000000001,12.750558000000002,155
2017-12-08 22:14,-0.3,9.618842,12.750558000000002,152
2017-12-08 22:16,-0.3,12.079476000000001,14.316416000000002,152
2017-12-08 22:18,-0.3,11.184700000000001,12.750558000000002,145
2017-12-08 22:20,-0.3,11.184700000000001,14.092722,143
2017-12-08 22:22,-0.3,10.066230000000001,12.303170000000001,142
2017-12-08 22:24,-0.2,8.724066,11.184700000000001,149
2017-12-08 22:26,-0.2,10.066230000000001,11.855782,145
2017-12-08 22:28,-0.2,9.395148,11.408394,137
2017-12-08 22:30,-0.2,9.395148,12.303170000000001,140
2017-12-08 22:32,-0.1,9.395148,10.737312000000001,137
2017-12-08 22:34,-0.1,8.500372,10.066230000000001,137
2017-12-08 22:36,-0.1,8.052984,9.618842,137
2017-12-08 22:38,-0.1,8.724066,9.618842,135
2017-12-08 22:40,0,8.500372,9.171454,128
2017-12-08 22:42,0,8.500372,11.408394,130
2017-12-08 22:44,0,7.381902,8.94776,132
2017-12-08 22:46,0,8.500372,9.842536,132
2017-12-08 22:48,0.1,7.605596,8.724066,130
2017-12-08 22:50,0.1,8.052984,9.618842,134
2017-12-08 22:52,0.1,7.82929,8.500372,131
2017-12-08 22:54,0.2,7.605596,8.94776,120
2017-12-08 22:56,0.3,8.94776,10.513618000000001,119
2017-12-08 22:58,0.2,8.276678,9.395148,121
2017-12-08 23:00,0.3,8.500372,10.737312000000001,121
2017-12-08 23:02,0.4,7.82929,8.724066,123
2017-12-08 23:04,0.4,9.171454,11.632088000000001,129
2017-12-08 23:06,0.4,8.500372,10.066230000000001,133
2017-12-08 23:08,0.4,8.500372,9.618842,129
2017-12-08 23:10,0.4,8.724066,10.513618000000001,130
2017-12-08 23:12,0.4,10.289924,11.855782,129
2017-12-08 23:14,0.4,9.395148,10.737312000000001,130
2017-12-08 23:16,0.4,9.395148,11.184700000000001,127
2017-12-08 23:18,0.4,9.618842,11.632088000000001,128
2017-12-08 23:20,0.4,9.171454,10.066230000000001,125
2017-12-08 23:22,0.5,8.724066,10.513618000000001,124
2017-12-08 23:24,0.4,10.513618000000001,12.974252,108
2017-12-08 23:26,0.4,10.513618000000001,11.632088000000001,112
2017-12-08 23:28,0.4,9.842536,11.855782,113
2017-12-08 23:30,0.4,10.289924,11.632088000000001,111
2017-12-08 23:32,0.4,10.289924,11.408394,109
2017-12-08 23:34,0.3,10.066230000000001,12.750558000000002,106
2017-12-08 23:36,0.3,11.855782,13.645334,116
2017-12-08 23:38,0.3,12.079476000000001,14.54011,114
2017-12-08 23:40,0.2,12.303170000000001,13.645334,113
2017-12-08 23:42,0.2,12.079476000000001,13.42164,113
2017-12-08 23:44,0.2,12.750558000000002,14.092722,112
2017-12-08 23:46,0.2,11.855782,13.869028000000002,117
2017-12-08 23:48,0.2,12.079476000000001,13.645334,117
2017-12-08 23:50,0.2,12.974252,15.211192,117
2017-12-08 23:52,0.2,12.526864,15.211192,114
2017-12-08 23:54,0.2,12.079476000000001,14.092722,115
2017-12-08 23:56,0.1,12.750558000000002,14.987498000000002,113
2017-12-08 23:58,0.1,12.526864,13.42164,112
2017-12-09 00:00,0.1,11.855782,14.316416000000002,115
2017-12-09 00:02,0.1,12.526864,14.316416000000002,117
2017-12-09 00:04,0.1,11.408394,12.526864,117
2017-12-09 00:06,0.1,11.408394,13.645334,118
2017-12-09 00:08,0,11.184700000000001,12.526864,121
2017-12-09 00:10,0,10.737312000000001,12.079476000000001,121
2017-12-09 00:12,0,10.737312000000001,11.855782,120
2017-12-09 00:14,0,10.066230000000001,11.855782,126
2017-12-09 00:16,0,10.513618000000001,12.526864,122
2017-12-09 00:18,0.1,10.289924,11.855782,123
2017-12-09 00:20,0,10.737312000000001,13.42164,122
2017-12-09 00:22,-0.1,10.737312000000001,11.632088000000001,127
2017-12-09 00:24,-0.1,11.632088000000001,13.197946000000002,119
2017-12-09 00:26,-0.1,10.737312000000001,12.750558000000002,127
2017-12-09 00:28,-0.2,10.513618000000001,13.197946000000002,127
2017-12-09 00:30,-0.2,11.408394,13.645334,124
2017-12-09 00:32,-0.2,10.737312000000001,12.079476000000001,129
2017-12-09 00:34,-0.1,10.066230000000001,12.079476000000001,124
2017-12-09 00:36,-0.1,11.408394,13.645334,123
2017-12-09 00:38,-0.1,11.408394,12.974252,125
2017-12-09 00:40,-0.2,11.855782,15.65858,125
2017-12-09 00:42,-0.2,11.855782,14.54011,113
2017-12-09 00:44,-0.3,13.197946000000002,14.763804,114
2017-12-09 00:46,-0.3,12.750558000000002,15.434886000000002,117
2017-12-09 00:48,-0.4,13.869028000000002,15.434886000000002,119
2017-12-09 00:50,-0.4,12.974252,15.882274,109
2017-12-09 00:52,-0.4,12.750558000000002,14.092722,112
2017-12-09 00:54,-0.5,13.42164,15.211192,128
2017-12-09 00:56,-0.6,12.974252,14.987498000000002,126
2017-12-09 00:58,-0.7,12.079476000000001,14.54011,126
2017-12-09 01:00,-0.7,11.408394,12.526864,124
2017-12-09 01:02,-0.8,12.750558000000002,15.434886000000002,129
2017-12-09 01:04,-0.8,12.079476000000001,13.197946000000002,127
2017-12-09 01:06,-0.8,12.303170000000001,13.869028000000002,130
2017-12-09 01:08,-0.8,10.961006000000001,12.303170000000001,128
2017-12-09 01:10,-0.8,10.961006000000001,12.750558000000002,134
2017-12-09 01:12,-0.8,10.289924,11.408394,135
2017-12-09 01:14,-0.8,10.513618000000001,11.632088000000001,124
2017-12-09 01:16,-0.8,10.066230000000001,11.184700000000001,124
2017-12-09 01:18,-0.8,9.842536,11.408394,127
2017-12-09 01:20,-0.7,10.289924,12.526864,124
2017-12-09 01:22,-0.7,10.513618000000001,11.855782,122
2017-12-09 01:24,-0.7,10.289924,12.079476000000001,138
2017-12-09 01:26,-0.7,8.724066,10.289924,129
2017-12-09 01:28,-0.7,10.289924,12.526864,131
2017-12-09 01:30,-0.7,9.171454,10.513618000000001,131
2017-12-09 01:32,-0.7,9.618842,11.184700000000001,131
2017-12-09 01:34,-0.7,9.618842,11.632088000000001,125
2017-12-09 01:36,-0.7,9.618842,11.408394,129
2017-12-09 01:38,-0.7,8.724066,10.289924,121
2017-12-09 01:40,-0.7,9.171454,10.961006000000001,127
2017-12-09 01:42,-0.7,9.618842,11.855782,116
2017-12-09 01:44,-0.7,8.724066,9.618842,120
2017-12-09 01:46,-0.6,9.171454,10.737312000000001,122
2017-12-09 01:48,-0.6,8.94776,10.289924,111
2017-12-09 01:50,-0.7,10.066230000000001,11.184700000000001,107
2017-12-09 01:52,-0.6,9.618842,10.961006000000001,110
2017-12-09 01:54,-0.6,9.171454,10.737312000000001,110
2017-12-09 01:56,-0.6,9.395148,11.184700000000001,111
2017-12-09 01:58,-0.7,10.289924,11.632088000000001,108
2017-12-09 02:00,-0.7,9.842536,11.855782,108
2017-12-09 02:02,-0.7,10.513618000000001,11.408394,109
2017-12-09 02:04,-0.7,9.618842,10.289924,107
2017-12-09 02:06,-0.7,10.066230000000001,11.408394,116
2017-12-09 02:08,-0.7,10.066230000000001,11.184700000000001,115
2017-12-09 02:10,-0.7,10.066230000000001,11.855782,120
2017-12-09 02:12,-0.7,9.171454,10.513618000000001,122
2017-12-09 02:14,-0.7,8.94776,10.066230000000001,128
2017-12-09 02:16,-0.6,8.052984,8.94776,134
2017-12-09 02:18,-0.6,8.724066,10.737312000000001,137
2017-12-09 02:20,-0.6,8.724066,10.289924,138
2017-12-09 02:22,-0.6,8.276678,9.842536,139
2017-12-09 02:24,-0.6,8.500372,9.395148,134
2017-12-09 02:26,-0.7,9.171454,10.961006000000001,142
2017-12-09 02:28,-0.7,9.618842,11.408394,141
2017-12-09 02:30,-0.7,9.171454,10.513618000000001,141
2017-12-09 02:32,-0.7,9.395148,12.303170000000001,136
2017-12-09 02:34,-0.8,9.171454,10.737312000000001,131
2017-12-09 02:36,-0.9,10.737312000000001,12.079476000000001,137
2017-12-09 02:38,-1,9.842536,10.737312000000001,139
2017-12-09 02:40,-1.1,9.395148,11.408394,138
2017-12-09 02:42,-1.2,7.158208000000001,9.395148,144
2017-12-09 02:44,-1.1,7.82929,11.184700000000001,146
2017-12-09 02:46,-1.1,7.605596,8.500372,147
2017-12-09 02:48,-1.2,8.94776,10.961006000000001,144
2017-12-09 02:50,-1.3,8.724066,10.066230000000001,143
2017-12-09 02:52,-1.4,8.500372,10.289924,143
2017-12-09 02:54,-1.4,8.500372,9.171454,138
2017-12-09 02:56,-1.4,7.82929,10.066230000000001,159
2017-12-09 02:58,-1.5,8.724066,9.842536,146
2017-12-09 03:00,-1.6,8.500372,9.618842,144
2017-12-09 03:02,-1.6,8.276678,10.961006000000001,148
2017-12-09 03:04,-1.7,8.500372,10.961006000000001,145
2017-12-09 03:06,-1.7,8.94776,10.513618000000001,145
2017-12-09 03:08,-1.7,9.171454,10.513618000000001,147
2017-12-09 03:10,-1.7,9.171454,10.289924,144
2017-12-09 03:12,-1.8,8.052984,8.94776,147
2017-12-09 03:14,-1.7,8.052984,8.94776,146
2017-12-09 03:16,-1.7,7.82929,9.395148,141
2017-12-09 03:18,-1.7,7.381902,8.724066,148
2017-12-09 03:20,-1.7,6.934514000000001,8.052984,148
2017-12-09 03:22,-1.8,6.263432,7.381902,154
2017-12-09 03:24,-1.7,6.487126,8.276678,150
2017-12-09 03:26,-1.8,7.158208000000001,8.276678,155
2017-12-09 03:28,-1.8,6.934514000000001,8.94776,146
2017-12-09 03:30,-1.8,7.158208000000001,8.724066,150
2017-12-09 03:32,-1.8,7.605596,8.500372,153
2017-12-09 03:34,-1.8,7.605596,8.500372,149
2017-12-09 03:36,-1.8,6.934514000000001,7.82929,152
2017-12-09 03:38,-1.8,6.039738000000001,8.052984,164
2017-12-09 03:40,-1.6,5.144962,6.263432,171
2017-12-09 03:42,-1.8,5.144962,6.039738000000001,179
2017-12-09 03:44,-1.8,4.921268,5.592350000000001,191
2017-12-09 03:46,-1.8,5.592350000000001,6.71082,186
2017-12-09 03:48,-1.8,4.921268,5.592350000000001,186
2017-12-09 03:50,-1.8,4.250186,4.921268,189
2017-12-09 03:52,-1.8,4.250186,6.039738000000001,189
2017-12-09 03:54,-1.8,4.697574,5.592350000000001,198
2017-12-09 03:56,-1.8,4.250186,4.921268,202
2017-12-09 03:58,-1.8,5.3686560000000005,6.487126,201
2017-12-09 04:00,-1.8,4.921268,6.263432,208
2017-12-09 04:02,-1.8,5.816044000000001,6.934514000000001,203
2017-12-09 04:04,-1.9,6.039738000000001,6.934514000000001,204
2017-12-09 04:06,-1.9,5.3686560000000005,6.039738000000001,207
2017-12-09 04:08,-1.8,4.697574,5.592350000000001,210
2017-12-09 04:10,-1.8,5.592350000000001,6.71082,210
2017-12-09 04:12,-1.9,4.921268,6.71082,218
2017-12-09 04:14,-1.9,4.921268,6.039738000000001,211
2017-12-09 04:16,-1.8,5.816044000000001,7.158208000000001,225
2017-12-09 04:18,-1.9,6.039738000000001,7.82929,225
2017-12-09 04:20,-1.9,5.816044000000001,7.158208000000001,229
2017-12-09 04:22,-1.9,5.592350000000001,7.381902,236
2017-12-09 04:24,-1.8,5.592350000000001,6.934514000000001,239
2017-12-09 04:26,-1.8,6.039738000000001,7.82929,228
2017-12-09 04:28,-1.8,5.144962,6.71082,225
2017-12-09 04:30,-1.7,4.921268,6.71082,230
2017-12-09 04:32,-1.7,5.144962,6.71082,220
2017-12-09 04:34,-1.7,6.487126,9.842536,228
2017-12-09 04:36,-1.7,5.592350000000001,7.381902,232
2017-12-09 04:38,-1.7,6.934514000000001,9.171454,221
2017-12-09 04:40,-1.7,8.052984,11.855782,231
2017-12-09 04:42,-1.6,8.276678,11.184700000000001,239
2017-12-09 04:44,-1.7,8.500372,9.842536,233
2017-12-09 04:46,-1.8,13.869028000000002,17.000744,239
2017-12-09 04:48,-1.8,11.632088000000001,15.211192,240
2017-12-09 04:50,-1.7,10.737312000000001,14.763804,239
2017-12-09 04:52,-1.7,12.526864,17.448132,251
2017-12-09 04:54,-1.7,10.066230000000001,12.750558000000002,251
2017-12-09 04:56,-1.6,8.94776,13.42164,237
2017-12-09 04:58,-1.7,13.869028000000002,16.777050000000003,244
2017-12-09 05:00,-1.8,14.987498000000002,20.579848,252
2017-12-09 05:02,-1.8,14.54011,17.448132,253
2017-12-09 05:04,-1.8,12.750558000000002,14.763804,247
2017-12-09 05:06,-1.7,12.079476000000001,14.54011,245
2017-12-09 05:08,-1.6,8.94776,12.526864,240
2017-12-09 05:10,-1.7,11.408394,14.54011,237
2017-12-09 05:12,-1.7,9.171454,11.408394,231
2017-12-09 05:14,-1.7,11.632088000000001,13.869028000000002,234
2017-12-09 05:16,-1.7,10.066230000000001,12.079476000000001,235
2017-12-09 05:18,-1.7,8.94776,11.408394,233
2017-12-09 05:20,-1.7,8.500372,10.961006000000001,240
2017-12-09 05:22,-1.6,8.052984,11.632088000000001,239
2017-12-09 05:24,-1.8,14.316416000000002,19.237684,236
2017-12-09 05:26,-1.8,12.974252,15.65858,240
2017-12-09 05:28,-1.8,11.184700000000001,14.316416000000002,242
2017-12-09 05:30,-1.8,12.303170000000001,16.553356,243
2017-12-09 05:32,-2,12.974252,16.329662,238
2017-12-09 05:34,-2,13.869028000000002,18.790296,233
2017-12-09 05:36,-2.1,12.079476000000001,15.65858,232
2017-12-09 05:38,-2.1,14.987498000000002,20.803542000000004,237
2017-12-09 05:40,-2.1,11.632088000000001,15.882274,244
2017-12-09 05:42,-2.1,10.961006000000001,14.54011,238
2017-12-09 05:44,-2.1,11.408394,15.211192,232
2017-12-09 05:46,-2.1,9.842536,15.434886000000002,229
2017-12-09 05:48,-2.1,10.513618000000001,15.211192,223
2017-12-09 05:50,-2.2,10.961006000000001,14.316416000000002,240
2017-12-09 05:52,-2.2,12.750558000000002,15.882274,237
2017-12-09 05:54,-2.2,12.303170000000001,14.54011,238
2017-12-09 05:56,-2.2,13.197946000000002,18.790296,238
2017-12-09 05:58,-2.3,12.526864,14.987498000000002,233
2017-12-09 06:00,-2.3,10.289924,12.974252,232
2017-12-09 06:02,-2.2,11.632088000000001,17.671826000000003,233
2017-12-09 06:04,-2.3,11.632088000000001,14.987498000000002,236
2017-12-09 06:06,-2.3,9.842536,12.750558000000002,234
2017-12-09 06:08,-2.3,11.184700000000001,14.316416000000002,230
2017-12-09 06:10,-2.4,12.974252,16.105968,238
2017-12-09 06:12,-2.4,13.42164,16.553356,242
2017-12-09 06:14,-2.4,13.645334,17.89552,235
2017-12-09 06:16,-2.4,11.408394,15.65858,230
2017-12-09 06:18,-2.4,12.303170000000001,16.553356,232
2017-12-09 06:20,-2.5,12.750558000000002,15.882274,225
2017-12-09 06:22,-2.4,10.961006000000001,16.105968,235
2017-12-09 06:24,-2.5,12.079476000000001,15.882274,229
2017-12-09 06:26,-2.4,11.184700000000001,14.54011,236
2017-12-09 06:28,-2.5,11.408394,15.65858,234
2017-12-09 06:30,-2.5,12.526864,16.329662,238
2017-12-09 06:32,-2.5,12.526864,16.105968,238
2017-12-09 06:34,-2.5,14.316416000000002,17.89552,237
2017-12-09 06:36,-2.6,12.750558000000002,18.566602000000003,234
2017-12-09 06:38,-2.5,11.632088000000001,15.65858,227
2017-12-09 06:40,-2.7,12.303170000000001,16.777050000000003,224
2017-12-09 06:42,-2.7,11.408394,16.553356,229
2017-12-09 06:44,-2.7,11.855782,17.000744,226
2017-12-09 06:46,-2.8,13.869028000000002,16.777050000000003,235
2017-12-09 06:48,-2.9,14.987498000000002,19.685072,232
2017-12-09 06:50,-2.8,10.961006000000001,14.092722,235
2017-12-09 06:52,-2.8,12.079476000000001,15.65858,226
2017-12-09 06:54,-2.9,11.632088000000001,13.645334,230
2017-12-09 06:56,-2.9,11.855782,16.329662,236
2017-12-09 06:58,-2.9,10.289924,15.211192,232
2017-12-09 07:00,-2.9,12.974252,17.224438000000003,228
2017-12-09 07:02,-3,12.303170000000001,14.987498000000002,229
2017-12-09 07:04,-3,11.184700000000001,16.553356,229
2017-12-09 07:06,-3,12.303170000000001,16.329662,236
2017-12-09 07:08,-3,10.513618000000001,12.974252,229
2017-12-09 07:10,-3.1,12.974252,16.553356,233
2017-12-09 07:12,-3,11.408394,14.987498000000002,236
2017-12-09 07:14,-3.1,14.092722,17.448132,235
2017-12-09 07:16,-3,12.526864,16.105968,234
2017-12-09 07:18,-3,10.961006000000001,16.105968,225
2017-12-09 07:20,-3,11.632088000000001,16.329662,234
2017-12-09 07:22,-3.1,13.197946000000002,16.553356,232
2017-12-09 07:24,-3.1,11.184700000000001,14.316416000000002,227
2017-12-09 07:26,-3.1,11.855782,15.211192,228
2017-12-09 07:28,-3.2,12.526864,16.553356,230
2017-12-09 07:30,-3.2,13.42164,18.342908,229
2017-12-09 07:32,-3.2,10.513618000000001,12.750558000000002,225
2017-12-09 07:34,-3.1,10.737312000000001,12.526864,230
2017-12-09 07:36,-3.2,13.197946000000002,17.448132,225
2017-12-09 07:38,-3.2,13.42164,18.566602000000003,226
2017-12-09 07:40,-3.3,12.750558000000002,17.448132,228
2017-12-09 07:42,-3.3,10.961006000000001,15.211192,225
2017-12-09 07:44,-3.2,10.961006000000001,13.869028000000002,227
2017-12-09 07:46,-3.3,14.54011,19.461378,222
2017-12-09 07:48,-3.3,15.434886000000002,20.356154,225
2017-12-09 07:50,-3.3,14.092722,20.356154,228
2017-12-09 07:52,-3.3,13.869028000000002,17.89552,226
2017-12-09 07:54,-3.3,14.763804,22.145706,230
2017-12-09 07:56,-3.2,12.974252,18.566602000000003,226
2017-12-09 07:58,-3.3,13.645334,17.89552,228
2017-12-09 08:00,-3.3,13.42164,16.329662,230
2017-12-09 08:02,-3.2,13.42164,17.89552,227
2017-12-09 08:04,-3.2,14.54011,19.685072,226
2017-12-09 08:06,-3.2,13.869028000000002,17.224438000000003,225
2017-12-09 08:08,-3.2,13.42164,18.566602000000003,226
2017-12-09 08:10,-3.1,12.079476000000001,18.790296,229
2017-12-09 08:12,-3.2,13.869028000000002,17.89552,236
2017-12-09 08:14,-3.2,14.092722,16.777050000000003,224
2017-12-09 08:16,-3.3,19.908766000000004,25.277422000000005,236
2017-12-09 08:18,-3.2,15.434886000000002,18.790296,229
2017-12-09 08:20,-3.3,19.461378,26.619586,237
2017-12-09 08:22,-3.3,17.671826000000003,24.158952000000003,238
2017-12-09 08:24,-3.1,15.434886000000002,28.632832000000004,229
2017-12-09 08:26,-3.2,18.342908,27.961750000000002,239
2017-12-09 08:28,-3.2,17.448132,24.606340000000003,240
2017-12-09 08:30,-3.3,14.987498000000002,19.461378,228
2017-12-09 08:32,-3.3,18.790296,27.290668,234
2017-12-09 08:34,-3.4,19.237684,25.948504,235
2017-12-09 08:36,-3.4,17.224438000000003,25.053728,233
2017-12-09 08:38,-3.5,19.908766000000004,28.632832000000004,231
2017-12-09 08:40,-3.5,16.553356,23.264176000000003,231
2017-12-09 08:42,-3.4,13.197946000000002,19.237684,234
2017-12-09 08:44,-3.4,14.987498000000002,20.803542000000004,233
2017-12-09 08:46,-3.5,17.448132,20.132460000000002,226
2017-12-09 08:48,-3.5,16.105968,22.145706,229
2017-12-09 08:50,-3.4,20.132460000000002,26.84328,237
2017-12-09 08:52,-3.4,16.553356,22.369400000000002,226
2017-12-09 08:54,-3.4,15.882274,21.698318,224
2017-12-09 08:56,-3.4,16.329662,25.277422000000005,230
2017-12-09 08:58,-3.4,18.566602000000003,21.474624000000002,234
2017-12-09 09:00,-3.3,14.763804,19.237684,232
2017-12-09 09:02,-3.2,15.434886000000002,21.698318,233
2017-12-09 09:04,-3.3,21.027236000000002,25.72481,232
2017-12-09 09:06,-3.3,19.461378,26.84328,237
2017-12-09 09:08,-3.3,19.01399,27.066974000000002,236
2017-12-09 09:10,-3.2,17.89552,29.527608,227
2017-12-09 09:12,-3.2,14.987498000000002,19.908766000000004,235
2017-12-09 09:14,-3.3,18.790296,25.948504,233
2017-12-09 09:16,-3.2,18.566602000000003,26.172198,244
2017-12-09 09:18,-3.2,17.89552,22.369400000000002,240
2017-12-09 09:20,-3.2,20.579848,25.72481,240
2017-12-09 09:22,-3.2,18.119214,23.711564,239
2017-12-09 09:24,-3.2,16.553356,21.922012000000002,245
2017-12-09 09:26,-3.1,16.329662,21.698318,236
2017-12-09 09:28,-3.1,15.434886000000002,20.803542000000004,243
2017-12-09 09:30,-3.1,15.211192,22.369400000000002,242
2017-12-09 09:32,-3,13.645334,17.671826000000003,237
2017-12-09 09:34,-3,14.987498000000002,19.908766000000004,238
2017-12-09 09:36,-3.1,16.777050000000003,21.027236000000002,238
2017-12-09 09:38,-3.1,18.342908,22.816788,243
2017-12-09 09:40,-3,15.211192,23.48787,230
2017-12-09 09:42,-3.1,14.987498000000002,21.027236000000002,233
2017-12-09 09:44,-3,14.54011,18.790296,239
2017-12-09 09:46,-3,17.224438000000003,24.606340000000003,236
2017-12-09 09:48,-3.1,18.566602000000003,21.922012000000002,242
2017-12-09 09:50,-3,19.01399,22.369400000000002,244
2017-12-09 09:52,-3,13.645334,17.671826000000003,234
2017-12-09 09:54,-3,14.54011,17.671826000000003,245
2017-12-09 09:56,-2.9,13.42164,18.790296,230
2017-12-09 09:58,-3.1,18.566602000000003,24.830034,239
2017-12-09 10:00,-3,12.303170000000001,15.65858,229
2017-12-09 10:02,-3.2,19.461378,26.84328,235
2017-12-09 10:04,-3.2,15.882274,18.790296,232
2017-12-09 10:06,-3.1,16.553356,25.72481,242
2017-12-09 10:08,-3.2,15.65858,20.356154,235
2017-12-09 10:10,-3.3,19.685072,27.290668,231
2017-12-09 10:12,-3.4,16.777050000000003,23.040482000000004,234
2017-12-09 10:14,-3.3,15.65858,22.593094,237
2017-12-09 10:16,-3.3,12.750558000000002,15.65858,234
2017-12-09 10:18,-3.4,16.329662,21.474624000000002,231
2017-12-09 10:20,-3.3,11.632088000000001,16.329662,238
2017-12-09 10:22,-3.3,18.790296,29.751302000000003,236
2017-12-09 10:24,-3.4,19.237684,23.264176000000003,250
2017-12-09 10:26,-3.3,14.763804,20.356154,242
2017-12-09 10:28,-3.3,14.092722,17.000744,241
2017-12-09 10:30,-3.3,15.65858,24.382646,232
2017-12-09 10:32,-3.3,15.434886000000002,20.132460000000002,239
2017-12-09 10:34,-3.4,17.000744,23.264176000000003,232
2017-12-09 10:36,-3.4,17.448132,23.040482000000004,242
2017-12-09 10:38,-3.4,13.645334,17.671826000000003,232
2017-12-09 10:40,-3.4,16.553356,21.474624000000002,240
2017-12-09 10:42,-3.5,16.329662,20.356154,238
2017-12-09 10:44,-3.4,17.671826000000003,23.040482000000004,243
2017-12-09 10:46,-3.4,15.65858,19.685072,235
2017-12-09 10:48,-3.5,19.01399,23.711564,248
2017-12-09 10:50,-3.4,14.316416000000002,21.027236000000002,231
2017-12-09 10:52,-3.5,18.119214,23.48787,240
2017-12-09 10:54,-3.4,16.777050000000003,23.040482000000004,239
2017-12-09 10:56,-3.5,16.329662,19.908766000000004,226
2017-12-09 10:58,-3.5,15.882274,25.501116000000003,239
2017-12-09 11:00,-3.5,16.105968,22.369400000000002,238
2017-12-09 11:02,-3.5,15.882274,22.816788,230
2017-12-09 11:04,-3.5,15.882274,19.908766000000004,232
2017-12-09 11:06,-3.5,13.42164,17.671826000000003,240
2017-12-09 11:08,-3.4,14.763804,20.803542000000004,234
2017-12-09 11:10,-3.4,14.092722,17.89552,232
2017-12-09 11:12,-3.5,15.882274,23.48787,236
2017-12-09 11:14,-3.5,15.434886000000002,20.132460000000002,231
2017-12-09 11:16,-3.5,15.65858,19.237684,232
2017-12-09 11:18,-3.5,17.000744,24.382646,237
2017-12-09 11:20,-3.5,18.119214,23.711564,235
2017-12-09 11:22,-3.6,17.89552,26.172198,233
2017-12-09 11:24,-3.6,17.89552,20.803542000000004,241
2017-12-09 11:26,-3.6,16.329662,21.922012000000002,236
2017-12-09 11:28,-3.4,15.434886000000002,21.922012000000002,237
2017-12-09 11:30,-3.5,17.000744,21.698318,246
2017-12-09 11:32,-3.4,12.974252,21.474624000000002,237
2017-12-09 11:34,-3.5,16.329662,21.474624000000002,233
2017-12-09 11:36,-3.5,12.750558000000002,20.579848,234
2017-12-09 11:38,-3.4,14.092722,19.01399,249
2017-12-09 11:40,-3.4,11.632088000000001,15.882274,239
2017-12-09 11:42,-3.4,17.224438000000003,21.25093,248
2017-12-09 11:44,-3.5,20.579848,23.935258,243
2017-12-09 11:46,-3.5,20.132460000000002,23.48787,250
2017-12-09 11:48,-3.5,20.356154,25.501116000000003,249
2017-12-09 11:50,-3.5,21.474624000000002,25.948504,240
2017-12-09 11:52,-3.5,19.908766000000004,23.040482000000004,241
2017-12-09 11:54,-3.4,19.461378,26.395892000000003,250
2017-12-09 11:56,-3.4,20.579848,29.303914000000002,258
2017-12-09 11:58,-3.4,17.671826000000003,20.803542000000004,252
2017-12-09 12:00,-3.3,18.119214,21.698318,246
2017-12-09 12:02,-3.4,21.698318,26.172198,250
2017-12-09 12:04,-3.4,17.448132,24.830034,252
2017-12-09 12:06,-3.3,12.750558000000002,15.882274,229
2017-12-09 12:08,-3.3,17.224438000000003,20.803542000000004,227
2017-12-09 12:10,-3.3,14.54011,19.461378,233
2017-12-09 12:12,-3.3,18.119214,22.816788,240
2017-12-09 12:14,-3.3,21.474624000000002,25.948504,243
2017-12-09 12:16,-3.4,21.698318,32.211936,243
2017-12-09 12:18,-3.3,21.027236000000002,26.84328,249
2017-12-09 12:20,-3.3,19.908766000000004,24.158952000000003,252
2017-12-09 12:22,-3.3,20.356154,25.053728,247
2017-12-09 12:24,-3.3,18.566602000000003,27.514362000000002,249
2017-12-09 12:26,-3.3,22.369400000000002,27.290668,249
2017-12-09 12:28,-3.4,20.132460000000002,24.382646,247
2017-12-09 12:30,-3.2,18.119214,22.816788,245
2017-12-09 12:32,-3.2,21.027236000000002,25.501116000000003,255
2017-12-09 12:34,-3.1,13.42164,16.329662,237
2017-12-09 12:36,-3.2,15.65858,19.685072,228
2017-12-09 12:38,-3.1,15.65858,19.237684,237
2017-12-09 12:40,-3.1,15.882274,23.935258,246
2017-12-09 12:42,-3.1,21.474624000000002,24.382646,246
2017-12-09 12:44,-3.2,21.027236000000002,26.172198,249
2017-12-09 12:46,-3.1,18.790296,24.382646,247
2017-12-09 12:48,-3.1,16.329662,22.593094,245
2017-12-09 12:50,-3,15.882274,20.579848,250
2017-12-09 12:52,-3,16.777050000000003,21.474624000000002,237
2017-12-09 12:54,-3,17.448132,22.145706,237
2017-12-09 12:56,-3,16.329662,22.145706,242
2017-12-09 12:58,-3,16.329662,21.25093,239
2017-12-09 13:00,-3,19.685072,23.264176000000003,247
2017-12-09 13:02,-3,19.685072,22.145706,258
2017-12-09 13:04,-2.9,16.329662,21.474624000000002,240
2017-12-09 13:06,-2.9,18.119214,25.501116000000003,248
2017-12-09 13:08,-3,21.25093,29.08022,246
2017-12-09 13:10,-3,22.369400000000002,26.395892000000003,249
2017-12-09 13:12,-3,23.040482000000004,27.738056000000004,251
2017-12-09 13:14,-3,20.356154,26.172198,240
2017-12-09 13:16,-3,20.132460000000002,26.395892000000003,250
2017-12-09 13:18,-2.8,12.526864,20.803542000000004,234
2017-12-09 13:20,-2.8,15.434886000000002,22.145706,239
2017-12-09 13:22,-2.8,16.777050000000003,21.474624000000002,240
2017-12-09 13:24,-2.7,17.000744,21.698318,233
2017-12-09 13:26,-2.8,20.356154,25.277422000000005,232
2017-12-09 13:28,-2.9,18.342908,23.040482000000004,230
2017-12-09 13:30,-2.9,20.579848,27.961750000000002,242
2017-12-09 13:32,-2.8,16.553356,22.145706,243
2017-12-09 13:34,-2.9,16.553356,21.474624000000002,238
2017-12-09 13:36,-2.9,15.882274,19.237684,228
2017-12-09 13:38,-2.8,19.685072,24.606340000000003,244
2017-12-09 13:40,-2.9,18.119214,22.369400000000002,229
2017-12-09 13:42,-2.9,18.790296,25.72481,231
2017-12-09 13:44,-2.8,15.434886000000002,20.579848,230
2017-12-09 13:46,-2.8,16.777050000000003,25.277422000000005,245
2017-12-09 13:48,-2.9,18.119214,21.922012000000002,242
2017-12-09 13:50,-2.8,18.342908,23.935258,253
2017-12-09 13:52,-2.8,14.316416000000002,21.25093,242
2017-12-09 13:54,-2.8,18.342908,22.369400000000002,249
2017-12-09 13:56,-2.8,16.777050000000003,18.790296,253
2017-12-09 13:58,-2.8,14.316416000000002,18.119214,246
2017-12-09 14:00,-2.7,13.645334,17.671826000000003,258
2017-12-09 14:02,-2.7,12.303170000000001,14.316416000000002,244
2017-12-09 14:04,-2.8,14.092722,19.461378,239
2017-12-09 14:06,-2.7,15.434886000000002,20.579848,245
2017-12-09 14:08,-2.7,13.645334,17.671826000000003,234
2017-12-09 14:10,-2.7,14.54011,19.237684,245
2017-12-09 14:12,-2.8,15.211192,19.908766000000004,249
2017-12-09 14:14,-2.9,16.329662,20.803542000000004,247
2017-12-09 14:16,-2.9,13.645334,18.790296,229
2017-12-09 14:18,-2.9,18.790296,24.158952000000003,238
2017-12-09 14:20,-2.9,17.000744,21.25093,233
2017-12-09 14:22,-2.9,16.329662,21.027236000000002,243
2017-12-09 14:24,-2.7,12.526864,16.329662,233
2017-12-09 14:26,-2.8,16.553356,20.803542000000004,244
2017-12-09 14:28,-2.9,17.224438000000003,21.027236000000002,237
2017-12-09 14:30,-2.9,17.89552,21.698318,235
2017-12-09 14:32,-2.9,16.553356,20.579848,236
2017-12-09 14:34,-2.8,17.671826000000003,23.48787,249
2017-12-09 14:36,-2.7,13.869028000000002,17.000744,247
2017-12-09 14:38,-2.7,15.211192,19.237684,240
2017-12-09 14:40,-2.7,12.303170000000001,17.448132,229
2017-12-09 14:42,-2.7,9.842536,15.211192,232
2017-12-09 14:44,-2.7,12.750558000000002,19.237684,239
2017-12-09 14:46,-2.6,10.737312000000001,17.224438000000003,233
2017-12-09 14:48,-2.6,10.737312000000001,14.316416000000002,233
2017-12-09 14:50,-2.8,13.42164,18.566602000000003,239
2017-12-09 14:52,-2.8,14.54011,22.145706,229
2017-12-09 14:54,-2.8,15.65858,20.579848,225
2017-12-09 14:56,-2.8,16.777050000000003,21.474624000000002,239
2017-12-09 14:58,-2.8,14.987498000000002,18.566602000000003,235
2017-12-09 15:00,-2.9,13.869028000000002,18.342908,225
2017-12-09 15:02,-2.9,13.197946000000002,17.448132,234
2017-12-09 15:04,-2.7,12.526864,18.566602000000003,237
2017-12-09 15:06,-2.8,12.303170000000001,17.89552,224
2017-12-09 15:08,-2.8,11.408394,14.763804,231
2017-12-09 15:10,-2.8,13.645334,16.553356,233
2017-12-09 15:12,-2.9,13.197946000000002,19.01399,240
2017-12-09 15:14,-2.8,11.184700000000001,13.197946000000002,227
2017-12-09 15:16,-2.8,11.632088000000001,14.987498000000002,223
2017-12-09 15:18,-2.8,12.526864,17.000744,228
2017-12-09 15:20,-2.8,12.974252,17.448132,225
2017-12-09 15:22,-2.8,13.197946000000002,19.01399,232
2017-12-09 15:24,-2.9,13.42164,21.25093,223
2017-12-09 15:26,-2.9,12.303170000000001,16.777050000000003,222
2017-12-09 15:28,-2.9,14.763804,19.01399,223
2017-12-09 15:30,-2.9,9.842536,12.974252,226
2017-12-09 15:32,-2.8,13.197946000000002,17.448132,225
2017-12-09 15:34,-2.9,12.974252,17.671826000000003,240
2017-12-09 15:36,-2.8,10.737312000000001,14.987498000000002,231
2017-12-09 15:38,-2.9,14.092722,18.566602000000003,228
2017-12-09 15:40,-2.9,14.316416000000002,17.89552,228
2017-12-09 15:42,-2.9,15.882274,21.027236000000002,230
2017-12-09 15:44,-3,14.316416000000002,18.566602000000003,224
2017-12-09 15:46,-2.9,13.42164,18.790296,235
2017-12-09 15:48,-2.9,10.961006000000001,14.987498000000002,236
2017-12-09 15:50,-2.9,12.079476000000001,18.790296,224
2017-12-09 15:52,-2.8,10.737312000000001,13.197946000000002,230
2017-12-09 15:54,-2.9,13.197946000000002,17.671826000000003,233
2017-12-09 15:56,-2.9,12.079476000000001,14.54011,222
2017-12-09 15:58,-2.8,9.618842,13.197946000000002,229
2017-12-09 16:00,-2.8,10.513618000000001,14.54011,225
2017-12-09 16:02,-2.9,11.632088000000001,15.65858,235
2017-12-09 16:04,-2.9,12.526864,16.329662,230
2017-12-09 16:06,-3,14.54011,19.237684,231
2017-12-09 16:08,-2.9,13.645334,16.777050000000003,235
2017-12-09 16:10,-2.8,12.079476000000001,17.224438000000003,227
2017-12-09 16:12,-2.9,11.184700000000001,14.987498000000002,220
2017-12-09 16:14,-2.9,12.303170000000001,18.342908,229
2017-12-09 16:16,-3,12.303170000000001,15.434886000000002,229
2017-12-09 16:18,-2.9,10.737312000000001,16.777050000000003,232
2017-12-09 16:20,-2.9,12.974252,17.671826000000003,227
2017-12-09 16:22,-2.9,12.750558000000002,18.119214,231
2017-12-09 16:24,-2.9,11.408394,14.092722,228
2017-12-09 16:26,-3,9.842536,12.750558000000002,225
2017-12-09 16:28,-3,11.632088000000001,17.224438000000003,233
2017-12-09 16:30,-2.9,8.276678,10.513618000000001,229
2017-12-09 16:32,-2.9,10.513618000000001,19.01399,233
2017-12-09 16:34,-2.9,9.842536,15.211192,229
2017-12-09 16:36,-3,9.842536,13.197946000000002,231
2017-12-09 16:38,-3,10.289924,12.750558000000002,230
2017-12-09 16:40,-3,8.724066,12.303170000000001,232
2017-12-09 16:42,-3.1,10.513618000000001,13.645334,220
2017-12-09 16:44,-3.1,10.737312000000001,15.882274,225
2017-12-09 16:46,-3.2,12.079476000000001,14.316416000000002,224
2017-12-09 16:48,-3.2,12.303170000000001,16.777050000000003,224
2017-12-09 16:50,-3.2,11.184700000000001,14.54011,225
2017-12-09 16:52,-3.2,10.961006000000001,13.869028000000002,221
2017-12-09 16:54,-3.2,13.42164,17.89552,217
2017-12-09 16:56,-3.3,14.54011,20.803542000000004,228
2017-12-09 16:58,-3.3,13.42164,18.119214,217
2017-12-09 17:00,-3.3,13.869028000000002,18.790296,230
2017-12-09 17:02,-3.3,14.316416000000002,17.89552,229
2017-12-09 17:04,-3.3,14.092722,19.461378,228
2017-12-09 17:06,-3.3,13.197946000000002,19.01399,225
2017-12-09 17:08,-3.3,14.54011,17.224438000000003,227
2017-12-09 17:10,-3.3,13.42164,17.448132,222
2017-12-09 17:12,-3.4,18.790296,24.382646,222
2017-12-09 17:14,-3.4,13.869028000000002,17.671826000000003,217
2017-12-09 17:16,-3.4,15.65858,20.356154,220
2017-12-09 17:18,-3.5,17.224438000000003,24.158952000000003,222
2017-12-09 17:20,-3.6,15.882274,18.790296,215
2017-12-09 17:22,-3.6,11.632088000000001,16.553356,216
2017-12-09 17:24,-3.6,14.763804,20.132460000000002,219
2017-12-09 17:26,-3.6,13.645334,17.000744,228
2017-12-09 17:28,-3.6,12.974252,16.105968,228
2017-12-09 17:30,-3.6,12.974252,16.105968,220
2017-12-09 17:32,-3.7,11.408394,14.316416000000002,217
2017-12-09 17:34,-3.7,12.974252,16.105968,224
2017-12-09 17:36,-3.8,14.54011,21.027236000000002,220
2017-12-09 17:38,-3.7,13.42164,16.105968,231
2017-12-09 17:40,-3.8,14.316416000000002,19.237684,225
2017-12-09 17:42,-3.9,12.974252,16.777050000000003,216
2017-12-09 17:44,-3.9,10.737312000000001,14.092722,213
2017-12-09 17:46,-3.9,12.526864,17.448132,220
2017-12-09 17:48,-3.9,11.408394,14.092722,219
2017-12-09 17:50,-4,10.961006000000001,12.974252,213
2017-12-09 17:52,-4,13.197946000000002,17.000744,206
2017-12-09 17:54,-4.2,14.54011,17.89552,208
2017-12-09 17:56,-4.3,13.197946000000002,19.01399,212
2017-12-09 17:58,-4.5,15.211192,21.027236000000002,209
2017-12-09 18:00,-4.6,17.89552,22.593094,208
2017-12-09 18:02,-4.7,14.763804,18.566602000000003,210
2017-12-09 18:04,-4.7,14.316416000000002,18.342908,210
2017-12-09 18:06,-4.7,14.763804,17.448132,214
2017-12-09 18:08,-4.7,11.408394,15.65858,211
2017-12-09 18:10,-4.7,13.197946000000002,16.777050000000003,209
2017-12-09 18:12,-4.8,13.42164,17.89552,208
2017-12-09 18:14,-4.9,16.105968,20.579848,211
2017-12-09 18:16,-4.9,14.316416000000002,19.237684,208
2017-12-09 18:18,-5,16.329662,22.145706,205
2017-12-09 18:20,-5,14.54011,21.474624000000002,211
2017-12-09 18:22,-4.9,14.316416000000002,17.000744,209
2017-12-09 18:24,-5,14.987498000000002,20.356154,212
2017-12-09 18:26,-5,14.54011,19.237684,208
2017-12-09 18:28,-5.1,12.974252,15.434886000000002,216
2017-12-09 18:30,-5.1,12.526864,19.237684,206
2017-12-09 18:32,-5.1,13.645334,18.566602000000003,210
2017-12-09 18:34,-5.1,14.54011,18.790296,212
2017-12-09 18:36,-5.2,14.092722,17.224438000000003,208
2017-12-09 18:38,-5.2,12.079476000000001,14.763804,212
2017-12-09 18:40,-5.2,11.632088000000001,14.316416000000002,210
2017-12-09 18:42,-5.2,9.171454,10.961006000000001,208
2017-12-09 18:44,-5.2,11.632088000000001,17.448132,211
2017-12-09 18:46,-5.3,9.842536,12.750558000000002,206
2017-12-09 18:48,-5.3,11.408394,17.448132,213
2017-12-09 18:50,-5.4,13.197946000000002,18.342908,207
2017-12-09 18:52,-5.4,12.303170000000001,16.329662,203
2017-12-09 18:54,-5.3,12.079476000000001,17.000744,209
2017-12-09 18:56,-5.3,11.855782,16.553356,209
2017-12-09 18:58,-5.4,13.869028000000002,16.553356,206
2017-12-09 19:00,-5.4,13.197946000000002,16.329662,213
2017-12-09 19:02,-5.4,10.513618000000001,13.645334,216
2017-12-09 19:04,-5.5,13.42164,18.566602000000003,210
2017-12-09 19:06,-5.5,12.974252,17.671826000000003,205
2017-12-09 19:08,-5.6,13.42164,16.105968,211
2017-12-09 19:10,-5.5,8.500372,12.526864,206
2017-12-09 19:12,-5.5,10.513618000000001,13.869028000000002,211
2017-12-09 19:14,-5.5,9.618842,12.303170000000001,217
2017-12-09 19:16,-5.5,8.94776,14.092722,212
2017-12-09 19:18,-5.6,9.395148,13.42164,220
2017-12-09 19:20,-5.6,10.066230000000001,13.645334,215
2017-12-09 19:22,-5.6,10.961006000000001,14.092722,215
2017-12-09 19:24,-5.7,10.513618000000001,14.54011,218
2017-12-09 19:26,-5.7,9.842536,12.974252,211
2017-12-09 19:28,-5.7,9.395148,12.303170000000001,216
2017-12-09 19:30,-5.8,9.842536,14.092722,203
2017-12-09 19:32,-5.8,10.961006000000001,13.645334,202
2017-12-09 19:34,-5.9,9.395148,13.869028000000002,206
2017-12-09 19:36,-5.9,8.276678,10.737312000000001,205
2017-12-09 19:38,-5.9,7.158208000000001,8.052984,210
2017-12-09 19:40,-5.9,8.276678,9.618842,207
2017-12-09 19:42,-5.9,9.618842,12.974252,209
2017-12-09 19:44,-6,11.855782,14.763804,209
2017-12-09 19:46,-6,10.737312000000001,12.750558000000002,203
2017-12-09 19:48,-6.1,11.408394,14.316416000000002,211
2017-12-09 19:50,-6.2,9.618842,12.526864,207
2017-12-09 19:52,-6.2,12.079476000000001,14.763804,210
2017-12-09 19:54,-6.1,7.82929,9.171454,207
2017-12-09 19:56,-6.2,10.737312000000001,12.526864,204
2017-12-09 19:58,-6.3,10.737312000000001,13.197946000000002,209
2017-12-09 20:00,-6.3,9.618842,11.632088000000001,207
2017-12-09 20:02,-6.3,10.513618000000001,12.526864,203
2017-12-09 20:04,-6.2,10.737312000000001,16.329662,208
2017-12-09 20:06,-6.3,10.737312000000001,14.763804,213
2017-12-09 20:08,-6.2,9.171454,11.632088000000001,211
2017-12-09 20:10,-6.3,9.395148,14.092722,214
2017-12-09 20:12,-6.4,9.842536,13.197946000000002,210
2017-12-09 20:14,-6.4,11.184700000000001,14.092722,214
2017-12-09 20:16,-6.4,8.94776,11.855782,209
2017-12-09 20:18,-6.3,9.618842,13.645334,207
2017-12-09 20:20,-6.3,8.94776,12.303170000000001,212
2017-12-09 20:22,-6.3,7.82929,10.513618000000001,208
2017-12-09 20:24,-6.4,10.513618000000001,13.197946000000002,208
2017-12-09 20:26,-6.5,10.737312000000001,12.974252,207
2017-12-09 20:28,-6.5,9.171454,11.184700000000001,209
2017-12-09 20:30,-6.6,9.395148,11.855782,208
2017-12-09 20:32,-6.5,8.724066,10.066230000000001,210
2017-12-09 20:34,-6.5,8.276678,11.855782,210
2017-12-09 20:36,-6.6,8.94776,10.961006000000001,211
2017-12-09 20:38,-6.6,7.381902,9.842536,210
2017-12-09 20:40,-6.5,6.487126,8.276678,211
2017-12-09 20:42,-6.5,8.276678,10.289924,202
2017-12-09 20:44,-6.5,8.500372,10.066230000000001,205
2017-12-09 20:46,-6.5,8.94776,10.513618000000001,206
2017-12-09 20:48,-6.6,8.052984,10.513618000000001,206
2017-12-09 20:50,-6.7,9.618842,12.303170000000001,205
2017-12-09 20:52,-6.8,8.724066,9.618842,202
2017-12-09 20:54,-6.8,9.395148,12.750558000000002,212
2017-12-09 20:56,-6.8,8.276678,10.289924,205
2017-12-09 20:58,-6.8,8.500372,11.184700000000001,203
2017-12-09 21:00,-6.8,8.276678,9.618842,204
2017-12-09 21:02,-6.7,9.395148,11.632088000000001,203
2017-12-09 21:04,-6.8,9.842536,11.408394,214
2017-12-09 21:06,-6.9,10.513618000000001,12.750558000000002,207
2017-12-09 21:08,-6.8,8.276678,10.513618000000001,212
2017-12-09 21:10,-6.8,8.500372,9.842536,196
2017-12-09 21:12,-6.8,10.289924,13.42164,195
2017-12-09 21:14,-6.9,10.513618000000001,12.750558000000002,202
2017-12-09 21:16,-6.9,7.381902,10.066230000000001,201
2017-12-09 21:18,-7,8.500372,11.184700000000001,193
2017-12-09 21:20,-7,10.289924,12.974252,193
2017-12-09 21:22,-7,9.618842,11.855782,203
2017-12-09 21:24,-7,9.171454,10.737312000000001,209
2017-12-09 21:26,-7,8.500372,10.961006000000001,192
2017-12-09 21:28,-7,7.381902,8.724066,188
2017-12-09 21:30,-7,7.82929,9.618842,191
2017-12-09 21:32,-6.9,7.82929,9.618842,192
2017-12-09 21:34,-6.9,8.052984,11.184700000000001,191
2017-12-09 21:36,-7.1,9.395148,11.408394,201
2017-12-09 21:38,-7.1,8.724066,12.079476000000001,190
2017-12-09 21:40,-7.1,8.500372,10.066230000000001,187
2017-12-09 21:42,-7,7.82929,9.842536,190
2017-12-09 21:44,-7,9.395148,10.737312000000001,186
2017-12-09 21:46,-7.1,8.94776,11.184700000000001,198
2017-12-09 21:48,-7.2,9.395148,11.184700000000001,188
2017-12-09 21:50,-7.2,9.618842,12.303170000000001,191
2017-12-09 21:52,-7.2,9.171454,11.184700000000001,199
2017-12-09 21:54,-7.2,11.408394,14.092722,198
2017-12-09 21:56,-7.2,9.395148,12.750558000000002,198
2017-12-09 21:58,-7.2,11.408394,14.092722,195
2017-12-09 22:00,-7.1,10.513618000000001,12.079476000000001,197
2017-12-09 22:02,-7.1,10.513618000000001,13.42164,203
2017-12-09 22:04,-7.2,10.066230000000001,12.526864,189
2017-12-09 22:06,-7.2,10.289924,13.197946000000002,191
2017-12-09 22:08,-7.2,9.395148,11.408394,194
2017-12-09 22:10,-7.2,9.618842,11.855782,196
2017-12-09 22:12,-7.1,9.395148,11.184700000000001,195
2017-12-09 22:14,-7.2,10.289924,14.316416000000002,201
2017-12-09 22:16,-7.2,11.184700000000001,12.974252,199
2017-12-09 22:18,-7.2,10.289924,13.197946000000002,199
2017-12-09 22:20,-7.1,8.724066,11.184700000000001,200
2017-12-09 22:22,-7.1,7.82929,9.171454,201
2017-12-09 22:24,-7.1,10.737312000000001,14.316416000000002,200
2017-12-09 22:26,-7.1,10.513618000000001,12.303170000000001,200
2017-12-09 22:28,-7.2,11.632088000000001,13.645334,198
2017-12-09 22:30,-7.2,12.974252,15.434886000000002,197
2017-12-09 22:32,-7.2,10.961006000000001,14.763804,197
2017-12-09 22:34,-7.2,11.408394,14.54011,201
2017-12-09 22:36,-7.2,10.513618000000001,13.197946000000002,201
2017-12-09 22:38,-7.2,12.079476000000001,14.092722,197
2017-12-09 22:40,-7.2,12.750558000000002,15.65858,198
2017-12-09 22:42,-7.2,10.737312000000001,12.079476000000001,192
2017-12-09 22:44,-7.2,11.184700000000001,13.42164,195
2017-12-09 22:46,-7.2,10.289924,12.303170000000001,193
2017-12-09 22:48,-7.2,8.94776,11.184700000000001,184
2017-12-09 22:50,-7.2,8.94776,10.513618000000001,189
2017-12-09 22:52,-7.3,9.395148,11.855782,198
2017-12-09 22:54,-7.2,9.395148,11.184700000000001,193
2017-12-09 22:56,-7.2,8.276678,10.737312000000001,198
2017-12-09 22:58,-7.2,7.82929,10.066230000000001,188
2017-12-09 23:00,-7.3,10.289924,12.079476000000001,188
2017-12-09 23:02,-7.2,7.605596,9.395148,191
2017-12-09 23:04,-7.3,9.395148,10.961006000000001,185
2017-12-09 23:06,-7.3,9.842536,12.079476000000001,175
2017-12-09 23:08,-7.3,8.94776,11.855782,191
2017-12-09 23:10,-7.3,7.158208000000001,8.724066,185
2017-12-09 23:12,-7.2,8.052984,10.961006000000001,194
2017-12-09 23:14,-7.2,8.94776,11.408394,188
2017-12-09 23:16,-7.3,10.066230000000001,13.645334,192
2017-12-09 23:18,-7.2,9.171454,10.961006000000001,178
2017-12-09 23:20,-7.3,8.724066,10.289924,188
2017-12-09 23:22,-7.2,7.82929,9.171454,195
2017-12-09 23:24,-7.2,8.500372,10.289924,189
2017-12-09 23:26,-7.2,7.605596,8.724066,195
2017-12-09 23:28,-7.2,8.052984,9.618842,194
2017-12-09 23:30,-7.1,6.263432,7.381902,194
2017-12-09 23:32,-7.1,7.605596,10.066230000000001,191
2017-12-09 23:34,-7.1,7.381902,8.94776,176
2017-12-09 23:36,-7,6.039738000000001,7.82929,185
2017-12-09 23:38,-7,6.263432,7.605596,181
2017-12-09 23:40,-7,6.039738000000001,7.381902,171
2017-12-09 23:42,-7,6.934514000000001,8.500372,185
2017-12-09 23:44,-7,9.395148,10.961006000000001,173
2017-12-09 23:46,-7,8.276678,10.066230000000001,183
2017-12-09 23:48,-7,8.724066,12.079476000000001,193
2017-12-09 23:50,-7.1,10.289924,13.197946000000002,179
2017-12-09 23:52,-7.1,13.197946000000002,16.553356,181
2017-12-09 23:54,-7,11.184700000000001,13.42164,181
2017-12-09 23:56,-7.1,11.632088000000001,13.42164,181
2017-12-09 23:58,-7.1,13.869028000000002,17.448132,181
2017-12-10 00:00,-7.1,13.42164,17.89552,183
2017-12-10 00:02,-7.1,11.632088000000001,13.42164,183
2017-12-10 00:04,-7.1,12.079476000000001,14.763804,184
2017-12-10 00:06,-6.9,10.289924,12.974252,181
2017-12-10 00:08,-7,10.961006000000001,13.42164,183
2017-12-10 00:10,-7,12.974252,15.882274,178
2017-12-10 00:12,-7,10.961006000000001,13.645334,183
2017-12-10 00:14,-7,10.289924,11.855782,187
2017-12-10 00:16,-6.9,9.618842,11.184700000000001,171
2017-12-10 00:18,-6.9,10.961006000000001,12.750558000000002,175
2017-12-10 00:20,-6.9,12.303170000000001,14.987498000000002,173
2017-12-10 00:22,-7.1,12.303170000000001,14.763804,180
2017-12-10 00:24,-7.1,10.961006000000001,15.211192,181
2017-12-10 00:26,-7,10.513618000000001,12.303170000000001,181
2017-12-10 00:28,-7.1,11.408394,13.197946000000002,183
2017-12-10 00:30,-7,11.632088000000001,14.092722,177
2017-12-10 00:32,-7.1,14.092722,16.777050000000003,174
2017-12-10 00:34,-7.1,10.289924,13.197946000000002,190
2017-12-10 00:36,-7.1,10.737312000000001,12.974252,180
2017-12-10 00:38,-7,10.961006000000001,13.197946000000002,194
2017-12-10 00:40,-6.9,9.171454,11.408394,184
2017-12-10 00:42,-7,10.066230000000001,12.974252,192
2017-12-10 00:44,-7,10.513618000000001,12.303170000000001,192
2017-12-10 00:46,-7,10.066230000000001,12.079476000000001,193
2017-12-10 00:48,-7,8.724066,11.855782,183
2017-12-10 00:50,-7.1,10.289924,13.42164,190
2017-12-10 00:52,-7.1,10.961006000000001,12.974252,180
2017-12-10 00:54,-7,8.724066,12.079476000000001,173
2017-12-10 00:56,-7,8.94776,11.408394,179
2017-12-10 00:58,-7,9.395148,11.855782,172
2017-12-10 01:00,-7,10.066230000000001,12.526864,168
2017-12-10 01:02,-7,10.066230000000001,13.869028000000002,158
2017-12-10 01:04,-7.1,8.052984,9.618842,163
2017-12-10 01:06,-7,10.289924,11.855782,172
2017-12-10 01:08,-7,9.171454,11.408394,170
2017-12-10 01:10,-7.1,10.513618000000001,14.54011,165
2017-12-10 01:12,-7.1,9.842536,12.526864,178
2017-12-10 01:14,-7,9.395148,14.092722,167
2017-12-10 01:16,-7,9.618842,12.303170000000001,175
2017-12-10 01:18,-7.1,9.842536,12.079476000000001,169
2017-12-10 01:20,-7.1,12.079476000000001,14.092722,166
2017-12-10 01:22,-7,8.94776,10.513618000000001,174
2017-12-10 01:24,-7.1,9.395148,11.632088000000001,180
2017-12-10 01:26,-7,9.395148,15.211192,173
2017-12-10 01:28,-7,9.618842,13.197946000000002,180
2017-12-10 01:30,-6.9,7.605596,9.395148,160
2017-12-10 01:32,-6.9,8.052984,11.855782,173
2017-12-10 01:34,-6.9,6.71082,8.052984,181
2017-12-10 01:36,-6.9,7.82929,9.618842,178
2017-12-10 01:38,-6.9,8.500372,9.842536,184
2017-12-10 01:40,-6.9,7.82929,10.961006000000001,168
2017-12-10 01:42,-6.7,9.395148,11.184700000000001,166
2017-12-10 01:44,-6.8,9.171454,10.513618000000001,148
2017-12-10 01:46,-6.7,9.395148,10.961006000000001,152
2017-12-10 01:48,-6.7,9.171454,10.289924,164
2017-12-10 01:50,-6.8,9.171454,10.961006000000001,169
2017-12-10 01:52,-6.7,9.842536,12.303170000000001,146
2017-12-10 01:54,-6.8,11.408394,14.316416000000002,144
2017-12-10 01:56,-6.8,11.408394,15.211192,152
2017-12-10 01:58,-6.8,11.184700000000001,14.54011,153
2017-12-10 02:00,-6.7,10.737312000000001,13.645334,149
2017-12-10 02:02,-6.7,11.632088000000001,13.645334,154
2017-12-10 02:04,-6.8,10.289924,12.974252,150
2017-12-10 02:06,-6.8,9.618842,12.974252,165
2017-12-10 02:08,-6.7,10.066230000000001,13.645334,166
2017-12-10 02:10,-6.7,10.289924,14.092722,159
2017-12-10 02:12,-6.7,7.158208000000001,9.395148,155
2017-12-10 02:14,-6.6,9.842536,12.303170000000001,143
2017-12-10 02:16,-6.6,8.94776,10.513618000000001,146
2017-12-10 02:18,-6.6,10.961006000000001,12.750558000000002,141
2017-12-10 02:20,-6.6,10.513618000000001,13.42164,158
2017-12-10 02:22,-6.7,10.289924,13.645334,152
2017-12-10 02:24,-6.6,8.94776,10.066230000000001,145
2017-12-10 02:26,-6.6,12.303170000000001,15.65858,137
2017-12-10 02:28,-6.6,11.408394,13.869028000000002,144
2017-12-10 02:30,-6.6,10.066230000000001,12.974252,134
2017-12-10 02:32,-6.6,8.94776,10.961006000000001,139
2017-12-10 02:34,-6.5,9.618842,11.408394,141
2017-12-10 02:36,-6.6,11.855782,13.197946000000002,135
2017-12-10 02:38,-6.6,10.066230000000001,12.750558000000002,143
2017-12-10 02:40,-6.5,10.513618000000001,14.763804,147
2017-12-10 02:42,-6.5,10.066230000000001,12.079476000000001,145
2017-12-10 02:44,-6.4,9.618842,11.855782,160
2017-12-10 02:46,-6.4,7.82929,11.855782,164
2017-12-10 02:48,-6.4,8.052984,12.079476000000001,166
2017-12-10 02:50,-6.5,7.82929,11.184700000000001,139
2017-12-10 02:52,-6.5,8.94776,12.303170000000001,144
2017-12-10 02:54,-6.6,11.855782,13.42164,143
2017-12-10 02:56,-6.6,10.066230000000001,13.42164,139
2017-12-10 02:58,-6.5,10.513618000000001,12.303170000000001,131
2017-12-10 03:00,-6.5,8.94776,11.855782,136
2017-12-10 03:02,-6.5,10.737312000000001,12.974252,138
2017-12-10 03:04,-6.5,10.066230000000001,13.42164,131
2017-12-10 03:06,-6.6,11.184700000000001,13.869028000000002,133
2017-12-10 03:08,-6.7,11.855782,15.211192,148
2017-12-10 03:10,-6.7,10.289924,15.211192,147
2017-12-10 03:12,-6.6,10.961006000000001,13.42164,138
2017-12-10 03:14,-6.6,10.513618000000001,12.079476000000001,137
2017-12-10 03:16,-6.6,10.289924,11.632088000000001,139
2017-12-10 03:18,-6.6,9.842536,12.303170000000001,153
2017-12-10 03:20,-6.6,10.289924,13.197946000000002,144
2017-12-10 03:22,-6.5,11.184700000000001,13.645334,136
2017-12-10 03:24,-6.5,10.289924,12.079476000000001,132
2017-12-10 03:26,-6.5,11.184700000000001,13.42164,135
2017-12-10 03:28,-6.5,11.408394,13.869028000000002,141
2017-12-10 03:30,-6.5,10.961006000000001,12.974252,136
2017-12-10 03:32,-6.4,11.408394,12.974252,144
2017-12-10 03:34,-6.3,11.408394,12.974252,137
2017-12-10 03:36,-6.4,9.842536,11.632088000000001,135
2017-12-10 03:38,-6.4,11.408394,13.197946000000002,139
2017-12-10 03:40,-6.4,9.618842,11.408394,133
2017-12-10 03:42,-6.4,10.737312000000001,13.645334,137
2017-12-10 03:44,-6.4,11.408394,14.316416000000002,141
2017-12-10 03:46,-6.3,11.632088000000001,12.974252,136
2017-12-10 03:48,-6.3,11.855782,13.869028000000002,135
2017-12-10 03:50,-6.2,11.184700000000001,13.197946000000002,136
2017-12-10 03:52,-6.3,12.303170000000001,15.434886000000002,132
2017-12-10 03:54,-6.2,11.184700000000001,13.645334,135
2017-12-10 03:56,-6.1,13.42164,14.987498000000002,129
2017-12-10 03:58,-6.2,12.750558000000002,15.211192,137
2017-12-10 04:00,-6.3,14.316416000000002,16.777050000000003,134
2017-12-10 04:02,-6.3,14.54011,16.553356,132
2017-12-10 04:04,-6.3,11.632088000000001,15.211192,138
2017-12-10 04:06,-6.1,12.526864,14.316416000000002,131
2017-12-10 04:08,-5.8,11.855782,14.987498000000002,144
2017-12-10 04:10,-6,12.750558000000002,14.316416000000002,133
2017-12-10 04:12,-6.1,13.645334,15.211192,134
2017-12-10 04:14,-6.1,12.974252,15.211192,136
2017-12-10 04:16,-6.1,13.42164,15.434886000000002,144
2017-12-10 04:18,-6.1,12.974252,15.65858,143
2017-12-10 04:20,-6.1,12.303170000000001,15.211192,148
2017-12-10 04:22,-5.9,11.184700000000001,14.092722,139
2017-12-10 04:24,-5.7,11.632088000000001,14.092722,144
2017-12-10 04:26,-5.9,11.184700000000001,13.42164,149
2017-12-10 04:28,-5.9,11.184700000000001,13.869028000000002,143
2017-12-10 04:30,-5.9,12.079476000000001,14.987498000000002,140
2017-12-10 04:32,-5.9,12.526864,14.316416000000002,135
2017-12-10 04:34,-5.9,12.526864,14.763804,136
2017-12-10 04:36,-5.8,12.750558000000002,14.763804,138
2017-12-10 04:38,-5.8,11.855782,14.316416000000002,130
2017-12-10 04:40,-5.8,12.526864,14.54011,135
2017-12-10 04:42,-5.9,12.079476000000001,14.54011,132
2017-12-10 04:44,-5.8,11.184700000000001,14.316416000000002,141
2017-12-10 04:46,-5.6,11.184700000000001,13.645334,138
2017-12-10 04:48,-5.7,12.750558000000002,13.869028000000002,138
2017-12-10 04:50,-5.6,11.632088000000001,14.54011,138
2017-12-10 04:52,-5.6,11.855782,13.645334,140
2017-12-10 04:54,-5.6,10.513618000000001,13.42164,143
2017-12-10 04:56,-5.6,10.961006000000001,13.197946000000002,141
2017-12-10 04:58,-5.7,11.184700000000001,12.750558000000002,132
2017-12-10 05:00,-5.7,12.079476000000001,14.316416000000002,130
2017-12-10 05:02,-5.6,10.961006000000001,12.974252,131
2017-12-10 05:04,-5.6,12.303170000000001,14.316416000000002,130
2017-12-10 05:06,-5.5,11.855782,14.092722,133
2017-12-10 05:08,-5.6,12.750558000000002,14.987498000000002,131
2017-12-10 05:10,-5.5,12.079476000000001,13.645334,136
2017-12-10 05:12,-5.4,11.184700000000001,12.974252,140
2017-12-10 05:14,-5.4,12.303170000000001,14.316416000000002,140
2017-12-10 05:16,-5.3,10.737312000000001,12.750558000000002,134
2017-12-10 05:18,-5.2,11.184700000000001,12.974252,132
2017-12-10 05:20,-5.3,10.961006000000001,13.197946000000002,138
2017-12-10 05:22,-5.2,11.408394,14.092722,143
2017-12-10 05:24,-5.2,11.408394,13.645334,143
2017-12-10 05:26,-5.3,11.855782,13.42164,136
2017-12-10 05:28,-5.3,11.184700000000001,13.197946000000002,133
2017-12-10 05:30,-5.2,10.289924,12.079476000000001,133
2017-12-10 05:32,-5.2,11.855782,13.42164,130
2017-12-10 05:34,-5.3,10.961006000000001,12.303170000000001,135
2017-12-10 05:36,-5.2,12.303170000000001,15.211192,135
2017-12-10 05:38,-5.2,12.526864,15.434886000000002,134
2017-12-10 05:40,-5.2,12.974252,15.211192,137
2017-12-10 05:42,-5.2,13.42164,16.329662,136
2017-12-10 05:44,-5.2,12.303170000000001,13.869028000000002,139
2017-12-10 05:46,-5.1,13.197946000000002,14.316416000000002,130
2017-12-10 05:48,-5.1,12.750558000000002,14.763804,137
2017-12-10 05:50,-5,14.092722,15.65858,133
2017-12-10 05:52,-5,13.645334,14.987498000000002,136
2017-12-10 05:54,-5.1,13.197946000000002,16.329662,129
2017-12-10 05:56,-5.1,13.197946000000002,15.882274,132
2017-12-10 05:58,-4.9,13.42164,15.211192,140
2017-12-10 06:00,-5,12.750558000000002,14.54011,139
2017-12-10 06:02,-5,13.869028000000002,15.211192,141
2017-12-10 06:04,-4.9,14.092722,16.553356,143
2017-12-10 06:06,-4.8,11.855782,13.42164,142
2017-12-10 06:08,-4.8,12.974252,15.211192,150
2017-12-10 06:10,-4.8,14.316416000000002,15.882274,147
2017-12-10 06:12,-4.9,14.987498000000002,17.224438000000003,149
2017-12-10 06:14,-4.7,13.869028000000002,15.882274,150
2017-12-10 06:16,-4.7,12.750558000000002,14.763804,151
2017-12-10 06:18,-4.8,15.65858,18.566602000000003,150
2017-12-10 06:20,-4.7,15.65858,17.671826000000003,149
2017-12-10 06:22,-4.7,14.987498000000002,18.566602000000003,146
2017-12-10 06:24,-4.7,13.869028000000002,17.000744,142
2017-12-10 06:26,-4.6,14.316416000000002,18.119214,148
2017-12-10 06:28,-4.6,16.329662,21.922012000000002,150
2017-12-10 06:30,-4.6,15.434886000000002,19.908766000000004,146
2017-12-10 06:32,-4.6,15.434886000000002,19.237684,147
2017-12-10 06:34,-4.6,12.750558000000002,16.105968,145
2017-12-10 06:36,-4.4,13.42164,16.777050000000003,148
2017-12-10 06:38,-4.5,14.763804,18.119214,147
2017-12-10 06:40,-4.5,14.763804,17.224438000000003,149
2017-12-10 06:42,-4.5,16.105968,19.01399,148
2017-12-10 06:44,-4.4,15.882274,20.356154,149
2017-12-10 06:46,-4.5,14.987498000000002,19.685072,155
2017-12-10 06:48,-4.5,16.329662,20.803542000000004,153
2017-12-10 06:50,-4.4,14.763804,17.671826000000003,146
2017-12-10 06:52,-4.4,16.553356,19.01399,146
2017-12-10 06:54,-4.4,13.645334,16.329662,147
2017-12-10 06:56,-4.4,14.763804,16.777050000000003,149
2017-12-10 06:58,-4.3,13.42164,15.65858,146
2017-12-10 07:00,-4.3,13.645334,15.434886000000002,148
2017-12-10 07:02,-4.3,14.763804,17.448132,155
2017-12-10 07:04,-4.3,13.42164,15.434886000000002,154
2017-12-10 07:06,-4.3,15.211192,18.790296,150
2017-12-10 07:08,-4.2,13.645334,17.000744,151
2017-12-10 07:10,-4.2,14.763804,17.671826000000003,148
2017-12-10 07:12,-4.3,14.54011,16.777050000000003,149
2017-12-10 07:14,-4.3,13.42164,15.211192,152
2017-12-10 07:16,-4.2,12.303170000000001,16.553356,157
2017-12-10 07:18,-4.2,12.079476000000001,14.763804,148
2017-12-10 07:20,-4.3,14.763804,18.342908,151
2017-12-10 07:22,-4.3,14.316416000000002,16.777050000000003,143
2017-12-10 07:24,-4.2,13.42164,17.000744,159
2017-12-10 07:26,-4.2,14.092722,17.224438000000003,145
2017-12-10 07:28,-4.1,12.526864,13.869028000000002,150
2017-12-10 07:30,-4.2,13.869028000000002,16.329662,144
2017-12-10 07:32,-4.2,15.434886000000002,18.790296,147
2017-12-10 07:34,-4.2,13.42164,15.65858,148
2017-12-10 07:36,-4.1,15.211192,19.01399,147
2017-12-10 07:38,-4.2,16.105968,19.685072,144
2017-12-10 07:40,-4.2,13.645334,16.553356,146
2017-12-10 07:42,-4.1,14.092722,16.105968,150
2017-12-10 07:44,-4.1,14.54011,18.119214,138
2017-12-10 07:46,-4.2,15.434886000000002,17.224438000000003,145
2017-12-10 07:48,-4,14.316416000000002,17.448132,145
2017-12-10 07:50,-4,14.316416000000002,16.553356,149
2017-12-10 07:52,-4,14.987498000000002,21.698318,149
2017-12-10 07:54,-4.2,15.434886000000002,17.89552,154
2017-12-10 07:56,-4.2,14.763804,18.342908,154
2017-12-10 07:58,-4.1,12.079476000000001,13.645334,150
2017-12-10 08:00,-4.1,13.197946000000002,14.316416000000002,143
2017-12-10 08:02,-4.1,11.408394,12.974252,152
2017-12-10 08:04,-4.1,10.513618000000001,12.079476000000001,149
2017-12-10 08:06,-3.9,10.289924,12.079476000000001,148
2017-12-10 08:08,-4.1,10.961006000000001,13.197946000000002,157
2017-12-10 08:10,-4.1,12.079476000000001,14.54011,155
2017-12-10 08:12,-4.1,10.289924,11.408394,156
2017-12-10 08:14,-4.2,11.184700000000001,12.974252,157
2017-12-10 08:16,-4.1,10.289924,11.855782,155
2017-12-10 08:18,-4.1,12.303170000000001,14.54011,157
2017-12-10 08:20,-4,10.289924,12.079476000000001,153
2017-12-10 08:22,-3.9,12.079476000000001,13.869028000000002,148
2017-12-10 08:24,-4,11.408394,13.42164,139
2017-12-10 08:26,-3.9,11.855782,13.42164,146
2017-12-10 08:28,-3.9,11.632088000000001,12.750558000000002,147
2017-12-10 08:30,-3.9,10.961006000000001,12.974252,146
2017-12-10 08:32,-3.8,10.961006000000001,12.303170000000001,145
2017-12-10 08:34,-3.9,13.42164,15.434886000000002,152
2017-12-10 08:36,-4,11.632088000000001,13.42164,151
2017-12-10 08:38,-3.9,10.289924,12.974252,144
2017-12-10 08:40,-3.8,11.184700000000001,13.42164,146
2017-12-10 08:42,-3.9,11.184700000000001,12.974252,143
2017-12-10 08:44,-3.9,11.632088000000001,14.092722,142
2017-12-10 08:46,-4,12.974252,19.237684,146
2017-12-10 08:48,-3.9,12.974252,14.54011,146
2017-12-10 08:50,-3.8,12.526864,14.763804,147
2017-12-10 08:52,-3.8,12.303170000000001,14.763804,144
2017-12-10 08:54,-3.8,12.750558000000002,14.54011,145
2017-12-10 08:56,-3.8,12.079476000000001,14.763804,145
2017-12-10 08:58,-3.7,12.526864,16.105968,149
2017-12-10 09:00,-3.6,9.395148,11.184700000000001,146
2017-12-10 09:02,-3.6,9.618842,12.079476000000001,149
2017-12-10 09:04,-3.7,10.961006000000001,13.645334,144
2017-12-10 09:06,-3.6,10.737312000000001,13.645334,148
2017-12-10 09:08,-3.6,9.618842,11.855782,159
2017-12-10 09:10,-3.6,10.066230000000001,12.079476000000001,155
2017-12-10 09:12,-3.6,8.94776,11.408394,166
2017-12-10 09:14,-3.5,10.961006000000001,12.750558000000002,163
2017-12-10 09:16,-3.5,8.500372,11.632088000000001,165
2017-12-10 09:18,-3.6,9.618842,11.855782,170
2017-12-10 09:20,-3.6,10.961006000000001,12.526864,157
2017-12-10 09:22,-3.5,8.94776,10.737312000000001,167
2017-12-10 09:24,-3.4,10.961006000000001,14.316416000000002,162
2017-12-10 09:26,-3.5,14.316416000000002,18.566602000000003,164
2017-12-10 09:28,-3.5,11.408394,14.54011,168
2017-12-10 09:30,-3.5,11.632088000000001,15.211192,177
2017-12-10 09:32,-3.5,8.724066,11.855782,178
2017-12-10 09:34,-3.5,9.618842,12.750558000000002,179
2017-12-10 09:36,-3.5,12.303170000000001,16.105968,178
2017-12-10 09:38,-3.6,12.079476000000001,15.882274,170
2017-12-10 09:40,-3.5,10.737312000000001,12.750558000000002,179
2017-12-10 09:42,-3.5,11.184700000000001,13.42164,171
2017-12-10 09:44,-3.5,11.632088000000001,14.763804,167
2017-12-10 09:46,-3.5,10.066230000000001,11.632088000000001,169
2017-12-10 09:48,-3.3,9.842536,11.632088000000001,170
2017-12-10 09:50,-3.5,10.737312000000001,12.303170000000001,179
2017-12-10 09:52,-3.5,12.303170000000001,15.65858,182
2017-12-10 09:54,-3.5,11.408394,13.869028000000002,177
2017-12-10 09:56,-3.5,9.842536,12.974252,174
2017-12-10 09:58,-3.5,11.408394,14.987498000000002,175
2017-12-10 10:00,-3.5,11.632088000000001,13.869028000000002,180
2017-12-10 10:02,-3.5,12.750558000000002,15.434886000000002,174
2017-12-10 10:04,-3.5,13.197946000000002,15.211192,179
2017-12-10 10:06,-3.5,10.513618000000001,13.42164,182
2017-12-10 10:08,-3.4,12.079476000000001,14.316416000000002,179
2017-12-10 10:10,-3.4,11.632088000000001,14.316416000000002,184
2017-12-10 10:12,-3.3,9.395148,11.408394,184
2017-12-10 10:14,-3.3,10.513618000000001,13.197946000000002,188
2017-12-10 10:16,-3.3,10.289924,14.092722,187
2017-12-10 10:18,-3.4,11.184700000000001,13.42164,189
2017-12-10 10:20,-3.4,14.316416000000002,16.777050000000003,174
2017-12-10 10:22,-3.4,12.974252,15.882274,190
2017-12-10 10:24,-3.4,13.645334,15.882274,193
2017-12-10 10:26,-3.4,14.54011,18.119214,193
2017-12-10 10:28,-3.4,13.645334,16.329662,194
2017-12-10 10:30,-3.4,12.750558000000002,15.211192,186
2017-12-10 10:32,-3.3,11.184700000000001,12.750558000000002,190
2017-12-10 10:34,-3.3,13.869028000000002,16.105968,182
2017-12-10 10:36,-3.3,12.974252,15.65858,182
2017-12-10 10:38,-3.3,11.855782,13.869028000000002,183
2017-12-10 10:40,-3.3,13.42164,15.434886000000002,194
2017-12-10 10:42,-3.3,12.526864,14.987498000000002,192
2017-12-10 10:44,-3.3,12.079476000000001,15.882274,197
2017-12-10 10:46,-3.2,11.184700000000001,12.974252,189
2017-12-10 10:48,-3.1,11.632088000000001,14.092722,190
2017-12-10 10:50,-3.3,13.42164,15.65858,194
2017-12-10 10:52,-3.3,13.869028000000002,16.777050000000003,197
2017-12-10 10:54,-3.3,13.869028000000002,15.65858,192
2017-12-10 10:56,-3.3,12.750558000000002,14.763804,193
2017-12-10 10:58,-3.2,10.961006000000001,14.316416000000002,190
2017-12-10 11:00,-3.3,12.974252,17.000744,198
2017-12-10 11:02,-3.3,12.750558000000002,16.105968,203
2017-12-10 11:04,-3.3,12.750558000000002,17.224438000000003,199
2017-12-10 11:06,-3.3,12.526864,14.763804,207
2017-12-10 11:08,-3.3,12.750558000000002,16.553356,202
2017-12-10 11:10,-3.3,11.855782,15.211192,200
2017-12-10 11:12,-3.3,12.303170000000001,14.316416000000002,198
2017-12-10 11:14,-3.2,11.855782,14.763804,191
2017-12-10 11:16,-3.2,14.763804,17.671826000000003,192
2017-12-10 11:18,-3.3,13.869028000000002,16.777050000000003,191
2017-12-10 11:20,-3.2,12.750558000000002,14.763804,203
2017-12-10 11:22,-3.2,13.645334,16.553356,198
2017-12-10 11:24,-3.2,13.645334,15.882274,204
2017-12-10 11:26,-3.2,12.303170000000001,14.54011,206
2017-12-10 11:28,-3.2,13.645334,17.448132,209
2017-12-10 11:30,-3.1,10.066230000000001,12.974252,209
2017-12-10 11:32,-3.1,10.737312000000001,14.316416000000002,204
2017-12-10 11:34,-3.2,11.632088000000001,14.987498000000002,206
2017-12-10 11:36,-3.2,13.42164,17.000744,198
2017-12-10 11:38,-3.3,14.54011,19.461378,204
2017-12-10 11:40,-3.3,12.079476000000001,15.434886000000002,203
2017-12-10 11:42,-3.1,10.513618000000001,13.42164,196
2017-12-10 11:44,-3.2,12.526864,15.65858,197
2017-12-10 11:46,-3.2,11.632088000000001,14.763804,212
2017-12-10 11:48,-3.2,12.303170000000001,14.763804,203
2017-12-10 11:50,-3.2,12.974252,16.553356,204
2017-12-10 11:52,-3.2,12.079476000000001,14.763804,213
2017-12-10 11:54,-3.1,11.855782,14.987498000000002,195
2017-12-10 11:56,-3.1,11.408394,13.869028000000002,199
2017-12-10 11:58,-3.1,11.855782,14.316416000000002,205
2017-12-10 12:00,-3.1,12.079476000000001,13.869028000000002,211
2017-12-10 12:02,-3.1,9.171454,11.408394,212
2017-12-10 12:04,-3,9.171454,11.855782,203
2017-12-10 12:06,-3,9.395148,12.526864,203
2017-12-10 12:08,-3,8.724066,10.961006000000001,220
2017-12-10 12:10,-2.9,9.842536,13.42164,221
2017-12-10 12:12,-3,11.632088000000001,13.869028000000002,203
2017-12-10 12:14,-3.1,11.632088000000001,14.092722,200
2017-12-10 12:16,-2.9,7.605596,10.737312000000001,206
2017-12-10 12:18,-2.9,11.408394,14.763804,208
2017-12-10 12:20,-3,11.632088000000001,14.763804,206
2017-12-10 12:22,-3,13.197946000000002,16.329662,211
2017-12-10 12:24,-3,11.184700000000001,12.526864,220
2017-12-10 12:26,-3,10.513618000000001,14.987498000000002,216
2017-12-10 12:28,-3,10.513618000000001,12.750558000000002,218
2017-12-10 12:30,-2.9,9.842536,12.974252,213
2017-12-10 12:32,-2.9,8.94776,10.513618000000001,229
2017-12-10 12:34,-2.9,8.94776,10.737312000000001,221
2017-12-10 12:36,-2.8,9.618842,14.092722,224
2017-12-10 12:38,-2.9,12.079476000000001,16.105968,226
2017-12-10 12:40,-2.9,11.184700000000001,13.645334,222
2017-12-10 12:42,-2.9,10.289924,15.211192,223
2017-12-10 12:44,-2.9,10.289924,13.645334,222
2017-12-10 12:46,-3,12.079476000000001,14.316416000000002,224
2017-12-10 12:48,-3,10.737312000000001,14.54011,220
2017-12-10 12:50,-3,10.066230000000001,13.42164,216
2017-12-10 12:52,-2.9,10.289924,12.974252,223
2017-12-10 12:54,-2.9,12.750558000000002,14.316416000000002,221
2017-12-10 12:56,-2.9,9.842536,12.526864,226
2017-12-10 12:58,-2.7,8.94776,13.197946000000002,232
2017-12-10 13:00,-2.7,7.82929,9.171454,224
2017-12-10 13:02,-2.8,13.197946000000002,16.329662,218
2017-12-10 13:04,-2.9,12.750558000000002,15.65858,223
2017-12-10 13:06,-2.9,12.079476000000001,14.763804,231
2017-12-10 13:08,-2.8,10.513618000000001,13.42164,225
2017-12-10 13:10,-2.9,13.197946000000002,17.448132,224
2017-12-10 13:12,-2.9,11.408394,14.763804,217
2017-12-10 13:14,-2.9,13.197946000000002,15.434886000000002,221
2017-12-10 13:16,-2.9,11.632088000000001,14.316416000000002,213
2017-12-10 13:18,-2.9,10.289924,12.303170000000001,209
2017-12-10 13:20,-2.8,10.066230000000001,13.645334,215
2017-12-10 13:22,-2.8,10.513618000000001,12.750558000000002,213
2017-12-10 13:24,-2.8,10.737312000000001,14.54011,224
2017-12-10 13:26,-2.8,9.395148,11.632088000000001,223
2017-12-10 13:28,-2.8,10.289924,12.750558000000002,212
2017-12-10 13:30,-2.7,9.395148,12.079476000000001,216
2017-12-10 13:32,-2.7,10.737312000000001,14.316416000000002,215
2017-12-10 13:34,-2.7,10.289924,11.855782,223
2017-12-10 13:36,-2.8,10.289924,14.316416000000002,236
2017-12-10 13:38,-2.6,8.276678,10.513618000000001,228
2017-12-10 13:40,-2.6,11.632088000000001,15.882274,224
2017-12-10 13:42,-2.7,11.855782,14.987498000000002,226
2017-12-10 13:44,-2.6,12.974252,16.777050000000003,224
2017-12-10 13:46,-2.6,12.526864,17.000744,229
2017-12-10 13:48,-2.6,12.750558000000002,16.777050000000003,230
2017-12-10 13:50,-2.6,14.316416000000002,17.224438000000003,227
2017-12-10 13:52,-2.5,13.197946000000002,17.000744,233
2017-12-10 13:54,-2.5,12.079476000000001,15.882274,227
2017-12-10 13:56,-2.6,14.092722,20.579848,231
2017-12-10 13:58,-2.5,10.737312000000001,16.105968,223
2017-12-10 14:00,-2.4,10.066230000000001,14.987498000000002,224
2017-12-10 14:02,-2.5,13.869028000000002,17.448132,226
2017-12-10 14:04,-2.6,14.763804,20.132460000000002,219
2017-12-10 14:06,-2.5,11.408394,16.105968,218
2017-12-10 14:08,-2.6,13.42164,15.882274,220
2017-12-10 14:10,-2.6,15.882274,18.790296,214
2017-12-10 14:12,-2.6,14.092722,19.237684,218
2017-12-10 14:14,-2.5,11.408394,16.553356,225
2017-12-10 14:16,-2.4,9.618842,12.526864,217
2017-12-10 14:18,-2.5,13.197946000000002,17.448132,219
2017-12-10 14:20,-2.6,12.526864,16.553356,221
2017-12-10 14:22,-2.6,11.184700000000001,13.645334,217
2017-12-10 14:24,-2.5,10.289924,13.42164,213
2017-12-10 14:26,-2.5,10.961006000000001,14.763804,222
2017-12-10 14:28,-2.5,11.855782,17.224438000000003,220
2017-12-10 14:30,-2.6,12.526864,17.671826000000003,228
2017-12-10 14:32,-2.6,13.197946000000002,15.65858,219
2017-12-10 14:34,-2.6,12.526864,15.434886000000002,216
2017-12-10 14:36,-2.6,12.750558000000002,15.65858,221
2017-12-10 14:38,-2.5,11.184700000000001,14.54011,220
2017-12-10 14:40,-2.5,10.289924,14.092722,223
2017-12-10 14:42,-2.5,11.632088000000001,16.329662,217
2017-12-10 14:44,-2.5,12.079476000000001,15.211192,215
2017-12-10 14:46,-2.6,12.974252,15.434886000000002,218
2017-12-10 14:48,-2.5,9.842536,15.434886000000002,215
2017-12-10 14:50,-2.4,8.94776,10.961006000000001,225
2017-12-10 14:52,-2.4,11.408394,17.671826000000003,213
2017-12-10 14:54,-2.5,12.303170000000001,15.211192,228
2017-12-10 14:56,-2.4,9.171454,11.855782,226
2017-12-10 14:58,-2.4,7.605596,10.513618000000001,224
2017-12-10 15:00,-2.4,8.94776,11.184700000000001,219
2017-12-10 15:02,-2.5,12.079476000000001,14.987498000000002,212
2017-12-10 15:04,-2.5,11.184700000000001,14.54011,211
2017-12-10 15:06,-2.5,12.303170000000001,14.763804,214
2017-12-10 15:08,-2.5,11.408394,13.869028000000002,223
2017-12-10 15:10,-2.6,11.855782,14.092722,219
2017-12-10 15:12,-2.5,11.632088000000001,14.54011,225
2017-12-10 15:14,-2.5,9.618842,12.750558000000002,236
2017-12-10 15:16,-2.5,9.171454,11.632088000000001,238
2017-12-10 15:18,-2.4,8.94776,11.184700000000001,233
2017-12-10 15:20,-2.5,8.276678,12.303170000000001,228
2017-12-10 15:22,-2.4,6.039738000000001,8.276678,221
2017-12-10 15:24,-2.4,6.263432,8.500372,228
2017-12-10 15:26,-2.4,8.500372,12.079476000000001,225
2017-12-10 15:28,-2.5,8.94776,11.632088000000001,228
2017-12-10 15:30,-2.4,7.381902,9.395148,234
2017-12-10 15:32,-2.4,10.066230000000001,12.526864,242
2017-12-10 15:34,-2.5,9.395148,12.526864,248
2017-12-10 15:36,-2.4,9.842536,12.303170000000001,246
2017-12-10 15:38,-2.5,10.289924,13.869028000000002,248
2017-12-10 15:40,-2.4,6.487126,8.500372,236
2017-12-10 15:42,-2.4,8.052984,9.842536,231
2017-12-10 15:44,-2.5,11.855782,16.553356,228
2017-12-10 15:46,-2.5,8.276678,11.184700000000001,227
2017-12-10 15:48,-2.5,9.842536,12.750558000000002,226
2017-12-10 15:50,-2.5,8.724066,12.079476000000001,227
2017-12-10 15:52,-2.5,10.066230000000001,13.197946000000002,218
2017-12-10 15:54,-2.5,11.632088000000001,14.763804,224
2017-12-10 15:56,-2.5,10.737312000000001,14.763804,229
2017-12-10 15:58,-2.5,9.171454,12.974252,235
2017-12-10 16:00,-2.5,9.395148,12.303170000000001,240
2017-12-10 16:02,-2.4,10.066230000000001,13.645334,237
2017-12-10 16:04,-2.5,10.289924,13.645334,236
2017-12-10 16:06,-2.5,9.842536,12.526864,245
2017-12-10 16:08,-2.5,12.526864,15.434886000000002,234
2017-12-10 16:10,-2.5,9.618842,16.105968,221
2017-12-10 16:12,-2.5,10.289924,13.42164,222
2017-12-10 16:14,-2.5,8.94776,11.855782,233
2017-12-10 16:16,-2.4,10.289924,13.197946000000002,240
2017-12-10 16:18,-2.5,10.066230000000001,14.987498000000002,221
2017-12-10 16:20,-2.5,10.513618000000001,13.42164,220
2017-12-10 16:22,-2.5,10.513618000000001,13.197946000000002,222
2017-12-10 16:24,-2.5,9.618842,12.303170000000001,228
2017-12-10 16:26,-2.5,12.974252,15.65858,236
2017-12-10 16:28,-2.5,11.184700000000001,13.869028000000002,225
2017-12-10 16:30,-2.4,10.737312000000001,14.092722,229
2017-12-10 16:32,-2.5,9.618842,13.645334,242
2017-12-10 16:34,-2.5,10.289924,13.197946000000002,240
2017-12-10 16:36,-2.5,11.632088000000001,14.316416000000002,248
2017-12-10 16:38,-2.5,7.381902,12.079476000000001,223
2017-12-10 16:40,-2.5,9.395148,12.079476000000001,227
2017-12-10 16:42,-2.5,8.052984,14.092722,220
2017-12-10 16:44,-2.5,9.395148,12.526864,222
2017-12-10 16:46,-2.5,10.289924,12.750558000000002,215
2017-12-10 16:48,-2.5,10.066230000000001,12.750558000000002,227
2017-12-10 16:50,-2.4,7.605596,10.289924,227
2017-12-10 16:52,-2.4,8.724066,10.961006000000001,223
2017-12-10 16:54,-2.4,8.052984,10.513618000000001,238
2017-12-10 16:56,-2.4,8.276678,10.066230000000001,228
2017-12-10 16:58,-2.4,6.487126,9.842536,230
2017-12-10 17:00,-2.4,8.500372,11.632088000000001,245
2017-12-10 17:02,-2.5,10.066230000000001,12.750558000000002,239
2017-12-10 17:04,-2.4,9.395148,14.987498000000002,242
2017-12-10 17:06,-2.4,8.94776,10.961006000000001,234
2017-12-10 17:08,-2.4,10.066230000000001,12.526864,244
2017-12-10 17:10,-2.4,9.618842,13.645334,236
2017-12-10 17:12,-2.3,8.276678,11.632088000000001,236
2017-12-10 17:14,-2.4,7.605596,11.632088000000001,223
2017-12-10 17:16,-2.4,10.513618000000001,14.54011,225
2017-12-10 17:18,-2.4,8.052984,10.289924,229
2017-12-10 17:20,-2.4,7.381902,10.289924,248
2017-12-10 17:22,-2.4,8.052984,11.184700000000001,221
2017-12-10 17:24,-2.4,7.605596,11.408394,223
2017-12-10 17:26,-2.5,9.842536,14.092722,227
2017-12-10 17:28,-2.4,11.632088000000001,14.54011,228
2017-12-10 17:30,-2.4,10.961006000000001,13.42164,231
2017-12-10 17:32,-2.4,11.408394,14.316416000000002,229
2017-12-10 17:34,-2.3,7.605596,9.842536,233
2017-12-10 17:36,-2.3,9.618842,12.974252,247
2017-12-10 17:38,-2.3,7.82929,12.079476000000001,236
2017-12-10 17:40,-2.4,7.82929,12.526864,235
2017-12-10 17:42,-2.3,7.158208000000001,8.94776,228
2017-12-10 17:44,-2.4,8.276678,12.079476000000001,235
2017-12-10 17:46,-2.4,8.500372,11.632088000000001,235
2017-12-10 17:48,-2.4,11.632088000000001,14.763804,240
2017-12-10 17:50,-2.4,10.289924,14.316416000000002,230
2017-12-10 17:52,-2.4,11.184700000000001,15.211192,237
2017-12-10 17:54,-2.4,10.737312000000001,15.211192,247
2017-12-10 17:56,-2.4,7.158208000000001,11.408394,228
2017-12-10 17:58,-2.4,9.171454,14.316416000000002,233
2017-12-10 18:00,-2.5,12.079476000000001,14.316416000000002,254
2017-12-10 18:02,-2.4,10.289924,14.316416000000002,245
2017-12-10 18:04,-2.5,9.842536,13.42164,235
2017-12-10 18:06,-2.5,10.289924,12.079476000000001,243
2017-12-10 18:08,-2.5,9.618842,12.079476000000001,242
2017-12-10 18:10,-2.4,10.066230000000001,14.987498000000002,235
2017-12-10 18:12,-2.5,12.526864,15.211192,242
2017-12-10 18:14,-2.5,10.961006000000001,14.316416000000002,233
2017-12-10 18:16,-2.5,11.855782,14.316416000000002,236
2017-12-10 18:18,-2.5,10.289924,15.211192,244
2017-12-10 18:20,-2.5,7.605596,10.289924,248
2017-12-10 18:22,-2.4,9.395148,11.184700000000001,247
2017-12-10 18:24,-2.4,8.94776,12.974252,247
2017-12-10 18:26,-2.4,9.171454,12.974252,242
2017-12-10 18:28,-2.4,9.618842,13.197946000000002,231
2017-12-10 18:30,-2.4,10.961006000000001,13.197946000000002,239
2017-12-10 18:32,-2.5,10.513618000000001,12.750558000000002,246
2017-12-10 18:34,-2.5,12.303170000000001,16.777050000000003,244
2017-12-10 18:36,-2.4,8.94776,11.408394,241
2017-12-10 18:38,-2.4,8.052984,10.737312000000001,240
2017-12-10 18:40,-2.4,10.737312000000001,13.645334,227
2017-12-10 18:42,-2.4,9.395148,12.750558000000002,240
2017-12-10 18:44,-2.5,9.842536,12.079476000000001,237
2017-12-10 18:46,-2.4,6.487126,8.276678,235
2017-12-10 18:48,-2.4,9.171454,13.42164,254
2017-12-10 18:50,-2.4,10.066230000000001,12.079476000000001,249
2017-12-10 18:52,-2.3,7.82929,9.171454,239
2017-12-10 18:54,-2.3,7.82929,9.842536,236
2017-12-10 18:56,-2.3,7.605596,9.171454,237
2017-12-10 18:58,-2.4,7.82929,9.395148,235
2017-12-10 19:00,-2.3,7.381902,10.737312000000001,233
2017-12-10 19:02,-2.4,8.724066,11.632088000000001,226
2017-12-10 19:04,-2.4,8.724066,10.961006000000001,230
2017-12-10 19:06,-2.4,10.513618000000001,12.526864,235
2017-12-10 19:08,-2.4,10.066230000000001,12.750558000000002,235
2017-12-10 19:10,-2.4,9.395148,10.961006000000001,246
2017-12-10 19:12,-2.3,8.500372,10.513618000000001,236
2017-12-10 19:14,-2.4,7.381902,9.618842,228
2017-12-10 19:16,-2.3,6.71082,9.842536,223
2017-12-10 19:18,-2.4,6.487126,7.605596,224
2017-12-10 19:20,-2.4,7.158208000000001,9.395148,230
2017-12-10 19:22,-2.3,5.592350000000001,8.052984,222
2017-12-10 19:24,-2.4,9.395148,12.303170000000001,214
2017-12-10 19:26,-2.4,9.171454,11.632088000000001,226
2017-12-10 19:28,-2.4,9.842536,13.42164,221
2017-12-10 19:30,-2.4,8.276678,11.408394,228
2017-12-10 19:32,-2.4,7.605596,9.618842,223
2017-12-10 19:34,-2.4,8.052984,10.513618000000001,232
2017-12-10 19:36,-2.4,8.500372,11.408394,225
2017-12-10 19:38,-2.4,4.921268,7.605596,221
2017-12-10 19:40,-2.4,8.500372,12.079476000000001,227
2017-12-10 19:42,-2.3,8.052984,9.842536,233
2017-12-10 19:44,-2.3,8.94776,11.184700000000001,227
2017-12-10 19:46,-2.3,8.724066,10.737312000000001,225
2017-12-10 19:48,-2.3,8.500372,10.289924,223
2017-12-10 19:50,-2.3,8.724066,10.289924,236
2017-12-10 19:52,-2.3,10.066230000000001,12.079476000000001,235
2017-12-10 19:54,-2.3,7.605596,9.395148,219
2017-12-10 19:56,-2.3,6.263432,7.605596,220
2017-12-10 19:58,-2.3,6.934514000000001,8.052984,213
2017-12-10 20:00,-2.3,7.381902,9.842536,214
2017-12-10 20:02,-2.3,9.395148,10.961006000000001,232
2017-12-10 20:04,-2.3,8.500372,11.855782,226
2017-12-10 20:06,-2.3,7.605596,9.618842,212
2017-12-10 20:08,-2.3,8.276678,11.408394,218
2017-12-10 20:10,-2.3,9.618842,12.079476000000001,210
2017-12-10 20:12,-2.3,8.94776,11.855782,209
2017-12-10 20:14,-2.3,9.842536,13.42164,213
2017-12-10 20:16,-2.3,6.934514000000001,9.395148,220
2017-12-10 20:18,-2.3,10.513618000000001,12.974252,210
2017-12-10 20:20,-2.3,6.934514000000001,10.737312000000001,220
2017-12-10 20:22,-2.3,8.276678,12.079476000000001,215
2017-12-10 20:24,-2.3,7.82929,9.395148,218
2017-12-10 20:26,-2.3,6.039738000000001,8.052984,220
2017-12-10 20:28,-2.3,6.039738000000001,8.276678,222
2017-12-10 20:30,-2.3,7.158208000000001,8.94776,214
2017-12-10 20:32,-2.3,5.3686560000000005,7.605596,199
2017-12-10 20:34,-2.4,8.94776,10.289924,211
2017-12-10 20:36,-2.4,7.82929,9.171454,213
2017-12-10 20:38,-2.4,7.381902,10.513618000000001,214
2017-12-10 20:40,-2.3,6.487126,7.82929,211
2017-12-10 20:42,-2.3,6.934514000000001,9.842536,219
2017-12-10 20:44,-2.3,7.381902,9.842536,218
2017-12-10 20:46,-2.3,8.500372,10.737312000000001,210
2017-12-10 20:48,-2.3,6.487126,8.052984,221
2017-12-10 20:50,-2.2,5.592350000000001,7.158208000000001,220
2017-12-10 20:52,-2.3,8.276678,9.618842,204
2017-12-10 20:54,-2.3,9.171454,10.737312000000001,206
2017-12-10 20:56,-2.3,7.82929,10.513618000000001,217
2017-12-10 20:58,-2.3,6.934514000000001,10.066230000000001,228
2017-12-10 21:00,-2.3,8.052984,10.289924,227
2017-12-10 21:02,-2.3,7.82929,9.842536,217
2017-12-10 21:04,-2.3,8.052984,10.289924,222
2017-12-10 21:06,-2.3,5.144962,6.934514000000001,217
2017-12-10 21:08,-2.2,6.487126,9.171454,232
2017-12-10 21:10,-2.2,6.263432,8.500372,214
2017-12-10 21:12,-2.3,6.71082,8.500372,226
2017-12-10 21:14,-2.2,7.381902,11.632088000000001,210
2017-12-10 21:16,-2.2,8.94776,12.526864,216
2017-12-10 21:18,-2.3,9.395148,12.079476000000001,219
2017-12-10 21:20,-2.2,6.934514000000001,10.961006000000001,215
2017-12-10 21:22,-2.3,8.724066,11.184700000000001,223
2017-12-10 21:24,-2.3,8.276678,10.066230000000001,224
2017-12-10 21:26,-2.3,6.039738000000001,8.94776,222
2017-12-10 21:28,-2.3,6.487126,8.500372,212
2017-12-10 21:30,-2.3,6.71082,11.184700000000001,215
2017-12-10 21:32,-2.3,7.158208000000001,10.066230000000001,226
2017-12-10 21:34,-2.3,8.276678,9.842536,216
2017-12-10 21:36,-2.3,8.724066,11.408394,222
2017-12-10 21:38,-2.3,7.82929,10.737312000000001,220
2017-12-10 21:40,-2.3,8.052984,9.842536,218
2017-12-10 21:42,-2.4,10.513618000000001,13.197946000000002,215
2017-12-10 21:44,-2.3,8.052984,10.066230000000001,206
2017-12-10 21:46,-2.3,8.94776,10.961006000000001,225
2017-12-10 21:48,-2.3,7.158208000000001,8.724066,213
2017-12-10 21:50,-2.3,6.039738000000001,9.842536,222
2017-12-10 21:52,-2.3,8.500372,11.184700000000001,220
2017-12-10 21:54,-2.3,8.500372,10.961006000000001,222
2017-12-10 21:56,-2.3,7.381902,9.395148,218
2017-12-10 21:58,-2.4,7.605596,12.974252,207
2017-12-10 22:00,-2.4,7.82929,10.066230000000001,203
2017-12-10 22:02,-2.4,7.381902,9.395148,220
2017-12-10 22:04,-2.4,9.171454,10.513618000000001,208
2017-12-10 22:06,-2.4,8.276678,9.618842,206
2017-12-10 22:08,-2.4,6.487126,8.276678,209
2017-12-10 22:10,-2.4,5.592350000000001,6.934514000000001,219
2017-12-10 22:12,-2.4,6.487126,9.618842,209
2017-12-10 22:14,-2.4,9.171454,12.079476000000001,207
2017-12-10 22:16,-2.4,6.487126,11.184700000000001,211
2017-12-10 22:18,-2.3,6.487126,7.381902,205
2017-12-10 22:20,-2.3,6.039738000000001,7.605596,215
2017-12-10 22:22,-2.4,6.487126,7.82929,212
2017-12-10 22:24,-2.4,7.82929,10.066230000000001,211
2017-12-10 22:26,-2.4,7.605596,8.94776,221
2017-12-10 22:28,-2.4,7.158208000000001,9.395148,218
2017-12-10 22:30,-2.3,7.605596,10.066230000000001,220
2017-12-10 22:32,-2.3,4.921268,5.816044000000001,224
2017-12-10 22:34,-2.3,6.039738000000001,6.934514000000001,226
2017-12-10 22:36,-2.4,6.934514000000001,10.066230000000001,234
2017-12-10 22:38,-2.4,7.605596,11.408394,219
2017-12-10 22:40,-2.4,7.158208000000001,10.513618000000001,221
2017-12-10 22:42,-2.4,6.039738000000001,8.276678,215
2017-12-10 22:44,-2.4,7.158208000000001,11.184700000000001,225
2017-12-10 22:46,-2.5,9.171454,12.079476000000001,214
2017-12-10 22:48,-2.5,9.171454,12.079476000000001,229
2017-12-10 22:50,-2.5,6.71082,8.724066,233
2017-12-10 22:52,-2.4,7.381902,9.395148,233
2017-12-10 22:54,-2.4,5.592350000000001,7.605596,233
2017-12-10 22:56,-2.4,4.697574,6.263432,230
2017-12-10 22:58,-2.5,4.47388,5.816044000000001,228
2017-12-10 23:00,-2.5,4.921268,7.158208000000001,217
2017-12-10 23:02,-2.4,3.5791040000000005,4.921268,206
2017-12-10 23:04,-2.4,4.026492,5.3686560000000005,216
2017-12-10 23:06,-2.4,5.592350000000001,7.82929,219
2017-12-10 23:08,-2.5,6.487126,7.82929,254
2017-12-10 23:10,-2.6,4.921268,8.500372,235
2017-12-10 23:12,-2.6,6.934514000000001,8.94776,216
2017-12-10 23:14,-2.6,6.934514000000001,8.500372,230
2017-12-10 23:16,-2.6,6.487126,8.276678,211
2017-12-10 23:18,-2.6,8.052984,9.171454,203
2017-12-10 23:20,-2.6,7.158208000000001,7.82929,207
2017-12-10 23:22,-2.6,6.934514000000001,9.171454,198
2017-12-10 23:24,-2.6,7.158208000000001,8.94776,216
2017-12-10 23:26,-2.6,5.592350000000001,6.934514000000001,214
2017-12-10 23:28,-2.6,6.263432,8.94776,217
2017-12-10 23:30,-2.6,7.381902,8.500372,214
2017-12-10 23:32,-2.6,5.592350000000001,7.158208000000001,214
2017-12-10 23:34,-2.6,4.47388,6.039738000000001,207
2017-12-10 23:36,-2.6,3.5791040000000005,4.47388,215
2017-12-10 23:38,-2.7,4.026492,5.3686560000000005,223
2017-12-10 23:40,-2.7,3.131716,5.592350000000001,223
2017-12-10 23:42,-2.7,5.144962,6.487126,224
2017-12-10 23:44,-2.7,5.144962,6.263432,214
2017-12-10 23:46,-2.7,5.816044000000001,6.934514000000001,200
2017-12-10 23:48,-2.8,6.039738000000001,6.934514000000001,205
2017-12-10 23:50,-2.8,5.144962,6.039738000000001,204
2017-12-10 23:52,-2.8,4.47388,5.3686560000000005,204
2017-12-10 23:54,-2.8,4.026492,4.47388,194
2017-12-10 23:56,-2.8,4.026492,5.144962,201
2017-12-10 23:58,-2.8,5.816044000000001,6.934514000000001,192
2017-12-11 00:00,-2.8,5.592350000000001,7.158208000000001,192
2017-12-11 00:02,-2.9,6.263432,7.82929,194
2017-12-11 00:04,-2.9,5.3686560000000005,6.71082,198
2017-12-11 00:06,-2.9,4.697574,5.816044000000001,205
2017-12-11 00:08,-2.9,4.026492,4.47388,197
2017-12-11 00:10,-2.9,4.250186,5.144962,210
2017-12-11 00:12,-3,4.697574,5.816044000000001,201
2017-12-11 00:14,-3,4.921268,6.263432,215
2017-12-11 00:16,-3,4.47388,4.921268,199
2017-12-11 00:18,-3,4.921268,6.039738000000001,208
2017-12-11 00:20,-3,4.697574,5.592350000000001,204
2017-12-11 00:22,-3,4.026492,4.47388,201
2017-12-11 00:24,-3,4.921268,5.592350000000001,207
2017-12-11 00:26,-3,4.026492,4.921268,197
2017-12-11 00:28,-3,3.35541,4.250186,204
2017-12-11 00:30,-3.1,4.026492,4.47388,201
2017-12-11 00:32,-3,4.250186,4.697574,201
2017-12-11 00:34,-3,3.802798,4.697574,195
2017-12-11 00:36,-3,3.802798,4.47388,196
2017-12-11 00:38,-3,3.802798,4.47388,207
2017-12-11 00:40,-3,3.802798,4.47388,207
2017-12-11 00:42,-3.1,3.5791040000000005,4.921268,185
2017-12-11 00:44,-3,3.131716,3.5791040000000005,188
2017-12-11 00:46,-3,4.026492,4.697574,189
2017-12-11 00:48,-3.1,4.250186,4.921268,190
2017-12-11 00:50,-3.1,3.5791040000000005,4.250186,197
2017-12-11 00:52,-3.1,3.131716,3.5791040000000005,197
2017-12-11 00:54,-3.1,3.131716,3.5791040000000005,192
2017-12-11 00:56,-3.1,3.5791040000000005,4.250186,189
2017-12-11 00:58,-3.1,4.026492,4.47388,195
2017-12-11 01:00,-3.1,3.802798,4.47388,182
2017-12-11 01:02,-3.1,3.5791040000000005,4.250186,180
2017-12-11 01:04,-3.1,4.026492,4.47388,194
2017-12-11 01:06,-3.2,5.144962,6.487126,188
2017-12-11 01:08,-3.1,5.3686560000000005,6.263432,186
2017-12-11 01:10,-3.1,4.47388,5.144962,191
2017-12-11 01:12,-3.1,4.921268,6.039738000000001,186
2017-12-11 01:14,-3.1,4.697574,6.039738000000001,189
2017-12-11 01:16,-3.2,3.35541,4.250186,205
2017-12-11 01:18,-3.2,3.35541,4.250186,203
2017-12-11 01:20,-3.2,4.026492,4.697574,207
2017-12-11 01:22,-3.2,4.921268,6.71082,200
2017-12-11 01:24,-3.2,5.592350000000001,6.71082,194
2017-12-11 01:26,-3.2,5.3686560000000005,5.592350000000001,193
2017-12-11 01:28,-3.2,5.816044000000001,6.487126,192
2017-12-11 01:30,-3.2,4.697574,5.3686560000000005,202
2017-12-11 01:32,-3.2,4.250186,5.144962,191
2017-12-11 01:34,-3.2,4.47388,5.144962,192
2017-12-11 01:36,-3.2,4.47388,6.263432,193
2017-12-11 01:38,-3.2,4.47388,5.144962,200
2017-12-11 01:40,-3.3,4.47388,5.144962,194
2017-12-11 01:42,-3.3,5.144962,6.039738000000001,196
2017-12-11 01:44,-3.2,4.921268,6.039738000000001,192
2017-12-11 01:46,-3.2,4.250186,4.921268,187
2017-12-11 01:48,-3.2,5.144962,6.487126,190
2017-12-11 01:50,-3.3,4.921268,5.816044000000001,183
2017-12-11 01:52,-3.2,4.250186,4.921268,184
2017-12-11 01:54,-3.2,4.250186,4.921268,186
2017-12-11 01:56,-3.2,4.697574,5.592350000000001,186
2017-12-11 01:58,-3.2,4.697574,5.592350000000001,186
2017-12-11 02:00,-3.1,4.250186,4.697574,189
2017-12-11 02:02,-3.2,4.250186,4.697574,188
2017-12-11 02:04,-3.2,3.5791040000000005,4.250186,194
2017-12-11 02:06,-3.2,3.5791040000000005,4.026492,200
2017-12-11 02:08,-3.2,3.131716,4.026492,194
2017-12-11 02:10,-3.1,2.6843280000000003,3.35541,199
2017-12-11 02:12,-3.2,2.460634,2.9080220000000003,208
2017-12-11 02:14,-3.2,1.3421640000000001,2.23694,211
2017-12-11 02:16,-3.2,1.11847,2.013246,228
2017-12-11 02:18,-3.2,1.3421640000000001,2.23694,202
2017-12-11 02:20,-3.2,0.8947760000000001,2.013246,201
2017-12-11 02:22,-3.1,1.11847,1.565858,247
2017-12-11 02:24,-3.1,0.6710820000000001,2.9080220000000003,172
2017-12-11 02:26,-3.1,4.47388,5.3686560000000005,115
2017-12-11 02:28,-3,4.026492,4.697574,119
2017-12-11 02:30,-3,5.3686560000000005,6.263432,133
2017-12-11 02:32,-3,5.592350000000001,7.381902,128
2017-12-11 02:34,-3,4.47388,5.816044000000001,128
2017-12-11 02:36,-3,6.71082,7.605596,133
2017-12-11 02:38,-3,6.487126,7.381902,138
2017-12-11 02:40,-2.9,7.381902,8.276678,152
2017-12-11 02:42,-3,6.263432,6.934514000000001,151
2017-12-11 02:44,-3,6.934514000000001,7.605596,151
2017-12-11 02:46,-3.1,6.487126,7.158208000000001,148
2017-12-11 02:48,-3.1,4.697574,5.592350000000001,146
2017-12-11 02:50,-3.2,3.5791040000000005,4.697574,156
2017-12-11 02:52,-3.2,4.026492,4.921268,147
2017-12-11 02:54,-3.2,3.802798,4.250186,135
2017-12-11 02:56,-3.1,3.802798,4.697574,133
2017-12-11 02:58,-3.1,4.250186,5.3686560000000005,133
2017-12-11 03:00,-3.1,4.47388,4.921268,143
2017-12-11 03:02,-3.1,4.250186,5.144962,133
2017-12-11 03:04,-3.1,3.802798,4.47388,138
2017-12-11 03:06,-3.1,4.250186,5.592350000000001,136
2017-12-11 03:08,-3.1,4.921268,5.592350000000001,119
2017-12-11 03:10,-3.1,4.47388,5.144962,129
2017-12-11 03:12,-3.1,4.026492,5.592350000000001,122
2017-12-11 03:14,-3,4.921268,6.487126,109
2017-12-11 03:16,-3.1,4.921268,6.039738000000001,115
2017-12-11 03:18,-3.1,4.697574,5.816044000000001,144
2017-12-11 03:20,-3.1,5.3686560000000005,6.263432,125
2017-12-11 03:22,-3.1,5.144962,6.039738000000001,110
2017-12-11 03:24,-3.1,5.3686560000000005,6.263432,108
2017-12-11 03:26,-3.1,5.816044000000001,6.934514000000001,110
2017-12-11 03:28,-3.1,6.487126,7.158208000000001,118
2017-12-11 03:30,-3.1,6.263432,6.934514000000001,113
2017-12-11 03:32,-3.1,5.816044000000001,7.158208000000001,120
2017-12-11 03:34,-3.1,6.71082,7.158208000000001,119
2017-12-11 03:36,-3.2,6.934514000000001,7.82929,123
2017-12-11 03:38,-3.2,7.158208000000001,8.500372,127
2017-12-11 03:40,-3.1,7.605596,8.500372,138
2017-12-11 03:42,-3.1,6.934514000000001,8.276678,143
2017-12-11 03:44,-3.1,7.605596,8.052984,147
2017-12-11 03:46,-3.2,7.158208000000001,8.500372,144
2017-12-11 03:48,-3.2,6.71082,7.82929,148
2017-12-11 03:50,-3.2,6.71082,7.605596,151
2017-12-11 03:52,-3.2,6.934514000000001,7.605596,145
2017-12-11 03:54,-3.2,7.381902,8.500372,150
2017-12-11 03:56,-3.2,7.381902,8.724066,153
2017-12-11 03:58,-3.2,7.158208000000001,8.052984,137
2017-12-11 04:00,-3.1,7.381902,8.500372,138
2017-12-11 04:02,-3.1,6.934514000000001,8.052984,144
2017-12-11 04:04,-3.2,7.605596,9.171454,141
2017-12-11 04:06,-3.3,6.71082,8.052984,133
2017-12-11 04:08,-3.2,6.487126,7.605596,135
2017-12-11 04:10,-3.2,7.381902,8.052984,133
2017-12-11 04:12,-3.2,7.605596,8.724066,136
2017-12-11 04:14,-3.2,7.82929,8.724066,135
2017-12-11 04:16,-3.2,7.158208000000001,8.276678,135
2017-12-11 04:18,-3.2,7.381902,8.500372,139
2017-12-11 04:20,-3.3,8.052984,9.171454,140
2017-12-11 04:22,-3.3,7.82929,8.94776,138
2017-12-11 04:24,-3.3,8.500372,9.395148,133
2017-12-11 04:26,-3.3,8.276678,9.395148,132
2017-12-11 04:28,-3.2,7.605596,8.500372,140
2017-12-11 04:30,-3.2,8.052984,10.066230000000001,125
2017-12-11 04:32,-3.1,7.82929,9.171454,133
2017-12-11 04:34,-3.2,7.381902,8.500372,128
2017-12-11 04:36,-3.2,6.934514000000001,8.724066,124
2017-12-11 04:38,-3.2,8.052984,9.618842,112
2017-12-11 04:40,-3.2,8.724066,9.618842,116
2017-12-11 04:42,-3.3,8.276678,9.171454,119
2017-12-11 04:44,-3.2,8.276678,9.618842,115
2017-12-11 04:46,-3.3,8.724066,9.842536,115
2017-12-11 04:48,-3.4,9.395148,10.289924,115
2017-12-11 04:50,-3.4,8.276678,9.395148,113
2017-12-11 04:52,-3.3,8.94776,10.513618000000001,111
2017-12-11 04:54,-3.3,8.94776,9.842536,110
2017-12-11 04:56,-3.2,8.724066,9.618842,112
2017-12-11 04:58,-3.3,9.395148,10.737312000000001,105
2017-12-11 05:00,-3.3,9.618842,10.289924,116
2017-12-11 05:02,-3.3,9.618842,10.513618000000001,122
2017-12-11 05:04,-3.1,9.171454,10.513618000000001,106
2017-12-11 05:06,-3.2,9.171454,10.513618000000001,106
2017-12-11 05:08,-3.3,10.066230000000001,11.408394,115
2017-12-11 05:10,-3.2,9.395148,10.289924,113
2017-12-11 05:12,-3.2,8.94776,10.289924,107
2017-12-11 05:14,-3.3,9.171454,10.289924,106
2017-12-11 05:16,-3.3,8.94776,11.184700000000001,111
2017-12-11 05:18,-3.3,8.94776,10.289924,111
2017-12-11 05:20,-3.3,8.500372,9.842536,113
2017-12-11 05:22,-3.3,8.94776,11.184700000000001,108
2017-12-11 05:24,-3.5,8.500372,10.289924,107
2017-12-11 05:26,-3.5,9.395148,10.961006000000001,111
2017-12-11 05:28,-3.5,8.724066,10.289924,111
2017-12-11 05:30,-3.5,8.724066,10.737312000000001,110
2017-12-11 05:32,-3.5,8.500372,9.395148,108
2017-12-11 05:34,-3.6,9.395148,11.632088000000001,94
2017-12-11 05:36,-3.8,9.395148,10.737312000000001,100
2017-12-11 05:38,-3.9,9.171454,10.513618000000001,98
2017-12-11 05:40,-3.9,9.395148,11.184700000000001,104
2017-12-11 05:42,-3.9,9.395148,11.184700000000001,104
2017-12-11 05:44,-3.9,8.724066,10.513618000000001,106
2017-12-11 05:46,-4,9.618842,10.289924,104
2017-12-11 05:48,-3.9,10.066230000000001,11.408394,102
2017-12-11 05:50,-3.9,9.395148,10.961006000000001,109
2017-12-11 05:52,-4.1,10.513618000000001,11.632088000000001,114
2017-12-11 05:54,-4.1,9.842536,10.961006000000001,113
2017-12-11 05:56,-4,9.171454,10.513618000000001,105
2017-12-11 05:58,-3.9,8.724066,10.289924,96
2017-12-11 06:00,-4.1,8.94776,9.842536,112
2017-12-11 06:02,-4.1,8.276678,10.066230000000001,106
2017-12-11 06:04,-4.1,9.618842,10.737312000000001,96
2017-12-11 06:06,-4.1,10.066230000000001,11.632088000000001,99
2017-12-11 06:08,-4.1,9.618842,12.079476000000001,103
2017-12-11 06:10,-4.2,9.171454,10.289924,107
2017-12-11 06:12,-4.1,9.395148,11.184700000000001,111
2017-12-11 06:14,-4,10.066230000000001,11.408394,113
2017-12-11 06:16,-4.1,9.171454,10.737312000000001,110
2017-12-11 06:18,-4.1,9.842536,12.079476000000001,110
2017-12-11 06:20,-4.2,10.289924,12.079476000000001,106
2017-12-11 06:22,-4.1,9.395148,10.513618000000001,108
2017-12-11 06:24,-4.1,10.066230000000001,12.079476000000001,96
2017-12-11 06:26,-4.1,10.289924,12.750558000000002,101
2017-12-11 06:28,-4.2,10.066230000000001,11.855782,98
2017-12-11 06:30,-4.2,11.184700000000001,12.526864,95
2017-12-11 06:32,-4.2,10.066230000000001,11.184700000000001,99
2017-12-11 06:34,-4.1,9.171454,10.961006000000001,100
2017-12-11 06:36,-4.2,9.842536,10.961006000000001,92
2017-12-11 06:38,-4.1,10.066230000000001,11.855782,94
2017-12-11 06:40,-4.2,10.961006000000001,12.303170000000001,97
2017-12-11 06:42,-4.2,11.855782,13.42164,91
2017-12-11 06:44,-4.3,11.855782,13.42164,90
2017-12-11 06:46,-4.2,10.513618000000001,12.750558000000002,97
2017-12-11 06:48,-4.2,10.066230000000001,10.961006000000001,96
2017-12-11 06:50,-4.1,9.171454,11.184700000000001,86
2017-12-11 06:52,-4,9.842536,11.408394,91
2017-12-11 06:54,-3.9,10.513618000000001,12.079476000000001,93
2017-12-11 06:56,-4,10.737312000000001,12.303170000000001,95
2017-12-11 06:58,-4.1,10.961006000000001,12.526864,95
2017-12-11 07:00,-4.2,11.184700000000001,12.750558000000002,92
2017-12-11 07:02,-4.2,12.079476000000001,13.645334,88
2017-12-11 07:04,-4.2,11.855782,13.645334,92
2017-12-11 07:06,-4.1,10.513618000000001,11.632088000000001,88
2017-12-11 07:08,-4.2,10.289924,11.855782,96
2017-12-11 07:10,-4,10.961006000000001,13.197946000000002,91
2017-12-11 07:12,-4.2,11.184700000000001,12.750558000000002,95
2017-12-11 07:14,-4.2,11.184700000000001,12.079476000000001,95
2017-12-11 07:16,-4.2,10.066230000000001,11.632088000000001,95
2017-12-11 07:18,-4.1,10.513618000000001,11.632088000000001,92
2017-12-11 07:20,-4.1,10.289924,11.408394,102
2017-12-11 07:22,-4.1,10.289924,11.632088000000001,92
2017-12-11 07:24,-3.9,9.842536,11.408394,94
2017-12-11 07:26,-3.9,10.513618000000001,13.197946000000002,98
2017-12-11 07:28,-4.2,12.079476000000001,13.645334,101
2017-12-11 07:30,-4.2,10.737312000000001,12.079476000000001,106
2017-12-11 07:32,-4,9.842536,11.632088000000001,108
2017-12-11 07:34,-4,9.842536,11.408394,109
2017-12-11 07:36,-3.9,10.066230000000001,11.632088000000001,99
2017-12-11 07:38,-3.9,9.395148,10.513618000000001,99
2017-12-11 07:40,-4,9.842536,10.737312000000001,108
2017-12-11 07:42,-3.9,11.184700000000001,14.092722,105
2017-12-11 07:44,-3.9,10.513618000000001,12.079476000000001,109
2017-12-11 07:46,-3.8,11.855782,12.974252,112
2017-12-11 07:48,-3.8,11.184700000000001,12.526864,112
2017-12-11 07:50,-3.6,10.066230000000001,12.303170000000001,103
2017-12-11 07:52,-3.6,10.066230000000001,12.079476000000001,108
2017-12-11 07:54,-3.7,10.961006000000001,13.197946000000002,103
2017-12-11 07:56,-3.7,10.961006000000001,13.197946000000002,111
2017-12-11 07:58,-3.6,11.855782,14.987498000000002,100
2017-12-11 08:00,-3.6,12.750558000000002,14.316416000000002,98
2017-12-11 08:02,-3.5,12.526864,14.54011,98
2017-12-11 08:04,-3.5,12.526864,15.434886000000002,100
2017-12-11 08:06,-3.5,13.197946000000002,14.763804,104
2017-12-11 08:08,-3.3,12.079476000000001,14.987498000000002,98
2017-12-11 08:10,-3.4,13.197946000000002,15.211192,98
2017-12-11 08:12,-3.4,13.42164,14.54011,104
2017-12-11 08:14,-3.3,14.092722,16.105968,95
2017-12-11 08:16,-3.3,14.54011,16.105968,94
2017-12-11 08:18,-3.4,14.316416000000002,17.224438000000003,102
2017-12-11 08:20,-3.2,12.079476000000001,14.763804,105
2017-12-11 08:22,-3.3,12.079476000000001,13.645334,99
2017-12-11 08:24,-3.3,12.974252,14.763804,98
2017-12-11 08:26,-3.2,11.855782,13.42164,104
2017-12-11 08:28,-3.2,12.526864,14.316416000000002,97
2017-12-11 08:30,-3.1,12.303170000000001,14.092722,102
2017-12-11 08:32,-3.1,11.632088000000001,14.316416000000002,100
2017-12-11 08:34,-3.2,10.737312000000001,13.645334,101
2017-12-11 08:36,-3.1,10.289924,11.408394,105
2017-12-11 08:38,-3.1,10.513618000000001,11.855782,96
2017-12-11 08:40,-3,10.737312000000001,11.855782,94
2017-12-11 08:42,-3,11.408394,12.974252,103
2017-12-11 08:44,-2.9,10.737312000000001,12.750558000000002,102
2017-12-11 08:46,-2.8,10.513618000000001,12.303170000000001,103
2017-12-11 08:48,-2.6,10.513618000000001,12.526864,96
2017-12-11 08:50,-2.9,11.408394,13.645334,104
2017-12-11 08:52,-2.9,10.066230000000001,11.855782,105
2017-12-11 08:54,-2.7,10.961006000000001,14.092722,98
2017-12-11 08:56,-2.9,12.526864,14.092722,99
2017-12-11 08:58,-2.8,11.855782,14.54011,104
2017-12-11 09:00,-2.8,11.632088000000001,12.974252,99
2017-12-11 09:02,-2.7,11.632088000000001,13.869028000000002,101
2017-12-11 09:04,-2.6,11.408394,12.974252,97
2017-12-11 09:06,-2.5,12.303170000000001,13.645334,100
2017-12-11 09:08,-2.7,12.303170000000001,14.092722,107
2017-12-11 09:10,-2.6,12.303170000000001,13.645334,99
2017-12-11 09:12,-2.7,12.303170000000001,14.316416000000002,107
2017-12-11 09:14,-2.6,10.961006000000001,12.750558000000002,107
2017-12-11 09:16,-2.4,12.079476000000001,14.316416000000002,103
2017-12-11 09:18,-2.5,12.303170000000001,13.869028000000002,109
2017-12-11 09:20,-2.3,11.855782,13.197946000000002,107
2017-12-11 09:22,-2.3,11.184700000000001,12.526864,104
2017-12-11 09:24,-2.4,13.197946000000002,14.987498000000002,107
2017-12-11 09:26,-2.4,12.750558000000002,14.987498000000002,107
2017-12-11 09:28,-2.4,11.408394,12.526864,105
2017-12-11 09:30,-2.3,12.079476000000001,14.54011,102
2017-12-11 09:32,-2.2,12.079476000000001,13.42164,100
2017-12-11 09:34,-2.2,11.632088000000001,13.42164,104
2017-12-11 09:36,-2.2,12.974252,15.434886000000002,101
2017-12-11 09:38,-2.2,11.632088000000001,13.197946000000002,102
2017-12-11 09:40,-2.2,12.974252,14.092722,107
2017-12-11 09:42,-2.2,12.750558000000002,14.763804,106
2017-12-11 09:44,-2.2,12.079476000000001,13.197946000000002,109
2017-12-11 09:46,-2.2,13.869028000000002,15.882274,108
2017-12-11 09:48,-2.2,12.974252,14.316416000000002,108
2017-12-11 09:50,-2.1,11.408394,13.197946000000002,108
2017-12-11 09:52,-2.1,12.079476000000001,13.645334,107
2017-12-11 09:54,-2.1,12.526864,14.316416000000002,112
2017-12-11 09:56,-2.1,10.289924,11.408394,104
2017-12-11 09:58,-2.1,11.184700000000001,14.092722,98
2017-12-11 10:00,-2.1,11.632088000000001,13.869028000000002,99
2017-12-11 10:02,-2,10.737312000000001,12.303170000000001,101
2017-12-11 10:04,-1.8,10.066230000000001,12.303170000000001,99
2017-12-11 10:06,-1.9,12.303170000000001,13.869028000000002,107
2017-12-11 10:08,-2,11.184700000000001,12.974252,109
2017-12-11 10:10,-1.9,11.855782,14.092722,98
2017-12-11 10:12,-1.9,11.855782,13.869028000000002,100
2017-12-11 10:14,-1.8,10.513618000000001,11.855782,105
2017-12-11 10:16,-1.8,11.184700000000001,13.197946000000002,103
2017-12-11 10:18,-1.8,12.079476000000001,14.092722,101
2017-12-11 10:20,-1.7,11.408394,14.54011,101
2017-12-11 10:22,-1.8,12.079476000000001,13.645334,102
2017-12-11 10:24,-1.7,10.513618000000001,11.408394,106
2017-12-11 10:26,-1.7,9.842536,11.632088000000001,100
2017-12-11 10:28,-1.7,9.171454,11.184700000000001,111
2017-12-11 10:30,-1.6,10.066230000000001,10.961006000000001,94
2017-12-11 10:32,-1.6,10.737312000000001,11.855782,95
2017-12-11 10:34,-1.6,11.632088000000001,13.42164,93
2017-12-11 10:36,-1.5,10.289924,12.079476000000001,99
2017-12-11 10:38,-1.5,10.289924,12.079476000000001,90
2017-12-11 10:40,-1.5,10.737312000000001,12.303170000000001,102
2017-12-11 10:42,-1.5,8.724066,10.513618000000001,106
2017-12-11 10:44,-1.4,9.171454,10.961006000000001,102
2017-12-11 10:46,-1.4,9.171454,11.184700000000001,98
2017-12-11 10:48,-1.4,9.842536,11.855782,88
2017-12-11 10:50,-1.4,8.276678,11.184700000000001,92
2017-12-11 10:52,-1.3,8.276678,9.618842,92
2017-12-11 10:54,-1.3,8.94776,9.842536,88
2017-12-11 10:56,-1.3,8.052984,8.724066,101
2017-12-11 10:58,-1.3,8.500372,9.618842,85
2017-12-11 11:00,-1.2,9.395148,10.513618000000001,79
2017-12-11 11:02,-1.2,10.066230000000001,11.408394,82
2017-12-11 11:04,-1.2,8.94776,10.289924,92
2017-12-11 11:06,-1.1,9.171454,9.842536,82
2017-12-11 11:08,-0.9,9.618842,11.408394,81
2017-12-11 11:10,-1,10.289924,11.408394,84
2017-12-11 11:12,-1,9.618842,10.289924,84
2017-12-11 11:14,-1,9.842536,11.184700000000001,85
2017-12-11 11:16,-1,10.961006000000001,11.855782,86
2017-12-11 11:18,-0.9,10.737312000000001,12.079476000000001,94
2017-12-11 11:20,-0.9,9.618842,11.184700000000001,95
2017-12-11 11:22,-0.9,8.94776,9.842536,98
2017-12-11 11:24,-0.7,8.500372,9.395148,95
2017-12-11 11:26,-0.7,8.94776,11.184700000000001,95
2017-12-11 11:28,-0.7,10.737312000000001,11.855782,90
2017-12-11 11:30,-0.6,10.737312000000001,11.855782,90
2017-12-11 11:32,-0.7,10.066230000000001,11.855782,90
2017-12-11 11:34,-0.6,10.289924,11.855782,89
2017-12-11 11:36,-0.6,9.395148,11.184700000000001,92
2017-12-11 11:38,-0.5,10.066230000000001,11.184700000000001,93
2017-12-11 11:40,-0.5,9.618842,10.961006000000001,90
2017-12-11 11:42,-0.6,10.737312000000001,12.303170000000001,96
2017-12-11 11:44,-0.6,10.289924,11.855782,98
2017-12-11 11:46,-0.5,9.618842,11.408394,97
2017-12-11 11:48,-0.5,8.94776,10.066230000000001,94
2017-12-11 11:50,-0.4,8.94776,10.289924,98
2017-12-11 11:52,-0.5,9.171454,10.289924,100
2017-12-11 11:54,-0.5,8.052984,8.94776,97
2017-12-11 11:56,-0.4,8.500372,9.618842,96
2017-12-11 11:58,-0.4,8.052984,10.066230000000001,92
2017-12-11 12:00,-0.3,8.052984,9.842536,99
2017-12-11 12:02,-0.2,7.605596,9.395148,88
2017-12-11 12:04,-0.3,8.724066,9.618842,83
2017-12-11 12:06,-0.2,8.724066,10.289924,88
2017-12-11 12:08,-0.2,8.276678,9.618842,90
2017-12-11 12:10,-0.2,8.052984,9.171454,90
2017-12-11 12:12,-0.1,7.381902,8.94776,88
2017-12-11 12:14,-0.1,8.052984,8.94776,91
2017-12-11 12:16,-0.1,8.724066,10.513618000000001,86
2017-12-11 12:18,-0.1,9.395148,10.066230000000001,86
2017-12-11 12:20,-0.1,7.82929,9.171454,75
2017-12-11 12:22,0,7.82929,8.724066,71
2017-12-11 12:24,0,6.71082,7.82929,78
2017-12-11 12:26,0,6.263432,8.052984,83
2017-12-11 12:28,0,6.71082,7.82929,78
2017-12-11 12:30,0,7.158208000000001,8.724066,75
2017-12-11 12:32,0.1,7.605596,8.724066,72
2017-12-11 12:34,0,8.500372,9.842536,62
2017-12-11 12:36,0.1,7.82929,9.171454,81
2017-12-11 12:38,0.1,8.052984,9.618842,78
2017-12-11 12:40,0.1,8.500372,10.066230000000001,71
2017-12-11 12:42,0.1,9.171454,10.513618000000001,73
2017-12-11 12:44,0.1,9.395148,10.513618000000001,72
2017-12-11 12:46,0.1,8.724066,10.289924,83
2017-12-11 12:48,0.2,8.500372,9.842536,78
2017-12-11 12:50,0.2,8.500372,9.842536,75
2017-12-11 12:52,0.2,7.82929,10.066230000000001,86
2017-12-11 12:54,0.2,6.934514000000001,7.605596,88
2017-12-11 12:56,0.2,6.263432,7.605596,76
2017-12-11 12:58,0.2,6.263432,7.381902,87
2017-12-11 13:00,0.3,6.039738000000001,7.605596,77
2017-12-11 13:02,0.3,5.816044000000001,7.381902,79
2017-12-11 13:04,0.3,5.816044000000001,6.934514000000001,91
2017-12-11 13:06,0.2,6.263432,7.158208000000001,85
2017-12-11 13:08,0.3,6.263432,6.934514000000001,90
2017-12-11 13:10,0.3,4.47388,5.816044000000001,104
2017-12-11 13:12,0.3,5.816044000000001,6.71082,105
2017-12-11 13:14,0.4,6.039738000000001,6.71082,93
2017-12-11 13:16,0.3,6.039738000000001,7.381902,104
2017-12-11 13:18,0.3,6.263432,7.381902,103
2017-12-11 13:20,0.3,6.487126,7.605596,100
2017-12-11 13:22,0.3,7.158208000000001,8.052984,106
2017-12-11 13:24,0.3,6.487126,8.052984,115
2017-12-11 13:26,0.3,6.71082,8.276678,112
2017-12-11 13:28,0.3,5.592350000000001,6.487126,128
2017-12-11 13:30,0.3,6.263432,7.158208000000001,116
2017-12-11 13:32,0.3,7.605596,9.618842,102
2017-12-11 13:34,0.3,7.158208000000001,8.94776,101
2017-12-11 13:36,0.3,7.381902,8.276678,104
2017-12-11 13:38,0.3,7.82929,9.171454,99
2017-12-11 13:40,0.4,6.934514000000001,8.500372,97
2017-12-11 13:42,0.4,7.605596,8.724066,102
2017-12-11 13:44,0.4,8.500372,9.842536,94
2017-12-11 13:46,0.3,7.82929,8.94776,89
2017-12-11 13:48,0.3,7.381902,8.052984,89
2017-12-11 13:50,0.4,7.605596,8.724066,96
2017-12-11 13:52,0.4,8.500372,10.961006000000001,96
2017-12-11 13:54,0.3,8.94776,10.737312000000001,91
2017-12-11 13:56,0.3,9.171454,9.842536,86
2017-12-11 13:58,0.3,8.94776,10.066230000000001,87
2017-12-11 14:00,0.3,8.276678,9.842536,89
2017-12-11 14:02,0.3,9.395148,10.289924,98
2017-12-11 14:04,0.2,8.724066,9.618842,105
2017-12-11 14:06,0.3,7.82929,8.724066,102
2017-12-11 14:08,0.3,7.381902,8.276678,112
2017-12-11 14:10,0.3,6.71082,7.605596,114
2017-12-11 14:12,0.3,6.487126,7.381902,118
2017-12-11 14:14,0.3,4.921268,5.592350000000001,124
2017-12-11 14:16,0.3,4.250186,4.921268,124
2017-12-11 14:18,0.3,4.47388,4.921268,111
2017-12-11 14:20,0.3,4.921268,6.263432,102
2017-12-11 14:22,0.3,3.802798,4.697574,112
2017-12-11 14:24,0.3,4.026492,5.816044000000001,104
2017-12-11 14:26,0.3,4.921268,5.3686560000000005,99
2017-12-11 14:28,0.3,5.3686560000000005,6.039738000000001,95
2017-12-11 14:30,0.4,4.250186,5.144962,101
2017-12-11 14:32,0.4,4.47388,4.921268,102
2017-12-11 14:34,0.4,4.47388,4.921268,110
2017-12-11 14:36,0.4,3.5791040000000005,4.47388,118
2017-12-11 14:38,0.4,2.6843280000000003,3.35541,124
2017-12-11 14:40,0.4,3.5791040000000005,4.026492,122
2017-12-11 14:42,0.5,3.802798,4.47388,117
2017-12-11 14:44,0.5,4.250186,4.921268,118
2017-12-11 14:46,0.5,3.131716,4.47388,127
2017-12-11 14:48,0.5,3.5791040000000005,4.026492,137
2017-12-11 14:50,0.6,2.6843280000000003,3.802798,145
2017-12-11 14:52,0.6,2.23694,2.9080220000000003,149
2017-12-11 14:54,0.6,3.35541,3.802798,115
2017-12-11 14:56,0.6,4.026492,5.144962,108
2017-12-11 14:58,0.6,4.921268,7.158208000000001,129
2017-12-11 15:00,0.6,5.3686560000000005,6.71082,156
2017-12-11 15:02,0.6,6.039738000000001,6.71082,159
2017-12-11 15:04,0.6,4.697574,6.039738000000001,155
2017-12-11 15:06,0.6,6.039738000000001,7.158208000000001,165
2017-12-11 15:08,0.6,6.487126,7.381902,165
2017-12-11 15:10,0.6,6.487126,7.381902,171
2017-12-11 15:12,0.6,7.158208000000001,8.276678,158
2017-12-11 15:14,0.6,8.052984,9.395148,154
2017-12-11 15:16,0.6,5.816044000000001,7.381902,153
2017-12-11 15:18,0.6,6.487126,8.052984,131
2017-12-11 15:20,0.6,5.816044000000001,6.487126,125
2017-12-11 15:22,0.7,5.3686560000000005,6.487126,129
2017-12-11 15:24,0.7,4.921268,5.816044000000001,140
2017-12-11 15:26,0.7,5.816044000000001,7.605596,163
2017-12-11 15:28,0.7,5.592350000000001,6.487126,178
2017-12-11 15:30,0.7,4.47388,5.3686560000000005,177
2017-12-11 15:32,0.7,4.250186,4.921268,165
2017-12-11 15:34,0.7,4.47388,5.592350000000001,150
2017-12-11 15:36,0.7,5.592350000000001,6.487126,152
2017-12-11 15:38,0.7,5.3686560000000005,5.592350000000001,149
2017-12-11 15:40,0.6,4.47388,5.3686560000000005,152
2017-12-11 15:42,0.7,4.921268,6.487126,175
2017-12-11 15:44,0.7,6.934514000000001,8.500372,196
2017-12-11 15:46,0.7,7.158208000000001,8.724066,204
2017-12-11 15:48,0.7,8.052984,9.171454,208
2017-12-11 15:50,0.7,6.934514000000001,7.82929,206
2017-12-11 15:52,0.7,6.934514000000001,8.052984,201
2017-12-11 15:54,0.7,5.816044000000001,7.605596,207
2017-12-11 15:56,0.8,5.144962,6.934514000000001,215
2017-12-11 15:58,0.8,7.82929,10.289924,208
2017-12-11 16:00,0.7,7.381902,8.724066,206
2017-12-11 16:02,0.8,5.816044000000001,7.82929,210
2017-12-11 16:04,0.8,5.144962,6.71082,217
2017-12-11 16:06,0.8,4.47388,6.263432,218
2017-12-11 16:08,0.8,4.921268,7.605596,203
2017-12-11 16:10,0.8,5.144962,6.487126,206
2017-12-11 16:12,0.9,4.697574,6.71082,211
2017-12-11 16:14,0.9,4.921268,7.381902,212
2017-12-11 16:16,0.9,7.158208000000001,8.94776,206
2017-12-11 16:18,0.9,4.921268,6.263432,221
2017-12-11 16:20,0.9,3.802798,4.47388,219
2017-12-11 16:22,0.9,5.592350000000001,7.158208000000001,220
2017-12-11 16:24,0.9,8.276678,11.408394,225
2017-12-11 16:26,0.9,8.276678,9.842536,227
2017-12-11 16:28,1,8.052984,10.737312000000001,225
2017-12-11 16:30,1,9.171454,12.303170000000001,223
2017-12-11 16:32,1,8.94776,12.303170000000001,222
2017-12-11 16:34,1,6.039738000000001,7.158208000000001,220
2017-12-11 16:36,1,5.592350000000001,6.934514000000001,215
2017-12-11 16:38,1,6.039738000000001,9.171454,207
2017-12-11 16:40,1,7.82929,8.94776,205
2017-12-11 16:42,0.9,6.263432,8.276678,212
2017-12-11 16:44,0.9,8.276678,13.42164,209
2017-12-11 16:46,0.9,10.066230000000001,13.42164,212
2017-12-11 16:48,0.9,7.82929,9.618842,215
2017-12-11 16:50,0.9,7.381902,10.289924,216
2017-12-11 16:52,0.9,7.158208000000001,8.500372,217
2017-12-11 16:54,0.9,8.94776,11.408394,221
2017-12-11 16:56,0.9,7.381902,8.500372,213
2017-12-11 16:58,0.9,6.934514000000001,9.395148,220
2017-12-11 17:00,0.9,8.94776,11.855782,216
2017-12-11 17:02,0.9,6.487126,9.618842,218
2017-12-11 17:04,0.9,7.158208000000001,8.94776,226
2017-12-11 17:06,0.9,7.158208000000001,8.94776,214
2017-12-11 17:08,0.9,8.500372,11.184700000000001,229
2017-12-11 17:10,0.9,8.052984,11.184700000000001,212
2017-12-11 17:12,0.9,7.605596,9.842536,221
2017-12-11 17:14,0.9,8.052984,10.066230000000001,219
2017-12-11 17:16,0.9,7.605596,10.737312000000001,220
2017-12-11 17:18,0.9,8.724066,10.961006000000001,224
2017-12-11 17:20,0.9,10.066230000000001,12.526864,232
2017-12-11 17:22,0.9,8.724066,12.974252,220
2017-12-11 17:24,0.9,10.513618000000001,14.763804,218
2017-12-11 17:26,0.9,12.750558000000002,16.105968,225
2017-12-11 17:28,0.9,12.750558000000002,16.105968,224
2017-12-11 17:30,0.8,11.632088000000001,17.224438000000003,226
2017-12-11 17:32,0.8,11.632088000000001,15.434886000000002,228
2017-12-11 17:34,0.8,10.066230000000001,13.645334,232
2017-12-11 17:36,0.8,9.618842,13.869028000000002,227
2017-12-11 17:38,0.8,13.869028000000002,20.356154,232
2017-12-11 17:40,0.7,14.54011,17.671826000000003,234
2017-12-11 17:42,0.7,10.289924,14.54011,240
2017-12-11 17:44,0.7,11.184700000000001,15.65858,234
2017-12-11 17:46,0.7,11.632088000000001,16.553356,236
2017-12-11 17:48,0.7,8.500372,13.42164,233
2017-12-11 17:50,0.7,10.513618000000001,15.434886000000002,226
2017-12-11 17:52,0.6,10.961006000000001,14.54011,229
2017-12-11 17:54,0.6,11.408394,14.54011,220
2017-12-11 17:56,0.6,10.289924,13.645334,226
2017-12-11 17:58,0.5,11.632088000000001,15.434886000000002,221
2017-12-11 18:00,0.5,10.066230000000001,12.079476000000001,231
2017-12-11 18:02,0.6,8.724066,10.513618000000001,231
2017-12-11 18:04,0.6,6.934514000000001,10.289924,235
2017-12-11 18:06,0.5,9.171454,12.079476000000001,241
2017-12-11 18:08,0.5,12.303170000000001,15.882274,239
2017-12-11 18:10,0.5,12.974252,15.65858,232
2017-12-11 18:12,0.4,11.855782,14.763804,224
2017-12-11 18:14,0.4,10.961006000000001,15.65858,231
2017-12-11 18:16,0.4,11.408394,13.869028000000002,235
2017-12-11 18:18,0.4,10.737312000000001,14.316416000000002,228
2017-12-11 18:20,0.4,11.855782,14.316416000000002,229
2017-12-11 18:22,0.4,10.289924,13.645334,242
2017-12-11 18:24,0.4,8.500372,10.961006000000001,233
2017-12-11 18:26,0.4,9.618842,12.750558000000002,230
2017-12-11 18:28,0.4,9.395148,12.079476000000001,233
2017-12-11 18:30,0.4,9.171454,14.987498000000002,234
2017-12-11 18:32,0.4,12.303170000000001,14.54011,236
2017-12-11 18:34,0.4,10.513618000000001,13.197946000000002,234
2017-12-11 18:36,0.4,12.750558000000002,16.329662,247
2017-12-11 18:38,0.4,11.632088000000001,14.987498000000002,247
2017-12-11 18:40,0.4,11.632088000000001,15.65858,236
2017-12-11 18:42,0.3,13.42164,18.119214,240
2017-12-11 18:44,0.3,12.079476000000001,15.211192,241
2017-12-11 18:46,0.3,12.303170000000001,17.000744,239
2017-12-11 18:48,0.3,14.987498000000002,18.790296,245
2017-12-11 18:50,0.3,14.092722,16.553356,240
2017-12-11 18:52,0.3,13.42164,16.553356,244
2017-12-11 18:54,0.3,13.197946000000002,16.105968,248
2017-12-11 18:56,0.3,10.961006000000001,14.092722,244
2017-12-11 18:58,0.2,14.987498000000002,20.132460000000002,251
2017-12-11 19:00,0.2,14.987498000000002,19.01399,251
2017-12-11 19:02,0.2,16.329662,22.145706,249
2017-12-11 19:04,0.2,14.316416000000002,20.356154,252
2017-12-11 19:06,0.2,14.763804,17.448132,247
2017-12-11 19:08,0.2,15.211192,18.119214,249
2017-12-11 19:10,0.2,10.289924,14.763804,227
2017-12-11 19:12,0.1,14.54011,18.342908,239
2017-12-11 19:14,0.1,12.750558000000002,15.434886000000002,239
2017-12-11 19:16,0,15.434886000000002,21.25093,236
2017-12-11 19:18,0,14.092722,19.237684,242
2017-12-11 19:20,0,14.987498000000002,20.356154,232
2017-12-11 19:22,0,15.211192,21.027236000000002,237
2017-12-11 19:24,-0.1,14.987498000000002,19.01399,248
2017-12-11 19:26,-0.1,12.526864,18.566602000000003,238
2017-12-11 19:28,-0.1,12.974252,16.777050000000003,242
2017-12-11 19:30,-0.2,18.119214,22.145706,238
2017-12-11 19:32,-0.2,17.000744,21.25093,242
2017-12-11 19:34,-0.3,17.224438000000003,22.145706,237
2017-12-11 19:36,-0.3,20.803542000000004,25.277422000000005,235
2017-12-11 19:38,-0.3,16.329662,22.145706,241
2017-12-11 19:40,-0.3,15.882274,19.01399,238
2017-12-11 19:42,-0.4,14.54011,17.448132,245
2017-12-11 19:44,-0.3,13.197946000000002,17.671826000000003,242
2017-12-11 19:46,-0.4,17.000744,21.027236000000002,245
2017-12-11 19:48,-0.5,17.224438000000003,20.803542000000004,235
2017-12-11 19:50,-0.5,16.329662,21.698318,242
2017-12-11 19:52,-0.6,19.01399,24.158952000000003,234
2017-12-11 19:54,-0.6,13.645334,19.685072,239
2017-12-11 19:56,-0.6,16.329662,21.474624000000002,237
2017-12-11 19:58,-0.6,17.224438000000003,20.803542000000004,241
2017-12-11 20:00,-0.6,13.869028000000002,17.89552,244
2017-12-11 20:02,-0.6,16.329662,21.25093,246
2017-12-11 20:04,-0.6,16.777050000000003,20.803542000000004,244
2017-12-11 20:06,-0.7,18.342908,27.066974000000002,244
2017-12-11 20:08,-0.7,14.092722,17.448132,244
2017-12-11 20:10,-0.7,12.303170000000001,15.211192,237
2017-12-11 20:12,-0.8,20.356154,26.84328,244
2017-12-11 20:14,-0.8,20.132460000000002,27.738056000000004,255
2017-12-11 20:16,-0.8,17.671826000000003,22.145706,245
2017-12-11 20:18,-0.8,12.750558000000002,17.89552,233
2017-12-11 20:20,-0.7,9.618842,14.092722,234
2017-12-11 20:22,-0.7,12.303170000000001,17.224438000000003,244
2017-12-11 20:24,-0.7,12.079476000000001,15.434886000000002,236
2017-12-11 20:26,-0.8,15.211192,25.053728,234
2017-12-11 20:28,-0.8,16.777050000000003,23.040482000000004,241
2017-12-11 20:30,-0.8,16.553356,22.593094,252
2017-12-11 20:32,-0.8,21.027236000000002,24.382646,250
2017-12-11 20:34,-0.9,20.132460000000002,26.395892000000003,252
2017-12-11 20:36,-0.8,17.224438000000003,20.579848,251
2017-12-11 20:38,-0.8,11.184700000000001,15.434886000000002,234
2017-12-11 20:40,-0.8,16.105968,19.461378,245
2017-12-11 20:42,-0.8,15.434886000000002,19.237684,241
2017-12-11 20:44,-0.8,14.54011,19.461378,224
2017-12-11 20:46,-0.8,12.303170000000001,18.566602000000003,231
2017-12-11 20:48,-0.7,13.645334,18.790296,241
2017-12-11 20:50,-0.8,13.42164,16.329662,235
2017-12-11 20:52,-0.7,14.763804,17.89552,236
2017-12-11 20:54,-0.7,11.632088000000001,15.882274,234
2017-12-11 20:56,-0.7,10.513618000000001,12.750558000000002,238
2017-12-11 20:58,-0.7,10.513618000000001,15.65858,230
2017-12-11 21:00,-0.7,11.184700000000001,15.434886000000002,233
2017-12-11 21:02,-0.7,10.737312000000001,15.65858,227
2017-12-11 21:04,-0.7,13.645334,19.685072,229
2017-12-11 21:06,-0.7,14.987498000000002,22.593094,242
2017-12-11 21:08,-0.7,12.750558000000002,16.329662,236
2017-12-11 21:10,-0.7,10.737312000000001,13.645334,222
2017-12-11 21:12,-0.7,12.974252,16.329662,238
2017-12-11 21:14,-0.6,9.171454,13.197946000000002,225
2017-12-11 21:16,-0.6,13.42164,19.908766000000004,236
2017-12-11 21:18,-0.6,17.000744,24.382646,225
2017-12-11 21:20,-0.6,16.553356,19.237684,225
2017-12-11 21:22,-0.6,16.777050000000003,21.25093,230
2017-12-11 21:24,-0.6,15.434886000000002,21.474624000000002,235
2017-12-11 21:26,-0.6,13.869028000000002,19.685072,232
2017-12-11 21:28,-0.6,12.750558000000002,18.566602000000003,235
2017-12-11 21:30,-0.5,14.763804,19.237684,238
2017-12-11 21:32,-0.6,13.42164,16.553356,231
2017-12-11 21:34,-0.6,12.526864,16.105968,233
2017-12-11 21:36,-0.6,13.42164,19.01399,226
2017-12-11 21:38,-0.6,11.408394,14.987498000000002,232
2017-12-11 21:40,-0.5,12.526864,15.211192,228
2017-12-11 21:42,-0.5,14.987498000000002,22.145706,226
2017-12-11 21:44,-0.5,17.89552,23.48787,240
2017-12-11 21:46,-0.5,14.316416000000002,19.685072,236
2017-12-11 21:48,-0.5,10.513618000000001,12.974252,228
2017-12-11 21:50,-0.5,11.408394,16.105968,229
2017-12-11 21:52,-0.5,13.197946000000002,18.342908,225
2017-12-11 21:54,-0.5,11.632088000000001,17.448132,222
2017-12-11 21:56,-0.5,14.54011,19.461378,230
2017-12-11 21:58,-0.5,14.092722,19.237684,242
2017-12-11 22:00,-0.5,15.882274,19.461378,242
2017-12-11 22:02,-0.5,14.316416000000002,20.579848,229
2017-12-11 22:04,-0.5,15.65858,19.461378,224
2017-12-11 22:06,-0.5,15.434886000000002,19.461378,233
2017-12-11 22:08,-0.4,14.092722,21.25093,231
2017-12-11 22:10,-0.4,14.092722,26.84328,223
2017-12-11 22:12,-0.6,19.685072,26.172198,247
2017-12-11 22:14,-0.7,18.790296,23.48787,243
2017-12-11 22:16,-0.7,20.579848,29.527608,247
2017-12-11 22:18,-0.8,18.119214,26.395892000000003,242
2017-12-11 22:20,-0.8,16.105968,20.579848,227
2017-12-11 22:22,-0.8,15.882274,21.25093,240
2017-12-11 22:24,-0.9,17.448132,24.158952000000003,241
2017-12-11 22:26,-1,21.25093,27.514362000000002,251
2017-12-11 22:28,-1.2,19.01399,23.040482000000004,251
2017-12-11 22:30,-1.2,17.000744,22.369400000000002,244
2017-12-11 22:32,-1.2,17.224438000000003,24.382646,239
2017-12-11 22:34,-1.3,16.105968,23.711564,234
2017-12-11 22:36,-1.4,16.105968,21.922012000000002,226
2017-12-11 22:38,-1.6,22.145706,29.303914000000002,229
2017-12-11 22:40,-1.8,26.84328,34.225182000000004,241
2017-12-11 22:42,-1.9,24.830034,30.646078,241
2017-12-11 22:44,-1.9,20.356154,30.198690000000003,241
2017-12-11 22:46,-1.9,20.132460000000002,27.961750000000002,247
2017-12-11 22:48,-2,18.790296,24.606340000000003,246
2017-12-11 22:50,-2,20.132460000000002,27.290668,237
2017-12-11 22:52,-2.1,15.65858,21.698318,236
2017-12-11 22:54,-2.1,14.763804,19.685072,234
2017-12-11 22:56,-2.2,17.224438000000003,23.48787,226
2017-12-11 22:58,-2.2,15.211192,19.461378,230
2017-12-11 23:00,-2.2,12.750558000000002,18.119214,236
2017-12-11 23:02,-2.3,14.092722,17.671826000000003,233
2017-12-11 23:04,-2.3,19.461378,28.856526000000002,236
2017-12-11 23:06,-2.3,15.211192,22.369400000000002,237
2017-12-11 23:08,-2.4,16.105968,23.935258,239
2017-12-11 23:10,-2.5,19.237684,28.185444,231
2017-12-11 23:12,-2.6,16.329662,20.803542000000004,239
2017-12-11 23:14,-2.7,19.461378,26.619586,238
2017-12-11 23:16,-2.8,19.237684,27.066974000000002,236
2017-12-11 23:18,-2.8,16.105968,22.593094,230
2017-12-11 23:20,-2.7,14.54011,24.606340000000003,230
2017-12-11 23:22,-2.8,15.434886000000002,21.474624000000002,232
2017-12-11 23:24,-2.8,15.434886000000002,18.790296,230
2017-12-11 23:26,-2.9,15.882274,19.461378,234
2017-12-11 23:28,-2.8,12.974252,15.882274,235
2017-12-11 23:30,-2.8,12.526864,20.132460000000002,235
2017-12-11 23:32,-2.9,16.329662,22.145706,245
2017-12-11 23:34,-3,19.01399,26.619586,241
2017-12-11 23:36,-3,18.566602000000003,23.264176000000003,233
2017-12-11 23:38,-3,15.882274,21.027236000000002,239
2017-12-11 23:40,-2.9,12.526864,15.65858,238
2017-12-11 23:42,-3,20.579848,32.659324,246
2017-12-11 23:44,-3.1,19.01399,23.711564,246
2017-12-11 23:46,-3.1,22.593094,29.974996000000004,238
2017-12-11 23:48,-3.2,18.342908,23.264176000000003,242
2017-12-11 23:50,-3.2,23.040482000000004,34.001488,234
2017-12-11 23:52,-3.4,23.711564,34.225182000000004,236
2017-12-11 23:54,-3.5,23.48787,34.001488,240
2017-12-11 23:56,-3.5,19.685072,24.606340000000003,250
2017-12-11 23:58,-3.5,18.342908,27.066974000000002,239
2017-12-12 00:00,-3.6,17.000744,23.935258,236
2017-12-12 00:02,-3.7,17.448132,24.606340000000003,242
2017-12-12 00:04,-3.8,24.606340000000003,29.08022,243
2017-12-12 00:06,-3.8,25.501116000000003,33.330406,252
2017-12-12 00:08,-3.9,24.830034,32.211936,251
2017-12-12 00:10,-3.9,23.935258,31.764548,251
2017-12-12 00:12,-3.8,14.54011,19.908766000000004,245
2017-12-12 00:14,-3.9,20.579848,24.382646,249
2017-12-12 00:16,-4,21.698318,31.31716,256
2017-12-12 00:18,-4.1,24.158952000000003,29.303914000000002,251
2017-12-12 00:20,-4,16.105968,21.474624000000002,247
2017-12-12 00:22,-4.1,17.000744,23.264176000000003,247
2017-12-12 00:24,-4.1,17.448132,21.698318,238
2017-12-12 00:26,-4.1,21.027236000000002,26.395892000000003,244
2017-12-12 00:28,-4.2,17.224438000000003,21.027236000000002,246
2017-12-12 00:30,-4.3,20.803542000000004,26.172198,253
2017-12-12 00:32,-4.2,15.882274,19.685072,258
2017-12-12 00:34,-4.3,15.211192,19.01399,254
2017-12-12 00:36,-4.2,17.448132,23.711564,245
2017-12-12 00:38,-4.2,15.434886000000002,22.593094,238
2017-12-12 00:40,-4.2,14.763804,18.790296,237
2017-12-12 00:42,-4.3,16.777050000000003,20.579848,239
2017-12-12 00:44,-4.3,16.329662,21.027236000000002,244
2017-12-12 00:46,-4.3,16.553356,25.277422000000005,243
2017-12-12 00:48,-4.4,22.369400000000002,29.303914000000002,247
2017-12-12 00:50,-4.5,18.566602000000003,23.711564,248
2017-12-12 00:52,-4.5,22.593094,30.869772000000005,253
2017-12-12 00:54,-4.4,20.356154,30.422384,249
2017-12-12 00:56,-4.6,23.935258,31.31716,245
2017-12-12 00:58,-4.6,19.237684,25.501116000000003,244
2017-12-12 01:00,-4.6,21.474624000000002,26.619586,260
2017-12-12 01:02,-4.6,19.01399,23.935258,252
2017-12-12 01:04,-4.6,18.790296,23.711564,247
2017-12-12 01:06,-4.6,15.434886000000002,19.685072,251
2017-12-12 01:08,-4.6,14.092722,20.132460000000002,236
2017-12-12 01:10,-4.6,14.092722,18.119214,239
2017-12-12 01:12,-4.7,13.197946000000002,21.698318,236
2017-12-12 01:14,-4.7,17.224438000000003,21.474624000000002,236
2017-12-12 01:16,-4.7,19.237684,28.632832000000004,229
2017-12-12 01:18,-4.7,19.237684,26.619586,240
2017-12-12 01:20,-4.6,16.105968,22.593094,237
2017-12-12 01:22,-4.7,17.000744,20.803542000000004,243
2017-12-12 01:24,-4.7,17.89552,22.593094,242
2017-12-12 01:26,-4.8,15.882274,20.803542000000004,236
2017-12-12 01:28,-4.8,16.329662,21.027236000000002,235
2017-12-12 01:30,-4.8,18.566602000000003,24.830034,241
2017-12-12 01:32,-4.8,19.908766000000004,25.053728,236
2017-12-12 01:34,-4.8,15.65858,19.461378,243
2017-12-12 01:36,-4.9,19.461378,25.948504,239
2017-12-12 01:38,-4.9,16.777050000000003,19.908766000000004,245
2017-12-12 01:40,-4.9,13.645334,24.606340000000003,235
2017-12-12 01:42,-4.8,13.42164,20.132460000000002,243
2017-12-12 01:44,-4.9,21.698318,26.84328,252
2017-12-12 01:46,-5,18.342908,25.501116000000003,244
2017-12-12 01:48,-4.9,12.303170000000001,16.553356,241
2017-12-12 01:50,-5,16.329662,20.803542000000004,243
2017-12-12 01:52,-5.1,15.211192,19.685072,237
2017-12-12 01:54,-5.1,18.119214,25.277422000000005,245
2017-12-12 01:56,-5.1,16.777050000000003,22.593094,242
2017-12-12 01:58,-5.1,13.869028000000002,18.119214,242
2017-12-12 02:00,-5.1,18.566602000000003,21.474624000000002,238
2017-12-12 02:02,-5.2,15.211192,20.132460000000002,247
2017-12-12 02:04,-5.2,17.224438000000003,23.264176000000003,243
2017-12-12 02:06,-5.2,17.000744,19.908766000000004,249
2017-12-12 02:08,-5.1,14.987498000000002,18.119214,250
2017-12-12 02:10,-5.2,10.513618000000001,13.42164,244
2017-12-12 02:12,-5.3,13.197946000000002,17.000744,243
2017-12-12 02:14,-5.4,16.329662,27.066974000000002,247
2017-12-12 02:16,-5.3,12.974252,16.777050000000003,241
2017-12-12 02:18,-5.4,14.763804,18.119214,240
2017-12-12 02:20,-5.5,15.882274,20.356154,236
2017-12-12 02:22,-5.5,13.869028000000002,20.132460000000002,243
2017-12-12 02:24,-5.5,14.092722,19.237684,238
2017-12-12 02:26,-5.5,14.092722,17.000744,238
2017-12-12 02:28,-5.5,13.197946000000002,15.434886000000002,246
2017-12-12 02:30,-5.4,11.408394,14.092722,243
2017-12-12 02:32,-5.5,12.303170000000001,14.54011,236
2017-12-12 02:34,-5.4,10.513618000000001,14.987498000000002,236
2017-12-12 02:36,-5.4,14.763804,20.356154,232
2017-12-12 02:38,-5.3,14.316416000000002,21.027236000000002,232
2017-12-12 02:40,-5.4,18.790296,25.948504,232
2017-12-12 02:42,-5.3,12.079476000000001,14.987498000000002,233
2017-12-12 02:44,-5.3,11.184700000000001,14.987498000000002,237
2017-12-12 02:46,-5.3,12.079476000000001,16.105968,241
2017-12-12 02:48,-5.4,12.750558000000002,16.329662,239
2017-12-12 02:50,-5.4,12.303170000000001,15.882274,243
2017-12-12 02:52,-5.5,18.342908,25.053728,261
2017-12-12 02:54,-5.6,16.777050000000003,20.132460000000002,255
2017-12-12 02:56,-5.5,17.448132,22.369400000000002,251
2017-12-12 02:58,-5.5,13.645334,19.461378,252
2017-12-12 03:00,-5.5,13.42164,16.553356,255
2017-12-12 03:02,-5.5,11.408394,14.316416000000002,248
2017-12-12 03:04,-5.4,9.618842,12.750558000000002,243
2017-12-12 03:06,-5.4,13.645334,15.882274,250
2017-12-12 03:08,-5.6,9.171454,15.434886000000002,241
2017-12-12 03:10,-5.5,13.42164,18.119214,247
2017-12-12 03:12,-5.6,14.316416000000002,19.01399,250
2017-12-12 03:14,-5.6,16.105968,21.474624000000002,255
2017-12-12 03:16,-5.5,17.671826000000003,23.040482000000004,249
2017-12-12 03:18,-5.4,13.42164,22.145706,235
2017-12-12 03:20,-5.4,15.882274,20.356154,237
2017-12-12 03:22,-5.5,18.119214,24.830034,245
2017-12-12 03:24,-5.5,14.092722,20.356154,233
2017-12-12 03:26,-5.4,14.092722,20.579848,232
2017-12-12 03:28,-5.4,16.553356,27.066974000000002,237
2017-12-12 03:30,-5.5,17.89552,22.593094,231
2017-12-12 03:32,-5.5,14.54011,18.342908,230
2017-12-12 03:34,-5.4,11.632088000000001,16.777050000000003,229
2017-12-12 03:36,-5.6,14.092722,21.698318,225
2017-12-12 03:38,-5.5,10.961006000000001,14.987498000000002,226
2017-12-12 03:40,-5.6,12.079476000000001,16.777050000000003,227
2017-12-12 03:42,-5.6,10.289924,12.526864,231
2017-12-12 03:44,-5.6,15.882274,29.527608,226
2017-12-12 03:46,-5.8,19.237684,27.738056000000004,228
2017-12-12 03:48,-5.8,19.237684,26.619586,233
2017-12-12 03:50,-5.8,14.54011,19.685072,233
2017-12-12 03:52,-5.7,15.434886000000002,21.922012000000002,237
2017-12-12 03:54,-5.8,15.211192,19.685072,245
2017-12-12 03:56,-5.7,12.750558000000002,19.461378,237
2017-12-12 03:58,-5.7,11.632088000000001,18.566602000000003,228
2017-12-12 04:00,-5.9,15.882274,20.356154,234
2017-12-12 04:02,-6,18.342908,23.935258,239
2017-12-12 04:04,-5.9,13.645334,17.671826000000003,230
2017-12-12 04:06,-5.8,10.961006000000001,15.211192,240
2017-12-12 04:08,-5.8,11.855782,16.777050000000003,232
2017-12-12 04:10,-5.9,14.54011,18.342908,230
2017-12-12 04:12,-5.9,15.65858,19.908766000000004,238
2017-12-12 04:14,-5.9,15.211192,21.25093,240
2017-12-12 04:16,-6,16.553356,21.922012000000002,241
2017-12-12 04:18,-5.9,13.645334,19.685072,235
2017-12-12 04:20,-5.8,13.869028000000002,17.89552,242
2017-12-12 04:22,-5.9,15.882274,21.027236000000002,233
2017-12-12 04:24,-6,17.89552,22.593094,219
2017-12-12 04:26,-6,19.685072,23.935258,230
2017-12-12 04:28,-6,13.869028000000002,17.89552,230
2017-12-12 04:30,-6,11.184700000000001,14.092722,227
2017-12-12 04:32,-6,16.777050000000003,25.72481,219
2017-12-12 04:34,-6.2,18.119214,26.172198,225
2017-12-12 04:36,-6.2,16.105968,21.027236000000002,227
2017-12-12 04:38,-6.2,15.65858,18.342908,226
2017-12-12 04:40,-6.3,16.329662,21.922012000000002,225
2017-12-12 04:42,-6.3,16.777050000000003,21.25093,223
2017-12-12 04:44,-6.3,13.42164,19.461378,225
2017-12-12 04:46,-6.3,15.211192,20.132460000000002,229
2017-12-12 04:48,-6.3,14.987498000000002,18.566602000000003,221
2017-12-12 04:50,-6.4,18.566602000000003,24.382646,224
2017-12-12 04:52,-6.4,16.105968,23.48787,236
2017-12-12 04:54,-6.4,13.869028000000002,17.89552,230
2017-12-12 04:56,-6.3,13.645334,19.908766000000004,236
2017-12-12 04:58,-6.4,11.855782,16.777050000000003,231
2017-12-12 05:00,-6.3,11.855782,21.027236000000002,227
2017-12-12 05:02,-6.4,18.566602000000003,24.158952000000003,228
2017-12-12 05:04,-6.5,15.211192,19.461378,225
2017-12-12 05:06,-6.5,14.54011,18.119214,223
2017-12-12 05:08,-6.5,14.54011,18.790296,235
2017-12-12 05:10,-6.4,13.869028000000002,18.119214,246
2017-12-12 05:12,-6.5,15.65858,20.579848,235
2017-12-12 05:14,-6.5,14.54011,22.816788,238
2017-12-12 05:16,-6.6,14.092722,23.48787,233
2017-12-12 05:18,-6.5,14.54011,21.25093,238
2017-12-12 05:20,-6.6,17.224438000000003,26.395892000000003,227
2017-12-12 05:22,-6.6,16.553356,22.816788,238
2017-12-12 05:24,-6.6,13.869028000000002,18.790296,239
2017-12-12 05:26,-6.7,12.079476000000001,19.908766000000004,234
2017-12-12 05:28,-6.7,16.329662,19.461378,238
2017-12-12 05:30,-6.8,15.882274,20.803542000000004,235
2017-12-12 05:32,-6.8,14.987498000000002,22.369400000000002,231
2017-12-12 05:34,-6.8,14.54011,17.671826000000003,235
2017-12-12 05:36,-6.7,14.316416000000002,18.790296,243
2017-12-12 05:38,-6.7,11.408394,14.316416000000002,242
2017-12-12 05:40,-6.7,12.750558000000002,17.89552,235
2017-12-12 05:42,-6.7,12.750558000000002,15.882274,235
2017-12-12 05:44,-6.8,12.303170000000001,16.105968,233
2017-12-12 05:46,-6.8,10.066230000000001,13.645334,232
2017-12-12 05:48,-6.6,10.961006000000001,14.54011,233
2017-12-12 05:50,-6.8,13.197946000000002,17.89552,237
2017-12-12 05:52,-6.7,10.961006000000001,15.211192,235
2017-12-12 05:54,-6.7,12.079476000000001,17.671826000000003,229
2017-12-12 05:56,-6.8,11.408394,14.987498000000002,227
2017-12-12 05:58,-6.9,12.750558000000002,17.448132,224
2017-12-12 06:00,-6.9,12.079476000000001,14.54011,225
2017-12-12 06:02,-6.8,12.303170000000001,16.105968,235
2017-12-12 06:04,-6.8,12.079476000000001,16.329662,215
2017-12-12 06:06,-7,15.882274,20.803542000000004,220
2017-12-12 06:08,-7,19.461378,24.158952000000003,222
2017-12-12 06:10,-6.9,16.777050000000003,24.158952000000003,228
2017-12-12 06:12,-7,14.092722,17.671826000000003,226
2017-12-12 06:14,-6.8,11.184700000000001,14.987498000000002,234
2017-12-12 06:16,-6.9,13.197946000000002,18.790296,220
2017-12-12 06:18,-7,14.763804,21.25093,226
2017-12-12 06:20,-7.1,15.882274,20.132460000000002,221
2017-12-12 06:22,-7,11.408394,15.434886000000002,230
2017-12-12 06:24,-7,14.54011,17.671826000000003,229
2017-12-12 06:26,-7.2,16.553356,21.698318,218
2017-12-12 06:28,-7.3,16.329662,22.593094,222
2017-12-12 06:30,-7.2,17.671826000000003,21.922012000000002,222
2017-12-12 06:32,-7.2,13.645334,21.474624000000002,226
2017-12-12 06:34,-7.2,16.553356,21.474624000000002,231
2017-12-12 06:36,-7.2,16.105968,21.698318,231
2017-12-12 06:38,-7.2,19.01399,25.501116000000003,224
2017-12-12 06:40,-7.2,15.211192,19.237684,230
2017-12-12 06:42,-7.2,13.645334,20.803542000000004,233
2017-12-12 06:44,-7.2,18.790296,23.040482000000004,233
2017-12-12 06:46,-7.2,15.434886000000002,19.461378,238
2017-12-12 06:48,-7.3,16.553356,21.25093,233
2017-12-12 06:50,-7.2,17.000744,22.816788,238
2017-12-12 06:52,-7.3,16.329662,20.803542000000004,241
2017-12-12 06:54,-7.3,14.092722,22.369400000000002,240
2017-12-12 06:56,-7.3,14.763804,21.027236000000002,237
2017-12-12 06:58,-7.3,18.790296,24.830034,226
2017-12-12 07:00,-7.4,17.224438000000003,21.698318,233
2017-12-12 07:02,-7.3,14.763804,17.224438000000003,225
2017-12-12 07:04,-7.3,13.42164,17.671826000000003,230
2017-12-12 07:06,-7.4,14.763804,22.593094,230
2017-12-12 07:08,-7.4,16.329662,20.579848,221
2017-12-12 07:10,-7.4,16.553356,19.461378,222
2017-12-12 07:12,-7.4,14.54011,19.908766000000004,228
2017-12-12 07:14,-7.4,14.54011,19.01399,232
2017-12-12 07:16,-7.3,12.079476000000001,19.461378,223
2017-12-12 07:18,-7.3,12.079476000000001,16.105968,225
2017-12-12 07:20,-7.4,16.329662,23.711564,228
2017-12-12 07:22,-7.3,12.303170000000001,16.777050000000003,230
2017-12-12 07:24,-7.3,13.197946000000002,17.89552,224
2017-12-12 07:26,-7.4,14.316416000000002,18.342908,228
2017-12-12 07:28,-7.4,16.105968,21.25093,237
2017-12-12 07:30,-7.4,14.316416000000002,17.224438000000003,237
2017-12-12 07:32,-7.4,17.000744,21.698318,237
2017-12-12 07:34,-7.4,13.869028000000002,20.356154,232
2017-12-12 07:36,-7.2,10.513618000000001,16.105968,243
2017-12-12 07:38,-7.4,15.434886000000002,19.461378,234
2017-12-12 07:40,-7.4,15.882274,19.685072,241
2017-12-12 07:42,-7.3,12.303170000000001,16.329662,233
2017-12-12 07:44,-7.2,11.184700000000001,15.211192,240
2017-12-12 07:46,-7.3,13.869028000000002,17.671826000000003,238
2017-12-12 07:48,-7.2,15.882274,19.685072,254
2017-12-12 07:50,-7.4,15.211192,18.342908,254
2017-12-12 07:52,-7.5,14.316416000000002,17.671826000000003,248
2017-12-12 07:54,-7.5,13.869028000000002,18.119214,247
2017-12-12 07:56,-7.5,11.632088000000001,15.882274,249
2017-12-12 07:58,-7.4,12.303170000000001,16.105968,247
2017-12-12 08:00,-7.4,11.408394,17.671826000000003,245
2017-12-12 08:02,-7.4,14.092722,17.000744,251
2017-12-12 08:04,-7.4,13.645334,15.65858,246
2017-12-12 08:06,-7.4,10.737312000000001,13.645334,242
2017-12-12 08:08,-7.3,9.618842,11.855782,245
2017-12-12 08:10,-7.4,12.974252,16.553356,221
2017-12-12 08:12,-7.5,12.750558000000002,15.434886000000002,221
2017-12-12 08:14,-7.5,14.54011,20.356154,231
2017-12-12 08:16,-7.3,12.303170000000001,17.224438000000003,228
2017-12-12 08:18,-7.4,9.842536,12.079476000000001,225
2017-12-12 08:20,-7.7,14.763804,19.01399,205
2017-12-12 08:22,-8,16.329662,20.579848,206
2017-12-12 08:24,-8.1,15.434886000000002,20.803542000000004,204
2017-12-12 08:26,-8.1,13.645334,17.224438000000003,203
2017-12-12 08:28,-8.1,12.750558000000002,15.65858,211
2017-12-12 08:30,-8.2,16.105968,19.01399,211
2017-12-12 08:32,-8.2,14.987498000000002,18.342908,204
2017-12-12 08:34,-8.1,14.092722,17.89552,224
2017-12-12 08:36,-8,12.750558000000002,15.65858,217
2017-12-12 08:38,-8.1,11.855782,15.882274,214
2017-12-12 08:40,-7.9,12.750558000000002,16.777050000000003,204
2017-12-12 08:42,-8,14.54011,18.119214,220
2017-12-12 08:44,-8.1,12.750558000000002,17.89552,223
2017-12-12 08:46,-7.9,10.066230000000001,12.079476000000001,213
2017-12-12 08:48,-8.1,14.763804,19.685072,226
2017-12-12 08:50,-8,13.869028000000002,19.01399,217
2017-12-12 08:52,-8,10.737312000000001,15.434886000000002,209
2017-12-12 08:54,-7.9,12.750558000000002,17.448132,216
2017-12-12 08:56,-7.9,10.513618000000001,13.197946000000002,215
2017-12-12 08:58,-8,14.316416000000002,20.803542000000004,208
2017-12-12 09:00,-8,13.645334,17.224438000000003,224
2017-12-12 09:02,-7.9,13.869028000000002,19.685072,226
2017-12-12 09:04,-7.9,11.184700000000001,16.105968,223
2017-12-12 09:06,-7.9,15.211192,23.48787,210
2017-12-12 09:08,-8,12.303170000000001,19.685072,223
2017-12-12 09:10,-8.2,16.553356,21.922012000000002,213
2017-12-12 09:12,-8.2,18.119214,21.922012000000002,218
2017-12-12 09:14,-8.1,13.869028000000002,19.01399,224
2017-12-12 09:16,-8,12.526864,19.685072,222
2017-12-12 09:18,-8,14.092722,19.461378,213
2017-12-12 09:20,-8.1,16.105968,20.356154,216
2017-12-12 09:22,-8.2,13.869028000000002,19.461378,215
2017-12-12 09:24,-8.1,14.54011,20.356154,222
2017-12-12 09:26,-8,12.750558000000002,17.224438000000003,210
2017-12-12 09:28,-7.9,17.448132,20.579848,208
2017-12-12 09:30,-8.1,17.671826000000003,22.145706,214
2017-12-12 09:32,-7.8,14.092722,18.790296,228
2017-12-12 09:34,-7.8,15.882274,19.461378,225
2017-12-12 09:36,-7.8,13.869028000000002,19.237684,222
2017-12-12 09:38,-7.8,12.974252,17.89552,222
2017-12-12 09:40,-7.9,13.197946000000002,16.553356,204
2017-12-12 09:42,-7.9,13.42164,19.01399,212
2017-12-12 09:44,-7.7,12.750558000000002,22.369400000000002,232
2017-12-12 09:46,-7.8,14.092722,20.356154,226
2017-12-12 09:48,-7.5,13.645334,17.671826000000003,229
2017-12-12 09:50,-7.7,14.987498000000002,20.803542000000004,228
2017-12-12 09:52,-7.7,14.763804,18.566602000000003,214
2017-12-12 09:54,-7.7,16.329662,20.803542000000004,215
2017-12-12 09:56,-8,15.434886000000002,19.461378,222
2017-12-12 09:58,-7.9,12.526864,16.553356,222
2017-12-12 10:00,-7.8,16.105968,20.356154,228
2017-12-12 10:02,-7.9,14.987498000000002,20.132460000000002,225
2017-12-12 10:04,-7.9,14.316416000000002,17.448132,220
2017-12-12 10:06,-7.6,13.197946000000002,19.908766000000004,222
2017-12-12 10:08,-7.7,14.316416000000002,17.224438000000003,210
2017-12-12 10:10,-7.8,16.553356,19.01399,220
2017-12-12 10:12,-7.9,15.211192,19.685072,228
2017-12-12 10:14,-7.7,13.645334,16.329662,228
2017-12-12 10:16,-7.8,15.65858,19.908766000000004,227
2017-12-12 10:18,-7.6,11.855782,17.000744,222
2017-12-12 10:20,-7.6,17.89552,25.501116000000003,208
2017-12-12 10:22,-7.9,17.671826000000003,20.579848,210
2017-12-12 10:24,-7.9,17.448132,21.027236000000002,214
2017-12-12 10:26,-8,16.777050000000003,21.027236000000002,210
2017-12-12 10:28,-7.8,14.316416000000002,17.448132,213
2017-12-12 10:30,-7.9,13.42164,17.000744,217
2017-12-12 10:32,-7.9,11.855782,14.316416000000002,226
2017-12-12 10:34,-7.8,13.645334,18.119214,226
2017-12-12 10:36,-7.7,10.961006000000001,15.211192,218
2017-12-12 10:38,-7.8,16.105968,19.237684,216
2017-12-12 10:40,-7.8,15.211192,19.908766000000004,227
2017-12-12 10:42,-7.7,13.42164,17.000744,228
2017-12-12 10:44,-7.5,13.197946000000002,20.356154,210
2017-12-12 10:46,-7.6,14.316416000000002,20.579848,212
2017-12-12 10:48,-7.6,14.987498000000002,19.908766000000004,207
2017-12-12 10:50,-7.6,11.855782,14.54011,221
2017-12-12 10:52,-7.6,14.54011,18.566602000000003,213
2017-12-12 10:54,-7.6,11.632088000000001,13.869028000000002,208
2017-12-12 10:56,-7.4,12.750558000000002,16.105968,213
2017-12-12 10:58,-7.5,13.869028000000002,17.000744,212
2017-12-12 11:00,-7.6,14.54011,17.448132,204
2017-12-12 11:02,-7.6,15.65858,19.01399,212
2017-12-12 11:04,-7.6,13.42164,18.119214,216
2017-12-12 11:06,-7.6,14.763804,20.356154,214
2017-12-12 11:08,-7.6,10.961006000000001,15.211192,221
2017-12-12 11:10,-7.4,14.763804,18.790296,223
2017-12-12 11:12,-7.5,12.303170000000001,14.987498000000002,230
2017-12-12 11:14,-7.4,15.65858,22.145706,231
2017-12-12 11:16,-7.5,15.434886000000002,18.342908,232
2017-12-12 11:18,-7.6,13.645334,16.329662,218
2017-12-12 11:20,-7.6,13.645334,19.01399,224
2017-12-12 11:22,-7.5,10.737312000000001,17.89552,235
2017-12-12 11:24,-7.5,12.303170000000001,15.434886000000002,233
2017-12-12 11:26,-7.5,10.961006000000001,13.42164,225
2017-12-12 11:28,-7.3,9.171454,11.855782,216
2017-12-12 11:30,-7.4,15.65858,20.579848,218
2017-12-12 11:32,-7.3,10.289924,14.092722,220
2017-12-12 11:34,-7,12.526864,16.777050000000003,224
2017-12-12 11:36,-7.3,12.526864,16.105968,214
2017-12-12 11:38,-7.2,12.974252,16.105968,219
2017-12-12 11:40,-7.2,13.645334,16.329662,205
2017-12-12 11:42,-7.2,13.869028000000002,16.553356,224
2017-12-12 11:44,-7.3,12.303170000000001,14.54011,226
2017-12-12 11:46,-7.4,17.448132,23.935258,221
2017-12-12 11:48,-7.5,13.42164,16.553356,213
2017-12-12 11:50,-7.5,12.750558000000002,15.65858,214
2017-12-12 11:52,-7.4,9.395148,11.632088000000001,214
2017-12-12 11:54,-7.4,17.89552,20.579848,215
2017-12-12 11:56,-7.4,13.645334,20.579848,233
2017-12-12 11:58,-7.2,11.855782,16.553356,232
2017-12-12 12:00,-7.2,9.618842,11.632088000000001,224
2017-12-12 12:02,-7.2,13.197946000000002,18.566602000000003,211
2017-12-12 12:04,-7.2,15.434886000000002,18.342908,200
2017-12-12 12:06,-7.2,14.987498000000002,18.790296,196
2017-12-12 12:08,-7.2,12.303170000000001,18.119214,214
2017-12-12 12:10,-7,9.171454,11.855782,225
2017-12-12 12:12,-6.8,12.303170000000001,18.342908,200
2017-12-12 12:14,-7.1,15.882274,19.237684,211
2017-12-12 12:16,-7.4,17.448132,20.803542000000004,206
2017-12-12 12:18,-7.6,18.790296,22.816788,209
2017-12-12 12:20,-7.6,16.553356,19.685072,207
2017-12-12 12:22,-7.7,14.54011,18.342908,211
2017-12-12 12:24,-7.5,14.316416000000002,18.119214,200
2017-12-12 12:26,-7.4,14.54011,18.119214,197
2017-12-12 12:28,-7.1,9.618842,13.869028000000002,226
2017-12-12 12:30,-7.1,14.092722,19.908766000000004,237
2017-12-12 12:32,-7.1,14.316416000000002,17.89552,222
2017-12-12 12:34,-7.2,13.645334,18.119214,209
2017-12-12 12:36,-7,11.632088000000001,16.553356,226
2017-12-12 12:38,-6.9,11.855782,15.65858,220
2017-12-12 12:40,-7,14.092722,18.566602000000003,235
2017-12-12 12:42,-7.2,15.65858,21.25093,206
2017-12-12 12:44,-7.4,17.448132,19.461378,209
2017-12-12 12:46,-7.4,15.65858,21.922012000000002,207
2017-12-12 12:48,-7.3,14.763804,19.461378,211
2017-12-12 12:50,-7.4,17.448132,21.474624000000002,211
2017-12-12 12:52,-7.4,11.184700000000001,14.987498000000002,214
2017-12-12 12:54,-7.2,14.316416000000002,19.461378,187
2017-12-12 12:56,-7.3,18.119214,22.145706,205
2017-12-12 12:58,-7.3,14.763804,18.119214,222
2017-12-12 13:00,-7.2,15.65858,19.908766000000004,224
2017-12-12 13:02,-7.3,16.553356,21.027236000000002,217
2017-12-12 13:04,-7.3,16.105968,19.461378,214
2017-12-12 13:06,-7.4,15.434886000000002,19.685072,218
2017-12-12 13:08,-7.3,12.750558000000002,19.461378,228
2017-12-12 13:10,-7.4,12.303170000000001,18.342908,223
2017-12-12 13:12,-7.1,11.408394,13.42164,211
2017-12-12 13:14,-7.2,18.566602000000003,23.711564,209
2017-12-12 13:16,-7.5,16.777050000000003,21.698318,213
2017-12-12 13:18,-7.4,14.092722,20.132460000000002,219
2017-12-12 13:20,-7.6,17.224438000000003,22.816788,209
2017-12-12 13:22,-7.5,14.092722,21.25093,211
2017-12-12 13:24,-7.5,16.105968,23.711564,205
2017-12-12 13:26,-7.5,14.763804,18.119214,222
2017-12-12 13:28,-7.4,14.092722,19.01399,224
2017-12-12 13:30,-7.5,14.54011,20.132460000000002,218
2017-12-12 13:32,-7.5,12.526864,19.685072,225
2017-12-12 13:34,-7.4,12.526864,16.329662,222
2017-12-12 13:36,-7.3,14.316416000000002,16.329662,204
2017-12-12 13:38,-7.3,12.079476000000001,15.882274,209
2017-12-12 13:40,-7.2,14.987498000000002,19.461378,202
2017-12-12 13:42,-7.1,12.750558000000002,17.448132,224
2017-12-12 13:44,-7.1,12.303170000000001,15.434886000000002,222
2017-12-12 13:46,-7.1,11.632088000000001,17.224438000000003,223
2017-12-12 13:48,-7.3,12.974252,19.908766000000004,227
2017-12-12 13:50,-7.3,14.316416000000002,16.329662,215
2017-12-12 13:52,-7.4,12.750558000000002,17.224438000000003,215
2017-12-12 13:54,-7.3,11.855782,15.211192,216
2017-12-12 13:56,-7.2,7.82929,10.513618000000001,215
2017-12-12 13:58,-7.1,13.42164,16.329662,225
2017-12-12 14:00,-7.2,12.750558000000002,16.553356,232
2017-12-12 14:02,-7.2,14.316416000000002,17.000744,235
2017-12-12 14:04,-7.1,11.184700000000001,14.763804,218
2017-12-12 14:06,-7.1,12.079476000000001,15.65858,216
2017-12-12 14:08,-7.3,15.434886000000002,18.119214,205
2017-12-12 14:10,-7.4,11.408394,14.987498000000002,210
2017-12-12 14:12,-7.3,11.408394,14.763804,223
2017-12-12 14:14,-7.2,14.316416000000002,17.448132,198
2017-12-12 14:16,-7.3,15.434886000000002,20.356154,192
2017-12-12 14:18,-7.3,15.211192,18.119214,199
2017-12-12 14:20,-7.4,17.224438000000003,20.803542000000004,193
2017-12-12 14:22,-7.5,14.763804,19.237684,200
2017-12-12 14:24,-7.5,14.092722,19.237684,211
2017-12-12 14:26,-7.4,13.42164,16.553356,207
2017-12-12 14:28,-7.5,12.079476000000001,16.777050000000003,211
2017-12-12 14:30,-7.3,11.408394,16.329662,202
2017-12-12 14:32,-7.2,17.000744,23.48787,199
2017-12-12 14:34,-7.3,14.54011,17.000744,190
2017-12-12 14:36,-7.2,15.434886000000002,20.356154,198
2017-12-12 14:38,-7.2,13.42164,16.105968,202
2017-12-12 14:40,-7.1,10.961006000000001,16.329662,203
2017-12-12 14:42,-7.2,11.184700000000001,15.882274,199
2017-12-12 14:44,-7.3,17.224438000000003,20.579848,202
2017-12-12 14:46,-7.3,15.65858,18.119214,197
2017-12-12 14:48,-7.3,14.316416000000002,18.790296,202
2017-12-12 14:50,-7.5,16.105968,18.790296,191
2017-12-12 14:52,-7.5,15.211192,19.237684,185
2017-12-12 14:54,-7.3,12.974252,16.553356,191
2017-12-12 14:56,-7.2,12.750558000000002,16.777050000000003,196
2017-12-12 14:58,-7.1,11.855782,17.000744,215
2017-12-12 15:00,-7.2,13.869028000000002,17.224438000000003,194
2017-12-12 15:02,-7.3,14.316416000000002,18.790296,205
2017-12-12 15:04,-7.3,15.211192,18.342908,216
2017-12-12 15:06,-7.3,12.079476000000001,16.329662,218
2017-12-12 15:08,-7.2,10.513618000000001,13.645334,223
2017-12-12 15:10,-7.2,11.632088000000001,15.882274,204
2017-12-12 15:12,-7.2,13.197946000000002,16.329662,194
2017-12-12 15:14,-7.2,14.092722,16.777050000000003,193
2017-12-12 15:16,-7.3,12.526864,14.092722,192
2017-12-12 15:18,-7.3,11.408394,13.197946000000002,204
2017-12-12 15:20,-7.2,10.289924,13.869028000000002,210
2017-12-12 15:22,-7.1,11.408394,14.54011,212
2017-12-12 15:24,-7.3,15.211192,18.790296,204
2017-12-12 15:26,-7.3,12.079476000000001,16.105968,207
2017-12-12 15:28,-7.4,14.54011,19.908766000000004,212
2017-12-12 15:30,-7.4,14.763804,18.342908,214
2017-12-12 15:32,-7.4,18.342908,22.593094,199
2017-12-12 15:34,-7.4,13.645334,18.566602000000003,211
2017-12-12 15:36,-7.3,13.42164,19.01399,211
2017-12-12 15:38,-7.4,15.434886000000002,19.461378,207
2017-12-12 15:40,-7.5,15.882274,18.566602000000003,217
2017-12-12 15:42,-7.4,14.763804,18.790296,205
2017-12-12 15:44,-7.5,14.987498000000002,18.566602000000003,201
2017-12-12 15:46,-7.4,12.303170000000001,16.329662,214
2017-12-12 15:48,-7.4,12.750558000000002,19.685072,212
2017-12-12 15:50,-7.5,14.987498000000002,22.369400000000002,211
2017-12-12 15:52,-7.6,16.329662,21.25093,210
2017-12-12 15:54,-7.7,16.329662,20.579848,206
2017-12-12 15:56,-7.6,13.869028000000002,19.237684,205
2017-12-12 15:58,-7.5,12.750558000000002,14.987498000000002,197
2017-12-12 16:00,-7.5,10.289924,14.316416000000002,196
2017-12-12 16:02,-7.5,12.079476000000001,14.54011,211
2017-12-12 16:04,-7.5,9.842536,13.869028000000002,211
2017-12-12 16:06,-7.6,14.54011,18.342908,213
2017-12-12 16:08,-7.6,12.079476000000001,16.105968,211
2017-12-12 16:10,-7.5,12.079476000000001,14.54011,206
2017-12-12 16:12,-7.5,9.842536,13.42164,205
2017-12-12 16:14,-7.4,10.737312000000001,12.526864,200
2017-12-12 16:16,-7.5,9.171454,12.750558000000002,203
2017-12-12 16:18,-7.5,9.842536,13.869028000000002,205
2017-12-12 16:20,-7.5,10.961006000000001,13.645334,208
2017-12-12 16:22,-7.5,10.961006000000001,16.777050000000003,215
2017-12-12 16:24,-7.5,12.974252,17.448132,206
2017-12-12 16:26,-7.6,13.42164,17.671826000000003,209
2017-12-12 16:28,-7.6,10.961006000000001,15.211192,208
2017-12-12 16:30,-7.6,11.184700000000001,14.092722,209
2017-12-12 16:32,-7.5,8.052984,12.974252,215
2017-12-12 16:34,-7.5,9.618842,11.184700000000001,203
2017-12-12 16:36,-7.5,8.94776,10.513618000000001,207
2017-12-12 16:38,-7.5,7.381902,10.289924,219
2017-12-12 16:40,-7.4,6.263432,8.052984,216
2017-12-12 16:42,-7.4,8.052984,10.289924,208
2017-12-12 16:44,-7.5,7.158208000000001,9.618842,209
2017-12-12 16:46,-7.5,8.052984,10.066230000000001,198
2017-12-12 16:48,-7.5,7.82929,11.184700000000001,206
2017-12-12 16:50,-7.5,6.71082,8.052984,197
2017-12-12 16:52,-7.4,6.71082,8.500372,198
2017-12-12 16:54,-7.5,8.276678,9.842536,199
2017-12-12 16:56,-7.6,7.381902,10.513618000000001,208
2017-12-12 16:58,-7.5,6.71082,7.605596,199
2017-12-12 17:00,-7.5,7.605596,9.842536,212
2017-12-12 17:02,-7.6,7.381902,8.724066,206
2017-12-12 17:04,-7.5,7.82929,9.842536,192
2017-12-12 17:06,-7.5,6.934514000000001,9.395148,205
2017-12-12 17:08,-7.5,6.487126,8.276678,199
2017-12-12 17:10,-7.5,7.381902,8.724066,202
2017-12-12 17:12,-7.5,8.052984,10.066230000000001,208
2017-12-12 17:14,-7.6,9.395148,10.961006000000001,209
2017-12-12 17:16,-7.6,8.500372,10.289924,218
2017-12-12 17:18,-7.6,7.605596,9.395148,214
2017-12-12 17:20,-7.5,6.263432,8.276678,204
2017-12-12 17:22,-7.5,6.487126,8.276678,193
2017-12-12 17:24,-7.4,6.934514000000001,8.94776,201
2017-12-12 17:26,-7.5,8.276678,10.066230000000001,185
2017-12-12 17:28,-7.5,7.158208000000001,9.171454,202
2017-12-12 17:30,-7.5,6.71082,8.052984,207
2017-12-12 17:32,-7.5,6.263432,7.82929,198
2017-12-12 17:34,-7.5,6.487126,8.500372,210
2017-12-12 17:36,-7.5,7.605596,9.618842,189
2017-12-12 17:38,-7.4,7.158208000000001,8.724066,201
2017-12-12 17:40,-7.5,7.381902,9.171454,202
2017-12-12 17:42,-7.5,8.500372,10.737312000000001,212
2017-12-12 17:44,-7.5,8.052984,10.513618000000001,209
2017-12-12 17:46,-7.5,8.724066,12.974252,208
2017-12-12 17:48,-7.5,9.842536,13.42164,197
2017-12-12 17:50,-7.5,10.066230000000001,13.197946000000002,206
2017-12-12 17:52,-7.3,8.724066,10.737312000000001,205
2017-12-12 17:54,-7.3,7.82929,9.842536,203
2017-12-12 17:56,-7.5,10.289924,14.316416000000002,200
2017-12-12 17:58,-7.6,12.526864,14.763804,201
2017-12-12 18:00,-7.6,9.842536,11.855782,208
2017-12-12 18:02,-7.5,10.066230000000001,13.869028000000002,209
2017-12-12 18:04,-7.5,10.961006000000001,12.974252,210
2017-12-12 18:06,-7.5,9.395148,11.632088000000001,212
2017-12-12 18:08,-7.5,9.618842,11.632088000000001,206
2017-12-12 18:10,-7.5,11.184700000000001,13.197946000000002,216
2017-12-12 18:12,-7.5,9.842536,13.42164,200
2017-12-12 18:14,-7.6,11.855782,13.42164,191
2017-12-12 18:16,-7.6,9.395148,12.750558000000002,206
2017-12-12 18:18,-7.5,9.395148,10.737312000000001,209
2017-12-12 18:20,-7.4,10.066230000000001,13.197946000000002,201
2017-12-12 18:22,-7.4,9.618842,12.750558000000002,209
2017-12-12 18:24,-7.5,10.961006000000001,14.987498000000002,217
2017-12-12 18:26,-7.5,10.066230000000001,12.526864,206
2017-12-12 18:28,-7.5,10.289924,12.303170000000001,197
2017-12-12 18:30,-7.4,8.724066,11.632088000000001,202
2017-12-12 18:32,-7.4,8.276678,10.066230000000001,202
2017-12-12 18:34,-7.5,10.513618000000001,14.092722,198
2017-12-12 18:36,-7.5,11.632088000000001,15.434886000000002,201
2017-12-12 18:38,-7.4,10.513618000000001,12.750558000000002,200
2017-12-12 18:40,-7.5,12.526864,14.316416000000002,205
2017-12-12 18:42,-7.6,9.395148,12.526864,200
2017-12-12 18:44,-7.6,9.842536,12.079476000000001,214
2017-12-12 18:46,-7.5,10.513618000000001,13.197946000000002,203
2017-12-12 18:48,-7.5,10.289924,12.079476000000001,207
2017-12-12 18:50,-7.4,9.171454,11.855782,209
2017-12-12 18:52,-7.5,9.395148,10.513618000000001,203
2017-12-12 18:54,-7.5,10.513618000000001,12.526864,202
2017-12-12 18:56,-7.5,9.171454,11.408394,195
2017-12-12 18:58,-7.4,9.842536,13.42164,208
2017-12-12 19:00,-7.5,8.276678,9.842536,209
2017-12-12 19:02,-7.3,8.276678,12.079476000000001,207
2017-12-12 19:04,-7.4,9.395148,12.079476000000001,206
2017-12-12 19:06,-7.4,9.395148,12.303170000000001,200
2017-12-12 19:08,-7.4,9.618842,14.763804,199
2017-12-12 19:10,-7.4,9.618842,13.645334,205
2017-12-12 19:12,-7.5,10.289924,11.855782,210
2017-12-12 19:14,-7.5,11.184700000000001,13.869028000000002,202
2017-12-12 19:16,-7.5,12.303170000000001,16.553356,207
2017-12-12 19:18,-7.5,12.303170000000001,15.882274,210
2017-12-12 19:20,-7.5,12.079476000000001,15.211192,211
2017-12-12 19:22,-7.5,10.961006000000001,13.197946000000002,210
2017-12-12 19:24,-7.5,10.737312000000001,15.882274,214
2017-12-12 19:26,-7.5,9.618842,14.092722,211
2017-12-12 19:28,-7.4,8.500372,12.526864,203
2017-12-12 19:30,-7.5,7.82929,10.737312000000001,205
2017-12-12 19:32,-7.4,6.263432,8.276678,208
2017-12-12 19:34,-7.4,6.263432,8.724066,217
2017-12-12 19:36,-7.4,8.724066,11.184700000000001,215
2017-12-12 19:38,-7.5,10.961006000000001,13.645334,214
2017-12-12 19:40,-7.4,10.513618000000001,13.645334,214
2017-12-12 19:42,-7.4,8.724066,11.184700000000001,218
2017-12-12 19:44,-7.2,7.605596,10.066230000000001,215
2017-12-12 19:46,-7.3,8.724066,10.513618000000001,217
2017-12-12 19:48,-7.3,8.276678,10.289924,206
2017-12-12 19:50,-7.3,9.842536,13.42164,221
2017-12-12 19:52,-7.3,9.618842,12.079476000000001,213
2017-12-12 19:54,-7.4,10.961006000000001,13.42164,209
2017-12-12 19:56,-7.4,9.395148,11.408394,206
2017-12-12 19:58,-7.4,9.618842,11.855782,203
2017-12-12 20:00,-7.3,8.052984,10.289924,211
2017-12-12 20:02,-7.3,7.82929,9.171454,206
2017-12-12 20:04,-7.3,7.82929,10.289924,212
2017-12-12 20:06,-7.3,9.395148,11.632088000000001,206
2017-12-12 20:08,-7.3,9.618842,11.855782,210
2017-12-12 20:10,-7.4,12.079476000000001,14.54011,215
2017-12-12 20:12,-7.3,10.513618000000001,13.869028000000002,209
2017-12-12 20:14,-7.3,10.066230000000001,12.303170000000001,212
2017-12-12 20:16,-7.4,11.408394,13.197946000000002,206
2017-12-12 20:18,-7.3,10.066230000000001,12.079476000000001,210
2017-12-12 20:20,-7.3,9.618842,11.632088000000001,210
2017-12-12 20:22,-7.4,10.737312000000001,13.42164,213
2017-12-12 20:24,-7.3,10.066230000000001,12.526864,203
2017-12-12 20:26,-7.3,11.408394,13.197946000000002,201
2017-12-12 20:28,-7.3,10.289924,11.855782,201
2017-12-12 20:30,-7.4,12.079476000000001,14.316416000000002,207
2017-12-12 20:32,-7.4,10.961006000000001,14.316416000000002,208
2017-12-12 20:34,-7.3,11.632088000000001,14.316416000000002,214
2017-12-12 20:36,-7.3,12.079476000000001,13.869028000000002,210
2017-12-12 20:38,-7.3,11.408394,16.553356,208
2017-12-12 20:40,-7.3,10.066230000000001,12.079476000000001,208
2017-12-12 20:42,-7.3,10.513618000000001,13.197946000000002,207
2017-12-12 20:44,-7.3,9.171454,10.737312000000001,202
2017-12-12 20:46,-7.3,9.171454,11.408394,199
2017-12-12 20:48,-7.2,8.500372,10.066230000000001,193
2017-12-12 20:50,-7.3,9.171454,12.526864,192
2017-12-12 20:52,-7.2,10.066230000000001,12.974252,194
2017-12-12 20:54,-7.3,9.171454,11.184700000000001,201
2017-12-12 20:56,-7.3,10.513618000000001,13.42164,215
2017-12-12 20:58,-7.3,10.737312000000001,12.526864,200
2017-12-12 21:00,-7.3,11.855782,13.869028000000002,202
2017-12-12 21:02,-7.3,10.961006000000001,13.869028000000002,204
2017-12-12 21:04,-7.3,10.066230000000001,11.855782,200
2017-12-12 21:06,-7.2,8.276678,10.066230000000001,193
2017-12-12 21:08,-7.1,8.500372,10.961006000000001,203
2017-12-12 21:10,-7.2,10.513618000000001,13.645334,196
2017-12-12 21:12,-7.3,9.618842,12.303170000000001,203
2017-12-12 21:14,-7.3,11.855782,13.42164,195
2017-12-12 21:16,-7.3,9.171454,12.079476000000001,204
2017-12-12 21:18,-7.2,8.724066,11.408394,206
2017-12-12 21:20,-7.2,8.276678,11.184700000000001,212
2017-12-12 21:22,-7.2,9.171454,12.079476000000001,205
2017-12-12 21:24,-7.2,9.395148,11.855782,196
2017-12-12 21:26,-7.1,9.618842,12.526864,192
2017-12-12 21:28,-7.1,9.171454,12.750558000000002,199
2017-12-12 21:30,-7.2,9.171454,12.079476000000001,193
2017-12-12 21:32,-7.2,8.500372,10.066230000000001,188
2017-12-12 21:34,-7.2,10.737312000000001,14.763804,187
2017-12-12 21:36,-7.2,8.94776,11.184700000000001,205
2017-12-12 21:38,-7.1,9.171454,11.408394,200
2017-12-12 21:40,-7.1,9.842536,12.303170000000001,198
2017-12-12 21:42,-7.2,10.066230000000001,12.974252,201
2017-12-12 21:44,-7.2,9.171454,12.079476000000001,204
2017-12-12 21:46,-7.2,7.605596,9.618842,197
2017-12-12 21:48,-7.2,7.381902,9.395148,182
2017-12-12 21:50,-7.2,6.263432,9.171454,190
2017-12-12 21:52,-7.1,8.500372,9.842536,181
2017-12-12 21:54,-7.2,6.263432,8.276678,186
2017-12-12 21:56,-7.2,7.381902,9.171454,190
2017-12-12 21:58,-7.1,8.276678,10.066230000000001,190
2017-12-12 22:00,-7,7.605596,9.618842,188
2017-12-12 22:02,-7.1,9.171454,10.737312000000001,205
2017-12-12 22:04,-7.1,6.487126,8.052984,213
2017-12-12 22:06,-7,6.934514000000001,8.052984,205
2017-12-12 22:08,-7,6.71082,8.500372,204
2017-12-12 22:10,-7,6.71082,8.276678,213
2017-12-12 22:12,-7,6.487126,7.605596,201
2017-12-12 22:14,-7,7.605596,9.171454,198
2017-12-12 22:16,-7,7.158208000000001,9.618842,190
2017-12-12 22:18,-7,7.381902,10.066230000000001,184
2017-12-12 22:20,-7.1,9.618842,10.289924,197
2017-12-12 22:22,-7.1,8.500372,9.618842,202
2017-12-12 22:24,-7,8.052984,9.842536,197
2017-12-12 22:26,-6.9,7.381902,9.171454,183
2017-12-12 22:28,-6.9,7.158208000000001,8.94776,178
2017-12-12 22:30,-7,7.82929,9.395148,196
2017-12-12 22:32,-7,6.039738000000001,7.381902,189
2017-12-12 22:34,-7,6.263432,7.381902,205
2017-12-12 22:36,-6.9,6.71082,7.82929,189
2017-12-12 22:38,-7,5.592350000000001,6.487126,191
2017-12-12 22:40,-7,7.605596,9.171454,180
2017-12-12 22:42,-7.1,8.052984,9.395148,192
2017-12-12 22:44,-7,7.381902,9.395148,191
2017-12-12 22:46,-7,6.71082,8.500372,192
2017-12-12 22:48,-7,7.381902,8.724066,188
2017-12-12 22:50,-7,6.71082,8.94776,186
2017-12-12 22:52,-6.9,6.934514000000001,8.724066,199
2017-12-12 22:54,-6.9,6.487126,7.82929,191
2017-12-12 22:56,-6.9,6.487126,8.94776,207
2017-12-12 22:58,-6.9,8.94776,10.513618000000001,200
2017-12-12 23:00,-7,8.724066,10.066230000000001,196
2017-12-12 23:02,-7,7.158208000000001,9.171454,197
2017-12-12 23:04,-7,6.039738000000001,8.276678,206
2017-12-12 23:06,-6.9,6.039738000000001,8.500372,202
2017-12-12 23:08,-6.9,6.934514000000001,8.724066,191
2017-12-12 23:10,-6.9,5.3686560000000005,6.934514000000001,206
2017-12-12 23:12,-6.9,6.039738000000001,6.934514000000001,216
2017-12-12 23:14,-6.8,6.71082,7.82929,201
2017-12-12 23:16,-6.8,6.039738000000001,7.158208000000001,215
2017-12-12 23:18,-6.8,5.592350000000001,7.158208000000001,212
2017-12-12 23:20,-6.8,4.697574,5.816044000000001,213
2017-12-12 23:22,-6.7,4.697574,6.487126,209
2017-12-12 23:24,-6.7,4.697574,6.039738000000001,197
2017-12-12 23:26,-6.7,3.35541,4.026492,181
2017-12-12 23:28,-6.7,3.35541,5.3686560000000005,184
2017-12-12 23:30,-6.7,4.697574,5.3686560000000005,203
2017-12-12 23:32,-6.7,4.921268,5.816044000000001,193
2017-12-12 23:34,-6.7,4.026492,5.592350000000001,200
2017-12-12 23:36,-6.7,5.144962,6.039738000000001,201
2017-12-12 23:38,-6.8,4.026492,5.3686560000000005,206
2017-12-12 23:40,-6.7,4.026492,4.697574,189
2017-12-12 23:42,-6.7,4.250186,5.144962,206
2017-12-12 23:44,-6.7,2.6843280000000003,3.5791040000000005,197
2017-12-12 23:46,-6.7,3.131716,4.697574,193
2017-12-12 23:48,-6.6,6.487126,8.500372,158
2017-12-12 23:50,-6.6,7.381902,9.171454,153
2017-12-12 23:52,-6.5,5.3686560000000005,6.487126,159
2017-12-12 23:54,-6.4,6.934514000000001,8.276678,150
2017-12-12 23:56,-6.5,6.039738000000001,7.605596,155
2017-12-12 23:58,-6.4,5.3686560000000005,6.71082,177
2017-12-13 00:00,-6.3,6.934514000000001,8.724066,148
2017-12-13 00:02,-6.4,6.263432,7.605596,147
2017-12-13 00:04,-6.4,5.3686560000000005,6.487126,168
2017-12-13 00:06,-6.4,5.816044000000001,6.934514000000001,176
2017-12-13 00:08,-6.4,4.250186,7.381902,161
2017-12-13 00:10,-6.4,7.605596,9.171454,146
2017-12-13 00:12,-6.3,7.158208000000001,8.500372,153
2017-12-13 00:14,-6.4,7.605596,9.618842,142
2017-12-13 00:16,-6.4,6.71082,8.276678,144
2017-12-13 00:18,-6.4,7.605596,10.289924,143
2017-12-13 00:20,-6.5,6.934514000000001,8.052984,140
2017-12-13 00:22,-6.4,6.263432,7.82929,125
2017-12-13 00:24,-6.4,6.039738000000001,7.381902,141
2017-12-13 00:26,-6.4,6.934514000000001,9.171454,136
2017-12-13 00:28,-6.3,8.500372,10.066230000000001,136
2017-12-13 00:30,-6.3,7.605596,9.395148,129
2017-12-13 00:32,-6.5,6.71082,7.605596,123
2017-12-13 00:34,-6.5,8.276678,9.395148,120
2017-12-13 00:36,-6.5,7.605596,8.94776,135
2017-12-13 00:38,-6.5,6.487126,8.276678,137
2017-12-13 00:40,-6.5,6.039738000000001,7.381902,137
2017-12-13 00:42,-6.5,6.263432,7.158208000000001,135
2017-12-13 00:44,-6.5,6.263432,8.276678,134
2017-12-13 00:46,-6.6,5.144962,6.934514000000001,125
2017-12-13 00:48,-6.6,5.592350000000001,7.381902,132
2017-12-13 00:50,-6.5,5.816044000000001,7.605596,136
2017-12-13 00:52,-6.6,6.71082,8.052984,140
2017-12-13 00:54,-6.5,6.71082,8.500372,130
2017-12-13 00:56,-6.5,7.158208000000001,8.276678,132
2017-12-13 00:58,-6.6,6.934514000000001,8.500372,124
2017-12-13 01:00,-6.6,7.605596,10.289924,129
2017-12-13 01:02,-6.6,7.605596,9.618842,131
2017-12-13 01:04,-6.6,7.82929,9.842536,132
2017-12-13 01:06,-6.6,6.934514000000001,8.276678,129
2017-12-13 01:08,-6.6,7.605596,9.171454,138
2017-12-13 01:10,-6.5,5.816044000000001,7.605596,125
2017-12-13 01:12,-6.3,6.71082,9.395148,114
2017-12-13 01:14,-6.4,8.276678,10.737312000000001,123
2017-12-13 01:16,-6.5,6.71082,8.276678,109
2017-12-13 01:18,-6.4,8.052984,9.842536,112
2017-12-13 01:20,-6.5,6.934514000000001,8.94776,104
2017-12-13 01:22,-6.5,7.82929,9.171454,101
2017-12-13 01:24,-6.5,6.039738000000001,7.605596,105
2017-12-13 01:26,-6.5,6.487126,7.605596,109
2017-12-13 01:28,-6.5,7.605596,9.171454,105
2017-12-13 01:30,-6.5,6.487126,7.82929,107
2017-12-13 01:32,-6.4,7.158208000000001,9.171454,113
2017-12-13 01:34,-6.5,6.934514000000001,9.842536,116
2017-12-13 01:36,-6.5,8.052984,9.171454,122
2017-12-13 01:38,-6.5,7.158208000000001,9.171454,112
2017-12-13 01:40,-6.4,8.276678,9.842536,114
2017-12-13 01:42,-6.4,7.605596,10.066230000000001,120
2017-12-13 01:44,-6.4,7.381902,8.052984,121
2017-12-13 01:46,-6.3,7.381902,8.94776,110
2017-12-13 01:48,-6.4,7.158208000000001,9.618842,107
2017-12-13 01:50,-6.4,8.052984,9.842536,94
2017-12-13 01:52,-6.4,8.052984,9.395148,96
2017-12-13 01:54,-6.4,7.381902,8.276678,104
2017-12-13 01:56,-6.4,8.276678,9.842536,99
2017-12-13 01:58,-6.4,6.71082,7.605596,100
2017-12-13 02:00,-6.3,7.158208000000001,9.618842,94
2017-12-13 02:02,-6.2,6.934514000000001,8.500372,97
2017-12-13 02:04,-6.2,8.276678,10.066230000000001,94
2017-12-13 02:06,-6.3,6.934514000000001,8.276678,99
2017-12-13 02:08,-6.3,6.263432,9.171454,101
2017-12-13 02:10,-6.3,8.052984,9.618842,88
2017-12-13 02:12,-6.3,8.276678,9.395148,98
2017-12-13 02:14,-6.4,8.276678,9.842536,105
2017-12-13 02:16,-6.3,8.500372,10.289924,105
2017-12-13 02:18,-6.2,9.618842,11.408394,109
2017-12-13 02:20,-6.2,9.395148,10.737312000000001,107
2017-12-13 02:22,-6.2,8.94776,9.842536,113
2017-12-13 02:24,-6.2,9.618842,11.184700000000001,105
2017-12-13 02:26,-6.2,9.171454,10.289924,103
2017-12-13 02:28,-6.2,9.395148,10.737312000000001,104
2017-12-13 02:30,-6.2,10.289924,11.184700000000001,108
2017-12-13 02:32,-6.2,10.289924,11.855782,106
2017-12-13 02:34,-6.1,9.842536,10.961006000000001,109
2017-12-13 02:36,-6.1,9.842536,10.961006000000001,108
2017-12-13 02:38,-6.1,10.066230000000001,11.184700000000001,106
2017-12-13 02:40,-6.1,9.842536,12.079476000000001,103
2017-12-13 02:42,-6.2,10.513618000000001,12.079476000000001,108
2017-12-13 02:44,-6.1,9.395148,11.408394,106
2017-12-13 02:46,-6,9.842536,11.408394,100
2017-12-13 02:48,-6,10.066230000000001,12.079476000000001,94
2017-12-13 02:50,-6,10.737312000000001,11.632088000000001,95
2017-12-13 02:52,-6,11.184700000000001,12.303170000000001,99
2017-12-13 02:54,-6,11.184700000000001,12.526864,96
2017-12-13 02:56,-5.9,10.513618000000001,12.079476000000001,93
2017-12-13 02:58,-5.8,10.737312000000001,11.855782,89
2017-12-13 03:00,-5.8,12.079476000000001,13.197946000000002,95
2017-12-13 03:02,-5.7,10.961006000000001,13.197946000000002,98
2017-12-13 03:04,-5.7,11.632088000000001,12.974252,92
2017-12-13 03:06,-5.7,11.855782,12.974252,94
2017-12-13 03:08,-5.7,12.303170000000001,14.316416000000002,92
2017-12-13 03:10,-5.7,11.855782,13.197946000000002,94
2017-12-13 03:12,-5.6,11.632088000000001,12.526864,94
2017-12-13 03:14,-5.6,11.855782,14.54011,91
2017-12-13 03:16,-5.5,10.961006000000001,12.079476000000001,88
2017-12-13 03:18,-5.5,12.079476000000001,13.869028000000002,82
2017-12-13 03:20,-5.5,12.526864,13.42164,88
2017-12-13 03:22,-5.5,12.526864,14.316416000000002,89
2017-12-13 03:24,-5.4,12.750558000000002,13.869028000000002,88
2017-12-13 03:26,-5.4,14.092722,15.882274,82
2017-12-13 03:28,-5.4,13.645334,15.434886000000002,78
2017-12-13 03:30,-5.4,14.763804,16.329662,81
2017-12-13 03:32,-5.3,13.645334,16.553356,82
2017-12-13 03:34,-5.2,15.211192,17.000744,86
2017-12-13 03:36,-5.2,14.092722,16.105968,80
2017-12-13 03:38,-5.2,13.645334,15.211192,89
2017-12-13 03:40,-5.1,13.197946000000002,15.211192,83
2017-12-13 03:42,-5,14.987498000000002,16.777050000000003,73
2017-12-13 03:44,-5.1,16.553356,18.342908,74
2017-12-13 03:46,-4.9,14.763804,16.777050000000003,78
2017-12-13 03:48,-5,15.434886000000002,18.342908,82
2017-12-13 03:50,-5.2,16.105968,18.119214,78
2017-12-13 03:52,-5.1,17.000744,19.237684,82
2017-12-13 03:54,-5.1,16.105968,17.224438000000003,87
2017-12-13 03:56,-4.9,15.434886000000002,17.89552,86
2017-12-13 03:58,-4.8,16.777050000000003,19.237684,74
2017-12-13 04:00,-4.8,16.105968,17.89552,78
2017-12-13 04:02,-4.8,15.882274,18.566602000000003,82
2017-12-13 04:04,-4.8,17.000744,18.566602000000003,82
2017-12-13 04:06,-4.8,15.65858,17.224438000000003,86
2017-12-13 04:08,-4.9,15.434886000000002,17.671826000000003,82
2017-12-13 04:10,-4.9,14.987498000000002,17.671826000000003,86
2017-12-13 04:12,-4.9,14.763804,17.89552,85
2017-12-13 04:14,-5,14.54011,16.553356,93
2017-12-13 04:16,-4.8,14.092722,16.329662,92
2017-12-13 04:18,-4.9,16.105968,18.566602000000003,95
2017-12-13 04:20,-4.9,14.54011,16.329662,94
2017-12-13 04:22,-4.8,15.211192,18.566602000000003,95
2017-12-13 04:24,-4.7,14.54011,18.342908,94
2017-12-13 04:26,-4.7,13.869028000000002,16.105968,104
2017-12-13 04:28,-4.7,13.42164,16.329662,100
2017-12-13 04:30,-4.8,14.763804,16.329662,91
2017-12-13 04:32,-4.7,13.869028000000002,16.777050000000003,93
2017-12-13 04:34,-4.8,12.974252,15.211192,92
2017-12-13 04:36,-4.8,13.197946000000002,15.882274,95
2017-12-13 04:38,-4.8,14.092722,15.65858,93
2017-12-13 04:40,-4.9,14.763804,16.777050000000003,90
2017-12-13 04:42,-4.8,13.42164,15.65858,96
2017-12-13 04:44,-4.9,13.42164,14.763804,97
2017-12-13 04:46,-4.8,10.961006000000001,13.197946000000002,97
2017-12-13 04:48,-4.6,13.197946000000002,16.329662,99
2017-12-13 04:50,-4.7,13.869028000000002,15.211192,102
2017-12-13 04:52,-4.8,13.869028000000002,15.882274,97
2017-12-13 04:54,-4.8,13.645334,15.65858,109
2017-12-13 04:56,-4.7,12.974252,15.211192,103
2017-12-13 04:58,-4.8,14.092722,17.000744,105
2017-12-13 05:00,-4.9,12.974252,17.224438000000003,99
2017-12-13 05:02,-4.8,13.645334,15.65858,103
2017-12-13 05:04,-4.7,14.54011,17.448132,92
2017-12-13 05:06,-4.7,14.092722,15.211192,94
2017-12-13 05:08,-4.7,15.65858,17.89552,95
2017-12-13 05:10,-4.7,15.882274,18.119214,99
2017-12-13 05:12,-4.7,14.316416000000002,16.553356,91
2017-12-13 05:14,-4.6,15.211192,17.89552,91
2017-12-13 05:16,-4.5,14.316416000000002,17.89552,90
2017-12-13 05:18,-4.6,14.763804,17.000744,87
2017-12-13 05:20,-4.5,15.434886000000002,18.119214,93
2017-12-13 05:22,-4.5,13.42164,16.105968,94
2017-12-13 05:24,-4.4,14.316416000000002,17.224438000000003,91
2017-12-13 05:26,-4.4,13.197946000000002,15.211192,101
2017-12-13 05:28,-4.6,14.092722,16.329662,108
2017-12-13 05:30,-4.6,14.54011,17.671826000000003,103
2017-12-13 05:32,-4.7,14.763804,16.777050000000003,103
2017-12-13 05:34,-4.7,13.645334,16.553356,104
2017-12-13 05:36,-4.6,14.54011,16.553356,105
2017-12-13 05:38,-4.5,15.65858,18.342908,92
2017-12-13 05:40,-4.5,16.105968,18.342908,93
2017-12-13 05:42,-4.7,16.329662,20.803542000000004,95
2017-12-13 05:44,-4.7,16.777050000000003,20.579848,101
2017-12-13 05:46,-4.5,17.448132,21.027236000000002,89
2017-12-13 05:48,-4.5,17.89552,21.027236000000002,92
2017-12-13 05:50,-4.4,17.671826000000003,20.356154,92
2017-12-13 05:52,-4.5,17.89552,19.685072,90
2017-12-13 05:54,-4.5,18.342908,21.922012000000002,95
2017-12-13 05:56,-4.5,17.89552,19.685072,94
2017-12-13 05:58,-4.4,18.119214,20.356154,96
2017-12-13 06:00,-4.3,18.119214,22.369400000000002,105
2017-12-13 06:02,-4.6,17.671826000000003,20.132460000000002,109
2017-12-13 06:04,-4.6,16.777050000000003,22.369400000000002,98
2017-12-13 06:06,-4.9,19.461378,22.593094,103
2017-12-13 06:08,-5,18.119214,23.040482000000004,106
2017-12-13 06:10,-5,18.342908,20.132460000000002,98
2017-12-13 06:12,-5.2,18.119214,20.803542000000004,98
2017-12-13 06:14,-5.3,17.89552,19.908766000000004,92
2017-12-13 06:16,-5.2,17.224438000000003,20.579848,97
2017-12-13 06:18,-5.3,18.119214,21.698318,97
2017-12-13 06:20,-5.3,19.01399,21.698318,95
2017-12-13 06:22,-5.4,17.224438000000003,20.803542000000004,98
2017-12-13 06:24,-5.3,16.553356,19.685072,100
2017-12-13 06:26,-5.4,17.448132,20.356154,102
2017-12-13 06:28,-5.3,17.000744,19.908766000000004,98
2017-12-13 06:30,-5.5,17.671826000000003,22.816788,98
2017-12-13 06:32,-5.4,17.000744,20.132460000000002,96
2017-12-13 06:34,-5.3,17.448132,19.908766000000004,92
2017-12-13 06:36,-5.4,19.237684,20.803542000000004,88
2017-12-13 06:38,-5.5,19.908766000000004,22.816788,93
2017-12-13 06:40,-5.4,17.224438000000003,19.461378,94
2017-12-13 06:42,-5.4,17.224438000000003,19.908766000000004,92
2017-12-13 06:44,-5.3,17.448132,21.027236000000002,96
2017-12-13 06:46,-5.2,18.566602000000003,21.25093,90
2017-12-13 06:48,-5.1,18.342908,21.027236000000002,96
2017-12-13 06:50,-5,19.01399,21.027236000000002,94
2017-12-13 06:52,-4.8,16.329662,19.685072,93
2017-12-13 06:54,-4.8,15.65858,18.342908,90
2017-12-13 06:56,-4.7,14.763804,17.448132,93
2017-12-13 06:58,-4.7,16.329662,19.908766000000004,92
2017-12-13 07:00,-4.7,15.211192,18.342908,94
2017-12-13 07:02,-4.8,17.448132,21.25093,94
2017-12-13 07:04,-4.8,16.329662,19.461378,96
2017-12-13 07:06,-4.6,14.987498000000002,17.000744,90
2017-12-13 07:08,-4.3,15.211192,17.448132,87
2017-12-13 07:10,-4.4,16.105968,18.342908,89
2017-12-13 07:12,-4.4,19.01399,22.145706,90
2017-12-13 07:14,-4.4,20.579848,25.72481,91
2017-12-13 07:16,-4.3,18.566602000000003,21.25093,88
2017-12-13 07:18,-4.1,18.119214,20.803542000000004,87
2017-12-13 07:20,-4.1,17.89552,19.685072,91
2017-12-13 07:22,-4.2,18.790296,21.698318,88
2017-12-13 07:24,-3.8,19.237684,22.369400000000002,85
2017-12-13 07:26,-3.9,19.908766000000004,23.935258,84
2017-12-13 07:28,-3.7,19.685072,21.25093,83
2017-12-13 07:30,-3.5,19.237684,21.027236000000002,82
2017-12-13 07:32,-3.5,19.461378,22.816788,85
2017-12-13 07:34,-3.4,20.356154,22.593094,85
2017-12-13 07:36,-3.2,21.25093,24.606340000000003,83
2017-12-13 07:38,-3.1,21.027236000000002,24.158952000000003,84
2017-12-13 07:40,-2.8,21.027236000000002,24.382646,81
2017-12-13 07:42,-2.8,21.474624000000002,26.172198,84
2017-12-13 07:44,-2.6,20.579848,23.711564,85
2017-12-13 07:46,-2.5,20.579848,22.816788,89
2017-12-13 07:48,-2.3,19.01399,21.922012000000002,92
2017-12-13 07:50,-2.3,18.790296,21.698318,94
2017-12-13 07:52,-2.3,16.777050000000003,19.237684,94
2017-12-13 07:54,-2.2,17.448132,21.698318,97
2017-12-13 07:56,-2.2,19.685072,21.474624000000002,96
2017-12-13 07:58,-2.1,18.566602000000003,23.264176000000003,92
2017-12-13 08:00,-2.2,21.027236000000002,25.053728,94
2017-12-13 08:02,-2.2,20.356154,25.053728,91
2017-12-13 08:04,-2,20.803542000000004,23.711564,88
2017-12-13 08:06,-2,18.119214,21.698318,90
2017-12-13 08:08,-2,19.01399,21.25093,95
2017-12-13 08:10,-2.2,17.448132,21.027236000000002,94
2017-12-13 08:12,-2.1,19.237684,21.698318,91
2017-12-13 08:14,-2.1,19.908766000000004,23.711564,84
2017-12-13 08:16,-2.1,20.132460000000002,24.382646,83
2017-12-13 08:18,-2.1,19.685072,23.935258,83
2017-12-13 08:20,-2.1,18.790296,21.027236000000002,84
2017-12-13 08:22,-2,17.89552,21.25093,82
2017-12-13 08:24,-2,21.474624000000002,23.48787,82
2017-12-13 08:26,-1.9,21.922012000000002,25.277422000000005,83
2017-12-13 08:28,-1.7,19.908766000000004,23.48787,85
2017-12-13 08:30,-1.6,19.685072,22.593094,86
2017-12-13 08:32,-1.6,22.816788,26.395892000000003,82
2017-12-13 08:34,-1.5,24.382646,27.290668,83
2017-12-13 08:36,-1.6,24.830034,27.290668,81
2017-12-13 08:38,-1.5,23.48787,27.738056000000004,83
2017-12-13 08:40,-1.5,21.698318,25.72481,87
2017-12-13 08:42,-1.4,23.264176000000003,27.066974000000002,79
2017-12-13 08:44,-1.4,21.922012000000002,26.84328,81
2017-12-13 08:46,-1.3,21.474624000000002,24.382646,79
2017-12-13 08:48,-1.4,23.040482000000004,27.066974000000002,80
2017-12-13 08:50,-1.3,24.606340000000003,28.632832000000004,75
2017-12-13 08:52,-1.2,20.803542000000004,23.48787,72
2017-12-13 08:54,-1,23.040482000000004,25.501116000000003,76
2017-12-13 08:56,-0.9,23.040482000000004,28.185444,80
2017-12-13 08:58,-1,23.711564,28.856526000000002,81
2017-12-13 09:00,-0.9,23.48787,28.632832000000004,79
2017-12-13 09:02,-0.7,21.474624000000002,26.172198,81
2017-12-13 09:04,-0.7,21.698318,24.830034,84
2017-12-13 09:06,-0.6,20.803542000000004,24.606340000000003,84
2017-12-13 09:08,-0.7,24.382646,26.84328,90
2017-12-13 09:10,-0.6,21.922012000000002,27.290668,91
2017-12-13 09:12,-0.5,19.908766000000004,24.158952000000003,91
2017-12-13 09:14,-0.6,17.671826000000003,21.027236000000002,94
2017-12-13 09:16,-0.6,20.356154,22.369400000000002,93
2017-12-13 09:18,-0.7,19.461378,22.816788,94
2017-12-13 09:20,-0.7,22.145706,24.830034,90
2017-12-13 09:22,-0.8,20.356154,23.48787,90
2017-12-13 09:24,-0.7,19.237684,22.593094,84
2017-12-13 09:26,-0.5,19.01399,22.369400000000002,89
2017-12-13 09:28,-0.5,19.01399,21.922012000000002,89
2017-12-13 09:30,-0.5,20.803542000000004,25.72481,88
2017-12-13 09:32,-0.6,18.566602000000003,21.698318,93
2017-12-13 09:34,-0.5,18.119214,21.698318,92
2017-12-13 09:36,-0.6,17.671826000000003,19.908766000000004,89
2017-12-13 09:38,-0.6,16.553356,18.790296,90
2017-12-13 09:40,-0.6,19.908766000000004,24.830034,89
2017-12-13 09:42,-0.5,19.908766000000004,24.606340000000003,86
2017-12-13 09:44,-0.6,18.566602000000003,21.922012000000002,96
2017-12-13 09:46,-0.5,17.224438000000003,21.25093,94
2017-12-13 09:48,-0.5,18.342908,20.803542000000004,90
2017-12-13 09:50,-0.5,17.671826000000003,19.461378,96
2017-12-13 09:52,-0.5,16.777050000000003,18.566602000000003,95
2017-12-13 09:54,-0.6,17.448132,19.685072,91
2017-12-13 09:56,-0.7,19.237684,21.922012000000002,96
2017-12-13 09:58,-0.7,18.566602000000003,21.922012000000002,94
2017-12-13 10:00,-0.6,15.434886000000002,17.89552,98
2017-12-13 10:02,-0.7,16.777050000000003,18.566602000000003,105
2017-12-13 10:04,-0.6,14.316416000000002,17.448132,97
2017-12-13 10:06,-0.6,15.65858,17.448132,94
2017-12-13 10:08,-0.7,15.65858,17.448132,94
2017-12-13 10:10,-0.7,13.197946000000002,16.105968,94
2017-12-13 10:12,-0.8,13.869028000000002,16.105968,98
2017-12-13 10:14,-0.8,15.434886000000002,18.566602000000003,103
2017-12-13 10:16,-0.8,14.763804,17.448132,94
2017-12-13 10:18,-0.7,14.092722,16.105968,97
2017-12-13 10:20,-0.7,14.987498000000002,17.448132,97
2017-12-13 10:22,-0.8,14.316416000000002,17.000744,101
2017-12-13 10:24,-0.7,12.526864,14.092722,95
2017-12-13 10:26,-0.7,12.750558000000002,14.54011,93
2017-12-13 10:28,-0.7,12.526864,14.092722,91
2017-12-13 10:30,-0.7,11.184700000000001,13.869028000000002,93
2017-12-13 10:32,-0.6,11.408394,12.974252,98
2017-12-13 10:34,-0.6,9.395148,11.632088000000001,100
2017-12-13 10:36,-0.6,11.632088000000001,14.763804,102
2017-12-13 10:38,-0.6,10.737312000000001,13.197946000000002,106
2017-12-13 10:40,-0.6,10.289924,12.974252,103
2017-12-13 10:42,-0.6,9.842536,11.408394,99
2017-12-13 10:44,-0.6,10.513618000000001,13.645334,103
2017-12-13 10:46,-0.6,9.618842,12.526864,92
2017-12-13 10:48,-0.6,11.632088000000001,13.197946000000002,88
2017-12-13 10:50,-0.6,12.079476000000001,13.42164,94
2017-12-13 10:52,-0.5,10.066230000000001,11.632088000000001,99
2017-12-13 10:54,-0.5,11.632088000000001,13.645334,99
2017-12-13 10:56,-0.5,10.737312000000001,12.526864,93
2017-12-13 10:58,-0.4,11.855782,14.54011,89
2017-12-13 11:00,-0.5,10.737312000000001,12.526864,91
2017-12-13 11:02,-0.4,10.066230000000001,13.197946000000002,86
2017-12-13 11:04,-0.5,11.408394,13.197946000000002,92
2017-12-13 11:06,-0.4,10.513618000000001,12.079476000000001,86
2017-12-13 11:08,-0.4,11.184700000000001,12.303170000000001,93
2017-12-13 11:10,-0.4,9.395148,12.750558000000002,93
2017-12-13 11:12,-0.4,8.94776,10.737312000000001,90
2017-12-13 11:14,-0.4,8.724066,10.961006000000001,85
2017-12-13 11:16,-0.4,10.961006000000001,12.750558000000002,90
2017-12-13 11:18,-0.4,8.94776,12.079476000000001,101
2017-12-13 11:20,-0.4,9.395148,10.513618000000001,89
2017-12-13 11:22,-0.4,9.171454,10.513618000000001,98
2017-12-13 11:24,-0.4,8.052984,10.289924,98
2017-12-13 11:26,-0.4,8.052984,9.395148,94
2017-12-13 11:28,-0.4,7.605596,9.171454,86
2017-12-13 11:30,-0.4,8.052984,8.94776,85
2017-12-13 11:32,-0.4,8.724066,10.066230000000001,93
2017-12-13 11:34,-0.4,7.82929,11.632088000000001,87
2017-12-13 11:36,-0.4,10.737312000000001,11.855782,83
2017-12-13 11:38,-0.4,8.500372,10.961006000000001,84
2017-12-13 11:40,-0.4,8.276678,9.842536,82
2017-12-13 11:42,-0.3,8.500372,10.961006000000001,78
2017-12-13 11:44,-0.3,8.94776,10.066230000000001,84
2017-12-13 11:46,-0.3,8.052984,8.94776,88
2017-12-13 11:48,-0.3,6.71082,8.276678,81
2017-12-13 11:50,-0.2,7.158208000000001,8.94776,83
2017-12-13 11:52,-0.2,6.71082,8.724066,81
2017-12-13 11:54,-0.2,8.724066,10.513618000000001,65
2017-12-13 11:56,-0.3,7.158208000000001,8.500372,67
2017-12-13 11:58,-0.2,7.82929,10.289924,86
2017-12-13 12:00,-0.2,6.934514000000001,8.052984,103
2017-12-13 12:02,-0.2,5.816044000000001,6.71082,110
2017-12-13 12:04,-0.1,5.816044000000001,8.052984,84
2017-12-13 12:06,-0.2,6.039738000000001,7.158208000000001,75
2017-12-13 12:08,-0.1,5.3686560000000005,6.039738000000001,79
2017-12-13 12:10,-0.1,4.921268,6.039738000000001,79
2017-12-13 12:12,-0.1,6.71082,7.82929,86
2017-12-13 12:14,-0.1,6.71082,8.052984,96
2017-12-13 12:16,-0.1,6.263432,8.500372,111
2017-12-13 12:18,-0.1,6.71082,9.171454,107
2017-12-13 12:20,-0.1,7.605596,9.395148,101
2017-12-13 12:22,-0.2,10.737312000000001,14.092722,90
2017-12-13 12:24,-0.2,11.184700000000001,13.197946000000002,92
2017-12-13 12:26,-0.2,9.395148,10.961006000000001,99
2017-12-13 12:28,-0.3,10.513618000000001,11.855782,110
2017-12-13 12:30,-0.2,11.408394,12.974252,115
2017-12-13 12:32,-0.2,9.618842,11.632088000000001,112
2017-12-13 12:34,-0.3,9.618842,13.869028000000002,107
2017-12-13 12:36,-0.3,8.724066,11.632088000000001,116
2017-12-13 12:38,-0.4,8.276678,10.961006000000001,129
2017-12-13 12:40,-0.4,8.500372,10.961006000000001,132
2017-12-13 12:42,-0.6,10.289924,11.408394,112
2017-12-13 12:44,-0.8,6.71082,8.94776,118
2017-12-13 12:46,-0.8,7.381902,8.724066,155
2017-12-13 12:48,-0.9,7.158208000000001,9.395148,160
2017-12-13 12:50,-1,8.276678,9.842536,157
2017-12-13 12:52,-1.2,8.724066,10.289924,155
2017-12-13 12:54,-1.3,8.500372,10.289924,121
2017-12-13 12:56,-1.4,8.052984,9.618842,150
2017-12-13 12:58,-1.5,5.816044000000001,6.71082,152
2017-12-13 13:00,-1.6,5.3686560000000005,6.487126,152
2017-12-13 13:02,-1.6,5.592350000000001,6.487126,142
2017-12-13 13:04,-1.6,4.47388,4.921268,159
2017-12-13 13:06,-1.6,5.144962,6.039738000000001,151
2017-12-13 13:08,-1.6,4.250186,5.592350000000001,160
2017-12-13 13:10,-1.6,2.6843280000000003,3.35541,181
2017-12-13 13:12,-1.6,2.013246,2.9080220000000003,191
2017-12-13 13:14,-1.6,2.013246,2.6843280000000003,217
2017-12-13 13:16,-1.6,2.6843280000000003,3.131716,214
2017-12-13 13:18,-1.6,1.7895520000000003,2.23694,207
2017-12-13 13:20,-1.5,1.3421640000000001,1.7895520000000003,196
2017-12-13 13:22,-1.5,1.7895520000000003,2.23694,204
2017-12-13 13:24,-1.5,1.7895520000000003,2.23694,214
2017-12-13 13:26,-1.5,2.23694,3.131716,215
2017-12-13 13:28,-1.6,2.460634,2.9080220000000003,223
2017-12-13 13:30,-1.6,1.7895520000000003,2.23694,222
2017-12-13 13:32,-1.5,1.565858,2.23694,201
2017-12-13 13:34,-1.5,2.013246,2.23694,215
2017-12-13 13:36,-1.5,2.460634,3.131716,244
2017-12-13 13:38,-1.5,2.23694,2.9080220000000003,245
2017-12-13 13:40,-1.5,2.23694,2.9080220000000003,247
2017-12-13 13:42,-1.5,2.9080220000000003,3.802798,245
2017-12-13 13:44,-1.5,3.131716,3.802798,259
2017-12-13 13:46,-1.6,3.131716,3.802798,258
2017-12-13 13:48,-1.6,3.35541,3.802798,259
2017-12-13 13:50,-1.6,2.6843280000000003,3.35541,246
2017-12-13 13:52,-1.5,3.131716,3.5791040000000005,252
2017-12-13 13:54,-1.6,3.35541,3.802798,256
2017-12-13 13:56,-1.6,4.026492,4.47388,255
2017-12-13 13:58,-1.6,4.026492,5.144962,245
2017-12-13 14:00,-1.6,4.026492,4.47388,240
2017-12-13 14:02,-1.6,4.47388,5.592350000000001,239
2017-12-13 14:04,-1.7,4.47388,5.144962,243
2017-12-13 14:06,-1.6,4.47388,5.3686560000000005,249
2017-12-13 14:08,-1.7,4.921268,5.3686560000000005,256
2017-12-13 14:10,-1.7,5.144962,5.816044000000001,250
2017-12-13 14:12,-1.7,4.697574,5.816044000000001,255
2017-12-13 14:14,-1.8,5.3686560000000005,6.487126,242
2017-12-13 14:16,-1.8,5.144962,6.487126,250
2017-12-13 14:18,-1.8,5.144962,5.816044000000001,247
2017-12-13 14:20,-1.7,4.026492,4.921268,237
2017-12-13 14:22,-1.7,4.47388,5.3686560000000005,251
2017-12-13 14:24,-1.7,4.47388,5.3686560000000005,256
2017-12-13 14:26,-1.7,4.697574,5.816044000000001,256
2017-12-13 14:28,-1.7,5.144962,5.816044000000001,255
2017-12-13 14:30,-1.7,5.144962,6.039738000000001,254
2017-12-13 14:32,-1.7,6.039738000000001,7.158208000000001,256
2017-12-13 14:34,-1.7,5.816044000000001,6.71082,243
2017-12-13 14:36,-1.7,6.039738000000001,8.052984,239
2017-12-13 14:38,-1.7,6.263432,8.052984,240
2017-12-13 14:40,-1.7,4.921268,7.381902,231
2017-12-13 14:42,-1.7,5.3686560000000005,6.71082,209
2017-12-13 14:44,-1.8,5.3686560000000005,7.158208000000001,216
2017-12-13 14:46,-1.8,7.381902,8.724066,219
2017-12-13 14:48,-1.8,6.71082,8.052984,220
2017-12-13 14:50,-1.8,6.039738000000001,9.395148,225
2017-12-13 14:52,-1.7,6.487126,9.171454,225
2017-12-13 14:54,-1.7,7.381902,9.171454,222
2017-12-13 14:56,-1.7,6.934514000000001,9.395148,228
2017-12-13 14:58,-1.7,6.71082,7.82929,218
2017-12-13 15:00,-1.7,5.816044000000001,6.71082,215
2017-12-13 15:02,-1.6,6.487126,9.395148,230
2017-12-13 15:04,-1.6,6.934514000000001,8.724066,219
2017-12-13 15:06,-1.6,8.276678,10.066230000000001,216
2017-12-13 15:08,-1.6,8.500372,10.961006000000001,217
2017-12-13 15:10,-1.5,7.381902,9.171454,223
2017-12-13 15:12,-1.5,6.487126,8.052984,226
2017-12-13 15:14,-1.5,6.263432,8.052984,221
2017-12-13 15:16,-1.5,9.395148,13.42164,221
2017-12-13 15:18,-1.6,8.94776,12.750558000000002,221
2017-12-13 15:20,-1.6,9.618842,11.632088000000001,226
2017-12-13 15:22,-1.6,9.395148,11.184700000000001,217
2017-12-13 15:24,-1.6,8.94776,11.632088000000001,224
2017-12-13 15:26,-1.7,10.737312000000001,12.974252,219
2017-12-13 15:28,-1.7,10.513618000000001,15.65858,225
2017-12-13 15:30,-1.7,12.079476000000001,16.329662,217
2017-12-13 15:32,-1.7,12.526864,14.54011,226
2017-12-13 15:34,-1.7,12.079476000000001,17.671826000000003,223
2017-12-13 15:36,-1.7,12.750558000000002,15.65858,217
2017-12-13 15:38,-1.7,13.42164,17.224438000000003,219
2017-12-13 15:40,-1.8,9.842536,12.526864,221
2017-12-13 15:42,-1.7,9.842536,13.42164,217
2017-12-13 15:44,-1.7,12.303170000000001,15.211192,225
2017-12-13 15:46,-1.7,11.632088000000001,14.763804,221
2017-12-13 15:48,-1.7,10.961006000000001,14.316416000000002,221
2017-12-13 15:50,-1.6,9.171454,11.632088000000001,227
2017-12-13 15:52,-1.6,9.395148,12.526864,221
2017-12-13 15:54,-1.7,12.750558000000002,17.000744,220
2017-12-13 15:56,-1.7,12.526864,16.329662,216
2017-12-13 15:58,-1.7,11.184700000000001,14.316416000000002,222
2017-12-13 16:00,-1.7,14.316416000000002,18.790296,218
2017-12-13 16:02,-1.8,14.316416000000002,17.448132,222
2017-12-13 16:04,-1.8,12.303170000000001,17.671826000000003,220
2017-12-13 16:06,-1.7,9.618842,11.632088000000001,223
2017-12-13 16:08,-1.8,14.987498000000002,21.698318,229
2017-12-13 16:10,-1.8,12.974252,18.566602000000003,226
2017-12-13 16:12,-1.8,9.842536,11.855782,224
2017-12-13 16:14,-1.9,13.869028000000002,18.790296,216
2017-12-13 16:16,-1.9,13.42164,18.566602000000003,218
2017-12-13 16:18,-2,16.553356,23.935258,223
2017-12-13 16:20,-2,15.65858,19.01399,222
2017-12-13 16:22,-2.1,18.790296,27.738056000000004,226
2017-12-13 16:24,-2.1,16.105968,21.027236000000002,219
2017-12-13 16:26,-2.2,15.65858,20.132460000000002,228
2017-12-13 16:28,-2.2,17.89552,21.922012000000002,223
2017-12-13 16:30,-2.2,14.316416000000002,19.01399,224
2017-12-13 16:32,-2.2,17.000744,23.935258,225
2017-12-13 16:34,-2.2,15.65858,21.027236000000002,225
2017-12-13 16:36,-2.2,13.42164,17.671826000000003,223
2017-12-13 16:38,-2.2,14.987498000000002,20.803542000000004,218
2017-12-13 16:40,-2.3,17.448132,21.474624000000002,223
2017-12-13 16:42,-2.3,17.671826000000003,24.382646,220
2017-12-13 16:44,-2.2,14.316416000000002,17.89552,226
2017-12-13 16:46,-2.3,15.211192,19.01399,221
2017-12-13 16:48,-2.3,12.526864,16.553356,219
2017-12-13 16:50,-2.3,14.54011,19.685072,221
2017-12-13 16:52,-2.3,12.750558000000002,17.224438000000003,227
2017-12-13 16:54,-2.2,11.632088000000001,15.65858,219
2017-12-13 16:56,-2.3,17.448132,23.935258,216
2017-12-13 16:58,-2.3,16.553356,21.922012000000002,220
2017-12-13 17:00,-2.3,14.763804,21.698318,221
2017-12-13 17:02,-2.2,10.737312000000001,13.42164,224
2017-12-13 17:04,-2.3,14.316416000000002,18.119214,221
2017-12-13 17:06,-2.4,14.54011,17.89552,219
2017-12-13 17:08,-2.3,14.54011,20.579848,219
2017-12-13 17:10,-2.4,18.566602000000003,23.264176000000003,215
2017-12-13 17:12,-2.4,17.448132,21.027236000000002,212
2017-12-13 17:14,-2.5,18.342908,21.698318,213
2017-12-13 17:16,-2.5,15.882274,19.908766000000004,218
2017-12-13 17:18,-2.5,17.000744,22.145706,221
2017-12-13 17:20,-2.5,14.54011,22.369400000000002,230
2017-12-13 17:22,-2.6,14.316416000000002,17.224438000000003,222
2017-12-13 17:24,-2.6,17.000744,22.593094,228
2017-12-13 17:26,-2.7,16.105968,21.474624000000002,229
2017-12-13 17:28,-2.7,15.211192,20.579848,228
2017-12-13 17:30,-2.7,12.974252,15.434886000000002,230
2017-12-13 17:32,-2.7,12.526864,14.987498000000002,226
2017-12-13 17:34,-2.7,12.526864,16.105968,230
2017-12-13 17:36,-2.7,13.197946000000002,17.000744,231
2017-12-13 17:38,-2.7,11.184700000000001,16.329662,231
2017-12-13 17:40,-2.7,12.079476000000001,16.777050000000003,224
2017-12-13 17:42,-2.7,14.092722,16.329662,224
2017-12-13 17:44,-2.7,10.961006000000001,12.750558000000002,229
2017-12-13 17:46,-2.7,11.855782,16.329662,235
2017-12-13 17:48,-2.6,12.526864,17.224438000000003,230
2017-12-13 17:50,-2.6,11.184700000000001,13.197946000000002,232
2017-12-13 17:52,-2.5,12.079476000000001,15.211192,236
2017-12-13 17:54,-2.4,12.526864,16.329662,247
2017-12-13 17:56,-2.3,14.092722,17.89552,255
2017-12-13 17:58,-2,20.579848,25.277422000000005,270
2017-12-13 18:00,-1.7,18.566602000000003,23.48787,281
2017-12-13 18:02,-1.7,20.132460000000002,25.501116000000003,281
2017-12-13 18:04,-1.8,23.935258,28.856526000000002,280
2017-12-13 18:06,-1.8,22.145706,26.84328,283
2017-12-13 18:08,-1.8,26.172198,32.211936,285
2017-12-13 18:10,-1.9,26.395892000000003,30.198690000000003,284
2017-12-13 18:12,-1.7,26.84328,34.67257,287
2017-12-13 18:14,-1.6,29.974996000000004,33.330406,289
2017-12-13 18:16,-1.6,26.172198,36.685816,287
2017-12-13 18:18,-1.7,27.738056000000004,33.777794,289
2017-12-13 18:20,-1.9,28.409138,36.462122,284
2017-12-13 18:22,-2,25.72481,32.883018,282
2017-12-13 18:24,-1.9,27.066974000000002,31.093466000000003,289
2017-12-13 18:26,-1.8,25.948504,31.988242000000003,273
2017-12-13 18:28,-1.8,22.369400000000002,26.395892000000003,282
2017-12-13 18:30,-1.7,25.053728,30.198690000000003,287
2017-12-13 18:32,-1.6,24.606340000000003,30.646078,282
2017-12-13 18:34,-1.7,25.501116000000003,31.988242000000003,285
2017-12-13 18:36,-1.6,22.593094,28.856526000000002,276
2017-12-13 18:38,-1.8,27.961750000000002,32.883018,278
2017-12-13 18:40,-1.8,25.053728,29.303914000000002,279
2017-12-13 18:42,-1.8,23.040482000000004,30.422384,275
2017-12-13 18:44,-1.8,26.172198,31.540854000000003,282
2017-12-13 18:46,-1.7,25.053728,29.08022,284
2017-12-13 18:48,-1.7,26.395892000000003,33.777794,279
2017-12-13 18:50,-1.7,26.619586,31.540854000000003,279
2017-12-13 18:52,-1.6,25.277422000000005,34.001488,280
2017-12-13 18:54,-1.5,24.830034,31.093466000000003,278
2017-12-13 18:56,-1.6,24.158952000000003,29.751302000000003,278
2017-12-13 18:58,-1.7,24.606340000000003,34.67257,280
2017-12-13 19:00,-1.7,25.053728,31.540854000000003,284
2017-12-13 19:02,-1.6,24.606340000000003,30.869772000000005,284
2017-12-13 19:04,-1.8,27.738056000000004,35.343652000000006,275
2017-12-13 19:06,-1.8,26.172198,33.330406,282
2017-12-13 19:08,-1.8,26.619586,31.764548,282
2017-12-13 19:10,-1.8,26.84328,31.764548,286
2017-12-13 19:12,-1.9,29.751302000000003,34.67257,282
2017-12-13 19:14,-1.9,26.84328,34.896264,270
2017-12-13 19:16,-1.9,27.514362000000002,33.106712,276
2017-12-13 19:18,-1.9,26.84328,32.883018,281
2017-12-13 19:20,-1.9,25.501116000000003,29.527608,284
2017-12-13 19:22,-1.9,27.290668,32.211936,286
2017-12-13 19:24,-1.9,26.395892000000003,30.646078,279
2017-12-13 19:26,-1.8,25.277422000000005,33.330406,288
2017-12-13 19:28,-1.8,26.84328,31.31716,287
2017-12-13 19:30,-1.8,25.948504,33.106712,288
2017-12-13 19:32,-1.8,23.935258,28.185444,276
2017-12-13 19:34,-1.8,24.830034,29.974996000000004,286
2017-12-13 19:36,-1.7,27.290668,37.356898,286
2017-12-13 19:38,-1.8,29.751302000000003,34.896264,287
2017-12-13 19:40,-1.9,27.514362000000002,31.093466000000003,280
2017-12-13 19:42,-2,26.395892000000003,31.764548,283
2017-12-13 19:44,-2,25.948504,31.764548,279
2017-12-13 19:46,-2,24.382646,32.659324,281
2017-12-13 19:48,-1.9,27.290668,32.211936,290
2017-12-13 19:50,-1.9,26.84328,32.659324,283
2017-12-13 19:52,-2,23.48787,31.540854000000003,276
2017-12-13 19:54,-1.9,24.158952000000003,29.303914000000002,280
2017-12-13 19:56,-2,26.395892000000003,33.330406,272
2017-12-13 19:58,-2,21.027236000000002,25.053728,269
2017-12-13 20:00,-1.8,24.158952000000003,30.646078,282
2017-12-13 20:02,-1.8,27.066974000000002,32.211936,286
2017-12-13 20:04,-1.8,22.593094,31.093466000000003,281
2017-12-13 20:06,-2,29.08022,34.225182000000004,273
2017-12-13 20:08,-2,28.185444,36.685816,270
2017-12-13 20:10,-2,26.395892000000003,34.448876000000006,284
2017-12-13 20:12,-1.9,28.409138,33.330406,288
2017-12-13 20:14,-1.8,26.172198,33.330406,275
2017-12-13 20:16,-2,27.738056000000004,33.330406,283
2017-12-13 20:18,-2,28.632832000000004,35.119958000000004,284
2017-12-13 20:20,-2.1,25.053728,28.409138,279
2017-12-13 20:22,-2.2,25.72481,29.751302000000003,280
2017-12-13 20:24,-2.2,27.290668,32.659324,284
2017-12-13 20:26,-2.1,27.290668,33.554100000000005,281
2017-12-13 20:28,-2,26.172198,32.659324,283
2017-12-13 20:30,-2.2,25.948504,30.869772000000005,286
2017-12-13 20:32,-2.2,26.172198,30.646078,275
2017-12-13 20:34,-2.1,25.277422000000005,32.211936,284
2017-12-13 20:36,-2.1,25.277422000000005,31.093466000000003,281
2017-12-13 20:38,-2.1,27.290668,36.014734000000004,279
2017-12-13 20:40,-2,29.08022,34.67257,287
2017-12-13 20:42,-2.1,29.527608,34.896264,286
2017-12-13 20:44,-2.1,28.185444,36.238428,286
2017-12-13 20:46,-2.2,23.48787,35.119958000000004,273
2017-12-13 20:48,-2.2,25.501116000000003,30.646078,278
2017-12-13 20:50,-2.1,25.277422000000005,30.422384,275
2017-12-13 20:52,-2.1,25.501116000000003,31.31716,272
2017-12-13 20:54,-2.1,27.066974000000002,30.646078,280
2017-12-13 20:56,-2.2,24.830034,31.540854000000003,283
2017-12-13 20:58,-2.1,25.053728,29.08022,286
2017-12-13 21:00,-2,29.751302000000003,34.448876000000006,286
2017-12-13 21:02,-2.1,26.395892000000003,29.303914000000002,287
2017-12-13 21:04,-2.1,27.290668,32.883018,282
2017-12-13 21:06,-2.1,23.040482000000004,28.409138,282
2017-12-13 21:08,-2.1,27.738056000000004,33.554100000000005,285
2017-12-13 21:10,-2.1,24.158952000000003,27.961750000000002,276
2017-12-13 21:12,-2.1,22.145706,26.619586,280
2017-12-13 21:14,-2,26.395892000000003,33.777794,288
2017-12-13 21:16,-2,27.290668,31.764548,295
2017-12-13 21:18,-2,22.593094,26.172198,280
2017-12-13 21:20,-2.1,23.264176000000003,33.777794,285
2017-12-13 21:22,-2,23.711564,29.527608,284
2017-12-13 21:24,-2,24.382646,29.974996000000004,285
2017-12-13 21:26,-1.8,25.501116000000003,31.540854000000003,286
2017-12-13 21:28,-2,25.948504,30.646078,288
2017-12-13 21:30,-2,27.961750000000002,34.896264,291
2017-12-13 21:32,-2.1,25.72481,30.646078,283
2017-12-13 21:34,-2.3,22.816788,26.84328,251
2017-12-13 21:36,-2.7,21.027236000000002,27.290668,275
2017-12-13 21:38,-3,16.777050000000003,20.356154,264
2017-12-13 21:40,-3.3,22.369400000000002,31.093466000000003,256
2017-12-13 21:42,-3.4,17.224438000000003,20.803542000000004,260
2017-12-13 21:44,-3.8,23.264176000000003,29.303914000000002,266
2017-12-13 21:46,-4,19.01399,23.935258,256
2017-12-13 21:48,-4,15.434886000000002,21.698318,243
2017-12-13 21:50,-4.1,20.579848,24.382646,255
2017-12-13 21:52,-4.2,23.935258,30.869772000000005,269
2017-12-13 21:54,-4.3,22.145706,28.409138,254
2017-12-13 21:56,-4.3,22.145706,26.619586,259
2017-12-13 21:58,-4.2,18.790296,22.145706,255
2017-12-13 22:00,-4.2,21.474624000000002,27.066974000000002,261
2017-12-13 22:02,-4.2,19.461378,23.711564,266
2017-12-13 22:04,-4.2,17.224438000000003,21.922012000000002,248
2017-12-13 22:06,-4.2,19.237684,25.72481,250
2017-12-13 22:08,-4.1,18.119214,21.474624000000002,251
2017-12-13 22:10,-4.2,17.448132,21.027236000000002,250
2017-12-13 22:12,-4.4,18.790296,22.145706,248
2017-12-13 22:14,-4.4,21.027236000000002,25.053728,256
2017-12-13 22:16,-4.5,19.01399,23.711564,252
2017-12-13 22:18,-4.4,17.671826000000003,24.158952000000003,249
2017-12-13 22:20,-4.5,19.461378,24.382646,251
2017-12-13 22:22,-4.6,17.671826000000003,21.027236000000002,251
2017-12-13 22:24,-4.6,16.777050000000003,19.237684,246
2017-12-13 22:26,-4.6,20.356154,24.382646,245
2017-12-13 22:28,-4.6,17.224438000000003,22.369400000000002,250
2017-12-13 22:30,-4.6,15.882274,20.579848,250
2017-12-13 22:32,-4.7,17.224438000000003,21.474624000000002,256
2017-12-13 22:34,-4.8,19.908766000000004,23.48787,256
2017-12-13 22:36,-4.8,16.777050000000003,20.132460000000002,256
2017-12-13 22:38,-4.8,18.119214,23.48787,251
2017-12-13 22:40,-4.7,19.685072,24.382646,248
2017-12-13 22:42,-4.9,25.501116000000003,30.646078,251
2017-12-13 22:44,-4.8,19.237684,24.382646,252
2017-12-13 22:46,-4.8,19.461378,25.501116000000003,255
2017-12-13 22:48,-4.8,17.224438000000003,22.145706,255
2017-12-13 22:50,-4.9,20.356154,24.606340000000003,254
2017-12-13 22:52,-5,17.448132,22.145706,240
2017-12-13 22:54,-5,17.000744,20.356154,251
2017-12-13 22:56,-5.2,19.01399,26.84328,248
2017-12-13 22:58,-5.3,21.25093,24.830034,247
2017-12-13 23:00,-5.3,18.566602000000003,21.922012000000002,250
2017-12-13 23:02,-5.3,18.119214,21.474624000000002,249
2017-12-13 23:04,-5.4,17.671826000000003,20.579848,249
2017-12-13 23:06,-5.5,17.000744,21.25093,255
2017-12-13 23:08,-5.5,17.671826000000003,21.698318,252
2017-12-13 23:10,-5.6,17.224438000000003,21.25093,248
2017-12-13 23:12,-5.7,19.01399,24.606340000000003,253
2017-12-13 23:14,-5.8,17.000744,21.922012000000002,250
2017-12-13 23:16,-5.7,18.566602000000003,21.922012000000002,244
2017-12-13 23:18,-5.7,15.65858,22.145706,248
2017-12-13 23:20,-5.8,17.224438000000003,21.922012000000002,241
2017-12-13 23:22,-5.9,15.65858,22.145706,239
2017-12-13 23:24,-5.8,13.42164,18.566602000000003,250
2017-12-13 23:26,-6,14.316416000000002,17.448132,247
2017-12-13 23:28,-6,14.54011,18.790296,247
2017-12-13 23:30,-6.2,17.224438000000003,21.698318,249
2017-12-13 23:32,-6.2,18.342908,21.027236000000002,247
2017-12-13 23:34,-6.2,16.553356,19.461378,248
2017-12-13 23:36,-6.3,17.000744,20.356154,250
2017-12-13 23:38,-6.3,17.448132,20.356154,244
2017-12-13 23:40,-6.4,17.000744,19.685072,242
2017-12-13 23:42,-6.4,16.553356,19.685072,245
2017-12-13 23:44,-6.5,18.119214,22.816788,247
2017-12-13 23:46,-6.5,14.763804,17.224438000000003,247
2017-12-13 23:48,-6.5,16.329662,19.685072,245
2017-12-13 23:50,-6.6,15.882274,17.671826000000003,252
2017-12-13 23:52,-6.6,12.526864,15.65858,242
2017-12-13 23:54,-6.6,12.303170000000001,15.65858,232
2017-12-13 23:56,-6.6,12.303170000000001,16.329662,233
2017-12-13 23:58,-6.6,12.303170000000001,16.553356,234
2017-12-14 00:00,-6.6,11.184700000000001,14.316416000000002,233
2017-12-14 00:02,-6.6,12.303170000000001,16.777050000000003,239
2017-12-14 00:04,-6.6,12.079476000000001,15.211192,236
2017-12-14 00:06,-6.7,12.079476000000001,17.89552,235
2017-12-14 00:08,-6.9,14.316416000000002,19.01399,244
2017-12-14 00:10,-6.8,11.855782,16.553356,231
2017-12-14 00:12,-6.8,11.184700000000001,14.763804,235
2017-12-14 00:14,-6.9,12.079476000000001,15.434886000000002,231
2017-12-14 00:16,-7,12.303170000000001,14.987498000000002,227
2017-12-14 00:18,-7,12.526864,16.329662,234
2017-12-14 00:20,-7.1,13.645334,19.685072,236
2017-12-14 00:22,-7.2,12.303170000000001,14.987498000000002,237
2017-12-14 00:24,-7.3,12.974252,17.000744,234
2017-12-14 00:26,-7.3,12.974252,18.566602000000003,241
2017-12-14 00:28,-7.3,14.763804,19.01399,244
2017-12-14 00:30,-7.3,13.869028000000002,20.132460000000002,246
2017-12-14 00:32,-7.3,13.645334,20.132460000000002,245
2017-12-14 00:34,-7.4,13.869028000000002,19.01399,240
2017-12-14 00:36,-7.4,18.566602000000003,24.606340000000003,246
2017-12-14 00:38,-7.3,17.224438000000003,21.698318,251
2017-12-14 00:40,-7.5,17.000744,20.803542000000004,247
2017-12-14 00:42,-7.4,17.89552,20.579848,244
2017-12-14 00:44,-7.5,17.448132,22.593094,245
2017-12-14 00:46,-7.5,17.000744,20.803542000000004,245
2017-12-14 00:48,-7.5,16.777050000000003,21.027236000000002,245
2017-12-14 00:50,-7.5,14.763804,20.356154,241
2017-12-14 00:52,-7.5,17.000744,21.474624000000002,243
2017-12-14 00:54,-7.4,15.65858,20.132460000000002,243
2017-12-14 00:56,-7.4,17.224438000000003,20.132460000000002,240
2017-12-14 00:58,-7.4,16.329662,19.461378,244
2017-12-14 01:00,-7.4,15.65858,22.593094,244
2017-12-14 01:02,-7.6,16.105968,21.027236000000002,240
2017-12-14 01:04,-7.5,12.526864,17.448132,242
2017-12-14 01:06,-7.7,13.197946000000002,16.105968,245
2017-12-14 01:08,-7.7,12.303170000000001,14.987498000000002,239
2017-12-14 01:10,-7.7,14.54011,17.89552,249
2017-12-14 01:12,-7.8,15.434886000000002,20.579848,248
2017-12-14 01:14,-7.8,13.645334,16.777050000000003,247
2017-12-14 01:16,-7.8,14.316416000000002,20.132460000000002,246
2017-12-14 01:18,-7.9,14.54011,18.119214,243
2017-12-14 01:20,-7.8,14.763804,17.89552,252
2017-12-14 01:22,-7.9,14.763804,18.790296,245
2017-12-14 01:24,-7.9,14.092722,17.89552,247
2017-12-14 01:26,-7.9,15.65858,18.790296,247
2017-12-14 01:28,-7.9,15.211192,19.461378,246
2017-12-14 01:30,-7.8,14.092722,18.342908,243
2017-12-14 01:32,-7.8,13.645334,15.882274,248
2017-12-14 01:34,-7.8,10.289924,13.42164,231
2017-12-14 01:36,-7.9,11.184700000000001,14.987498000000002,234
2017-12-14 01:38,-8,13.197946000000002,17.224438000000003,235
2017-12-14 01:40,-8,11.184700000000001,14.316416000000002,233
2017-12-14 01:42,-8,11.184700000000001,14.987498000000002,238
2017-12-14 01:44,-8,10.737312000000001,15.211192,233
2017-12-14 01:46,-8,11.184700000000001,16.105968,240
2017-12-14 01:48,-8.1,12.079476000000001,15.434886000000002,239
2017-12-14 01:50,-8.1,12.079476000000001,14.987498000000002,237
2017-12-14 01:52,-8.1,12.079476000000001,14.987498000000002,243
2017-12-14 01:54,-8.2,12.303170000000001,17.671826000000003,230
2017-12-14 01:56,-8.3,11.855782,16.777050000000003,241
2017-12-14 01:58,-8.3,12.974252,17.448132,238
2017-12-14 02:00,-8.3,11.855782,17.224438000000003,232
2017-12-14 02:02,-8.4,12.526864,17.224438000000003,237
2017-12-14 02:04,-8.3,12.079476000000001,16.553356,239
2017-12-14 02:06,-8.3,11.855782,17.224438000000003,240
2017-12-14 02:08,-8.4,11.855782,15.434886000000002,239
2017-12-14 02:10,-8.3,9.618842,13.42164,237
2017-12-14 02:12,-8.4,11.632088000000001,14.54011,228
2017-12-14 02:14,-8.6,9.842536,13.645334,228
2017-12-14 02:16,-8.6,9.618842,12.750558000000002,228
2017-12-14 02:18,-8.5,8.276678,10.066230000000001,228
2017-12-14 02:20,-8.6,10.066230000000001,11.632088000000001,221
2017-12-14 02:22,-8.7,9.395148,11.408394,225
2017-12-14 02:24,-8.7,7.605596,10.066230000000001,222
2017-12-14 02:26,-8.6,8.052984,12.079476000000001,228
2017-12-14 02:28,-8.6,8.94776,12.526864,230
2017-12-14 02:30,-8.5,8.052984,11.408394,236
2017-12-14 02:32,-8.6,10.289924,13.197946000000002,231
2017-12-14 02:34,-8.6,10.737312000000001,14.316416000000002,238
2017-12-14 02:36,-8.5,10.289924,12.974252,236
2017-12-14 02:38,-8.6,10.289924,12.750558000000002,237
2017-12-14 02:40,-8.6,9.171454,12.303170000000001,232
2017-12-14 02:42,-8.6,10.289924,13.645334,233
2017-12-14 02:44,-8.7,11.184700000000001,12.750558000000002,236
2017-12-14 02:46,-8.7,10.961006000000001,15.434886000000002,231
2017-12-14 02:48,-8.8,10.737312000000001,12.750558000000002,222
2017-12-14 02:50,-8.9,11.408394,14.763804,224
2017-12-14 02:52,-8.9,10.513618000000001,14.54011,223
2017-12-14 02:54,-8.9,10.961006000000001,13.645334,220
2017-12-14 02:56,-9,10.961006000000001,14.092722,220
2017-12-14 02:58,-9,11.408394,14.092722,221
2017-12-14 03:00,-9.1,12.303170000000001,14.763804,221
2017-12-14 03:02,-9.1,12.526864,16.105968,229
2017-12-14 03:04,-9,11.855782,16.329662,223
2017-12-14 03:06,-9.1,11.408394,14.54011,231
2017-12-14 03:08,-9,10.961006000000001,14.316416000000002,232
2017-12-14 03:10,-9,11.632088000000001,14.092722,228
2017-12-14 03:12,-9.1,12.526864,15.65858,233
2017-12-14 03:14,-9.1,13.197946000000002,16.329662,232
2017-12-14 03:16,-9,12.750558000000002,15.211192,233
2017-12-14 03:18,-9,12.303170000000001,15.65858,235
2017-12-14 03:20,-9.1,12.079476000000001,16.553356,233
2017-12-14 03:22,-9.1,12.526864,16.105968,231
2017-12-14 03:24,-9.2,12.750558000000002,16.105968,234
2017-12-14 03:26,-9,11.855782,15.211192,237
2017-12-14 03:28,-9.1,14.092722,17.000744,242
2017-12-14 03:30,-9.2,14.092722,16.553356,241
2017-12-14 03:32,-9.1,12.750558000000002,15.882274,236
2017-12-14 03:34,-9,11.632088000000001,17.224438000000003,232
2017-12-14 03:36,-8.9,13.197946000000002,16.105968,234
2017-12-14 03:38,-9,12.750558000000002,15.434886000000002,234
2017-12-14 03:40,-9.1,11.632088000000001,14.092722,231
2017-12-14 03:42,-9.1,12.750558000000002,16.105968,234
2017-12-14 03:44,-9,11.855782,15.211192,228
2017-12-14 03:46,-8.9,10.961006000000001,14.987498000000002,233
2017-12-14 03:48,-8.8,11.184700000000001,14.316416000000002,238
2017-12-14 03:50,-9.1,14.092722,16.329662,237
2017-12-14 03:52,-9.1,12.974252,15.65858,240
2017-12-14 03:54,-9.1,11.408394,13.645334,235
2017-12-14 03:56,-9.1,11.632088000000001,15.434886000000002,234
2017-12-14 03:58,-9,12.303170000000001,17.224438000000003,237
2017-12-14 04:00,-9,12.079476000000001,15.882274,232
2017-12-14 04:02,-8.9,12.303170000000001,16.105968,238
2017-12-14 04:04,-9,12.750558000000002,14.763804,233
2017-12-14 04:06,-9,13.645334,17.448132,233
2017-12-14 04:08,-9,12.974252,18.566602000000003,232
2017-12-14 04:10,-9.1,13.197946000000002,17.448132,234
2017-12-14 04:12,-9.1,12.750558000000002,15.65858,234
2017-12-14 04:14,-9,10.737312000000001,13.645334,237
2017-12-14 04:16,-9,12.750558000000002,16.105968,239
2017-12-14 04:18,-9.1,12.526864,17.000744,237
2017-12-14 04:20,-9.1,12.526864,14.54011,238
2017-12-14 04:22,-9.1,13.42164,16.553356,239
2017-12-14 04:24,-9,11.408394,16.329662,236
2017-12-14 04:26,-9,11.184700000000001,13.869028000000002,234
2017-12-14 04:28,-9.1,12.079476000000001,14.987498000000002,235
2017-12-14 04:30,-9,11.855782,14.54011,234
2017-12-14 04:32,-9.2,13.197946000000002,16.329662,234
2017-12-14 04:34,-9.1,12.303170000000001,16.777050000000003,230
2017-12-14 04:36,-9.1,11.632088000000001,13.869028000000002,232
2017-12-14 04:38,-9.1,11.855782,14.987498000000002,232
2017-12-14 04:40,-9.1,12.079476000000001,15.882274,233
2017-12-14 04:42,-9.2,11.855782,14.54011,234
2017-12-14 04:44,-9.1,10.961006000000001,14.987498000000002,235
2017-12-14 04:46,-9.1,12.079476000000001,14.987498000000002,234
2017-12-14 04:48,-9.2,11.632088000000001,14.987498000000002,234
2017-12-14 04:50,-9.2,13.197946000000002,17.000744,238
2017-12-14 04:52,-9.2,12.526864,17.000744,238
2017-12-14 04:54,-9.2,11.184700000000001,14.316416000000002,234
2017-12-14 04:56,-9.2,13.197946000000002,16.329662,238
2017-12-14 04:58,-9.3,12.974252,15.434886000000002,232
2017-12-14 05:00,-9.1,11.855782,14.316416000000002,236
2017-12-14 05:02,-9.1,11.408394,14.316416000000002,237
2017-12-14 05:04,-9.1,11.184700000000001,14.316416000000002,239
2017-12-14 05:06,-9.1,11.408394,14.763804,234
2017-12-14 05:08,-9.1,10.066230000000001,12.303170000000001,231
2017-12-14 05:10,-9.1,11.408394,14.092722,232
2017-12-14 05:12,-9.1,12.079476000000001,14.54011,235
2017-12-14 05:14,-9.2,11.632088000000001,14.987498000000002,233
2017-12-14 05:16,-9.2,11.632088000000001,14.092722,236
2017-12-14 05:18,-9,10.737312000000001,13.645334,243
2017-12-14 05:20,-9.1,10.513618000000001,13.197946000000002,241
2017-12-14 05:22,-8.9,10.737312000000001,13.42164,239
2017-12-14 05:24,-8.9,9.842536,13.42164,240
2017-12-14 05:26,-8.9,10.961006000000001,13.42164,239
2017-12-14 05:28,-8.9,10.961006000000001,14.092722,244
2017-12-14 05:30,-8.8,12.974252,15.882274,244
2017-12-14 05:32,-8.8,13.42164,16.329662,243
2017-12-14 05:34,-8.7,12.974252,14.987498000000002,240
2017-12-14 05:36,-8.8,11.184700000000001,12.750558000000002,239
2017-12-14 05:38,-8.8,10.961006000000001,13.869028000000002,238
2017-12-14 05:40,-8.8,12.303170000000001,14.316416000000002,242
2017-12-14 05:42,-8.8,11.184700000000001,15.434886000000002,241
2017-12-14 05:44,-8.8,12.079476000000001,14.987498000000002,246
2017-12-14 05:46,-8.8,14.316416000000002,16.777050000000003,247
2017-12-14 05:48,-8.8,13.645334,17.000744,248
2017-12-14 05:50,-8.9,13.869028000000002,17.000744,245
2017-12-14 05:52,-8.9,13.869028000000002,17.448132,245
2017-12-14 05:54,-8.9,11.408394,14.763804,244
2017-12-14 05:56,-8.9,11.632088000000001,15.434886000000002,244
2017-12-14 05:58,-8.8,12.974252,17.224438000000003,243
2017-12-14 06:00,-8.9,13.869028000000002,16.329662,236
2017-12-14 06:02,-8.9,14.316416000000002,17.448132,249
2017-12-14 06:04,-9,14.763804,19.908766000000004,242
2017-12-14 06:06,-9,13.869028000000002,15.65858,247
2017-12-14 06:08,-9.1,14.987498000000002,18.119214,248
2017-12-14 06:10,-9.1,12.750558000000002,15.882274,245
2017-12-14 06:12,-9.1,14.54011,17.224438000000003,246
2017-12-14 06:14,-9,12.079476000000001,13.869028000000002,242
2017-12-14 06:16,-8.8,9.618842,11.184700000000001,234
2017-12-14 06:18,-8.9,8.724066,10.737312000000001,234
2017-12-14 06:20,-9,10.289924,12.526864,236
2017-12-14 06:22,-9.3,11.408394,14.987498000000002,231
2017-12-14 06:24,-9.3,11.184700000000001,12.750558000000002,228
2017-12-14 06:26,-9.4,10.513618000000001,13.869028000000002,230
2017-12-14 06:28,-9.4,10.513618000000001,12.750558000000002,227
2017-12-14 06:30,-9.3,10.289924,12.974252,225
2017-12-14 06:32,-9.3,10.513618000000001,12.974252,230
2017-12-14 06:34,-9.3,10.289924,13.197946000000002,231
2017-12-14 06:36,-9.2,8.94776,11.184700000000001,232
2017-12-14 06:38,-9.2,9.842536,11.855782,233
2017-12-14 06:40,-9.2,9.171454,11.184700000000001,230
2017-12-14 06:42,-9.2,10.066230000000001,12.079476000000001,238
2017-12-14 06:44,-9.3,10.737312000000001,12.526864,235
2017-12-14 06:46,-9.4,11.184700000000001,16.329662,231
2017-12-14 06:48,-9.3,10.066230000000001,11.855782,234
2017-12-14 06:50,-9.2,8.276678,10.289924,231
2017-12-14 06:52,-9.2,10.066230000000001,13.197946000000002,230
2017-12-14 06:54,-9.2,8.500372,12.526864,227
2017-12-14 06:56,-9.2,7.82929,11.184700000000001,225
2017-12-14 06:58,-9.2,8.724066,11.408394,226
2017-12-14 07:00,-9.3,7.82929,10.289924,219
2017-12-14 07:02,-9.4,11.184700000000001,13.42164,214
2017-12-14 07:04,-9.3,9.618842,11.855782,216
2017-12-14 07:06,-9.3,10.737312000000001,12.974252,217
2017-12-14 07:08,-9.4,10.961006000000001,14.316416000000002,220
2017-12-14 07:10,-9.3,8.724066,12.079476000000001,222
2017-12-14 07:12,-9.3,10.066230000000001,12.303170000000001,218
2017-12-14 07:14,-9.4,10.961006000000001,13.869028000000002,219
2017-12-14 07:16,-9.4,10.737312000000001,12.750558000000002,224
2017-12-14 07:18,-9.4,10.066230000000001,12.974252,216
2017-12-14 07:20,-9.5,9.171454,12.303170000000001,221
2017-12-14 07:22,-9.4,10.513618000000001,13.42164,216
2017-12-14 07:24,-9.4,11.408394,13.869028000000002,218
2017-12-14 07:26,-9.4,11.184700000000001,13.645334,220
2017-12-14 07:28,-9.4,9.842536,11.855782,218
2017-12-14 07:30,-9.3,10.289924,11.632088000000001,220
2017-12-14 07:32,-9.4,9.618842,11.408394,220
2017-12-14 07:34,-9.4,9.618842,12.079476000000001,217
2017-12-14 07:36,-9.4,10.066230000000001,12.974252,219
2017-12-14 07:38,-9.5,9.395148,11.184700000000001,214
2017-12-14 07:40,-9.4,9.842536,12.303170000000001,219
2017-12-14 07:42,-9.4,9.395148,12.303170000000001,222
2017-12-14 07:44,-9.4,9.395148,11.855782,220
2017-12-14 07:46,-9.4,9.842536,11.855782,219
2017-12-14 07:48,-9.4,10.289924,12.303170000000001,220
2017-12-14 07:50,-9.4,10.737312000000001,13.645334,220
2017-12-14 07:52,-9.3,8.94776,12.079476000000001,223
2017-12-14 07:54,-9.3,10.289924,12.974252,227
2017-12-14 07:56,-9.4,10.737312000000001,13.869028000000002,219
2017-12-14 07:58,-9.4,10.513618000000001,12.303170000000001,225
2017-12-14 08:00,-9.5,9.618842,12.974252,220
2017-12-14 08:02,-9.5,9.395148,11.632088000000001,221
2017-12-14 08:04,-9.3,8.500372,10.289924,219
2017-12-14 08:06,-9.5,10.066230000000001,12.750558000000002,220
2017-12-14 08:08,-9.4,9.171454,11.855782,223
2017-12-14 08:10,-9.3,8.500372,11.408394,221
2017-12-14 08:12,-9.2,8.94776,11.408394,227
2017-12-14 08:14,-9.2,8.724066,10.513618000000001,217
2017-12-14 08:16,-9.2,8.724066,10.961006000000001,219
2017-12-14 08:18,-9.3,9.618842,11.632088000000001,217
2017-12-14 08:20,-9.1,8.052984,10.513618000000001,222
2017-12-14 08:22,-9.1,9.171454,11.408394,221
2017-12-14 08:24,-9.1,8.724066,10.066230000000001,224
2017-12-14 08:26,-9.1,9.842536,12.526864,217
2017-12-14 08:28,-9.1,8.276678,10.513618000000001,223
2017-12-14 08:30,-8.9,10.066230000000001,11.855782,227
2017-12-14 08:32,-8.9,8.724066,10.961006000000001,226
2017-12-14 08:34,-8.8,9.618842,12.079476000000001,231
2017-12-14 08:36,-8.6,8.500372,11.408394,232
2017-12-14 08:38,-8.6,8.724066,10.961006000000001,223
2017-12-14 08:40,-8.5,8.500372,10.961006000000001,239
2017-12-14 08:42,-8.5,8.500372,10.961006000000001,220
2017-12-14 08:44,-8.4,7.381902,10.961006000000001,232
2017-12-14 08:46,-8.4,8.052984,10.289924,224
2017-12-14 08:48,-8.4,8.052984,10.513618000000001,230
2017-12-14 08:50,-8.3,8.500372,9.842536,231
2017-12-14 08:52,-8.3,7.82929,10.066230000000001,223
2017-12-14 08:54,-8.2,8.052984,10.066230000000001,228
2017-12-14 08:56,-8.3,8.500372,11.408394,233
2017-12-14 08:58,-8.2,8.276678,10.961006000000001,234
2017-12-14 09:00,-8.1,7.158208000000001,9.395148,234
2017-12-14 09:02,-8,8.94776,10.961006000000001,240
2017-12-14 09:04,-8,7.158208000000001,9.618842,224
2017-12-14 09:06,-8,8.500372,10.289924,233
2017-12-14 09:08,-8,8.052984,9.842536,228
2017-12-14 09:10,-7.9,7.605596,9.618842,231
2017-12-14 09:12,-7.7,6.039738000000001,8.276678,233
2017-12-14 09:14,-7.5,8.276678,10.066230000000001,247
2017-12-14 09:16,-7.6,7.158208000000001,8.724066,244
2017-12-14 09:18,-7.8,8.276678,10.737312000000001,237
2017-12-14 09:20,-7.8,8.500372,10.737312000000001,238
2017-12-14 09:22,-7.8,9.618842,12.526864,244
2017-12-14 09:24,-7.8,10.289924,12.526864,236
2017-12-14 09:26,-7.8,6.487126,8.052984,238
2017-12-14 09:28,-7.4,6.263432,7.82929,240
2017-12-14 09:30,-7.5,8.052984,9.842536,240
2017-12-14 09:32,-7.5,7.82929,9.171454,242
2017-12-14 09:34,-7.3,6.934514000000001,9.171454,238
2017-12-14 09:36,-7.4,6.487126,9.171454,236
2017-12-14 09:38,-7.3,5.3686560000000005,6.71082,229
2017-12-14 09:40,-7.2,5.592350000000001,8.052984,229
2017-12-14 09:42,-7.3,6.263432,8.94776,229
2017-12-14 09:44,-7.3,5.816044000000001,7.158208000000001,223
2017-12-14 09:46,-7.4,6.039738000000001,7.381902,211
2017-12-14 09:48,-7.4,5.592350000000001,8.276678,224
2017-12-14 09:50,-7.3,6.039738000000001,8.052984,228
2017-12-14 09:52,-7.3,5.3686560000000005,6.934514000000001,240
2017-12-14 09:54,-7.2,3.802798,6.263432,220
2017-12-14 09:56,-7.1,4.250186,6.039738000000001,222
2017-12-14 09:58,-7,3.802798,5.144962,214
2017-12-14 10:00,-6.9,4.026492,5.3686560000000005,214
2017-12-14 10:02,-6.8,6.263432,8.276678,237
2017-12-14 10:04,-7,5.144962,6.487126,232
2017-12-14 10:06,-6.8,3.35541,5.816044000000001,228
2017-12-14 10:08,-6.8,4.697574,5.816044000000001,223
2017-12-14 10:10,-6.7,4.921268,6.263432,230
2017-12-14 10:12,-6.7,4.250186,6.263432,223
2017-12-14 10:14,-6.8,6.039738000000001,7.381902,249
2017-12-14 10:16,-6.8,6.039738000000001,7.381902,224
2017-12-14 10:18,-6.9,6.71082,7.82929,201
2017-12-14 10:20,-7,6.263432,7.82929,194
2017-12-14 10:22,-7.1,7.381902,8.500372,185
2017-12-14 10:24,-7.1,6.263432,7.605596,186
2017-12-14 10:26,-6.9,6.71082,7.605596,212
2017-12-14 10:28,-6.8,6.039738000000001,6.934514000000001,206
2017-12-14 10:30,-6.8,7.381902,9.171454,213
2017-12-14 10:32,-6.8,6.71082,8.052984,237
2017-12-14 10:34,-6.8,4.47388,7.158208000000001,231
2017-12-14 10:36,-6.7,5.3686560000000005,6.039738000000001,209
2017-12-14 10:38,-6.7,6.039738000000001,10.289924,196
2017-12-14 10:40,-6.7,6.934514000000001,10.289924,221
2017-12-14 10:42,-6.6,5.144962,6.71082,216
2017-12-14 10:44,-6.5,6.039738000000001,7.82929,231
2017-12-14 10:46,-6.6,6.039738000000001,8.052984,198
2017-12-14 10:48,-6.7,6.934514000000001,8.94776,191
2017-12-14 10:50,-6.8,7.158208000000001,9.395148,183
2017-12-14 10:52,-6.8,8.276678,9.395148,190
2017-12-14 10:54,-6.7,4.697574,6.039738000000001,188
2017-12-14 10:56,-6.4,6.71082,9.171454,217
2017-12-14 10:58,-6.5,4.47388,5.3686560000000005,218
2017-12-14 11:00,-6.4,4.026492,6.263432,220
2017-12-14 11:02,-6.4,5.816044000000001,8.276678,205
2017-12-14 11:04,-6.5,6.71082,8.276678,208
2017-12-14 11:06,-6.6,6.934514000000001,8.500372,218
2017-12-14 11:08,-6.6,6.487126,8.724066,220
2017-12-14 11:10,-6.7,7.82929,9.395148,216
2017-12-14 11:12,-6.6,6.934514000000001,9.171454,241
2017-12-14 11:14,-6.5,7.82929,10.737312000000001,237
2017-12-14 11:16,-6.4,6.039738000000001,7.605596,227
2017-12-14 11:18,-6.3,5.592350000000001,7.82929,233
2017-12-14 11:20,-6.2,5.3686560000000005,6.71082,190
2017-12-14 11:22,-6.2,5.592350000000001,6.487126,182
2017-12-14 11:24,-6.3,6.039738000000001,7.605596,193
2017-12-14 11:26,-6.2,5.816044000000001,7.381902,190
2017-12-14 11:28,-6.3,8.724066,10.961006000000001,201
2017-12-14 11:30,-6.4,9.618842,12.079476000000001,188
2017-12-14 11:32,-6.4,7.82929,10.289924,202
2017-12-14 11:34,-6.2,5.144962,7.82929,216
2017-12-14 11:36,-6.1,6.263432,8.052984,204
2017-12-14 11:38,-6.2,6.487126,7.82929,205
2017-12-14 11:40,-6.3,7.605596,11.632088000000001,200
2017-12-14 11:42,-6.3,6.71082,8.276678,188
2017-12-14 11:44,-6.2,7.381902,9.618842,185
2017-12-14 11:46,-6.2,6.71082,7.82929,211
2017-12-14 11:48,-6.3,5.3686560000000005,7.381902,208
2017-12-14 11:50,-6.2,3.802798,5.816044000000001,200
2017-12-14 11:52,-6.1,4.921268,6.71082,205
2017-12-14 11:54,-6,5.816044000000001,7.158208000000001,200
2017-12-14 11:56,-6.1,6.487126,7.82929,210
2017-12-14 11:58,-6.1,6.71082,9.171454,210
2017-12-14 12:00,-6.2,8.94776,10.961006000000001,197
2017-12-14 12:02,-6.2,7.605596,10.066230000000001,206
2017-12-14 12:04,-6.1,6.263432,8.276678,212
2017-12-14 12:06,-6,6.934514000000001,8.276678,216
2017-12-14 12:08,-6,8.724066,11.408394,195
2017-12-14 12:10,-6,7.381902,11.184700000000001,188
2017-12-14 12:12,-6,6.487126,7.82929,198
2017-12-14 12:14,-5.9,6.71082,9.395148,204
2017-12-14 12:16,-5.9,5.592350000000001,7.158208000000001,183
2017-12-14 12:18,-5.8,6.934514000000001,8.724066,188
2017-12-14 12:20,-5.7,6.263432,8.052984,218
2017-12-14 12:22,-5.7,4.47388,7.158208000000001,185
2017-12-14 12:24,-5.5,4.921268,7.605596,197
2017-12-14 12:26,-5.5,5.816044000000001,8.500372,215
2017-12-14 12:28,-5.6,4.47388,5.592350000000001,214
2017-12-14 12:30,-5.4,3.5791040000000005,4.697574,218
2017-12-14 12:32,-5.3,4.250186,6.263432,202
2017-12-14 12:34,-5.4,7.605596,9.842536,197
2017-12-14 12:36,-5.7,6.487126,9.395148,211
2017-12-14 12:38,-5.8,8.276678,9.618842,224
2017-12-14 12:40,-5.8,6.71082,8.500372,229
2017-12-14 12:42,-5.7,8.500372,10.513618000000001,201
2017-12-14 12:44,-5.7,8.052984,10.513618000000001,188
2017-12-14 12:46,-5.6,7.605596,10.513618000000001,203
2017-12-14 12:48,-5.5,8.724066,11.408394,207
2017-12-14 12:50,-5.6,10.289924,13.42164,184
2017-12-14 12:52,-5.7,8.052984,10.961006000000001,195
2017-12-14 12:54,-5.6,4.697574,8.052984,187
2017-12-14 12:56,-5.6,9.171454,10.961006000000001,184
2017-12-14 12:58,-5.6,7.381902,8.724066,198
2017-12-14 13:00,-5.7,7.605596,9.395148,200
2017-12-14 13:02,-5.6,9.842536,11.855782,210
2017-12-14 13:04,-5.6,9.842536,11.855782,210
2017-12-14 13:06,-5.6,7.605596,9.395148,213
2017-12-14 13:08,-5.4,6.71082,8.500372,208
2017-12-14 13:10,-5.4,6.263432,8.500372,203
2017-12-14 13:12,-5.3,4.921268,6.039738000000001,192
2017-12-14 13:14,-5.2,4.697574,6.487126,229
2017-12-14 13:16,-5.1,8.052984,9.618842,248
2017-12-14 13:18,-5.3,6.71082,8.94776,248
2017-12-14 13:20,-5.3,5.3686560000000005,7.381902,231
2017-12-14 13:22,-5.2,8.724066,10.513618000000001,224
2017-12-14 13:24,-5.2,6.71082,10.066230000000001,204
2017-12-14 13:26,-5.2,8.724066,12.303170000000001,192
2017-12-14 13:28,-5.4,12.974252,15.211192,194
2017-12-14 13:30,-5.5,8.94776,12.974252,194
2017-12-14 13:32,-5.4,6.934514000000001,9.842536,199
2017-12-14 13:34,-5.3,6.71082,8.500372,198
2017-12-14 13:36,-5.3,9.171454,12.526864,193
2017-12-14 13:38,-5.4,8.500372,10.513618000000001,186
2017-12-14 13:40,-5.4,7.381902,9.395148,188
2017-12-14 13:42,-5.3,10.289924,13.645334,177
2017-12-14 13:44,-5.4,8.94776,12.079476000000001,179
2017-12-14 13:46,-5.3,7.381902,10.513618000000001,171
2017-12-14 13:48,-5.3,9.171454,10.737312000000001,193
2017-12-14 13:50,-5.3,7.605596,9.618842,224
2017-12-14 13:52,-5.2,7.82929,9.842536,217
2017-12-14 13:54,-5.2,8.276678,11.408394,196
2017-12-14 13:56,-5.1,9.395148,12.303170000000001,199
2017-12-14 13:58,-5.1,9.171454,11.632088000000001,195
2017-12-14 14:00,-5.1,5.144962,6.71082,222
2017-12-14 14:02,-5.1,7.381902,10.961006000000001,213
2017-12-14 14:04,-5.2,9.171454,11.855782,208
2017-12-14 14:06,-5.3,8.276678,10.737312000000001,205
2017-12-14 14:08,-5.2,10.066230000000001,13.42164,208
2017-12-14 14:10,-5.3,11.632088000000001,13.645334,216
2017-12-14 14:12,-5.2,10.066230000000001,13.42164,216
2017-12-14 14:14,-5.2,9.171454,12.079476000000001,220
2017-12-14 14:16,-5.1,6.487126,8.500372,213
2017-12-14 14:18,-5,8.500372,12.079476000000001,224
2017-12-14 14:20,-5.1,10.737312000000001,13.197946000000002,227
2017-12-14 14:22,-5.2,9.395148,11.855782,219
2017-12-14 14:24,-5.1,7.82929,10.066230000000001,230
2017-12-14 14:26,-5.1,8.276678,10.513618000000001,244
2017-12-14 14:28,-5.1,7.381902,10.513618000000001,224
2017-12-14 14:30,-5.1,7.158208000000001,10.513618000000001,211
2017-12-14 14:32,-5.1,5.592350000000001,9.842536,215
2017-12-14 14:34,-5,10.289924,13.645334,207
2017-12-14 14:36,-5.1,10.513618000000001,12.079476000000001,202
2017-12-14 14:38,-5.1,10.513618000000001,12.974252,201
2017-12-14 14:40,-5.1,9.171454,11.184700000000001,201
2017-12-14 14:42,-5.2,7.82929,9.842536,196
2017-12-14 14:44,-5.1,9.395148,10.737312000000001,190
2017-12-14 14:46,-5.1,8.500372,10.961006000000001,205
2017-12-14 14:48,-5,6.71082,8.724066,200
2017-12-14 14:50,-5,6.71082,8.94776,204
2017-12-14 14:52,-5,8.052984,10.737312000000001,195
2017-12-14 14:54,-5,9.395148,10.737312000000001,188
2017-12-14 14:56,-5.1,9.842536,11.408394,181
2017-12-14 14:58,-5,10.513618000000001,12.079476000000001,194
2017-12-14 15:00,-5,9.842536,13.42164,201
2017-12-14 15:02,-5,10.289924,12.750558000000002,211
2017-12-14 15:04,-5.1,6.934514000000001,9.171454,210
2017-12-14 15:06,-5,7.381902,10.513618000000001,203
2017-12-14 15:08,-5.1,8.276678,9.395148,197
2017-12-14 15:10,-5.1,9.842536,11.855782,179
2017-12-14 15:12,-5.1,8.724066,10.513618000000001,180
2017-12-14 15:14,-5.1,6.934514000000001,8.724066,176
2017-12-14 15:16,-5,8.500372,10.513618000000001,173
2017-12-14 15:18,-5.1,8.052984,10.066230000000001,179
2017-12-14 15:20,-4.9,8.94776,10.961006000000001,181
2017-12-14 15:22,-5,10.961006000000001,12.526864,183
2017-12-14 15:24,-5,8.276678,9.618842,193
2017-12-14 15:26,-4.9,8.052984,12.303170000000001,190
2017-12-14 15:28,-5.1,10.066230000000001,12.079476000000001,193
2017-12-14 15:30,-5.1,7.82929,10.066230000000001,204
2017-12-14 15:32,-5.1,8.276678,10.066230000000001,195
2017-12-14 15:34,-5.1,6.934514000000001,8.276678,208
2017-12-14 15:36,-5,6.263432,7.82929,219
2017-12-14 15:38,-5,7.82929,9.618842,216
2017-12-14 15:40,-5,7.158208000000001,8.500372,209
2017-12-14 15:42,-5.1,6.71082,8.052984,204
2017-12-14 15:44,-5,6.934514000000001,8.724066,208
2017-12-14 15:46,-5,8.500372,10.289924,209
2017-12-14 15:48,-5,6.934514000000001,8.94776,206
2017-12-14 15:50,-5,7.381902,10.737312000000001,215
2017-12-14 15:52,-5.1,9.171454,10.737312000000001,204
2017-12-14 15:54,-5.1,8.94776,10.961006000000001,192
2017-12-14 15:56,-5.2,9.395148,10.737312000000001,209
2017-12-14 15:58,-5.1,6.487126,7.605596,205
2017-12-14 16:00,-5.1,5.592350000000001,6.934514000000001,200
2017-12-14 16:02,-5,5.3686560000000005,7.82929,201
2017-12-14 16:04,-5.1,7.158208000000001,9.395148,205
2017-12-14 16:06,-5.1,7.158208000000001,9.171454,202
2017-12-14 16:08,-5.1,6.934514000000001,9.171454,201
2017-12-14 16:10,-5.1,7.381902,9.395148,200
2017-12-14 16:12,-5.1,6.039738000000001,7.605596,209
2017-12-14 16:14,-5.1,6.039738000000001,8.724066,202
2017-12-14 16:16,-5.1,8.276678,9.842536,200
2017-12-14 16:18,-5.2,7.381902,9.618842,203
2017-12-14 16:20,-5.2,6.263432,7.605596,196
2017-12-14 16:22,-5.1,6.039738000000001,7.158208000000001,199
2017-12-14 16:24,-5.1,7.605596,8.94776,197
2017-12-14 16:26,-5.2,8.276678,9.842536,189
2017-12-14 16:28,-5.2,6.934514000000001,8.052984,187
2017-12-14 16:30,-5.2,6.71082,8.724066,186
2017-12-14 16:32,-5.2,7.158208000000001,8.500372,190
2017-12-14 16:34,-5.2,6.263432,8.052984,186
2017-12-14 16:36,-5.2,6.934514000000001,8.724066,184
2017-12-14 16:38,-5.3,7.605596,8.724066,186
2017-12-14 16:40,-5.2,5.3686560000000005,6.263432,181
2017-12-14 16:42,-5.3,6.263432,7.381902,185
2017-12-14 16:44,-5.2,6.487126,7.381902,184
2017-12-14 16:46,-5.2,6.487126,7.381902,188
2017-12-14 16:48,-5.3,6.263432,7.605596,186
2017-12-14 16:50,-5.3,6.71082,7.381902,192
2017-12-14 16:52,-5.3,6.934514000000001,7.82929,199
2017-12-14 16:54,-5.3,6.263432,7.605596,192
2017-12-14 16:56,-5.3,7.605596,8.276678,190
2017-12-14 16:58,-5.3,7.605596,9.171454,193
2017-12-14 17:00,-5.3,6.71082,8.500372,193
2017-12-14 17:02,-5.3,7.158208000000001,8.276678,187
2017-12-14 17:04,-5.2,6.487126,8.052984,184
2017-12-14 17:06,-5.3,6.263432,8.052984,190
2017-12-14 17:08,-5.3,6.039738000000001,6.71082,189
2017-12-14 17:10,-5.3,6.71082,7.605596,182
2017-12-14 17:12,-5.3,7.158208000000001,8.500372,197
2017-12-14 17:14,-5.2,6.934514000000001,8.276678,198
2017-12-14 17:16,-5.2,6.487126,7.82929,191
2017-12-14 17:18,-5.2,6.039738000000001,8.276678,187
2017-12-14 17:20,-5.2,5.3686560000000005,6.039738000000001,187
2017-12-14 17:22,-5.3,5.592350000000001,6.263432,188
2017-12-14 17:24,-5.3,4.921268,5.3686560000000005,185
2017-12-14 17:26,-5.3,4.921268,6.263432,193
2017-12-14 17:28,-5.3,6.039738000000001,7.82929,192
2017-12-14 17:30,-5.3,7.381902,8.500372,189
2017-12-14 17:32,-5.2,6.487126,8.052984,187
2017-12-14 17:34,-5.3,6.934514000000001,9.171454,185
2017-12-14 17:36,-5.3,6.487126,8.052984,191
2017-12-14 17:38,-5.3,6.263432,7.381902,190
2017-12-14 17:40,-5.3,6.039738000000001,7.82929,186
2017-12-14 17:42,-5.2,6.934514000000001,7.82929,187
2017-12-14 17:44,-5.2,6.487126,7.82929,186
2017-12-14 17:46,-5.2,6.934514000000001,8.94776,189
2017-12-14 17:48,-5.2,7.381902,9.395148,173
2017-12-14 17:50,-5.1,6.487126,7.605596,184
2017-12-14 17:52,-5.1,6.263432,7.158208000000001,189
2017-12-14 17:54,-5.1,6.263432,7.605596,189
2017-12-14 17:56,-5.2,5.816044000000001,7.605596,185
2017-12-14 17:58,-5.1,6.487126,7.82929,180
2017-12-14 18:00,-5.1,7.158208000000001,8.94776,191
2017-12-14 18:02,-5.1,6.71082,8.276678,182
2017-12-14 18:04,-5.1,6.487126,7.605596,182
2017-12-14 18:06,-5,6.487126,7.605596,175
2017-12-14 18:08,-5,7.82929,9.171454,180
2017-12-14 18:10,-4.9,7.82929,9.171454,176
2017-12-14 18:12,-4.9,6.487126,7.605596,180
2017-12-14 18:14,-4.9,6.487126,8.052984,185
2017-12-14 18:16,-5,7.158208000000001,8.94776,178
2017-12-14 18:18,-4.9,8.052984,10.289924,177
2017-12-14 18:20,-4.9,9.171454,10.513618000000001,179
2017-12-14 18:22,-4.9,7.82929,9.171454,179
2017-12-14 18:24,-4.9,7.605596,9.618842,166
2017-12-14 18:26,-5,5.816044000000001,6.934514000000001,174
2017-12-14 18:28,-4.8,7.605596,8.94776,175
2017-12-14 18:30,-4.9,7.158208000000001,8.500372,181
2017-12-14 18:32,-4.9,7.605596,8.94776,181
2017-12-14 18:34,-4.9,8.276678,9.618842,180
2017-12-14 18:36,-4.9,7.82929,9.395148,169
2017-12-14 18:38,-4.9,7.381902,8.724066,179
2017-12-14 18:40,-4.9,7.158208000000001,8.94776,187
2017-12-14 18:42,-5,7.158208000000001,8.724066,188
2017-12-14 18:44,-5.1,6.487126,7.82929,181
2017-12-14 18:46,-5,6.934514000000001,9.171454,178
2017-12-14 18:48,-4.9,6.71082,7.82929,183
2017-12-14 18:50,-4.9,7.381902,9.395148,181
2017-12-14 18:52,-4.9,6.71082,8.276678,183
2017-12-14 18:54,-4.9,6.71082,8.052984,184
2017-12-14 18:56,-4.9,7.605596,8.500372,183
2017-12-14 18:58,-4.9,6.71082,7.605596,184
2017-12-14 19:00,-4.8,6.934514000000001,8.94776,170
2017-12-14 19:02,-4.8,7.158208000000001,8.94776,173
2017-12-14 19:04,-4.8,6.487126,8.052984,159
2017-12-14 19:06,-4.8,8.724066,10.066230000000001,147
2017-12-14 19:08,-4.8,8.500372,9.395148,148
2017-12-14 19:10,-4.9,7.605596,8.500372,145
2017-12-14 19:12,-4.8,8.276678,9.618842,146
2017-12-14 19:14,-4.9,8.276678,9.171454,146
2017-12-14 19:16,-4.9,7.381902,8.724066,146
2017-12-14 19:18,-4.9,7.381902,8.500372,151
2017-12-14 19:20,-4.9,8.500372,9.395148,151
2017-12-14 19:22,-4.9,8.052984,9.171454,150
2017-12-14 19:24,-4.9,7.605596,8.276678,148
2017-12-14 19:26,-5,8.724066,9.842536,149
2017-12-14 19:28,-5,7.605596,8.724066,151
2017-12-14 19:30,-4.9,7.82929,9.171454,154
2017-12-14 19:32,-4.9,7.82929,8.724066,150
2017-12-14 19:34,-4.8,8.500372,9.171454,148
2017-12-14 19:36,-4.9,8.052984,9.171454,145
2017-12-14 19:38,-4.9,7.381902,8.500372,151
2017-12-14 19:40,-4.9,7.82929,8.500372,151
2017-12-14 19:42,-4.9,7.605596,8.500372,152
2017-12-14 19:44,-4.8,7.381902,8.724066,152
2017-12-14 19:46,-4.8,7.158208000000001,7.82929,152
2017-12-14 19:48,-4.7,6.934514000000001,7.82929,148
2017-12-14 19:50,-4.7,6.934514000000001,7.605596,147
2017-12-14 19:52,-4.7,7.381902,8.276678,143
2017-12-14 19:54,-4.7,7.158208000000001,8.052984,142
2017-12-14 19:56,-4.7,5.816044000000001,6.71082,138
2017-12-14 19:58,-4.7,6.263432,6.71082,149
2017-12-14 20:00,-4.7,5.816044000000001,6.71082,143
2017-12-14 20:02,-4.7,5.816044000000001,6.487126,136
2017-12-14 20:04,-4.6,5.816044000000001,6.487126,135
2017-12-14 20:06,-4.6,5.816044000000001,6.71082,137
2017-12-14 20:08,-4.6,5.816044000000001,6.487126,127
2017-12-14 20:10,-4.6,6.487126,7.381902,127
2017-12-14 20:12,-4.6,6.934514000000001,7.381902,122
2017-12-14 20:14,-4.6,6.487126,7.605596,127
2017-12-14 20:16,-4.6,6.71082,7.605596,123
2017-12-14 20:18,-4.6,6.039738000000001,6.71082,133
2017-12-14 20:20,-4.5,6.263432,7.381902,131
2017-12-14 20:22,-4.5,6.487126,7.381902,134
2017-12-14 20:24,-4.5,6.71082,7.605596,131
2017-12-14 20:26,-4.5,6.487126,7.381902,122
2017-12-14 20:28,-4.5,6.71082,7.381902,118
2017-12-14 20:30,-4.5,6.934514000000001,8.052984,127
2017-12-14 20:32,-4.5,6.71082,7.605596,140
2017-12-14 20:34,-4.5,7.158208000000001,8.052984,131
2017-12-14 20:36,-4.6,7.381902,8.500372,135
2017-12-14 20:38,-4.6,7.82929,8.724066,143
2017-12-14 20:40,-4.6,7.158208000000001,8.500372,139
2017-12-14 20:42,-4.6,7.381902,8.276678,141
2017-12-14 20:44,-4.6,8.500372,9.171454,143
2017-12-14 20:46,-4.7,8.724066,9.395148,148
2017-12-14 20:48,-4.7,8.276678,9.171454,142
2017-12-14 20:50,-4.7,8.500372,9.395148,131
2017-12-14 20:52,-4.7,7.82929,9.171454,128
2017-12-14 20:54,-4.7,7.381902,8.276678,139
2017-12-14 20:56,-4.7,7.82929,8.724066,133
2017-12-14 20:58,-4.8,7.605596,8.724066,140
2017-12-14 21:00,-4.7,7.82929,8.724066,134
2017-12-14 21:02,-4.7,6.71082,8.500372,140
2017-12-14 21:04,-4.7,7.381902,8.276678,139
2017-12-14 21:06,-4.6,7.381902,8.052984,139
2017-12-14 21:08,-4.6,7.158208000000001,7.605596,137
2017-12-14 21:10,-4.6,7.381902,8.052984,139
2017-12-14 21:12,-4.7,7.605596,8.500372,131
2017-12-14 21:14,-4.7,8.052984,8.94776,116
2017-12-14 21:16,-4.7,7.82929,8.500372,125
2017-12-14 21:18,-4.6,7.605596,8.724066,127
2017-12-14 21:20,-4.6,8.724066,10.066230000000001,120
2017-12-14 21:22,-4.7,9.842536,10.737312000000001,116
2017-12-14 21:24,-4.7,10.066230000000001,10.961006000000001,124
2017-12-14 21:26,-4.7,10.066230000000001,11.408394,119
2017-12-14 21:28,-4.7,10.961006000000001,11.855782,117
2017-12-14 21:30,-4.7,10.961006000000001,12.079476000000001,119
2017-12-14 21:32,-4.5,10.513618000000001,12.079476000000001,118
2017-12-14 21:34,-4.7,11.184700000000001,12.079476000000001,121
2017-12-14 21:36,-4.6,10.737312000000001,12.079476000000001,115
2017-12-14 21:38,-4.6,10.737312000000001,11.632088000000001,116
2017-12-14 21:40,-4.6,11.408394,13.869028000000002,114
2017-12-14 21:42,-4.7,11.632088000000001,12.750558000000002,111
2017-12-14 21:44,-4.8,11.408394,12.974252,114
2017-12-14 21:46,-4.8,11.632088000000001,13.42164,119
2017-12-14 21:48,-4.8,11.855782,13.42164,118
2017-12-14 21:50,-4.8,11.632088000000001,12.974252,114
2017-12-14 21:52,-4.8,12.526864,14.316416000000002,124
2017-12-14 21:54,-4.9,12.526864,14.54011,113
2017-12-14 21:56,-4.9,12.526864,13.869028000000002,123
2017-12-14 21:58,-4.9,11.855782,13.42164,120
2017-12-14 22:00,-4.8,11.408394,12.750558000000002,123
2017-12-14 22:02,-4.9,10.513618000000001,11.855782,120
2017-12-14 22:04,-4.8,10.513618000000001,12.079476000000001,112
2017-12-14 22:06,-4.7,11.632088000000001,13.42164,114
2017-12-14 22:08,-4.7,10.289924,11.184700000000001,115
2017-12-14 22:10,-4.7,9.618842,12.303170000000001,115
2017-12-14 22:12,-4.7,11.632088000000001,13.197946000000002,104
2017-12-14 22:14,-4.8,12.303170000000001,13.869028000000002,108
2017-12-14 22:16,-4.8,11.855782,14.316416000000002,106
2017-12-14 22:18,-4.8,11.632088000000001,12.974252,116
2017-12-14 22:20,-4.8,10.737312000000001,12.303170000000001,120
2017-12-14 22:22,-4.6,10.066230000000001,12.079476000000001,116
2017-12-14 22:24,-4.7,12.526864,14.54011,110
2017-12-14 22:26,-4.8,13.197946000000002,14.092722,105
2017-12-14 22:28,-4.9,11.855782,13.42164,109
2017-12-14 22:30,-4.8,11.632088000000001,13.42164,116
2017-12-14 22:32,-4.7,11.855782,13.42164,120
2017-12-14 22:34,-4.8,11.184700000000001,12.526864,109
2017-12-14 22:36,-4.9,11.408394,12.750558000000002,104
2017-12-14 22:38,-4.9,10.961006000000001,11.855782,105
2017-12-14 22:40,-4.8,9.842536,11.855782,110
2017-12-14 22:42,-4.8,11.184700000000001,12.750558000000002,102
2017-12-14 22:44,-4.8,10.066230000000001,11.184700000000001,110
2017-12-14 22:46,-4.8,11.184700000000001,12.750558000000002,115
2017-12-14 22:48,-4.9,10.961006000000001,12.303170000000001,116
2017-12-14 22:50,-5,10.737312000000001,12.974252,122
2017-12-14 22:52,-5,10.289924,11.632088000000001,116
2017-12-14 22:54,-5,10.066230000000001,11.855782,126
2017-12-14 22:56,-5.1,10.289924,12.303170000000001,122
2017-12-14 22:58,-5.1,10.289924,12.079476000000001,124
2017-12-14 23:00,-5,10.737312000000001,11.632088000000001,137
2017-12-14 23:02,-5,10.513618000000001,12.079476000000001,129
2017-12-14 23:04,-5.1,10.066230000000001,11.408394,131
2017-12-14 23:06,-5,8.724066,9.842536,140
2017-12-14 23:08,-5,9.842536,10.961006000000001,130
2017-12-14 23:10,-5,10.737312000000001,12.974252,141
2017-12-14 23:12,-5.1,11.855782,13.42164,137
2017-12-14 23:14,-5.1,10.961006000000001,12.079476000000001,143
2017-12-14 23:16,-5.1,12.079476000000001,14.316416000000002,135
2017-12-14 23:18,-5.3,10.289924,12.526864,133
2017-12-14 23:20,-5.2,11.408394,12.974252,129
2017-12-14 23:22,-5.1,10.513618000000001,12.303170000000001,131
2017-12-14 23:24,-5.1,11.408394,13.869028000000002,137
2017-12-14 23:26,-5.2,10.737312000000001,12.303170000000001,131
2017-12-14 23:28,-5.3,11.855782,13.645334,133
2017-12-14 23:30,-5.3,10.961006000000001,13.197946000000002,130
2017-12-14 23:32,-5.3,12.079476000000001,15.434886000000002,132
2017-12-14 23:34,-5.3,10.737312000000001,12.303170000000001,138
2017-12-14 23:36,-5.3,9.842536,10.961006000000001,137
2017-12-14 23:38,-5.2,9.618842,10.737312000000001,145
2017-12-14 23:40,-5.3,10.513618000000001,11.855782,145
2017-12-14 23:42,-5.3,9.395148,10.289924,139
2017-12-14 23:44,-5.2,10.066230000000001,12.526864,133
2017-12-14 23:46,-5.2,10.513618000000001,12.974252,143
2017-12-14 23:48,-5.3,10.289924,12.079476000000001,136
2017-12-14 23:50,-5.3,12.303170000000001,14.763804,134
2017-12-14 23:52,-5.3,10.066230000000001,11.408394,140
2017-12-14 23:54,-5.2,9.618842,11.184700000000001,142
2017-12-14 23:56,-5.3,10.289924,12.079476000000001,132
2017-12-14 23:58,-5.2,9.842536,11.408394,147
2017-12-15 00:00,-5.2,10.289924,11.632088000000001,136
2017-12-15 00:02,-5.2,9.395148,10.737312000000001,140
2017-12-15 00:04,-5.1,9.842536,11.855782,140
2017-12-15 00:06,-5.1,10.289924,11.855782,131
2017-12-15 00:08,-5.2,11.855782,13.42164,128
2017-12-15 00:10,-5.3,10.513618000000001,12.750558000000002,135
2017-12-15 00:12,-5.3,10.737312000000001,12.526864,135
2017-12-15 00:14,-5.2,10.737312000000001,12.974252,135
2017-12-15 00:16,-5.2,10.289924,11.855782,138
2017-12-15 00:18,-5.2,9.618842,10.961006000000001,125
2017-12-15 00:20,-5.2,10.289924,11.855782,122
2017-12-15 00:22,-5.2,9.395148,10.289924,126
2017-12-15 00:24,-5.1,8.94776,10.513618000000001,130
2017-12-15 00:26,-5.2,11.184700000000001,12.079476000000001,125
2017-12-15 00:28,-5.2,9.171454,11.632088000000001,136
2017-12-15 00:30,-5.3,9.395148,10.737312000000001,127
2017-12-15 00:32,-5.2,9.842536,11.632088000000001,125
2017-12-15 00:34,-5.2,9.842536,11.855782,129
2017-12-15 00:36,-5.2,10.289924,12.079476000000001,128
2017-12-15 00:38,-5.2,9.618842,12.303170000000001,125
2017-12-15 00:40,-5.2,9.618842,12.079476000000001,132
2017-12-15 00:42,-5.2,10.289924,11.855782,134
2017-12-15 00:44,-5.2,9.842536,11.855782,130
2017-12-15 00:46,-5.1,10.066230000000001,12.526864,126
2017-12-15 00:48,-5.2,10.737312000000001,13.197946000000002,127
2017-12-15 00:50,-5.2,10.066230000000001,12.079476000000001,124
2017-12-15 00:52,-5.2,10.737312000000001,12.079476000000001,124
2017-12-15 00:54,-5.1,11.632088000000001,12.750558000000002,126
2017-12-15 00:56,-5.2,11.855782,13.197946000000002,133
2017-12-15 00:58,-5.2,11.632088000000001,12.750558000000002,131
2017-12-15 01:00,-5.2,11.408394,13.869028000000002,131
2017-12-15 01:02,-5.1,10.961006000000001,12.526864,133
2017-12-15 01:04,-5.1,9.842536,10.961006000000001,130
2017-12-15 01:06,-5.2,9.395148,10.513618000000001,133
2017-12-15 01:08,-5.1,10.289924,12.750558000000002,122
2017-12-15 01:10,-5.2,8.94776,12.079476000000001,129
2017-12-15 01:12,-5.1,10.513618000000001,12.974252,122
2017-12-15 01:14,-5.1,10.289924,12.079476000000001,131
2017-12-15 01:16,-5.1,9.618842,13.197946000000002,132
2017-12-15 01:18,-5.1,10.066230000000001,11.855782,135
2017-12-15 01:20,-5.1,9.171454,10.289924,126
2017-12-15 01:22,-5.1,9.171454,11.855782,124
2017-12-15 01:24,-5.1,10.289924,12.303170000000001,137
2017-12-15 01:26,-5.1,8.724066,10.513618000000001,134
2017-12-15 01:28,-5.1,9.618842,11.408394,134
2017-12-15 01:30,-5.1,9.618842,10.737312000000001,135
2017-12-15 01:32,-5.2,9.842536,10.961006000000001,135
2017-12-15 01:34,-5.1,10.737312000000001,12.750558000000002,130
2017-12-15 01:36,-5.1,10.513618000000001,11.632088000000001,135
2017-12-15 01:38,-5,10.737312000000001,12.974252,132
2017-12-15 01:40,-5,11.184700000000001,12.974252,130
2017-12-15 01:42,-4.9,10.066230000000001,13.42164,134
2017-12-15 01:44,-4.9,11.184700000000001,12.526864,130
2017-12-15 01:46,-5,11.184700000000001,12.750558000000002,133
2017-12-15 01:48,-4.9,12.303170000000001,13.869028000000002,130
2017-12-15 01:50,-5,12.750558000000002,14.763804,129
2017-12-15 01:52,-4.9,11.855782,12.750558000000002,125
2017-12-15 01:54,-4.9,12.526864,14.316416000000002,130
2017-12-15 01:56,-4.9,12.526864,14.54011,130
2017-12-15 01:58,-4.9,12.750558000000002,14.763804,128
2017-12-15 02:00,-4.9,12.079476000000001,14.763804,136
2017-12-15 02:02,-4.8,11.855782,13.42164,128
2017-12-15 02:04,-4.8,11.408394,12.750558000000002,129
2017-12-15 02:06,-4.9,12.526864,14.54011,128
2017-12-15 02:08,-4.9,12.303170000000001,13.869028000000002,126
2017-12-15 02:10,-5,12.303170000000001,13.645334,132
2017-12-15 02:12,-5,11.632088000000001,13.869028000000002,130
2017-12-15 02:14,-5,12.079476000000001,13.645334,129
2017-12-15 02:16,-4.9,12.974252,14.092722,125
2017-12-15 02:18,-4.9,11.408394,12.974252,132
2017-12-15 02:20,-4.9,12.079476000000001,13.197946000000002,131
2017-12-15 02:22,-4.8,11.855782,13.645334,126
2017-12-15 02:24,-4.9,12.526864,14.316416000000002,130
2017-12-15 02:26,-4.9,11.632088000000001,13.645334,128
2017-12-15 02:28,-4.9,11.855782,13.197946000000002,131
2017-12-15 02:30,-4.9,11.408394,12.079476000000001,135
2017-12-15 02:32,-4.9,10.066230000000001,11.408394,137
2017-12-15 02:34,-4.8,9.618842,11.855782,133
2017-12-15 02:36,-4.7,9.171454,10.513618000000001,137
2017-12-15 02:38,-4.7,10.513618000000001,11.632088000000001,135
2017-12-15 02:40,-4.7,10.066230000000001,12.079476000000001,136
2017-12-15 02:42,-4.7,10.513618000000001,12.974252,132
2017-12-15 02:44,-4.7,10.737312000000001,12.303170000000001,134
2017-12-15 02:46,-4.7,10.513618000000001,12.303170000000001,135
2017-12-15 02:48,-4.7,10.066230000000001,11.632088000000001,137
2017-12-15 02:50,-4.7,10.737312000000001,12.079476000000001,127
2017-12-15 02:52,-4.6,10.961006000000001,12.974252,126
2017-12-15 02:54,-4.7,10.961006000000001,13.197946000000002,130
2017-12-15 02:56,-4.6,10.513618000000001,12.303170000000001,136
2017-12-15 02:58,-4.6,11.184700000000001,12.303170000000001,135
2017-12-15 03:00,-4.6,10.737312000000001,12.303170000000001,140
2017-12-15 03:02,-4.6,10.066230000000001,12.079476000000001,135
2017-12-15 03:04,-4.5,9.618842,10.961006000000001,137
2017-12-15 03:06,-4.4,10.737312000000001,13.869028000000002,141
2017-12-15 03:08,-4.5,12.750558000000002,14.763804,144
2017-12-15 03:10,-4.6,10.737312000000001,13.869028000000002,148
2017-12-15 03:12,-4.5,11.184700000000001,12.303170000000001,148
2017-12-15 03:14,-4.5,10.961006000000001,12.303170000000001,148
2017-12-15 03:16,-4.4,11.855782,12.750558000000002,144
2017-12-15 03:18,-4.4,10.961006000000001,12.974252,149
2017-12-15 03:20,-4.4,9.618842,11.184700000000001,148
2017-12-15 03:22,-4.4,10.066230000000001,12.303170000000001,143
2017-12-15 03:24,-4.4,11.184700000000001,13.197946000000002,144
2017-12-15 03:26,-4.4,11.408394,12.974252,141
2017-12-15 03:28,-4.4,10.289924,12.079476000000001,136
2017-12-15 03:30,-4.4,10.289924,11.632088000000001,152
2017-12-15 03:32,-4.4,11.408394,13.645334,133
2017-12-15 03:34,-4.4,10.513618000000001,11.632088000000001,142
2017-12-15 03:36,-4.3,11.184700000000001,12.750558000000002,146
2017-12-15 03:38,-4.4,9.618842,11.855782,150
2017-12-15 03:40,-4.4,8.724066,10.513618000000001,149
2017-12-15 03:42,-4.4,9.171454,11.184700000000001,148
2017-12-15 03:44,-4.3,8.724066,10.066230000000001,144
2017-12-15 03:46,-4.2,9.842536,11.632088000000001,152
2017-12-15 03:48,-4.2,8.724066,10.066230000000001,150
2017-12-15 03:50,-4.1,8.052984,10.289924,154
2017-12-15 03:52,-4.1,9.395148,11.184700000000001,142
2017-12-15 03:54,-4.1,8.724066,10.066230000000001,148
2017-12-15 03:56,-4.1,10.961006000000001,13.645334,158
2017-12-15 03:58,-4,8.94776,10.961006000000001,146
2017-12-15 04:00,-4,8.500372,9.618842,142
2017-12-15 04:02,-4,9.842536,11.855782,154
2017-12-15 04:04,-3.9,10.961006000000001,12.974252,156
2017-12-15 04:06,-3.9,8.724066,10.737312000000001,160
2017-12-15 04:08,-3.9,11.184700000000001,14.092722,168
2017-12-15 04:10,-3.9,10.289924,11.855782,154
2017-12-15 04:12,-3.9,7.605596,10.961006000000001,164
2017-12-15 04:14,-3.8,7.381902,8.94776,153
2017-12-15 04:16,-3.8,7.158208000000001,9.395148,172
2017-12-15 04:18,-3.8,8.94776,11.855782,163
2017-12-15 04:20,-3.8,9.395148,10.513618000000001,157
2017-12-15 04:22,-3.8,8.052984,9.842536,158
2017-12-15 04:24,-3.7,10.289924,13.42164,172
2017-12-15 04:26,-3.8,8.724066,9.618842,170
2017-12-15 04:28,-3.7,10.513618000000001,13.645334,167
2017-12-15 04:30,-3.8,11.408394,13.42164,163
2017-12-15 04:32,-3.8,11.408394,16.553356,160
2017-12-15 04:34,-3.8,8.052984,10.066230000000001,174
2017-12-15 04:36,-3.7,9.171454,12.079476000000001,175
2017-12-15 04:38,-3.8,9.171454,11.408394,169
2017-12-15 04:40,-3.8,10.289924,11.855782,167
2017-12-15 04:42,-3.7,8.94776,12.079476000000001,175
2017-12-15 04:44,-3.7,8.724066,11.184700000000001,171
2017-12-15 04:46,-3.8,7.605596,9.395148,179
2017-12-15 04:48,-3.7,6.71082,8.500372,180
2017-12-15 04:50,-3.7,8.052984,10.961006000000001,184
2017-12-15 04:52,-3.7,8.500372,10.961006000000001,185
2017-12-15 04:54,-3.7,9.171454,12.079476000000001,193
2017-12-15 04:56,-3.7,6.934514000000001,9.618842,184
2017-12-15 04:58,-3.8,8.724066,11.855782,179
2017-12-15 05:00,-3.7,9.395148,12.303170000000001,174
2017-12-15 05:02,-3.7,8.500372,10.289924,174
2017-12-15 05:04,-3.7,8.052984,10.289924,186
2017-12-15 05:06,-3.7,8.500372,10.066230000000001,179
2017-12-15 05:08,-3.6,7.381902,9.395148,190
2017-12-15 05:10,-3.6,8.052984,9.842536,186
2017-12-15 05:12,-3.7,10.289924,13.197946000000002,184
2017-12-15 05:14,-3.7,8.724066,11.408394,198
2017-12-15 05:16,-3.7,11.855782,17.448132,197
2017-12-15 05:18,-3.7,14.54011,18.566602000000003,179
2017-12-15 05:20,-3.8,12.079476000000001,17.671826000000003,198
2017-12-15 05:22,-3.8,13.869028000000002,17.671826000000003,187
2017-12-15 05:24,-3.7,13.869028000000002,17.671826000000003,182
2017-12-15 05:26,-3.7,15.434886000000002,19.685072,182
2017-12-15 05:28,-3.7,11.184700000000001,13.197946000000002,192
2017-12-15 05:30,-3.7,10.289924,13.197946000000002,192
2017-12-15 05:32,-3.8,12.526864,14.987498000000002,201
2017-12-15 05:34,-3.8,14.316416000000002,18.342908,192
2017-12-15 05:36,-3.8,13.197946000000002,15.434886000000002,187
2017-12-15 05:38,-3.8,11.632088000000001,13.869028000000002,183
2017-12-15 05:40,-3.8,11.855782,14.54011,193
2017-12-15 05:42,-3.8,14.092722,19.685072,189
2017-12-15 05:44,-3.8,15.882274,20.356154,177
2017-12-15 05:46,-3.9,15.65858,19.908766000000004,178
2017-12-15 05:48,-3.9,17.671826000000003,21.474624000000002,185
2017-12-15 05:50,-4,18.342908,23.040482000000004,187
2017-12-15 05:52,-4,16.329662,19.908766000000004,190
2017-12-15 05:54,-4,14.987498000000002,22.145706,185
2017-12-15 05:56,-4,17.448132,21.698318,187
2017-12-15 05:58,-4,14.54011,17.224438000000003,190
2017-12-15 06:00,-4.1,17.89552,20.132460000000002,194
2017-12-15 06:02,-4.1,16.553356,20.803542000000004,197
2017-12-15 06:04,-4.1,16.777050000000003,19.908766000000004,196
2017-12-15 06:06,-4.2,14.987498000000002,18.566602000000003,197
2017-12-15 06:08,-4.2,16.105968,19.908766000000004,196
2017-12-15 06:10,-4.2,14.316416000000002,20.579848,192
2017-12-15 06:12,-4.2,11.408394,14.54011,206
2017-12-15 06:14,-4.2,11.855782,15.434886000000002,205
2017-12-15 06:16,-4.2,11.632088000000001,15.211192,196
2017-12-15 06:18,-4.2,14.54011,17.89552,193
2017-12-15 06:20,-4.2,12.303170000000001,14.54011,200
2017-12-15 06:22,-4.2,13.197946000000002,17.224438000000003,199
2017-12-15 06:24,-4.2,14.987498000000002,17.89552,195
2017-12-15 06:26,-4.2,16.553356,19.237684,196
2017-12-15 06:28,-4.2,15.65858,22.593094,197
2017-12-15 06:30,-4.2,14.987498000000002,18.119214,193
2017-12-15 06:32,-4.3,17.89552,23.711564,194
2017-12-15 06:34,-4.2,12.974252,15.882274,197
2017-12-15 06:36,-4.3,14.316416000000002,18.566602000000003,193
2017-12-15 06:38,-4.3,14.092722,17.671826000000003,202
2017-12-15 06:40,-4.3,14.316416000000002,16.777050000000003,204
2017-12-15 06:42,-4.3,13.197946000000002,17.224438000000003,199
2017-12-15 06:44,-4.3,12.750558000000002,15.65858,200
2017-12-15 06:46,-4.3,13.42164,17.224438000000003,199
2017-12-15 06:48,-4.3,10.737312000000001,14.316416000000002,188
2017-12-15 06:50,-4.3,12.974252,16.553356,189
2017-12-15 06:52,-4.3,12.526864,19.461378,194
2017-12-15 06:54,-4.4,14.54011,19.461378,197
2017-12-15 06:56,-4.4,12.750558000000002,17.671826000000003,199
2017-12-15 06:58,-4.3,11.184700000000001,12.750558000000002,200
2017-12-15 07:00,-4.3,12.750558000000002,18.119214,196
2017-12-15 07:02,-4.4,12.079476000000001,14.763804,203
2017-12-15 07:04,-4.4,10.066230000000001,12.303170000000001,199
2017-12-15 07:06,-4.4,12.526864,14.987498000000002,193
2017-12-15 07:08,-4.5,12.526864,15.434886000000002,205
2017-12-15 07:10,-4.4,11.408394,14.092722,190
2017-12-15 07:12,-4.5,13.42164,15.882274,184
2017-12-15 07:14,-4.5,14.316416000000002,18.790296,193
2017-12-15 07:16,-4.6,16.553356,19.461378,204
2017-12-15 07:18,-4.6,12.974252,16.777050000000003,206
2017-12-15 07:20,-4.6,14.316416000000002,19.461378,192
2017-12-15 07:22,-4.6,14.763804,19.237684,188
2017-12-15 07:24,-4.6,13.197946000000002,15.65858,205
2017-12-15 07:26,-4.5,10.289924,13.197946000000002,202
2017-12-15 07:28,-4.6,14.54011,17.000744,198
2017-12-15 07:30,-4.6,14.54011,19.908766000000004,199
2017-12-15 07:32,-4.6,12.303170000000001,15.434886000000002,195
2017-12-15 07:34,-4.6,12.303170000000001,15.882274,191
2017-12-15 07:36,-4.6,13.42164,15.211192,184
2017-12-15 07:38,-4.6,12.303170000000001,15.434886000000002,201
2017-12-15 07:40,-4.6,11.632088000000001,15.211192,189
2017-12-15 07:42,-4.6,12.974252,15.882274,182
2017-12-15 07:44,-4.5,11.408394,14.092722,186
2017-12-15 07:46,-4.6,11.408394,14.54011,179
2017-12-15 07:48,-4.6,13.197946000000002,17.000744,183
2017-12-15 07:50,-4.6,12.303170000000001,17.448132,192
2017-12-15 07:52,-4.6,12.526864,17.000744,191
2017-12-15 07:54,-4.5,11.855782,14.763804,188
2017-12-15 07:56,-4.6,11.632088000000001,15.65858,194
2017-12-15 07:58,-4.6,11.855782,14.092722,187
2017-12-15 08:00,-4.6,11.855782,14.987498000000002,185
2017-12-15 08:02,-4.5,10.289924,14.092722,190
2017-12-15 08:04,-4.5,11.632088000000001,15.882274,183
2017-12-15 08:06,-4.6,14.316416000000002,18.342908,188
2017-12-15 08:08,-4.5,13.645334,17.89552,196
2017-12-15 08:10,-4.4,10.066230000000001,14.987498000000002,192
2017-12-15 08:12,-4.4,11.632088000000001,14.54011,195
2017-12-15 08:14,-4.5,10.961006000000001,13.42164,186
2017-12-15 08:16,-4.5,11.855782,15.882274,190
2017-12-15 08:18,-4.5,16.329662,22.593094,186
2017-12-15 08:20,-4.6,16.777050000000003,20.579848,196
2017-12-15 08:22,-4.6,14.316416000000002,16.553356,195
2017-12-15 08:24,-4.6,15.434886000000002,18.566602000000003,200
2017-12-15 08:26,-4.6,14.987498000000002,18.566602000000003,201
2017-12-15 08:28,-4.6,17.671826000000003,23.264176000000003,191
2017-12-15 08:30,-4.6,15.211192,20.803542000000004,197
2017-12-15 08:32,-4.6,12.974252,15.882274,192
2017-12-15 08:34,-4.6,14.54011,18.342908,192
2017-12-15 08:36,-4.6,11.408394,14.092722,199
2017-12-15 08:38,-4.5,11.632088000000001,15.434886000000002,190
2017-12-15 08:40,-4.5,14.316416000000002,17.224438000000003,189
2017-12-15 08:42,-4.5,14.54011,18.566602000000003,187
2017-12-15 08:44,-4.6,12.303170000000001,16.777050000000003,187
2017-12-15 08:46,-4.5,10.961006000000001,14.316416000000002,189
2017-12-15 08:48,-4.5,14.316416000000002,16.553356,190
2017-12-15 08:50,-4.4,14.763804,18.342908,187
2017-12-15 08:52,-4.4,14.54011,18.566602000000003,196
2017-12-15 08:54,-4.4,13.197946000000002,17.448132,178
2017-12-15 08:56,-4.4,12.526864,15.211192,187
2017-12-15 08:58,-4.3,12.079476000000001,14.987498000000002,182
2017-12-15 09:00,-4.3,11.632088000000001,15.434886000000002,185
2017-12-15 09:02,-4.3,12.303170000000001,14.316416000000002,195
2017-12-15 09:04,-4.3,10.961006000000001,14.763804,194
2017-12-15 09:06,-4.3,11.855782,14.316416000000002,187
2017-12-15 09:08,-4.3,11.632088000000001,13.197946000000002,184
2017-12-15 09:10,-4.3,13.869028000000002,18.119214,184
2017-12-15 09:12,-4.3,16.777050000000003,20.579848,180
2017-12-15 09:14,-4.3,12.974252,16.105968,190
2017-12-15 09:16,-4.3,13.869028000000002,19.01399,190
2017-12-15 09:18,-4.3,11.855782,15.882274,183
2017-12-15 09:20,-4.2,9.618842,11.855782,196
2017-12-15 09:22,-4.2,14.763804,17.448132,187
2017-12-15 09:24,-4.2,12.526864,14.987498000000002,181
2017-12-15 09:26,-4.1,16.553356,20.132460000000002,196
2017-12-15 09:28,-4.1,12.974252,15.65858,187
2017-12-15 09:30,-4,13.869028000000002,18.119214,185
2017-12-15 09:32,-4,12.303170000000001,16.553356,183
2017-12-15 09:34,-4,14.763804,19.908766000000004,181
2017-12-15 09:36,-3.9,19.237684,23.040482000000004,184
2017-12-15 09:38,-3.9,16.329662,21.922012000000002,195
2017-12-15 09:40,-3.8,13.42164,16.553356,197
2017-12-15 09:42,-3.9,16.777050000000003,20.579848,192
2017-12-15 09:44,-3.8,14.763804,20.579848,187
2017-12-15 09:46,-3.9,17.89552,21.922012000000002,192
2017-12-15 09:48,-3.8,19.461378,29.751302000000003,183
2017-12-15 09:50,-3.9,20.356154,24.382646,197
2017-12-15 09:52,-3.8,14.54011,17.89552,195
2017-12-15 09:54,-3.8,17.671826000000003,20.132460000000002,190
2017-12-15 09:56,-3.8,16.329662,19.461378,190
2017-12-15 09:58,-3.8,18.790296,24.382646,186
2017-12-15 10:00,-3.8,17.89552,22.593094,190
2017-12-15 10:02,-3.8,21.25093,24.158952000000003,180
2017-12-15 10:04,-3.8,19.685072,23.040482000000004,186
2017-12-15 10:06,-3.8,18.119214,24.158952000000003,190
2017-12-15 10:08,-3.8,17.224438000000003,23.264176000000003,187
2017-12-15 10:10,-3.7,16.553356,22.145706,191
2017-12-15 10:12,-3.8,16.777050000000003,21.698318,176
2017-12-15 10:14,-3.7,19.237684,23.48787,183
2017-12-15 10:16,-3.7,19.685072,23.040482000000004,190
2017-12-15 10:18,-3.7,20.132460000000002,27.738056000000004,197
2017-12-15 10:20,-3.8,22.145706,29.08022,189
2017-12-15 10:22,-3.7,21.474624000000002,27.290668,197
2017-12-15 10:24,-3.7,20.803542000000004,25.277422000000005,203
2017-12-15 10:26,-3.6,14.316416000000002,18.790296,205
2017-12-15 10:28,-3.5,13.869028000000002,16.777050000000003,205
2017-12-15 10:30,-3.6,21.922012000000002,26.619586,203
2017-12-15 10:32,-3.6,18.566602000000003,23.711564,204
2017-12-15 10:34,-3.7,20.579848,25.72481,205
2017-12-15 10:36,-3.8,19.237684,23.711564,207
2017-12-15 10:38,-3.7,17.448132,25.277422000000005,200
2017-12-15 10:40,-3.8,20.132460000000002,25.501116000000003,203
2017-12-15 10:42,-3.8,18.790296,27.290668,209
2017-12-15 10:44,-3.8,18.790296,23.711564,209
2017-12-15 10:46,-3.8,20.579848,28.409138,209
2017-12-15 10:48,-3.8,15.434886000000002,22.593094,202
2017-12-15 10:50,-3.8,17.224438000000003,23.48787,201
2017-12-15 10:52,-3.7,19.237684,25.948504,202
2017-12-15 10:54,-3.8,17.000744,19.461378,198
2017-12-15 10:56,-3.7,17.671826000000003,19.685072,189
2017-12-15 10:58,-3.7,21.027236000000002,27.290668,197
2017-12-15 11:00,-3.7,16.329662,19.461378,194
2017-12-15 11:02,-3.6,14.316416000000002,19.461378,201
2017-12-15 11:04,-3.5,14.987498000000002,19.908766000000004,212
2017-12-15 11:06,-3.4,13.869028000000002,21.474624000000002,203
2017-12-15 11:08,-3.3,13.42164,19.461378,200
2017-12-15 11:10,-3.3,17.224438000000003,24.830034,191
2017-12-15 11:12,-3.4,17.671826000000003,23.711564,191
2017-12-15 11:14,-3.3,16.777050000000003,21.25093,199
2017-12-15 11:16,-3.4,18.790296,21.922012000000002,201
2017-12-15 11:18,-3.5,19.01399,22.593094,206
2017-12-15 11:20,-3.4,14.763804,17.448132,194
2017-12-15 11:22,-3.3,12.974252,16.329662,196
2017-12-15 11:24,-3.3,15.882274,20.803542000000004,202
2017-12-15 11:26,-3.2,13.645334,15.211192,200
2017-12-15 11:28,-3.2,16.105968,22.816788,190
2017-12-15 11:30,-3.3,17.000744,20.803542000000004,200
2017-12-15 11:32,-3.3,16.329662,20.579848,199
2017-12-15 11:34,-3.2,15.882274,20.132460000000002,195
2017-12-15 11:36,-3.1,19.01399,24.158952000000003,187
2017-12-15 11:38,-3.3,17.89552,22.145706,192
2017-12-15 11:40,-3.3,16.105968,20.132460000000002,202
2017-12-15 11:42,-3.2,17.448132,21.922012000000002,208
2017-12-15 11:44,-3.3,16.553356,20.579848,198
2017-12-15 11:46,-3.2,14.763804,18.119214,198
2017-12-15 11:48,-3.1,11.855782,17.000744,204
2017-12-15 11:50,-3,12.750558000000002,15.882274,198
2017-12-15 11:52,-3.1,16.105968,20.132460000000002,202
2017-12-15 11:54,-3.1,17.000744,23.040482000000004,195
2017-12-15 11:56,-3.1,16.553356,21.027236000000002,200
2017-12-15 11:58,-3,17.224438000000003,25.501116000000003,208
2017-12-15 12:00,-3.2,18.790296,25.277422000000005,209
2017-12-15 12:02,-3.3,16.553356,22.145706,201
2017-12-15 12:04,-3.1,12.750558000000002,19.01399,212
2017-12-15 12:06,-2.9,12.079476000000001,18.342908,212
2017-12-15 12:08,-3,17.224438000000003,22.593094,221
2017-12-15 12:10,-3.1,14.54011,20.356154,215
2017-12-15 12:12,-3.1,17.671826000000003,23.48787,213
2017-12-15 12:14,-3.2,15.434886000000002,18.566602000000003,207
2017-12-15 12:16,-3.2,14.987498000000002,23.935258,215
2017-12-15 12:18,-3.2,20.803542000000004,29.08022,199
2017-12-15 12:20,-3.1,15.211192,21.25093,212
2017-12-15 12:22,-3.1,19.908766000000004,23.48787,209
2017-12-15 12:24,-3.2,16.777050000000003,22.593094,210
2017-12-15 12:26,-3,13.645334,19.685072,201
2017-12-15 12:28,-3,19.237684,23.935258,187
2017-12-15 12:30,-2.9,17.448132,22.593094,200
2017-12-15 12:32,-3.1,19.685072,22.593094,196
2017-12-15 12:34,-3.1,17.448132,21.027236000000002,200
2017-12-15 12:36,-3,15.211192,18.566602000000003,200
2017-12-15 12:38,-3.1,15.65858,18.119214,209
2017-12-15 12:40,-3,13.42164,15.65858,201
2017-12-15 12:42,-3.1,15.882274,20.803542000000004,190
2017-12-15 12:44,-3,16.105968,21.474624000000002,194
2017-12-15 12:46,-3,17.671826000000003,26.619586,209
2017-12-15 12:48,-3,16.105968,21.25093,187
2017-12-15 12:50,-3,14.316416000000002,18.119214,188
2017-12-15 12:52,-2.9,13.197946000000002,17.448132,201
2017-12-15 12:54,-2.9,11.855782,15.434886000000002,197
2017-12-15 12:56,-2.9,11.184700000000001,13.869028000000002,199
2017-12-15 12:58,-2.9,9.842536,13.645334,205
2017-12-15 13:00,-2.9,11.632088000000001,14.763804,207
2017-12-15 13:02,-2.9,12.526864,14.763804,202
2017-12-15 13:04,-2.9,12.303170000000001,17.000744,196
2017-12-15 13:06,-2.8,13.869028000000002,15.882274,189
2017-12-15 13:08,-2.8,14.54011,17.448132,196
2017-12-15 13:10,-2.8,12.750558000000002,14.763804,190
2017-12-15 13:12,-2.7,11.855782,15.211192,203
2017-12-15 13:14,-2.8,12.526864,16.105968,210
2017-12-15 13:16,-2.7,12.303170000000001,15.434886000000002,203
2017-12-15 13:18,-2.8,14.987498000000002,17.671826000000003,208
2017-12-15 13:20,-2.8,13.869028000000002,16.329662,199
2017-12-15 13:22,-2.8,11.632088000000001,13.869028000000002,193
2017-12-15 13:24,-2.7,11.408394,13.869028000000002,196
2017-12-15 13:26,-2.8,13.197946000000002,16.777050000000003,202
2017-12-15 13:28,-2.7,10.513618000000001,12.974252,201
2017-12-15 13:30,-2.7,9.618842,16.777050000000003,199
2017-12-15 13:32,-2.7,12.079476000000001,15.882274,202
2017-12-15 13:34,-2.8,12.303170000000001,16.105968,202
2017-12-15 13:36,-2.7,9.395148,12.079476000000001,206
2017-12-15 13:38,-2.7,11.632088000000001,14.54011,198
2017-12-15 13:40,-2.7,13.197946000000002,14.987498000000002,202
2017-12-15 13:42,-2.8,12.303170000000001,14.092722,202
2017-12-15 13:44,-2.7,11.855782,15.434886000000002,202
2017-12-15 13:46,-2.6,8.276678,12.750558000000002,188
2017-12-15 13:48,-2.6,9.395148,11.408394,199
2017-12-15 13:50,-2.6,10.289924,12.079476000000001,205
2017-12-15 13:52,-2.7,7.605596,10.513618000000001,197
2017-12-15 13:54,-2.6,8.500372,10.737312000000001,194
2017-12-15 13:56,-2.6,11.632088000000001,13.197946000000002,200
2017-12-15 13:58,-2.5,9.618842,11.632088000000001,199
2017-12-15 14:00,-2.5,8.724066,10.737312000000001,195
2017-12-15 14:02,-2.4,8.276678,10.513618000000001,198
2017-12-15 14:04,-2.3,8.724066,10.961006000000001,186
2017-12-15 14:06,-2.3,6.934514000000001,9.842536,195
2017-12-15 14:08,-2.3,11.408394,15.211192,195
2017-12-15 14:10,-2.3,11.855782,14.092722,201
2017-12-15 14:12,-2.2,12.079476000000001,14.54011,196
2017-12-15 14:14,-2.2,8.94776,10.513618000000001,193
2017-12-15 14:16,-2.1,9.395148,10.737312000000001,183
2017-12-15 14:18,-2.1,9.395148,11.408394,183
2017-12-15 14:20,-2,9.618842,13.42164,179
2017-12-15 14:22,-1.9,10.066230000000001,12.750558000000002,178
2017-12-15 14:24,-1.9,13.869028000000002,18.342908,168
2017-12-15 14:26,-1.9,11.855782,17.000744,189
2017-12-15 14:28,-1.8,12.750558000000002,16.105968,195
2017-12-15 14:30,-1.8,10.961006000000001,14.092722,179
2017-12-15 14:32,-1.7,12.079476000000001,15.882274,178
2017-12-15 14:34,-1.8,12.750558000000002,16.105968,182
2017-12-15 14:36,-1.7,12.750558000000002,18.342908,185
2017-12-15 14:38,-1.7,11.408394,14.316416000000002,180
2017-12-15 14:40,-1.6,12.079476000000001,13.869028000000002,191
2017-12-15 14:42,-1.7,10.513618000000001,16.329662,170
2017-12-15 14:44,-1.6,12.079476000000001,15.882274,172
2017-12-15 14:46,-1.5,13.42164,15.434886000000002,177
2017-12-15 14:48,-1.6,13.197946000000002,16.329662,180
2017-12-15 14:50,-1.6,13.645334,18.342908,169
2017-12-15 14:52,-1.5,14.092722,18.342908,167
2017-12-15 14:54,-1.5,14.54011,18.119214,170
2017-12-15 14:56,-1.5,13.869028000000002,19.237684,176
2017-12-15 14:58,-1.5,12.750558000000002,16.329662,180
2017-12-15 15:00,-1.4,10.513618000000001,14.092722,171
2017-12-15 15:02,-1.4,10.961006000000001,12.750558000000002,182
2017-12-15 15:04,-1.4,10.289924,12.974252,178
2017-12-15 15:06,-1.3,9.842536,11.632088000000001,174
2017-12-15 15:08,-1.3,11.184700000000001,15.65858,154
2017-12-15 15:10,-1.3,12.303170000000001,14.763804,176
2017-12-15 15:12,-1.4,14.316416000000002,19.01399,185
2017-12-15 15:14,-1.4,14.316416000000002,18.790296,179
2017-12-15 15:16,-1.4,12.303170000000001,16.105968,178
2017-12-15 15:18,-1.3,10.066230000000001,14.092722,174
2017-12-15 15:20,-1.2,9.395148,11.632088000000001,181
2017-12-15 15:22,-1.2,10.289924,12.750558000000002,172
2017-12-15 15:24,-1.3,9.395148,13.42164,186
2017-12-15 15:26,-1.2,12.079476000000001,14.316416000000002,174
2017-12-15 15:28,-1.2,11.855782,14.316416000000002,162
2017-12-15 15:30,-1.3,11.632088000000001,14.763804,168
2017-12-15 15:32,-1.3,12.079476000000001,15.211192,166
2017-12-15 15:34,-1.3,11.184700000000001,13.869028000000002,168
2017-12-15 15:36,-1.2,13.197946000000002,17.448132,161
2017-12-15 15:38,-1.3,13.197946000000002,15.882274,163
2017-12-15 15:40,-1.2,13.197946000000002,14.987498000000002,164
2017-12-15 15:42,-1.2,10.066230000000001,11.632088000000001,161
2017-12-15 15:44,-1.1,10.961006000000001,12.974252,171
2017-12-15 15:46,-1.1,10.737312000000001,13.197946000000002,152
2017-12-15 15:48,-1.1,12.079476000000001,13.869028000000002,163
2017-12-15 15:50,-1.1,11.408394,13.645334,155
2017-12-15 15:52,-1.1,12.750558000000002,16.777050000000003,152
2017-12-15 15:54,-1.1,12.526864,14.763804,153
2017-12-15 15:56,-1.1,10.961006000000001,12.750558000000002,153
2017-12-15 15:58,-1.1,11.855782,14.987498000000002,143
2017-12-15 16:00,-1.1,9.842536,12.526864,163
2017-12-15 16:02,-1,9.395148,12.303170000000001,156
2017-12-15 16:04,-1,8.052984,10.066230000000001,161
2017-12-15 16:06,-1,8.94776,11.632088000000001,171
2017-12-15 16:08,-1,8.94776,11.408394,167
2017-12-15 16:10,-1,10.066230000000001,13.197946000000002,176
2017-12-15 16:12,-1,6.934514000000001,8.94776,174
2017-12-15 16:14,-1,9.395148,11.855782,173
2017-12-15 16:16,-1,10.961006000000001,12.974252,166
2017-12-15 16:18,-1,8.724066,11.408394,159
2017-12-15 16:20,-0.9,8.052984,9.171454,149
2017-12-15 16:22,-0.8,6.487126,9.618842,162
2017-12-15 16:24,-0.8,6.71082,9.618842,165
2017-12-15 16:26,-0.8,8.052984,9.842536,162
2017-12-15 16:28,-0.8,7.605596,9.395148,162
2017-12-15 16:30,-0.8,8.500372,10.513618000000001,150
2017-12-15 16:32,-0.8,7.381902,9.171454,157
2017-12-15 16:34,-0.7,8.276678,10.066230000000001,154
2017-12-15 16:36,-0.7,8.276678,9.842536,152
2017-12-15 16:38,-0.7,7.381902,9.395148,152
2017-12-15 16:40,-0.7,7.158208000000001,8.500372,147
2017-12-15 16:42,-0.7,5.816044000000001,6.71082,148
2017-12-15 16:44,-0.7,6.487126,8.052984,137
2017-12-15 16:46,-0.7,6.934514000000001,8.276678,139
2017-12-15 16:48,-0.7,8.052984,10.066230000000001,144
2017-12-15 16:50,-0.8,7.82929,9.171454,145
2017-12-15 16:52,-0.7,8.276678,9.618842,139
2017-12-15 16:54,-0.7,7.82929,8.94776,137
2017-12-15 16:56,-0.7,8.052984,8.94776,145
2017-12-15 16:58,-0.7,7.158208000000001,9.395148,139
2017-12-15 17:00,-0.7,8.276678,9.842536,145
2017-12-15 17:02,-0.7,8.94776,10.513618000000001,150
2017-12-15 17:04,-0.7,9.842536,11.632088000000001,146
2017-12-15 17:06,-0.7,9.171454,10.513618000000001,143
2017-12-15 17:08,-0.7,8.724066,10.066230000000001,139
2017-12-15 17:10,-0.7,8.724066,10.289924,144
2017-12-15 17:12,-0.6,7.605596,8.94776,145
2017-12-15 17:14,-0.6,7.158208000000001,8.052984,143
2017-12-15 17:16,-0.6,7.381902,8.500372,149
2017-12-15 17:18,-0.6,7.381902,8.724066,148
2017-12-15 17:20,-0.6,6.71082,7.605596,143
2017-12-15 17:22,-0.6,6.934514000000001,8.724066,144
2017-12-15 17:24,-0.6,7.381902,10.066230000000001,141
2017-12-15 17:26,-0.7,8.500372,10.066230000000001,140
2017-12-15 17:28,-0.7,8.276678,9.395148,145
2017-12-15 17:30,-0.6,7.381902,8.94776,137
2017-12-15 17:32,-0.7,7.82929,9.171454,134
2017-12-15 17:34,-0.7,7.605596,9.171454,131
2017-12-15 17:36,-0.7,8.500372,10.066230000000001,130
2017-12-15 17:38,-0.7,8.500372,9.171454,133
2017-12-15 17:40,-0.7,8.94776,9.618842,130
2017-12-15 17:42,-0.7,8.94776,10.066230000000001,137
2017-12-15 17:44,-0.7,9.171454,10.289924,135
2017-12-15 17:46,-0.7,9.618842,12.526864,133
2017-12-15 17:48,-0.7,10.961006000000001,12.303170000000001,136
2017-12-15 17:50,-0.6,8.94776,9.842536,134
2017-12-15 17:52,-0.6,9.395148,10.961006000000001,138
2017-12-15 17:54,-0.6,8.94776,10.289924,144
2017-12-15 17:56,-0.6,9.618842,10.513618000000001,138
2017-12-15 17:58,-0.6,9.842536,11.632088000000001,135
2017-12-15 18:00,-0.7,9.395148,11.632088000000001,138
2017-12-15 18:02,-0.7,9.842536,10.513618000000001,136
2017-12-15 18:04,-0.7,8.94776,9.842536,140
2017-12-15 18:06,-0.6,10.513618000000001,12.750558000000002,141
2017-12-15 18:08,-0.7,10.289924,11.408394,140
2017-12-15 18:10,-0.6,10.513618000000001,11.855782,147
2017-12-15 18:12,-0.6,10.289924,11.855782,148
2017-12-15 18:14,-0.6,10.289924,12.303170000000001,147
2017-12-15 18:16,-0.6,11.184700000000001,12.974252,144
2017-12-15 18:18,-0.6,9.395148,11.184700000000001,147
2017-12-15 18:20,-0.6,10.513618000000001,12.303170000000001,149
2017-12-15 18:22,-0.6,10.737312000000001,12.750558000000002,143
2017-12-15 18:24,-0.7,12.079476000000001,14.316416000000002,141
2017-12-15 18:26,-0.7,10.961006000000001,12.974252,144
2017-12-15 18:28,-0.6,10.513618000000001,12.750558000000002,151
2017-12-15 18:30,-0.6,10.289924,11.632088000000001,148
2017-12-15 18:32,-0.6,11.408394,13.645334,149
2017-12-15 18:34,-0.6,12.303170000000001,14.092722,144
2017-12-15 18:36,-0.6,10.961006000000001,12.303170000000001,139
2017-12-15 18:38,-0.6,11.184700000000001,12.303170000000001,143
2017-12-15 18:40,-0.6,10.289924,11.184700000000001,147
2017-12-15 18:42,-0.6,11.184700000000001,12.750558000000002,141
2017-12-15 18:44,-0.6,11.184700000000001,12.526864,140
2017-12-15 18:46,-0.6,12.750558000000002,15.434886000000002,143
2017-12-15 18:48,-0.6,11.184700000000001,12.526864,147
2017-12-15 18:50,-0.5,10.737312000000001,11.855782,139
2017-12-15 18:52,-0.5,11.184700000000001,12.079476000000001,145
2017-12-15 18:54,-0.5,10.289924,12.079476000000001,145
2017-12-15 18:56,-0.5,12.303170000000001,13.869028000000002,146
2017-12-15 18:58,-0.4,11.855782,14.316416000000002,151
2017-12-15 19:00,-0.4,12.303170000000001,14.763804,144
2017-12-15 19:02,-0.4,11.408394,13.197946000000002,150
2017-12-15 19:04,-0.4,10.737312000000001,12.079476000000001,148
2017-12-15 19:06,-0.4,10.737312000000001,12.526864,145
2017-12-15 19:08,-0.4,11.855782,15.211192,142
2017-12-15 19:10,-0.4,10.066230000000001,11.632088000000001,144
2017-12-15 19:12,-0.4,11.855782,15.65858,142
2017-12-15 19:14,-0.4,12.079476000000001,14.987498000000002,144
2017-12-15 19:16,-0.3,12.526864,14.987498000000002,144
2017-12-15 19:18,-0.3,11.408394,15.434886000000002,147
2017-12-15 19:20,-0.3,9.842536,10.961006000000001,148
2017-12-15 19:22,-0.3,10.961006000000001,14.54011,144
2017-12-15 19:24,-0.3,13.645334,15.434886000000002,141
2017-12-15 19:26,-0.3,12.750558000000002,14.092722,146
2017-12-15 19:28,-0.3,12.750558000000002,14.316416000000002,145
2017-12-15 19:30,-0.3,10.961006000000001,14.54011,151
2017-12-15 19:32,-0.3,11.632088000000001,14.092722,145
2017-12-15 19:34,-0.3,10.961006000000001,12.750558000000002,134
2017-12-15 19:36,-0.3,11.855782,13.197946000000002,141
2017-12-15 19:38,-0.3,11.408394,12.750558000000002,140
2017-12-15 19:40,-0.2,11.408394,13.42164,150
2017-12-15 19:42,-0.2,10.066230000000001,11.855782,146
2017-12-15 19:44,-0.3,10.066230000000001,11.632088000000001,142
2017-12-15 19:46,-0.2,9.842536,11.408394,151
2017-12-15 19:48,-0.2,10.737312000000001,12.303170000000001,147
2017-12-15 19:50,-0.2,10.961006000000001,12.750558000000002,151
2017-12-15 19:52,-0.2,10.737312000000001,14.316416000000002,144
2017-12-15 19:54,-0.2,12.303170000000001,14.54011,148
2017-12-15 19:56,-0.2,11.855782,13.869028000000002,159
2017-12-15 19:58,-0.2,9.395148,11.855782,141
2017-12-15 20:00,-0.2,10.961006000000001,14.316416000000002,140
2017-12-15 20:02,-0.2,10.513618000000001,11.855782,152
2017-12-15 20:04,-0.2,9.618842,10.961006000000001,146
2017-12-15 20:06,-0.2,9.171454,10.513618000000001,146
2017-12-15 20:08,-0.2,9.171454,11.408394,139
2017-12-15 20:10,-0.2,8.724066,11.632088000000001,139
2017-12-15 20:12,-0.2,9.171454,10.513618000000001,142
2017-12-15 20:14,-0.2,8.276678,9.618842,146
2017-12-15 20:16,-0.2,8.052984,9.618842,144
2017-12-15 20:18,-0.2,8.94776,10.066230000000001,152
2017-12-15 20:20,-0.2,8.052984,8.94776,148
2017-12-15 20:22,-0.2,7.158208000000001,8.500372,147
2017-12-15 20:24,-0.2,7.381902,8.052984,146
2017-12-15 20:26,-0.2,9.618842,11.408394,156
2017-12-15 20:28,-0.2,9.618842,10.513618000000001,144
2017-12-15 20:30,-0.2,8.724066,9.842536,137
2017-12-15 20:32,-0.2,8.500372,10.289924,141
2017-12-15 20:34,-0.2,7.82929,9.842536,136
2017-12-15 20:36,-0.3,8.276678,10.289924,139
2017-12-15 20:38,-0.3,8.052984,9.395148,134
2017-12-15 20:40,-0.3,8.276678,9.842536,142
2017-12-15 20:42,-0.3,8.724066,9.842536,137
2017-12-15 20:44,-0.3,9.395148,11.184700000000001,137
2017-12-15 20:46,-0.3,10.737312000000001,13.197946000000002,139
2017-12-15 20:48,-0.4,10.066230000000001,11.632088000000001,133
2017-12-15 20:50,-0.4,11.184700000000001,14.092722,135
2017-12-15 20:52,-0.4,10.513618000000001,13.197946000000002,133
2017-12-15 20:54,-0.4,9.171454,10.066230000000001,138
2017-12-15 20:56,-0.4,9.618842,10.961006000000001,132
2017-12-15 20:58,-0.4,10.066230000000001,11.632088000000001,135
2017-12-15 21:00,-0.4,8.724066,10.737312000000001,130
2017-12-15 21:02,-0.4,8.052984,10.289924,136
2017-12-15 21:04,-0.4,8.724066,10.737312000000001,137
2017-12-15 21:06,-0.4,8.052984,9.171454,132
2017-12-15 21:08,-0.3,8.276678,10.513618000000001,131
2017-12-15 21:10,-0.4,9.171454,10.513618000000001,131
2017-12-15 21:12,-0.4,9.842536,11.184700000000001,137
2017-12-15 21:14,-0.4,8.94776,10.513618000000001,132
2017-12-15 21:16,-0.4,9.842536,11.184700000000001,128
2017-12-15 21:18,-0.4,9.842536,11.184700000000001,128
2017-12-15 21:20,-0.4,10.513618000000001,11.855782,131
2017-12-15 21:22,-0.4,9.395148,10.289924,129
2017-12-15 21:24,-0.4,8.94776,10.961006000000001,130
2017-12-15 21:26,-0.4,8.724066,10.289924,132
2017-12-15 21:28,-0.4,7.605596,8.276678,132
2017-12-15 21:30,-0.4,8.724066,10.289924,134
2017-12-15 21:32,-0.4,8.500372,9.842536,134
2017-12-15 21:34,-0.4,8.724066,9.618842,136
2017-12-15 21:36,-0.4,8.724066,9.618842,135
2017-12-15 21:38,-0.4,8.724066,9.842536,131
2017-12-15 21:40,-0.4,10.513618000000001,12.079476000000001,132
2017-12-15 21:42,-0.4,9.171454,10.066230000000001,132
2017-12-15 21:44,-0.3,8.724066,10.289924,129
2017-12-15 21:46,-0.3,8.500372,9.395148,134
2017-12-15 21:48,-0.3,8.94776,9.395148,137
2017-12-15 21:50,-0.3,8.94776,9.842536,133
2017-12-15 21:52,-0.3,8.052984,10.513618000000001,125
2017-12-15 21:54,-0.4,8.052984,10.066230000000001,121
2017-12-15 21:56,-0.4,10.513618000000001,11.632088000000001,123
2017-12-15 21:58,-0.5,10.513618000000001,11.408394,121
2017-12-15 22:00,-0.5,9.842536,11.184700000000001,121
2017-12-15 22:02,-0.6,10.066230000000001,10.961006000000001,128
2017-12-15 22:04,-0.6,10.513618000000001,11.632088000000001,126
2017-12-15 22:06,-0.6,9.395148,10.289924,124
2017-12-15 22:08,-0.6,9.171454,10.513618000000001,128
2017-12-15 22:10,-0.7,8.724066,9.395148,127
2017-12-15 22:12,-0.6,8.052984,8.94776,127
2017-12-15 22:14,-0.7,8.276678,8.94776,129
2017-12-15 22:16,-0.7,7.381902,8.276678,126
2017-12-15 22:18,-0.7,7.158208000000001,8.500372,125
2017-12-15 22:20,-0.6,6.263432,7.381902,126
2017-12-15 22:22,-0.6,6.039738000000001,6.71082,121
2017-12-15 22:24,-0.7,6.263432,7.158208000000001,126
2017-12-15 22:26,-0.7,6.71082,7.605596,135
2017-12-15 22:28,-0.6,5.816044000000001,6.263432,124
2017-12-15 22:30,-0.6,5.592350000000001,6.263432,130
2017-12-15 22:32,-0.7,5.3686560000000005,6.263432,128
2017-12-15 22:34,-0.6,5.592350000000001,6.263432,125
2017-12-15 22:36,-0.6,5.144962,5.592350000000001,133
2017-12-15 22:38,-0.6,5.3686560000000005,6.263432,129
2017-12-15 22:40,-0.6,5.592350000000001,6.487126,123
2017-12-15 22:42,-0.6,5.816044000000001,6.487126,121
2017-12-15 22:44,-0.5,5.816044000000001,6.934514000000001,126
2017-12-15 22:46,-0.5,5.592350000000001,7.381902,113
2017-12-15 22:48,-0.4,5.592350000000001,6.934514000000001,110
2017-12-15 22:50,-0.5,6.487126,7.158208000000001,103
2017-12-15 22:52,-0.6,6.487126,7.381902,106
2017-12-15 22:54,-0.6,5.144962,5.592350000000001,103
2017-12-15 22:56,-0.6,4.47388,5.592350000000001,108
2017-12-15 22:58,-0.6,4.47388,5.144962,102
2017-12-15 23:00,-0.6,4.250186,4.921268,103
2017-12-15 23:02,-0.5,3.802798,4.697574,96
2017-12-15 23:04,-0.5,3.131716,4.250186,103
2017-12-15 23:06,-0.5,4.026492,5.144962,101
2017-12-15 23:08,-0.5,4.250186,4.697574,111
2017-12-15 23:10,-0.5,3.802798,4.250186,112
2017-12-15 23:12,-0.5,4.026492,6.039738000000001,109
2017-12-15 23:14,-0.5,4.921268,5.3686560000000005,111
2017-12-15 23:16,-0.5,4.697574,5.3686560000000005,116
2017-12-15 23:18,-0.5,4.026492,4.697574,109
2017-12-15 23:20,-0.5,4.697574,5.3686560000000005,111
2017-12-15 23:22,-0.5,4.026492,4.921268,114
2017-12-15 23:24,-0.5,4.026492,4.250186,117
2017-12-15 23:26,-0.5,3.5791040000000005,4.250186,112
2017-12-15 23:28,-0.4,3.5791040000000005,5.592350000000001,117
2017-12-15 23:30,-0.4,3.131716,3.802798,126
2017-12-15 23:32,-0.4,3.131716,3.5791040000000005,121
2017-12-15 23:34,-0.5,2.9080220000000003,3.35541,113
2017-12-15 23:36,-0.4,3.5791040000000005,4.250186,106
2017-12-15 23:38,-0.4,2.9080220000000003,3.5791040000000005,103
2017-12-15 23:40,-0.5,3.802798,4.697574,107
2017-12-15 23:42,-0.4,4.250186,4.921268,109
2017-12-15 23:44,-0.4,3.5791040000000005,4.47388,107
2017-12-15 23:46,-0.4,2.9080220000000003,3.5791040000000005,101
2017-12-15 23:48,-0.4,2.23694,2.9080220000000003,85
2017-12-15 23:50,-0.3,2.013246,2.460634,69
2017-12-15 23:52,-0.3,3.131716,3.802798,79
2017-12-15 23:54,-0.3,2.9080220000000003,3.35541,85
2017-12-15 23:56,-0.3,3.5791040000000005,3.802798,90
2017-12-15 23:58,-0.3,4.026492,4.697574,103
2017-12-16 00:00,-0.3,4.250186,4.47388,105
2017-12-16 00:02,-0.3,4.250186,4.921268,94
2017-12-16 00:04,-0.3,4.250186,4.921268,104
2017-12-16 00:06,-0.3,4.47388,5.144962,97
2017-12-16 00:08,-0.3,4.47388,4.921268,91
2017-12-16 00:10,-0.2,3.802798,4.921268,91
2017-12-16 00:12,-0.2,3.5791040000000005,4.921268,85
2017-12-16 00:14,-0.2,3.131716,3.5791040000000005,91
2017-12-16 00:16,-0.1,2.6843280000000003,3.35541,87
2017-12-16 00:18,-0.1,3.5791040000000005,4.026492,73
2017-12-16 00:20,-0.1,4.026492,4.47388,82
2017-12-16 00:22,-0.1,3.5791040000000005,4.250186,86
2017-12-16 00:24,-0.1,3.802798,4.47388,83
2017-12-16 00:26,-0.1,3.802798,4.697574,91
2017-12-16 00:28,-0.1,4.250186,4.921268,92
2017-12-16 00:30,0,4.250186,5.3686560000000005,92
2017-12-16 00:32,-0.1,4.697574,5.3686560000000005,95
2017-12-16 00:34,0,4.250186,4.921268,95
2017-12-16 00:36,0,4.47388,5.144962,97
2017-12-16 00:38,0,4.697574,5.3686560000000005,99
2017-12-16 00:40,0,4.250186,4.921268,98
2017-12-16 00:42,-0.1,4.026492,4.697574,105
2017-12-16 00:44,0,4.250186,4.921268,100
2017-12-16 00:46,-0.1,4.250186,4.47388,103
2017-12-16 00:48,-0.1,4.47388,5.144962,96
2017-12-16 00:50,-0.1,4.697574,4.921268,103
2017-12-16 00:52,0,4.47388,5.144962,98
2017-12-16 00:54,0,5.3686560000000005,5.816044000000001,98
2017-12-16 00:56,-0.1,4.921268,5.592350000000001,101
2017-12-16 00:58,-0.1,4.921268,5.3686560000000005,101
2017-12-16 01:00,0,4.250186,4.921268,102
2017-12-16 01:02,-0.1,4.026492,4.47388,97
2017-12-16 01:04,0,4.47388,4.921268,97
2017-12-16 01:06,-0.1,4.250186,4.921268,99
2017-12-16 01:08,-0.1,4.250186,4.47388,95
2017-12-16 01:10,0,4.026492,4.47388,94
2017-12-16 01:12,0,3.5791040000000005,3.802798,95
2017-12-16 01:14,0,4.47388,4.921268,91
2017-12-16 01:16,-0.1,3.802798,4.47388,97
2017-12-16 01:18,-0.1,4.250186,4.921268,99
2017-12-16 01:20,-0.1,3.802798,4.697574,92
2017-12-16 01:22,0,3.131716,4.250186,83
2017-12-16 01:24,0,3.35541,4.47388,88
2017-12-16 01:26,0,3.35541,4.026492,87
2017-12-16 01:28,0,4.026492,4.47388,83
2017-12-16 01:30,0,3.35541,4.250186,84
2017-12-16 01:32,0.1,3.35541,3.5791040000000005,85
2017-12-16 01:34,0.1,3.35541,3.5791040000000005,79
2017-12-16 01:36,0.1,3.131716,3.802798,74
2017-12-16 01:38,0.1,3.35541,3.802798,87
2017-12-16 01:40,0.1,3.35541,3.802798,82
2017-12-16 01:42,0.1,3.131716,4.026492,94
2017-12-16 01:44,0.1,3.131716,4.250186,90
2017-12-16 01:46,0.2,3.35541,4.250186,76
2017-12-16 01:48,0.1,3.5791040000000005,4.47388,73
2017-12-16 01:50,0.1,3.35541,3.802798,76
2017-12-16 01:52,0.2,3.802798,4.250186,67
2017-12-16 01:54,0.2,3.802798,4.250186,71
2017-12-16 01:56,0.2,3.802798,4.250186,59
2017-12-16 01:58,0.2,4.250186,4.697574,68
2017-12-16 02:00,0.2,4.47388,5.144962,66
2017-12-16 02:02,0.2,4.250186,4.697574,72
2017-12-16 02:04,0.2,3.35541,3.802798,72
2017-12-16 02:06,0.2,2.6843280000000003,3.35541,67
2017-12-16 02:08,0.3,2.23694,2.9080220000000003,65
2017-12-16 02:10,0.3,2.6843280000000003,3.35541,76
2017-12-16 02:12,0.3,2.6843280000000003,3.131716,80
2017-12-16 02:14,0.3,2.6843280000000003,3.131716,86
2017-12-16 02:16,0.3,2.23694,2.9080220000000003,91
2017-12-16 02:18,0.3,2.013246,2.23694,95
2017-12-16 02:20,0.3,1.7895520000000003,2.460634,106
2017-12-16 02:22,0.3,2.460634,2.9080220000000003,110
2017-12-16 02:24,0.3,2.23694,2.6843280000000003,105
2017-12-16 02:26,0.3,2.013246,2.460634,99
2017-12-16 02:28,0.3,1.3421640000000001,1.7895520000000003,116
2017-12-16 02:30,0.3,1.565858,2.013246,107
2017-12-16 02:32,0.3,1.11847,1.565858,102
2017-12-16 02:34,0.3,1.3421640000000001,1.565858,100
2017-12-16 02:36,0.3,0.6710820000000001,0.8947760000000001,105
2017-12-16 02:38,0.3,0.44738800000000006,0.8947760000000001,103
2017-12-16 02:40,0.3,0.44738800000000006,0.6710820000000001,97
2017-12-16 02:42,0.3,0,0,0
2017-12-16 02:44,0.3,0,0,0
2017-12-16 02:46,0.3,0,0,0
2017-12-16 02:48,0.3,0,0,0
2017-12-16 02:50,0.3,0,0,0
2017-12-16 02:52,0.3,0,0,0
2017-12-16 02:54,0.3,0,0,0
2017-12-16 02:56,0.4,0,0,0
2017-12-16 02:58,0.4,0,0,0
2017-12-16 03:00,0.4,0,0,0
2017-12-16 03:02,0.4,0,0.6710820000000001,61
2017-12-16 03:04,0.5,1.3421640000000001,2.23694,335
2017-12-16 03:06,0.6,2.6843280000000003,3.35541,286
2017-12-16 03:08,0.6,2.9080220000000003,3.35541,289
2017-12-16 03:10,0.6,3.131716,3.131716,285
2017-12-16 03:12,0.6,3.131716,3.35541,296
2017-12-16 03:14,0.6,3.35541,3.5791040000000005,297
2017-12-16 03:16,0.7,3.131716,3.35541,298
2017-12-16 03:18,0.7,3.35541,3.5791040000000005,299
2017-12-16 03:20,0.7,3.5791040000000005,4.026492,305
2017-12-16 03:22,0.8,3.5791040000000005,4.026492,309
2017-12-16 03:24,0.8,3.131716,3.35541,309
2017-12-16 03:26,0.8,3.35541,3.5791040000000005,313
2017-12-16 03:28,0.8,3.5791040000000005,4.026492,317
2017-12-16 03:30,0.9,3.5791040000000005,4.250186,319
2017-12-16 03:32,0.9,3.35541,4.250186,313
2017-12-16 03:34,0.9,3.802798,4.47388,313
2017-12-16 03:36,1,3.802798,4.250186,310
2017-12-16 03:38,1,3.5791040000000005,3.802798,311
2017-12-16 03:40,1,3.35541,3.5791040000000005,307
2017-12-16 03:42,1.1,3.35541,4.250186,306
2017-12-16 03:44,1.1,4.250186,4.697574,307
2017-12-16 03:46,1,4.921268,5.592350000000001,313
2017-12-16 03:48,1,5.144962,5.3686560000000005,308
2017-12-16 03:50,1,5.3686560000000005,5.816044000000001,309
2017-12-16 03:52,1,5.592350000000001,6.039738000000001,307
2017-12-16 03:54,1,5.816044000000001,6.263432,305
2017-12-16 03:56,1,5.592350000000001,6.263432,304
2017-12-16 03:58,1,5.592350000000001,6.263432,306
2017-12-16 04:00,1,4.921268,5.816044000000001,308
2017-12-16 04:02,1,5.3686560000000005,6.039738000000001,306
2017-12-16 04:04,1.1,5.3686560000000005,6.039738000000001,307
2017-12-16 04:06,1,6.039738000000001,6.263432,307
2017-12-16 04:08,1,5.816044000000001,6.71082,305
2017-12-16 04:10,1.1,5.144962,5.816044000000001,305
2017-12-16 04:12,1,5.3686560000000005,6.039738000000001,303
2017-12-16 04:14,1,5.144962,5.592350000000001,302
2017-12-16 04:16,1,5.144962,5.3686560000000005,294
2017-12-16 04:18,1,5.144962,5.592350000000001,290
2017-12-16 04:20,1.1,5.144962,5.592350000000001,284
2017-12-16 04:22,1,4.921268,5.3686560000000005,283
2017-12-16 04:24,1,4.697574,4.921268,289
2017-12-16 04:26,1,4.47388,4.921268,293
2017-12-16 04:28,1,4.026492,4.47388,294
2017-12-16 04:30,1,4.250186,4.697574,295
2017-12-16 04:32,1,4.250186,4.921268,294
2017-12-16 04:34,1,4.026492,4.47388,293
2017-12-16 04:36,1,4.026492,4.47388,296
2017-12-16 04:38,1.1,3.802798,4.47388,298
2017-12-16 04:40,1.1,3.5791040000000005,4.026492,298
2017-12-16 04:42,1.1,3.802798,4.026492,292
2017-12-16 04:44,1.1,3.35541,3.802798,279
2017-12-16 04:46,1.1,2.6843280000000003,3.131716,260
2017-12-16 04:48,1,3.131716,3.35541,249
2017-12-16 04:50,1,2.460634,3.131716,232
2017-12-16 04:52,0.9,2.6843280000000003,2.9080220000000003,252
2017-12-16 04:54,0.9,2.460634,3.802798,274
2017-12-16 04:56,0.9,2.6843280000000003,3.802798,284
2017-12-16 04:58,1,3.131716,3.35541,282
2017-12-16 05:00,1,3.131716,3.802798,281
2017-12-16 05:02,1.1,3.802798,4.47388,286
2017-12-16 05:04,1.1,2.9080220000000003,3.5791040000000005,282
2017-12-16 05:06,1.2,2.460634,2.6843280000000003,288
2017-12-16 05:08,1.2,3.131716,3.802798,290
2017-12-16 05:10,1.1,2.460634,3.131716,286
2017-12-16 05:12,1.1,2.6843280000000003,3.131716,283
2017-12-16 05:14,1.1,3.35541,4.026492,282
2017-12-16 05:16,1.1,3.35541,4.026492,289
2017-12-16 05:18,1.2,3.802798,4.250186,293
2017-12-16 05:20,1.2,3.5791040000000005,3.802798,293
2017-12-16 05:22,1.2,3.802798,4.47388,295
2017-12-16 05:24,1.2,4.026492,4.47388,299
2017-12-16 05:26,1.2,4.250186,4.47388,296
2017-12-16 05:28,1.3,3.802798,4.250186,299
2017-12-16 05:30,1.3,4.026492,4.47388,299
2017-12-16 05:32,1.3,4.250186,4.47388,291
2017-12-16 05:34,1.3,4.026492,4.47388,282
2017-12-16 05:36,1.4,4.026492,4.47388,280
2017-12-16 05:38,1.3,4.250186,4.47388,282
2017-12-16 05:40,1.3,3.5791040000000005,4.250186,281
2017-12-16 05:42,1.3,3.35541,3.802798,280
2017-12-16 05:44,1.3,3.35541,3.802798,284
2017-12-16 05:46,1.3,3.131716,3.5791040000000005,281
2017-12-16 05:48,1.3,2.9080220000000003,3.5791040000000005,278
2017-12-16 05:50,1.3,3.131716,3.5791040000000005,288
2017-12-16 05:52,1.3,3.131716,3.5791040000000005,292
2017-12-16 05:54,1.4,3.35541,3.802798,293
2017-12-16 05:56,1.4,3.35541,4.026492,295
2017-12-16 05:58,1.5,3.5791040000000005,4.026492,291
2017-12-16 06:00,1.5,3.5791040000000005,3.802798,291
2017-12-16 06:02,1.5,3.5791040000000005,4.026492,289
2017-12-16 06:04,1.5,3.802798,4.250186,294
2017-12-16 06:06,1.5,4.47388,4.921268,299
2017-12-16 06:08,1.5,4.47388,4.921268,302
2017-12-16 06:10,1.5,4.921268,5.3686560000000005,302
2017-12-16 06:12,1.5,4.921268,5.3686560000000005,300
2017-12-16 06:14,1.6,4.250186,4.697574,297
2017-12-16 06:16,1.5,4.026492,4.250186,292
2017-12-16 06:18,1.5,4.250186,4.47388,291
2017-12-16 06:20,1.5,4.026492,4.250186,294
2017-12-16 06:22,1.6,4.250186,4.697574,289
2017-12-16 06:24,1.6,4.250186,4.47388,283
2017-12-16 06:26,1.5,3.5791040000000005,4.026492,280
2017-12-16 06:28,1.4,3.35541,3.802798,277
2017-12-16 06:30,1.4,3.35541,3.802798,276
2017-12-16 06:32,1.4,3.131716,3.35541,275
2017-12-16 06:34,1.4,3.131716,3.5791040000000005,282
2017-12-16 06:36,1.4,3.35541,3.5791040000000005,281
2017-12-16 06:38,1.5,3.35541,3.5791040000000005,283
2017-12-16 06:40,1.5,3.35541,3.35541,283
2017-12-16 06:42,1.6,3.35541,3.5791040000000005,290
2017-12-16 06:44,1.6,2.9080220000000003,3.131716,296
2017-12-16 06:46,1.7,2.460634,2.9080220000000003,300
2017-12-16 06:48,1.7,1.7895520000000003,2.23694,293
2017-12-16 06:50,1.7,1.565858,1.7895520000000003,278
2017-12-16 06:52,1.7,2.013246,2.460634,276
2017-12-16 06:54,1.6,2.6843280000000003,3.131716,261
2017-12-16 06:56,1.4,2.9080220000000003,3.131716,245
2017-12-16 06:58,1.3,3.131716,3.35541,256
2017-12-16 07:00,1.3,3.35541,3.802798,256
2017-12-16 07:02,1.3,3.802798,4.026492,249
2017-12-16 07:04,1.4,4.026492,4.250186,248
2017-12-16 07:06,1.5,3.802798,4.026492,249
2017-12-16 07:08,1.5,3.802798,4.026492,252
2017-12-16 07:10,1.6,3.802798,4.026492,242
2017-12-16 07:12,1.6,3.5791040000000005,3.802798,240
2017-12-16 07:14,1.6,3.131716,3.5791040000000005,243
2017-12-16 07:16,1.6,2.6843280000000003,3.131716,236
2017-12-16 07:18,1.7,2.9080220000000003,3.35541,233
2017-12-16 07:20,1.7,3.35541,4.026492,243
2017-12-16 07:22,1.7,3.5791040000000005,4.47388,251
2017-12-16 07:24,1.7,3.35541,3.802798,254
2017-12-16 07:26,1.7,3.5791040000000005,4.47388,248
2017-12-16 07:28,1.8,4.026492,5.144962,282
2017-12-16 07:30,1.8,3.802798,6.263432,283
2017-12-16 07:32,2.1,7.381902,8.724066,314
2017-12-16 07:34,2.1,6.934514000000001,8.276678,322
2017-12-16 07:36,2.3,8.724066,10.513618000000001,314
2017-12-16 07:38,2.2,9.618842,10.289924,310
2017-12-16 07:40,2.2,10.066230000000001,11.184700000000001,306
2017-12-16 07:42,2.2,10.066230000000001,11.184700000000001,305
2017-12-16 07:44,2.1,10.513618000000001,12.079476000000001,306
2017-12-16 07:46,2.2,10.289924,10.961006000000001,308
2017-12-16 07:48,2.2,10.289924,11.408394,310
2017-12-16 07:50,2.1,10.737312000000001,11.855782,307
2017-12-16 07:52,2.1,10.289924,11.184700000000001,309
2017-12-16 07:54,2.1,10.066230000000001,10.961006000000001,312
2017-12-16 07:56,2.2,10.066230000000001,10.737312000000001,316
2017-12-16 07:58,2.2,10.066230000000001,11.855782,316
2017-12-16 08:00,2.1,11.632088000000001,12.526864,317
2017-12-16 08:02,2.1,11.632088000000001,12.526864,317
2017-12-16 08:04,2.1,10.961006000000001,11.855782,318
2017-12-16 08:06,2.2,10.066230000000001,10.961006000000001,317
2017-12-16 08:08,2.2,10.737312000000001,11.408394,318
2017-12-16 08:10,2.2,10.066230000000001,11.184700000000001,316
2017-12-16 08:12,2.2,10.513618000000001,12.303170000000001,314
2017-12-16 08:14,2.2,10.513618000000001,11.855782,315
2017-12-16 08:16,2.2,10.737312000000001,12.303170000000001,317
2017-12-16 08:18,2.2,11.184700000000001,12.303170000000001,318
2017-12-16 08:20,2.2,11.632088000000001,12.750558000000002,319
2017-12-16 08:22,2.2,10.513618000000001,11.632088000000001,321
2017-12-16 08:24,2.2,9.842536,11.408394,321
2017-12-16 08:26,2.2,10.289924,11.184700000000001,320
2017-12-16 08:28,2.2,10.513618000000001,11.184700000000001,319
2017-12-16 08:30,2.2,10.066230000000001,11.184700000000001,317
2017-12-16 08:32,2.3,10.066230000000001,11.184700000000001,316
2017-12-16 08:34,2.2,11.184700000000001,12.750558000000002,316
2017-12-16 08:36,2.2,11.408394,12.303170000000001,316
2017-12-16 08:38,2.2,11.632088000000001,12.526864,311
2017-12-16 08:40,2.3,10.961006000000001,12.079476000000001,313
2017-12-16 08:42,2.3,10.513618000000001,11.855782,315
2017-12-16 08:44,2.3,11.184700000000001,11.855782,314
2017-12-16 08:46,2.4,9.842536,10.737312000000001,314
2017-12-16 08:48,2.3,10.737312000000001,11.632088000000001,314
2017-12-16 08:50,2.4,10.737312000000001,11.184700000000001,317
2017-12-16 08:52,2.3,10.961006000000001,11.408394,317
2017-12-16 08:54,2.4,11.632088000000001,12.303170000000001,317
2017-12-16 08:56,2.4,11.408394,12.526864,319
2017-12-16 08:58,2.5,11.184700000000001,12.974252,321
2017-12-16 09:00,2.5,12.974252,15.65858,331
2017-12-16 09:02,2.3,12.750558000000002,14.092722,330
2017-12-16 09:04,2.3,13.869028000000002,15.882274,326
2017-12-16 09:06,2.2,14.092722,16.553356,334
2017-12-16 09:08,2.2,14.316416000000002,15.65858,335
2017-12-16 09:10,2.2,13.42164,16.105968,333
2017-12-16 09:12,2.2,14.763804,16.553356,335
2017-12-16 09:14,2.2,15.65858,17.89552,333
2017-12-16 09:16,2.1,15.65858,18.566602000000003,330
2017-12-16 09:18,2.2,15.882274,17.224438000000003,328
2017-12-16 09:20,2.2,15.434886000000002,17.671826000000003,328
2017-12-16 09:22,2.1,16.105968,17.671826000000003,329
2017-12-16 09:24,2,18.119214,20.132460000000002,329
2017-12-16 09:26,2,16.553356,18.342908,331
2017-12-16 09:28,2.1,15.65858,18.566602000000003,328
2017-12-16 09:30,2.1,15.882274,17.89552,330
2017-12-16 09:32,2.2,16.777050000000003,19.01399,330
2017-12-16 09:34,2.1,17.448132,20.132460000000002,327
2017-12-16 09:36,2.1,17.671826000000003,21.25093,327
2017-12-16 09:38,2.1,19.461378,21.25093,328
2017-12-16 09:40,2.1,17.224438000000003,19.01399,325
2017-12-16 09:42,2.1,18.342908,21.027236000000002,328
2017-12-16 09:44,2.1,20.356154,21.922012000000002,330
2017-12-16 09:46,2.1,18.119214,21.474624000000002,327
2017-12-16 09:48,2.1,17.448132,19.461378,328
2017-12-16 09:50,2.1,18.119214,21.698318,330
2017-12-16 09:52,2.1,20.132460000000002,21.474624000000002,330
2017-12-16 09:54,2,18.790296,21.474624000000002,334
2017-12-16 09:56,2,18.566602000000003,20.356154,331
2017-12-16 09:58,2,19.461378,21.25093,332
2017-12-16 10:00,2,18.342908,20.579848,332
2017-12-16 10:02,2,19.237684,21.698318,332
2017-12-16 10:04,2,19.237684,20.803542000000004,333
2017-12-16 10:06,2,18.566602000000003,20.579848,335
2017-12-16 10:08,2,18.342908,20.803542000000004,338
2017-12-16 10:10,2,18.119214,20.356154,333
2017-12-16 10:12,1.9,18.566602000000003,20.132460000000002,332
2017-12-16 10:14,2,17.671826000000003,19.685072,336
2017-12-16 10:16,2.1,18.342908,20.132460000000002,336
2017-12-16 10:18,2,18.342908,19.461378,333
2017-12-16 10:20,2,19.01399,20.132460000000002,333
2017-12-16 10:22,1.9,18.119214,19.685072,334
2017-12-16 10:24,1.9,18.342908,20.132460000000002,333
2017-12-16 10:26,1.9,16.105968,17.224438000000003,337
2017-12-16 10:28,2,17.000744,20.132460000000002,339
2017-12-16 10:30,2,16.329662,18.790296,341
2017-12-16 10:32,1.9,18.342908,20.132460000000002,341
2017-12-16 10:34,2,17.224438000000003,18.566602000000003,337
2017-12-16 10:36,2,17.671826000000003,20.356154,337
2017-12-16 10:38,2,18.342908,19.461378,337
2017-12-16 10:40,2,16.329662,18.342908,338
2017-12-16 10:42,1.9,18.566602000000003,20.132460000000002,338
2017-12-16 10:44,1.9,17.89552,19.908766000000004,340
2017-12-16 10:46,2,17.448132,19.685072,341
2017-12-16 10:48,2,16.329662,19.01399,338
2017-12-16 10:50,1.9,18.566602000000003,20.579848,336
2017-12-16 10:52,1.9,18.790296,20.132460000000002,335
2017-12-16 10:54,1.9,19.01399,21.25093,335
2017-12-16 10:56,1.9,19.461378,21.25093,335
2017-12-16 10:58,1.9,18.566602000000003,20.803542000000004,336
2017-12-16 11:00,1.9,18.119214,20.803542000000004,338
2017-12-16 11:02,1.9,18.342908,19.685072,338
2017-12-16 11:04,2,17.448132,19.237684,341
2017-12-16 11:06,2,18.119214,19.237684,340
2017-12-16 11:08,2.1,16.105968,17.89552,341
2017-12-16 11:10,2.1,18.342908,20.356154,338
2017-12-16 11:12,2.1,18.119214,19.908766000000004,337
2017-12-16 11:14,2.1,18.119214,19.908766000000004,338
2017-12-16 11:16,2.1,18.342908,20.579848,338
2017-12-16 11:18,2.1,18.566602000000003,19.908766000000004,334
2017-12-16 11:20,2,18.566602000000003,20.579848,334
2017-12-16 11:22,2.1,16.777050000000003,18.790296,336
2017-12-16 11:24,2.1,17.224438000000003,19.461378,336
2017-12-16 11:26,2,18.342908,20.803542000000004,337
2017-12-16 11:28,2,17.224438000000003,19.461378,337
2017-12-16 11:30,2.1,17.224438000000003,19.237684,339
2017-12-16 11:32,2.1,16.105968,17.671826000000003,337
2017-12-16 11:34,2.2,15.434886000000002,17.448132,337
2017-12-16 11:36,2.2,16.105968,17.671826000000003,336
2017-12-16 11:38,2.2,17.000744,18.566602000000003,337
2017-12-16 11:40,2.3,15.434886000000002,18.566602000000003,335
2017-12-16 11:42,2.3,14.763804,17.000744,336
2017-12-16 11:44,2.2,16.105968,17.224438000000003,333
2017-12-16 11:46,2.2,16.105968,17.000744,337
2017-12-16 11:48,2.3,15.211192,17.448132,335
2017-12-16 11:50,2.2,16.777050000000003,18.566602000000003,332
2017-12-16 11:52,2.3,15.211192,17.448132,337
2017-12-16 11:54,2.3,16.329662,18.342908,332
2017-12-16 11:56,2.2,16.777050000000003,18.790296,333
2017-12-16 11:58,2.3,15.65858,17.89552,336
2017-12-16 12:00,2.3,16.553356,17.671826000000003,339
2017-12-16 12:02,2.4,14.987498000000002,17.671826000000003,339
2017-12-16 12:04,2.4,13.42164,14.987498000000002,338
2017-12-16 12:06,2.4,14.316416000000002,16.105968,337
2017-12-16 12:08,2.4,14.092722,15.882274,336
2017-12-16 12:10,2.4,14.092722,15.882274,333
2017-12-16 12:12,2.4,13.645334,14.763804,333
2017-12-16 12:14,2.4,14.316416000000002,16.777050000000003,332
2017-12-16 12:16,2.3,15.65858,17.671826000000003,331
2017-12-16 12:18,2.3,16.105968,17.224438000000003,331
2017-12-16 12:20,2.3,15.882274,17.448132,333
2017-12-16 12:22,2.3,14.763804,16.329662,332
2017-12-16 12:24,2.3,15.211192,17.224438000000003,332
2017-12-16 12:26,2.4,14.987498000000002,16.329662,334
2017-12-16 12:28,2.4,14.316416000000002,16.105968,332
2017-12-16 12:30,2.4,15.434886000000002,16.329662,334
2017-12-16 12:32,2.4,14.987498000000002,16.105968,331
2017-12-16 12:34,2.3,17.224438000000003,18.566602000000003,331
2017-12-16 12:36,2.4,16.329662,18.790296,331
2017-12-16 12:38,2.4,15.434886000000002,17.448132,330
2017-12-16 12:40,2.3,15.882274,17.224438000000003,330
2017-12-16 12:42,2.3,15.65858,17.000744,327
2017-12-16 12:44,2.3,17.448132,19.908766000000004,330
2017-12-16 12:46,2.4,14.763804,16.777050000000003,329
2017-12-16 12:48,2.4,15.211192,17.000744,321
2017-12-16 12:50,2.4,14.987498000000002,16.777050000000003,330
2017-12-16 12:52,2.4,15.434886000000002,16.329662,327
2017-12-16 12:54,2.4,16.105968,18.342908,325
2017-12-16 12:56,2.4,16.553356,17.89552,330
2017-12-16 12:58,2.4,15.65858,17.000744,328
2017-12-16 13:00,2.4,16.105968,17.224438000000003,326
2017-12-16 13:02,2.4,15.434886000000002,17.448132,325
2017-12-16 13:04,2.4,15.882274,17.671826000000003,327
2017-12-16 13:06,2.4,16.105968,17.224438000000003,321
2017-12-16 13:08,2.3,16.777050000000003,18.342908,324
2017-12-16 13:10,2.3,16.777050000000003,19.237684,326
2017-12-16 13:12,2.3,17.224438000000003,18.790296,327
2017-12-16 13:14,2.3,15.65858,18.342908,322
2017-12-16 13:16,2.3,16.553356,17.89552,321
2017-12-16 13:18,2.3,17.000744,18.790296,325
2017-12-16 13:20,2.3,16.777050000000003,18.119214,331
2017-12-16 13:22,2.3,17.224438000000003,18.790296,327
2017-12-16 13:24,2.3,15.434886000000002,17.000744,326
2017-12-16 13:26,2.4,14.987498000000002,16.777050000000003,327
2017-12-16 13:28,2.3,16.105968,17.671826000000003,329
2017-12-16 13:30,2.4,15.211192,17.224438000000003,328
2017-12-16 13:32,2.3,14.763804,16.329662,326
2017-12-16 13:34,2.3,13.869028000000002,15.434886000000002,325
2017-12-16 13:36,2.3,14.092722,15.434886000000002,325
2017-12-16 13:38,2.2,16.105968,17.448132,325
2017-12-16 13:40,2.2,17.448132,18.790296,323
2017-12-16 13:42,2.2,17.000744,18.566602000000003,323
2017-12-16 13:44,2.2,17.224438000000003,18.342908,327
2017-12-16 13:46,2.2,17.000744,18.790296,326
2017-12-16 13:48,2.3,16.553356,18.342908,325
2017-12-16 13:50,2.3,16.329662,18.566602000000003,327
2017-12-16 13:52,2.3,14.763804,16.329662,329
2017-12-16 13:54,2.3,15.211192,16.329662,326
2017-12-16 13:56,2.3,15.65858,17.000744,324
2017-12-16 13:58,2.3,15.434886000000002,17.000744,321
2017-12-16 14:00,2.3,15.211192,17.224438000000003,323
2017-12-16 14:02,2.3,15.882274,17.224438000000003,322
2017-12-16 14:04,2.2,16.777050000000003,17.671826000000003,323
2017-12-16 14:06,2.2,15.434886000000002,16.777050000000003,326
2017-12-16 14:08,2.2,15.434886000000002,18.342908,321
2017-12-16 14:10,2.2,14.987498000000002,17.000744,322
2017-12-16 14:12,2.2,16.105968,17.89552,320
2017-12-16 14:14,2.2,14.54011,16.105968,322
2017-12-16 14:16,2.2,15.882274,17.671826000000003,319
2017-12-16 14:18,2.2,17.224438000000003,18.119214,320
2017-12-16 14:20,2.2,16.553356,17.671826000000003,320
2017-12-16 14:22,2.2,15.882274,17.671826000000003,321
2017-12-16 14:24,2.2,15.882274,17.671826000000003,322
2017-12-16 14:26,2.2,16.105968,17.671826000000003,321
2017-12-16 14:28,2.2,15.882274,17.671826000000003,320
2017-12-16 14:30,2.2,16.105968,17.448132,325
2017-12-16 14:32,2.2,14.987498000000002,17.000744,324
2017-12-16 14:34,2.2,14.763804,17.000744,324
2017-12-16 14:36,2.2,14.987498000000002,16.777050000000003,323
2017-12-16 14:38,2.1,16.777050000000003,18.566602000000003,322
2017-12-16 14:40,2.2,16.329662,17.89552,326
2017-12-16 14:42,2.2,15.211192,17.448132,324
2017-12-16 14:44,2.2,16.105968,17.224438000000003,322
2017-12-16 14:46,2.1,17.224438000000003,19.01399,324
2017-12-16 14:48,2.1,16.105968,17.671826000000003,325
2017-12-16 14:50,2.1,16.553356,17.671826000000003,324
2017-12-16 14:52,2.1,16.553356,17.671826000000003,325
2017-12-16 14:54,2.1,16.105968,17.448132,326
2017-12-16 14:56,2.1,15.434886000000002,17.448132,325
2017-12-16 14:58,2.1,16.553356,17.89552,326
2017-12-16 15:00,2.1,16.777050000000003,18.119214,330
2017-12-16 15:02,2.1,16.329662,18.119214,328
2017-12-16 15:04,2.1,16.329662,17.89552,326
2017-12-16 15:06,2.1,16.105968,18.566602000000003,324
2017-12-16 15:08,2.1,17.000744,18.566602000000003,326
2017-12-16 15:10,2,17.671826000000003,19.237684,323
2017-12-16 15:12,2,16.553356,18.566602000000003,326
2017-12-16 15:14,2.1,14.987498000000002,16.329662,324
2017-12-16 15:16,2.1,14.987498000000002,17.000744,326
2017-12-16 15:18,2.1,15.434886000000002,17.224438000000003,325
2017-12-16 15:20,2,15.434886000000002,17.000744,325
2017-12-16 15:22,2,16.553356,18.342908,324
2017-12-16 15:24,2,17.224438000000003,18.566602000000003,322
2017-12-16 15:26,2,15.65858,17.224438000000003,323
2017-12-16 15:28,2,16.553356,17.671826000000003,324
2017-12-16 15:30,2,17.000744,18.342908,326
2017-12-16 15:32,2,16.777050000000003,18.342908,328
2017-12-16 15:34,2,15.882274,17.224438000000003,329
2017-12-16 15:36,2,15.211192,16.329662,329
2017-12-16 15:38,2.1,14.763804,16.777050000000003,328
2017-12-16 15:40,2,16.329662,18.119214,326
2017-12-16 15:42,2,16.105968,17.89552,323
2017-12-16 15:44,2,17.224438000000003,19.461378,325
2017-12-16 15:46,2,17.224438000000003,18.566602000000003,325
2017-12-16 15:48,2,15.882274,17.89552,325
2017-12-16 15:50,2,16.329662,17.448132,326
2017-12-16 15:52,2,16.553356,17.89552,326
2017-12-16 15:54,2,16.105968,17.89552,329
2017-12-16 15:56,1.9,16.105968,17.89552,330
2017-12-16 15:58,1.9,17.000744,18.566602000000003,330
2017-12-16 16:00,2,15.882274,17.671826000000003,325
2017-12-16 16:02,2,16.105968,18.342908,324
2017-12-16 16:04,1.9,17.224438000000003,18.566602000000003,323
2017-12-16 16:06,1.9,16.553356,18.119214,323
2017-12-16 16:08,1.9,16.553356,17.89552,324
2017-12-16 16:10,2,14.763804,17.000744,318
2017-12-16 16:12,2,15.65858,18.119214,322
2017-12-16 16:14,2,16.105968,19.461378,325
2017-12-16 16:16,1.9,18.566602000000003,20.356154,324
2017-12-16 16:18,1.9,16.777050000000003,18.119214,321
2017-12-16 16:20,1.9,15.211192,17.000744,327
2017-12-16 16:22,1.9,16.105968,19.237684,321
2017-12-16 16:24,1.9,17.671826000000003,19.01399,319
2017-12-16 16:26,1.9,17.671826000000003,19.461378,318
2017-12-16 16:28,1.9,16.329662,17.671826000000003,316
2017-12-16 16:30,1.9,14.987498000000002,16.777050000000003,316
2017-12-16 16:32,2,14.987498000000002,18.790296,322
2017-12-16 16:34,1.9,18.119214,19.461378,320
2017-12-16 16:36,2,15.65858,17.89552,320
2017-12-16 16:38,1.9,16.553356,18.342908,317
2017-12-16 16:40,1.9,15.211192,17.224438000000003,321
2017-12-16 16:42,1.9,15.434886000000002,17.000744,328
2017-12-16 16:44,1.9,14.987498000000002,16.329662,330
2017-12-16 16:46,2,13.869028000000002,15.882274,333
2017-12-16 16:48,2,13.197946000000002,15.882274,332
2017-12-16 16:50,1.9,16.553356,17.89552,330
2017-12-16 16:52,1.9,16.105968,17.89552,329
2017-12-16 16:54,1.9,14.763804,16.777050000000003,326
2017-12-16 16:56,2,14.54011,17.000744,327
2017-12-16 16:58,2,14.763804,16.105968,327
2017-12-16 17:00,2,14.763804,16.777050000000003,328
2017-12-16 17:02,1.9,15.211192,17.448132,329
2017-12-16 17:04,1.9,15.211192,16.553356,327
2017-12-16 17:06,2,14.54011,16.329662,325
2017-12-16 17:08,1.9,15.211192,17.224438000000003,327
2017-12-16 17:10,2,14.092722,16.329662,324
2017-12-16 17:12,1.9,15.211192,17.448132,327
2017-12-16 17:14,1.9,16.329662,17.89552,327
2017-12-16 17:16,2,15.882274,17.671826000000003,329
2017-12-16 17:18,1.9,16.329662,17.89552,329
2017-12-16 17:20,1.9,17.224438000000003,18.566602000000003,328
2017-12-16 17:22,1.9,16.777050000000003,18.790296,326
2017-12-16 17:24,1.9,16.777050000000003,18.342908,327
2017-12-16 17:26,1.9,14.763804,16.329662,327
2017-12-16 17:28,1.9,14.763804,16.553356,326
2017-12-16 17:30,1.9,15.211192,16.105968,326
2017-12-16 17:32,1.9,15.434886000000002,17.000744,331
2017-12-16 17:34,1.9,14.987498000000002,16.329662,337
2017-12-16 17:36,1.9,12.974252,14.987498000000002,334
2017-12-16 17:38,1.9,13.645334,15.434886000000002,332
2017-12-16 17:40,1.9,13.42164,14.54011,334
2017-12-16 17:42,1.9,14.54011,15.65858,336
2017-12-16 17:44,1.9,14.092722,15.211192,336
2017-12-16 17:46,1.9,14.763804,16.105968,337
2017-12-16 17:48,2,13.42164,15.211192,339
2017-12-16 17:50,2,12.303170000000001,13.869028000000002,335
2017-12-16 17:52,2,14.987498000000002,16.777050000000003,333
2017-12-16 17:54,2,14.54011,15.882274,330
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment