I am going to remove the files from the link that I posted above but am going to paste the csv.conf file that i used as well as sample of my data to help those in the future. Basically here are the steps to get historical data off of Weatherlink.com and into weewx:
1. Go to Weatherlink.com. Login. Click the Data tab. Set the start Date and time period accordingly. Click the arrow inside the box above the time period and enter your email address. This will send you a CSV file. I had about 4 years of data so I had to repeat this 4 times. 2. Follow the instructions here <https://weewx.com/docs/utilities.htm#wee_import_utility> for the rest of it. Thats what I did. The below hints might aid you though. 3. Modify the CSV files. Make them look like the one I have attached below. 1. Remove the rows above there the column headers are. 2. Convert the wind direction and high speed wind direction from inter-cardinal to degrees. North is 0 NNE is 22.5. NE is 45...etc. this can be done by using a reference table and a vlookup formula. 3. Change the column headers to something simple. IDK if this is necessary but i did it. if youre using my CSV.conf file, you can use my headers. 4. Change the csv.conf file accordingly making sure the units in the FieldMap section match those of your data. 5. Follow the rest of the instructions in the link. 6. Take a backup of your database (as recommended) this can usually be found in */var/lib/weewx/weewx.sdb* 7. Run *sudo wee_import --import-config=/path/to/csv.conf --dry-run* first 8. Resolve any errors. 9. Run if for real *sudo wee_import --import-config=/path/to/csv.conf* 10. After it finishes, wait for the website to refresh and then if you find issues with monthly or yearly reports, remove all data from /var/www/html/weewx. Restart weewx. Wait for the website to refresh. Hope this helps someone! On Monday, October 30, 2023 at 3:37:41 PM UTC-4 The Reckoning wrote: > Another update. Man have I learned a lot about weewx and databases in > general through this process. I am typing all of this up in the hopes that > it helps someone in the future who encounters a similar issue. > > I examined the daily summary databases such as archive_day_outTemp and > they all looked normal. In short, the data import worked as expected with > no issues. All databases have all my data and are up to date. > > To fix this issue, I deleted everything from */var/www/html/weewx, *stopped > and restarted weewx, and viola! All summaries appeared. It looks like the > NOAA Monthly and yearly summaries did not regenerate since I did the > import. I had assumed that they would have done so when I ran *sudo > wee_database --drop-daily* and *sudo wee_database **--rebuild-daily *but > they did not. > On Monday, October 30, 2023 at 2:36:41 PM UTC-4 The Reckoning wrote: > >> I exported my database (with all imports complete) to a CSV via sqlite3. >> >> All the data is there but the Daily/Monthly/Yearly summaries wont >> generate for certain days. I don't see anything different about the data >> for these days/months. See for yourself. CSV Linked below. The file is >> called weewx_db_export.csv. >> >> Link >> <https://hinsonventures-my.sharepoint.com/:f:/g/personal/jmhinson_hinsoncompanies_com/EqAENr-xHx9Dml15lovr09EBZZXe1vA2U42p8aAoqNMC0A?e=UFAw7p> >> >> -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/fb3012dc-a936-42b9-90c1-50eddcb058dan%40googlegroups.com.
# EXAMPLE CONFIGURATION FILE FOR IMPORTING FROM CSV FILES # # Copyright (c) 2009-2022 Tom Keffer <[email protected]> and Gary Roderick. # See the file LICENSE.txt for your rights. ############################################################################## # Specify the source. Available options are: # CSV - import obs from a single CSV format file # WU - import obs from a Weather Underground PWS history # Cumulus - import obs from a one or more Cumulus monthly log files # WD - import obs from a one or more WD monthly log files # Format is: # source = (CSV | WU | Cumulus) source = CSV ############################################################################## [CSV] # Parameters used when importing from a CSV file # Path and name of our CSV source file. Format is: # file = full path and filename file = /home/jm/Desktop/PWS_All2.csv # The character used to separate fields. Format is: # delimiter = <single character> # Default is , (comma). delimiter = ',' # Specify the character used as the decimal point. The character # must be enclosed in quotes. # Format is: # decimal = '.' (dot) # or # decimal = ',' (comma) decimal = '.' # If there is no mapped interval field how will the interval field be # determined for the imported records. Available options are: # derive - Derive the interval field from the timestamp of successive # records. This setting is best used when there are no missing # records from period being imported. Missing records will # cause the interval field to be incorrectly calculated for some # records. # conf - Use the interval setting from weewx.conf. This setting is # best used if the records to be imported have been produced by # WeeWX or some other means with the same archive interval as # set in weewx.conf on this machine. # x - Use a fixed interval of 'x' minutes for every record where 'x' # is a number. This setting is best used if the records to be # imported are equally spaced in time but there are some missing # records. # # Note: If there is a mapped interval field then this setting will be # ignored. # Format is: # interval = (derive | conf | x) interval = 30 # Should the [StdQC] max/min limits in weewx.conf be applied to the # imported data. This may be useful if the source has extreme values that # are clearly incorrect for some observations. Available options are: # True - weewx.conf [StdQC] max/min limits are applied. # False - weewx.conf [StdQC] max/min limits are not applied. # Format is: # qc = (True | False) qc = True # Should any missing derived observations be calculated from the imported # data if possible. Available options are: # True - Any missing derived observations are calculated. # False - Any missing derived observations are not calculated. # Format is: # calc_missing = (True | False) calc_missing = True # Specify how imported data fields that contain invalid data (eg a numeric # field containing non-numeric data) are handled. Available options are: # True - The invalid data is ignored, the WeeWX target field is set to # None and the import continues. # False - The import is halted. # Format is: # ignore_invalid_data = (True | False) # Default is True. ignore_invalid_data = True # Imported records are written to archive in transactions of tranche # records at a time. Increase for faster throughput, decrease to reduce # memory requirements. Format is: # tranche = x # where x is an integer tranche = 250 # Specify whether a UV sensor was used to produce any UV observations. # Available options are: # True - UV sensor was used and UV data will be imported. # False - UV sensor was not used and any UV data will not be imported. # UV fields will be set to None/NULL. # For a CSV import UV_sensor should be set to False if a UV sensor was # NOT present when the import data was created. Otherwise it may be set to # True or omitted. Format is: # UV_sensor = (True | False) UV_sensor = False # Specify whether a solar radiation sensor was used to produce any solar # radiation observations. Available options are: # True - Solar radiation sensor was used and solar radiation data will # be imported. # False - Solar radiation sensor was not used and any solar radiation # data will not be imported. radiation fields will be set to # None/NULL. # For a CSV import solar_sensor should be set to False if a solar radiation # sensor was NOT present when the import data was created. Otherwise it may # be set to True or omitted. Format is: # solar_sensor = (True | False) solar_sensor = False # Date-time format of CSV field from which the WeeWX archive record # dateTime field is to be extracted. wee_import first attempts to interpret # date/time info in this format, if this fails it then attempts to # interpret it as a timestamp and if this fails it then raises an error. # Uses Python strptime() format codes. # raw_datetime_format = Python strptime() format string raw_datetime_format = %m/%d/%y %I:%M %p # Does the imported rain field represent the total rainfall since the last # record or a cumulative value. Available options are: # discrete - rain field represents total rainfall since last record # cumulative - rain field represents a cumulative rainfall reset at # midnight # rain = (discrete | cumulative) rain = discrete # Lower and upper bounds for imported wind direction. It is possible, # particularly for a calculated direction, to have a value (eg -45) outside # of the WeeWX limits (0 to 360 inclusive). Format is: # # wind_direction = lower,upper # # where : # lower is the lower limit of acceptable wind direction in degrees # (may be negative) # upper is the upper limit of acceptable wind direction in degrees # # Imported values from lower to upper will be normalised to the range 0 to # 360. Values outside of the parameter range will be stored as None. # Default is -360,360. wind_direction = 0,360 # Map CSV record fields to WeeWX archive fields. Format is: # # weewx_archive_field_name = csv_field_name, weewx_unit_name # # where: # weewx_archive_field_name - An observation name in the WeeWX database # schema. # csv_field_name - The name of a field from the CSV file. # weewx_unit_name - The name of the units, as defined in WeeWX, # used by csv_field_name. wee_import will do # the necessary conversions to the unit system # used by the WeeWX archive. # For example, # outTemp = Temp, degree_C # would map the CSV field Temp, in degrees C, to the archive field outTemp. # # A mapping for WeeWX field dateTime is mandatory and the WeeWX unit name # for the dateTime mapping must be unix_epoch. For example, # dateTime = csv_date_and_time, unix_epoch # would map the CSV field csv_date_and_time to the WeeWX dateTime field with # the csv_date_and_time field being interpreted first using the format # specified at the raw_datetime_format config option and if that fails as a # unix epoch timestamp. # # Field mapping to the WeeWX usUnits archive field is currently not # supported. If a usUnits field exists in the CSV data it should not be # mapped, rather WeeWX unit names should included against each field to be # imported in the field map. # # WeeWX archive fields that do not exist in the CSV data may be omitted. # Any omitted fields that are derived (eg dewpoint) may be calculated # during import using the equivalent of the WeeWX StdWXCalculate service # through setting the calc-missing parameter above. [[FieldMap]] dateTime = Timestamp, unix_epoch barometer = Barometer, inHg inTemp = InsideTemp, degree_F outTemp = OutsideTemp, degree_F inHumidity = InsideHumidity,percent outHumidity = Humidity, percent windSpeed = WindSpeed, mile_per_hour windDir = WindDirection, degree_compass windGust = HighWindSpeed, mile_per_hour windGustDir = HighWindDirection, degree_compass rainRate = RainRate, inch_per_hour rain = Rain, inch dewpoint = DewPoint, degree_F windchill = WindChill, degree_F heatindex = THWIndex, degree_F ET = ET, inch
Timestamp,Barometer,InsideTemp,InsideHumidity,InsideDewPoint,InsideHeatIndex,InsideEMC,OutsideTemp,HighTemp,LowTemp,Humidity,DewPoint,WetBulb,WindSpeed,WindDirection,WindRun,HighWindSpeed,HighWindDirection,WindChill,HeatIndex,THWIndex,Rain,RainRate,ET,HeatingDegreeDays,CoolingDegreeDays 7/28/19 16:00,--,--,--,--,--,--,--,--,--,--,--,--,--,--,--,0,--,--,--,--,0,0,0,--,-- 7/28/19 16:30,30.13,77,45,54,76,8.4,73,73,73,54,56,60,0,,0,0,,73,73,73,0,0,0,0,0.173 7/28/19 17:00,30.11,76,45,54,76,8.4,73,73,73,55,56,61,0,,0,0,,73,73,73,0,0,0,0,0.175 7/28/19 17:30,30.12,77,45,54,76,8.4,76,76,73,95,75,75,0,,0,0,,76,80,80,0,0,0,0,0.233 7/28/19 18:00,30.11,75,46,53,75,8.5,79,79,76,88,75,76,0,,0,0,,79,85,85,0,0,0,0,0.298 7/28/19 18:30,30.11,75,46,53,74,8.6,79,80,79,87,75,76,0,,0,0,,79,85,85,0,0,0,0,0.3 7/28/19 19:00,30.11,76,46,53,75,8.5,78,79,78,88,74,75,0,,0,0,,78,83,83,0,0,0,0,0.275 7/28/19 19:30,30.11,74,46,52,74,8.6,78,78,78,88,74,75,0,,0,0,,78,83,83,0,0,0,0,0.275 7/28/19 20:00,30.11,73,49,53,73,9.1,78,78,78,89,74,75,0,,0,0,,78,81,81,0,0,0,0,0.26 7/28/19 20:30,30.11,74,55,56,74,10.1,77,78,77,90,74,75,0,,0,0,,77,81,81,0,0,0,0,0.25 7/28/19 21:00,30.1,73,50,54,73,9.2,77,77,76,90,73,74,0,,0,0,,77,80,80,0,0,0,0,0.242 7/28/19 21:30,30.12,73,48,52,72,8.9,76,77,76,90,73,74,0,,0,0,,76,80,80,0,0,0,0,0.238 7/28/19 22:00,30.12,72,47,50,71,8.8,76,76,76,90,73,74,0,,0,0,,76,79,79,0,0,0,0,0.227 7/28/19 22:30,30.12,71,51,52,70,9.4,76,76,76,91,73,73,0,,0,0,,76,78,78,0,0,0,0,0.219 7/28/19 23:00,30.11,71,49,51,69,9.1,75,76,75,92,73,73,0,,0,0,,75,78,78,0,0,0,0,0.208 7/28/19 23:30,30.11,70,47,49,68,8.8,75,75,75,92,72,73,0,,0,0,,75,78,78,0,0,0,0,0.206 7/29/19 0:00,30.1,69,49,49,68,9.1,75,75,75,92,72,73,0,,0,0,,75,77,77,0,0,0,0,0.202 7/29/19 0:30,30.1,70,49,50,68,9.1,74,75,74,93,72,73,0,,0,0,,74,77,77,0,0,0,0,0.196 7/29/19 1:00,30.09,70,48,49,68,8.9,74,74,74,93,72,72,0,,0,0,,74,76,76,0,0,0,0,0.188 7/29/19 1:30,30.08,70,49,50,68,9.1,74,74,74,93,72,72,0,,0,0,,74,76,76,0,0,0,0,0.188 7/29/19 2:00,30.08,70,49,50,68,9.1,74,74,74,93,72,72,0,,0,0,,74,76,76,0,0,0,0,0.185 7/29/19 2:30,30.08,70,48,50,68,8.9,74,74,74,94,72,72,0,,0,0,,74,76,76,0,0,0,0,0.181 7/29/19 3:00,30.07,70,49,50,68,9.1,74,74,74,93,72,72,0,,0,0,,74,76,76,0,0,0,0,0.183 7/29/19 3:30,30.07,70,49,50,68,9.1,74,74,74,94,72,72,0,,0,0,,74,76,76,0,0,0,0,0.183 7/29/19 4:00,30.06,70,48,49,68,8.9,74,74,74,94,72,72,0,,0,0,,74,76,76,0,0,0,0,0.181 7/29/19 4:30,30.06,70,48,50,68,8.9,74,74,74,94,72,72,0,,0,0,,74,76,76,0,0,0,0,0.177 7/29/19 5:00,30.06,70,49,50,68,9.1,73,74,73,94,72,72,0,,0,0,,73,76,76,0,0,0,0,0.175 7/29/19 5:30,30.06,70,48,49,68,8.9,73,73,73,93,71,72,0,,0,0,,73,76,76,0,0,0,0,0.171 7/29/19 6:00,30.07,70,49,50,68,9.1,73,73,73,94,71,72,0,,0,0,,73,75,75,0,0,0,0,0.165 7/29/19 6:30,30.07,70,49,50,68,9.1,73,73,73,95,72,72,0,,0,0,,73,76,76,0,0,0,0,0.169 7/29/19 7:00,30.07,71,50,52,70,9.2,73,73,73,95,72,72,0,,0,0,,73,76,76,0,0,0,0,0.171 7/29/19 7:30,30.07,72,50,52,71,9.2,73,73,73,95,72,72,0,,0,0,,73,76,76,0,0,0,0,0.175 7/29/19 8:00,30.08,73,50,53,72,9.2,74,74,73,96,73,73,0,,0,0,,74,77,77,0,0,0,0,0.188 7/29/19 8:30,30.09,73,51,54,73,9.4,75,75,74,97,74,74,0,,0,0,,75,79,79,0,0,0,0,0.21 7/29/19 9:00,30.09,74,52,55,74,9.6,77,77,75,95,76,76,0,,0,0,,77,82,82,0,0,0,0,0.252 7/29/19 9:30,30.09,74,51,55,74,9.4,80,80,77,93,77,78,0,,0,0,,80,87,87,0,0,0,0,0.304 7/29/19 10:00,30.09,74,51,55,74,9.4,82,82,80,84,76,78,0,,0,0,,82,90,90,0,0,0,0,0.348 7/29/19 10:30,30.09,75,51,55,75,9.4,85,85,82,77,77,78,0,,0,0,,85,95,95,0,0,0,0,0.41 7/29/19 11:00,30.1,74,51,55,74,9.4,86,86,85,74,77,79,0,,0,0,,86,97,97,0,0,0,0,0.435 7/29/19 11:30,30.09,74,49,54,74,9.1,86,87,86,71,76,78,0,,0,0,,86,97,97,0,0,0,0,0.448 7/29/19 12:00,30.09,75,51,55,75,9.4,87,87,86,69,75,78,0,,0,0,,87,97,97,0,0,0,0,0.454 7/29/19 12:30,30.09,75,50,55,74,9.2,87,88,87,73,77,79,0,,0,0,,87,100,100,0,0,0,0,0.46 7/29/19 13:00,30.08,75,49,54,74,9.1,87,88,87,71,77,79,0,,0,0,,87,99,99,0,0,0,0,0.462 7/29/19 13:30,30.08,74,49,54,74,9.1,85,87,85,75,76,78,0,,0,0,,85,94,94,0,0,0,0,0.408 7/29/19 14:00,30.08,74,48,53,74,8.9,82,85,82,79,75,77,0,,0,0,,82,90,90,0,0,0,0,0.363 7/29/19 14:30,30.08,74,48,53,74,8.9,81,82,81,86,76,77,0,,0,0,,81,88,88,0,0,0,0,0.331 7/29/19 15:00,30.07,74,49,54,74,9.1,81,81,81,89,77,78,0,,0,0,,81,89,89,0,0,0,0,0.331 7/29/19 15:30,30.06,74,49,54,74,9.1,83,83,81,86,78,79,0,,0,0,,83,94,94,0,0,0,0,0.373 7/29/19 16:00,30.05,74,48,53,74,8.9,84,84,83,80,77,78,0,,0,0,,84,93,93,0,0,0,0,0.387 7/29/19 16:30,30.04,74,49,54,74,9.1,85,85,84,73,75,77,0,,0,0,,85,94,94,0,0,0,0,0.417 7/29/19 17:00,30.03,74,49,54,74,9.1,86,86,85,68,74,76,0,,0,0,,86,94,94,0,0,0,0,0.429 7/29/19 17:30,30.03,74,48,53,73,8.9,85,86,85,71,75,77,0,,0,0,,85,94,94,0,0,0,0,0.423 7/29/19 18:00,30.03,74,47,52,73,8.8,85,85,85,74,75,77,0,,0,0,,85,94,94,0,0,0,0,0.41 7/29/19 18:30,30.02,74,48,53,73,8.9,84,85,84,74,75,77,0,,0,0,,84,92,92,0,0,0,0,0.398 7/29/19 19:00,30.02,73,47,52,73,8.8,84,85,84,71,74,76,0,,0,0,,84,92,92,0.04,3.31,0,0,0.402 7/29/19 19:30,30.02,73,46,51,72,8.6,82,84,82,75,73,75,0,,0,0,,82,88,88,0,0,0,0,0.358 7/29/19 20:00,30.02,72,46,51,71,8.6,80,82,80,78,73,75,0,,0,1,247.5,80,86,86,0,0,0,0,0.323 7/29/19 20:30,30.02,72,46,50,71,8.6,79,80,79,80,72,74,0,,0,0,,79,82,82,0.01,0,0,0,0.283 7/29/19 21:00,30.03,72,48,51,71,8.9,77,79,77,87,73,74,0,,0,0,,77,80,80,0,0,0,0,0.25 7/29/19 21:30,30.05,72,46,50,71,8.6,76,77,76,89,72,73,0,,0,0,,76,79,79,0,0,0,0,0.227 7/29/19 22:00,30.05,72,48,51,70,8.9,75,76,75,92,73,73,0,,0,0,,75,78,78,0,0,0,0,0.21 7/29/19 22:30,30.05,71,46,49,69,8.6,74,75,74,94,73,73,0,,0,0,,74,77,77,0,0,0,0,0.198 7/29/19 23:00,30.05,70,45,48,68,8.4,74,74,74,95,73,73,0,,0,0,,74,77,77,0,0,0,0,0.192 7/29/19 23:30,30.05,70,45,47,67,8.5,74,74,74,95,72,73,0,,0,0,,74,77,77,0,0,0,0,0.185 7/30/19 0:00,30.05,69,44,46,67,8.4,74,74,74,96,73,73,0,,0,0,,74,77,77,0,0,0,0,0.185 7/30/19 0:30,30.05,69,47,48,67,8.8,74,74,74,96,72,73,0,,0,0,,74,76,76,0,0,0,0,0.179 7/30/19 1:00,30.06,69,46,48,67,8.6,73,74,73,96,72,73,0,,0,0,,73,76,76,0,0,0,0,0.175 7/30/19 1:30,30.06,69,47,48,67,8.8,73,74,73,96,72,73,0,,0,0,,73,76,76,0,0,0,0,0.175 7/30/19 2:00,30.06,69,46,48,67,8.6,73,74,73,97,72,73,0,,0,0,,73,76,76,0,0,0,0,0.173 7/30/19 2:30,30.05,69,47,48,67,8.8,73,73,73,97,72,72,0,,0,0,,73,76,76,0,0,0,0,0.167 7/30/19 3:00,30.04,70,46,48,68,8.6,73,73,73,97,72,72,0,,0,0,,73,75,75,0,0,0,0,0.163 7/30/19 3:30,30.03,70,47,48,68,8.8,72,73,72,97,72,72,0,,0,0,,72,75,75,0,0,0,0,0.156 7/30/19 4:00,30.03,69,47,48,68,8.8,72,72,72,98,72,72,0,,0,0,,72,75,75,0,0,0,0,0.154 7/30/19 4:30,30.03,70,47,48,68,8.8,72,72,72,97,71,71,0,,0,0,,72,75,75,0,0,0,0,0.148 7/30/19 5:00,30.03,70,46,48,68,8.6,72,72,72,97,71,71,0,,0,0,,72,74,74,0,0,0,0,0.144 7/30/19 5:30,30.04,70,47,49,68,8.8,72,72,72,97,71,71,0,,0,0,,72,74,74,0,0,0,0,0.135 7/30/19 6:00,30.04,70,47,49,68,8.8,71,72,71,98,71,71,0,,0,0,,71,74,74,0,0,0,0,0.133 7/30/19 6:30,30.03,70,47,49,68,8.8,71,72,71,98,71,71,0,,0,0,,71,74,74,0,0,0,0,0.133 7/30/19 7:00,30.03,70,48,50,69,8.9,72,72,71,98,71,71,0,,0,0,,72,74,74,0,0,0,0,0.135 7/30/19 7:30,30.03,71,49,51,70,9.1,72,72,72,98,71,71,0,,0,0,,72,74,74,0,0,0,0,0.142 7/30/19 8:00,30.05,72,48,52,71,8.9,73,73,72,98,72,72,0,,0,0,,73,75,75,0,0,0,0,0.163 7/30/19 8:30,30.06,73,50,53,72,9.2,74,74,73,98,73,73,0,,0,0,,74,77,77,0,0,0,0,0.181 7/30/19 9:00,30.07,74,51,55,74,9.4,75,75,74,99,74,74,0,,0,0,,75,78,78,0,0,0,0,0.202 7/30/19 9:30,30.07,74,51,55,74,9.4,77,77,75,96,76,76,0,,0,3,292.5,77,82,82,0,0,0,0,0.254 7/30/19 10:00,30.08,74,50,55,74,9.2,81,81,77,89,77,78,1,315,0.5,6,315,81,89,89,0,0,0,0,0.331 7/30/19 10:30,30.09,75,50,55,74,9.2,84,84,81,77,76,78,1,225,0.5,5,315,84,93,93,0,0,0,0,0.398 7/30/19 11:00,30.09,75,51,55,75,9.4,86,86,84,75,77,79,0,,0,3,247.5,86,97,97,0,0,0,0,0.433 7/30/19 11:30,30.09,74,50,55,74,9.2,86,86,85,76,78,79,1,22.5,0.5,4,315,86,98,98,0,0,0,0,0.438 7/30/19 12:00,30.08,75,50,55,74,9.2,88,88,86,69,77,79,1,337.5,0.5,7,315,88,101,101,0,0,0,0,0.488 7/30/19 12:30,30.07,74,50,55,74,9.2,89,89,88,62,74,77,1,180,0.5,6,157.5,89,98,98,0,0,0,0,0.496 7/30/19 13:00,30.08,74,49,54,74,9.1,91,91,89,55,72,76,1,292.5,0.5,4,45,91,99,99,0,0,0,0,0.54 7/30/19 13:30,30.07,74,50,54,74,9.2,91,91,89,59,75,78,0,,0,5,337.5,91,102,102,0,0,0,0,0.548 7/30/19 14:00,30.06,74,48,53,74,8.9,90,92,90,67,78,80,0,,0,3,270,90,105,105,0,0,0,0,0.531 7/30/19 14:30,30.06,74,49,54,74,9.1,89,90,89,67,77,79,1,0,0.5,5,225,89,102,102,0,0,0,0,0.506 7/30/19 15:00,30.05,74,48,53,73,8.9,90,90,88,68,78,80,1,315,0.5,8,292.5,90,104,104,0,0,0,0,0.515 7/30/19 15:30,30.04,74,49,54,74,9.1,92,92,90,57,75,78,1,315,0.5,8,315,92,104,104,0,0,0,0,0.571 7/30/19 16:00,30.03,74,48,53,74,8.9,92,92,92,55,74,77,1,225,0.5,5,315,92,102,102,0,0,0,0,0.567 7/30/19 16:30,30.03,74,48,53,73,8.9,92,93,91,64,78,80,1,67.5,0.5,4,180,92,106,106,0,0,0,0,0.552 7/30/19 17:00,30.02,74,47,52,73,8.8,89,92,89,64,76,78,1,45,0.5,8,247.5,89,101,101,0,0,0,0,0.508 7/30/19 17:30,30.02,74,47,52,73,8.8,90,90,89,60,74,77,1,202.5,0.5,5,180,90,99,99,0,0,0,0,0.517 7/30/19 18:00,30.01,74,47,52,73,8.8,86,90,86,65,73,76,0,,0,6,225,86,93,93,0,0,0,0,0.438 7/30/19 18:30,30.02,73,47,52,73,8.8,84,86,84,73,75,77,0,,0,3,180,84,92,92,0,0,0,0,0.398 7/30/19 19:00,30.02,73,47,52,73,8.8,84,84,84,77,76,78,0,,0,3,270,84,93,93,0,0,0,0,0.392 7/30/19 19:30,30.01,73,47,52,72,8.8,84,84,84,80,77,78,0,,0,1,270,84,93,93,0,0,0,0,0.385 7/30/19 20:00,30.02,73,47,51,72,8.8,83,84,83,80,76,77,0,,0,2,315,83,91,91,0,0,0,0,0.369 7/30/19 20:30,30.03,72,46,51,71,8.6,81,83,81,84,76,77,0,,0,1,22.5,81,88,88,0,0,0,0,0.333 7/30/19 21:00,30.04,72,47,51,71,8.8,79,81,79,87,75,76,0,,0,0,,79,85,85,0,0,0,0,0.3 7/30/19 21:30,30.05,72,46,50,71,8.6,78,79,78,89,75,76,0,,0,0,,78,83,83,0,0,0,0,0.279 7/30/19 22:00,30.07,72,46,50,70,8.6,78,78,78,92,75,76,0,,0,0,,78,82,82,0,0,0,0,0.262 7/30/19 22:30,30.07,71,45,49,69,8.4,77,78,77,93,75,75,0,,0,0,,77,81,81,0,0,0,0,0.25 7/30/19 23:00,30.07,71,45,48,69,8.4,76,77,76,94,75,75,0,,0,0,,76,80,80,0,0,0,0,0.238 7/30/19 23:30,30.07,70,47,49,68,8.8,76,76,76,95,74,75,0,,0,0,,76,79,79,0,0,0,0,0.225 7/31/19 0:00,30.06,70,50,51,69,9.2,75,76,75,95,74,74,0,,0,0,,75,79,79,0,0,0,0,0.215 7/31/19 0:30,30.06,70,47,49,68,8.8,75,75,75,96,74,74,0,,0,0,,75,78,78,0,0,0,0,0.206 7/31/19 1:00,30.06,70,48,49,68,8.9,75,75,75,96,74,74,0,,0,0,,75,78,78,0,0,0,0,0.204 7/31/19 1:30,30.06,70,48,50,68,8.9,74,75,74,97,74,74,0,,0,0,,74,78,78,0,0,0,0,0.198 7/31/19 2:00,30.05,70,48,49,68,8.9,74,75,74,97,73,74,0,,0,0,,74,77,77,0,0,0,0,0.192 7/31/19 2:30,30.05,70,47,49,68,8.8,74,74,74,97,73,73,0,,0,0,,74,77,77,0,0,0,0,0.188 7/31/19 3:00,30.05,70,47,49,68,8.8,74,74,74,97,73,73,0,,0,0,,74,77,77,0,0,0,0,0.183 7/31/19 3:30,30.05,70,48,50,68,8.9,74,74,73,97,73,73,0,,0,0,,74,76,76,0,0,0,0,0.177 7/31/19 4:00,30.05,70,48,49,68,8.9,74,74,73,98,73,73,0,,0,0,,74,76,76,0,0,0,0,0.177 7/31/19 4:30,30.05,70,48,50,68,8.9,73,74,73,97,72,73,0,,0,0,,73,76,76,0,0,0,0,0.173 7/31/19 5:00,30.04,70,47,49,68,8.8,73,73,73,97,72,72,0,,0,0,,73,75,75,0,0,0,0,0.163 7/31/19 5:30,30.04,70,48,50,68,8.9,73,73,73,98,72,72,0,,0,0,,73,75,75,0,0,0,0,0.158 7/31/19 6:00,30.05,70,48,50,68,8.9,72,73,72,98,72,72,0,,0,0,,72,75,75,0,0,0,0,0.154 7/31/19 6:30,30.05,70,48,50,69,8.9,72,72,72,98,72,72,0,,0,0,,72,75,75,0,0,0,0,0.15 7/31/19 7:00,30.06,71,49,51,70,9.1,72,72,72,98,72,72,0,,0,0,,72,75,75,0,0,0,0,0.148 7/31/19 7:30,30.06,72,50,52,71,9.2,72,72,72,98,72,72,0,,0,0,,72,75,75,0,0,0,0,0.152 7/31/19 8:00,30.07,73,50,53,72,9.2,73,73,72,98,72,72,0,,0,0,,73,75,75,0,0,0,0,0.163 7/31/19 8:30,30.08,73,51,54,73,9.4,74,74,73,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.183 7/31/19 9:00,30.09,75,51,55,75,9.4,76,76,74,99,76,76,0,,0,0,,76,80,80,0,0,0,0,0.231 7/31/19 9:30,30.09,75,51,56,75,9.4,79,79,76,97,78,78,0,,0,1,315,79,86,86,0,0,0,0,0.292 7/31/19 10:00,30.1,75,49,55,75,9,82,82,79,88,78,79,0,,0,4,180,82,92,92,0,0,0,0,0.358 7/31/19 10:30,30.1,75,50,55,75,9.2,86,86,82,78,78,80,0,,0,5,180,86,98,98,0,0,0,0,0.431 7/31/19 11:00,30.11,75,49,55,75,9.1,86,86,86,75,78,79,1,315,0.5,3,315,86,99,99,0,0,0,0,0.446 7/31/19 11:30,30.11,75,48,54,75,8.9,88,88,86,67,75,78,0,,0,4,180,88,98,98,0,0,0,0,0.473 7/31/19 12:00,30.11,75,49,55,75,9,91,91,88,66,78,81,1,247.5,0.5,7,247.5,91,107,107,0,0,0,0,0.55 7/31/19 12:30,30.1,75,48,54,75,8.9,92,92,91,61,76,79,0,,0,4,315,92,104,104,0,0,0,0,0.552 7/31/19 13:00,30.1,74,48,53,74,8.9,93,94,92,57,76,79,1,180,0.5,7,292.5,93,105,105,0,0,0,0,0.583 7/31/19 13:30,30.09,74,47,53,74,8.8,92,93,91,61,77,80,1,270,0.5,5,315,92,106,106,0,0,0,0,0.567 7/31/19 14:00,30.09,74,46,52,74,8.6,88,92,88,73,78,80,1,315,0.5,5,225,88,102,102,0,0,0,0,0.481 7/31/19 14:30,30.08,74,47,53,74,8.8,83,88,83,86,78,79,1,180,0.5,7,180,83,94,94,0,0,0,0,0.375 7/31/19 15:00,30.07,74,46,52,74,8.6,87,87,83,86,82,83,0,,0,5,202.5,87,106,106,0.04,0.5,0,0,0.456 7/31/19 15:30,30.06,74,46,52,74,8.6,89,89,87,78,81,83,1,180,0.5,5,180,89,108,108,0,0,0,0,0.5 7/31/19 16:00,30.05,74,47,53,74,8.8,89,90,89,77,81,83,0,,0,3,292.5,89,109,109,0,0,0,0,0.508 7/31/19 16:30,30.05,74,47,52,73,8.8,84,89,84,82,78,79,0,,0,4,157.5,84,95,95,0,0,0,0,0.398 7/31/19 17:00,30.05,74,46,52,73,8.6,83,84,83,86,78,79,0,,0,3,247.5,83,93,93,0,0,0,0,0.371 7/31/19 17:30,30.04,74,46,52,73,8.6,83,83,83,88,79,80,0,,0,5,202.5,83,94,94,0,0,0,0,0.371 7/31/19 18:00,30.05,74,46,52,73,8.6,83,83,83,85,78,80,0,,0,4,202.5,83,95,95,0,0,0,0,0.383 7/31/19 18:30,30.05,73,46,51,72,8.6,83,84,83,89,79,80,0,,0,5,202.5,83,95,95,0,0,0,0,0.375 7/31/19 19:00,30.05,73,47,52,73,8.8,82,83,82,90,79,80,0,,0,2,225,82,93,93,0,0,0,0,0.363 7/31/19 19:30,30.06,74,47,52,73,8.8,82,82,82,90,79,79,0,,0,3,225,82,92,92,0,0,0,0,0.35 7/31/19 20:00,30.07,73,47,52,73,8.8,81,82,81,92,78,79,0,,0,1,157.5,81,90,90,0,0,0,0,0.333 7/31/19 20:30,30.08,74,48,53,73,8.9,80,81,80,92,78,78,0,,0,1,315,80,88,88,0,0,0,0,0.319 7/31/19 21:00,30.08,73,46,51,73,8.6,80,80,80,93,78,78,0,,0,0,,80,87,87,0,0,0,0,0.308 7/31/19 21:30,30.07,72,46,51,71,8.6,79,80,79,94,77,78,0,,0,0,,79,86,86,0,0,0,0,0.298 7/31/19 22:00,30.07,72,45,49,70,8.4,79,79,79,95,77,78,0,,0,0,,79,86,86,0,0,0,0,0.29 7/31/19 22:30,30.08,72,51,53,71,9.4,79,79,79,96,77,78,0,,0,0,,79,85,85,0,0,0,0,0.285 7/31/19 23:00,30.08,72,48,51,70,8.9,78,79,78,96,77,77,0,,0,0,,78,85,85,0,0,0,0,0.279 7/31/19 23:30,30.07,71,47,49,69,8.8,78,78,78,96,77,77,0,,0,0,,78,85,85,0,0,0,0,0.277 8/1/19 0:00,30.08,70,46,48,68,8.6,78,78,78,96,77,77,0,,0,2,225,78,84,84,0,0,0,0,0.273 8/1/19 0:30,30.07,69,46,48,67,8.6,78,78,78,94,76,77,0,,0,3,202.5,78,83,83,0,0,0,0,0.271 8/1/19 1:00,30.07,70,47,48,68,8.8,78,78,78,93,75,76,0,,0,2,270,78,82,82,0,0,0,0,0.262 8/1/19 1:30,30.05,70,48,49,68,8.9,77,78,77,95,75,76,0,,0,0,,77,81,81,0,0,0,0,0.244 8/1/19 2:00,30.05,70,47,49,68,8.8,76,77,76,97,75,76,0,,0,0,,76,80,80,0,0,0,0,0.233 8/1/19 2:30,30.04,70,47,49,68,8.8,76,76,76,97,75,75,0,,0,0,,76,80,80,0,0,0,0,0.227 8/1/19 3:00,30.03,70,47,49,68,8.8,76,76,76,97,75,75,0,,0,0,,76,79,79,0,0,0,0,0.221 8/1/19 3:30,30.01,70,48,50,69,8.9,75,76,75,98,75,75,0,,0,0,,75,79,79,0,0,0,0,0.217 8/1/19 4:00,30.04,70,48,50,69,8.9,76,76,75,98,75,75,0,,0,1,247.5,76,80,80,0,0,0,0,0.227 8/1/19 4:30,30.05,70,47,49,69,8.8,76,76,76,98,75,75,0,,0,1,247.5,76,80,80,0,0,0,0,0.225 8/1/19 5:00,30.05,70,48,50,69,8.9,76,76,76,97,75,75,0,,0,1,247.5,76,79,79,0,0,0,0,0.221 8/1/19 5:30,30.05,70,48,50,69,8.9,75,76,75,98,75,75,0,,0,0,,75,79,79,0,0,0,0,0.215 8/1/19 6:00,30.06,70,48,50,69,8.9,75,75,75,98,74,75,0,,0,0,,75,79,79,0,0,0,0,0.208 8/1/19 6:30,30.06,71,47,49,69,8.8,75,75,75,98,74,74,0,,0,0,,75,78,78,0,0,0,0,0.206 8/1/19 7:00,30.07,72,49,51,70,9.1,75,75,75,98,74,74,0,,0,0,,75,78,78,0,0,0,0,0.204 8/1/19 7:30,30.07,73,50,53,72,9.2,75,75,75,98,75,75,0,,0,0,,75,79,79,0,0,0,0,0.215 8/1/19 8:00,30.07,73,49,53,73,9.1,76,76,75,98,76,76,0,,0,0,,76,81,81,0,0,0,0,0.233 8/1/19 8:30,30.08,74,50,54,74,9.2,78,78,76,97,77,77,0,,0,0,,78,84,84,0,0,0,0,0.269 8/1/19 9:00,30.08,75,52,56,75,9.6,80,80,78,94,78,78,0,,0,0,,80,87,87,0,0,0,0,0.304 8/1/19 9:30,30.09,75,52,56,75,9.5,81,81,80,88,77,78,0,,0,3,315,81,88,88,0,0,0,0,0.325 8/1/19 10:00,30.09,75,50,55,75,9.2,84,84,81,81,78,79,1,315,0.5,4,337.5,84,95,95,0,0,0,0,0.4 8/1/19 10:30,30.1,75,49,55,75,9,87,87,84,74,78,80,1,157.5,0.5,5,157.5,87,100,100,0,0,0,0,0.46 8/1/19 11:00,30.1,75,49,55,75,9,86,87,86,76,78,80,1,180,0.5,6,202.5,86,99,99,0,0,0,0,0.442 8/1/19 11:30,30.1,75,49,55,75,9,86,86,85,81,79,81,1,337.5,0.5,4,337.5,86,100,100,0,0,0,0,0.438 8/1/19 12:00,30.09,75,49,55,75,9,88,88,86,66,75,78,1,180,0.5,4,157.5,88,98,98,0,0,0,0,0.479 8/1/19 12:30,30.1,75,48,54,74,8.9,86,89,86,79,79,80,0,,0,4,157.5,86,99,99,0,0,0,0,0.433 8/1/19 13:00,30.13,74,47,53,74,8.8,74,86,74,90,70,71,2,45,1,9,315,74,76,76,1.07,12.8,0,0,0.177 8/1/19 13:30,30.13,74,48,53,73,8.9,72,74,72,96,71,72,0,,0,5,180,72,75,75,0.33,5.88,0,0,0.154 8/1/19 14:00,30.12,74,48,53,73,8.9,73,73,72,97,72,73,0,,0,2,315,73,76,76,0.01,0,0,0,0.173 8/1/19 14:30,30.1,74,49,53,73,9.1,74,74,73,96,72,73,0,,0,3,337.5,74,76,76,0.01,0,0,0,0.177 8/1/19 15:00,30.1,73,50,54,73,9.2,75,75,74,97,74,74,0,,0,0,,75,78,78,0.06,0.18,0,0,0.202 8/1/19 15:30,30.09,74,49,53,73,9.1,76,76,75,96,75,75,0,,0,0,,76,80,80,0.01,0.1,0,0,0.227 8/1/19 16:00,30.08,74,48,53,73,8.9,76,76,76,95,75,75,0,,0,0,,76,80,80,0,0,0,0,0.231 8/1/19 16:30,30.06,74,49,54,74,9.1,77,77,76,95,76,76,0,,0,0,,77,82,82,0,0,0,0,0.252 8/1/19 17:00,30.07,74,48,53,73,8.9,77,77,77,92,74,75,0,,0,3,202.5,77,81,81,0,0,0,0,0.25 8/1/19 17:30,30.08,74,49,54,74,9.1,77,77,77,94,75,75,0,,0,2,315,77,81,81,0,0,0,0,0.244 8/1/19 18:00,30.06,74,49,53,73,9.1,78,78,77,92,76,76,0,,0,3,315,78,83,83,0,0,0,0,0.275 8/1/19 18:30,30.07,74,47,52,73,8.8,79,79,78,90,76,77,0,,0,2,292.5,79,85,85,0,0,0,0,0.296 8/1/19 19:00,30.08,74,48,53,73,8.9,79,79,79,92,76,77,0,,0,1,292.5,79,84,84,0,0,0,0,0.283 8/1/19 19:30,30.07,73,48,52,72,8.9,78,79,78,94,76,76,0,,0,0,,78,83,83,0,0,0,0,0.265 8/1/19 20:00,30.06,73,49,53,73,9.1,77,78,77,95,75,76,0,,0,0,,77,82,82,0,0,0,0,0.25 8/1/19 20:30,30.05,73,48,52,72,8.9,76,77,76,96,75,75,0,,0,0,,76,80,80,0,0,0,0,0.231 8/1/19 21:00,30.04,73,49,53,72,9.1,76,76,76,97,75,75,0,,0,0,,76,79,79,0,0,0,0,0.221 8/1/19 21:30,30.04,72,47,51,71,8.8,75,76,75,97,74,75,0,,0,0,,75,79,79,0,0,0,0,0.215 8/1/19 22:00,30.03,72,51,53,71,9.4,75,75,75,98,74,75,0,,0,0,,75,79,79,0,0,0,0,0.21 8/1/19 22:30,30.02,71,48,50,70,8.9,75,75,75,98,74,75,0,,0,1,292.5,75,79,79,0,0,0,0,0.21 8/1/19 23:00,30.02,71,47,49,69,8.8,75,75,75,98,74,74,0,,0,2,45,75,78,78,0,0,0,0,0.206 8/1/19 23:30,30.02,70,46,48,68,8.6,75,75,75,98,74,74,0,,0,0,,75,78,78,0,0,0,0,0.204 8/2/19 0:00,30.02,69,47,48,67,8.8,75,75,75,98,74,74,0,,0,0,,75,78,78,0,0,0,0,0.204 8/2/19 0:30,30.03,70,48,49,68,8.9,75,75,75,98,74,74,0,,0,0,,75,78,78,0,0,0,0,0.2 8/2/19 1:00,30.03,70,47,49,68,8.8,74,75,74,98,74,74,0,,0,0,,74,78,78,0,0,0,0,0.196 8/2/19 1:30,30.03,70,48,49,68,8.9,74,74,74,98,74,74,0,,0,0,,74,77,77,0,0,0,0,0.194 8/2/19 2:00,30.03,70,47,49,68,8.8,74,74,74,98,74,74,0,,0,0,,74,77,77,0,0,0,0,0.192 8/2/19 2:30,30.03,70,48,50,68,8.9,74,74,74,99,74,74,0,,0,0,,74,78,78,0,0,0,0,0.196 8/2/19 3:00,30.03,70,48,49,68,8.9,74,74,74,99,74,74,0,,0,0,,74,78,78,0,0,0,0,0.196 8/2/19 3:30,30.02,70,48,50,69,8.9,74,74,74,99,74,74,0,,0,0,,74,78,78,0,0,0,0,0.196 8/2/19 4:00,30.02,70,49,50,69,9.1,74,74,74,99,74,74,0,,0,0,,74,78,78,0,0,0,0,0.194 8/2/19 4:30,30.02,70,48,50,69,8.9,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.192 8/2/19 5:00,30.01,70,48,50,69,8.9,74,74,74,99,73,73,0,,0,0,,74,77,77,0,0,0,0,0.181 8/2/19 5:30,30,70,47,49,69,8.8,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.185 8/2/19 6:00,29.99,71,48,50,69,8.9,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.19 8/2/19 6:30,30,71,49,51,69,9.1,74,74,74,99,74,74,0,,0,1,337.5,74,77,77,0,0,0,0,0.19 8/2/19 7:00,30,71,50,52,70,9.2,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.192 8/2/19 7:30,30.01,72,51,53,72,9.4,74,75,74,99,74,74,0,,0,0,,74,78,78,0,0,0,0,0.198 8/2/19 8:00,30.02,73,50,53,72,9.2,75,75,74,99,75,75,0,,0,0,,75,78,78,0,0,0,0,0.206 8/2/19 8:30,30.02,74,52,55,74,9.6,76,76,75,99,76,76,0,,0,1,337.5,76,80,80,0,0,0,0,0.231 8/2/19 9:00,30.03,75,52,56,75,9.6,78,78,76,96,77,77,1,337.5,0.5,4,315,78,84,84,0,0,0,0,0.271 8/2/19 9:30,30.03,75,52,56,75,9.6,79,79,78,94,77,78,0,,0,4,337.5,79,86,86,0,0,0,0,0.298 8/2/19 10:00,30.02,75,51,55,75,9.4,79,80,79,91,76,77,1,292.5,0.5,9,247.5,79,85,85,0,0,0,0,0.292 8/2/19 10:30,30.04,75,51,55,75,9.4,80,80,78,92,77,78,0,,0,3,337.5,80,87,87,0,0,0,0,0.31 8/2/19 11:00,30.05,74,51,55,74,9.4,80,80,80,92,78,78,0,,0,3,247.5,80,89,89,0,0,0,0,0.321 8/2/19 11:30,30.04,75,51,55,75,9.4,80,80,80,90,77,77,1,157.5,0.5,4,247.5,80,87,87,0,0,0,0,0.308 8/2/19 12:00,30.04,75,51,55,75,9.4,78,80,78,91,75,75,0,,0,8,337.5,78,82,82,0.01,0,0,0,0.26 8/2/19 12:30,30.05,75,50,55,74,9.2,77,78,77,96,75,76,0,,0,3,337.5,77,81,81,0.02,0.12,0,0,0.244 8/2/19 13:00,30.04,74,50,55,74,9.2,75,77,75,95,74,74,1,22.5,0.5,6,22.5,75,79,79,0.02,0.1,0,0,0.215 8/2/19 13:30,30.05,74,50,54,74,9.2,75,75,75,96,74,74,0,,0,3,315,75,78,78,0.03,0.1,0,0,0.206 8/2/19 14:00,30.04,74,51,55,74,9.4,75,75,75,97,74,74,0,,0,2,270,75,78,78,0.02,0.17,0,0,0.204 8/2/19 14:30,30.02,74,49,54,74,9.1,76,76,75,98,75,75,0,,0,0,,76,79,79,0.1,0.62,0,0,0.219 8/2/19 15:00,30,74,51,55,74,9.4,77,77,76,94,76,76,0,,0,3,292.5,77,82,82,0,0,0,0,0.258 8/2/19 15:30,29.99,74,50,54,74,9.2,80,80,77,92,78,78,0,,0,3,270,80,88,88,0,0,0,0,0.315 8/2/19 16:00,29.98,74,50,55,74,9.2,81,81,80,91,78,78,1,270,0.5,5,247.5,81,89,89,0,0,0,0,0.325 8/2/19 16:30,29.97,74,50,54,74,9.2,80,81,80,91,77,78,0,,0,6,270,80,88,88,0,0,0,0,0.315 8/2/19 17:00,29.97,74,50,55,74,9.2,80,81,80,88,77,77,0,,0,7,157.5,80,88,88,0,0,0,0,0.321 8/2/19 17:30,29.97,74,49,54,74,9.1,81,81,80,88,77,78,1,0,0.5,5,202.5,81,88,88,0,0,0,0,0.327 8/2/19 18:00,29.97,74,49,54,74,9.1,79,81,79,90,76,77,0,,0,3,22.5,79,85,85,0,0,0,0,0.294 8/2/19 18:30,29.97,74,48,53,74,8.9,78,79,78,93,75,76,0,,0,5,247.5,78,82,82,0,0,0,0,0.262 8/2/19 19:00,29.95,74,49,54,74,9.1,77,78,77,94,75,76,0,,0,0,,77,82,82,0,0,0,0,0.256 8/2/19 19:30,29.95,74,49,53,73,9.1,77,77,77,96,76,76,0,,0,0,,77,81,81,0,0,0,0,0.248 8/2/19 20:00,29.95,74,49,53,73,9.1,77,77,77,96,75,76,0,,0,0,,77,81,81,0,0,0,0,0.242 8/2/19 20:30,29.95,74,49,53,73,9.1,76,77,76,97,75,75,0,,0,0,,76,80,80,0,0,0,0,0.225 8/2/19 21:00,29.97,74,49,53,73,9.1,76,76,76,97,75,75,0,,0,0,,76,79,79,0,0,0,0,0.221 8/2/19 21:30,29.97,73,47,51,72,8.8,76,76,76,98,75,75,0,,0,0,,76,79,79,0,0,0,0,0.221 8/2/19 22:00,29.97,72,46,50,70,8.6,76,76,76,98,75,75,0,,0,0,,76,80,80,0,0,0,0,0.223 8/2/19 22:30,29.98,71,46,49,69,8.6,76,76,76,98,75,75,0,,0,0,,76,79,79,0,0,0,0,0.219 8/2/19 23:00,29.97,70,46,48,68,8.6,76,76,76,98,75,75,0,,0,0,,76,79,79,0,0,0,0,0.219 8/2/19 23:30,29.98,70,45,47,68,8.5,76,76,76,99,75,75,0,,0,0,,76,79,79,0,0,0,0,0.219 8/3/19 0:00,29.97,69,45,47,67,8.5,75,76,75,98,75,75,0,,0,0,,75,79,79,0,0,0,0,0.217 8/3/19 0:30,29.98,69,46,48,67,8.6,75,76,75,99,75,75,0,,0,0,,75,79,79,0,0,0,0,0.215 8/3/19 1:00,29.97,70,50,50,68,9.3,75,75,75,99,75,75,0,,0,0,,75,78,78,0,0,0,0,0.206 8/3/19 1:30,29.97,69,51,50,68,9.5,75,75,75,99,75,75,0,,0,0,,75,78,78,0,0,0,0,0.206 8/3/19 2:00,29.95,70,50,50,68,9.3,75,75,75,99,74,74,0,,0,0,,75,78,78,0,0,0,0,0.202 8/3/19 2:30,29.94,70,50,50,68,9.3,74,75,74,99,74,74,0,,0,0,,74,78,78,0,0,0,0,0.196 8/3/19 3:00,29.94,70,49,50,68,9.1,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.192 8/3/19 3:30,29.94,70,50,50,68,9.3,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.192 8/3/19 4:00,29.94,70,50,51,68,9.2,74,74,74,99,74,74,0,,0,0,,74,77,77,0,0,0,0,0.188 8/3/19 4:30,29.94,70,50,51,69,9.2,74,74,74,99,73,73,0,,0,0,,74,77,77,0,0,0,0,0.181 8/3/19 5:00,29.94,70,50,51,69,9.2,74,74,74,99,73,73,0,,0,0,,74,76,76,0,0,0,0,0.177 8/3/19 5:30,29.94,70,49,50,68,9.1,73,74,73,99,73,73,0,,0,0,,73,76,76,0,0,0,0,0.173 8/3/19 6:00,29.94,70,49,50,69,9.1,73,73,73,99,73,73,0,,0,0,,73,76,76,0,0,0,0,0.169 8/3/19 6:30,29.95,71,51,52,70,9.4,73,73,73,99,73,73,0,,0,0,,73,76,76,0,0,0,0,0.163 8/3/19 7:00,29.97,72,52,53,71,9.6,73,73,73,99,73,73,0,,0,0,,73,76,76,0,0,0,0,0.169 8/3/19 7:30,29.97,73,52,54,72,9.6,73,73,73,99,73,73,0,,0,0,,73,76,76,0,0,0,0,0.173 8/3/19 8:00,29.98,73,52,54,72,9.6,74,74,73,99,73,73,0,,0,0,,74,76,76,0,0,0,0,0.177 8/3/19 8:30,29.99,73,52,55,73,9.6,75,75,74,99,75,75,0,,0,3,315,75,78,78,0,0,0,0,0.206 8/3/19 9:00,29.99,74,52,55,74,9.6,77,77,75,99,76,77,1,315,0.5,3,315,77,82,82,0,0,0,0,0.246 8/3/19 9:30,29.99,74,52,56,74,9.6,78,78,77,93,76,76,1,337.5,0.5,4,337.5,78,83,83,0,0,0,0,0.265 8/3/19 10:00,29.99,74,52,56,74,9.6,81,81,78,86,76,77,1,292.5,0.5,6,270,81,88,88,0,0,0,0,0.329 8/3/19 10:30,30,74,53,56,74,9.7,83,83,81,80,76,78,2,315,1,6,292.5,83,92,92,0,0,0,0,0.375 8/3/19 11:00,30,75,51,55,75,9.4,85,85,83,71,75,77,2,337.5,1,8,337.5,85,94,94,0,0,0,0,0.421 8/3/19 11:30,29.99,75,50,55,75,9.2,86,86,84,74,77,79,1,337.5,0.5,6,270,86,97,97,0,0,0,0,0.438 8/3/19 12:00,29.99,75,49,54,74,9.1,86,86,85,70,75,77,1,225,0.5,4,315,86,96,96,0,0,0,0,0.44 8/3/19 12:30,29.98,75,49,54,75,9.1,86,87,86,70,75,78,1,0,0.5,5,315,86,96,96,0,0,0,0,0.444 8/3/19 13:00,29.97,75,54,57,75,9.9,88,88,86,66,75,77,2,0,1,7,292.5,88,97,97,0,0,0,0,0.471 8/3/19 13:30,29.97,74,51,55,74,9.4,89,89,88,66,76,78,2,315,1,8,315,89,100,100,0,0,0,0,0.494 8/3/19 14:00,29.95,75,51,55,75,9.4,88,89,88,71,78,80,2,315,1,8,315,88,102,102,0,0,0,0,0.49 8/3/19 14:30,29.95,74,49,54,74,9.1,89,89,88,66,76,79,3,337.5,1.5,9,292.5,89,102,102,0,0,0,0,0.506 8/3/19 15:00,29.94,74,48,53,74,8.9,92,92,89,59,75,78,1,247.5,0.5,6,270,92,103,103,0,0,0,0,0.552 8/3/19 15:30,29.93,74,48,53,74,8.9,91,92,90,64,77,79,1,337.5,0.5,7,292.5,91,104,104,0,0,0,0,0.535 8/3/19 16:00,29.93,73,48,53,73,8.9,91,91,90,61,75,78,1,22.5,0.5,4,90,91,102,102,0,0,0,0,0.535 8/3/19 16:30,29.92,73,47,51,72,8.8,91,91,91,56,73,77,1,315,0.5,4,337.5,91,101,101,0,0,0,0,0.55 8/3/19 17:00,29.91,74,47,52,73,8.8,91,92,91,65,78,80,1,315,0.5,6,292.5,91,105,105,0,0,0,0,0.54 8/3/19 17:30,29.92,74,46,52,73,8.6,87,91,87,76,79,81,1,180,0.5,7,225,87,102,102,0,0,0,0,0.467 8/3/19 18:00,29.91,74,46,52,73,8.6,89,89,87,71,78,80,1,202.5,0.5,6,180,89,103,103,0,0,0,0,0.494 8/3/19 18:30,29.92,74,46,52,73,8.6,86,89,86,77,78,80,1,45,0.5,7,225,86,98,98,0,0,0,0,0.435 8/3/19 19:00,29.92,74,46,52,73,8.6,83,86,83,84,78,79,0,,0,4,45,83,93,93,0,0,0,0,0.373 8/3/19 19:30,29.94,74,49,54,74,9.1,82,83,82,85,77,79,0,,0,2,67.5,82,92,92,0,0,0,0,0.363 8/3/19 20:00,29.95,74,47,52,73,8.8,81,82,81,86,77,78,0,,0,1,292.5,81,89,89,0,0,0,0,0.34 8/3/19 20:30,29.95,73,46,51,72,8.6,80,81,80,88,76,77,0,,0,1,247.5,80,86,86,0,0,0,0,0.306 8/3/19 21:00,29.96,73,47,52,73,8.8,79,80,79,91,76,76,0,,0,0,,79,84,84,0,0,0,0,0.283 8/3/19 21:30,29.98,73,46,51,72,8.6,78,79,78,92,75,76,0,,0,0,,78,83,83,0,0,0,0,0.271 8/3/19 22:00,29.98,72,46,50,71,8.6,77,78,77,93,75,76,0,,0,0,,77,82,82,0,0,0,0,0.256 8/3/19 22:30,29.99,71,45,49,70,8.4,77,77,77,94,75,76,0,,0,0,,77,81,81,0,0,0,0,0.248 8/3/19 23:00,29.99,71,45,48,69,8.4,77,77,77,95,75,76,0,,0,0,,77,81,81,0,0,0,0,0.244 8/3/19 23:30,29.99,70,45,48,69,8.4,76,77,76,96,75,75,0,,0,0,,76,81,81,0,0,0,0,0.238 8/4/19 0:00,29.99,70,45,48,68,8.5,76,76,76,96,75,75,0,,0,0,,76,80,80,0,0,0,0,0.233 8/4/19 0:30,29.98,70,45,47,68,8.5,76,76,76,96,75,75,0,,0,0,,76,80,80,0,0,0,0,0.229 8/4/19 1:00,29.99,69,46,48,67,8.6,76,76,76,97,75,75,0,,0,0,,76,80,80,0,0,0,0,0.229 8/4/19 1:30,29.98,69,45,47,67,8.5,76,76,76,97,75,75,0,,0,0,,76,80,80,0,0,0,0,0.227 8/4/19 2:00,29.97,69,45,46,67,8.5,76,76,76,97,75,75,0,,0,0,,76,80,80,0,0,0,0,0.227 8/4/19 2:30,29.97,69,47,48,67,8.8,76,76,76,98,75,75,0,,0,0,,76,80,80,0,0,0,0,0.227 8/4/19 3:00,29.96,70,47,48,68,8.8,76,76,76,98,75,76,0,,0,0,,76,80,80,0,0,0,0,0.229 8/4/19 3:30,29.96,69,47,48,68,8.8,77,77,76,99,76,76,0,,0,3,202.5,77,81,81,0,0,0,0,0.242 8/4/19 4:00,29.96,70,47,49,68,8.8,78,78,76,96,77,77,1,225,0.5,5,157.5,78,84,84,0,0,0,0,0.271 8/4/19 4:30,29.95,70,47,49,68,8.8,78,78,78,96,77,77,1,180,0.5,6,180,78,84,84,0,0,0,0,0.271 8/4/19 5:00,29.95,70,47,49,68,8.8,78,78,78,97,77,77,1,225,0.5,3,225,78,83,83,0,0,0,0,0.265 8/4/19 5:30,29.96,70,48,49,68,8.9,78,78,78,96,76,77,1,225,0.5,4,270,78,83,83,0,0,0,0,0.26 8/4/19 6:00,29.96,70,48,49,68,8.9,77,78,77,96,76,76,0,,0,3,202.5,77,82,82,0,0,0,0,0.25 8/4/19 6:30,29.98,71,49,51,70,9.1,77,77,77,96,75,76,0,,0,0,,77,81,81,0,0,0,0,0.242 8/4/19 7:00,29.98,72,50,53,71,9.2,76,77,76,97,75,75,0,,0,0,,76,80,80,0,0,0,0,0.227 8/4/19 7:30,30,73,49,52,72,9.1,76,76,76,98,75,75,0,,0,0,,76,79,79,0,0,0,0,0.221 8/4/19 8:00,30,73,50,53,72,9.2,76,76,76,99,76,76,0,,0,0,,76,80,80,0,0,0,0,0.227 8/4/19 8:30,30,74,51,54,73,9.4,78,78,76,96,77,77,1,247.5,0.5,4,247.5,78,84,84,0,0,0,0,0.269 8/4/19 9:00,30.01,74,51,55,74,9.4,80,80,78,92,77,78,1,247.5,0.5,3,202.5,80,87,87,0,0,0,0,0.308 8/4/19 9:30,30.01,75,50,55,74,9.2,82,82,80,87,78,79,0,,0,4,247.5,82,91,91,0,0,0,0,0.354 8/4/19 10:00,30.01,75,50,55,75,9.2,85,85,82,80,78,80,1,247.5,0.5,7,292.5,85,98,98,0,0,0,0,0.423 8/4/19 10:30,30.02,75,50,55,75,9.2,88,88,85,73,78,80,2,247.5,1,7,247.5,88,102,102,0,0,0,0,0.479 8/4/19 11:00,30.03,74,49,54,74,9.1,89,90,88,67,77,79,2,247.5,1,9,315,89,102,102,0,0,0,0,0.506 8/4/19 11:30,30.02,74,49,54,74,9.1,90,90,89,67,77,80,3,315,1.5,9,315,90,103,103,0,0,0,0,0.515 8/4/19 12:00,30.01,75,49,54,75,9.1,90,92,90,64,77,79,2,315,1,9,315,90,103,103,0,0,0,0,0.529 8/4/19 12:30,30.01,75,48,54,75,8.9,91,92,90,60,75,78,2,247.5,1,9,0,91,103,103,0,0,0,0,0.548 8/4/19 13:00,29.99,75,47,53,74,8.8,92,93,91,57,75,78,3,225,1.5,10,180,92,104,104,0,0,0,0,0.569 8/4/19 13:30,29.98,75,47,53,74,8.8,93,94,92,54,74,78,3,315,1.5,8,270,93,104,104,0,0,0,0,0.592 8/4/19 14:00,29.97,75,48,54,74,8.9,95,95,93,50,73,77,3,315,1.5,11,180,95,105,105,0,0,0,0,0.623 8/4/19 14:30,29.96,75,46,52,74,8.6,95,95,95,52,74,78,4,180,2,10,180,95,106,106,0,0,0,0,0.621 8/4/19 15:00,29.95,75,48,54,74,8.9,96,96,95,47,73,77,3,247.5,1.5,8,292.5,96,106,106,0,0,0,0,0.652 8/4/19 15:30,29.95,75,47,53,74,8.8,96,97,96,50,74,78,3,315,1.5,10,247.5,96,108,108,0,0,0,0,0.646 8/4/19 16:00,29.93,74,46,52,74,8.6,96,97,95,48,73,77,3,157.5,1.5,10,157.5,96,105,105,0,0,0,0,0.637 8/4/19 16:30,29.93,74,46,52,74,8.6,97,97,96,45,72,76,3,247.5,1.5,10,292.5,97,106,106,0,0,0,0,0.665 8/4/19 17:00,29.92,74,46,52,74,8.6,96,97,96,46,72,76,2,247.5,1,7,270,96,106,106,0,0,0,0,0.656 8/4/19 17:30,29.92,74,46,52,74,8.6,96,96,96,48,73,77,2,180,1,10,292.5,96,105,105,0,0,0,0,0.637 8/4/19 18:00,29.92,74,46,52,74,8.6,94,96,94,49,72,76,2,202.5,1,7,202.5,94,103,103,0,0,0,0,0.608 8/4/19 18:30,29.92,74,45,51,73,8.4,93,94,92,54,74,77,2,180,1,6,180,93,102,102,0,0,0,0,0.575 8/4/19 19:00,29.92,74,46,52,74,8.6,91,93,91,59,75,78,3,202.5,1.5,7,180,91,102,102,0,0,0,0,0.544 8/4/19 19:30,29.92,74,46,52,74,8.6,89,91,89,67,76,79,1,180,0.5,7,202.5,89,100,100,0,0,0,0,0.492 8/4/19 20:00,29.93,74,46,52,74,8.6,87,89,87,73,77,79,1,180,0.5,5,180,87,99,99,0,0,0,0,0.456 8/4/19 20:30,29.93,74,46,52,73,8.6,84,87,84,78,77,78,0,,0,5,202.5,84,94,94,0,0,0,0,0.4 8/4/19 21:00,29.94,74,47,52,73,8.8,82,84,82,80,76,77,0,,0,0,,82,90,90,0,0,0,0,0.363 8/4/19 21:30,29.96,74,49,53,73,9.1,82,82,82,82,76,78,0,,0,4,157.5,82,91,91,0,0,0,0,0.36 8/4/19 22:00,29.97,73,46,51,73,8.6,82,83,82,84,77,78,0,,0,4,157.5,82,91,91,0,0,0,0,0.356 8/4/19 22:30,29.98,73,50,54,73,9.2,81,82,81,88,77,78,0,,0,1,180,81,88,88,0,0,0,0,0.325 8/4/19 23:00,29.97,73,47,51,72,8.8,80,81,80,89,77,78,0,,0,3,135,80,88,88,0,0,0,0,0.323 8/4/19 23:30,29.97,72,46,50,71,8.6,80,80,80,89,77,77,0,,0,3,202.5,80,87,87,0,0,0,0,0.317 8/5/19 0:00,29.98,72,45,49,70,8.4,79,80,79,90,76,77,0,,0,1,292.5,79,86,86,0,0,0,0,0.3 8/5/19 0:30,29.98,71,45,49,69,8.4,81,81,79,79,74,76,1,202.5,0.5,3,202.5,81,87,87,0,0,0,0,0.333 8/5/19 1:00,29.99,70,45,48,69,8.4,80,81,80,82,74,75,0,,0,2,247.5,80,85,85,0,0,0,0,0.308 8/5/19 1:30,29.99,70,45,48,68,8.4,79,80,79,86,74,75,0,,0,2,270,79,84,84,0,0,0,0,0.288 8/5/19 2:00,30,70,45,47,68,8.5,78,79,78,87,74,75,0,,0,2,202.5,78,83,83,0,0,0,0,0.275 8/5/19 2:30,29.99,69,44,46,67,8.4,77,78,77,90,74,74,0,,0,0,,77,80,80,0,0,0,0,0.246 8/5/19 3:00,29.98,69,45,46,67,8.5,76,77,76,91,73,74,0,,0,0,,76,79,79,0,0,0,0,0.231 8/5/19 3:30,29.98,70,47,48,68,8.8,76,76,76,93,74,74,0,,0,0,,76,79,79,0,0,0,0,0.223 8/5/19 4:00,29.97,69,46,47,67,8.6,75,76,75,93,73,73,0,,0,0,,75,78,78,0,0,0,0,0.208 8/5/19 4:30,29.96,70,46,48,68,8.6,75,75,75,94,73,73,0,,0,0,,75,78,78,0,0,0,0,0.2 8/5/19 5:00,29.95,69,46,48,67,8.6,74,75,74,95,73,73,0,,0,2,225,74,77,77,0,0,0,0,0.196 8/5/19 5:30,29.95,70,45,47,68,8.5,75,75,74,95,73,74,0,,0,3,225,75,78,78,0,0,0,0,0.208 8/5/19 6:00,29.95,70,46,48,68,8.6,75,76,75,94,73,74,0,,0,2,247.5,75,78,78,0,0,0,0,0.212 8/5/19 6:30,29.96,70,46,48,68,8.6,75,75,75,95,74,74,0,,0,2,247.5,75,79,79,0,0,0,0,0.215 8/5/19 7:00,29.98,71,48,50,69,8.9,76,76,75,92,74,74,0,,0,3,247.5,76,80,80,0,0,0,0,0.235 8/5/19 7:30,30,72,48,51,71,8.9,77,77,76,92,74,75,0,,0,4,247.5,77,80,80,0,0,0,0,0.244 8/5/19 8:00,30.01,72,47,51,71,8.8,77,77,77,91,75,75,1,247.5,0.5,4,247.5,77,82,82,0,0,0,0,0.258 8/5/19 8:30,30.02,73,50,53,72,9.2,79,79,77,89,75,76,1,247.5,0.5,4,270,79,84,84,0,0,0,0,0.288 8/5/19 9:00,30.03,74,51,54,73,9.4,80,80,79,85,75,77,2,247.5,1,7,292.5,80,87,87,0,0,0,0,0.319 8/5/19 9:30,30.04,74,50,54,74,9.2,82,82,80,82,76,77,2,270,1,6,270,82,90,90,0,0,0,0,0.356 8/5/19 10:00,30.04,74,50,55,74,9.2,85,85,82,77,77,78,2,247.5,1,6,270,85,95,95,0,0,0,0,0.41 8/5/19 10:30,30.03,74,50,55,74,9.2,87,87,85,71,77,79,2,247.5,1,7,247.5,87,99,99,0,0,0,0,0.462 8/5/19 11:00,30.03,74,49,54,74,9.1,90,90,87,64,76,78,2,247.5,1,6,270,90,101,101,0,0,0,0,0.512 8/5/19 11:30,30.02,74,49,54,74,9.1,90,90,89,61,75,78,3,225,1.5,9,292.5,90,101,101,0,0,0,0,0.529 8/5/19 12:00,30.01,75,48,54,74,8.9,90,91,90,60,75,78,2,247.5,1,8,247.5,90,101,101,0,0,0,0,0.531 8/5/19 12:30,30.01,75,49,54,75,9.1,90,91,90,59,74,77,2,247.5,1,8,270,90,100,100,0,0,0,0,0.529 8/5/19 13:00,30,75,48,54,74,8.9,91,91,90,57,74,77,2,247.5,1,8,315,91,101,101,0,0,0,0,0.544 8/5/19 13:30,29.99,74,48,54,74,8.9,93,93,91,54,74,77,3,202.5,1.5,10,180,93,103,103,0,0,0,0,0.579 8/5/19 14:00,29.99,75,47,53,74,8.8,91,94,91,56,73,77,3,180,1.5,9,202.5,91,101,101,0,0,0,0,0.548 8/5/19 14:30,29.98,75,47,53,74,8.8,92,92,91,56,74,78,4,180,2,10,180,92,103,103,0,0,0,0,0.567 8/5/19 15:00,29.97,74,46,52,74,8.6,92,93,92,56,74,77,3,157.5,1.5,9,157.5,92,102,102,0,0,0,0,0.565 8/5/19 15:30,29.97,74,46,52,74,8.6,87,92,87,69,76,78,1,180,0.5,6,157.5,87,98,98,0,0,0,0,0.462 8/5/19 16:00,29.97,74,46,52,74,8.6,91,91,86,62,76,79,1,202.5,0.5,7,292.5,91,103,103,0,0,0,0,0.533 8/5/19 16:30,29.95,74,46,52,74,8.6,93,94,91,56,75,79,3,247.5,1.5,11,225,93,106,106,0,0,0,0,0.592 8/5/19 17:00,29.96,74,46,52,74,8.6,93,94,93,53,73,77,3,247.5,1.5,10,270,93,103,103,0,0,0,0,0.583 8/5/19 17:30,29.96,74,47,52,73,8.8,88,93,88,68,76,79,3,315,1.5,11,292.5,88,100,100,0,0,0,0,0.483 8/5/19 18:00,29.98,74,46,52,74,8.6,87,88,87,71,76,78,2,67.5,1,9,292.5,87,97,97,0,0,0,0,0.45 8/5/19 18:30,29.98,74,47,52,73,8.8,84,87,84,80,77,78,0,,0,3,202.5,84,94,94,0,0,0,0,0.392 8/5/19 19:00,29.98,74,47,52,73,8.8,82,84,82,79,75,77,0,,0,2,337.5,82,89,89,0,0,0,0,0.356 8/5/19 19:30,30,74,47,52,73,8.8,80,82,80,82,74,75,1,202.5,0.5,4,202.5,80,85,85,0,0,0,0,0.306 8/5/19 20:00,30,74,47,52,73,8.8,78,80,78,86,74,75,1,202.5,0.5,4,202.5,78,82,82,0,0,0,0,0.275 8/5/19 20:30,30,73,45,50,72,8.4,77,78,77,89,74,75,0,,0,5,180,77,81,81,0,0,0,0,0.254 8/5/19 21:00,30.01,73,46,51,72,8.6,76,77,76,91,74,74,0,,0,3,180,76,80,80,0,0,0,0,0.24 8/5/19 21:30,30.01,73,47,51,72,8.8,76,76,76,92,74,74,0,,0,3,180,76,79,79,0,0,0,0,0.229 8/5/19 22:00,30.01,73,48,52,72,8.9,76,76,76,93,74,74,0,,0,2,315,76,79,79,0,0,0,0,0.225 8/5/19 22:30,30,72,45,49,70,8.4,76,76,76,92,74,75,0,,0,2,315,76,80,80,0,0,0,0,0.238 8/5/19 23:00,29.99,71,45,49,69,8.4,76,76,76,92,74,74,0,,0,2,225,76,79,79,0,0,0,0,0.231 8/5/19 23:30,29.99,70,45,48,68,8.4,77,77,76,88,73,74,1,202.5,0.5,5,202.5,77,81,81,0,0,0,0,0.252 8/6/19 0:00,30,70,44,47,67,8.4,77,77,77,90,74,75,1,202.5,0.5,5,157.5,77,81,81,0,0,0,0,0.252 8/6/19 0:30,30,69,44,46,67,8.4,77,77,77,90,74,75,0,,0,4,157.5,77,81,81,0,0,0,0,0.254 8/6/19 1:00,30,70,45,47,67,8.5,78,78,77,88,74,75,1,202.5,0.5,6,270,78,82,82,0,0,0,0,0.267 8/6/19 1:30,30,70,46,48,68,8.6,78,78,78,88,74,75,1,202.5,0.5,5,225,78,83,83,0,0,0,0,0.273 8/6/19 2:00,29.98,70,45,47,68,8.5,78,78,78,88,74,75,2,202.5,1,8,157.5,78,83,83,0,0,0,0,0.273 8/6/19 2:30,29.98,70,46,48,68,8.6,78,78,78,88,74,75,2,180,1,6,180,78,82,82,0,0,0,0,0.267 8/6/19 3:00,29.97,70,45,48,68,8.5,78,78,78,89,74,75,1,225,0.5,4,247.5,78,82,82,0,0,0,0,0.269 8/6/19 3:30,29.97,70,46,48,68,8.6,78,78,78,89,74,75,1,202.5,0.5,5,157.5,78,82,82,0,0,0,0,0.271 8/6/19 4:00,29.97,70,46,48,68,8.6,78,78,78,90,75,75,1,247.5,0.5,4,157.5,78,82,82,0,0,0,0,0.265 8/6/19 4:30,29.98,70,46,48,68,8.6,77,78,77,92,74,75,0,,0,2,247.5,77,81,81,0,0,0,0,0.25 8/6/19 5:00,29.98,70,45,48,68,8.4,77,77,77,92,74,75,0,,0,4,180,77,81,81,0,0,0,0,0.246 8/6/19 5:30,29.98,70,46,49,69,8.6,77,77,77,93,75,75,0,,0,3,202.5,77,81,81,0,0,0,0,0.248 8/6/19 6:00,29.99,70,47,49,68,8.8,76,77,76,94,74,75,0,,0,1,202.5,76,80,80,0,0,0,0,0.235 8/6/19 6:30,30,70,45,48,68,8.4,76,76,76,95,74,75,0,,0,0,,76,80,80,0,0,0,0,0.229 8/6/19 7:00,30,71,48,50,70,8.9,76,76,76,96,74,75,0,,0,0,,76,79,79,0,0,0,0,0.223 8/6/19 7:30,30.01,72,48,51,71,8.9,76,76,76,96,75,75,0,,0,0,,76,80,80,0,0,0,0,0.225 8/6/19 8:00,30.01,72,48,52,71,8.9,76,76,76,96,75,75,0,,0,0,,76,80,80,0,0,0,0,0.233 8/6/19 8:30,30.02,73,49,53,72,9.1,78,78,76,94,76,76,1,225,0.5,4,270,78,83,83,0,0,0,0,0.265 8/6/19 9:00,30.02,74,51,54,73,9.4,80,80,78,88,76,77,1,270,0.5,5,315,80,87,87,0,0,0,0,0.312 8/6/19 9:30,30.02,74,51,55,74,9.4,82,82,80,83,76,77,2,270,1,7,270,82,90,90,0,0,0,0,0.348 8/6/19 10:00,30.02,74,50,55,74,9.2,84,84,82,79,77,78,2,315,1,7,292.5,84,93,93,0,0,0,0,0.392 8/6/19 10:30,30.02,74,49,54,74,9.1,86,86,84,75,77,79,2,315,1,5,315,86,96,96,0,0,0,0,0.429 8/6/19 11:00,30.03,74,49,54,74,9.1,87,87,86,69,76,78,2,315,1,7,292.5,87,98,98,0,0,0,0,0.462 8/6/19 11:30,30.02,74,48,54,74,8.9,89,89,87,65,75,78,2,247.5,1,9,247.5,89,99,99,0,0,0,0,0.492 8/6/19 12:00,30.01,75,49,54,74,9.1,88,89,88,63,74,77,2,315,1,10,292.5,88,97,97,0,0,0,0,0.483 8/6/19 12:30,30,74,49,54,74,9.1,91,91,88,59,75,78,3,247.5,1.5,8,0,91,102,102,0,0,0,0,0.544 8/6/19 13:00,29.98,74,47,53,74,8.8,93,93,91,56,75,78,2,247.5,1,8,292.5,93,104,104,0,0,0,0,0.581 8/6/19 13:30,29.97,74,47,53,74,8.8,93,93,92,54,74,78,3,292.5,1.5,12,157.5,93,104,104,0,0,0,0,0.587 8/6/19 14:00,29.98,74,48,53,74,8.9,87,93,87,68,75,77,3,337.5,1.5,11,247.5,87,96,96,0,0,0,0,0.45 8/6/19 14:30,29.97,74,47,53,74,8.8,84,87,82,83,78,79,2,157.5,1,11,157.5,84,94,94,0.02,0.16,0,0,0.385 8/6/19 15:00,29.97,74,47,53,74,8.8,83,85,83,78,75,77,3,337.5,1.5,10,315,83,91,91,0,0,0,0,0.375 8/6/19 15:30,29.96,74,46,52,73,8.6,86,86,83,71,75,78,1,202.5,0.5,6,202.5,86,96,96,0,0,0,0,0.435 8/6/19 16:00,29.95,74,46,52,73,8.6,88,88,86,64,75,77,2,202.5,1,6,225,88,98,98,0,0,0,0,0.488 8/6/19 16:30,29.95,74,46,52,73,8.6,90,90,88,60,75,78,3,180,1.5,8,180,90,101,101,0,0,0,0,0.529 8/6/19 17:00,29.94,74,47,52,73,8.8,90,91,89,60,75,78,3,180,1.5,9,247.5,90,101,101,0,0,0,0,0.531 8/6/19 17:30,29.94,74,46,52,73,8.6,90,90,89,61,74,77,1,157.5,0.5,5,157.5,90,99,99,0,0,0,0,0.51 8/6/19 18:00,29.95,74,47,52,73,8.8,90,90,89,67,78,80,3,180,1.5,7,202.5,90,104,104,0,0,0,0,0.521 8/6/19 18:30,29.95,74,46,51,73,8.6,88,90,88,69,76,79,3,180,1.5,12,157.5,88,100,100,0,0,0,0,0.477 8/6/19 19:00,29.96,73,46,51,73,8.6,84,88,84,76,76,78,3,157.5,1.5,11,157.5,84,94,94,0,0,0,0,0.402 8/6/19 19:30,29.95,73,45,50,72,8.4,83,84,83,77,75,77,2,157.5,1,9,180,83,91,91,0,0,0,0,0.373 8/6/19 20:00,29.95,73,46,51,72,8.6,82,83,82,83,76,78,1,180,0.5,6,180,82,90,90,0,0,0,0,0.352 8/6/19 20:30,29.95,73,45,50,72,8.4,80,82,80,87,76,77,1,180,0.5,4,180,80,88,88,0,0,0,0,0.323 8/6/19 21:00,29.95,73,46,51,72,8.6,81,81,80,83,75,76,2,180,1,9,180,81,87,87,0,0,0,0,0.325 8/6/19 21:30,29.97,72,45,50,71,8.4,79,81,79,87,75,76,1,180,0.5,4,157.5,79,85,85,0,0,0,0,0.298 8/6/19 22:00,29.97,72,45,49,70,8.4,80,80,79,85,75,76,1,180,0.5,5,157.5,80,86,86,0,0,0,0,0.308 8/6/19 22:30,29.98,71,45,49,70,8.4,80,80,80,85,75,76,2,202.5,1,5,180,80,86,86,0,0,0,0,0.31 8/6/19 23:00,29.99,71,44,48,69,8.3,80,80,80,86,75,76,1,202.5,0.5,5,157.5,80,85,85,0,0,0,0,0.302 8/6/19 23:30,29.98,70,44,48,68,8.3,79,80,79,86,75,76,1,202.5,0.5,6,202.5,79,85,85,0,0,0,0,0.298 8/7/19 0:00,29.99,70,44,47,68,8.3,79,79,79,85,74,75,2,202.5,1,7,157.5,79,84,84,0,0,0,0,0.294 8/7/19 0:30,29.99,70,44,47,67,8.4,79,79,79,87,75,76,2,202.5,1,6,202.5,79,84,84,0,0,0,0,0.288 8/7/19 1:00,29.98,69,44,46,67,8.4,78,79,78,89,75,76,2,225,1,6,202.5,78,83,83,0,0,0,0,0.277 8/7/19 1:30,29.97,69,45,46,67,8.5,78,78,78,90,74,75,2,180,1,5,180,78,82,82,0,0,0,0,0.262 8/7/19 2:00,29.96,69,44,46,67,8.4,77,78,77,90,74,75,2,180,1,7,157.5,77,81,81,0,0,0,0,0.256 8/7/19 2:30,29.96,69,45,47,67,8.5,77,77,77,91,74,75,2,202.5,1,6,180,77,81,81,0,0,0,0,0.248 8/7/19 3:00,29.97,69,45,47,67,8.5,77,77,77,91,74,75,1,180,0.5,3,247.5,77,80,80,0,0,0,0,0.244 8/7/19 3:30,29.98,69,44,46,67,8.4,76,77,76,93,74,75,0,,0,2,247.5,76,80,80,0,0,0,0,0.235 8/7/19 4:00,29.97,70,46,48,68,8.6,76,76,76,93,74,74,0,,0,2,270,76,80,80,0,0,0,0,0.231 8/7/19 4:30,29.96,70,46,48,68,8.6,76,76,76,93,74,74,0,,0,2,202.5,76,79,79,0,0,0,0,0.229 8/7/19 5:00,29.97,70,47,49,68,8.8,76,76,76,95,74,75,0,,0,2,247.5,76,79,79,0,0,0,0,0.223 8/7/19 5:30,29.97,70,46,48,68,8.6,76,76,76,95,74,74,0,,0,2,270,76,79,79,0,0,0,0,0.221 8/7/19 6:00,29.97,70,47,49,68,8.8,76,76,76,97,75,75,0,,0,2,202.5,76,79,79,0,0,0,0,0.221 8/7/19 6:30,29.97,70,47,49,68,8.8,76,76,76,96,75,75,1,180,0.5,4,157.5,76,80,80,0,0,0,0,0.225 8/7/19 7:00,29.98,71,48,50,70,8.9,76,76,76,96,75,75,0,,0,4,157.5,76,80,80,0,0,0,0,0.225 8/7/19 7:30,30,72,48,51,71,8.9,76,76,76,96,75,75,1,180,0.5,3,247.5,76,81,81,0,0,0,0,0.238 8/7/19 8:00,30,73,51,54,72,9.4,77,77,76,93,75,76,1,225,0.5,4,247.5,77,82,82,0,0,0,0,0.254 8/7/19 8:30,30.01,74,50,54,73,9.2,78,78,77,92,75,76,3,225,1.5,14,157.5,78,82,82,0,0,0,0,0.26 8/7/19 9:00,30.01,74,50,54,74,9.2,78,78,77,92,75,76,2,225,1,9,247.5,78,82,82,0,0,0,0,0.262 8/7/19 9:30,30.01,74,50,54,74,9.2,78,78,78,91,75,76,2,202.5,1,7,247.5,78,83,83,0,0,0,0,0.273 8/7/19 10:00,30.01,74,50,54,74,9.2,80,80,78,88,76,77,3,180,1.5,7,270,80,86,86,0,0,0,0,0.306 8/7/19 10:30,30.01,74,49,54,74,9.1,80,80,80,87,76,77,3,180,1.5,8,157.5,80,88,88,0,0,0,0,0.323 8/7/19 11:00,30.01,74,50,55,74,9.2,84,84,80,82,78,79,2,202.5,1,8,202.5,84,95,95,0,0,0,0,0.394 8/7/19 11:30,30.01,75,50,55,74,9.2,86,86,84,79,78,80,3,180,1.5,9,202.5,86,99,99,0,0,0,0,0.431 8/7/19 12:00,30,75,49,54,74,9.1,86,87,86,76,78,80,3,180,1.5,8,202.5,86,99,99,0,0,0,0,0.446 8/7/19 12:30,29.99,75,48,54,74,8.9,88,88,86,75,79,81,2,157.5,1,7,180,88,103,103,0,0,0,0,0.479 8/7/19 13:00,29.98,74,49,54,74,9.1,86,88,86,77,78,80,2,180,1,8,180,86,98,98,0,0,0,0,0.435 8/7/19 13:30,29.99,74,48,53,74,8.9,84,86,84,80,77,79,2,180,1,9,247.5,84,94,94,0,0,0,0,0.396 8/7/19 14:00,29.99,74,46,52,73,8.6,82,84,82,82,76,77,3,202.5,1.5,7,247.5,82,89,89,0,0,0,0,0.348 8/7/19 14:30,29.96,73,45,50,72,8.4,80,82,80,83,75,76,3,202.5,1.5,7,180,80,87,87,0,0,0,0,0.323 8/7/19 15:00,29.96,73,46,51,72,8.6,80,80,80,86,75,76,3,180,1.5,8,180,80,86,86,0,0,0,0,0.31 8/7/19 15:30,29.95,73,48,52,72,8.9,82,82,80,82,76,77,3,180,1.5,9,180,82,90,90,0,0,0,0,0.354 8/7/19 16:00,29.95,73,47,52,72,8.8,86,86,82,75,77,79,4,180,2,11,202.5,86,97,97,0,0,0,0,0.431 8/7/19 16:30,29.94,73,47,52,72,8.8,88,88,86,71,77,79,3,202.5,1.5,9,157.5,88,101,101,0,0,0,0,0.477 8/7/19 17:00,29.93,74,48,53,73,8.9,88,88,88,69,77,79,3,202.5,1.5,8,135,88,100,100,0,0,0,0,0.483 8/7/19 17:30,29.92,74,46,52,73,8.6,87,88,87,73,77,79,3,180,1.5,7,180,87,98,98,0,0,0,0,0.45 8/7/19 18:00,29.93,74,47,52,73,8.8,86,87,86,76,77,79,3,202.5,1.5,7,202.5,86,97,97,0,0,0,0,0.433 8/7/19 18:30,29.93,73,47,52,72,8.8,86,86,86,76,78,79,3,202.5,1.5,9,157.5,86,99,99,0,0,0,0,0.442 8/7/19 19:00,29.93,73,46,51,72,8.6,84,86,84,82,78,80,3,202.5,1.5,12,157.5,84,96,96,0,0,0,0,0.402 8/7/19 19:30,29.93,73,46,51,72,8.6,83,84,83,85,78,79,3,180,1.5,10,247.5,83,93,93,0,0,0,0,0.369 8/7/19 20:00,29.95,73,47,51,72,8.8,82,83,82,86,77,78,2,180,1,8,180,82,91,91,0,0,0,0,0.35 8/7/19 20:30,29.94,73,46,51,72,8.6,81,82,81,88,77,78,2,180,1,7,180,81,89,89,0,0,0,0,0.333 8/7/19 21:00,29.95,73,48,52,72,8.9,80,81,80,88,76,77,2,180,1,7,180,80,87,87,0,0,0,0,0.319 8/7/19 21:30,29.96,72,46,50,71,8.6,80,80,80,88,76,77,1,202.5,0.5,5,157.5,80,86,86,0,0,0,0,0.31 8/7/19 22:00,29.97,72,45,49,70,8.4,80,80,80,88,76,77,1,202.5,0.5,4,202.5,80,86,86,0,0,0,0,0.306 8/7/19 22:30,29.98,71,45,48,69,8.4,80,80,80,88,76,77,1,225,0.5,5,135,80,86,86,0,0,0,0,0.302 8/7/19 23:00,29.98,70,45,48,68,8.4,79,80,79,89,76,77,1,202.5,0.5,6,180,79,85,85,0,0,0,0,0.3 8/7/19 23:30,29.97,70,51,51,69,9.4,79,80,79,90,76,77,1,225,0.5,5,202.5,79,86,86,0,0,0,0,0.3 8/8/19 0:00,29.97,70,48,50,69,8.9,79,79,79,91,76,77,1,225,0.5,3,270,79,85,85,0,0,0,0,0.294 8/8/19 0:30,29.96,70,46,48,68,8.6,79,79,79,92,76,77,2,180,1,5,180,79,85,85,0,0,0,0,0.29 8/8/19 1:00,29.97,69,45,47,67,8.5,78,79,78,93,76,77,2,202.5,1,5,180,78,84,84,0,0,0,0,0.281 8/8/19 1:30,29.97,70,46,48,68,8.6,78,79,78,93,76,76,1,180,0.5,6,180,78,83,83,0,0,0,0,0.273 8/8/19 2:00,29.97,70,47,48,68,8.8,78,78,78,94,76,76,2,180,1,5,180,78,83,83,0,0,0,0,0.262 8/8/19 2:30,29.96,70,47,49,68,8.8,77,78,77,94,75,76,2,180,1,5,157.5,77,82,82,0,0,0,0,0.254 8/8/19 3:00,29.95,70,48,50,68,8.9,77,77,77,94,75,76,2,202.5,1,7,247.5,77,81,81,0,0,0,0,0.25 8/8/19 3:30,29.94,70,47,49,68,8.8,77,77,77,95,75,76,2,180,1,7,225,77,82,82,0,0,0,0,0.25 8/8/19 4:00,29.94,70,47,49,68,8.8,77,77,77,95,75,76,2,202.5,1,9,157.5,77,82,82,0,0,0,0,0.25 8/8/19 4:30,29.94,70,47,49,68,8.8,77,77,77,95,75,76,1,202.5,0.5,4,202.5,77,81,81,0,0,0,0,0.248 8/8/19 5:00,29.95,70,46,49,69,8.6,77,77,77,96,76,76,1,225,0.5,5,180,77,81,81,0.01,0,0,0,0.246 8/8/19 5:30,29.95,70,47,49,68,8.8,77,77,77,96,76,76,1,202.5,0.5,5,202.5,77,82,82,0,0,0,0,0.25 8/8/19 6:00,29.96,70,47,49,69,8.8,77,77,77,96,76,76,1,202.5,0.5,4,157.5,77,82,82,0,0,0,0,0.25 8/8/19 6:30,29.96,71,47,49,69,8.8,77,77,77,96,76,76,2,225,1,6,157.5,77,81,81,0,0,0,0,0.248 8/8/19 7:00,29.97,71,49,51,70,9.1,77,77,77,97,76,76,2,202.5,1,6,180,77,82,82,0,0,0,0,0.248 8/8/19 7:30,29.98,72,49,52,71,9.1,77,77,77,97,76,76,2,202.5,1,5,202.5,77,82,82,0,0,0,0,0.252 8/8/19 8:00,29.99,72,49,52,71,9.1,78,78,77,96,76,77,2,202.5,1,8,157.5,78,83,83,0,0,0,0,0.26 8/8/19 8:30,30.01,73,50,53,72,9.2,78,78,78,95,77,77,2,247.5,1,7,202.5,78,84,84,0,0,0,0,0.277 8/8/19 9:00,30.01,74,53,55,73,9.7,80,80,78,94,78,78,2,202.5,1,6,247.5,80,87,87,0,0,0,0,0.304 8/8/19 9:30,30.01,74,52,55,74,9.6,81,81,80,92,79,79,2,247.5,1,5,157.5,81,91,91,0,0,0,0,0.335 8/8/19 10:00,30.01,74,49,54,74,9.1,83,83,81,88,79,80,2,247.5,1,9,247.5,83,94,94,0,0,0,0,0.371 8/8/19 10:30,30,74,50,54,74,9.2,85,85,83,83,79,81,3,247.5,1.5,9,292.5,85,99,99,0,0,0,0,0.419 8/8/19 11:00,30,74,48,53,74,8.9,87,87,85,79,80,81,2,225,1,8,270,87,102,102,0,0,0,0,0.456 8/8/19 11:30,30,74,49,53,73,9.1,89,89,87,76,80,82,3,247.5,1.5,11,225,89,106,106,0,0,0,0,0.494 8/8/19 12:00,30,74,48,53,73,8.9,91,91,89,68,79,81,3,247.5,1.5,9,247.5,91,107,107,0,0,0,0,0.54 8/8/19 12:30,30,74,48,53,73,8.9,92,92,91,66,79,81,3,247.5,1.5,11,315,92,109,109,0,0,0,0,0.562 8/8/19 13:00,30,74,48,53,73,8.9,92,93,92,64,79,81,3,315,1.5,11,270,92,109,109,0,0,0,0,0.573 8/8/19 13:30,29.99,74,47,52,73,8.8,95,95,92,59,78,81,3,247.5,1.5,10,225,95,112,112,0,0,0,0,0.621 8/8/19 14:00,29.98,73,46,51,73,8.6,94,95,93,59,77,80,3,337.5,1.5,10,315,94,109,109,0,0,0,0,0.604 8/8/19 14:30,29.98,74,46,52,73,8.6,96,96,94,51,75,79,3,225,1.5,9,225,96,108,108,0,0,0,0,0.646 8/8/19 15:00,29.95,74,46,52,73,8.6,96,97,96,53,76,79,3,247.5,1.5,10,180,96,110,110,0,0,0,0,0.642 8/8/19 15:30,29.96,73,45,51,73,8.4,96,97,95,51,75,79,3,180,1.5,9,157.5,96,110,110,0,0,0,0,0.656 8/8/19 16:00,29.94,73,45,51,72,8.4,97,98,96,50,76,79,2,225,1,8,247.5,97,111,111,0,0,0,0,0.673 8/8/19 16:30,29.94,73,44,50,72,8.3,93,97,93,62,78,81,4,180,2,11,157.5,93,109,109,0,0,0,0,0.581 8/8/19 17:00,29.95,73,44,50,72,8.3,90,93,90,64,77,79,4,225,2,10,247.5,90,103,103,0,0,0,0,0.529 8/8/19 17:30,29.94,73,44,50,72,8.3,89,90,89,65,76,79,3,225,1.5,13,247.5,89,101,101,0,0,0,0,0.508 8/8/19 18:00,29.93,73,44,50,72,8.3,89,90,89,66,76,79,3,202.5,1.5,11,180,89,102,102,0,0,0,0,0.506 8/8/19 18:30,29.93,73,45,51,72,8.4,88,89,88,71,77,79,1,202.5,0.5,5,337.5,88,101,101,0,0,0,0,0.477 8/8/19 19:00,29.93,73,44,50,72,8.3,87,88,87,65,74,77,3,247.5,1.5,12,180,87,96,96,0,0,0,0,0.467 8/8/19 19:30,29.95,73,44,50,72,8.3,87,87,87,66,74,77,2,247.5,1,9,270,87,95,95,0,0,0,0,0.452 8/8/19 20:00,29.96,73,45,50,72,8.4,85,87,85,71,75,77,1,247.5,0.5,3,247.5,85,93,93,0,0,0,0,0.417 8/8/19 20:30,29.96,73,44,50,72,8.3,84,85,84,75,75,77,1,225,0.5,4,180,84,92,92,0,0,0,0,0.39 8/8/19 21:00,29.99,73,44,49,71,8.3,83,84,83,74,74,76,1,225,0.5,3,180,83,89,89,0,0,0,0,0.371 8/8/19 21:30,29.98,72,44,49,71,8.3,82,83,82,75,73,75,1,202.5,0.5,4,202.5,82,88,88,0,0,0,0,0.354 8/8/19 22:00,29.99,72,47,51,71,8.8,81,82,81,76,73,75,0,,0,3,315,81,86,86,0,0,0,0,0.335 8/8/19 22:30,30,72,48,51,71,8.9,80,81,80,78,73,74,1,225,0.5,3,225,80,85,85,0,0,0,0,0.317 8/8/19 23:00,29.99,72,46,50,70,8.6,79,80,79,83,74,75,0,,0,2,225,79,84,84,0,0,0,0,0.3 8/8/19 23:30,29.99,71,45,48,69,8.4,79,79,79,80,72,74,1,225,0.5,5,202.5,79,83,83,0,0,0,0,0.296 8/9/19 0:00,29.98,70,44,47,68,8.3,79,79,79,81,73,74,1,225,0.5,4,225,79,84,84,0,0,0,0,0.298 8/9/19 0:30,29.97,70,44,47,68,8.4,79,79,79,84,74,75,1,202.5,0.5,3,202.5,79,84,84,0,0,0,0,0.29 8/9/19 1:00,29.98,69,44,46,67,8.4,79,79,79,86,74,75,1,202.5,0.5,4,202.5,79,84,84,0,0,0,0,0.288 8/9/19 1:30,29.97,69,44,46,67,8.4,79,79,79,88,75,76,1,202.5,0.5,4,180,79,84,84,0,0,0,0,0.285 8/9/19 2:00,29.95,69,44,46,67,8.4,79,79,79,89,75,76,2,225,1,6,270,79,84,84,0,0,0,0,0.29 8/9/19 2:30,29.94,69,44,47,67,8.4,79,79,79,89,75,76,2,225,1,6,157.5,79,84,84,0,0,0,0,0.29 8/9/19 3:00,29.93,70,45,47,67,8.5,79,79,79,90,75,76,1,247.5,0.5,4,225,79,84,84,0,0,0,0,0.283 8/9/19 3:30,29.93,69,44,46,67,8.4,78,79,78,91,75,76,1,225,0.5,4,225,78,83,83,0,0,0,0,0.275 8/9/19 4:00,29.93,70,46,48,68,8.6,78,79,78,91,76,76,1,247.5,0.5,5,157.5,78,84,84,0,0,0,0,0.281 8/9/19 4:30,29.92,70,45,47,68,8.5,78,78,78,92,76,76,1,247.5,0.5,4,247.5,78,84,84,0,0,0,0,0.277 8/9/19 5:00,29.92,70,44,47,68,8.4,78,78,78,93,76,77,1,202.5,0.5,5,202.5,78,84,84,0,0,0,0,0.277 8/9/19 5:30,29.93,70,46,48,68,8.6,78,78,78,94,77,77,2,225,1,8,180,78,84,84,0,0,0,0,0.279 8/9/19 6:00,29.94,70,46,48,68,8.6,79,79,78,94,77,77,2,247.5,1,7,202.5,79,85,85,0,0,0,0,0.283 8/9/19 6:30,29.95,70,45,48,68,8.4,78,78,78,94,76,77,1,247.5,0.5,6,270,78,84,84,0,0,0,0,0.277 8/9/19 7:00,29.96,71,48,50,69,8.9,78,78,78,95,77,77,1,247.5,0.5,4,270,78,84,84,0,0,0,0,0.273 8/9/19 7:30,29.97,72,47,51,72,8.8,78,78,78,95,77,77,1,270,0.5,4,315,78,84,84,0,0,0,0,0.277 8/9/19 8:00,29.98,73,47,52,72,8.8,79,79,78,94,78,78,1,270,0.5,7,270,79,87,87,0,0,0,0,0.3 8/9/19 8:30,29.98,74,49,53,73,9.1,81,81,79,92,78,79,2,270,1,7,270,81,89,89,0,0,0,0,0.327 8/9/19 9:00,29.98,75,53,57,75,9.7,82,82,81,89,79,80,2,270,1,9,315,82,93,93,0,0,0,0,0.365 8/9/19 9:30,29.98,75,52,56,75,9.5,84,84,82,84,79,80,2,270,1,9,247.5,84,97,97,0,0,0,0,0.402
