diff --git a/assignment2.ipynb b/assignment2.ipynb new file mode 100644 index 0000000..0f6e9a6 --- /dev/null +++ b/assignment2.ipynb @@ -0,0 +1,102 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "nbgrader": { + "grade": false, + "grade_id": "cell-4cc1a4b58a7804ce", + "locked": true, + "schema_version": 1, + "solution": false + } + }, + "source": [ + "# Assignment 2\n", + "For this assignment you'll be looking at some of my physical activity data, which I've put in `datasets/strava.csv`." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "nbgrader": { + "grade": false, + "grade_id": "cell-118357d73b1f8d41", + "locked": true, + "schema_version": 1, + "solution": false + } + }, + "source": [ + "## Question 1 (25%)\n", + "This data is a bit of a mess. It includes running and cycling! Your first job is to identify the different run *sessions* from the dataset and list their *start* and *end* times. You know a given activity is a run if it has a value for `Power` (since I often use a stryd footpod) or if it came before Sept 15th (since that's when I bought a bike). And you can assume that a session is made up of contiguous values at at least a 20 minute resolution. That is, if I am running then stop recording data for 20 minutes or more then start running again that's two sessions. But if I only stop for 7 minutes, then start up again, that's just one session.\n", + "\n", + "Create a `DataFrame` which is made up of three columns, the `start` and `end` times of each run as described above, with a `length` field and the with the session number, starting with `0` of course, as the index.\n", + "\n", + "**Note**: You can find pandas frequency strings for the resampling here: https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 2 (10%)\n", + "How many minutes long was my longest run?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 3 (25%)\n", + "It's common to estimate the calorie burn when your heart rate is between 90 and 150 beats per minute. The the equation below is suitable for men:\n", + "\n", + "$$((-55.0969 + (0.6309*H) + (0.1988*W) + (0.2017*A)) \\div 4.184) * 60 * T$$\n", + "\n", + "Where HR is your heart rate in beats per minute, W is your weight in kilograms (let's be generous and assume I'm roughly 240lbs), A is the age in years (so let's go 41 here), and T is the exercise duration in hours.\n", + "\n", + "What I would like is for you to calculate my rolling average 5 minute caloric burn for the session which began at time `2019-08-17 11:50:36`, and report to me the time I had just finished 1 minute of my top caloric burn." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 4 (40%)\n", + "Today, November 1st 2019, I went out for a bike ride and wiped out. Not a little loss of control or a little skid, we're talking flying off the bike in traffic kind of wipe out. I finished my ride as I had planned, and when I was telling my wife about the incident she asked me where but I couldn't really remember. I did remember a few things though - can you help me track down where I wiped out from my ride log data, which I put in `datasets/wipout.csv`?\n", + "\n", + "Specifically I remember that:\n", + "1. I launched off the bike. So at some point both my reported speed `enhanced_speed` and my reported `cadence` from my wearables would have been 0.\n", + "2. I was at least 5 minutes into my ride at the time, headed out of the city, and that it wasn't in the last ten minutes of my ride.\n", + "3. I know my `heart_rate` didn't drop right away. Heart rate responds relatively slowely so while my speed and cadence dropped nearly right away to zero (since my bike was lying in the road) my heart rate was still high. More specifically, I would say that compared to the 2 minutes before and 2 minutes after the event, my `heart_rate` was more than one standard deviation higher while I was lying on the grass.\n", + "4. I don't know if this helps, but I do remember stopping during my ride *before* I wiped out to give an in promptu lecture to a motorist on whether cars belonged in the bike lane. So some of the above criteria might also relate to that event. But I know I actually wiped out after talking to that driver.\n", + "\n", + "Where and when did I wipe out? In units of `timestamp` and `position_lat_degrees` and `position_long_degrees` please, so I can look this up on Google Maps.\n", + "\n", + "**Hint**: it might be useful to consider the heart rate carefully. Remember z-scored from STATS 250? No worries if you don't, a z-score can be created with the `scipy.stats.zscore` function. You just pass in a list of values and it returns to you a list of z-scores. This mapping is the number of standard deviations from the mean each data point is. So if a given data point has a z-score of 1.2, it is 1.2 standard deviations greater than the mean of whatever data you passed in. And z-scores can be negative too, so a z-score of -3.2 for a given data point means that data point is much smaller -- more than three standard deviations smaller -- than the mean of the rest of the data you calculated z-scores for." + ] + } + ], + "metadata": { + "celltoolbar": "Create Assignment", + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/datasets/wipeout.csv b/datasets/wipeout.csv new file mode 100644 index 0000000..eaec569 --- /dev/null +++ b/datasets/wipeout.csv @@ -0,0 +1,1033 @@ +timestamp,cadence,distance,enhanced_altitude,enhanced_speed,fractional_cadence,heart_rate,position_lat,position_long,speed,timestamp,position_lat_degrees,position_long_degrees +2019-11-01 20:12:03,,0.0,281.6,0.0,,84.0,504424439.0,-999065791.0,,2019-11-01 20:12:03,42.280368050560355,-83.74072722159326 +2019-11-01 20:12:04,,0.0,281.6,0.0,,84.0,504424439.0,-999065791.0,,2019-11-01 20:12:04,42.280368050560355,-83.74072722159326 +2019-11-01 20:12:07,,0.0,281.6,0.0,,87.0,504424439.0,-999065791.0,,2019-11-01 20:12:07,42.280368050560355,-83.74072722159326 +2019-11-01 20:12:08,,0.32,281.6,1.036,,88.0,504424447.0,-999065835.0,,2019-11-01 20:12:08,42.28036872111261,-83.74073090963066 +2019-11-01 20:12:10,,3.3,281.7999999999999,2.9760000000000004,,89.0,504424476.0,-999066382.0,,2019-11-01 20:12:10,42.28037115186453,-83.740776758641 +2019-11-01 20:12:11,,7.27,281.7999999999999,3.975,,90.0,504424526.0,-999066834.0,,2019-11-01 20:12:11,42.280375342816114,-83.74081464484334 +2019-11-01 20:12:16,23.0,17.76,280.6,0.0,0.0,88.0,504424918.0,-999068374.0,,2019-11-01 20:12:16,42.28040819987655,-83.74094372615218 +2019-11-01 20:12:20,0.0,17.76,280.4,0.0,0.0,91.0,504424781.0,-999068427.0,,2019-11-01 20:12:20,42.2803967166692,-83.74094816856086 +2019-11-01 20:12:22,0.0,17.76,281.0,0.0,0.0,91.0,504424850.0,-999068448.0,,2019-11-01 20:12:22,42.28040250018239,-83.74094992876053 +2019-11-01 20:12:26,5.0,19.42,282.4,1.157,0.0,91.0,504424939.0,-999068749.0,,2019-11-01 20:12:26,42.28040996007621,-83.74097515828907 +2019-11-01 20:12:27,5.0,20.58,282.6,1.157,0.0,91.0,504424981.0,-999068821.0,,2019-11-01 20:12:27,42.280413480475545,-83.74098119325936 +2019-11-01 20:12:33,26.0,30.07,285.4,2.958,0.0,87.0,504425325.0,-999069117.0,,2019-11-01 20:12:33,42.280442314222455,-83.74100600369275 +2019-11-01 20:12:35,58.0,38.2,286.7999999999999,4.18,0.0,87.0,504425625.0,-999069167.0,,2019-11-01 20:12:35,42.28046745993197,-83.74101019464433 +2019-11-01 20:12:37,66.0,47.81,288.6,5.252999999999999,0.0,84.0,504426441.0,-999069239.0,,2019-11-01 20:12:37,42.28053585626185,-83.74101622961462 +2019-11-01 20:12:38,74.0,53.63,290.0,5.822,0.0,82.0,504426978.0,-999069265.0,,2019-11-01 20:12:38,42.28058086708188,-83.74101840890944 +2019-11-01 20:12:40,84.0,66.77,292.4,6.877000000000001,0.0,84.0,504428190.0,-999069422.0,,2019-11-01 20:12:40,42.28068245574832,-83.74103156849742 +2019-11-01 20:12:41,83.0,74.05,293.6,7.269,0.0,85.0,504429098.0,-999069389.0,,2019-11-01 20:12:41,42.28075856342912,-83.74102880246937 +2019-11-01 20:12:42,83.0,81.69,294.6,7.642,0.0,88.0,504429936.0,-999069277.0,,2019-11-01 20:12:42,42.280828803777695,-83.74101941473782 +2019-11-01 20:12:44,73.0,97.41,295.7999999999999,7.922000000000001,0.0,93.0,504431544.0,-999068972.0,,2019-11-01 20:12:44,42.28096358478069,-83.74099384993315 +2019-11-01 20:12:45,73.0,105.57,296.2000000000001,8.155,0.0,95.0,504432376.0,-999068902.0,,2019-11-01 20:12:45,42.28103332221508,-83.74098798260093 +2019-11-01 20:12:46,77.0,113.87,296.4,8.304,0.0,98.0,504433509.0,-999068821.0,,2019-11-01 20:12:46,42.281128289178014,-83.74098119325936 +2019-11-01 20:12:47,77.0,122.4,296.4,8.527999999999999,0.0,101.0,504434527.0,-999068795.0,,2019-11-01 20:12:47,42.2812136169523,-83.74097901396453 +2019-11-01 20:12:48,82.0,130.39,296.2000000000001,7.978,0.0,104.0,504435619.0,-999068676.0,,2019-11-01 20:12:48,42.28130514733493,-83.74096903949976 +2019-11-01 20:12:50,26.0,144.75,295.4,6.961,0.0,108.0,504437521.0,-999068610.0,,2019-11-01 20:12:50,42.281464571133256,-83.74096350744367 +2019-11-01 20:12:51,72.0,150.18,295.0,5.43,0.0,110.0,504438321.0,-999068603.0,,2019-11-01 20:12:51,42.28153162635863,-83.74096292071044 +2019-11-01 20:12:54,15.0,162.22,293.0,3.7230000000000003,0.0,113.0,504440096.0,-999068651.0,,2019-11-01 20:12:54,42.28168040513992,-83.74096694402397 +2019-11-01 20:12:55,15.0,166.46,292.6,4.245,0.0,114.0,504440485.0,-999068640.0,,2019-11-01 20:12:55,42.28171301074326,-83.74096602201462 +2019-11-01 20:13:00,67.0,185.48,288.7999999999999,3.266,0.0,111.0,504442381.0,-999068546.0,,2019-11-01 20:13:00,42.28187193162739,-83.74095814302564 +2019-11-01 20:13:03,64.0,198.43,285.4,5.113,0.0,109.0,504443703.0,-999068463.0,,2019-11-01 20:13:03,42.28198274038732,-83.740951186046 +2019-11-01 20:13:08,82.0,227.66,280.79999999999995,6.289,0.0,106.0,504446890.0,-999068803.0,,2019-11-01 20:13:08,42.2822498716414,-83.74097968451679 +2019-11-01 20:13:13,83.0,255.44,276.6,4.208,0.0,109.0,504450465.0,-999068946.0,,2019-11-01 20:13:13,42.28254952467978,-83.74099167063832 +2019-11-01 20:13:14,0.0,258.79,275.79999999999995,3.35,0.0,110.0,504451056.0,-999068955.0,,2019-11-01 20:13:14,42.282599061727524,-83.74099242500961 +2019-11-01 20:13:17,0.0,265.44,273.4,1.9780000000000002,0.0,111.0,504451876.0,-999069025.0,,2019-11-01 20:13:17,42.28266779333353,-83.74099829234183 +2019-11-01 20:13:21,0.0,273.33,270.79999999999995,2.426,0.0,108.0,504452673.0,-999069076.0,,2019-11-01 20:13:21,42.28273459710181,-83.74100256711245 +2019-11-01 20:13:23,4.0,277.53,270.0,1.7169999999999999,0.0,105.0,504453147.0,-999069065.0,,2019-11-01 20:13:23,42.28277432732284,-83.7410016451031 +2019-11-01 20:13:25,4.0,280.52,269.20000000000005,1.278,0.0,101.0,504453509.0,-999069166.0,,2019-11-01 20:13:25,42.28280466981232,-83.7410101108253 +2019-11-01 20:13:29,0.0,286.61,267.6,1.3159999999999998,0.0,102.0,504454219.0,-999069097.0,,2019-11-01 20:13:29,42.28286418132484,-83.74100432731211 +2019-11-01 20:13:30,7.0,289.98,267.20000000000005,3.3680000000000003,0.0,104.0,504454384.0,-999069165.0,,2019-11-01 20:13:30,42.28287801146507,-83.74101002700627 +2019-11-01 20:13:33,73.0,303.3,266.4,5.207000000000001,0.0,101.0,504455067.0,-999070325.0,,2019-11-01 20:13:33,42.282935259863734,-83.74110725708306 +2019-11-01 20:13:35,75.0,314.16,266.0,5.542000000000001,0.0,97.0,504455347.0,-999071614.0,,2019-11-01 20:13:35,42.282958729192615,-83.74121529981494 +2019-11-01 20:13:37,75.0,326.42,265.6,6.252000000000001,0.0,97.0,504455542.0,-999073159.0,,2019-11-01 20:13:37,42.2829750739038,-83.74134480021894 +2019-11-01 20:13:39,75.0,339.07,265.4,6.3260000000000005,0.0,100.0,504455753.0,-999075147.0,,2019-11-01 20:13:39,42.28299275971949,-83.74151143245399 +2019-11-01 20:13:41,75.0,351.98,264.79999999999995,6.494,0.0,103.0,504455991.0,-999076842.0,,2019-11-01 20:13:41,42.28301270864904,-83.74165350571275 +2019-11-01 20:13:42,13.0,358.85,264.4,6.858,0.0,104.0,504456049.0,-999077736.0,,2019-11-01 20:13:42,42.28301757015288,-83.7417284399271 +2019-11-01 20:13:43,84.0,366.01,264.0,7.166,0.0,104.0,504456027.0,-999078638.0,,2019-11-01 20:13:43,42.28301572613418,-83.74180404469371 +2019-11-01 20:13:45,77.0,381.15,263.6,7.6979999999999995,0.0,104.0,504456028.0,-999080602.0,,2019-11-01 20:13:45,42.28301580995321,-83.741968665272 +2019-11-01 20:13:46,72.0,388.93,263.4,7.782,0.0,103.0,504456099.0,-999081711.0,,2019-11-01 20:13:46,42.283021761104465,-83.74206162057817 +2019-11-01 20:13:48,79.0,405.3,262.79999999999995,8.183,0.0,100.0,504456351.0,-999083915.0,,2019-11-01 20:13:48,42.28304288350046,-83.74224635772407 +2019-11-01 20:13:49,79.0,413.66,262.4,8.37,0.0,100.0,504456425.0,-999085067.0,,2019-11-01 20:13:49,42.283049086108804,-83.7423429172486 +2019-11-01 20:13:51,73.0,430.83,261.20000000000005,8.706,0.0,101.0,504456413.0,-999087389.0,,2019-11-01 20:13:51,42.28304808028042,-83.74253754504025 +2019-11-01 20:13:53,72.0,448.26,259.4,8.771,0.0,104.0,504456431.0,-999089897.0,,2019-11-01 20:13:53,42.283049589022994,-83.74274776317179 +2019-11-01 20:13:56,66.0,475.03,257.0,8.901,0.0,108.0,504456510.0,-999093824.0,,2019-11-01 20:13:56,42.2830562107265,-83.74307692050934 +2019-11-01 20:13:57,66.0,483.66,256.20000000000005,8.631,0.0,109.0,504456552.0,-999095164.0,,2019-11-01 20:13:57,42.28305973112583,-83.74318923801184 +2019-11-01 20:14:02,59.0,511.42,253.0,3.508,0.0,110.0,504456460.0,-999100717.0,,2019-11-01 20:14:02,42.283052019774914,-83.74365468509495 +2019-11-01 20:14:04,0.0,511.42,252.4,0.0,0.0,109.0,504456391.0,-999101172.0,,2019-11-01 20:14:04,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:09,0.0,511.42,251.4,0.0,0.0,104.0,504456391.0,-999101172.0,,2019-11-01 20:14:09,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:10,0.0,511.42,251.4,0.0,0.0,103.0,504456391.0,-999101172.0,,2019-11-01 20:14:10,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:11,0.0,511.42,251.4,0.0,0.0,100.0,504456391.0,-999101172.0,,2019-11-01 20:14:11,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:23,0.0,511.42,251.20000000000005,0.0,0.0,95.0,504456391.0,-999101172.0,,2019-11-01 20:14:23,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:25,0.0,511.42,251.20000000000005,0.0,0.0,91.0,504456391.0,-999101172.0,,2019-11-01 20:14:25,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:28,0.0,511.42,251.20000000000005,0.0,0.0,88.0,504456391.0,-999101172.0,,2019-11-01 20:14:28,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:30,0.0,511.42,251.20000000000005,0.0,0.0,85.0,504456391.0,-999101172.0,,2019-11-01 20:14:30,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:33,0.0,511.42,251.20000000000005,0.0,0.0,82.0,504456391.0,-999101172.0,,2019-11-01 20:14:33,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:41,0.0,511.42,251.20000000000005,0.0,0.0,79.0,504456391.0,-999101172.0,,2019-11-01 20:14:41,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:42,0.0,511.42,251.20000000000005,0.0,0.0,78.0,504456391.0,-999101172.0,,2019-11-01 20:14:42,42.283046236261725,-83.74369282275438 +2019-11-01 20:14:46,1.0,516.46,251.20000000000005,4.955,0.0,77.0,504456490.0,-999101561.0,,2019-11-01 20:14:46,42.283054534345865,-83.74372542835772 +2019-11-01 20:14:48,66.0,527.57,251.20000000000005,5.682,0.0,75.0,504456911.0,-999102700.0,,2019-11-01 20:14:48,42.28308982215822,-83.74382089823484 +2019-11-01 20:14:51,86.0,546.86,251.4,7.007000000000001,0.0,73.0,504457531.0,-999105019.0,,2019-11-01 20:14:51,42.28314178995788,-83.74401527456939 +2019-11-01 20:14:53,69.0,561.42,251.6,7.362,0.0,75.0,504457713.0,-999107056.0,,2019-11-01 20:14:53,42.28315704502165,-83.744186013937 +2019-11-01 20:14:55,85.0,577.72,251.79999999999995,8.435,0.0,86.0,504457828.0,-999109349.0,,2019-11-01 20:14:55,42.2831666842103,-83.74437821097672 +2019-11-01 20:14:56,85.0,586.33,251.79999999999995,8.603,0.0,93.0,504457933.0,-999110527.0,,2019-11-01 20:14:56,42.28317548520863,-83.74447694979608 +2019-11-01 20:14:57,81.0,595.13,252.0,8.808,0.0,96.0,504458029.0,-999111688.0,,2019-11-01 20:14:57,42.283183531835675,-83.7445742636919 +2019-11-01 20:14:58,77.0,604.11,252.20000000000005,8.985,0.0,97.0,504458089.0,-999112902.0,,2019-11-01 20:14:58,42.28318856097758,-83.7446760199964 +2019-11-01 20:15:00,79.0,623.02,252.20000000000005,9.405,0.0,101.0,504458243.0,-999115627.0,,2019-11-01 20:15:00,42.28320146910846,-83.74490442685783 +2019-11-01 20:15:03,70.0,651.99,251.79999999999995,9.695,0.0,104.0,504458546.0,-999119907.0,,2019-11-01 20:15:03,42.28322686627507,-83.74526317231357 +2019-11-01 20:15:04,70.0,661.6,251.6,9.611,0.0,104.0,504458607.0,-999121326.0,,2019-11-01 20:15:04,42.28323197923601,-83.74538211151958 +2019-11-01 20:15:07,69.0,690.71,250.79999999999995,9.993,0.0,107.0,504458735.0,-999125543.0,,2019-11-01 20:15:07,42.283242708072066,-83.74573557637632 +2019-11-01 20:15:08,69.0,700.32,250.6,9.62,0.0,107.0,504458817.0,-999126936.0,,2019-11-01 20:15:08,42.28324958123267,-83.7458523362875 +2019-11-01 20:15:15,59.0,767.48,251.0,9.068999999999999,0.0,109.0,504459264.0,-999136927.0,,2019-11-01 20:15:15,42.283287048339844,-83.74668977223337 +2019-11-01 20:15:17,59.0,780.51,251.6,5.468,0.0,111.0,504459400.0,-999139468.0,,2019-11-01 20:15:17,42.28329844772816,-83.74690275639296 +2019-11-01 20:15:20,0.0,791.6,252.4,3.1630000000000003,0.0,111.0,504459564.0,-999141688.0,,2019-11-01 20:15:20,42.28331219404936,-83.74708883464336 +2019-11-01 20:15:23,59.0,806.66,253.4,5.72,0.0,110.0,504459589.0,-999143323.0,,2019-11-01 20:15:23,42.28331428952515,-83.74722587876022 +2019-11-01 20:15:25,74.0,819.26,254.0,6.625,0.0,107.0,504459627.0,-999144930.0,,2019-11-01 20:15:25,42.283317474648356,-83.74736057594419 +2019-11-01 20:15:28,81.0,839.88,254.79999999999995,6.979,0.0,103.0,504459770.0,-999147759.0,,2019-11-01 20:15:28,42.28332946076989,-83.74759769998491 +2019-11-01 20:15:30,82.0,854.22,254.79999999999995,7.166,0.0,106.0,504459835.0,-999149699.0,,2019-11-01 20:15:30,42.28333490900695,-83.74776030890644 +2019-11-01 20:15:32,38.0,868.68,255.0,7.231,0.0,109.0,504459847.0,-999151593.0,,2019-11-01 20:15:32,42.283335914835334,-83.7479190621525 +2019-11-01 20:15:34,72.0,883.98,254.79999999999995,7.847,0.0,112.0,504459794.0,-999153798.0,,2019-11-01 20:15:34,42.28333147242665,-83.74810388311744 +2019-11-01 20:15:37,72.0,904.25,254.79999999999995,6.167999999999999,0.0,114.0,504460032.0,-999157111.0,,2019-11-01 20:15:37,42.2833514213562,-83.74838157556951 +2019-11-01 20:15:41,12.0,925.58,254.6,5.513999999999999,0.0,116.0,504460271.0,-999160119.0,,2019-11-01 20:15:41,42.28337145410478,-83.74863370321691 +2019-11-01 20:15:42,12.0,931.32,254.6,5.7379999999999995,0.0,116.0,504460250.0,-999160819.0,,2019-11-01 20:15:42,42.283369693905115,-83.74869237653911 +2019-11-01 20:15:44,71.0,943.58,254.4,6.2139999999999995,0.0,117.0,504460408.0,-999162384.0,,2019-11-01 20:15:44,42.283382937312126,-83.74882355332375 +2019-11-01 20:15:45,71.0,950.3,254.20000000000005,6.718,0.0,117.0,504460426.0,-999163297.0,,2019-11-01 20:15:45,42.2833844460547,-83.7489000800997 +2019-11-01 20:15:48,80.0,972.88,253.79999999999995,8.107999999999999,0.0,117.0,504460405.0,-999166364.0,,2019-11-01 20:15:48,42.28338268585503,-83.74915715306997 +2019-11-01 20:15:49,89.0,981.24,253.79999999999995,8.351,0.0,116.0,504460435.0,-999167447.0,,2019-11-01 20:15:49,42.28338520042598,-83.74924792908132 +2019-11-01 20:15:50,89.0,989.79,253.6,8.547,0.0,114.0,504460435.0,-999168600.0,,2019-11-01 20:15:50,42.28338520042598,-83.74934457242489 +2019-11-01 20:15:52,74.0,1007.41,253.20000000000005,8.818,0.0,113.0,504460465.0,-999171146.0,,2019-11-01 20:15:52,42.283387714996934,-83.74955797567964 +2019-11-01 20:15:55,80.0,1038.07,252.0,10.889000000000001,0.0,110.0,504460639.0,-999175236.0,,2019-11-01 20:15:55,42.28340229950845,-83.74990079551935 +2019-11-01 20:15:57,46.0,1060.35,251.20000000000005,11.029000000000002,0.0,111.0,504460717.0,-999178435.0,,2019-11-01 20:15:57,42.283408837392926,-83.75016893260181 +2019-11-01 20:16:01,70.0,1094.9,250.0,5.962000000000001,0.0,115.0,504460792.0,-999184685.0,,2019-11-01 20:16:01,42.283415123820305,-83.75069280155003 +2019-11-01 20:16:02,70.0,1099.84,249.6,4.945,0.0,115.0,504460801.0,-999185723.0,,2019-11-01 20:16:02,42.28341587819159,-83.75077980570495 +2019-11-01 20:16:04,0.0,1099.84,249.0,0.0,0.0,116.0,504460968.0,-999186532.0,,2019-11-01 20:16:04,42.28342987596989,-83.75084761530161 +2019-11-01 20:16:07,8.0,1100.72,248.4,0.439,0.0,116.0,504460982.0,-999186568.0,,2019-11-01 20:16:07,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:13,0.0,1103.05,248.6,0.7090000000000001,0.0,112.0,504460982.0,-999186568.0,,2019-11-01 20:16:13,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:14,7.0,1103.05,248.6,0.0,0.0,112.0,504460982.0,-999186568.0,,2019-11-01 20:16:14,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:18,7.0,1103.05,248.6,0.0,0.0,109.0,504460982.0,-999186568.0,,2019-11-01 20:16:18,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:21,0.0,1103.05,248.6,0.0,0.0,103.0,504460982.0,-999186568.0,,2019-11-01 20:16:21,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:31,0.0,1103.05,248.6,0.0,0.0,100.0,504460982.0,-999186568.0,,2019-11-01 20:16:31,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:33,0.0,1103.05,248.6,0.0,0.0,96.0,504460982.0,-999186568.0,,2019-11-01 20:16:33,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:34,0.0,1103.05,248.6,0.0,0.0,93.0,504460982.0,-999186568.0,,2019-11-01 20:16:34,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:36,0.0,1103.05,248.6,0.0,0.0,89.0,504460982.0,-999186568.0,,2019-11-01 20:16:36,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:38,0.0,1105.22,248.6,2.081,0.0,88.0,504460982.0,-999186568.0,,2019-11-01 20:16:38,42.28343104943633,-83.75085063278675 +2019-11-01 20:16:42,46.0,1125.48,248.6,6.392,0.0,86.0,504460998.0,-999187938.0,,2019-11-01 20:16:42,42.28343239054084,-83.7509654648602 +2019-11-01 20:16:46,92.0,1157.59,248.6,8.416,0.0,96.0,504461296.0,-999192189.0,,2019-11-01 20:16:46,42.28345736861229,-83.75132177956402 +2019-11-01 20:16:47,92.0,1166.05,248.4,8.454,0.0,101.0,504461546.0,-999193404.0,,2019-11-01 20:16:47,42.28347832337022,-83.75142361968756 +2019-11-01 20:16:48,79.0,1174.66,248.4,8.612,0.0,105.0,504461895.0,-999194576.0,,2019-11-01 20:16:48,42.28350757621229,-83.75152185559273 +2019-11-01 20:16:49,79.0,1183.42,248.4,8.771,0.0,108.0,504462287.0,-999195777.0,,2019-11-01 20:16:49,42.28354043327272,-83.75162252224982 +2019-11-01 20:16:50,83.0,1192.28,248.4,8.855,0.0,109.0,504462746.0,-999196968.0,,2019-11-01 20:16:50,42.28357890620828,-83.75172235071659 +2019-11-01 20:16:52,85.0,1210.67,248.4,9.265,0.0,113.0,504463621.0,-999199300.0,,2019-11-01 20:16:52,42.28365224786103,-83.75191781669855 +2019-11-01 20:16:55,73.0,1237.06,248.4,8.855,0.0,116.0,504464916.0,-999202702.0,,2019-11-01 20:16:55,42.2837607935071,-83.75220296904445 +2019-11-01 20:16:57,73.0,1254.83,248.20000000000005,8.892000000000001,0.0,117.0,504465876.0,-999204978.0,,2019-11-01 20:16:57,42.283841259777546,-83.75239374116063 +2019-11-01 20:17:01,73.0,1289.71,247.0,8.416,0.0,120.0,504467802.0,-999209464.0,,2019-11-01 20:17:01,42.28400269523263,-83.7527697533369 +2019-11-01 20:17:02,73.0,1297.92,246.6,8.202,0.0,120.0,504468356.0,-999210780.0,,2019-11-01 20:17:02,42.2840491309762,-83.75288005918264 +2019-11-01 20:17:08,67.0,1342.36,245.0,6.97,0.0,122.0,504470552.0,-999216723.0,,2019-11-01 20:17:08,42.28423319756985,-83.75337819568813 +2019-11-01 20:17:14,66.0,1380.83,246.4,6.093,0.0,125.0,504472280.0,-999221276.0,,2019-11-01 20:17:14,42.28437803685665,-83.75375982373953 +2019-11-01 20:17:19,63.0,1411.87,249.4,6.4479999999999995,0.0,128.0,504473850.0,-999225101.0,,2019-11-01 20:17:19,42.284509632736444,-83.75408043153584 +2019-11-01 20:17:20,63.0,1418.18,249.79999999999995,6.317,0.0,129.0,504474116.0,-999225917.0,,2019-11-01 20:17:20,42.28453192859888,-83.75414882786572 +2019-11-01 20:17:24,66.0,1443.41,252.0,6.336,0.0,132.0,504475178.0,-999229067.0,,2019-11-01 20:17:24,42.28462094441056,-83.75441285781562 +2019-11-01 20:17:26,68.0,1456.44,253.0,6.699,0.0,135.0,504475704.0,-999230553.0,,2019-11-01 20:17:26,42.284665033221245,-83.75453741289675 +2019-11-01 20:17:29,74.0,1473.93,254.4,5.664,0.0,137.0,504476556.0,-999232752.0,,2019-11-01 20:17:29,42.284736447036266,-83.7547217309475 +2019-11-01 20:17:32,71.0,1490.98,256.20000000000005,5.729,0.0,141.0,504477368.0,-999234913.0,,2019-11-01 20:17:32,42.28480450809002,-83.75490286387503 +2019-11-01 20:17:34,73.0,1502.46,257.20000000000005,5.776,0.0,142.0,504477988.0,-999236361.0,,2019-11-01 20:17:34,42.28485647588968,-83.75502423383296 +2019-11-01 20:17:35,73.0,1508.43,257.4,5.962000000000001,0.0,142.0,504478278.0,-999237135.0,,2019-11-01 20:17:35,42.28488078340888,-83.7550891097635 +2019-11-01 20:17:44,77.0,1562.36,255.6,6.028,0.0,142.0,504480676.0,-999244078.0,,2019-11-01 20:17:44,42.285081781446934,-83.7556710653007 +2019-11-01 20:17:52,78.0,1610.65,254.20000000000005,6.046,0.0,139.0,504483007.0,-999250356.0,,2019-11-01 20:17:52,42.28527716360986,-83.75619728118181 +2019-11-01 20:17:53,78.0,1616.63,254.0,5.981,0.0,139.0,504483290.0,-999251098.0,,2019-11-01 20:17:53,42.28530088439584,-83.75625947490335 +2019-11-01 20:18:02,77.0,1670.33,254.0,5.897,0.0,139.0,504485996.0,-999258026.0,,2019-11-01 20:18:02,42.28552769869566,-83.75684017315507 +2019-11-01 20:18:05,75.0,1687.92,253.79999999999995,5.72,0.0,139.0,504486795.0,-999260369.0,,2019-11-01 20:18:05,42.285594670102,-83.75703656114638 +2019-11-01 20:18:09,74.0,1711.15,253.79999999999995,5.766,0.0,139.0,504488033.0,-999263355.0,,2019-11-01 20:18:09,42.285698438063264,-83.75728684477508 +2019-11-01 20:18:15,73.0,1745.65,253.6,5.617000000000001,0.0,140.0,504489527.0,-999267809.0,,2019-11-01 20:18:15,42.28582366369665,-83.75766017474234 +2019-11-01 20:18:19,82.0,1767.48,253.6,5.356,0.0,141.0,504490635.0,-999270667.0,,2019-11-01 20:18:19,42.28591653518379,-83.75789972953498 +2019-11-01 20:18:21,81.0,1778.28,253.6,5.505,0.0,140.0,504491300.0,-999271974.0,,2019-11-01 20:18:21,42.28597227483988,-83.75800928100944 +2019-11-01 20:18:28,66.0,1809.01,252.79999999999995,2.6689999999999996,0.0,138.0,504493001.0,-999276196.0,,2019-11-01 20:18:28,42.286114851012826,-83.75836316496134 +2019-11-01 20:18:29,66.0,1811.68,252.6,2.6689999999999996,0.0,138.0,504493077.0,-999276431.0,,2019-11-01 20:18:29,42.286121221259236,-83.75838286243379 +2019-11-01 20:18:31,0.0,1811.68,252.20000000000005,0.0,0.0,137.0,504493081.0,-999276526.0,,2019-11-01 20:18:31,42.28612155653536,-83.7583908252418 +2019-11-01 20:18:34,0.0,1811.68,252.0,0.0,0.0,134.0,504493081.0,-999276526.0,,2019-11-01 20:18:34,42.28612155653536,-83.7583908252418 +2019-11-01 20:18:39,0.0,1811.68,251.79999999999995,0.0,0.0,131.0,504493081.0,-999276526.0,,2019-11-01 20:18:39,42.28612155653536,-83.7583908252418 +2019-11-01 20:18:42,0.0,1811.68,251.79999999999995,0.0,0.0,128.0,504493081.0,-999276526.0,,2019-11-01 20:18:42,42.28612155653536,-83.7583908252418 +2019-11-01 20:18:44,0.0,1811.68,251.79999999999995,0.0,0.0,125.0,504493081.0,-999276526.0,,2019-11-01 20:18:44,42.28612155653536,-83.7583908252418 +2019-11-01 20:18:47,0.0,1811.68,251.79999999999995,0.0,0.0,122.0,504493081.0,-999276526.0,,2019-11-01 20:18:47,42.28612155653536,-83.7583908252418 +2019-11-01 20:18:52,0.0,1811.68,251.79999999999995,0.0,0.0,118.0,504493097.0,-999276555.0,,2019-11-01 20:18:52,42.28612289763987,-83.75839325599372 +2019-11-01 20:18:55,48.0,1819.62,251.79999999999995,3.966,0.0,119.0,504493492.0,-999277577.0,,2019-11-01 20:18:55,42.2861560061574,-83.75847891904414 +2019-11-01 20:18:57,81.0,1829.04,251.79999999999995,4.6930000000000005,0.0,113.0,504493964.0,-999278552.0,,2019-11-01 20:18:57,42.28619556874037,-83.75856064260006 +2019-11-01 20:19:00,77.0,1844.91,251.79999999999995,5.5329999999999995,0.0,116.0,504494843.0,-999280545.0,,2019-11-01 20:19:00,42.286269245669246,-83.75872769393027 +2019-11-01 20:19:01,84.0,1850.76,251.79999999999995,5.85,0.0,119.0,504495105.0,-999281253.0,,2019-11-01 20:19:01,42.286291206255555,-83.75878703780472 +2019-11-01 20:19:03,92.0,1862.79,251.79999999999995,6.056,0.0,122.0,504495627.0,-999282659.0,,2019-11-01 20:19:03,42.28633495979011,-83.75890488736331 +2019-11-01 20:19:05,81.0,1875.77,252.0,6.774,0.0,125.0,504496188.0,-999284170.0,,2019-11-01 20:19:05,42.2863819822669,-83.75903153792024 +2019-11-01 20:19:10,88.0,1920.05,252.4,9.685,0.0,127.0,504497961.0,-999289313.0,,2019-11-01 20:19:10,42.286530593410134,-83.75946261920035 +2019-11-01 20:19:14,83.0,1959.52,251.6,9.769,0.0,127.0,504499965.0,-999294443.0,,2019-11-01 20:19:14,42.28669856674969,-83.75989261083305 +2019-11-01 20:19:21,75.0,2022.78,250.6,8.043,0.0,129.0,504503245.0,-999303114.0,,2019-11-01 20:19:21,42.28697349317372,-83.76061940565705 +2019-11-01 20:19:24,67.0,2045.79,251.0,7.343,0.0,130.0,504504359.0,-999306198.0,,2019-11-01 20:19:24,42.28706686757505,-83.76087790355086 +2019-11-01 20:19:25,62.0,2052.89,251.20000000000005,7.11,0.0,130.0,504504670.0,-999307135.0,,2019-11-01 20:19:25,42.28709293529391,-83.76095644198358 +2019-11-01 20:19:28,58.0,2073.96,252.20000000000005,6.989,0.0,133.0,504505605.0,-999309859.0,,2019-11-01 20:19:28,42.28717130608857,-83.76118476502597 +2019-11-01 20:19:31,59.0,2095.02,253.6,7.202999999999999,0.0,136.0,504506553.0,-999312380.0,,2019-11-01 20:19:31,42.28725076653063,-83.76139607280493 +2019-11-01 20:19:34,63.0,2117.83,255.0,7.343,0.0,138.0,504507587.0,-999315148.0,,2019-11-01 20:19:34,42.28733743540943,-83.76162808388472 +2019-11-01 20:19:36,35.0,2132.29,255.79999999999995,7.269,0.0,140.0,504508222.0,-999317031.0,,2019-11-01 20:19:36,42.287390660494566,-83.76178591512144 +2019-11-01 20:19:40,83.0,2160.63,256.4,7.017,0.0,143.0,504509697.0,-999320745.0,,2019-11-01 20:19:40,42.287514293566346,-83.76209721900523 +2019-11-01 20:19:44,83.0,2188.45,256.6,6.8020000000000005,0.0,144.0,504511074.0,-999324303.0,,2019-11-01 20:19:44,42.28762971237302,-83.76239544712007 +2019-11-01 20:19:52,87.0,2240.23,256.4,5.944,0.0,142.0,504513899.0,-999331109.0,,2019-11-01 20:19:52,42.287866501137614,-83.76296591944993 +2019-11-01 20:19:57,72.0,2266.72,256.20000000000005,4.805,0.0,141.0,504515241.0,-999334565.0,,2019-11-01 20:19:57,42.287978986278176,-83.76325559802353 +2019-11-01 20:20:03,78.0,2292.1,256.6,4.04,0.0,141.0,504516639.0,-999337792.0,,2019-11-01 20:20:03,42.288096165284514,-83.76352608203888 +2019-11-01 20:20:08,74.0,2311.78,257.79999999999995,3.798,0.0,140.0,504517525.0,-999340090.0,,2019-11-01 20:20:08,42.288170428946614,-83.76371869817376 +2019-11-01 20:20:16,73.0,2342.74,259.79999999999995,3.975,0.0,141.0,504518913.0,-999343706.0,,2019-11-01 20:20:16,42.288286769762635,-83.76402178779244 +2019-11-01 20:20:25,73.0,2377.74,262.4,3.9189999999999996,0.0,141.0,504520408.0,-999348166.0,,2019-11-01 20:20:25,42.28841207921505,-83.7643956206739 +2019-11-01 20:20:32,77.0,2405.45,262.79999999999995,3.9189999999999996,0.0,140.0,504521464.0,-999351620.0,,2019-11-01 20:20:32,42.28850059211254,-83.76468513160944 +2019-11-01 20:20:39,76.0,2433.63,263.20000000000005,3.947,0.0,138.0,504523309.0,-999355323.0,,2019-11-01 20:20:39,42.288655238226056,-83.76499551348388 +2019-11-01 20:20:46,73.0,2460.94,265.4,3.891,0.0,137.0,504524933.0,-999358923.0,,2019-11-01 20:20:46,42.28879136033356,-83.76529726199806 +2019-11-01 20:20:55,74.0,2495.36,269.4,3.91,0.0,136.0,504526926.0,-999363203.0,,2019-11-01 20:20:55,42.28895841166377,-83.7656560074538 +2019-11-01 20:21:02,78.0,2523.86,270.20000000000005,4.05,0.0,138.0,504528342.0,-999366793.0,,2019-11-01 20:21:02,42.28907709941268,-83.76595691777766 +2019-11-01 20:21:09,86.0,2553.72,268.4,4.46,0.0,138.0,504529454.0,-999370424.0,,2019-11-01 20:21:09,42.28917030617595,-83.76626126468182 +2019-11-01 20:21:12,77.0,2567.82,268.0,4.824,0.0,137.0,504530061.0,-999372160.0,,2019-11-01 20:21:12,42.2892211843282,-83.76640677452087 +2019-11-01 20:21:16,29.0,2587.03,268.0,4.731,0.0,136.0,504530785.0,-999374683.0,,2019-11-01 20:21:16,42.28928186930716,-83.76661824993789 +2019-11-01 20:21:17,29.0,2591.83,267.79999999999995,4.796,0.0,136.0,504530998.0,-999375293.0,,2019-11-01 20:21:17,42.289299722760916,-83.76666937954724 +2019-11-01 20:21:21,75.0,2611.72,267.79999999999995,5.039,0.0,135.0,504532095.0,-999377876.0,,2019-11-01 20:21:21,42.28939167223871,-83.76688588410616 +2019-11-01 20:21:23,76.0,2621.84,268.0,5.095,0.0,134.0,504532638.0,-999379227.0,,2019-11-01 20:21:23,42.28943718597293,-83.766999123618 +2019-11-01 20:21:28,76.0,2647.36,269.79999999999995,5.039,0.0,134.0,504533951.0,-999382662.0,,2019-11-01 20:21:28,42.28954724036157,-83.76728704199195 +2019-11-01 20:21:35,74.0,2682.21,270.6,4.843,0.0,134.0,504535895.0,-999387158.0,,2019-11-01 20:21:35,42.289710184559226,-83.76766389235854 +2019-11-01 20:21:40,77.0,2705.38,270.79999999999995,4.591,0.0,134.0,504537051.0,-999390302.0,,2019-11-01 20:21:40,42.28980707935989,-83.76792741939425 +2019-11-01 20:21:42,77.0,2714.53,270.79999999999995,4.535,0.0,134.0,504537595.0,-999391420.0,,2019-11-01 20:21:42,42.28985267691314,-83.76802112907171 +2019-11-01 20:21:43,76.0,2719.05,271.0,4.516,0.0,134.0,504537866.0,-999392149.0,,2019-11-01 20:21:43,42.28987539187074,-83.76808223314583 +2019-11-01 20:21:44,76.0,2723.6,271.20000000000005,4.553,0.0,134.0,504538074.0,-999392593.0,,2019-11-01 20:21:44,42.289892826229334,-83.76811944879591 +2019-11-01 20:21:47,77.0,2737.3,271.4,4.488,0.0,135.0,504538878.0,-999394344.0,,2019-11-01 20:21:47,42.28996021673083,-83.76826621592045 +2019-11-01 20:21:49,75.0,2746.29,271.6,4.516,0.0,135.0,504539301.0,-999395506.0,,2019-11-01 20:21:49,42.28999567218125,-83.7683636136353 +2019-11-01 20:21:57,75.0,2783.09,274.20000000000005,4.413,0.0,137.0,504541187.0,-999400436.0,,2019-11-01 20:21:57,42.290153754875064,-83.76877684146166 +2019-11-01 20:22:01,74.0,2800.89,275.4,4.525,0.0,137.0,504541965.0,-999402738.0,,2019-11-01 20:22:01,42.29021896608174,-83.76896979287267 +2019-11-01 20:22:04,75.0,2814.44,276.20000000000005,4.441,0.0,137.0,504542556.0,-999404397.0,,2019-11-01 20:22:04,42.29026850312948,-83.76910884864628 +2019-11-01 20:22:09,75.0,2836.81,277.20000000000005,4.507,0.0,138.0,504543699.0,-999407181.0,,2019-11-01 20:22:09,42.29036430828273,-83.76934220083058 +2019-11-01 20:22:10,77.0,2841.49,277.4,4.675,0.0,138.0,504543915.0,-999407786.0,,2019-11-01 20:22:10,42.29038241319358,-83.76939291134477 +2019-11-01 20:22:16,77.0,2871.72,278.20000000000005,5.263,0.0,137.0,504545575.0,-999411721.0,,2019-11-01 20:22:16,42.29052155278623,-83.76972273923457 +2019-11-01 20:22:17,73.0,2877.05,278.4,5.337000000000001,0.0,137.0,504545997.0,-999412319.0,,2019-11-01 20:22:17,42.290556924417615,-83.76977286301553 +2019-11-01 20:22:22,76.0,2904.46,279.0,5.561,0.0,136.0,504547232.0,-999415795.0,,2019-11-01 20:22:22,42.29066044092178,-83.77006421796978 +2019-11-01 20:22:23,76.0,2910.07,279.20000000000005,5.617000000000001,0.0,136.0,504547504.0,-999416447.0,,2019-11-01 20:22:23,42.29068323969841,-83.77011886797845 +2019-11-01 20:22:25,78.0,2921.52,279.20000000000005,5.747999999999999,0.0,136.0,504548047.0,-999417815.0,,2019-11-01 20:22:25,42.29072875343263,-83.77023353241384 +2019-11-01 20:22:30,80.0,2950.08,279.0,5.7010000000000005,0.0,134.0,504549369.0,-999421520.0,,2019-11-01 20:22:30,42.29083956219256,-83.77054408192635 +2019-11-01 20:22:40,73.0,3004.78,277.4,5.281000000000001,0.0,134.0,504552165.0,-999428402.0,,2019-11-01 20:22:40,42.291073920205235,-83.77112092450261 +2019-11-01 20:22:45,76.0,3031.72,276.4,5.3839999999999995,0.0,136.0,504553190.0,-999431616.0,,2019-11-01 20:22:45,42.291159834712744,-83.77139031887054 +2019-11-01 20:22:47,74.0,3042.34,276.0,5.281000000000001,0.0,136.0,504553785.0,-999433095.0,,2019-11-01 20:22:47,42.291209707036614,-83.77151428721845 +2019-11-01 20:22:58,76.0,3095.59,276.6,4.619,0.0,137.0,504556504.0,-999439972.0,,2019-11-01 20:22:58,42.29143761098385,-83.77209071069956 +2019-11-01 20:23:02,77.0,3113.97,278.20000000000005,4.619,0.0,137.0,504557446.0,-999442425.0,,2019-11-01 20:23:02,42.291516568511724,-83.77229631878436 +2019-11-01 20:23:05,76.0,3127.99,279.20000000000005,4.6930000000000005,0.0,138.0,504558104.0,-999444097.0,,2019-11-01 20:23:05,42.29157172143459,-83.77243646420538 +2019-11-01 20:23:06,79.0,3132.82,279.20000000000005,4.824,0.0,137.0,504558354.0,-999444679.0,,2019-11-01 20:23:06,42.29159267619252,-83.77248524688184 +2019-11-01 20:23:11,81.0,3159.07,280.0,5.457999999999999,0.0,137.0,504559793.0,-999447951.0,,2019-11-01 20:23:11,42.29171329177916,-83.77275950275362 +2019-11-01 20:23:18,78.0,3198.14,281.6,5.729,0.0,139.0,504561749.0,-999452831.0,,2019-11-01 20:23:18,42.291877241805196,-83.77316853962839 +2019-11-01 20:23:27,81.0,3249.28,282.0,5.729,0.0,137.0,504564121.0,-999459557.0,,2019-11-01 20:23:27,42.292076060548425,-83.7737323064357 +2019-11-01 20:23:34,79.0,3289.47,282.7999999999999,5.729,0.0,137.0,504566278.0,-999464624.0,,2019-11-01 20:23:34,42.292256858199835,-83.7741570174694 +2019-11-01 20:23:43,85.0,3342.39,285.4,6.037000000000001,0.0,137.0,504568834.0,-999471389.0,,2019-11-01 20:23:43,42.2924710996449,-83.77472405321896 +2019-11-01 20:23:50,78.0,3387.45,286.4,6.681,0.0,136.0,504571042.0,-999477157.0,,2019-11-01 20:23:50,42.29265617206693,-83.7752075213939 +2019-11-01 20:23:57,76.0,3436.23,286.6,7.091,0.0,135.0,504573463.0,-999483422.0,,2019-11-01 20:23:57,42.29285909794271,-83.77573264762759 +2019-11-01 20:24:04,86.0,3490.43,285.6,8.36,0.0,132.0,504576137.0,-999490023.0,,2019-11-01 20:24:04,42.29308323003352,-83.77628593705595 +2019-11-01 20:24:05,87.0,3499.04,285.4,8.622,0.0,132.0,504576549.0,-999491120.0,,2019-11-01 20:24:05,42.293117763474584,-83.77637788653374 +2019-11-01 20:24:11,68.0,3555.59,283.6,10.03,0.0,131.0,504579156.0,-999498143.0,,2019-11-01 20:24:11,42.293336279690266,-83.77696654759347 +2019-11-01 20:24:17,82.0,3619.7,281.7999999999999,11.132,0.0,130.0,504582289.0,-999506062.0,,2019-11-01 20:24:17,42.29359888471663,-83.77763031050563 +2019-11-01 20:24:22,81.0,3675.05,281.20000000000005,11.029000000000002,0.0,130.0,504584962.0,-999513353.0,,2019-11-01 20:24:22,42.293822932988405,-83.77824143506587 +2019-11-01 20:24:28,75.0,3738.88,280.6,10.338,0.0,129.0,504588118.0,-999521825.0,,2019-11-01 20:24:28,42.2940874658525,-83.77895154990256 +2019-11-01 20:24:29,75.0,3748.9,280.4,10.003,0.0,129.0,504588606.0,-999523185.0,,2019-11-01 20:24:29,42.294128369539976,-83.77906554378569 +2019-11-01 20:24:34,69.0,3790.03,280.0,5.067,0.0,128.0,504591218.0,-999529571.0,,2019-11-01 20:24:34,42.29434730485082,-83.77960081212223 +2019-11-01 20:24:37,69.0,3797.54,280.0,1.633,0.0,127.0,504591989.0,-999531403.0,,2019-11-01 20:24:37,42.29441192932427,-83.77975436858833 +2019-11-01 20:24:40,0.0,3797.54,280.4,0.0,0.0,127.0,504592053.0,-999531545.0,,2019-11-01 20:24:40,42.2944172937423,-83.77976627089083 +2019-11-01 20:24:45,5.0,3797.54,280.4,0.0,0.0,130.0,504592053.0,-999531545.0,,2019-11-01 20:24:45,42.2944172937423,-83.77976627089083 +2019-11-01 20:24:47,5.0,3797.54,280.6,0.0,0.0,133.0,504592060.0,-999531723.0,,2019-11-01 20:24:47,42.29441788047552,-83.77978119067848 +2019-11-01 20:24:48,5.0,3797.92,280.6,0.38299999999999995,0.0,134.0,504592070.0,-999531900.0,,2019-11-01 20:24:48,42.29441871866584,-83.77979602664709 +2019-11-01 20:24:50,13.0,3805.33,280.6,3.9189999999999996,0.0,134.0,504592227.0,-999532551.0,,2019-11-01 20:24:50,42.29443187825382,-83.77985059283674 +2019-11-01 20:24:53,57.0,3820.07,280.6,5.412000000000001,0.0,131.0,504592908.0,-999533924.0,,2019-11-01 20:24:53,42.294488959014416,-83.77996567636728 +2019-11-01 20:24:55,70.0,3831.75,280.6,5.981,0.0,131.0,504593600.0,-999535083.0,,2019-11-01 20:24:55,42.29454696178436,-83.78006282262504 +2019-11-01 20:24:57,81.0,3844.12,280.79999999999995,6.289,0.0,132.0,504594331.0,-999536632.0,,2019-11-01 20:24:57,42.29460823349655,-83.78019265830517 +2019-11-01 20:25:03,92.0,3885.04,282.7999999999999,7.11,0.0,134.0,504596405.0,-999541672.0,,2019-11-01 20:25:03,42.294782074168324,-83.78061510622501 +2019-11-01 20:25:05,85.0,3900.03,283.2000000000001,7.446000000000001,0.0,134.0,504597216.0,-999543409.0,,2019-11-01 20:25:05,42.294850051403046,-83.7807606998831 +2019-11-01 20:25:07,88.0,3914.75,283.4,7.371,0.0,134.0,504598341.0,-999544495.0,,2019-11-01 20:25:07,42.294944347813725,-83.78085172735155 +2019-11-01 20:25:10,89.0,3937.54,283.7999999999999,7.791,0.0,133.0,504600680.0,-999544825.0,,2019-11-01 20:25:10,42.29514040052891,-83.78087938763201 +2019-11-01 20:25:16,85.0,3985.13,285.2000000000001,8.08,0.0,134.0,504605823.0,-999545613.0,,2019-11-01 20:25:16,42.29557148180902,-83.780945437029 +2019-11-01 20:25:21,85.0,4025.65,285.4,8.323,0.0,137.0,504610228.0,-999545741.0,,2019-11-01 20:25:21,42.295940704643726,-83.78095616586506 +2019-11-01 20:25:23,88.0,4042.22,285.6,8.323,0.0,137.0,504612016.0,-999545675.0,,2019-11-01 20:25:23,42.29609057307243,-83.78095063380897 +2019-11-01 20:25:29,89.0,4093.77,285.7999999999999,8.622,0.0,139.0,504617562.0,-999545430.0,,2019-11-01 20:25:29,42.29655543342233,-83.7809300981462 +2019-11-01 20:25:37,86.0,4160.28,287.0,7.754,0.0,139.0,504625233.0,-999545275.0,,2019-11-01 20:25:37,42.297198409214616,-83.78091710619628 +2019-11-01 20:25:43,82.0,4203.51,288.4,6.821000000000001,0.0,140.0,504629773.0,-999545245.0,,2019-11-01 20:25:43,42.297578947618604,-83.78091459162533 +2019-11-01 20:25:50,80.0,4250.63,290.2000000000001,6.8020000000000005,0.0,140.0,504634482.0,-999545283.0,,2019-11-01 20:25:50,42.29797365143895,-83.78091777674854 +2019-11-01 20:25:57,93.0,4301.58,290.6,7.819,0.0,140.0,504639816.0,-999545205.0,,2019-11-01 20:25:57,42.29842074215412,-83.78091123886406 +2019-11-01 20:26:02,82.0,4346.0,291.0,9.648,0.0,140.0,504644434.0,-999545658.0,,2019-11-01 20:26:02,42.29880781844258,-83.78094920888543 +2019-11-01 20:26:07,75.0,4398.64,290.7999999999999,11.065999999999999,0.0,140.0,504649998.0,-999545628.0,,2019-11-01 20:26:07,42.29927418753505,-83.78094669431448 +2019-11-01 20:26:10,82.0,4432.95,290.2000000000001,11.533,0.0,141.0,504653710.0,-999545845.0,,2019-11-01 20:26:10,42.299585323780775,-83.78096488304436 +2019-11-01 20:26:11,69.0,4444.2,290.0,11.234000000000002,0.0,141.0,504655051.0,-999545398.0,,2019-11-01 20:26:11,42.299697725102305,-83.78092741593719 +2019-11-01 20:26:12,69.0,4455.37,289.7999999999999,11.177999999999999,0.0,141.0,504656220.0,-999544602.0,,2019-11-01 20:26:12,42.29979570955038,-83.78086069598794 +2019-11-01 20:26:14,69.0,4474.4,289.4,8.658999999999999,0.0,142.0,504658564.0,-999543439.0,,2019-11-01 20:26:14,42.29999218136072,-83.78076321445405 +2019-11-01 20:26:16,12.0,4482.88,289.2000000000001,2.883,0.0,142.0,504660438.0,-999543743.0,,2019-11-01 20:26:16,42.300149258226156,-83.7807886954397 +2019-11-01 20:26:19,22.0,4485.11,289.4,0.0,0.0,142.0,504661572.0,-999544068.0,,2019-11-01 20:26:19,42.30024430900812,-83.780815936625 +2019-11-01 20:26:21,22.0,4485.11,289.4,0.0,0.0,141.0,504661370.0,-999544061.0,,2019-11-01 20:26:21,42.300227377563715,-83.78081534989178 +2019-11-01 20:26:26,0.0,4485.11,290.0,0.0,0.0,144.0,504661370.0,-999544061.0,,2019-11-01 20:26:26,42.300227377563715,-83.78081534989178 +2019-11-01 20:26:30,7.0,4488.3,290.0,1.493,0.0,146.0,504661414.0,-999544192.0,,2019-11-01 20:26:30,42.30023106560111,-83.78082633018494 +2019-11-01 20:26:38,8.0,4505.35,288.6,2.7710000000000004,0.0,145.0,504662835.0,-999545405.0,,2019-11-01 20:26:38,42.30035017244518,-83.78092800267041 +2019-11-01 20:26:43,9.0,4524.62,286.6,4.74,0.0,143.0,504664635.0,-999546120.0,,2019-11-01 20:26:43,42.300501046702266,-83.78098793327808 +2019-11-01 20:26:48,39.0,4552.58,285.2000000000001,6.046,0.0,142.0,504667403.0,-999546746.0,,2019-11-01 20:26:48,42.300733057782054,-83.78104040399194 +2019-11-01 20:26:50,67.0,4565.38,284.6,6.577999999999999,0.0,141.0,504668742.0,-999546892.0,,2019-11-01 20:26:50,42.30084529146552,-83.78105264157057 +2019-11-01 20:26:53,73.0,4586.22,283.6,7.082000000000001,0.0,139.0,504670868.0,-999546871.0,,2019-11-01 20:26:53,42.30102349072695,-83.7810508813709 +2019-11-01 20:26:57,73.0,4615.03,282.4,7.129,0.0,136.0,504673672.0,-999546972.0,,2019-11-01 20:26:57,42.30125851929188,-83.7810593470931 +2019-11-01 20:27:00,73.0,4634.91,282.4,6.438,0.0,136.0,504675972.0,-999546960.0,,2019-11-01 20:27:00,42.30145130306482,-83.78105834126472 +2019-11-01 20:27:01,73.0,4641.35,282.4,6.438,0.0,136.0,504676707.0,-999546784.0,,2019-11-01 20:27:01,42.301512910053134,-83.78104358911514 +2019-11-01 20:27:04,72.0,4661.42,282.6,6.821000000000001,0.0,136.0,504678694.0,-999545416.0,,2019-11-01 20:27:04,42.30167945846915,-83.78092892467976 +2019-11-01 20:27:05,74.0,4668.32,282.7999999999999,6.886,0.0,136.0,504679373.0,-999545016.0,,2019-11-01 20:27:05,42.30173637159169,-83.78089539706707 +2019-11-01 20:27:07,73.0,4682.15,283.2000000000001,6.9510000000000005,0.0,133.0,504680824.0,-999544806.0,,2019-11-01 20:27:07,42.301857993006706,-83.78087779507041 +2019-11-01 20:27:11,76.0,4710.3,284.2000000000001,7.063,0.0,132.0,504683747.0,-999545716.0,,2019-11-01 20:27:11,42.30210299603641,-83.78095407038927 +2019-11-01 20:27:17,77.0,4752.9,284.7999999999999,7.25,0.0,135.0,504687985.0,-999546606.0,,2019-11-01 20:27:17,42.30245822109282,-83.7810286693275 +2019-11-01 20:27:19,79.0,4767.76,284.7999999999999,7.502000000000001,0.0,135.0,504689704.0,-999546753.0,,2019-11-01 20:27:19,42.30260230600834,-83.78104099072516 +2019-11-01 20:27:25,72.0,4814.82,284.7999999999999,7.959,0.0,134.0,504694803.0,-999547343.0,,2019-11-01 20:27:25,42.303029699251056,-83.78109044395387 +2019-11-01 20:27:33,78.0,4881.4,284.4,8.743,0.0,132.0,504701899.0,-999547954.0,,2019-11-01 20:27:33,42.30362447910011,-83.78114165738225 +2019-11-01 20:27:35,78.0,4898.51,284.2000000000001,8.575,0.0,132.0,504703707.0,-999548079.0,,2019-11-01 20:27:35,42.30377602390945,-83.78115213476121 +2019-11-01 20:27:42,76.0,4957.96,282.2000000000001,8.472000000000001,0.0,130.0,504710109.0,-999548484.0,,2019-11-01 20:27:42,42.30431263335049,-83.78118608146906 +2019-11-01 20:27:50,73.0,5022.83,282.2000000000001,7.782,0.0,128.0,504717135.0,-999548377.0,,2019-11-01 20:27:50,42.304901545867324,-83.78117711283267 +2019-11-01 20:27:56,64.0,5066.63,282.6,7.082000000000001,0.0,129.0,504721975.0,-999547936.0,,2019-11-01 20:27:56,42.305307229980826,-83.78114014863968 +2019-11-01 20:27:57,64.0,5073.3,282.7999999999999,6.671,0.0,129.0,504722730.0,-999547712.0,,2019-11-01 20:27:57,42.30537051334977,-83.78112137317657 +2019-11-01 20:27:58,64.0,5079.8,283.0,6.494,0.0,129.0,504723403.0,-999547309.0,,2019-11-01 20:27:58,42.305426923558116,-83.7810875941068 +2019-11-01 20:28:01,69.0,5099.42,283.4,6.653,0.0,128.0,504725237.0,-999545895.0,,2019-11-01 20:28:01,42.30558064766228,-83.78096907399595 +2019-11-01 20:28:03,71.0,5113.24,283.6,6.942,0.0,128.0,504726674.0,-999545909.0,,2019-11-01 20:28:03,42.30570109561086,-83.78097024746239 +2019-11-01 20:28:04,78.0,5120.36,283.6,7.129,0.0,128.0,504727359.0,-999546252.0,,2019-11-01 20:28:04,42.30575851164758,-83.78099899739027 +2019-11-01 20:28:06,77.0,5135.26,283.7999999999999,7.539,0.0,128.0,504728774.0,-999546979.0,,2019-11-01 20:28:06,42.30587711557746,-83.78105993382633 +2019-11-01 20:28:10,71.0,5165.99,283.4,7.754,0.0,128.0,504731978.0,-999547943.0,,2019-11-01 20:28:10,42.306145671755075,-83.7811407353729 +2019-11-01 20:28:17,72.0,5221.27,283.0,7.95,0.0,127.0,504737875.0,-999549006.0,,2019-11-01 20:28:17,42.3066399525851,-83.78122983500361 +2019-11-01 20:28:24,75.0,5278.58,283.0,8.873,0.0,126.0,504743825.0,-999549361.0,,2019-11-01 20:28:24,42.30713867582381,-83.78125959075987 +2019-11-01 20:28:30,70.0,5334.89,283.2000000000001,10.096,0.0,124.0,504749654.0,-999549686.0,,2019-11-01 20:28:30,42.30762725695968,-83.78128683194518 +2019-11-01 20:28:36,75.0,5401.51,281.4,11.953,0.0,123.0,504756592.0,-999549972.0,,2019-11-01 20:28:36,42.30820879340172,-83.78131080418825 +2019-11-01 20:28:41,14.0,5465.33,277.6,13.035,0.0,123.0,504763451.0,-999550178.0,,2019-11-01 20:28:41,42.308783708140254,-83.78132807090878 +2019-11-01 20:28:46,81.0,5530.07,273.6,12.792,0.0,121.0,504770686.0,-999550518.0,,2019-11-01 20:28:46,42.309390138834715,-83.78135656937957 +2019-11-01 20:28:47,81.0,5542.64,273.0,12.568,0.0,120.0,504772103.0,-999550653.0,,2019-11-01 20:28:47,42.309508910402656,-83.78136788494885 +2019-11-01 20:28:52,73.0,5603.19,270.79999999999995,11.925,0.0,119.0,504778722.0,-999551120.0,,2019-11-01 20:28:52,42.31006370857358,-83.78140702843666 +2019-11-01 20:28:58,67.0,5670.79,268.79999999999995,10.45,0.0,120.0,504786109.0,-999551674.0,,2019-11-01 20:28:58,42.31068287976086,-83.78145346418023 +2019-11-01 20:29:03,55.0,5717.66,267.4,8.752,0.0,120.0,504791332.0,-999551942.0,,2019-11-01 20:29:03,42.31112066656351,-83.78147592768073 +2019-11-01 20:29:08,71.0,5759.49,267.4,8.482000000000001,0.0,120.0,504795643.0,-999552497.0,,2019-11-01 20:29:08,42.311482010409236,-83.78152244724333 +2019-11-01 20:29:14,79.0,5819.83,266.4,11.085,0.0,121.0,504801656.0,-999552869.0,,2019-11-01 20:29:14,42.31198601424694,-83.78155362792313 +2019-11-01 20:29:19,74.0,5879.11,263.6,12.195,0.0,121.0,504807859.0,-999553121.0,,2019-11-01 20:29:19,42.31250594370067,-83.78157475031912 +2019-11-01 20:29:24,78.0,5941.83,260.20000000000005,12.718,0.0,120.0,504814540.0,-999553177.0,,2019-11-01 20:29:24,42.31306593865156,-83.7815794441849 +2019-11-01 20:29:25,78.0,5954.68,259.6,12.847999999999999,0.0,120.0,504815879.0,-999553184.0,,2019-11-01 20:29:25,42.31317817233503,-83.78158003091812 +2019-11-01 20:29:30,80.0,6019.31,257.6,12.886,0.0,120.0,504822545.0,-999553164.0,,2019-11-01 20:29:30,42.31373691000044,-83.78157835453749 +2019-11-01 20:29:31,80.0,6032.08,257.4,12.774000000000001,0.0,120.0,504823929.0,-999553173.0,,2019-11-01 20:29:31,42.31385291554034,-83.78157910890877 +2019-11-01 20:29:36,63.0,6092.38,257.0,11.589,0.0,120.0,504830634.0,-999552646.0,,2019-11-01 20:29:36,42.31441492214799,-83.78153493627906 +2019-11-01 20:29:37,63.0,6103.35,257.20000000000005,10.972999999999999,0.0,120.0,504831760.0,-999552066.0,,2019-11-01 20:29:37,42.3145093023777,-83.78148632124066 +2019-11-01 20:29:38,63.0,6114.09,257.20000000000005,10.74,0.0,120.0,504832752.0,-999551361.0,,2019-11-01 20:29:38,42.31459245085716,-83.7814272288233 +2019-11-01 20:29:40,0.0,6134.37,257.20000000000005,9.956,0.0,119.0,504834572.0,-999549201.0,,2019-11-01 20:29:40,42.314745001494884,-83.7812461797148 +2019-11-01 20:29:45,0.0,6180.97,257.20000000000005,8.863999999999999,0.0,117.0,504838747.0,-999543720.0,,2019-11-01 20:29:45,42.315094945952296,-83.78078676760197 +2019-11-01 20:29:47,0.0,6197.86,257.20000000000005,8.36,0.0,112.0,504840220.0,-999542237.0,,2019-11-01 20:29:47,42.31521841138601,-83.78066246397793 +2019-11-01 20:29:48,0.0,6205.62,257.20000000000005,7.763,0.0,112.0,504840968.0,-999541626.0,,2019-11-01 20:29:48,42.315281108021736,-83.78061125054955 +2019-11-01 20:29:49,0.0,6213.07,256.79999999999995,7.446000000000001,0.0,112.0,504841695.0,-999541150.0,,2019-11-01 20:29:49,42.31534204445779,-83.78057135269046 +2019-11-01 20:29:51,0.0,6227.08,255.6,6.8389999999999995,0.0,112.0,504843302.0,-999540423.0,,2019-11-01 20:29:51,42.31547674164176,-83.7805104162544 +2019-11-01 20:29:53,0.0,6240.8,254.0,7.11,0.0,110.0,504844769.0,-999540694.0,,2019-11-01 20:29:53,42.315599704161286,-83.780533131212 +2019-11-01 20:29:55,0.0,6256.89,252.6,8.426,0.0,109.0,504846073.0,-999541878.0,,2019-11-01 20:29:55,42.31570900417864,-83.78063237294555 +2019-11-01 20:29:56,0.0,6265.95,252.20000000000005,9.051,0.0,108.0,504846640.0,-999542816.0,,2019-11-01 20:29:56,42.315756529569626,-83.7807109951973 +2019-11-01 20:29:57,77.0,6275.1,251.6,9.163,0.0,106.0,504847080.0,-999543929.0,,2019-11-01 20:29:57,42.31579340994358,-83.7808042857796 +2019-11-01 20:29:59,77.0,6294.26,250.6,9.695,0.0,105.0,504847346.0,-999546444.0,,2019-11-01 20:29:59,42.31581570580602,-83.78101509064436 +2019-11-01 20:30:02,79.0,6324.53,249.4,10.189,0.0,104.0,504846809.0,-999550907.0,,2019-11-01 20:30:02,42.315770694985986,-83.7813891749829 +2019-11-01 20:30:04,73.0,6344.72,248.79999999999995,10.003,0.0,107.0,504846377.0,-999554013.0,,2019-11-01 20:30:04,42.315734485164285,-83.78164951689541 +2019-11-01 20:30:06,75.0,6364.83,248.4,10.068,0.0,112.0,504845910.0,-999556993.0,,2019-11-01 20:30:06,42.315695341676474,-83.78189929760993 +2019-11-01 20:30:08,73.0,6384.62,248.20000000000005,9.956,0.0,115.0,504845422.0,-999559775.0,,2019-11-01 20:30:08,42.315654437989,-83.78213248215616 +2019-11-01 20:30:09,73.0,6394.57,248.0,9.956,0.0,116.0,504845185.0,-999561172.0,,2019-11-01 20:30:09,42.31563457287848,-83.78224957734346 +2019-11-01 20:30:14,71.0,6445.02,246.79999999999995,10.068,0.0,119.0,504843804.0,-999568596.0,,2019-11-01 20:30:14,42.31551881879568,-83.78287184983492 +2019-11-01 20:30:15,73.0,6455.09,246.79999999999995,10.068,0.0,119.0,504843492.0,-999570020.0,,2019-11-01 20:30:15,42.315492667257786,-83.78299120813608 +2019-11-01 20:30:19,73.0,6494.94,246.79999999999995,9.891,0.0,122.0,504841913.0,-999575721.0,,2019-11-01 20:30:19,42.31536031700671,-83.78346906043589 +2019-11-01 20:30:21,83.0,6514.72,246.79999999999995,9.891,0.0,122.0,504841057.0,-999578274.0,,2019-11-01 20:30:21,42.31528856791556,-83.78368305042386 +2019-11-01 20:30:27,83.0,6573.73,246.79999999999995,9.713,0.0,125.0,504838434.0,-999586098.0,,2019-11-01 20:30:27,42.31506871059537,-83.784338850528 +2019-11-01 20:30:33,77.0,6629.76,247.6,9.125,0.0,126.0,504835591.0,-999594048.0,,2019-11-01 20:30:33,42.3148304130882,-83.78500521183014 +2019-11-01 20:30:38,75.0,6674.51,248.20000000000005,8.863999999999999,0.0,128.0,504833612.0,-999599850.0,,2019-11-01 20:30:38,42.31466453522444,-83.78549152985215 +2019-11-01 20:30:45,69.0,6733.14,247.79999999999995,8.276,0.0,128.0,504831032.0,-999607503.0,,2019-11-01 20:30:45,42.31444828212261,-83.78613299690187 +2019-11-01 20:30:53,69.0,6798.14,247.6,8.062000000000001,0.0,127.0,504827740.0,-999615484.0,,2019-11-01 20:30:53,42.314172349870205,-83.78680195659399 +2019-11-01 20:30:54,68.0,6806.07,247.4,7.922000000000001,0.0,127.0,504827339.0,-999616444.0,,2019-11-01 20:30:54,42.31413873843849,-83.78688242286444 +2019-11-01 20:31:01,70.0,6859.34,246.0,7.437,0.0,128.0,504824428.0,-999623096.0,,2019-11-01 20:31:01,42.31389474123716,-83.78743998706341 +2019-11-01 20:31:08,78.0,6910.54,245.6,7.202999999999999,0.0,129.0,504821588.0,-999629120.0,,2019-11-01 20:31:08,42.31365669518709,-83.78794491291046 +2019-11-01 20:31:14,79.0,6955.34,246.0,7.521,0.0,130.0,504819366.0,-999633836.0,,2019-11-01 20:31:14,42.31347044929862,-83.78834020346403 +2019-11-01 20:31:20,79.0,6999.85,248.20000000000005,7.343,0.0,131.0,504816226.0,-999639281.0,,2019-11-01 20:31:20,42.313207257539034,-83.78879659809172 +2019-11-01 20:31:27,78.0,7050.87,248.79999999999995,7.25,0.0,129.0,504812946.0,-999645548.0,,2019-11-01 20:31:27,42.31293233111501,-83.78932189196348 +2019-11-01 20:31:33,78.0,7094.06,248.4,7.297000000000001,0.0,128.0,504810457.0,-999651243.0,,2019-11-01 20:31:33,42.31272370554507,-83.7897992413491 +2019-11-01 20:31:39,78.0,7137.88,248.0,7.371,0.0,128.0,504808469.0,-999656904.0,,2019-11-01 20:31:39,42.31255707331002,-83.79027374088764 +2019-11-01 20:31:42,79.0,7160.16,248.0,7.474,0.0,128.0,504807795.0,-999659804.0,,2019-11-01 20:31:42,42.31250057928264,-83.79051681607962 +2019-11-01 20:31:45,80.0,7182.49,248.0,7.474,0.0,128.0,504807033.0,-999662985.0,,2019-11-01 20:31:45,42.312436709180474,-83.7907834444195 +2019-11-01 20:31:51,81.0,7227.36,247.4,7.577000000000001,0.0,127.0,504805799.0,-999669581.0,,2019-11-01 20:31:51,42.31233327649534,-83.7913363147527 +2019-11-01 20:31:57,82.0,7273.43,246.4,7.903,0.0,129.0,504806590.0,-999676148.0,,2019-11-01 20:31:57,42.312399577349424,-83.79188675433397 +2019-11-01 20:32:04,79.0,7330.78,245.20000000000005,8.23,0.0,129.0,504808876.0,-999683859.0,,2019-11-01 20:32:04,42.312591187655926,-83.79253308288753 +2019-11-01 20:32:10,77.0,7380.27,243.4,8.099,0.0,128.0,504811856.0,-999689696.0,,2019-11-01 20:32:10,42.31284096837044,-83.79302233457565 +2019-11-01 20:32:15,77.0,7420.72,242.20000000000005,8.015,0.0,128.0,504814887.0,-999693864.0,,2019-11-01 20:32:15,42.31309502385557,-83.79337169229984 +2019-11-01 20:32:21,80.0,7469.68,240.20000000000005,8.192,0.0,127.0,504819245.0,-999697829.0,,2019-11-01 20:32:21,42.31346030719578,-83.7937040347606 +2019-11-01 20:32:27,77.0,7518.54,237.4,8.015,0.0,126.0,504823931.0,-999700908.0,,2019-11-01 20:32:27,42.3138530831784,-83.79396211355925 +2019-11-01 20:32:29,75.0,7534.52,236.4,7.987,0.0,126.0,504825608.0,-999701574.0,,2019-11-01 20:32:29,42.31399364769459,-83.79401793703437 +2019-11-01 20:32:32,76.0,7558.83,235.0,8.099,0.0,126.0,504828121.0,-999702462.0,,2019-11-01 20:32:32,42.31420428492129,-83.79409236833453 +2019-11-01 20:32:33,76.0,7566.87,234.79999999999995,8.043,0.0,126.0,504828999.0,-999702687.0,,2019-11-01 20:32:33,42.314277878031135,-83.79411122761667 +2019-11-01 20:32:40,82.0,7621.77,234.20000000000005,7.735,0.0,127.0,504835028.0,-999704276.0,,2019-11-01 20:32:40,42.31478322297335,-83.79424441605806 +2019-11-01 20:32:46,81.0,7667.68,236.79999999999995,7.642,0.0,127.0,504839781.0,-999705752.0,,2019-11-01 20:32:46,42.31518161483109,-83.79436813294888 +2019-11-01 20:32:51,79.0,7704.98,238.4,7.306,0.0,127.0,504843385.0,-999707403.0,,2019-11-01 20:32:51,42.31548369862139,-83.79450651817024 +2019-11-01 20:32:57,78.0,7748.77,235.0,7.362,0.0,126.0,504847771.0,-999709036.0,,2019-11-01 20:32:57,42.315851328894496,-83.79464339464903 +2019-11-01 20:33:05,81.0,7809.65,234.79999999999995,7.688,0.0,125.0,504853771.0,-999710941.0,,2019-11-01 20:33:05,42.31635424308479,-83.79480306990445 +2019-11-01 20:33:13,81.0,7871.39,236.20000000000005,7.632999999999999,0.0,125.0,504860620.0,-999712913.0,,2019-11-01 20:33:13,42.31692831963301,-83.79496836103499 +2019-11-01 20:33:19,80.0,7916.33,238.4,7.474,0.0,124.0,504865039.0,-999714325.0,,2019-11-01 20:33:19,42.31729871593416,-83.79508671350777 +2019-11-01 20:33:25,80.0,7961.77,241.6,7.678999999999999,0.0,124.0,504870415.0,-999715694.0,,2019-11-01 20:33:25,42.31774932704866,-83.79520146176219 +2019-11-01 20:33:33,82.0,8024.83,244.79999999999995,7.819,0.0,124.0,504876611.0,-999718134.0,,2019-11-01 20:33:33,42.31826866976917,-83.79540598019958 +2019-11-01 20:33:34,85.0,8032.67,245.0,7.847,0.0,124.0,504877412.0,-999718460.0,,2019-11-01 20:33:34,42.31833580881357,-83.79543330520391 +2019-11-01 20:33:36,74.0,8048.37,245.0,7.903,0.0,125.0,504879021.0,-999719052.0,,2019-11-01 20:33:36,42.3184706736356,-83.79548292607069 +2019-11-01 20:33:40,77.0,8080.69,245.0,8.202,0.0,126.0,504882469.0,-999720339.0,,2019-11-01 20:33:40,42.31875968165696,-83.79559080116451 +2019-11-01 20:33:42,78.0,8097.14,244.79999999999995,8.174,0.0,127.0,504884142.0,-999721137.0,,2019-11-01 20:33:42,42.31889991089702,-83.79565768875182 +2019-11-01 20:33:45,77.0,8121.63,244.4,8.118,0.0,128.0,504886408.0,-999722256.0,,2019-11-01 20:33:45,42.319089844822884,-83.7957514822483 +2019-11-01 20:33:48,76.0,8145.6,242.79999999999995,7.912000000000001,0.0,129.0,504888969.0,-999723159.0,,2019-11-01 20:33:48,42.31930450536311,-83.79582717083395 +2019-11-01 20:33:56,80.0,8207.95,240.79999999999995,7.66,0.0,129.0,504895566.0,-999725425.0,,2019-11-01 20:33:56,42.31985745951533,-83.79601710475981 +2019-11-01 20:33:57,81.0,8215.58,240.79999999999995,7.632999999999999,0.0,129.0,504896425.0,-999725645.0,,2019-11-01 20:33:57,42.31992946006358,-83.79603554494679 +2019-11-01 20:34:04,90.0,8267.7,244.20000000000005,7.101,0.0,128.0,504902173.0,-999727475.0,,2019-11-01 20:34:04,42.32041125185788,-83.79618893377483 +2019-11-01 20:34:09,84.0,8301.4,246.20000000000005,6.494,0.0,127.0,504905662.0,-999728464.0,,2019-11-01 20:34:09,42.32070369645953,-83.7962718307972 +2019-11-01 20:34:13,81.0,8327.07,247.4,6.457000000000001,0.0,128.0,504908310.0,-999729620.0,,2019-11-01 20:34:13,42.320925649255514,-83.79636872559786 +2019-11-01 20:34:15,82.0,8340.21,248.0,6.606,0.0,128.0,504909520.0,-999730359.0,,2019-11-01 20:34:15,42.32102707028389,-83.7964306678623 +2019-11-01 20:34:22,83.0,8386.42,250.4,6.513,0.0,130.0,504914127.0,-999733004.0,,2019-11-01 20:34:22,42.321413224563,-83.79665236920118 +2019-11-01 20:34:30,85.0,8439.33,251.20000000000005,6.858,0.0,132.0,504919040.0,-999736281.0,,2019-11-01 20:34:30,42.32182502746582,-83.79692704416811 +2019-11-01 20:34:36,77.0,8483.23,252.4,7.791,0.0,131.0,504922754.0,-999740060.0,,2019-11-01 20:34:36,42.32213633134961,-83.79724379628897 +2019-11-01 20:34:42,76.0,8535.46,252.20000000000005,9.247,0.0,129.0,504926101.0,-999745631.0,,2019-11-01 20:34:42,42.32241687364876,-83.79771075211465 +2019-11-01 20:34:49,84.0,8605.53,249.6,10.086,0.0,127.0,504929806.0,-999753903.0,,2019-11-01 20:34:49,42.32272742316127,-83.798404103145 +2019-11-01 20:34:56,80.0,8674.03,245.6,9.443,0.0,126.0,504933987.0,-999761837.0,,2019-11-01 20:34:56,42.32307787053287,-83.79906912334263 +2019-11-01 20:35:03,84.0,8737.49,244.20000000000005,8.799,0.0,125.0,504938445.0,-999769022.0,,2019-11-01 20:35:03,42.32345153577626,-83.79967136308551 +2019-11-01 20:35:06,81.0,8763.35,244.0,8.527999999999999,0.0,126.0,504940367.0,-999771830.0,,2019-11-01 20:35:06,42.323612635955215,-83.79990672692657 +2019-11-01 20:35:13,80.0,8821.77,243.79999999999995,8.183,0.0,127.0,504944514.0,-999778163.0,,2019-11-01 20:35:13,42.32396023347974,-83.80043755285442 +2019-11-01 20:35:20,83.0,8876.51,243.0,7.744,0.0,128.0,504948485.0,-999784047.0,,2019-11-01 20:35:20,42.32429307885468,-83.80093074403703 +2019-11-01 20:35:28,81.0,8932.86,243.20000000000005,6.877000000000001,0.0,127.0,504952557.0,-999790260.0,,2019-11-01 20:35:28,42.324634389951825,-83.80145151168108 +2019-11-01 20:35:36,79.0,8984.22,242.6,6.1770000000000005,0.0,127.0,504956311.0,-999795758.0,,2019-11-01 20:35:36,42.324949046596885,-83.80191234871745 +2019-11-01 20:35:42,82.0,9022.48,242.4,6.364,0.0,128.0,504959290.0,-999799133.0,,2019-11-01 20:35:42,42.325198743492365,-83.80219523794949 +2019-11-01 20:35:49,81.0,9065.84,241.20000000000005,6.3260000000000005,0.0,130.0,504962865.0,-999802474.0,,2019-11-01 20:35:49,42.32549839653075,-83.80247527733445 +2019-11-01 20:35:51,81.0,9078.51,240.6,6.364,0.0,130.0,504963949.0,-999803199.0,,2019-11-01 20:35:51,42.32558925636113,-83.80253604613245 +2019-11-01 20:35:53,83.0,9091.06,240.0,6.27,0.0,130.0,504965159.0,-999803892.0,,2019-11-01 20:35:53,42.3256906773895,-83.80259413272142 +2019-11-01 20:35:54,81.0,9097.35,239.79999999999995,6.289,0.0,131.0,504965805.0,-999804225.0,,2019-11-01 20:35:54,42.32574482448399,-83.80262204445899 +2019-11-01 20:36:00,81.0,9133.98,239.4,5.841,0.0,134.0,504969730.0,-999806107.0,,2019-11-01 20:36:00,42.326073814183474,-83.80277979187667 +2019-11-01 20:36:04,78.0,9155.09,241.20000000000005,5.039,0.0,136.0,504972152.0,-999807038.0,,2019-11-01 20:36:04,42.32627682387829,-83.8028578273952 +2019-11-01 20:36:06,75.0,9165.34,242.6,5.122999999999999,0.0,137.0,504973453.0,-999807411.0,,2019-11-01 20:36:06,42.32638587243855,-83.80288909189403 +2019-11-01 20:36:11,75.0,9190.71,247.0,5.048,0.0,137.0,504975957.0,-999809132.0,,2019-11-01 20:36:11,42.326595755293965,-83.80303334444761 +2019-11-01 20:36:20,74.0,9235.72,252.79999999999995,4.917,0.0,137.0,504979915.0,-999812901.0,,2019-11-01 20:36:20,42.326927511021495,-83.80334925837815 +2019-11-01 20:36:25,76.0,9260.88,253.79999999999995,5.113,0.0,136.0,504982069.0,-999815004.0,,2019-11-01 20:36:25,42.32710805721581,-83.80352552980185 +2019-11-01 20:36:28,79.0,9276.43,254.0,5.207000000000001,0.0,135.0,504983296.0,-999816379.0,,2019-11-01 20:36:28,42.327210903167725,-83.80364078097045 +2019-11-01 20:36:38,76.0,9325.5,254.6,4.507,0.0,135.0,504987248.0,-999820875.0,,2019-11-01 20:36:38,42.327542155981064,-83.80401763133705 +2019-11-01 20:36:43,74.0,9345.77,254.79999999999995,3.9,0.0,137.0,504988778.0,-999822691.0,,2019-11-01 20:36:43,42.32767039909959,-83.80416984669864 +2019-11-01 20:36:49,75.0,9369.59,255.0,3.9939999999999998,0.0,138.0,504990552.0,-999824684.0,,2019-11-01 20:36:49,42.32781909406185,-83.80433689802885 +2019-11-01 20:36:58,79.0,9406.5,255.6,4.544,0.0,138.0,504993472.0,-999827928.0,,2019-11-01 20:36:58,42.32806384563446,-83.80460880696774 +2019-11-01 20:37:04,81.0,9437.17,255.6,5.645,0.0,137.0,504995646.0,-999830560.0,,2019-11-01 20:37:04,42.32824606820941,-83.80482941865921 +2019-11-01 20:37:05,81.0,9443.09,255.4,5.916,0.0,137.0,504996113.0,-999831022.0,,2019-11-01 20:37:05,42.32828521169722,-83.80486814305186 +2019-11-01 20:37:11,74.0,9487.26,254.6,8.612,0.0,136.0,504999771.0,-999834118.0,,2019-11-01 20:37:11,42.328591821715236,-83.80512764677405 +2019-11-01 20:37:15,79.0,9528.03,254.6,11.177999999999999,0.0,134.0,505003348.0,-999836593.0,,2019-11-01 20:37:15,42.32889164239168,-83.80533509887755 +2019-11-01 20:37:19,78.0,9578.59,254.20000000000005,13.296,0.0,134.0,505008022.0,-999838124.0,,2019-11-01 20:37:19,42.32928341254592,-83.8054634258151 +2019-11-01 20:37:23,82.0,9631.99,253.20000000000005,13.175,0.0,133.0,505014101.0,-999837919.0,,2019-11-01 20:37:23,42.32979294843972,-83.8054462429136 +2019-11-01 20:37:28,77.0,9695.98,250.79999999999995,12.335,0.0,132.0,505021375.0,-999837937.0,,2019-11-01 20:37:28,42.330402648076415,-83.80544775165617 +2019-11-01 20:37:32,73.0,9743.49,250.79999999999995,11.589,0.0,130.0,505026729.0,-999838812.0,,2019-11-01 20:37:32,42.33085141517222,-83.80552109330893 +2019-11-01 20:37:36,68.0,9787.9,252.6,10.908,0.0,129.0,505031286.0,-999839326.0,,2019-11-01 20:37:36,42.331233378499746,-83.80556417629123 +2019-11-01 20:37:42,73.0,9850.48,256.0,10.058,0.0,129.0,505037996.0,-999839888.0,,2019-11-01 20:37:42,42.33179580420256,-83.80561128258705 +2019-11-01 20:37:43,72.0,9860.18,256.20000000000005,9.713,0.0,129.0,505039062.0,-999840092.0,,2019-11-01 20:37:43,42.331885155290365,-83.80562838166952 +2019-11-01 20:37:47,74.0,9896.49,257.79999999999995,8.92,0.0,128.0,505043051.0,-999840900.0,,2019-11-01 20:37:47,42.33221950940788,-83.80569610744715 +2019-11-01 20:37:52,81.0,9940.48,258.79999999999995,8.668,0.0,127.0,505047354.0,-999843014.0,,2019-11-01 20:37:52,42.33258018270135,-83.8058733008802 +2019-11-01 20:37:59,81.0,10000.55,257.20000000000005,8.51,0.0,128.0,505052507.0,-999848551.0,,2019-11-01 20:37:59,42.33301210217178,-83.8063374068588 +2019-11-01 20:38:01,80.0,10017.47,256.20000000000005,8.443999999999999,0.0,127.0,505053912.0,-999850127.0,,2019-11-01 20:38:01,42.33312986791134,-83.80646950565279 +2019-11-01 20:38:09,78.0,10083.5,252.4,8.407,0.0,126.0,505059187.0,-999856555.0,,2019-11-01 20:38:09,42.33357201330364,-83.80700829438865 +2019-11-01 20:38:15,80.0,10133.93,248.4,8.443999999999999,0.0,126.0,505062108.0,-999862613.0,,2019-11-01 20:38:15,42.33381684869528,-83.80751607008278 +2019-11-01 20:38:17,80.0,10151.01,247.6,8.603,0.0,127.0,505062948.0,-999864835.0,,2019-11-01 20:38:17,42.33388725668192,-83.80770231597126 +2019-11-01 20:38:19,82.0,10168.35,247.20000000000005,8.706,0.0,127.0,505063729.0,-999867148.0,,2019-11-01 20:38:19,42.33395271934569,-83.80789618939161 +2019-11-01 20:38:20,82.0,10176.93,247.0,8.575,0.0,127.0,505064067.0,-999868335.0,,2019-11-01 20:38:20,42.33398105017841,-83.80799568258226 +2019-11-01 20:38:22,81.0,10193.9,246.20000000000005,8.443999999999999,0.0,127.0,505064894.0,-999870548.0,,2019-11-01 20:38:22,42.33405036851764,-83.80818117409945 +2019-11-01 20:38:25,80.0,10217.67,245.0,7.5489999999999995,0.0,127.0,505066251.0,-999873676.0,,2019-11-01 20:38:25,42.334164110943675,-83.80844336003065 +2019-11-01 20:38:27,86.0,10231.77,244.6,7.11,0.0,127.0,505067176.0,-999875315.0,,2019-11-01 20:38:27,42.33424164354801,-83.80858073942363 +2019-11-01 20:38:29,76.0,10244.94,244.20000000000005,6.485,0.0,127.0,505068053.0,-999876780.0,,2019-11-01 20:38:29,42.334315152838826,-83.8087035343051 +2019-11-01 20:38:34,77.0,10277.55,247.0,6.625,0.0,128.0,505069880.0,-999880803.0,,2019-11-01 20:38:34,42.33446829020977,-83.80904073826969 +2019-11-01 20:38:35,77.0,10284.11,247.79999999999995,6.569,0.0,128.0,505070132.0,-999881680.0,,2019-11-01 20:38:35,42.33448941260576,-83.8091142475605 +2019-11-01 20:38:41,72.0,10321.37,249.6,6.297999999999999,0.0,129.0,505071138.0,-999886835.0,,2019-11-01 20:38:41,42.33457373455167,-83.809546334669 +2019-11-01 20:38:45,78.0,10347.87,249.20000000000005,6.8020000000000005,0.0,130.0,505071453.0,-999890350.0,,2019-11-01 20:38:45,42.33460013754666,-83.80984095856547 +2019-11-01 20:38:46,78.0,10354.74,249.0,6.867000000000001,0.0,131.0,505071639.0,-999891278.0,,2019-11-01 20:38:46,42.33461572788656,-83.8099187426269 +2019-11-01 20:38:53,84.0,10404.24,245.20000000000005,7.175,0.0,130.0,505072379.0,-999898081.0,,2019-11-01 20:38:53,42.33467775397003,-83.81048896349967 +2019-11-01 20:39:01,83.0,10461.71,242.4,6.886,0.0,129.0,505072800.0,-999906163.0,,2019-11-01 20:39:01,42.33471304178238,-83.81116638891399 +2019-11-01 20:39:03,81.0,10475.55,242.79999999999995,6.914,0.0,128.0,505073011.0,-999908018.0,,2019-11-01 20:39:03,42.33473072759807,-83.81132187321782 +2019-11-01 20:39:05,83.0,10489.63,243.6,7.063,0.0,128.0,505073320.0,-999909935.0,,2019-11-01 20:39:05,42.33475662767887,-83.81148255430162 +2019-11-01 20:39:08,83.0,10510.86,244.79999999999995,7.0729999999999995,0.0,128.0,505073855.0,-999912782.0,,2019-11-01 20:39:08,42.33480147086084,-83.81172118708491 +2019-11-01 20:39:11,80.0,10532.24,246.0,7.222,0.0,128.0,505073714.0,-999915896.0,,2019-11-01 20:39:11,42.33478965237737,-83.81198219954967 +2019-11-01 20:39:19,83.0,10593.37,250.20000000000005,7.95,0.0,128.0,505074128.0,-999925242.0,,2019-11-01 20:39:19,42.3348243534565,-83.81276557222009 +2019-11-01 20:39:26,81.0,10647.88,254.20000000000005,7.595,0.0,128.0,505074591.0,-999933522.0,,2019-11-01 20:39:26,42.33486316166818,-83.81345959380269 +2019-11-01 20:39:31,83.0,10686.86,256.20000000000005,8.006,0.0,130.0,505074110.0,-999939103.0,,2019-11-01 20:39:31,42.334822844713926,-83.8139273878187 +2019-11-01 20:39:32,83.0,10694.83,256.20000000000005,7.978,0.0,129.0,505073930.0,-999940103.0,,2019-11-01 20:39:32,42.33480775728822,-83.81401120685041 +2019-11-01 20:39:34,85.0,10711.01,256.4,8.099,0.0,130.0,505073566.0,-999942042.0,,2019-11-01 20:39:34,42.33477724716067,-83.8141737319529 +2019-11-01 20:39:37,84.0,10735.74,256.20000000000005,8.37,0.0,130.0,505072569.0,-999945254.0,,2019-11-01 20:39:37,42.33469367958605,-83.81444295868278 +2019-11-01 20:39:38,87.0,10744.2,255.79999999999995,8.463,0.0,130.0,505072130.0,-999946303.0,,2019-11-01 20:39:38,42.33465688303113,-83.81453088484704 +2019-11-01 20:39:44,81.0,10795.99,254.6,8.78,0.0,129.0,505069551.0,-999952573.0,,2019-11-01 20:39:44,42.334440713748336,-83.8150564301759 +2019-11-01 20:39:50,78.0,10846.68,254.20000000000005,8.342,0.0,128.0,505066603.0,-999958575.0,,2019-11-01 20:39:50,42.33419361524284,-83.81555951200426 +2019-11-01 20:39:58,83.0,10912.42,254.0,7.978,0.0,127.0,505062109.0,-999965578.0,,2019-11-01 20:39:58,42.33381693251431,-83.81614649668336 +2019-11-01 20:40:05,83.0,10968.44,255.0,7.81,0.0,128.0,505058981.0,-999972372.0,,2019-11-01 20:40:05,42.333554746583104,-83.81671596318483 +2019-11-01 20:40:13,82.0,11030.67,254.79999999999995,7.707000000000001,0.0,129.0,505056467.0,-999980268.0,,2019-11-01 20:40:13,42.33334402553737,-83.81737779825926 +2019-11-01 20:40:14,81.0,11038.4,254.79999999999995,7.735,0.0,129.0,505056182.0,-999981249.0,,2019-11-01 20:40:14,42.33332013711333,-83.81746002472937 +2019-11-01 20:40:21,81.0,11092.23,254.20000000000005,7.67,0.0,129.0,505053801.0,-999988288.0,,2019-11-01 20:40:21,42.33312056399882,-83.81805002689362 +2019-11-01 20:40:22,82.0,11100.11,254.20000000000005,7.8839999999999995,0.0,128.0,505053426.0,-999989258.0,,2019-11-01 20:40:22,42.333089131861925,-83.81813133135438 +2019-11-01 20:40:26,83.0,11131.8,253.6,7.996,0.0,128.0,505051564.0,-999992995.0,,2019-11-01 20:40:26,42.33293306082487,-83.8184445630759 +2019-11-01 20:40:29,84.0,11156.07,253.0,8.118,0.0,127.0,505050040.0,-999995752.0,,2019-11-01 20:40:29,42.33280532062054,-83.81867565214634 +2019-11-01 20:40:31,86.0,11172.54,253.0,8.286,0.0,127.0,505048845.0,-999997624.0,,2019-11-01 20:40:31,42.33270515687764,-83.81883256137371 +2019-11-01 20:40:39,85.0,11236.94,252.79999999999995,7.8839999999999995,0.0,127.0,505044109.0,-1000004883.0,,2019-11-01 20:40:39,42.33230818994343,-83.81944100372493 +2019-11-01 20:40:47,83.0,11300.47,251.6,7.94,0.0,127.0,505039956.0,-1000011803.0,,2019-11-01 20:40:47,42.33196008950472,-83.8200210314244 +2019-11-01 20:40:48,85.0,11308.51,251.6,8.052,0.0,127.0,505039499.0,-1000012711.0,,2019-11-01 20:40:48,42.331921784207225,-83.8200971391052 +2019-11-01 20:40:56,84.0,11372.25,250.4,7.8,0.0,129.0,505035788.0,-1000020510.0,,2019-11-01 20:40:56,42.33161073178053,-83.82075084373355 +2019-11-01 20:41:04,88.0,11433.58,249.4,7.474,0.0,129.0,505032687.0,-1000028098.0,,2019-11-01 20:41:04,42.33135080896318,-83.8213868625462 +2019-11-01 20:41:10,82.0,11477.04,249.0,7.138,0.0,129.0,505030709.0,-1000033584.0,,2019-11-01 20:41:10,42.33118501491845,-83.8218466937542 +2019-11-01 20:41:14,78.0,11504.43,248.20000000000005,6.8020000000000005,0.0,130.0,505029374.0,-1000036626.0,,2019-11-01 20:41:14,42.33107311651111,-83.82210167124867 +2019-11-01 20:41:15,78.0,11511.26,248.20000000000005,6.821000000000001,0.0,130.0,505029109.0,-1000037486.0,,2019-11-01 20:41:15,42.3310509044677,-83.82217375561595 +2019-11-01 20:41:20,85.0,11547.45,247.0,7.371,0.0,130.0,505027104.0,-1000042095.0,,2019-11-01 20:41:20,42.33088284730911,-83.82256007753313 +2019-11-01 20:41:24,79.0,11575.54,247.4,6.849,0.0,132.0,505025593.0,-1000045799.0,,2019-11-01 20:41:24,42.33075619675219,-83.8228705432266 +2019-11-01 20:41:26,79.0,11589.21,248.0,6.849,0.0,133.0,505024918.0,-1000047641.0,,2019-11-01 20:41:26,42.33069961890578,-83.82302493788302 +2019-11-01 20:41:27,80.0,11595.98,248.4,6.765,0.0,133.0,505024558.0,-1000048507.0,,2019-11-01 20:41:27,42.330669444054365,-83.82309752516448 +2019-11-01 20:41:31,85.0,11622.5,250.0,6.559,0.0,133.0,505022750.0,-1000052078.0,,2019-11-01 20:41:31,42.330517899245024,-83.82339684292674 +2019-11-01 20:41:38,81.0,11667.41,253.6,6.354,0.0,134.0,505020399.0,-1000057491.0,,2019-11-01 20:41:38,42.33032084070146,-83.82385055534542 +2019-11-01 20:41:44,82.0,11705.89,256.79999999999995,6.541,0.0,134.0,505018332.0,-1000062160.0,,2019-11-01 20:41:44,42.330147586762905,-83.8242419064045 +2019-11-01 20:41:52,85.0,11758.04,258.0,6.625,0.0,133.0,505015500.0,-1000068776.0,,2019-11-01 20:41:52,42.32991021126509,-83.82479645311832 +2019-11-01 20:42:00,84.0,11810.23,256.4,6.466,0.0,133.0,505012661.0,-1000075455.0,,2019-11-01 20:42:00,42.32967224903405,-83.82535628043115 +2019-11-01 20:42:07,77.0,11853.9,254.20000000000005,5.962000000000001,0.0,133.0,505010391.0,-1000080973.0,,2019-11-01 20:42:07,42.32948197983205,-83.82581879384816 +2019-11-01 20:42:15,84.0,11899.58,255.0,5.598,0.0,132.0,505008018.0,-1000086672.0,,2019-11-01 20:42:15,42.32928307726979,-83.8262964785099 +2019-11-01 20:42:21,81.0,11932.38,254.6,5.457999999999999,0.0,131.0,505006307.0,-1000090676.0,,2019-11-01 20:42:21,42.32913966290653,-83.82663208991289 +2019-11-01 20:42:22,81.0,11937.79,254.6,5.421,0.0,131.0,505006013.0,-1000091349.0,,2019-11-01 20:42:22,42.3291150201112,-83.82668850012124 +2019-11-01 20:42:31,80.0,11986.49,254.79999999999995,5.457999999999999,0.0,130.0,505003290.0,-1000097444.0,,2019-11-01 20:42:31,42.32888678088784,-83.82719937711954 +2019-11-01 20:42:39,78.0,12033.64,255.0,6.317,0.0,130.0,505000667.0,-1000103042.0,,2019-11-01 20:42:39,42.32866692356765,-83.82766859605908 +2019-11-01 20:42:45,90.0,12075.01,254.6,7.053999999999999,0.0,130.0,504998531.0,-1000107876.0,,2019-11-01 20:42:45,42.32848788611591,-83.8280737772584 +2019-11-01 20:42:52,85.0,12123.16,254.20000000000005,6.718,0.0,128.0,504995827.0,-1000113694.0,,2019-11-01 20:42:52,42.32826123945415,-83.82856143638492 +2019-11-01 20:42:59,81.0,12168.83,252.6,6.297999999999999,0.0,128.0,504993272.0,-1000119368.0,,2019-11-01 20:42:59,42.32804708182812,-83.82903702557087 +2019-11-01 20:43:03,85.0,12191.52,251.79999999999995,5.412000000000001,0.0,129.0,504991919.0,-1000122277.0,,2019-11-01 20:43:03,42.327933674678206,-83.82928085513413 +2019-11-01 20:43:05,81.0,12202.12,252.0,5.263,0.0,129.0,504991322.0,-1000123656.0,,2019-11-01 20:43:05,42.32788363471627,-83.82939644157887 +2019-11-01 20:43:11,80.0,12233.91,254.6,5.309,0.0,128.0,504989604.0,-1000127546.0,,2019-11-01 20:43:11,42.327739633619785,-83.82972249761224 +2019-11-01 20:43:20,83.0,12283.4,256.4,5.58,0.0,129.0,504986503.0,-1000134046.0,,2019-11-01 20:43:20,42.327479710802436,-83.83026732131839 +2019-11-01 20:43:30,79.0,12343.87,258.4,6.308,0.0,130.0,504983227.0,-1000141437.0,,2019-11-01 20:43:30,42.327205119654536,-83.8308868277818 +2019-11-01 20:43:31,79.0,12350.21,258.4,6.345,0.0,130.0,504982867.0,-1000142199.0,,2019-11-01 20:43:31,42.32717494480312,-83.83095069788396 +2019-11-01 20:43:40,93.0,12413.61,257.79999999999995,7.558,0.0,130.0,504979696.0,-1000149948.0,,2019-11-01 20:43:40,42.32690915465355,-83.83160021156073 +2019-11-01 20:43:47,79.0,12466.32,257.4,7.595,0.0,128.0,504976728.0,-1000156359.0,,2019-11-01 20:43:47,42.32666037976742,-83.83213757537305 +2019-11-01 20:43:55,83.0,12527.71,255.79999999999995,7.81,0.0,127.0,504973490.0,-1000163981.0,,2019-11-01 20:43:55,42.32638897374272,-83.83277644403279 +2019-11-01 20:43:57,82.0,12543.07,255.0,7.67,0.0,126.0,504972640.0,-1000165912.0,,2019-11-01 20:43:57,42.326317727565765,-83.83293829858303 +2019-11-01 20:44:05,90.0,12609.57,254.20000000000005,8.696,0.0,127.0,504968971.0,-1000173970.0,,2019-11-01 20:44:05,42.3260101955384,-83.8336137123406 +2019-11-01 20:44:06,83.0,12618.3,254.4,8.734,0.0,127.0,504968506.0,-1000175070.0,,2019-11-01 20:44:06,42.325971219688654,-83.83370591327548 +2019-11-01 20:44:11,81.0,12658.92,255.4,7.67,0.0,128.0,504966723.0,-1000180526.0,,2019-11-01 20:44:11,42.325821770355105,-83.83416322991252 +2019-11-01 20:44:17,81.0,12701.1,256.4,6.737,0.0,127.0,504965601.0,-1000186214.0,,2019-11-01 20:44:17,42.32572772540152,-83.83463999256492 +2019-11-01 20:44:23,83.0,12738.18,256.4,5.7010000000000005,0.0,128.0,504965337.0,-1000191250.0,,2019-11-01 20:44:23,42.32570559717715,-83.83506210520864 +2019-11-01 20:44:25,79.0,12749.69,255.79999999999995,5.747999999999999,0.0,128.0,504965221.0,-1000192880.0,,2019-11-01 20:44:25,42.32569587416947,-83.83519873023033 +2019-11-01 20:44:28,82.0,12767.18,255.4,5.813,0.0,129.0,504965187.0,-1000195422.0,,2019-11-01 20:44:28,42.32569302432239,-83.83541179820895 +2019-11-01 20:44:30,81.0,12778.94,255.79999999999995,5.916,0.0,129.0,504965159.0,-1000197115.0,,2019-11-01 20:44:30,42.3256906773895,-83.83555370382965 +2019-11-01 20:44:33,85.0,12796.54,257.20000000000005,5.776,0.0,130.0,504964752.0,-1000199868.0,,2019-11-01 20:44:33,42.325656563043594,-83.83578445762396 +2019-11-01 20:44:37,79.0,12819.51,259.0,5.7379999999999995,0.0,133.0,504964659.0,-1000203286.0,,2019-11-01 20:44:37,42.325648767873645,-83.83607095107436 +2019-11-01 20:44:38,79.0,12825.24,259.6,5.72,0.0,133.0,504964639.0,-1000204176.0,,2019-11-01 20:44:38,42.32564709149301,-83.83614555001259 +2019-11-01 20:44:45,82.0,12866.27,263.4,5.869,0.0,135.0,504964715.0,-1000210548.0,,2019-11-01 20:44:45,42.32565346173942,-83.83667964488268 +2019-11-01 20:44:46,82.0,12872.13,263.79999999999995,5.86,0.0,135.0,504964575.0,-1000211431.0,,2019-11-01 20:44:46,42.32564172707498,-83.83675365708768 +2019-11-01 20:44:51,83.0,12901.6,265.20000000000005,5.906000000000001,0.0,137.0,504964515.0,-1000215765.0,,2019-11-01 20:44:51,42.32563669793308,-83.83711692877114 +2019-11-01 20:44:53,82.0,12913.44,265.6,5.916,0.0,137.0,504964540.0,-1000217444.0,,2019-11-01 20:44:53,42.32563879340887,-83.83725766092539 +2019-11-01 20:45:03,81.0,12971.98,264.0,5.952999999999999,0.0,136.0,504964664.0,-1000225560.0,,2019-11-01 20:45:03,42.3256491869688,-83.83793793618679 +2019-11-01 20:45:12,84.0,13025.22,260.4,5.888,0.0,136.0,504964435.0,-1000233134.0,,2019-11-01 20:45:12,42.32562999241054,-83.838572781533 +2019-11-01 20:45:17,79.0,13053.99,259.79999999999995,5.766,0.0,135.0,504964413.0,-1000237332.0,,2019-11-01 20:45:17,42.32562814839184,-83.83892465382814 +2019-11-01 20:45:19,79.0,13065.49,259.79999999999995,5.72,0.0,134.0,504964358.0,-1000239059.0,,2019-11-01 20:45:19,42.3256235383451,-83.83906940929592 +2019-11-01 20:45:24,80.0,13082.61,260.4,1.577,0.0,131.0,504964249.0,-1000241705.0,,2019-11-01 20:45:24,42.32561440207064,-83.83929119445384 +2019-11-01 20:45:28,7.0,13094.08,261.79999999999995,4.115,0.0,129.0,504963902.0,-1000243035.0,,2019-11-01 20:45:28,42.325585316866636,-83.83940267376602 +2019-11-01 20:45:30,43.0,13105.54,262.6,5.5329999999999995,0.0,125.0,504963619.0,-1000244471.0,,2019-11-01 20:45:30,42.32556159608066,-83.83952303789556 +2019-11-01 20:45:31,82.0,13111.36,263.20000000000005,5.822,0.0,124.0,504963531.0,-1000245346.0,,2019-11-01 20:45:31,42.32555422000587,-83.83959637954831 +2019-11-01 20:45:35,77.0,13135.82,266.20000000000005,6.205,0.0,127.0,504963752.0,-1000248940.0,,2019-11-01 20:45:35,42.32557274401188,-83.8398976251483 +2019-11-01 20:45:36,80.0,13142.13,266.79999999999995,6.308,0.0,128.0,504963827.0,-1000249838.0,,2019-11-01 20:45:36,42.32557903043926,-83.83997289463878 +2019-11-01 20:45:40,81.0,13167.34,269.0,6.345,0.0,131.0,504963511.0,-1000253528.0,,2019-11-01 20:45:40,42.325552543625236,-83.8402821868658 +2019-11-01 20:45:42,81.0,13179.99,270.0,6.364,0.0,131.0,504963527.0,-1000255369.0,,2019-11-01 20:45:42,42.32555388472974,-83.8404364977032 +2019-11-01 20:45:51,88.0,13240.44,271.4,7.053999999999999,0.0,131.0,504963341.0,-1000264019.0,,2019-11-01 20:45:51,42.325538294389844,-83.84116153232753 +2019-11-01 20:45:52,94.0,13247.65,271.20000000000005,7.212999999999999,0.0,130.0,504963334.0,-1000264848.0,,2019-11-01 20:45:52,42.32553770765662,-83.84123101830482 +2019-11-01 20:46:00,87.0,13308.39,268.4,7.827999999999999,0.0,129.0,504963060.0,-1000273613.0,,2019-11-01 20:46:00,42.32551474124193,-83.84196569211781 +2019-11-01 20:46:06,74.0,13359.95,264.4,9.396,0.0,128.0,504962192.0,-1000280367.0,,2019-11-01 20:46:06,42.3254419863224,-83.84253180585802 +2019-11-01 20:46:11,87.0,13410.55,262.6,10.440999999999999,0.0,126.0,504961315.0,-1000287098.0,,2019-11-01 20:46:11,42.32536847703159,-83.84309599176049 +2019-11-01 20:46:17,82.0,13465.79,260.20000000000005,8.304,0.0,126.0,504960416.0,-1000295565.0,,2019-11-01 20:46:17,42.325293123722076,-83.84380568750203 +2019-11-01 20:46:21,78.0,13498.3,260.20000000000005,8.146,0.0,126.0,504960377.0,-1000300405.0,,2019-11-01 20:46:21,42.32528985477984,-83.84421137161553 +2019-11-01 20:46:27,78.0,13547.7,261.79999999999995,8.258,0.0,127.0,504960629.0,-1000307760.0,,2019-11-01 20:46:27,42.32531097717583,-83.8448278605938 +2019-11-01 20:46:35,75.0,13609.93,264.0,7.362,0.0,127.0,504962059.0,-1000316985.0,,2019-11-01 20:46:35,42.325430838391185,-83.84560109116137 +2019-11-01 20:46:40,77.0,13645.68,262.6,7.053999999999999,0.0,126.0,504962863.0,-1000321884.0,,2019-11-01 20:46:40,42.325498228892684,-83.84601172059774 +2019-11-01 20:46:44,75.0,13674.39,260.79999999999995,7.334,0.0,125.0,504963218.0,-1000325616.0,,2019-11-01 20:46:44,42.32552798464894,-83.8463245332241 +2019-11-01 20:46:45,78.0,13681.79,260.20000000000005,7.409,0.0,125.0,504963448.0,-1000326624.0,,2019-11-01 20:46:45,42.32554726302624,-83.84640902280807 +2019-11-01 20:46:48,85.0,13705.06,258.6,7.978,0.0,126.0,504963970.0,-1000329748.0,,2019-11-01 20:46:48,42.32559101656079,-83.84667087346315 +2019-11-01 20:46:50,73.0,13721.7,257.6,8.538,0.0,126.0,504964380.0,-1000331994.0,,2019-11-01 20:46:50,42.325625382363796,-83.84685913100839 +2019-11-01 20:46:55,77.0,13766.81,255.20000000000005,9.116,0.0,126.0,504965597.0,-1000338308.0,,2019-11-01 20:46:55,42.325727390125394,-83.84738836437464 +2019-11-01 20:46:56,79.0,13775.8,255.0,8.995,0.0,126.0,504965749.0,-1000339713.0,,2019-11-01 20:46:56,42.325740130618215,-83.8475061301142 +2019-11-01 20:47:01,80.0,13815.77,255.4,7.409,0.0,127.0,504966774.0,-1000345945.0,,2019-11-01 20:47:01,42.32582604512572,-83.84802849031985 +2019-11-01 20:47:07,76.0,13858.21,258.4,7.007000000000001,0.0,128.0,504967784.0,-1000352067.0,,2019-11-01 20:47:07,42.325910702347755,-83.84854163043201 +2019-11-01 20:47:16,77.0,13922.48,261.4,7.2410000000000005,0.0,128.0,504969312.0,-1000361056.0,,2019-11-01 20:47:16,42.32603877782822,-83.8492950797081 +2019-11-01 20:47:25,81.0,13988.92,260.6,7.6979999999999995,0.0,129.0,504970959.0,-1000370216.0,,2019-11-01 20:47:25,42.32617682777345,-83.85006286203861 +2019-11-01 20:47:31,75.0,14039.78,258.79999999999995,9.293,0.0,130.0,504972503.0,-1000376749.0,,2019-11-01 20:47:31,42.32630624435842,-83.85061045177281 +2019-11-01 20:47:33,78.0,14059.91,258.20000000000005,10.347999999999999,0.0,130.0,504973329.0,-1000379027.0,,2019-11-01 20:47:33,42.32637547887862,-83.85080139152706 +2019-11-01 20:47:35,80.0,14082.15,257.4,11.43,0.0,130.0,504974518.0,-1000381341.0,,2019-11-01 20:47:35,42.32647513970733,-83.85099534876645 +2019-11-01 20:47:37,85.0,14105.85,256.6,11.925,0.0,130.0,504975952.0,-1000383768.0,,2019-11-01 20:47:37,42.32659533619881,-83.85119877755642 +2019-11-01 20:47:39,87.0,14130.11,256.0,12.222999999999999,0.0,131.0,504977986.0,-1000386005.0,,2019-11-01 20:47:39,42.326765824109316,-83.85138628073037 +2019-11-01 20:47:41,86.0,14154.46,255.6,12.120999999999999,0.0,131.0,504980290.0,-1000388005.0,,2019-11-01 20:47:41,42.32695894315839,-83.8515539187938 +2019-11-01 20:47:44,86.0,14189.8,255.6,11.673,0.0,131.0,504983736.0,-1000390515.0,,2019-11-01 20:47:44,42.32724778354168,-83.8517643045634 +2019-11-01 20:47:48,84.0,14234.92,256.20000000000005,11.029000000000002,0.0,131.0,504987780.0,-1000394298.0,,2019-11-01 20:47:48,42.327586747705936,-83.85208139196038 +2019-11-01 20:47:53,76.0,14286.89,256.6,9.844,0.0,132.0,504992726.0,-1000399308.0,,2019-11-01 20:47:53,42.3280013166368,-83.85250132530928 +2019-11-01 20:47:57,78.0,14324.33,257.0,9.06,0.0,133.0,504996250.0,-1000402278.0,,2019-11-01 20:47:57,42.328296694904566,-83.85275026783347 +2019-11-01 20:47:58,76.0,14333.28,257.0,8.948,0.0,132.0,504997196.0,-1000402825.0,,2019-11-01 20:47:58,42.32837598770857,-83.85279611684382 +2019-11-01 20:48:02,80.0,14367.5,257.20000000000005,8.314,0.0,132.0,505000330.0,-1000405257.0,,2019-11-01 20:48:02,42.328638676553965,-83.85299996472895 +2019-11-01 20:48:03,79.0,14375.73,257.4,8.22,0.0,132.0,505001091.0,-1000405833.0,,2019-11-01 20:48:03,42.3287024628371,-83.85304824449122 +2019-11-01 20:48:06,81.0,14400.91,258.0,8.472000000000001,0.0,132.0,505002955.0,-1000407882.0,,2019-11-01 20:48:06,42.32885870151222,-83.8532199896872 +2019-11-01 20:48:07,89.0,14409.47,258.20000000000005,8.566,0.0,132.0,505003525.0,-1000408761.0,,2019-11-01 20:48:07,42.328906478360295,-83.85329366661608 +2019-11-01 20:48:09,91.0,14427.06,258.4,8.873,0.0,133.0,505004727.0,-1000410589.0,,2019-11-01 20:48:09,42.32900722883642,-83.85344688780606 +2019-11-01 20:48:13,85.0,14462.87,258.20000000000005,8.873,0.0,133.0,505007133.0,-1000414498.0,,2019-11-01 20:48:13,42.329208897426724,-83.85377453640103 +2019-11-01 20:48:16,81.0,14488.79,257.4,8.5,0.0,133.0,505008829.0,-1000417172.0,,2019-11-01 20:48:16,42.329351054504514,-83.85399866849184 +2019-11-01 20:48:18,80.0,14505.69,256.20000000000005,8.435,0.0,133.0,505009901.0,-1000419221.0,,2019-11-01 20:48:18,42.32944090850651,-83.85417041368783 +2019-11-01 20:48:22,82.0,14540.12,253.4,8.668,0.0,133.0,505011737.0,-1000423770.0,,2019-11-01 20:48:22,42.32959480024874,-83.8545517064631 +2019-11-01 20:48:23,80.0,14548.83,252.6,8.706,0.0,133.0,505012077.0,-1000425026.0,,2019-11-01 20:48:23,42.329623298719525,-83.85465698316693 +2019-11-01 20:48:28,78.0,14591.08,251.0,8.155,0.0,133.0,505013967.0,-1000430865.0,,2019-11-01 20:48:28,42.32978171668947,-83.85514640249312 +2019-11-01 20:48:33,88.0,14629.44,252.0,7.315,0.0,133.0,505015363.0,-1000436066.0,,2019-11-01 20:48:33,42.32989872805774,-83.85558234527707 +2019-11-01 20:48:38,84.0,14665.51,254.4,6.9510000000000005,0.0,133.0,505016632.0,-1000441214.0,,2019-11-01 20:48:38,42.33000509440899,-83.85601384565234 +2019-11-01 20:48:43,79.0,14695.53,256.79999999999995,5.44,0.0,133.0,505017885.0,-1000445669.0,,2019-11-01 20:48:43,42.33011011965573,-83.85638725943863 +2019-11-01 20:48:46,77.0,14712.25,258.6,5.682,0.0,135.0,505018735.0,-1000447936.0,,2019-11-01 20:48:46,42.330181365832686,-83.85657727718353 +2019-11-01 20:48:49,73.0,14728.54,260.79999999999995,5.346,0.0,136.0,505019789.0,-1000449857.0,,2019-11-01 20:48:49,42.330269711092114,-83.85673829354346 +2019-11-01 20:48:53,78.0,14750.57,262.4,5.598,0.0,138.0,505021126.0,-1000452467.0,,2019-11-01 20:48:53,42.33038177713752,-83.85695706121624 +2019-11-01 20:48:56,81.0,14767.92,262.6,5.897,0.0,138.0,505022325.0,-1000454286.0,,2019-11-01 20:48:56,42.330482276156545,-83.85710952803493 +2019-11-01 20:49:02,80.0,14804.34,262.0,6.317,0.0,138.0,505024970.0,-1000458071.0,,2019-11-01 20:49:02,42.33070397749543,-83.85742678306997 +2019-11-01 20:49:04,84.0,14817.14,261.6,6.4479999999999995,0.0,138.0,505025766.0,-1000459505.0,,2019-11-01 20:49:04,42.33077069744468,-83.85754697956145 +2019-11-01 20:49:10,81.0,14856.69,260.79999999999995,6.737,0.0,135.0,505028352.0,-1000464074.0,,2019-11-01 20:49:10,42.33098745346069,-83.85792994871736 +2019-11-01 20:49:11,81.0,14863.23,261.0,6.541,0.0,135.0,505028774.0,-1000464803.0,,2019-11-01 20:49:11,42.33102282509208,-83.85799105279148 +2019-11-01 20:49:17,81.0,14900.32,261.79999999999995,5.952999999999999,0.0,136.0,505031335.0,-1000469105.0,,2019-11-01 20:49:17,42.3312374856323,-83.85835164226592 +2019-11-01 20:49:23,82.0,14936.1,261.20000000000005,6.037000000000001,0.0,135.0,505033140.0,-1000473590.0,,2019-11-01 20:49:23,42.33138877898455,-83.85872757062316 +2019-11-01 20:49:28,81.0,14965.59,259.20000000000005,5.86,0.0,135.0,505034337.0,-1000477340.0,,2019-11-01 20:49:28,42.33148911036551,-83.85904189199209 +2019-11-01 20:49:31,82.0,14983.48,258.0,6.074,0.0,135.0,505034865.0,-1000479526.0,,2019-11-01 20:49:31,42.331533366814256,-83.85922512039542 +2019-11-01 20:49:34,86.0,15002.27,257.20000000000005,6.354,0.0,135.0,505035506.0,-1000481885.0,,2019-11-01 20:49:34,42.331587094813585,-83.85942284949124 +2019-11-01 20:49:35,87.0,15008.5,256.6,6.224,0.0,134.0,505035727.0,-1000482689.0,,2019-11-01 20:49:35,42.331605618819594,-83.85949023999274 +2019-11-01 20:49:39,82.0,15032.27,255.20000000000005,5.85,0.0,134.0,505036310.0,-1000486026.0,,2019-11-01 20:49:39,42.331654485315084,-83.85976994410157 +2019-11-01 20:49:40,80.0,15037.98,255.0,5.71,0.0,135.0,505036468.0,-1000486902.0,,2019-11-01 20:49:40,42.331667728722095,-83.85984336957335 +2019-11-01 20:49:44,81.0,15061.48,254.4,5.944,0.0,136.0,505036919.0,-1000490309.0,,2019-11-01 20:49:44,42.3317055311054,-83.86012894101441 +2019-11-01 20:49:50,85.0,15097.75,254.0,6.1770000000000005,0.0,135.0,505037167.0,-1000495645.0,,2019-11-01 20:49:50,42.331726318225265,-83.86057619936764 +2019-11-01 20:49:52,86.0,15110.86,254.6,6.699,0.0,134.0,505037304.0,-1000497244.0,,2019-11-01 20:49:52,42.33173780143261,-83.86071022599936 +2019-11-01 20:49:54,98.0,15124.71,255.20000000000005,6.886,0.0,133.0,505037399.0,-1000499348.0,,2019-11-01 20:49:54,42.33174576424062,-83.86088658124208 +2019-11-01 20:49:57,84.0,15146.4,256.4,7.465,0.0,133.0,505037863.0,-1000502406.0,,2019-11-01 20:49:57,42.33178465627134,-83.86114289984107 +2019-11-01 20:50:03,72.0,15195.78,260.20000000000005,8.706,0.0,132.0,505039362.0,-1000509055.0,,2019-11-01 20:50:03,42.33191030099988,-83.86170021258295 +2019-11-01 20:50:09,0.0,15248.09,260.20000000000005,8.407,0.0,129.0,505041277.0,-1000516137.0,,2019-11-01 20:50:09,42.332070814445615,-83.86229381896555 +2019-11-01 20:50:12,0.0,15269.84,258.79999999999995,6.392,0.0,125.0,505042453.0,-1000519187.0,,2019-11-01 20:50:12,42.33216938562691,-83.86254946701229 +2019-11-01 20:50:14,0.0,15280.46,258.20000000000005,4.888999999999999,0.0,124.0,505043357.0,-1000520630.0,,2019-11-01 20:50:14,42.33224515803158,-83.86267041787505 +2019-11-01 20:50:16,0.0,15288.73,258.0,3.844,0.0,122.0,505043487.0,-1000521759.0,,2019-11-01 20:50:16,42.332256054505706,-83.86276504956186 +2019-11-01 20:50:18,0.0,15295.99,257.79999999999995,3.4339999999999997,0.0,120.0,505042759.0,-1000521769.0,,2019-11-01 20:50:18,42.33219503425062,-83.86276588775218 +2019-11-01 20:50:21,0.0,15305.51,258.0,3.0980000000000003,0.0,117.0,505042178.0,-1000520732.0,,2019-11-01 20:50:21,42.33214633539319,-83.86267896741629 +2019-11-01 20:50:23,0.0,15311.49,258.4,2.911,0.0,116.0,505042157.0,-1000519976.0,,2019-11-01 20:50:23,42.332144575193524,-83.86261560022831 +2019-11-01 20:50:29,68.0,15336.45,258.20000000000005,4.992,0.0,115.0,505041370.0,-1000516773.0,,2019-11-01 20:50:29,42.332078609615564,-83.86234712786973 +2019-11-01 20:50:35,79.0,15369.98,257.4,5.654,0.0,118.0,505039922.0,-1000512401.0,,2019-11-01 20:50:35,42.33195723965764,-83.86198067106307 +2019-11-01 20:50:38,76.0,15386.74,257.4,5.57,0.0,121.0,505039201.0,-1000510131.0,,2019-11-01 20:50:38,42.331896806135774,-83.86179040186107 +2019-11-01 20:50:44,77.0,15416.74,258.4,4.749,0.0,123.0,505038143.0,-1000505978.0,,2019-11-01 20:50:44,42.33180812560022,-83.86144230142236 +2019-11-01 20:50:48,73.0,15434.68,259.20000000000005,4.637,0.0,126.0,505037727.0,-1000503716.0,,2019-11-01 20:50:48,42.331773256883025,-83.86125270277262 +2019-11-01 20:50:51,78.0,15448.94,259.20000000000005,4.871,0.0,127.0,505037373.0,-1000501913.0,,2019-11-01 20:50:51,42.3317435849458,-83.86110157705843 +2019-11-01 20:50:59,12.0,15487.06,258.79999999999995,4.6930000000000005,0.0,128.0,505036947.0,-1000496678.0,,2019-11-01 20:50:59,42.33170787803829,-83.8606627844274 +2019-11-01 20:51:02,89.0,15502.28,258.79999999999995,5.244,0.0,129.0,505036784.0,-1000494633.0,,2019-11-01 20:51:02,42.33169421553612,-83.86049137450755 +2019-11-01 20:51:05,75.0,15518.65,258.6,5.598,0.0,129.0,505036576.0,-1000492445.0,,2019-11-01 20:51:05,42.33167678117752,-83.86030797846615 +2019-11-01 20:51:06,75.0,15524.45,258.6,5.803999999999999,0.0,129.0,505036482.0,-1000491634.0,,2019-11-01 20:51:06,42.33166890218854,-83.86024000123143 +2019-11-01 20:51:11,81.0,15556.05,259.0,6.699,0.0,130.0,505036061.0,-1000487093.0,,2019-11-01 20:51:11,42.33163361437619,-83.85985937900841 +2019-11-01 20:51:16,79.0,15592.71,259.20000000000005,7.651,0.0,132.0,505035114.0,-1000482023.0,,2019-11-01 20:51:16,42.33155423775315,-83.85943441651762 +2019-11-01 20:51:17,79.0,15600.32,259.20000000000005,7.622999999999999,0.0,132.0,505034850.0,-1000480998.0,,2019-11-01 20:51:17,42.33153210952878,-83.8593485020101 +2019-11-01 20:51:24,79.0,15657.85,258.79999999999995,8.808,0.0,132.0,505032209.0,-1000473228.0,,2019-11-01 20:51:24,42.33131074346602,-83.85869722813368 +2019-11-01 20:51:29,84.0,15701.74,258.79999999999995,8.706,0.0,131.0,505029793.0,-1000467612.0,,2019-11-01 20:51:29,42.331108236685395,-83.85822650045156 +2019-11-01 20:51:36,79.0,15760.65,256.6,8.155,0.0,130.0,505025923.0,-1000460710.0,,2019-11-01 20:51:36,42.33078385703266,-83.85764798149467 +2019-11-01 20:51:44,76.0,15823.53,255.6,7.922000000000001,0.0,130.0,505021560.0,-1000453670.0,,2019-11-01 20:51:44,42.33041815459728,-83.85705789551139 +2019-11-01 20:51:51,86.0,15883.67,255.79999999999995,9.34,0.0,130.0,505018014.0,-1000446752.0,,2019-11-01 20:51:51,42.33012093231082,-83.85647803544998 +2019-11-01 20:51:57,81.0,15947.19,255.4,11.048,0.0,129.0,505015571.0,-1000438594.0,,2019-11-01 20:51:57,42.32991616241634,-83.85579423978925 +2019-11-01 20:52:03,80.0,16012.48,253.4,10.581,0.0,130.0,505012883.0,-1000429857.0,,2019-11-01 20:52:03,42.32969085685909,-83.85506191290915 +2019-11-01 20:52:09,73.0,16072.8,252.6,9.732000000000001,0.0,130.0,505009950.0,-1000421906.0,,2019-11-01 20:52:09,42.32944501563907,-83.85439546778798 +2019-11-01 20:52:10,71.0,16082.42,252.4,9.611,0.0,130.0,505009411.0,-1000420672.0,,2019-11-01 20:52:10,42.32939983718097,-83.85429203510284 +2019-11-01 20:52:12,70.0,16101.54,252.20000000000005,9.564,0.0,130.0,505008252.0,-1000418228.0,,2019-11-01 20:52:12,42.329302690923214,-83.85408718138933 +2019-11-01 20:52:17,70.0,16149.55,252.4,9.527000000000001,0.0,130.0,505005147.0,-1000412625.0,,2019-11-01 20:52:17,42.32904243282974,-83.85361754335463 +2019-11-01 20:52:22,64.0,16195.37,253.4,8.939,0.0,132.0,505001800.0,-1000407534.0,,2019-11-01 20:52:22,42.328761890530586,-83.85319082066417 +2019-11-01 20:52:25,74.0,16222.07,254.20000000000005,8.901,0.0,132.0,504999706.0,-1000405387.0,,2019-11-01 20:52:25,42.328586373478174,-83.85301086120307 +2019-11-01 20:52:26,74.0,16230.87,254.4,8.799,0.0,132.0,504998870.0,-1000404761.0,,2019-11-01 20:52:26,42.32851630076766,-83.85295839048922 +2019-11-01 20:52:32,73.0,16282.83,254.20000000000005,8.724,0.0,134.0,504993664.0,-1000401401.0,,2019-11-01 20:52:32,42.32807993888855,-83.85267675854266 +2019-11-01 20:52:33,73.0,16291.52,254.20000000000005,8.687000000000001,0.0,134.0,504992866.0,-1000400756.0,,2019-11-01 20:52:33,42.32801305130124,-83.8526226952672 +2019-11-01 20:52:37,71.0,16325.63,255.0,8.388,0.0,134.0,504990002.0,-1000397710.0,,2019-11-01 20:52:37,42.32777299359441,-83.8523673824966 +2019-11-01 20:52:44,77.0,16382.79,254.6,8.107999999999999,0.0,132.0,504985136.0,-1000392831.0,,2019-11-01 20:52:44,42.32736513018608,-83.85195842944086 +2019-11-01 20:52:50,75.0,16429.87,254.0,7.577000000000001,0.0,132.0,504980932.0,-1000389285.0,,2019-11-01 20:52:50,42.32701275497675,-83.8516612071544 +2019-11-01 20:52:51,80.0,16437.13,253.79999999999995,7.25,0.0,133.0,504980226.0,-1000388647.0,,2019-11-01 20:52:51,42.32695357874036,-83.85160773061216 +2019-11-01 20:52:56,73.0,16472.27,251.79999999999995,6.922999999999999,0.0,134.0,504977126.0,-1000385991.0,,2019-11-01 20:52:56,42.32669373974204,-83.85138510726392 +2019-11-01 20:53:01,71.0,16506.91,251.4,6.653,0.0,135.0,504974944.0,-1000382956.0,,2019-11-01 20:53:01,42.32651084661484,-83.85113071650267 +2019-11-01 20:53:02,71.0,16513.41,251.4,6.494,0.0,135.0,504974578.0,-1000382192.0,,2019-11-01 20:53:02,42.32648016884923,-83.85106667876244 +2019-11-01 20:53:05,65.0,16532.34,252.4,6.364,0.0,138.0,504973446.0,-1000379678.0,,2019-11-01 20:53:05,42.32638528570533,-83.8508559577167 +2019-11-01 20:53:09,72.0,16559.19,256.0,6.886,0.0,141.0,504972476.0,-1000376213.0,,2019-11-01 20:53:09,42.326303981244564,-83.85056552477181 +2019-11-01 20:53:12,68.0,16580.32,258.0,6.653,0.0,144.0,504971894.0,-1000373408.0,,2019-11-01 20:53:12,42.326255198568106,-83.85033041238785 +2019-11-01 20:53:14,82.0,16592.93,259.79999999999995,6.196000000000001,0.0,146.0,504971468.0,-1000371587.0,,2019-11-01 20:53:14,42.326219491660595,-83.8501777779311 +2019-11-01 20:53:17,77.0,16610.88,262.0,5.944,0.0,149.0,504970836.0,-1000368910.0,,2019-11-01 20:53:17,42.32616651803255,-83.84995339438319 +2019-11-01 20:53:20,76.0,16628.52,262.79999999999995,5.962000000000001,0.0,151.0,504970125.0,-1000366074.0,,2019-11-01 20:53:20,42.326106922701,-83.84971568360925 +2019-11-01 20:53:26,78.0,16664.29,262.79999999999995,6.121,0.0,152.0,504969032.0,-1000361028.0,,2019-11-01 20:53:26,42.326015308499336,-83.84929273277521 +2019-11-01 20:53:32,86.0,16702.32,261.4,6.531000000000001,0.0,149.0,504968009.0,-1000355339.0,,2019-11-01 20:53:32,42.32592956162989,-83.84881588630378 +2019-11-01 20:53:33,86.0,16708.81,261.0,6.476,0.0,148.0,504967804.0,-1000354493.0,,2019-11-01 20:53:33,42.32591237872839,-83.84874497540295 +2019-11-01 20:53:41,76.0,16763.63,261.20000000000005,7.399,0.0,147.0,504966328.0,-1000346756.0,,2019-11-01 20:53:41,42.32578866183758,-83.84809646755457 +2019-11-01 20:53:46,77.0,16803.49,262.4,8.556000000000001,0.0,146.0,504965438.0,-1000341226.0,,2019-11-01 20:53:46,42.32571406289935,-83.84763294830918 +2019-11-01 20:53:53,73.0,16858.7,261.6,6.922999999999999,0.0,146.0,504964014.0,-1000333194.0,,2019-11-01 20:53:53,42.32559470459819,-83.84695971384645 +2019-11-01 20:53:59,71.0,16898.56,261.20000000000005,6.457000000000001,0.0,144.0,504962985.0,-1000327527.0,,2019-11-01 20:53:59,42.32550845481455,-83.84648471139371 +2019-11-01 20:54:08,76.0,16959.26,263.20000000000005,7.175,0.0,143.0,504961480.0,-1000318980.0,,2019-11-01 20:54:08,42.32538230717182,-83.84576831012964 +2019-11-01 20:54:09,76.0,16966.56,263.4,7.297000000000001,0.0,142.0,504961332.0,-1000317923.0,,2019-11-01 20:54:09,42.32536990195513,-83.84567971341312 +2019-11-01 20:54:14,79.0,17003.94,264.6,7.417999999999999,0.0,139.0,504960673.0,-1000312587.0,,2019-11-01 20:54:14,42.32531466521323,-83.84523245505989 +2019-11-01 20:54:19,78.0,17041.15,264.6,7.343,0.0,137.0,504960080.0,-1000307238.0,,2019-11-01 20:54:19,42.32526496052742,-83.84478410705924 +2019-11-01 20:54:23,77.0,17070.14,264.4,7.175,0.0,134.0,504959943.0,-1000303071.0,,2019-11-01 20:54:23,42.325253477320075,-83.84443483315408 +2019-11-01 20:54:29,79.0,17114.86,264.0,7.763,0.0,133.0,504959985.0,-1000296735.0,,2019-11-01 20:54:29,42.32525699771941,-83.84390375576913 +2019-11-01 20:54:34,86.0,17157.61,264.20000000000005,9.116,0.0,133.0,504960456.0,-1000290928.0,,2019-11-01 20:54:34,42.325296476483345,-83.84341701865196 +2019-11-01 20:54:36,76.0,17175.85,264.20000000000005,9.079,0.0,133.0,504960825.0,-1000288375.0,,2019-11-01 20:54:36,42.32532740570605,-83.84320302866399 +2019-11-01 20:54:42,82.0,17221.54,265.20000000000005,6.597,0.0,132.0,504961607.0,-1000281619.0,,2019-11-01 20:54:42,42.32539295218885,-83.84263674728572 +2019-11-01 20:54:48,72.0,17258.51,267.0,6.233,0.0,132.0,504962207.0,-1000276193.0,,2019-11-01 20:54:48,42.32544324360788,-83.84218194521964 +2019-11-01 20:54:56,72.0,17308.4,269.0,6.382000000000001,0.0,135.0,504962611.0,-1000268871.0,,2019-11-01 20:54:56,42.32547710649669,-83.84156822226942 +2019-11-01 20:54:57,73.0,17314.7,269.0,6.308,0.0,135.0,504962619.0,-1000267996.0,,2019-11-01 20:54:57,42.325477777048945,-83.84149488061666 +2019-11-01 20:54:59,80.0,17327.41,269.20000000000005,6.3260000000000005,0.0,136.0,504962653.0,-1000266180.0,,2019-11-01 20:54:59,42.325480626896024,-83.84134266525507 +2019-11-01 20:55:04,80.0,17358.85,269.6,6.364,0.0,137.0,504962880.0,-1000261489.0,,2019-11-01 20:55:04,42.32549965381622,-83.84094947017729 +2019-11-01 20:55:12,76.0,17409.41,271.20000000000005,6.289,0.0,138.0,504963015.0,-1000254188.0,,2019-11-01 20:55:12,42.325510969385505,-83.84033750742674 +2019-11-01 20:55:18,69.0,17447.68,272.20000000000005,5.981,0.0,138.0,504963153.0,-1000248655.0,,2019-11-01 20:55:18,42.32552253641188,-83.83987373672426 +2019-11-01 20:55:24,76.0,17480.34,273.6,5.672999999999999,0.0,139.0,504963229.0,-1000243992.0,,2019-11-01 20:55:24,42.32552890665829,-83.83948288857937 +2019-11-01 20:55:26,78.0,17492.12,273.4,5.888,0.0,137.0,504963304.0,-1000242387.0,,2019-11-01 20:55:26,42.32553519308567,-83.83934835903347 +2019-11-01 20:55:28,82.0,17504.07,273.0,6.065,0.0,134.0,504963460.0,-1000240669.0,,2019-11-01 20:55:28,42.32554826885462,-83.83920435793698 +2019-11-01 20:55:29,82.0,17510.21,272.79999999999995,6.149,0.0,134.0,504963504.0,-1000239863.0,,2019-11-01 20:55:29,42.32555195689201,-83.83913679979742 +2019-11-01 20:55:35,82.0,17550.24,271.20000000000005,6.989,0.0,134.0,504963510.0,-1000234332.0,,2019-11-01 20:55:35,42.325552459806204,-83.838673196733 +2019-11-01 20:55:43,80.0,17609.57,271.6,7.678999999999999,0.0,135.0,504963731.0,-1000225765.0,,2019-11-01 20:55:43,42.32557098381221,-83.83795511908829 +2019-11-01 20:55:51,79.0,17673.97,271.20000000000005,8.295,0.0,135.0,504964087.0,-1000217082.0,,2019-11-01 20:55:51,42.325600823387504,-83.83722731843591 +2019-11-01 20:55:53,80.0,17690.73,270.0,8.398,0.0,134.0,504964065.0,-1000214592.0,,2019-11-01 20:55:53,42.325598979368806,-83.83701860904694 +2019-11-01 20:55:58,79.0,17732.23,267.4,8.36,0.0,134.0,504964252.0,-1000208188.0,,2019-11-01 20:55:58,42.32561465352774,-83.83648183196783 +2019-11-01 20:56:05,83.0,17794.63,266.0,9.302999999999999,0.0,132.0,504964401.0,-1000199154.0,,2019-11-01 20:56:05,42.32562714256346,-83.83572461083531 +2019-11-01 20:56:12,74.0,17863.85,265.20000000000005,10.208,0.0,132.0,504964741.0,-1000189430.0,,2019-11-01 20:56:12,42.325655641034245,-83.83490955457091 +2019-11-01 20:56:13,72.0,17874.06,265.0,10.226,0.0,132.0,504964836.0,-1000187906.0,,2019-11-01 20:56:13,42.32566360384226,-83.83478181436658 +2019-11-01 20:56:18,77.0,17927.12,264.4,10.917,0.0,133.0,504965978.0,-1000180554.0,,2019-11-01 20:56:18,42.32575932517648,-83.83416557684541 +2019-11-01 20:56:19,79.0,17938.25,264.20000000000005,11.132,0.0,133.0,504966434.0,-1000179099.0,,2019-11-01 20:56:19,42.32579754665494,-83.83404362015426 +2019-11-01 20:56:22,81.0,17971.56,262.6,10.992,0.0,132.0,504968107.0,-1000174567.0,,2019-11-01 20:56:22,42.325937775895,-83.83366375230253 +2019-11-01 20:56:29,79.0,18040.52,259.6,9.545,0.0,132.0,504971975.0,-1000165332.0,,2019-11-01 20:56:29,42.326261987909675,-83.83288968354464 +2019-11-01 20:56:35,79.0,18096.71,260.20000000000005,9.219,0.0,132.0,504975147.0,-1000158374.0,,2019-11-01 20:56:35,42.326527861878276,-83.83230647072196 +2019-11-01 20:56:42,84.0,18159.68,259.4,8.622,0.0,133.0,504978659.0,-1000150542.0,,2019-11-01 20:56:42,42.32682223431766,-83.83165000006557 +2019-11-01 20:56:50,81.0,18226.27,258.6,8.062000000000001,0.0,134.0,504982412.0,-1000142310.0,,2019-11-01 20:56:50,42.32713680714369,-83.83096000179648 +2019-11-01 20:56:57,80.0,18283.95,258.79999999999995,8.276,0.0,137.0,504985536.0,-1000135167.0,,2019-11-01 20:56:57,42.32739865779877,-83.83036128245294 +2019-11-01 20:56:59,79.0,18300.64,258.79999999999995,8.379,0.0,138.0,504986449.0,-1000133082.0,,2019-11-01 20:56:59,42.32747518457472,-83.83018651977181 +2019-11-01 20:57:07,74.0,18369.44,259.0,9.079,0.0,140.0,504990294.0,-1000124568.0,,2019-11-01 20:57:07,42.32779746875167,-83.82947288453579 +2019-11-01 20:57:08,76.0,18378.82,259.0,9.387,0.0,140.0,504990813.0,-1000123427.0,,2019-11-01 20:57:08,42.32784097082913,-83.8293772470206 +2019-11-01 20:57:13,87.0,18429.51,258.6,10.273,0.0,140.0,504993661.0,-1000117439.0,,2019-11-01 20:57:13,42.328079687431455,-83.82887533865869 +2019-11-01 20:57:19,72.0,18489.87,256.79999999999995,10.068,0.0,137.0,504997054.0,-1000109829.0,,2019-11-01 20:57:19,42.328364085406065,-83.82823747582734 +2019-11-01 20:57:20,73.0,18499.71,256.6,9.844,0.0,137.0,504997582.0,-1000108582.0,,2019-11-01 20:57:20,42.32840834185481,-83.82813295349479 +2019-11-01 20:57:27,76.0,18564.32,255.6,8.836,0.0,135.0,505001240.0,-1000100384.0,,2019-11-01 20:57:27,42.328714951872826,-83.82744580507278 +2019-11-01 20:57:29,74.0,18581.82,255.6,8.752,0.0,135.0,505002194.0,-1000098140.0,,2019-11-01 20:57:29,42.32879491522908,-83.82725771516562 +2019-11-01 20:57:36,76.0,18644.77,257.6,9.191,0.0,135.0,505005460.0,-1000090329.0,,2019-11-01 20:57:36,42.329068668186665,-83.82660300470889 +2019-11-01 20:57:43,81.0,18709.82,257.4,9.349,0.0,135.0,505009092.0,-1000082297.0,,2019-11-01 20:57:43,42.329373098909855,-83.82592977024615 +2019-11-01 20:57:44,78.0,18719.33,257.4,9.499,0.0,135.0,505009527.0,-1000081083.0,,2019-11-01 20:57:44,42.32940956018865,-83.82582801394165 +2019-11-01 20:57:51,80.0,18786.06,255.20000000000005,9.415,0.0,134.0,505012949.0,-1000072756.0,,2019-11-01 20:57:51,42.32969638891518,-83.82513005286455 +2019-11-01 20:57:52,78.0,18795.4,255.0,9.331,0.0,134.0,505013419.0,-1000071627.0,,2019-11-01 20:57:52,42.32973578386009,-83.82503542117774 +2019-11-01 20:57:59,78.0,18860.49,254.79999999999995,9.293,0.0,131.0,505017071.0,-1000063444.0,,2019-11-01 20:57:59,42.33004189096391,-83.82434953004122 +2019-11-01 20:58:01,79.0,18879.04,254.79999999999995,9.293,0.0,131.0,505018094.0,-1000061178.0,,2019-11-01 20:58:01,42.33012763783336,-83.82415959611535 +2019-11-01 20:58:08,78.0,18944.62,253.4,9.405,0.0,130.0,505021650.0,-1000053023.0,,2019-11-01 20:58:08,42.33042569831014,-83.82347605191171 +2019-11-01 20:58:10,79.0,18963.55,253.20000000000005,9.471,0.0,131.0,505022725.0,-1000050712.0,,2019-11-01 20:58:10,42.33051580376923,-83.82328234612942 +2019-11-01 20:58:17,81.0,19030.17,252.20000000000005,9.76,0.0,131.0,505026276.0,-1000042163.0,,2019-11-01 20:58:17,42.33081344515085,-83.82256577722728 +2019-11-01 20:58:18,83.0,19039.97,252.4,9.788,0.0,131.0,505026735.0,-1000040937.0,,2019-11-01 20:58:18,42.33085191808641,-83.8224630150944 +2019-11-01 20:58:24,87.0,19101.67,253.4,10.665,0.0,130.0,505029750.0,-1000033096.0,,2019-11-01 20:58:24,42.33110463246703,-83.82180579006672 +2019-11-01 20:58:30,78.0,19165.36,253.4,10.552999999999999,0.0,131.0,505032976.0,-1000024852.0,,2019-11-01 20:58:30,42.331375032663345,-83.82111478596926 +2019-11-01 20:58:36,73.0,19227.3,252.4,10.113999999999999,0.0,131.0,505036368.0,-1000016998.0,,2019-11-01 20:58:36,42.331659346818924,-83.82045647129416 +2019-11-01 20:58:40,74.0,19267.76,251.6,10.105,0.0,132.0,505038743.0,-1000012067.0,,2019-11-01 20:58:40,42.33185841701925,-83.82004315964878 +2019-11-01 20:58:46,81.0,19327.17,250.6,9.825,0.0,133.0,505042781.0,-1000005391.0,,2019-11-01 20:58:46,42.332196878269315,-83.81948358379304 +2019-11-01 20:58:53,80.0,19395.31,249.79999999999995,9.741,0.0,133.0,505047618.0,-999998174.0,,2019-11-01 20:58:53,42.33260231092572,-83.81887866184115 +2019-11-01 20:59:00,75.0,19460.76,249.20000000000005,9.247,0.0,134.0,505052041.0,-999990887.0,,2019-11-01 20:59:00,42.332973042503,-83.81826787255704 +2019-11-01 20:59:01,77.0,19470.05,249.20000000000005,9.283999999999999,0.0,134.0,505052431.0,-999989990.0,,2019-11-01 20:59:01,42.33300573192537,-83.8181926868856 +2019-11-01 20:59:07,77.0,19525.51,248.79999999999995,9.06,0.0,134.0,505055152.0,-999982683.0,,2019-11-01 20:59:07,42.333233803510666,-83.81758022122085 +2019-11-01 20:59:14,80.0,19586.68,247.4,8.566,0.0,135.0,505057915.0,-999974170.0,,2019-11-01 20:59:14,42.333465395495296,-83.81686666980386 +2019-11-01 20:59:15,80.0,19595.12,247.20000000000005,8.435,0.0,135.0,505058296.0,-999973028.0,,2019-11-01 20:59:15,42.33349733054638,-83.81677094846964 +2019-11-01 20:59:21,77.0,19644.61,248.0,8.164,0.0,136.0,505060694.0,-999966698.0,,2019-11-01 20:59:21,42.33369832858443,-83.81624037399888 +2019-11-01 20:59:22,78.0,19652.78,248.20000000000005,8.164,0.0,136.0,505061185.0,-999965789.0,,2019-11-01 20:59:22,42.333739483729005,-83.81616418249905 +2019-11-01 20:59:28,78.0,19702.85,248.79999999999995,8.454,0.0,136.0,505064584.0,-999960489.0,,2019-11-01 20:59:28,42.334024384617805,-83.81571994163096 +2019-11-01 20:59:35,79.0,19761.85,249.20000000000005,8.323,0.0,135.0,505068288.0,-999953790.0,,2019-11-01 20:59:35,42.33433485031128,-83.8151584379375 +2019-11-01 20:59:43,81.0,19824.15,249.6,7.231,0.0,135.0,505071890.0,-999945879.0,,2019-11-01 20:59:43,42.33463676646352,-83.8144953455776 +2019-11-01 20:59:45,77.0,19838.61,249.6,7.185,0.0,135.0,505072661.0,-999944040.0,,2019-11-01 20:59:45,42.33470139093697,-83.81434120237827 +2019-11-01 20:59:51,81.0,19881.0,249.20000000000005,7.231,0.0,134.0,505074351.0,-999938808.0,,2019-11-01 20:59:51,42.33484304510057,-83.81390266120434 +2019-11-01 20:59:56,83.0,19916.56,248.4,7.138,0.0,132.0,505074617.0,-999934076.0,,2019-11-01 20:59:56,42.334865340963006,-83.81350602954626 +2019-11-01 21:00:03,88.0,19967.76,251.20000000000005,7.53,0.0,133.0,505074158.0,-999926721.0,,2019-11-01 21:00:03,42.33482686802745,-83.812889540568 +2019-11-01 21:00:10,82.0,20018.36,256.6,6.867000000000001,0.0,132.0,505073134.0,-999919311.0,,2019-11-01 21:00:10,42.33474103733897,-83.81226844154298 +2019-11-01 21:00:17,83.0,20067.48,263.79999999999995,7.446000000000001,0.0,133.0,505072318.0,-999912019.0,,2019-11-01 21:00:17,42.33467264100909,-83.81165723316371 +2019-11-01 21:00:24,82.0,20121.29,266.20000000000005,7.875,0.0,135.0,505071295.0,-999904426.0,,2019-11-01 21:00:24,42.33458689413965,-83.8110207952559 +2019-11-01 21:00:32,84.0,20184.46,267.4,7.678999999999999,0.0,135.0,505070679.0,-999895588.0,,2019-11-01 21:00:32,42.33453526161611,-83.8102800026536 +2019-11-01 21:00:33,81.0,20192.04,267.6,7.577000000000001,0.0,136.0,505070640.0,-999894469.0,,2019-11-01 21:00:33,42.334531992673874,-83.81018620915711 +2019-11-01 21:00:40,76.0,20243.54,270.0,7.4270000000000005,0.0,136.0,505070145.0,-999886798.0,,2019-11-01 21:00:40,42.334490502253175,-83.80954323336482 +2019-11-01 21:00:46,93.0,20292.39,268.6,8.556000000000001,0.0,136.0,505068977.0,-999880312.0,,2019-11-01 21:00:46,42.33439260162413,-83.80899958312511 +2019-11-01 21:00:50,80.0,20326.77,264.20000000000005,8.762,0.0,136.0,505066708.0,-999876027.0,,2019-11-01 21:00:50,42.33420241624117,-83.80864041857421 +2019-11-01 21:00:55,77.0,20372.36,257.6,9.2,0.0,135.0,505064001.0,-999870385.0,,2019-11-01 21:00:55,42.333975518122315,-83.80816751159728 +2019-11-01 21:01:02,79.0,20436.3,252.20000000000005,9.013,0.0,133.0,505060994.0,-999862278.0,,2019-11-01 21:01:02,42.33372347429395,-83.80748799070716 +2019-11-01 21:01:04,85.0,20454.33,251.79999999999995,9.013,0.0,133.0,505060038.0,-999860302.0,,2019-11-01 21:01:04,42.33364334329963,-83.80732236430049 +2019-11-01 21:01:11,83.0,20515.93,249.79999999999995,8.622,0.0,133.0,505055498.0,-999853123.0,,2019-11-01 21:01:11,42.33326280489564,-83.8067206274718 +2019-11-01 21:01:19,80.0,20583.87,248.6,8.36,0.0,135.0,505050120.0,-999846532.0,,2019-11-01 21:01:19,42.332812026143074,-83.80616817623377 +2019-11-01 21:01:24,80.0,20626.38,248.20000000000005,8.658999999999999,0.0,136.0,505046500.0,-999842953.0,,2019-11-01 21:01:24,42.332508601248264,-83.80586818791926 +2019-11-01 21:01:25,83.0,20634.93,248.0,8.556000000000001,0.0,136.0,505045692.0,-999842399.0,,2019-11-01 21:01:25,42.33244087547064,-83.80582175217569 +2019-11-01 21:01:29,79.0,20668.64,247.6,8.379,0.0,135.0,505042276.0,-999840815.0,,2019-11-01 21:01:29,42.3321545496583,-83.80568898282945 +2019-11-01 21:01:35,80.0,20719.07,246.4,8.36,0.0,136.0,505036917.0,-999839960.0,,2019-11-01 21:01:35,42.331705363467336,-83.80561731755733 +2019-11-01 21:01:43,84.0,20783.58,243.79999999999995,7.856,0.0,137.0,505030065.0,-999839732.0,,2019-11-01 21:01:43,42.33113103546202,-83.8055982068181 +2019-11-01 21:01:48,83.0,20822.7,243.0,7.847,0.0,137.0,505026050.0,-999839399.0,,2019-11-01 21:01:48,42.330794502049685,-83.80557029508054 +2019-11-01 21:01:50,84.0,20838.25,242.6,7.791,0.0,136.0,505024522.0,-999839093.0,,2019-11-01 21:01:50,42.33066642656922,-83.80554464645684 +2019-11-01 21:01:58,74.0,20896.33,239.4,6.671,0.0,136.0,505018259.0,-999838631.0,,2019-11-01 21:01:58,42.33014146797359,-83.80550592206419 +2019-11-01 21:02:04,74.0,20932.47,236.79999999999995,5.888,0.0,136.0,505014309.0,-999838515.0,,2019-11-01 21:02:04,42.329810382798314,-83.8054961990565 +2019-11-01 21:02:07,77.0,20950.36,236.4,5.934,0.0,136.0,505012691.0,-999838394.0,,2019-11-01 21:02:07,42.329674763605,-83.80548605695367 +2019-11-01 21:02:08,74.0,20956.25,236.4,5.888,0.0,137.0,505012077.0,-999838460.0,,2019-11-01 21:02:08,42.329623298719525,-83.80549158900976 +2019-11-01 21:02:11,76.0,20973.99,238.0,5.803999999999999,0.0,138.0,505010090.0,-999838436.0,,2019-11-01 21:02:11,42.32945675030351,-83.805489577353 +2019-11-01 21:02:13,75.0,20985.22,239.6,5.626,0.0,139.0,505008985.0,-999838534.0,,2019-11-01 21:02:13,42.32936413027346,-83.80549779161811 +2019-11-01 21:02:17,67.0,21006.08,243.4,5.029,0.0,142.0,505006670.0,-999838258.0,,2019-11-01 21:02:17,42.32917008921504,-83.80547465756536 +2019-11-01 21:02:19,61.0,21015.73,245.79999999999995,4.815,0.0,144.0,505005663.0,-999838189.0,,2019-11-01 21:02:19,42.3290856834501,-83.80546887405217 +2019-11-01 21:02:21,61.0,21025.03,248.4,4.572,0.0,146.0,505004556.0,-999837880.0,,2019-11-01 21:02:21,42.328992895781994,-83.80544297397137 +2019-11-01 21:02:24,58.0,21038.42,251.20000000000005,4.46,0.0,150.0,505002918.0,-999837217.0,,2019-11-01 21:02:24,42.328855600208044,-83.80538740195334 +2019-11-01 21:02:27,56.0,21051.44,252.79999999999995,4.3389999999999995,0.0,154.0,505001527.0,-999836409.0,,2019-11-01 21:02:27,42.32873900793493,-83.80531967617571 +2019-11-01 21:02:30,55.0,21064.55,255.0,4.4319999999999995,0.0,157.0,505000036.0,-999835570.0,,2019-11-01 21:02:30,42.32861403375864,-83.8052493520081 +2019-11-01 21:02:34,49.0,21081.36,257.4,3.574,0.0,160.0,504998480.0,-999834448.0,,2019-11-01 21:02:34,42.32848361134529,-83.80515530705452 +2019-11-01 21:02:37,65.0,21091.68,258.79999999999995,3.3960000000000004,0.0,162.0,504997534.0,-999833465.0,,2019-11-01 21:02:37,42.32840431854129,-83.80507291294634 +2019-11-01 21:02:46,63.0,21121.8,258.6,3.3960000000000004,0.0,159.0,504995019.0,-999830988.0,,2019-11-01 21:02:46,42.328193513676524,-83.80486529320478 +2019-11-01 21:02:51,67.0,21139.22,257.79999999999995,3.5269999999999997,0.0,156.0,504993537.0,-999829248.0,,2019-11-01 21:02:51,42.32806929387152,-83.8047194480896 +2019-11-01 21:02:55,65.0,21154.97,257.4,4.133,0.0,154.0,504992266.0,-999827980.0,,2019-11-01 21:02:55,42.32796275988221,-83.80461316555738 +2019-11-01 21:03:01,68.0,21186.78,256.6,6.457000000000001,0.0,152.0,504989671.0,-999825244.0,,2019-11-01 21:03:01,42.32774524949491,-83.80438383668661 +2019-11-01 21:03:06,29.0,21224.49,256.4,8.146,0.0,150.0,504986775.0,-999822058.0,,2019-11-01 21:03:06,42.32750250957906,-83.80411678925157 +2019-11-01 21:03:11,71.0,21268.29,255.20000000000005,8.939,0.0,149.0,504983157.0,-999817895.0,,2019-11-01 21:03:11,42.327199252322316,-83.80376785062253 +2019-11-01 21:03:14,66.0,21295.48,254.20000000000005,8.939,0.0,146.0,504980790.0,-999815304.0,,2019-11-01 21:03:14,42.327000852674246,-83.80355067551136 +2019-11-01 21:03:18,67.0,21331.91,253.6,9.2,0.0,144.0,504977656.0,-999812010.0,,2019-11-01 21:03:18,42.32673816382885,-83.80327457562089 +2019-11-01 21:03:23,72.0,21379.75,252.4,9.732000000000001,0.0,141.0,504973411.0,-999808630.0,,2019-11-01 21:03:23,42.32638235203922,-83.80299126729369 +2019-11-01 21:03:24,72.0,21389.7,252.20000000000005,9.956,0.0,141.0,504972228.0,-999807934.0,,2019-11-01 21:03:24,42.3262831941247,-83.80293292924762 +2019-11-01 21:03:30,74.0,21450.42,249.4,10.236,0.0,138.0,504966089.0,-999805105.0,,2019-11-01 21:03:30,42.325768629089,-83.8026958052069 +2019-11-01 21:03:33,75.0,21481.46,248.4,10.432,0.0,136.0,504962933.0,-999803526.0,,2019-11-01 21:03:33,42.325504096224904,-83.80256345495582 +2019-11-01 21:03:36,78.0,21513.37,247.0,10.712,0.0,135.0,504960042.0,-999801589.0,,2019-11-01 21:03:36,42.325261775404215,-83.80240109749138 +2019-11-01 21:03:41,77.0,21566.41,244.79999999999995,10.655999999999999,0.0,134.0,504955423.0,-999796833.0,,2019-11-01 21:03:41,42.32487461529672,-83.80200245417655 +2019-11-01 21:03:47,79.0,21629.83,243.0,10.068,0.0,133.0,504950816.0,-999790008.0,,2019-11-01 21:03:47,42.32448846101761,-83.80143038928509 +2019-11-01 21:03:53,74.0,21690.76,241.4,9.797,0.0,132.0,504946494.0,-999783311.0,,2019-11-01 21:03:53,42.324126195162535,-83.80086905322969 +2019-11-01 21:03:54,78.0,21700.51,241.4,9.751,0.0,132.0,504945805.0,-999782212.0,,2019-11-01 21:03:54,42.32406844384968,-83.80077693611383 +2019-11-01 21:04:01,88.0,21766.36,240.0,9.068999999999999,0.0,130.0,504941046.0,-999775052.0,,2019-11-01 21:04:01,42.32366954907775,-83.80017679184675 +2019-11-01 21:04:02,86.0,21775.32,239.79999999999995,8.957,0.0,130.0,504940401.0,-999774073.0,,2019-11-01 21:04:02,42.32361548580229,-83.8000947330147 +2019-11-01 21:04:09,79.0,21836.11,238.4,8.37,0.0,129.0,504935981.0,-999767390.0,,2019-11-01 21:04:09,42.32324500568211,-83.79953457042575 +2019-11-01 21:04:11,80.0,21852.82,238.4,8.342,0.0,129.0,504934725.0,-999765258.0,,2019-11-01 21:04:11,42.323139728978276,-83.79935586825013 +2019-11-01 21:04:19,78.0,21918.43,240.0,8.211,0.0,130.0,504930461.0,-999757900.0,,2019-11-01 21:04:19,42.32278232462704,-83.79873912781477 +2019-11-01 21:04:27,87.0,21980.42,241.4,7.053999999999999,0.0,131.0,504926823.0,-999750453.0,,2019-11-01 21:04:27,42.32247739098966,-83.79811492748559 +2019-11-01 21:04:32,82.0,22012.76,241.79999999999995,6.196000000000001,0.0,134.0,504924746.0,-999746121.0,,2019-11-01 21:04:32,42.32230329886079,-83.7977518234402 +2019-11-01 21:04:33,81.0,22019.02,241.79999999999995,6.252000000000001,0.0,134.0,504924351.0,-999745361.0,,2019-11-01 21:04:33,42.32227019034326,-83.79768812097609 +2019-11-01 21:04:39,79.0,22056.3,242.79999999999995,6.121,0.0,135.0,504921906.0,-999741393.0,,2019-11-01 21:04:39,42.32206525281072,-83.79735552705824 +2019-11-01 21:04:46,81.0,22099.55,244.0,6.186,0.0,137.0,504918296.0,-999737210.0,,2019-11-01 21:04:46,42.321762666106224,-83.79700491204858 +2019-11-01 21:04:47,81.0,22105.72,244.0,6.167999999999999,0.0,137.0,504917852.0,-999736838.0,,2019-11-01 21:04:47,42.32172545045614,-83.79697373136878 +2019-11-01 21:04:56,72.0,22163.51,244.20000000000005,6.792999999999999,0.0,137.0,504912417.0,-999733352.0,,2019-11-01 21:04:56,42.32126989401877,-83.79668153822422 +2019-11-01 21:05:03,75.0,22215.47,242.79999999999995,7.922000000000001,0.0,136.0,504907406.0,-999730735.0,,2019-11-01 21:05:03,42.32084987685084,-83.79646218381822 +2019-11-01 21:05:09,67.0,22266.06,241.20000000000005,8.64,0.0,134.0,504902356.0,-999728826.0,,2019-11-01 21:05:09,42.32042659074068,-83.79630217328668 +2019-11-01 21:05:15,70.0,22317.02,238.6,8.164,0.0,132.0,504896880.0,-999727194.0,,2019-11-01 21:05:15,42.31996759772301,-83.79616538062692 +2019-11-01 21:05:23,76.0,22380.8,237.79999999999995,7.8660000000000005,0.0,133.0,504890011.0,-999724495.0,,2019-11-01 21:05:23,42.319391844794154,-83.79593915306032 +2019-11-01 21:05:25,74.0,22396.22,237.79999999999995,7.651,0.0,133.0,504888576.0,-999723908.0,,2019-11-01 21:05:25,42.31927156448364,-83.7958899512887 +2019-11-01 21:05:32,72.0,22450.05,237.4,7.622999999999999,0.0,131.0,504883054.0,-999721880.0,,2019-11-01 21:05:32,42.31880871579051,-83.79571996629238 +2019-11-01 21:05:41,78.0,22516.19,234.20000000000005,7.362,0.0,129.0,504876134.0,-999719369.0,,2019-11-01 21:05:41,42.31822868809104,-83.79550949670374 +2019-11-01 21:05:49,73.0,22579.13,234.6,7.978,0.0,127.0,504869695.0,-999716901.0,,2019-11-01 21:05:49,42.317688977345824,-83.79530263133347 +2019-11-01 21:05:51,76.0,22594.91,235.20000000000005,7.894,0.0,127.0,504868115.0,-999716186.0,,2019-11-01 21:05:51,42.317556543275714,-83.7952427007258 +2019-11-01 21:05:52,75.0,22602.86,235.6,7.95,0.0,127.0,504867295.0,-999715921.0,,2019-11-01 21:05:52,42.31748781166971,-83.79522048868239 +2019-11-01 21:05:56,76.0,22634.87,236.20000000000005,8.099,0.0,127.0,504864006.0,-999714891.0,,2019-11-01 21:05:56,42.317212130874395,-83.79513415507972 +2019-11-01 21:06:03,78.0,22691.2,234.4,8.062000000000001,0.0,128.0,504858219.0,-999712994.0,,2019-11-01 21:06:03,42.31672707013786,-83.79497515037656 +2019-11-01 21:06:11,77.0,22755.39,232.79999999999995,8.118,0.0,127.0,504851516.0,-999710665.0,,2019-11-01 21:06:11,42.31616523116827,-83.7947799358517 +2019-11-01 21:06:18,80.0,22812.55,232.0,8.267000000000001,0.0,129.0,504845709.0,-999708619.0,,2019-11-01 21:06:18,42.3156784940511,-83.7946084421128 +2019-11-01 21:06:25,78.0,22870.09,232.6,8.118,0.0,128.0,504839544.0,-999706245.0,,2019-11-01 21:06:25,42.31516174972057,-83.79440945573151 +2019-11-01 21:06:33,78.0,22935.1,236.20000000000005,8.052,0.0,127.0,504832554.0,-999703862.0,,2019-11-01 21:06:33,42.31457585468888,-83.79420971497893 +2019-11-01 21:06:34,78.0,22943.1,236.4,7.996,0.0,128.0,504831691.0,-999703607.0,,2019-11-01 21:06:34,42.31450351886451,-83.79418834112585 +2019-11-01 21:06:42,76.0,23006.44,237.79999999999995,7.8660000000000005,0.0,128.0,504824985.0,-999701276.0,,2019-11-01 21:06:42,42.31394142843783,-83.79399295896292 +2019-11-01 21:06:43,75.0,23014.39,238.0,7.95,0.0,128.0,504824163.0,-999700965.0,,2019-11-01 21:06:43,42.31387252919376,-83.79396689124405 +2019-11-01 21:06:49,81.0,23061.06,240.6,7.726,0.0,129.0,504819495.0,-999698149.0,,2019-11-01 21:06:49,42.31348126195371,-83.79373085685074 +2019-11-01 21:06:54,81.0,23099.06,242.79999999999995,7.622999999999999,0.0,130.0,504815940.0,-999695126.0,,2019-11-01 21:06:54,42.31318328529596,-83.79347747191787 +2019-11-01 21:06:55,81.0,23106.68,243.4,7.622999999999999,0.0,130.0,504815318.0,-999694458.0,,2019-11-01 21:06:55,42.313131149858236,-83.79342148080468 +2019-11-01 21:07:03,81.0,23167.44,246.20000000000005,7.622999999999999,0.0,131.0,504810510.0,-999688253.0,,2019-11-01 21:07:03,42.31272814795375,-83.79290138371289 +2019-11-01 21:07:10,82.0,23221.08,247.0,7.67,0.0,131.0,504807468.0,-999682053.0,,2019-11-01 21:07:10,42.31247317045927,-83.79238170571625 +2019-11-01 21:07:11,82.0,23228.7,247.0,7.622999999999999,0.0,131.0,504807144.0,-999681117.0,,2019-11-01 21:07:11,42.312446013092995,-83.79230325110257 +2019-11-01 21:07:13,80.0,23243.62,246.4,7.474,0.0,131.0,504806545.0,-999679118.0,,2019-11-01 21:07:13,42.312395805493,-83.79213569685817 +2019-11-01 21:07:17,77.0,23273.13,245.20000000000005,7.269,0.0,130.0,504805754.0,-999675036.0,,2019-11-01 21:07:17,42.31232950463891,-83.7917935475707 +2019-11-01 21:07:21,83.0,23301.49,244.4,7.035,0.0,129.0,504805284.0,-999671093.0,,2019-11-01 21:07:21,42.312290109694004,-83.79146304912865 +2019-11-01 21:07:24,83.0,23322.8,243.79999999999995,7.147,0.0,129.0,504805203.0,-999667959.0,,2019-11-01 21:07:24,42.312283320352435,-83.79120036028326 +2019-11-01 21:07:26,83.0,23337.25,243.4,7.222,0.0,129.0,504805156.0,-999666081.0,,2019-11-01 21:07:26,42.312279380857944,-83.7910429481417 +2019-11-01 21:07:28,79.0,23352.39,243.20000000000005,7.642,0.0,130.0,504805457.0,-999664121.0,,2019-11-01 21:07:28,42.31230461038649,-83.79087866283953 +2019-11-01 21:07:32,84.0,23383.55,243.0,7.782,0.0,130.0,504806536.0,-999659989.0,,2019-11-01 21:07:32,42.31239505112171,-83.79053232260048 +2019-11-01 21:07:35,83.0,23406.7,243.20000000000005,7.754,0.0,131.0,504807509.0,-999656785.0,,2019-11-01 21:07:35,42.31247660703957,-83.79026376642287 +2019-11-01 21:07:42,84.0,23461.51,246.0,7.95,0.0,130.0,504809963.0,-999649676.0,,2019-11-01 21:07:42,42.3126822989434,-83.7896678969264 +2019-11-01 21:07:49,82.0,23516.37,247.4,7.642,0.0,130.0,504813243.0,-999642997.0,,2019-11-01 21:07:49,42.31295722536743,-83.78910806961358 +2019-11-01 21:07:50,82.0,23524.13,247.6,7.754,0.0,130.0,504813724.0,-999642232.0,,2019-11-01 21:07:50,42.31299754232168,-83.78904394805431 +2019-11-01 21:07:55,83.0,23563.38,247.6,7.754,0.0,129.0,504816604.0,-999637005.0,,2019-11-01 21:07:55,42.31323894113302,-83.78860582597554 +2019-11-01 21:08:01,79.0,23609.18,247.20000000000005,7.437,0.0,129.0,504819298.0,-999631654.0,,2019-11-01 21:08:01,42.313464749604464,-83.78815731033683 +2019-11-01 21:08:09,88.0,23668.61,247.0,7.455,0.0,128.0,504822779.0,-999624724.0,,2019-11-01 21:08:09,42.313756523653865,-83.78757644444704 +2019-11-01 21:08:16,81.0,23721.56,247.4,7.642,0.0,128.0,504825515.0,-999618420.0,,2019-11-01 21:08:16,42.31398585252464,-83.7870480492711 +2019-11-01 21:08:22,78.0,23766.97,247.6,7.586,0.0,128.0,504827699.0,-999612913.0,,2019-11-01 21:08:22,42.314168913289905,-83.78658645786345 +2019-11-01 21:08:29,83.0,23820.26,248.79999999999995,7.595,0.0,128.0,504830320.0,-999605908.0,,2019-11-01 21:08:29,42.31438860297203,-83.78599930554628 +2019-11-01 21:08:37,79.0,23881.01,248.79999999999995,7.539,0.0,129.0,504833215.0,-999598090.0,,2019-11-01 21:08:37,42.31463125906885,-83.78534400835633 +2019-11-01 21:08:44,80.0,23933.38,250.0,7.417999999999999,0.0,130.0,504835476.0,-999591450.0,,2019-11-01 21:08:44,42.314820773899555,-83.78478744998574 +2019-11-01 21:08:51,79.0,23985.32,251.4,7.492999999999999,0.0,129.0,504837794.0,-999584530.0,,2019-11-01 21:08:51,42.31501506641507,-83.78420742228627 +2019-11-01 21:08:58,81.0,24038.64,253.6,7.726,0.0,128.0,504839913.0,-999577559.0,,2019-11-01 21:08:58,42.315192678943276,-83.78362311981618 +2019-11-01 21:09:04,84.0,24085.04,254.6,7.81,0.0,128.0,504841447.0,-999571380.0,,2019-11-01 21:09:04,42.31532125733793,-83.78310520201921 +2019-11-01 21:09:06,83.0,24100.69,254.4,7.837999999999999,0.0,129.0,504842138.0,-999569164.0,,2019-11-01 21:09:06,42.31537917628884,-83.78291945904493 +2019-11-01 21:09:09,83.0,24123.85,254.20000000000005,7.67,0.0,129.0,504842725.0,-999565626.0,,2019-11-01 21:09:09,42.31542837806046,-83.78262290731072 +2019-11-01 21:09:12,80.0,24146.63,253.4,7.595,0.0,129.0,504843217.0,-999562423.0,,2019-11-01 21:09:12,42.315469617024064,-83.78235443495214 +2019-11-01 21:09:17,82.0,24185.19,251.79999999999995,7.922000000000001,0.0,130.0,504844105.0,-999556739.0,,2019-11-01 21:09:17,42.31554404832423,-83.78187800757587 +2019-11-01 21:09:23,83.0,24232.21,251.6,7.716,0.0,132.0,504844707.0,-999549476.0,,2019-11-01 21:09:23,42.31559450738132,-83.78126922994852 +2019-11-01 21:09:30,80.0,24285.56,252.6,7.483,0.0,133.0,504845754.0,-999542075.0,,2019-11-01 21:09:30,42.315682265907526,-83.7806488852948 +2019-11-01 21:09:37,81.0,24338.74,253.4,7.8,0.0,135.0,504846743.0,-999534541.0,,2019-11-01 21:09:37,42.31576516292989,-83.78001739270985 +2019-11-01 21:09:44,78.0,24395.89,252.20000000000005,8.463,0.0,137.0,504848124.0,-999526782.0,,2019-11-01 21:09:44,42.31588091701269,-83.77936704084277 +2019-11-01 21:09:51,81.0,24455.01,250.6,8.332,0.0,136.0,504849732.0,-999518280.0,,2019-11-01 21:09:51,42.31601569801569,-83.77865441143513 +2019-11-01 21:09:57,81.0,24500.01,250.20000000000005,6.895,0.0,136.0,504851212.0,-999511411.0,,2019-11-01 21:09:57,42.31613975018263,-83.77807865850627 +2019-11-01 21:10:03,79.0,24540.12,249.6,6.765,0.0,135.0,504852184.0,-999505810.0,,2019-11-01 21:10:03,42.316221222281456,-83.77760918810964 +2019-11-01 21:10:12,83.0,24598.4,249.79999999999995,6.41,0.0,134.0,504853054.0,-999497588.0,,2019-11-01 21:10:12,42.31629414483905,-83.77692002803087 +2019-11-01 21:10:19,84.0,24643.91,249.6,6.502999999999999,0.0,133.0,504853474.0,-999491153.0,,2019-11-01 21:10:19,42.31632934883237,-83.77638065256178 +2019-11-01 21:10:28,79.0,24699.54,249.0,6.224,0.0,133.0,504854003.0,-999482970.0,,2019-11-01 21:10:28,42.316373689100146,-83.77569476142526 +2019-11-01 21:10:38,77.0,24761.65,247.6,5.952999999999999,0.0,133.0,504854644.0,-999474045.0,,2019-11-01 21:10:38,42.316427417099476,-83.7749466765672 +2019-11-01 21:10:48,77.0,24821.7,245.6,5.888,0.0,133.0,504854911.0,-999465593.0,,2019-11-01 21:10:48,42.316449796780944,-83.77423823811114 +2019-11-01 21:10:50,78.0,24833.9,245.4,6.102,0.0,132.0,504854987.0,-999463915.0,,2019-11-01 21:10:50,42.316456167027354,-83.77409758977592 +2019-11-01 21:10:57,77.0,24879.15,244.6,6.886,0.0,133.0,504855220.0,-999457673.0,,2019-11-01 21:10:57,42.316475696861744,-83.77357439137995 +2019-11-01 21:11:03,80.0,24923.57,243.79999999999995,7.763,0.0,132.0,504855343.0,-999451358.0,,2019-11-01 21:11:03,42.316486006602645,-83.77304507419467 +2019-11-01 21:11:10,78.0,24980.2,242.79999999999995,8.295,0.0,131.0,504855529.0,-999443162.0,,2019-11-01 21:11:10,42.316501596942544,-83.77235809341073 +2019-11-01 21:11:17,79.0,25038.8,243.0,8.426,0.0,129.0,504855301.0,-999434310.0,,2019-11-01 21:11:17,42.31648248620331,-83.77161612734199 +2019-11-01 21:11:24,78.0,25097.01,243.79999999999995,8.052,0.0,130.0,504854768.0,-999425946.0,,2019-11-01 21:11:24,42.31643781065941,-83.77091506496072 +2019-11-01 21:11:30,73.0,25143.64,244.4,7.558,0.0,130.0,504853962.0,-999419027.0,,2019-11-01 21:11:30,42.316370252519846,-83.77033512108028 +2019-11-01 21:11:37,77.0,25194.66,244.6,7.4270000000000005,0.0,128.0,504852963.0,-999411768.0,,2019-11-01 21:11:37,42.31628651730716,-83.76972667872906 +2019-11-01 21:11:44,80.0,25247.39,244.6,7.4270000000000005,0.0,129.0,504851813.0,-999404423.0,,2019-11-01 21:11:44,42.31619012542069,-83.76911102794111 +2019-11-01 21:11:53,78.0,25314.24,244.6,7.353,0.0,129.0,504849744.0,-999395166.0,,2019-11-01 21:11:53,42.31601670384407,-83.76833511516452 +2019-11-01 21:11:55,76.0,25328.59,244.6,7.119,0.0,129.0,504849242.0,-999393186.0,,2019-11-01 21:11:55,42.31597462669015,-83.76816915348172 +2019-11-01 21:12:01,79.0,25369.38,244.6,6.709,0.0,130.0,504847688.0,-999387685.0,,2019-11-01 21:12:01,42.315844371914864,-83.76770806498826 +2019-11-01 21:12:02,79.0,25376.17,244.6,6.792999999999999,0.0,130.0,504847384.0,-999386812.0,,2019-11-01 21:12:02,42.31581889092922,-83.76763489097357 +2019-11-01 21:12:07,77.0,25409.53,244.0,6.55,0.0,130.0,504845853.0,-999382590.0,,2019-11-01 21:12:07,42.315690563991666,-83.76728100702167 +2019-11-01 21:12:14,76.0,25455.71,243.6,6.531000000000001,0.0,132.0,504843637.0,-999376656.0,,2019-11-01 21:12:14,42.315504821017385,-83.76678362488747 +2019-11-01 21:12:23,78.0,25515.17,244.6,6.671,0.0,133.0,504840596.0,-999369155.0,,2019-11-01 21:12:23,42.31524992734194,-83.76615489833057 +2019-11-01 21:12:29,80.0,25556.19,245.4,6.989,0.0,134.0,504838347.0,-999364407.0,,2019-11-01 21:12:29,42.31506141833961,-83.76575692556798 +2019-11-01 21:12:37,77.0,25613.67,245.0,7.2410000000000005,0.0,134.0,504834459.0,-999357685.0,,2019-11-01 21:12:37,42.3147355299443,-83.7651934940368 +2019-11-01 21:12:45,86.0,25675.49,245.0,8.314,0.0,132.0,504830481.0,-999351209.0,,2019-11-01 21:12:45,42.31440209783614,-83.7646506819874 +2019-11-01 21:12:48,84.0,25701.79,244.20000000000005,8.985,0.0,131.0,504828700.0,-999348578.0,,2019-11-01 21:12:48,42.31425281614065,-83.76443015411496 +2019-11-01 21:12:54,78.0,25757.19,242.0,9.237,0.0,131.0,504824593.0,-999342568.0,,2019-11-01 21:12:54,42.3139085713774,-83.76392640173435 +2019-11-01 21:13:01,73.0,25815.01,240.79999999999995,7.446000000000001,0.0,130.0,504819980.0,-999336130.0,,2019-11-01 21:13:01,42.31352191418409,-83.76338677480817 +2019-11-01 21:13:08,73.0,25863.93,242.6,7.0729999999999995,0.0,129.0,504816071.0,-999331058.0,,2019-11-01 21:13:08,42.31319426558912,-83.76296164467931 +2019-11-01 21:13:16,78.0,25922.46,244.20000000000005,7.558,0.0,130.0,504811531.0,-999325169.0,,2019-11-01 21:13:16,42.31281372718513,-83.76246803440154 +2019-11-01 21:13:24,85.0,25985.11,243.79999999999995,8.107999999999999,0.0,130.0,504806758.0,-999318971.0,,2019-11-01 21:13:24,42.31241365894675,-83.76194852404296 +2019-11-01 21:13:27,75.0,26009.61,243.4,8.192,0.0,128.0,504804889.0,-999316502.0,,2019-11-01 21:13:27,42.31225700117648,-83.76174157485366 +2019-11-01 21:13:32,77.0,26050.32,243.20000000000005,8.164,0.0,125.0,504801914.0,-999312299.0,,2019-11-01 21:13:32,42.31200763955712,-83.76138928346336 +2019-11-01 21:13:34,76.0,26066.53,243.0,8.099,0.0,125.0,504800688.0,-999310532.0,,2019-11-01 21:13:34,42.31190487742424,-83.76124117523432 +2019-11-01 21:13:42,82.0,26134.42,242.4,8.743,0.0,125.0,504795810.0,-999303361.0,,2019-11-01 21:13:42,42.31149600818753,-83.76064010895789 +2019-11-01 21:13:44,82.0,26151.93,242.4,8.771,0.0,126.0,504794654.0,-999301573.0,,2019-11-01 21:13:44,42.31139911338687,-83.76049024052918 +2019-11-01 21:13:51,82.0,26213.22,241.79999999999995,8.687000000000001,0.0,127.0,504790470.0,-999294801.0,,2019-11-01 21:13:51,42.31104841455817,-83.7599226180464 +2019-11-01 21:13:53,82.0,26230.48,241.4,8.612,0.0,126.0,504789253.0,-999292865.0,,2019-11-01 21:13:53,42.310946406796575,-83.759760344401 +2019-11-01 21:14:00,82.0,26290.5,240.79999999999995,8.668,0.0,127.0,504784852.0,-999286512.0,,2019-11-01 21:14:00,42.310577519237995,-83.75922784209251 +2019-11-01 21:14:02,80.0,26307.87,240.79999999999995,8.594,0.0,127.0,504783617.0,-999284612.0,,2019-11-01 21:14:02,42.31047400273383,-83.75906858593225 +2019-11-01 21:14:10,82.0,26375.99,240.6,8.696,0.0,129.0,504778870.0,-999277194.0,,2019-11-01 21:14:10,42.310076113790274,-83.75844681635499 +2019-11-01 21:14:13,82.0,26402.41,240.4,8.948,0.0,129.0,504776940.0,-999274471.0,,2019-11-01 21:14:13,42.30991434305906,-83.75821857713163 +2019-11-01 21:14:20,85.0,26464.63,239.6,8.668,0.0,128.0,504771934.0,-999268557.0,,2019-11-01 21:14:20,42.309494744986296,-83.75772287137806 +2019-11-01 21:14:23,82.0,26490.3,239.20000000000005,8.435,0.0,128.0,504769680.0,-999266832.0,,2019-11-01 21:14:23,42.30930581688881,-83.75757828354836 +2019-11-01 21:14:25,78.0,26506.76,238.6,8.183,0.0,128.0,504768108.0,-999265972.0,,2019-11-01 21:14:25,42.30917405337095,-83.75750619918108 +2019-11-01 21:14:30,77.0,26547.05,236.6,7.978,0.0,127.0,504763899.0,-999264495.0,,2019-11-01 21:14:30,42.30882125906646,-83.75738239847124 +2019-11-01 21:14:36,72.0,26592.33,235.0,6.056,0.0,127.0,504758855.0,-999264197.0,,2019-11-01 21:14:36,42.30839847587049,-83.75735742039979 +2019-11-01 21:14:37,72.0,26597.64,234.79999999999995,5.309,0.0,128.0,504758215.0,-999264290.0,,2019-11-01 21:14:37,42.30834483169019,-83.75736521556973 +2019-11-01 21:14:38,72.0,26602.53,234.79999999999995,4.888999999999999,0.0,128.0,504757728.0,-999264491.0,,2019-11-01 21:14:38,42.30830401182175,-83.75738206319511 +2019-11-01 21:14:40,13.0,26610.79,234.6,3.872,0.0,129.0,504757226.0,-999265265.0,,2019-11-01 21:14:40,42.308261934667826,-83.75744693912566 +2019-11-01 21:14:44,60.0,26624.76,234.20000000000005,3.49,0.0,128.0,504757202.0,-999266692.0,,2019-11-01 21:14:44,42.308259923011065,-83.75756654888391 +2019-11-01 21:14:50,53.0,26644.17,234.79999999999995,3.1260000000000003,0.0,129.0,504757200.0,-999268849.0,,2019-11-01 21:14:50,42.308259755373,-83.75774734653533 +2019-11-01 21:14:53,55.0,26653.37,235.4,3.042,0.0,132.0,504757309.0,-999269969.0,,2019-11-01 21:14:53,42.30826889164746,-83.75784122385085 +2019-11-01 21:14:55,49.0,26659.42,235.79999999999995,2.958,0.0,134.0,504757420.0,-999270654.0,,2019-11-01 21:14:55,42.30827819555998,-83.75789863988757 +2019-11-01 21:14:59,46.0,26670.69,239.20000000000005,2.725,0.0,137.0,504757574.0,-999271910.0,,2019-11-01 21:14:59,42.30829110369086,-83.7580039165914 +2019-11-01 21:15:01,47.0,26676.32,240.79999999999995,2.8739999999999997,0.0,139.0,504757555.0,-999272573.0,,2019-11-01 21:15:01,42.30828951112926,-83.75805948860943 +2019-11-01 21:15:04,42.0,26684.56,242.20000000000005,2.818,0.0,142.0,504757577.0,-999273947.0,,2019-11-01 21:15:04,42.30829135514796,-83.75817465595901 +2019-11-01 21:15:05,47.0,26687.37,242.79999999999995,2.8089999999999997,0.0,144.0,504757492.0,-999274298.0,,2019-11-01 21:15:05,42.30828423053026,-83.75820407643914 +2019-11-01 21:15:07,52.0,26693.22,244.6,2.948,0.0,146.0,504757165.0,-999275069.0,,2019-11-01 21:15:07,42.30825682170689,-83.7582687009126 +2019-11-01 21:15:12,51.0,26708.38,246.79999999999995,3.1260000000000003,0.0,149.0,504756933.0,-999277361.0,,2019-11-01 21:15:12,42.30823737569153,-83.75846081413329 +2019-11-01 21:15:15,52.0,26717.37,247.6,2.855,0.0,151.0,504756773.0,-999278791.0,,2019-11-01 21:15:15,42.30822396464646,-83.75858067534864 +2019-11-01 21:15:17,30.0,26722.67,248.79999999999995,2.622,0.0,152.0,504756989.0,-999279602.0,,2019-11-01 21:15:17,42.30824206955731,-83.75864865258336 +2019-11-01 21:15:21,48.0,26733.93,251.20000000000005,3.2,0.0,154.0,504757034.0,-999281752.0,,2019-11-01 21:15:21,42.308245841413736,-83.75882886350155 +2019-11-01 21:15:24,57.0,26747.19,252.4,5.151,0.0,153.0,504757248.0,-999283747.0,,2019-11-01 21:15:24,42.30826377868652,-83.75899608246982 +2019-11-01 21:15:26,62.0,26759.24,253.4,6.364,0.0,153.0,504757143.0,-999285492.0,,2019-11-01 21:15:26,42.30825497768819,-83.75914234668016 +2019-11-01 21:15:30,0.0,26787.79,254.79999999999995,7.194,0.0,148.0,504757100.0,-999290109.0,,2019-11-01 21:15:30,42.30825137346983,-83.7595293391496 +2019-11-01 21:15:31,0.0,26795.03,255.0,7.2410000000000005,0.0,148.0,504756900.0,-999291445.0,,2019-11-01 21:15:31,42.30823460966349,-83.75964132137597 +2019-11-01 21:15:34,0.0,26816.18,255.6,6.737,0.0,146.0,504756612.0,-999294482.0,,2019-11-01 21:15:34,42.30821046978235,-83.75989587977529 +2019-11-01 21:15:36,86.0,26828.9,255.6,6.289,0.0,144.0,504756606.0,-999296369.0,,2019-11-01 21:15:36,42.30820996686816,-83.76005404628813 +2019-11-01 21:15:39,68.0,26845.14,255.6,5.02,0.0,141.0,504756454.0,-999298601.0,,2019-11-01 21:15:39,42.30819722637534,-83.76024113036692 +2019-11-01 21:15:40,68.0,26849.75,255.20000000000005,4.609,0.0,142.0,504756434.0,-999299223.0,,2019-11-01 21:15:40,42.30819554999471,-83.76029326580465 +2019-11-01 21:15:44,54.0,26866.83,252.20000000000005,4.133,0.0,142.0,504756321.0,-999300749.0,,2019-11-01 21:15:44,42.30818607844412,-83.76042117364705 +2019-11-01 21:15:48,48.0,26881.89,250.20000000000005,3.592,0.0,143.0,504756360.0,-999302198.0,,2019-11-01 21:15:48,42.30818934738636,-83.760542627424 +2019-11-01 21:15:50,47.0,26889.04,249.4,3.63,0.0,145.0,504756422.0,-999302921.0,,2019-11-01 21:15:50,42.30819454416633,-83.76060322858393 +2019-11-01 21:15:54,46.0,26903.1,248.4,3.322,0.0,148.0,504756524.0,-999305192.0,,2019-11-01 21:15:54,42.30820309370756,-83.76079358160496 +2019-11-01 21:15:56,43.0,26909.58,248.20000000000005,3.1910000000000003,0.0,149.0,504756511.0,-999306060.0,,2019-11-01 21:15:56,42.30820200406015,-83.76086633652449 +2019-11-01 21:16:00,41.0,26921.47,248.20000000000005,2.3890000000000002,0.0,152.0,504756436.0,-999307821.0,,2019-11-01 21:16:00,42.30819571763277,-83.76101394183934 +2019-11-01 21:16:04,44.0,26930.69,249.20000000000005,2.79,0.0,154.0,504756440.0,-999309600.0,,2019-11-01 21:16:04,42.3081960529089,-83.76116305589676 +2019-11-01 21:16:09,46.0,26945.01,251.79999999999995,2.781,0.0,156.0,504756014.0,-999311149.0,,2019-11-01 21:16:09,42.30816034600139,-83.76129289157689 +2019-11-01 21:16:10,50.0,26948.03,252.6,3.023,0.0,156.0,504756052.0,-999311494.0,,2019-11-01 21:16:10,42.30816353112459,-83.76132180914283 +2019-11-01 21:16:16,54.0,26966.12,255.0,3.032,0.0,157.0,504755788.0,-999314617.0,,2019-11-01 21:16:16,42.30814140290022,-83.76158357597888 +2019-11-01 21:16:23,47.0,26984.49,255.79999999999995,2.351,0.0,158.0,504756331.0,-999317675.0,,2019-11-01 21:16:23,42.30818691663444,-83.76183989457786 +2019-11-01 21:16:29,58.0,26997.57,256.79999999999995,2.37,0.0,157.0,504756067.0,-999319242.0,,2019-11-01 21:16:29,42.30816478841007,-83.76197123900056 +2019-11-01 21:16:30,58.0,26999.93,257.20000000000005,2.3609999999999998,0.0,156.0,504755841.0,-999319553.0,,2019-11-01 21:16:30,42.3081458453089,-83.76199730671942 +2019-11-01 21:16:36,63.0,27015.08,259.4,2.659,0.0,153.0,504756127.0,-999322619.0,,2019-11-01 21:16:36,42.30816981755197,-83.76225429587066 +2019-11-01 21:16:42,69.0,27031.85,261.20000000000005,2.79,0.0,150.0,504755781.0,-999325268.0,,2019-11-01 21:16:42,42.308140816167,-83.76247633248568 +2019-11-01 21:16:48,68.0,27048.97,262.79999999999995,2.7710000000000004,0.0,148.0,504756135.0,-999327468.0,,2019-11-01 21:16:48,42.308170488104224,-83.76266073435545 +2019-11-01 21:16:54,66.0,27065.46,262.4,2.7430000000000003,0.0,145.0,504755940.0,-999329550.0,,2019-11-01 21:16:54,42.30815414339304,-83.76283524557948 +2019-11-01 21:16:56,66.0,27070.84,262.20000000000005,2.659,0.0,145.0,504755862.0,-999330295.0,,2019-11-01 21:16:56,42.308147605508566,-83.76289769075811 +2019-11-01 21:17:01,68.0,27084.42,262.79999999999995,2.753,0.0,142.0,504755506.0,-999332766.0,,2019-11-01 21:17:01,42.308117765933275,-83.76310480758548 +2019-11-01 21:17:04,62.0,27092.3,263.0,2.557,0.0,141.0,504755511.0,-999333688.0,,2019-11-01 21:17:04,42.308118185028434,-83.76318208873272 +2019-11-01 21:17:11,67.0,27110.94,263.0,2.7060000000000004,0.0,139.0,504755449.0,-999336499.0,,2019-11-01 21:17:11,42.30811298824847,-83.76341770403087 +2019-11-01 21:17:19,67.0,27133.17,261.6,2.8089999999999997,0.0,135.0,504755299.0,-999339580.0,,2019-11-01 21:17:19,42.30810041539371,-83.76367595046759 +2019-11-01 21:17:21,68.0,27139.14,262.0,2.986,0.0,135.0,504755288.0,-999340012.0,,2019-11-01 21:17:21,42.30809949338436,-83.76371216028929 +2019-11-01 21:17:24,63.0,27148.04,264.0,3.135,0.0,133.0,504755245.0,-999340991.0,,2019-11-01 21:17:24,42.308095889166,-83.76379421912134 +2019-11-01 21:17:28,68.0,27161.43,266.20000000000005,3.3960000000000004,0.0,130.0,504755174.0,-999342585.0,,2019-11-01 21:17:28,42.308089938014746,-83.76392782665789 +2019-11-01 21:17:31,73.0,27171.91,266.79999999999995,3.555,0.0,130.0,504754882.0,-999344049.0,,2019-11-01 21:17:31,42.308065462857485,-83.76405053772032 +2019-11-01 21:17:36,72.0,27189.59,267.20000000000005,3.508,0.0,127.0,504754872.0,-999346327.0,,2019-11-01 21:17:36,42.30806462466717,-83.76424147747457 +2019-11-01 21:17:37,71.0,27193.1,267.4,3.508,0.0,126.0,504754857.0,-999346591.0,,2019-11-01 21:17:37,42.30806336738169,-83.76426360569894 +2019-11-01 21:17:43,70.0,27213.97,266.20000000000005,3.49,0.0,125.0,504754862.0,-999349843.0,,2019-11-01 21:17:43,42.30806378647685,-83.76453618519008 +2019-11-01 21:17:45,72.0,27220.98,266.0,3.5180000000000002,0.0,126.0,504754896.0,-999350848.0,,2019-11-01 21:17:45,42.30806663632393,-83.76462042331696 +2019-11-01 21:17:49,72.0,27235.16,266.0,3.49,0.0,125.0,504755288.0,-999353083.0,,2019-11-01 21:17:49,42.30809949338436,-83.76480775885284 +2019-11-01 21:17:56,71.0,27261.36,268.0,3.8539999999999996,0.0,124.0,504754842.0,-999357654.0,,2019-11-01 21:17:56,42.308062110096216,-83.76519089564681 +2019-11-01 21:18:03,73.0,27287.9,270.79999999999995,3.835,0.0,123.0,504754477.0,-999361479.0,,2019-11-01 21:18:03,42.30803151614964,-83.76551150344312 +2019-11-01 21:18:10,64.0,27312.83,272.79999999999995,3.135,0.0,125.0,504754744.0,-999365332.0,,2019-11-01 21:18:10,42.30805389583111,-83.76583445817232 +2019-11-01 21:18:17,68.0,27335.07,272.79999999999995,3.4619999999999997,0.0,126.0,504754407.0,-999369136.0,,2019-11-01 21:18:17,42.30802564881742,-83.76615330576897 +2019-11-01 21:18:18,73.0,27338.7,272.79999999999995,3.63,0.0,126.0,504754072.0,-999369402.0,,2019-11-01 21:18:18,42.307997569441795,-83.7661756016314 +2019-11-01 21:18:22,79.0,27354.03,271.79999999999995,3.9560000000000004,0.0,123.0,504752342.0,-999369363.0,,2019-11-01 21:18:22,42.30785256251693,-83.76617233268917 +2019-11-01 21:18:23,72.0,27358.0,271.4,3.966,0.0,123.0,504751963.0,-999369364.0,,2019-11-01 21:18:23,42.30782079510391,-83.7661724165082 +2019-11-01 21:18:31,72.0,27389.33,266.6,3.807,0.0,122.0,504749078.0,-999369129.0,,2019-11-01 21:18:31,42.30757897719741,-83.76615271903574 +2019-11-01 21:18:39,72.0,27419.6,264.4,3.835,0.0,122.0,504745981.0,-999368783.0,,2019-11-01 21:18:39,42.307319389656186,-83.76612371765077 +2019-11-01 21:18:45,68.0,27441.72,265.4,3.7039999999999997,0.0,122.0,504743690.0,-999368351.0,,2019-11-01 21:18:45,42.307127360254526,-83.76608750782907 +2019-11-01 21:18:48,75.0,27453.57,265.6,4.012,0.0,125.0,504742306.0,-999368590.0,,2019-11-01 21:18:48,42.30701135471463,-83.76610754057765 +2019-11-01 21:18:52,75.0,27468.18,265.6,3.536,0.0,126.0,504740775.0,-999368501.0,,2019-11-01 21:18:52,42.306883027777076,-83.76610008068383 +2019-11-01 21:18:59,64.0,27492.02,267.79999999999995,3.667,0.0,126.0,504737693.0,-999368727.0,,2019-11-01 21:18:59,42.30662469752133,-83.766119023785 +2019-11-01 21:19:05,72.0,27514.64,270.6,3.77,0.0,126.0,504734957.0,-999368611.0,,2019-11-01 21:19:05,42.306395368650556,-83.76610930077732 +2019-11-01 21:19:10,67.0,27532.78,274.79999999999995,3.536,0.0,126.0,504732960.0,-999368441.0,,2019-11-01 21:19:10,42.30622798204422,-83.76609505154192 +2019-11-01 21:19:19,66.0,27564.59,277.6,3.7510000000000003,0.0,125.0,504729956.0,-999368249.0,,2019-11-01 21:19:19,42.30597618967295,-83.76607895828784 +2019-11-01 21:19:24,86.0,27584.88,276.0,4.32,0.0,124.0,504728237.0,-999367990.0,,2019-11-01 21:19:24,42.30583210475743,-83.76605724915862 +2019-11-01 21:19:26,67.0,27593.87,274.4,4.572,0.0,124.0,504727314.0,-999367967.0,,2019-11-01 21:19:26,42.305754739791155,-83.76605532132089 +2019-11-01 21:19:30,71.0,27615.7,271.6,6.018,0.0,125.0,504725277.0,-999368192.0,,2019-11-01 21:19:30,42.30558400042355,-83.76607418060303 +2019-11-01 21:19:32,66.0,27628.56,270.0,6.615,0.0,124.0,504723964.0,-999368269.0,,2019-11-01 21:19:32,42.30547394603491,-83.76608063466847 +2019-11-01 21:19:34,61.0,27643.18,268.20000000000005,7.539,0.0,124.0,504722463.0,-999368338.0,,2019-11-01 21:19:34,42.3053481336683,-83.76608641818166 +2019-11-01 21:19:39,75.0,27684.22,264.4,8.304,0.0,124.0,504717789.0,-999368373.0,,2019-11-01 21:19:39,42.304956363514066,-83.76608935184777 +2019-11-01 21:19:47,80.0,27741.44,264.6,5.682,0.0,125.0,504711254.0,-999368481.0,,2019-11-01 21:19:47,42.304408606141806,-83.7660984043032 +2019-11-01 21:19:52,75.0,27766.7,267.0,4.7589999999999995,0.0,126.0,504708767.0,-999368410.0,,2019-11-01 21:19:52,42.30420014820993,-83.76609245315194 +2019-11-01 21:19:58,78.0,27792.23,266.79999999999995,4.189,0.0,127.0,504706524.0,-999368173.0,,2019-11-01 21:19:58,42.30401214212179,-83.76607258804142 +2019-11-01 21:20:03,76.0,27812.62,265.79999999999995,4.04,0.0,128.0,504704606.0,-999368178.0,,2019-11-01 21:20:03,42.30385137721896,-83.76607300713658 +2019-11-01 21:20:09,74.0,27836.58,264.20000000000005,3.975,0.0,131.0,504702148.0,-999368097.0,,2019-11-01 21:20:09,42.303645350039005,-83.76606621779501 +2019-11-01 21:20:10,74.0,27840.6,264.20000000000005,4.022,0.0,131.0,504701772.0,-999368045.0,,2019-11-01 21:20:10,42.30361383408308,-83.76606185920537 +2019-11-01 21:20:15,73.0,27858.99,265.4,3.5460000000000003,0.0,134.0,504699587.0,-999368037.0,,2019-11-01 21:20:15,42.30343068949878,-83.76606118865311 +2019-11-01 21:20:17,72.0,27866.1,267.20000000000005,3.555,0.0,134.0,504698863.0,-999367935.0,,2019-11-01 21:20:17,42.30337000451982,-83.76605263911188 +2019-11-01 21:20:24,73.0,27891.75,270.6,3.536,0.0,137.0,504695970.0,-999367725.0,,2019-11-01 21:20:24,42.30312751606107,-83.76603503711522 +2019-11-01 21:20:26,70.0,27898.55,272.0,3.219,0.0,137.0,504695054.0,-999367630.0,,2019-11-01 21:20:26,42.303050737828016,-83.7660270743072 +2019-11-01 21:20:33,73.0,27919.68,279.20000000000005,3.014,0.0,139.0,504692330.0,-999368124.0,,2019-11-01 21:20:33,42.30282241478562,-83.76606848090887 +2019-11-01 21:20:44,76.0,27953.52,282.0,3.116,0.0,139.0,504688710.0,-999367959.0,,2019-11-01 21:20:44,42.302518989890814,-83.76605465076864 +2019-11-01 21:20:51,77.0,27975.34,282.4,3.1630000000000003,0.0,139.0,504686620.0,-999367698.0,,2019-11-01 21:20:51,42.30234380811453,-83.76603277400136 +2019-11-01 21:21:01,76.0,28006.51,280.0,3.07,0.0,140.0,504683399.0,-999367786.0,,2019-11-01 21:21:01,42.30207382701337,-83.76604015007615 +2019-11-01 21:21:07,77.0,28025.09,280.0,3.135,0.0,137.0,504681460.0,-999367720.0,,2019-11-01 21:21:07,42.30191130191088,-83.76603461802006 +2019-11-01 21:21:10,78.0,28034.6,280.0,3.1719999999999997,0.0,137.0,504680483.0,-999367708.0,,2019-11-01 21:21:10,42.30182941071689,-83.76603361219168 +2019-11-01 21:21:17,77.0,28058.34,278.20000000000005,3.5269999999999997,0.0,135.0,504677898.0,-999367733.0,,2019-11-01 21:21:17,42.30161273851991,-83.76603570766747 +2019-11-01 21:21:26,77.0,28092.89,282.2000000000001,3.76,0.0,133.0,504673925.0,-999367576.0,,2019-11-01 21:21:26,42.3012797255069,-83.76602254807949 +2019-11-01 21:21:36,80.0,28131.15,286.6,3.844,0.0,131.0,504669959.0,-999367527.0,,2019-11-01 21:21:36,42.30094729922712,-83.76601844094694 +2019-11-01 21:21:44,85.0,28163.67,286.0,4.152,0.0,130.0,504666573.0,-999367492.0,,2019-11-01 21:21:44,42.30066348798573,-83.76601550728083 +2019-11-01 21:21:53,81.0,28202.61,285.6,4.357,0.0,132.0,504662463.0,-999367352.0,,2019-11-01 21:21:53,42.30031899176538,-83.76600377261639 +2019-11-01 21:22:01,80.0,28237.23,285.4,4.255,0.0,130.0,504658792.0,-999367226.0,,2019-11-01 21:22:01,42.30001129209995,-83.76599321141839 +2019-11-01 21:22:12,80.0,28283.7,287.0,4.217,0.0,130.0,504653778.0,-999366985.0,,2019-11-01 21:22:12,42.29959102347493,-83.76597301103175 +2019-11-01 21:22:19,75.0,28312.68,288.4,3.947,0.0,133.0,504650681.0,-999366869.0,,2019-11-01 21:22:19,42.29933143593371,-83.76596328802407 +2019-11-01 21:22:22,76.0,28324.66,289.0,4.0680000000000005,0.0,133.0,504649463.0,-999366898.0,,2019-11-01 21:22:22,42.29922934435308,-83.76596571877599 +2019-11-01 21:22:33,77.0,28370.37,290.0,4.3389999999999995,0.0,136.0,504644607.0,-999366953.0,,2019-11-01 21:22:33,42.29882231913507,-83.76597032882273 +2019-11-01 21:22:34,77.0,28374.61,290.2000000000001,4.245,0.0,136.0,504644144.0,-999366932.0,,2019-11-01 21:22:34,42.298783510923386,-83.76596856862307 +2019-11-01 21:22:44,80.0,28419.47,292.2000000000001,4.74,0.0,136.0,504639431.0,-999366775.0,,2019-11-01 21:22:44,42.29838847182691,-83.76595540903509 +2019-11-01 21:22:52,76.0,28461.15,292.2000000000001,5.496,0.0,136.0,504635058.0,-999366619.0,,2019-11-01 21:22:52,42.29802193120122,-83.76594233326614 +2019-11-01 21:23:00,82.0,28508.12,290.7999999999999,6.102,0.0,134.0,504630087.0,-999366543.0,,2019-11-01 21:23:00,42.29760526679456,-83.76593596301973 +2019-11-01 21:23:01,84.0,28514.51,290.6,6.382000000000001,0.0,134.0,504629436.0,-999366545.0,,2019-11-01 21:23:01,42.297550700604916,-83.76593613065779 +2019-11-01 21:23:06,82.0,28547.6,289.2000000000001,6.737,0.0,132.0,504625981.0,-999366410.0,,2019-11-01 21:23:06,42.29726110585034,-83.76592481508851 +2019-11-01 21:23:09,82.0,28567.85,288.4,6.792999999999999,0.0,129.0,504623931.0,-999366497.0,,2019-11-01 21:23:09,42.29708927683532,-83.76593210734427 +2019-11-01 21:23:12,84.0,28588.65,287.7999999999999,7.129,0.0,129.0,504621719.0,-999366375.0,,2019-11-01 21:23:12,42.29690386913717,-83.7659218814224 +2019-11-01 21:23:20,80.0,28647.24,287.6,7.353,0.0,131.0,504615453.0,-999366076.0,,2019-11-01 21:23:20,42.29637865908444,-83.76589681953192 +2019-11-01 21:23:28,85.0,28708.99,287.0,7.8,0.0,130.0,504608683.0,-999365536.0,,2019-11-01 21:23:28,42.295811204239726,-83.76585155725479 +2019-11-01 21:23:35,69.0,28761.43,286.0,7.716,0.0,128.0,504603105.0,-999364826.0,,2019-11-01 21:23:35,42.29534366168082,-83.76579204574227 +2019-11-01 21:23:39,75.0,28794.39,285.0,8.622,0.0,125.0,504599718.0,-999364732.0,,2019-11-01 21:23:39,42.2950597666204,-83.76578416675329 +2019-11-01 21:23:41,77.0,28812.06,284.4,8.929,0.0,124.0,504597904.0,-999364732.0,,2019-11-01 21:23:41,42.294907718896866,-83.76578416675329 +2019-11-01 21:23:46,79.0,28856.48,283.0,8.65,0.0,126.0,504593118.0,-999364705.0,,2019-11-01 21:23:46,42.294506561011076,-83.76578190363944 +2019-11-01 21:23:47,79.0,28864.93,282.7999999999999,8.454,0.0,126.0,504592252.0,-999364486.0,,2019-11-01 21:23:47,42.29443397372961,-83.76576354727149 +2019-11-01 21:23:49,79.0,28881.56,282.7999999999999,8.454,0.0,126.0,504591029.0,-999363186.0,,2019-11-01 21:23:49,42.29433146305382,-83.76565458253026 +2019-11-01 21:23:51,0.0,28899.74,282.7999999999999,9.461,0.0,126.0,504590709.0,-999360821.0,,2019-11-01 21:23:51,42.294304640963674,-83.76545635052025 +2019-11-01 21:23:53,0.0,28919.09,283.0,9.844,0.0,127.0,504590420.0,-999358156.0,,2019-11-01 21:23:53,42.29428041726351,-83.76523297280073 +2019-11-01 21:23:54,0.0,28928.97,283.2000000000001,9.872,0.0,127.0,504590041.0,-999356786.0,,2019-11-01 21:23:54,42.29424864985049,-83.76511814072728 +2019-11-01 21:23:56,0.0,28948.94,283.2000000000001,10.003,0.0,125.0,504588959.0,-999354223.0,,2019-11-01 21:23:56,42.29415795765817,-83.764903312549 +2019-11-01 21:23:58,0.0,28968.79,283.4,9.927999999999999,0.0,124.0,504587621.0,-999351848.0,,2019-11-01 21:23:58,42.29404580779374,-83.76470424234867 +2019-11-01 21:24:04,3.0,29029.25,283.6,10.300999999999998,0.0,121.0,504584164.0,-999344457.0,,2019-11-01 21:24:04,42.293756045401096,-83.76408473588526 +2019-11-01 21:24:05,3.0,29039.49,283.6,10.226,0.0,119.0,504583786.0,-999343130.0,,2019-11-01 21:24:05,42.29372436180711,-83.76397350803018 +2019-11-01 21:24:07,0.0,29060.23,283.7999999999999,10.300999999999998,0.0,116.0,504583201.0,-999340315.0,,2019-11-01 21:24:07,42.293675327673554,-83.7637375574559 +2019-11-01 21:24:08,0.0,29070.62,283.6,10.394,0.0,116.0,504582962.0,-999338907.0,,2019-11-01 21:24:08,42.293655294924974,-83.76361954025924 +2019-11-01 21:24:14,0.0,29132.57,282.4,10.376,0.0,114.0,504581480.0,-999330149.0,,2019-11-01 21:24:14,42.29353107511997,-83.76288545317948 +2019-11-01 21:24:15,0.0,29142.97,282.0,10.394,0.0,114.0,504581137.0,-999328677.0,,2019-11-01 21:24:15,42.293502325192094,-83.7627620715648 +2019-11-01 21:24:16,0.0,29153.36,281.6,10.394,0.0,114.0,504580705.0,-999327275.0,,2019-11-01 21:24:16,42.29346611537039,-83.76264455728233 +2019-11-01 21:24:17,0.0,29163.86,281.20000000000005,10.497,0.0,115.0,504580151.0,-999325992.0,,2019-11-01 21:24:17,42.29341967962682,-83.76253701746464 +2019-11-01 21:24:19,0.0,29184.56,280.20000000000005,10.300999999999998,0.0,115.0,504578797.0,-999323739.0,,2019-11-01 21:24:19,42.29330618865788,-83.76234817318618 +2019-11-01 21:24:20,5.0,29195.25,279.79999999999995,10.702,0.0,114.0,504578027.0,-999322598.0,,2019-11-01 21:24:20,42.29324164800346,-83.762252535671 +2019-11-01 21:24:24,5.0,29238.01,277.20000000000005,10.6,0.0,112.0,504574826.0,-999318126.0,,2019-11-01 21:24:24,42.29297334328294,-83.76187769696116 +2019-11-01 21:24:29,7.0,29290.02,275.0,10.497,0.0,113.0,504570757.0,-999312777.0,,2019-11-01 21:24:29,42.29263228364289,-83.76142934896052 +2019-11-01 21:24:35,12.0,29354.74,275.0,10.749,0.0,116.0,504565748.0,-999306511.0,,2019-11-01 21:24:35,42.292212434113026,-83.76090413890779 +2019-11-01 21:24:37,28.0,29375.96,275.0,10.618,0.0,117.0,504564000.0,-999304479.0,,2019-11-01 21:24:37,42.29206591844559,-83.76073381863534 +2019-11-01 21:24:38,28.0,29386.47,274.79999999999995,10.515999999999998,0.0,117.0,504563116.0,-999303637.0,,2019-11-01 21:24:38,42.29199182242155,-83.76066324301064 +2019-11-01 21:24:40,0.0,29406.98,274.6,10.04,0.0,116.0,504561181.0,-999302215.0,,2019-11-01 21:24:40,42.29182963259518,-83.76054405234754 +2019-11-01 21:24:42,0.0,29424.08,274.4,8.267000000000001,0.0,115.0,504559155.0,-999301637.0,,2019-11-01 21:24:42,42.291659815236926,-83.76049560494721 +2019-11-01 21:24:44,9.0,29439.34,274.0,7.558,0.0,115.0,504557350.0,-999301730.0,,2019-11-01 21:24:44,42.29150852188468,-83.76050340011716 +2019-11-01 21:24:45,9.0,29446.35,273.79999999999995,7.007000000000001,0.0,115.0,504556560.0,-999301970.0,,2019-11-01 21:24:45,42.291442304849625,-83.76052351668477 +2019-11-01 21:24:46,9.0,29453.36,273.6,7.007000000000001,0.0,114.0,504555904.0,-999302462.0,,2019-11-01 21:24:46,42.29138731956482,-83.76056475564837 +2019-11-01 21:24:48,0.0,29466.35,273.4,6.28,0.0,113.0,504554932.0,-999303809.0,,2019-11-01 21:24:48,42.29130584746599,-83.7606776598841 +2019-11-01 21:24:49,9.0,29471.98,273.20000000000005,5.636,0.0,113.0,504554615.0,-999304502.0,,2019-11-01 21:24:49,42.29127927683294,-83.76073574647307 +2019-11-01 21:24:51,68.0,29481.83,273.0,4.656000000000001,0.0,111.0,504554396.0,-999305801.0,,2019-11-01 21:24:51,42.29126092046499,-83.76084462739527 +2019-11-01 21:24:53,55.0,29490.04,273.0,3.91,0.0,108.0,504554291.0,-999307041.0,,2019-11-01 21:24:53,42.29125211946666,-83.7609485629946 +2019-11-01 21:24:54,54.0,29493.71,273.0,3.667,0.0,108.0,504554196.0,-999307496.0,,2019-11-01 21:24:54,42.29124415665865,-83.76098670065403 +2019-11-01 21:24:56,50.0,29500.79,273.0,3.62,0.0,107.0,504553622.0,-999307913.0,,2019-11-01 21:24:56,42.291196044534445,-83.76102165319026 +2019-11-01 21:25:00,50.0,29508.55,273.20000000000005,0.0,0.0,107.0,504552835.0,-999307395.0,,2019-11-01 21:25:00,42.291130078956485,-83.76097823493183 +2019-11-01 21:25:03,11.0,29508.55,274.0,0.0,0.0,109.0,504552835.0,-999307395.0,,2019-11-01 21:25:03,42.291130078956485,-83.76097823493183 +2019-11-01 21:25:05,11.0,29508.55,275.0,0.0,0.0,111.0,504552835.0,-999307395.0,,2019-11-01 21:25:05,42.291130078956485,-83.76097823493183