diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml
index 7b5008fdf..6948269af 100644
--- a/.github/workflows/develop.yml
+++ b/.github/workflows/develop.yml
@@ -2,35 +2,34 @@ name: develop
on:
push:
- branches: [ develop ]
+ branches: [develop]
pull_request:
- branches: [ develop ]
+ branches: [develop]
jobs:
build:
-
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
-
- - name: Setup system
- run: sudo ./setup.sh --local
-
- - name: Build gridlabd
- run: sudo ./build.sh --system --parallel
-
- - name: Install openfido
- run: curl -sL https://raw.githubusercontent.com/openfido/cli/main/install.sh | sudo sh
-
- - name: Validate system
- run: sudo gridlabd -D keep_progress=TRUE -T 0 --validate -D github_actions=yes || ( sudo utilities/save_validation_errors ; false )
-
- - name: Upload artifacts on failure
- uses: actions/upload-artifact@v2
- if: failure()
- with:
- name: validate-result
- path: |
- validate.txt
- validate.tar.gz
\ No newline at end of file
+ - uses: actions/checkout@v3
+
+ - name: Setup system
+ run: sudo ./setup.sh --local
+
+ - name: Build gridlabd
+ run: sudo ./build.sh --system --parallel
+
+ - name: Install openfido
+ run: curl -sL https://raw.githubusercontent.com/openfido/cli/main/install.sh | sudo sh
+
+ - name: Validate system
+ run: sudo gridlabd -D keep_progress=TRUE -T 0 --validate -D github_actions=yes || ( sudo utilities/save_validation_errors ; false )
+
+ - name: Upload artifacts on failure
+ uses: actions/upload-artifact@v2
+ if: failure()
+ with:
+ name: validate-result
+ path: |
+ validate.txt
+ validate.tar.gz
diff --git a/COPYRIGHT b/COPYRIGHT
index 3fe4c22f3..55d866a6f 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,9 +1,12 @@
-HiPAS GridLAB-D Version 4.2
-Copyright (C) 2020, Regents of the Leland Stanford Junior University
-All Rights Reserved
+Arras Energy Version 4.3
+Copyright (C) 2023-, LF Energy
+
+HiPAS GridLAB-D 4.1-4.2
+Copyright (C) 2020-2022, Regents of the Leland Stanford Junior University
GridLAB-D Version 1.0-4.0
Copyright (C) 2004-2019, Battelle Memorial Institute
+All Rights Reserved
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/Makefile.am b/Makefile.am
index cb74b1bbb..890741eec 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -10,6 +10,8 @@
# Authors:
# DP Chassin (dchassin@slac.stanford.edu)
+.SILENT:
+
$(info Current target is $(shell $(top_srcdir)/build-aux/version.sh --name))
# !!! must match version specified in configure.ac
@@ -50,6 +52,7 @@ AM_LDFLAGS += -module
AM_LDFLAGS += -avoid-version
AM_LDFLAGS += -export-dynamic
AM_LDFLAGS += $(GLD_LDFLAGS) -lpython$(PYVER)
+AM_LIBTOOLFLAGS = --quiet
# makefile fragments populate these variables
BUILT_SOURCES =
@@ -57,6 +60,7 @@ CLEANFILES =
EXTRA_DIST =
dist_pkgdata_DATA = requirements.txt
pkgdata_DATA =
+pkginclude_HEADERS =
noinst_LTLIBRARIES =
pkglib_LTLIBRARIES =
bin_PROGRAMS =
@@ -66,7 +70,7 @@ dist_doc_DATA =
docs_targets =
check-target:
- @test $(prefix) = $(shell build-aux/version.sh --install) || ( echo "ERROR [Makefile]: prefix and target mismatch; ./configure is outdated. Build using '--clean' option to fix this." > /dev/stderr ; false )
+ @test $(prefix) = $(shell $(top_srcdir)/build-aux/version.sh --install) || ( echo "ERROR [Makefile]: prefix '$(prefix)' and target '($(shell $(top_srcdir)/build-aux/version.sh --install))' mismatch; ./configure is outdated. Build using '--clean' option to fix this." > /dev/stderr ; false )
# required modules
include $(top_srcdir)/third_party/Makefile.mk
@@ -123,7 +127,7 @@ python-venv:
# NB: it's ok to use the runner's python to generate the requirements.txt file
requirements.txt: python/requirements.csv
@python3 -m pip -q install pandas==2.0.0
- @python3 python/requirements.py $< >$@
+ @python3 $(top_srcdir)/python/requirements.py $< >$@
$(PYENV): requirements.txt
@$(SYSPYTHON) --version 1>/dev/null || ( echo "ERROR [Makefile]: $(SYSPYTHON) is not found" > /dev/stderr ; false )
@@ -134,7 +138,7 @@ $(PYENV): requirements.txt
@$(ENVPYTHON) --version 1>/dev/null || ( echo "ERROR [Makefile]: $(ENVPYTHON) is not found" > /dev/stderr ; false )
@$(ENVPYTHON) -m pip install --upgrade pip
@$(ENVPYTHON) -m pip install pandas==2.0.0
- @$(ENVPYTHON) python/requirements.py --buildenv | bash
+ @$(ENVPYTHON) $(top_srcdir)/python/requirements.py --buildenv | bash
@$(ENVPYTHON) -m pip install -r requirements.txt
@touch $(PYENV)
@@ -291,11 +295,18 @@ $(PREFIX)/docker.img: docker/Dockerfile Makefile
@mkdir -p $(prefix)
docker save $(PACKAGE)/$(PACKAGE_VERSION)-$(PACKAGE_BRANCH):latest -o $(prefix)/docker.img
-system: python-install install
+system: python-install install $(prefix)/src
@echo "Setting $$($(top_srcdir)/build-aux/version.sh --install) to the current system version"
@$(prefix)/bin/gridlabd version set
@test "$$(gridlabd --version=install)" = "$$($(top_srcdir)/build-aux/version.sh --install)" || echo 'WARNING : build and install versions differ; use build `--clean` option to fix this problem'
+$(prefix)/src:
+ @echo Copying source files to $@...
+ @mkdir -p $(prefix)/src/source $(prefix)/src/python $(prefix)/src/module
+ @cp $(top_srcdir)/source/*.cpp $(prefix)/src/source
+ @cp $(top_srcdir)/python/*.cpp $(prefix)/src/python
+ @chmod -R 775 $(prefix)/src
+
index: weather library template
html-local: module-html developer-html troubleshooting-html
diff --git a/README.md b/README.md
index b7995b687..e09c10dab 100644
--- a/README.md
+++ b/README.md
@@ -1,42 +1,17 @@
----
-
-
IMPORTANT NOTICE
-
-This is the last release of HiPAS GridLAB-D before it is transferred to LF Energy's [Arras Energy project](https://github.com/arras-energy).
-
----
-
-| Repository | Build | Deploy |
-| :---: | :---: | :---: |
-| [GridLAB-D](https://github.com/arras-energy/gridlabd) | ![master](https://github.com/arras-energy/gridlabd/actions/workflows/master.yml/badge.svg?branch=master) ![develop](https://github.com/arras-energy/gridlabd/workflows/develop/badge.svg?branch=develop) | [![master-images](https://github.com/arras-energy/gridlabd/actions/workflows/master-image.yml/badge.svg)](https://github.com/arras-energy/gridlabd/actions/workflows/master-image.yml) [![develop-images](https://github.com/arras-energy/gridlabd/actions/workflows/develop-image.yml/badge.svg)](https://github.com/arras-energy/gridlabd/actions/workflows/develop-image.yml) |
-| [Templates](https://github.com/arras-energy/gridlabd-template) | [![master](https://github.com/arras-energy/gridlabd-template/actions/workflows/master.yml/badge.svg)](https://github.com/arras-energy/gridlabd-template/actions/workflows/master.yml) [![develop](https://github.com/arras-energy/gridlabd-template/actions/workflows/develop.yml/badge.svg)](https://github.com/arras-energy/gridlabd-template/actions/workflows/develop.yml)
-| [Weather](https://github.com/arras-energy/gridlabd-weather) | [![validate](https://github.com/arras-energy/gridlabd-weather/actions/workflows/validate.yml/badge.svg)](https://github.com/arras-energy/gridlabd-weather/actions/workflows/validate.yml)
-| [Library](https://github.com/arras-energy/gridlabd-library) | [![validate](https://github.com/arras-energy/gridlabd-library/actions/workflows/master.yml/badge.svg)](https://github.com/arras-energy/gridlabd-library/actions/workflows/master.yml) [![validate](https://github.com/arras-energy/gridlabd-library/actions/workflows/develop.yml/badge.svg)](https://github.com/arras-energy/gridlabd-library/actions/workflows/develop.yml)
-| [Models](https://github.com/arras-energy/gridlabd-models) | [![validate](https://github.com/arras-energy/gridlabd-models/actions/workflows/validate.yml/badge.svg)](https://github.com/arras-energy/gridlabd-models/actions/workflows/validate.yml)
-| [Benchmarks](https://github.com/arras-energy/gridlabd-benchmarks) | Manual test (see [README.md](https://github.com/arras-energy/gridlabd-benchmarks/blob/main/README.md))
-| [Examples](https://github.com/arras-energy/gridlabd-examples) | Manual test (see [README.md](https://github.com/arras-energy/gridlabd-examples/blob/master/README.md))
-
-
-The documentation for this project is located at http://docs.gridlabd.us/.
-
-This respository contains the source code to HiPAS GridLAB-D, which is being developed by SLAC National Accelerator Laboratory for the California Energy Commission under grant [EPC-17-046](https://www.energy.ca.gov/filebrowser/download/1147). This version of GridLAB-D is intended to be a commercial-grade version of the [US Department of Energy's research version of GridLAB-D developed by Pacific Northwest National Laboratory](https://github.com/gridlab-d/gridlab-d).
-
-*Note*: This fork of [GridLAB-D](https://github.com/gridlab-d/gridlab-d) does not support MS Windows directly. You must use docker or a virtual machine running linux.
-
# Quick start using Docker
-The preferred method for running HiPAS GridLAB-D is to download the master image from docker hub (see https://hub.docker.com/repository/docker/arras-energy/gridlabd). You must install the docker daemon to use docker images. See https://www.docker.com/get-started for details.
+The preferred method for running Arras Energy is to download the master image from docker hub (see https://hub.docker.com/repository/docker/lfenergy/arras/general). You must install the docker daemon to use docker images. See https://www.docker.com/get-started for details.
Once you have installed docker, you may issue the following commands to run GridLAB-D at the command line:
~~~
-docker run -it -v $PWD:/model arras-energy/gridlabd:latest gridlabd -W /model [LOADOPTIONS] [FILENAME.EXT] [RUNOPTIONS]
+docker run -it -v $PWD:/model lfenergy/arras:latest gridlabd -W /model [LOADOPTIONS] [FILENAME.EXT] [RUNOPTIONS]
~~~
On many systems, an alias can be used to make this a simple command that resembles the command you would normally issue to run a host-based installation:
~~~
-alias gridlabd='docker run -it -v $PWD:/tmp arras-energy/gridlabd:latest gridlabd'
+alias gridlabd='docker run -it -v $PWD:/tmp lfenergy/arras:latest gridlabd'
~~~
Note that this alias will interfere with any host-based installation. You may use the `gridlabd docker` command to manage the use of docker images concurrently with host-based installations.
@@ -86,7 +61,7 @@ Note that the installer only works with image name that conform to the name patt
# Build from source
-The prerequesites for building HiPAS GridLAB-D from source include `git` and `curl`. In general you can use the `setup.sh` script to verify and update your system so that the prerequesites are satisifed.
+The prerequesites for building Arras Energy from source include `git` and `curl`. In general you can use the `setup.sh` script to verify and update your system so that the prerequesites are satisifed.
On most systems, the process is as follows:
@@ -159,9 +134,24 @@ cd gridlabd
./build.sh --system --validate
~~~
+The validation may take some time and it need not complete completely successfully for GridLAB-D to be used. The final report may look something like this:
+
+~~~
+Validation report:
+747 models tested
+1 unexpected errors
+746 tests succeeded
+>99% success rate
+Total validation elapsed time: 281.9 seconds
+See '/HOME/USER/gridlabd/validate.txt' for details
+ERROR [build.sh]: unable to verify install
+~~~
+
## Windows WSL
-Generally, running HiPAS GridLAB-D on Docker is preferred because it is usually faster. Building, running and installing Gridlabd in WSL is not that different from a normal linux installation. You can follow Microsoft's instructions on setting up WSL and adding/changing distro's [here](https://learn.microsoft.com/en-us/windows/wsl/install). These instructions work for both cases on supported operating systems, which you can find in the build-aux directory.
+GridLAB-D supports several WSL distributions, including the latest Ubuntu versions. See the [setup](setup) folder for currently supported distributions.
+
+Generally, running Arras Energy on Docker is preferred because it is usually faster. Building, running and installing Gridlabd in WSL is not that different from a normal linux installation. You can follow Microsoft's instructions on setting up WSL and adding/changing distro's [here](https://learn.microsoft.com/en-us/windows/wsl/install). These instructions work for both cases on supported operating systems, which you can find in the build-aux directory.
1) Open PowerShell as administrator or run the WSL (Ubuntu) from the start menu to open a dedicated terminal
2) Run `wsl` (Using Ubuntu)
@@ -169,7 +159,7 @@ Generally, running HiPAS GridLAB-D on Docker is preferred because it is usually
## Manual Build
-You can build HiPAS GridLAB-D manually by running following commands in the top level repository folder:
+You can build Arras Energy manually by running following commands in the top level repository folder:
1. Create the target folder:
@@ -256,5 +246,5 @@ This version of GridLAB-D is derived from the original US Department of Energy v
## Contributions
-Please see https://source.gridlabd.us/blob/master/CONTRIBUTING.md for information on making contributions to this repository.
+Please see [Arras Energy Contribution Policies](https://github.com/arras-energy/.github/blob/main/CONTRIBUTING.md) for information on making contributions to this repository.
diff --git a/build-aux/version.sh b/build-aux/version.sh
index 92008b771..b53593413 100755
--- a/build-aux/version.sh
+++ b/build-aux/version.sh
@@ -10,7 +10,7 @@
## --install the install folder path name, e.g., /usr/local/opt/gridlabd/4.3.1-230426-master-ubuntu_22-x86_64
## --name the install folder base name, /usr/local/opt/gridlabd/4.3.1-230426-master-ubuntu_22-x86_64
## --package the package name, e.g., gridlabd
-## --package-name the package full name, e.g., HiPAS GridLAB-D
+## --package-name the package full name, e.g., Arras Energy
## --machine the machine type, e.g., x86_64
## --system the system name, e.g., ubuntu_22
## --sysspec the system specification, e.g., ubuntu_22-x86_64
@@ -25,7 +25,7 @@
#
EXE=$0
PYV=3.10
-TOP=$(cd ${EXE/version.sh/..}; pwd)
+TOP=$(cd $(dirname $EXE)/.. 1>/dev/null; pwd)
FIL="${TOP}/source/version.h"
MAJ=`sed -En 's/#define REV_MAJOR ([0-9]+).*/\1/p' $FIL | tr -d '\n'`
MIN=`sed -En 's/#define REV_MINOR ([0-9]+).*/\1/p' $FIL | tr -d '\n'`
diff --git a/build.sh b/build.sh
index 9cdac8528..82e9e36ca 100755
--- a/build.sh
+++ b/build.sh
@@ -31,6 +31,12 @@
## --parallel[=N]) Run the build in parallel if possible. N specifies how many jobs
## per CPU. The default is 3 jobs per CPU.
##
+## --srcdir=DIR Specify an alternate source directory to use (default is
+## same as build.sh script)
+##
+## --workdir=DIR Specify an alternate working directory to use (default is
+## same as build.sh script)
+##
## Environment variables:
##
## MAKEFLAGS Specify additional make options
@@ -47,6 +53,7 @@
##
## $ ./build.sh --parallel --system
##
+cd $(dirname $0)
STDOUT=/dev/stdout
STDERR=/dev/stderr
error () { echo "ERROR [build.sh]: $*" > $STDERR ; exit 1; }
@@ -57,6 +64,9 @@ else
CONFIGURE=
fi
UPLOAD=
+SRCDIR=$PWD
+WORKDIR=$PWD
+SILENT_RULES="--enable-silent-rules"
while [ $# -gt 0 ]; do
case "$1" in
-h | --help | help )
@@ -66,6 +76,7 @@ while [ $# -gt 0 ]; do
-v | --verbose )
set -x
MAKEFLAGS="$MAKEFLAGS --debug V=1"
+ unset SILENT_RULES
;;
-s | --silent )
STDERR=/dev/null
@@ -111,6 +122,14 @@ while [ $# -gt 0 ]; do
error "unable to determine the number of available CPUs"
fi
;;
+ --srcdir=*)
+ SRCDIR=$(echo $1 | cut -f2 -d=)
+ ;;
+ --workdir=* )
+ WORKDIR=$(echo $1 | cut -f2 -d=)
+ mkdir -p $WORKDIR
+ cd $WORKDIR
+ ;;
* )
error "option '$1' is not valid"
;;
@@ -121,14 +140,14 @@ mkdir -p /usr/local/opt/gridlabd || error "you do not have permission to create
autoconf --version 1>/dev/null 2>&1 || error "autoconf not installed. Did you run setup.sh?"
test "$(autoconf --version 2>/dev/null | head -n 1 | grep -o '[^ ]*$')" = "2.71" || error "autoconf version 2.71 required. Did you run setup.sh?"
git --version 1>/dev/null 2>&1 || error "you must install git to build GridLAB-D"
-test -f configure.ac || error "you must build from the source directory where configure.ac is located"
+test -f $SRCDIR/configure.ac || error "you must build from the source directory where configure.ac is located"
test -f $HOME/.gridlabd/bin/activate || error "$HOME/.gridlabd is not found. Run setup.sh again."
test ! -z "$VIRTUAL_ENV" || . $HOME/.gridlabd/bin/activate 1>$STDOUT 2>$STDERR
test ! -z "$VIRTUAL_ENV" || error "unable to activate gridlabd venv"
-test -f ./configure || autoreconf -isf 1>$STDOUT 2>$STDERR || error "autoconf failed"
-test -f Makefile || ./configure $CONFIGURE 1>$STDOUT 2>$STDERR || error "./configure failed"
+test -f $SRCDIR/configure || autoreconf -isf $SRCDIR 1>$STDOUT 2>$STDERR || error "autoconf failed"
+test -f Makefile || $SRCDIR/configure $SILENT_RULES $CONFIGURE 1>$STDOUT 2>$STDERR || error "./configure failed"
make $MAKEFLAGS $TARGET 1>$STDOUT 2>$STDERR || error "unable to make build"
if [ ! -z "$VERIFY" ]; then
- $(build-aux/version.sh --install)/bin/gridlabd $VERIFY 1>$STDOUT 2>$STDERR || error "unable to verify install"
+ $($SRCDIR/build-aux/version.sh --install)/bin/gridlabd $VERIFY 1>$STDOUT 2>$STDERR || error "unable to verify install"
fi
test -z "$UPLOAD" || make $UPLOAD 1>$STDOUT 2>$STDERR
diff --git a/cloud/Makefile.mk b/cloud/Makefile.mk
index f3df8d3be..72efa1fc0 100644
--- a/cloud/Makefile.mk
+++ b/cloud/Makefile.mk
@@ -41,7 +41,7 @@ cloud-deploy: aws-deploy gcp-deploy az-deploy
# Get a list of files that have to be updated
#
-WEBSITES=$(shell find cloud/websites/*.gridlabd.us -type d -prune)
+WEBSITES=$(shell find $(top_srcdir)/cloud/websites/*.gridlabd.us -type d -prune)
#
# Target that forces updates
@@ -93,4 +93,4 @@ $(top_srcdir)/cloud/websites/install.gridlabd.us/requirements.txt:
@cat $$(find $(top_srcdir) -name requirements.txt -print) | sort -u > $@
$(top_srcdir)/cloud/websites/install.gridlabd.us/validate.tarz:
- @tar cfz $@ $$(find $(top_srcdir) -type d -name autotest -print -prune )
\ No newline at end of file
+ @tar cfz $@ $$(find $(top_srcdir) -type d -name autotest -print -prune )
diff --git a/cloud/README.md b/cloud/README.md
index b59d4d17f..64021f99e 100644
--- a/cloud/README.md
+++ b/cloud/README.md
@@ -37,4 +37,4 @@ Deliver version information.
# `www.gridlabd.us`
-General landing page for HiPAS GridLAB-D.
+General landing page for Arras Energy.
diff --git a/cloud/websites/docs.gridlabd.us/index.html b/cloud/websites/docs.gridlabd.us/index.html
index 9ed34b289..fef43042b 100644
--- a/cloud/websites/docs.gridlabd.us/index.html
+++ b/cloud/websites/docs.gridlabd.us/index.html
@@ -1,15 +1,9 @@
-
-
-
+
+
+
+
+Redirecting to http://docs.arras-energy.org/index.html?owner=arras-energy&project=gridlabd ...
+
\ No newline at end of file
diff --git a/cloud/websites/install.gridlabd.us/index.html b/cloud/websites/install.gridlabd.us/index.html
index 4df8434a2..889bab115 100644
--- a/cloud/websites/install.gridlabd.us/index.html
+++ b/cloud/websites/install.gridlabd.us/index.html
@@ -2,21 +2,21 @@
- HiPAS GridLAB-D Online Installation & Validation
+ Arras Energy Online Installation & Validation
- HiPAS GridLAB-D Online Installation & Validation
+ Arras Energy Online Installation & Validation
- Installing HiPAS GridLAB-D
+ Installing Arras Energy
- IMPORTANT: This installer is designed to install HiPAS GridLAB-D on a new system image such as wsl
, ec2
, or docker
. Do not use this on an existing system unless you are ok with significant changes to your system's build tools.
+ IMPORTANT: This installer is designed to install Arras Energy on a new system image such as wsl
, ec2
, or docker
. Do not use this on an existing system unless you are ok with significant changes to your system's build tools.
- To install HiPAS GridLAB-D on your Linux or Mac system, type the following commands at a shell prompt:
+ To install Arras Energy on your Linux or Mac system, type the following commands at a shell prompt:
@@ -24,11 +24,11 @@ Installing HiPAS GridLAB-D
bash$ curl -sL http://install.gridlabd.us/install.sh | sh
- If your system is not supported by this installer, please use the manual installation method provided with the HiPAS GridLAB-D source code .
+ If your system is not supported by this installer, please use the manual installation method provided with the Arras Energy source code .
- Validating HiPAS GridLAB-D
+ Validating Arras Energy
- To validate your HiPAS GridLAB-D installation on your Linux or Mac system, type the following command at a shell prompt:
+ To validate your Arras Energy installation on your Linux or Mac system, type the following command at a shell prompt:
diff --git a/cloud/websites/status.gridlabd.us/index.html b/cloud/websites/status.gridlabd.us/index.html
index 15d37fa33..cf25d8675 100644
--- a/cloud/websites/status.gridlabd.us/index.html
+++ b/cloud/websites/status.gridlabd.us/index.html
@@ -1,9 +1,9 @@
- GridLAB-D Status
+ Arras Energy Status
- HiPAS GridLAB-D Version 4.2 Development Status
+ Arras Energy Development Status
Development Version Top Links
User manuals
diff --git a/cloud/websites/tutorials.gridlabd.us/index.html b/cloud/websites/tutorials.gridlabd.us/index.html
index 5e12d6e95..730e96e3f 100644
--- a/cloud/websites/tutorials.gridlabd.us/index.html
+++ b/cloud/websites/tutorials.gridlabd.us/index.html
@@ -1,7 +1,7 @@
- HiPAS GridLAB-D Tutorials
+ Arras Energy Tutorials
@@ -24,7 +24,7 @@
- HiPAS GridLAB-D Training Video Library
+ Arras Energy Training Video Library
Your browser does not support embedded video playbacks
Session playing:
diff --git a/configure.ac b/configure.ac
index 2d33ffc5c..98d626d3b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,10 +1,13 @@
# File: configure.ac -*- Autoconf -*-
#
# GridLAB-D 4.0
-# Copyright (C) 2008 Battelle Memorial Institute
+# Copyright (C) 2008-2019 Battelle Memorial Institute
#
# HiPAS GridLAB-D 4.2
-# Copyright (C) 2020 Regents of the Leland Stanford Junior University
+# Copyright (C) 2020-2022 Regents of the Leland Stanford Junior University
+#
+# Arras Energy 4.3
+# Copyright (C) 2023- LF Energy
#
# Authors:
# DP Chassin (dchassin@slac.stanford.edu)
@@ -54,6 +57,7 @@ AC_CONFIG_AUX_DIR([build-aux])
###############################################################################
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall])
+AM_SILENT_RULES([yes])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
###############################################################################
@@ -504,22 +508,28 @@ AS_IF([test -n "$DX_DOXYGEN"],
[HAVE_DOXYGEN=no])
AM_CONDITIONAL([HAVE_DOXYGEN], [test ! "x$HAVE_DOXYGEN" = "xno"])
-# Check for mysql
-AS_IF([test -f /usr/local/include/mysql/mysql.h -a /usr/local/lib/libmysqlclient.a ],
- [MYSQL="/usr/local/bin"],
- [MYSQL="no"])
+# Check for mysql_config tool
+AC_PATH_PROG(MYSQL_CONFIG, mysql_config, no)
+
+AS_IF([test "x$MYSQL_CONFIG" = "xno"],
+ [MYSQL="no"
+ AC_MSG_WARN([mysql_config not found - MySQL support will be disabled])],
+ [MYSQL="yes"])
+
AS_IF([test "x$MYSQL" != "xno"],
- [MYSQL_CPPFLAGS="'-I$MYSQL/include/mysql'"
- AS_CASE([$host],
- [*mingw*], [MYSQL_LDFLAGS="'-L$MYSQL/lib'"
- MYSQL_LIBS="-lmysql"],
- [*linux*], [MYSQL_LDFLAGS="'-L$MYSQL/lib'"
- MYSQL_LIBS="-lmysqlclient"],
- [*darwin*], [MYSQL_LDFLAGS="'-L$MYSQL/lib'"
- MYSQL_LIBS="-lmysqlclient"])
- GLD_CPPFLAGS="$GLD_CPPFLAGS -DHAVE_MYSQL"
- HAVE_MYSQL=yes],
- [HAVE_MYSQL=no])
+ [
+ # Use mysql_config to get include and library directories
+ MYSQL_CPPFLAGS="$(mysql_config --cflags) -DHAVE_MYSQL"
+ MYSQL_LDFLAGS=$(mysql_config --libs)
+ MYSQL_LIBS=$(mysql_config --libs)
+ HAVE_MYSQL=yes
+ GLD_CPPFLAGS="$GLD_CPPFLAGS -DHAVE_MYSQL"
+
+ # Define HAVE_MYSQL
+ AC_DEFINE([HAVE_MYSQL], [1], [Define when you have MySQL])
+ ],
+ [HAVE_MYSQL=no])
+
AC_SUBST([MYSQL_CPPFLAGS])
AC_SUBST([MYSQL_LDFLAGS])
AC_SUBST([MYSQL_LIBS])
@@ -566,15 +576,13 @@ AS_CASE([$BRANCHNAME],
[*], [SUFFIX="no"])
AM_CONDITIONAL([SUFFIX],[test ! "x$SUFFIX" = "xno"] )
-VERSION_NAME=$(build-aux/version.sh --name)
-
AC_ARG_WITH([prefix], [AS_HELP_STRING([--with-prefix=PREFIX], [install architecture-independent files in PREFIX])], [prefix="$withval"], [prefix="/usr/local/opt/gridlabd"])
if test "x$prefix" = "xNONE"; then
prefix="/usr/local/opt/gridlabd"
fi
PREFIX=$prefix
-DSTDIR=$PREFIX/$VERSION_NAME
+DSTDIR=$PREFIX/versionname
prefix=$DSTDIR
BINDIR=$DSTDIR/bin
@@ -623,7 +631,7 @@ fi
AC_MSG_RESULT([
-----------------------------------------------------------------------
- HiPAS GridLAB-D Automatic configuration:
+ Arras Energy Automatic configuration:
Package: .................... $PACKAGE
Version: .................... $VERSION
diff --git a/converters/Makefile.mk b/converters/Makefile.mk
index 6b881e1f9..096413cd1 100644
--- a/converters/Makefile.mk
+++ b/converters/Makefile.mk
@@ -5,6 +5,7 @@
# csv -> glm
dist_pkgdata_DATA += converters/csv-ami2glm-ceus.py
dist_pkgdata_DATA += converters/csv-ami2glm-rbsa.py
+dist_pkgdata_DATA += converters/csv-ami2glm-player.py
dist_pkgdata_DATA += converters/csv-ceus2glm-ceus.py
dist_pkgdata_DATA += converters/csv-geodata2kml.py
dist_pkgdata_DATA += converters/csv-ica2glm-ica.py
@@ -78,6 +79,7 @@ dist_pkgdata_DATA += converters/xls-spida2csv-geodata.py
# xlsx -> csv
dist_pkgdata_DATA += converters/xlsx2csv.py
dist_pkgdata_DATA += converters/xlsx-workbook2csv-table.py
+dist_pkgdata_DATA += converters/xlsx-spida2csv-geodata.py
#
# SUPPORT MODULES
diff --git a/converters/README.md b/converters/README.md
index d23dbcf24..1d912950d 100644
--- a/converters/README.md
+++ b/converters/README.md
@@ -1,6 +1,6 @@
# Converters
-This folder contains the automatic file converters for HiPAS GridLAB-D.
+This folder contains the automatic file converters for Arras Energy.
Converters are implement in a two-level paradigm. This top level implements
the file format converter based on the files' extensions. The second level
diff --git a/converters/autotest/IEEE-13-cyme-network.glm b/converters/autotest/IEEE-13-cyme-network.glm
index 1853cf1c3..fd040351b 100644
--- a/converters/autotest/IEEE-13-cyme-network.glm
+++ b/converters/autotest/IEEE-13-cyme-network.glm
@@ -3,17 +3,7 @@
// Settings from 'config.csv'
//
// GLM_NOMINAL_VOLTAGE found in network MDB is used
-#define GLM_NOMINAL_VOLTAGE=2.402 kV
-
-//
-// default clock settings
-//
-clock
-{
- timezone "PST+8PDT";
- starttime "2020-01-01T00:00:00+08:00";
- stoptime "2020-01-01T00:05:00+08:00";
-}
+#define GLM_NOMINAL_VOLTAGE=2.4018 kV
//
// Modules
@@ -396,13 +386,32 @@ object overhead_line
length "152.40 m";
configuration "LC_LINE606";
}
+object transformer_configuration
+{
+ name "TC_500_0010kVA_2_4018kV_0_2771kV_R0_0088_X0_015930";
+ connect_type "WYE_WYE";
+ install_type "PADMOUNT";
+ power_rating "500.0010kVA";
+ primary_voltage "2.4018kV";
+ secondary_voltage "0.2771kV";
+ resistance 0.008762067508208264;
+ reactance 0.015930314936673445;
+}
+object transformer
+{
+ name "TF_LK_L633_634_XFM_1";
+ phases "ABCN";
+ from "ND_633";
+ to "ND_634";
+ configuration "TC_500_0010kVA_2_4018kV_0_2771kV_R0_0088_X0_015930";
+}
object load
{
name "LD_LOAD652";
parent "ND_652";
phases "A";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_impedance_A "31.06+20.87j";
+ constant_impedance_A "31.0507+20.8622j";
}
object load
{
@@ -410,7 +419,7 @@ object load
parent "ND_611";
phases "C";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_current_C "-6.544+77.95j";
+ constant_current_C "-6.5442+77.9517j";
}
object load
{
@@ -418,7 +427,7 @@ object load
parent "ND_692";
phases "C";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_current_C "-17.24+51.86j";
+ constant_current_C "-17.2413+51.8673j";
}
object load
{
@@ -426,7 +435,7 @@ object load
parent "ND_645";
phases "B";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_power_B "1.7e+05+1.25e+05j";
+ constant_power_B "170000.0000+125000.0000j";
}
object load
{
@@ -434,7 +443,7 @@ object load
parent "ND_646";
phases "B";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_impedance_B "56.61+32.49j";
+ constant_impedance_B "56.6004+32.4837j";
}
object load
{
@@ -442,9 +451,9 @@ object load
parent "ND_671";
phases "ABC";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_power_A "3.85e+05+2.2e+05j";
- constant_power_B "3.85e+05+2.2e+05j";
- constant_power_C "3.85e+05+2.2e+05j";
+ constant_power_A "385000.0000+220000.0000j";
+ constant_power_B "385000.0000+220000.0000j";
+ constant_power_C "385000.0000+220000.0000j";
}
object load
{
@@ -452,9 +461,9 @@ object load
parent "ND_675";
phases "ABC";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_power_A "4.85e+05+1.9e+05j";
- constant_power_B "6.8e+04+6e+04j";
- constant_power_C "2.9e+05+2.12e+05j";
+ constant_power_A "485000.0000+190000.0000j";
+ constant_power_B "68000.0000+60000.0000j";
+ constant_power_C "290000.0000+212000.0000j";
}
object load
{
@@ -462,9 +471,9 @@ object load
parent "ND_634";
phases "ABC";
nominal_voltage "0.2771kV";
- constant_power_A "1.6e+05+1.1e+05j";
- constant_power_B "1.2e+05+9e+04j";
- constant_power_C "1.2e+05+9e+04j";
+ constant_power_A "160000.0000+110000.0000j";
+ constant_power_B "120000.0000+90000.0000j";
+ constant_power_C "120000.0000+90000.0000j";
}
object load
{
@@ -472,28 +481,9 @@ object load
parent "ND_671";
phases "ABC";
nominal_voltage "${GLM_NOMINAL_VOLTAGE}";
- constant_power_A "1.7e+04+1e+04j";
- constant_power_B "6.6e+04+3.8e+04j";
- constant_power_C "1.17e+05+6.8e+04j";
-}
-object transformer_configuration
-{
- name "TC_500kVA_2_402kV_0_2771kV_R0_008762_X0_0159303";
- connect_type "WYE_WYE";
- install_type "PADMOUNT";
- power_rating "500kVA";
- primary_voltage "2.402kV";
- secondary_voltage "0.2771kV";
- resistance 0.008762067508208264;
- reactance 0.015930314936673445;
-}
-object transformer
-{
- name "TF_LK_L633_634_XFM_1";
- phases "ABCN";
- from "ND_633";
- to "ND_634";
- configuration "TC_500kVA_2_402kV_0_2771kV_R0_008762_X0_0159303";
+ constant_power_A "17000.0000+10000.0000j";
+ constant_power_B "66000.0000+38000.0000j";
+ constant_power_C "117000.0000+68000.0000j";
}
object regulator_configuration
{
@@ -575,8 +565,8 @@ object switch
//
// Assumptions
//
-modify TC_500kVA_2_402kV_0_2771kV_R0_008762_X0_0159303.connect_type "WYE_WYE"; // transformer 'L633_634_XFM_1' does not specify connection type
-modify TC_500kVA_2_402kV_0_2771kV_R0_008762_X0_0159303.install_type "PADMOUNT"; // transformer 'L633_634_XFM_1' does not specify install type
+modify TC_500_0010kVA_2_4018kV_0_2771kV_R0_0088_X0_015930.connect_type "WYE_WYE"; // transformer 'L633_634_XFM_1' does not specify connection type
+modify TC_500_0010kVA_2_4018kV_0_2771kV_R0_0088_X0_015930.install_type "PADMOUNT"; // transformer 'L633_634_XFM_1' does not specify install type
modify RC_650REG_2V_30s.connect_type "WYE_WYE"; // regulator '650REG' does not specify connection type
modify RC_650REG_2V_30s.Control "OUTPUT_VOLTAGE"; // regulator '650REG' does not specify control type
modify RC_650REG_2V_30s.time_delay "30s"; // regulator '650REG' does not specify time delay
diff --git a/converters/autotest/IEEE-13-cyme-xy-coordinates.csv b/converters/autotest/IEEE-13-cyme-xy-coordinates.csv
new file mode 100644
index 000000000..84556afab
--- /dev/null
+++ b/converters/autotest/IEEE-13-cyme-xy-coordinates.csv
@@ -0,0 +1,26 @@
+node,x,y
+611,-497.529638,-296.406716
+632,-102.564756,-82.359153
+633,96.981706,-82.359153
+634,296.528167,-82.359153
+645,-303.611567,-82.359153
+646,-503.158028,-82.359153
+650,-101.871718,202.525349
+652,-305.42555,-388.033675
+671,-102.564756,-295.840278
+675,177.685724,-296.168228
+680,-102.216065,-385.711768
+684,-305.569538,-295.821338
+692,95.477648,-295.827775
+7,-102.140153,119.727044
+L611CAP,-591.552268,-296.394266
+L675CAP,375.26425,-296.626671
+LOAD611,-497.577422,-322.467031
+LOAD634,296.529235,-104.537935
+LOAD645,-303.611567,-102.823074
+LOAD646,-503.140358,-104.938533
+LOAD652,-305.36199,-423.410687
+LOAD671,-130.812161,-270.135734
+LOAD675,177.693667,-331.639128
+LOAD692,95.481356,-329.791363
+RG60,-102.134091,-103.005827
diff --git a/converters/autotest/test_mdb2glm_xy_coordinates_opt.glm b/converters/autotest/test_mdb2glm_xy_coordinates_opt.glm
new file mode 100644
index 000000000..4845336d3
--- /dev/null
+++ b/converters/autotest/test_mdb2glm_xy_coordinates_opt.glm
@@ -0,0 +1,12 @@
+// NOTE: This test yields an intermittent validation error for some unknown reason
+// For now it should remain optional until the cause is identified and remedied.
+// - DPC 10/17/23
+#ifexist ../IEEE-13-cyme.mdb
+#define DIR=..
+#endif // exist ../IEEE-13-cyme.mdb
+
+#input "${DIR:-.}/IEEE-13-cyme.mdb" -t cyme -o ./IEEE-13.glm -p coordinateCSV=IEEE-13-cyme-xy-coordinates.csv
+
+#ifexist ../IEEE-13-cyme-xy-coordinates.csv
+#on_exit 0 diff -I '^[#/]' ../IEEE-13-cyme-xy-coordinates.csv IEEE-13-cyme-xy-coordinates.csv > gridlabd.diff
+#endif // exist ../IEEE-13-cyme-xy-coordinates.csv
diff --git a/converters/autotest/test_mdbtable2glm.glm b/converters/autotest/test_mdbtable2glm.glm
index e3adff9ca..e2b6afb3a 100644
--- a/converters/autotest/test_mdbtable2glm.glm
+++ b/converters/autotest/test_mdbtable2glm.glm
@@ -1,17 +1,9 @@
-#ifmissing /usr/local/bin/mdb-schema
-
-#warning mdbtools is not available
-
-#else // found /usr/local/bin/mdb-schema
-
#ifexist ../IEEE-13-cyme.mdb
#define DIR=..
#endif // exist ../IEEE-13-cyme.mdb
-#input "${DIR:-.}/IEEE-13-cyme.mdb" -o IEEE-13-cyme-network.glm -t cyme
+#input "${DIR:-.}/IEEE-13-cyme.mdb" -o ./IEEE-13-cyme-network.glm -t cyme
#ifexist ../IEEE-13-cyme-network.glm
#on_exit 0 diff -I '^[#/]' ../IEEE-13-cyme-network.glm IEEE-13-cyme-network.glm > gridlabd.diff
-#endif // exist ../IEEE-13-cyme-network.glm
-
-#endif // missing /usr/local/bin/mdb-schema
+#endif // exist ../IEEE-13-cyme-network.glm
\ No newline at end of file
diff --git a/converters/autotest/test_mdbtable2glmobject.glm b/converters/autotest/test_mdbtable2glmobject.glm
index abb3a3bdb..86ede9dc1 100644
--- a/converters/autotest/test_mdbtable2glmobject.glm
+++ b/converters/autotest/test_mdbtable2glmobject.glm
@@ -1,9 +1,3 @@
-#ifmissing ${GLD_BIN}/mdb-schema
-
-#warning mdbtools is not available
-
-#else // found ${GLD_BIN}/mdb-schema
-
#ifexist ../IEEE-13-cyme.mdb
#define DIR=..
#endif // exist ../IEEE-13-cyme.mdb
@@ -12,6 +6,4 @@
#ifexist ../IEEE-13-cyme-object.glm
#on_exit 0 diff -I '^[#/]' ../IEEE-13-cyme-object.glm IEEE-13-cyme-object.glm > gridlabd.diff
-#endif // exist ../IEEE-13-cyme-object.glm
-
-#endif // missing ${GLD_BIN}/mdb-schema
+#endif // exist ../IEEE-13-cyme-object.glm
\ No newline at end of file
diff --git a/converters/autotest/test_mdbtable2glmplayer.glm b/converters/autotest/test_mdbtable2glmplayer.glm
index 15b044273..f84ed16d8 100644
--- a/converters/autotest/test_mdbtable2glmplayer.glm
+++ b/converters/autotest/test_mdbtable2glmplayer.glm
@@ -9,12 +9,6 @@
// To access this data you must read, agree to, and sign the NDA covering this data.
//
-#ifmissing ${GLD_BIN}/mdb-schema
-
-#warning mdbtools is not available
-
-#else
-
#ifmissing ami_data.mdb
#ifmissing ami_data.mdb.zip
@@ -78,6 +72,4 @@ object collector
#on_exit 0 diff ../test_mdbtable2glmplayer.csv test_mdbtable2glmplayer.csv > gridlabd.diff
#endif // exist ../test_mdbtable2glmplayer.csv
-#endif // exist ami_data.mdb
-
-#endif // missing ${GLD_BIN}/mdb-schema
+#endif // exist ami_data.mdb
\ No newline at end of file
diff --git a/converters/autotest/test_object_opt.glm b/converters/autotest/test_object_opt.glm
index 0e46612a9..b86bb762f 100644
--- a/converters/autotest/test_object_opt.glm
+++ b/converters/autotest/test_object_opt.glm
@@ -1,4 +1,4 @@
-// /usr/local/opt/gridlabd/4.3.1-220814-develop_user_manual/share/gridlabd/csv-table2glm-object.py ./test_object.csv test_object_opt.glm {}
+// /usr/local/opt/gridlabd/4.3.3-231003-develop_add_xlsx_converter-darwin_22-x86_64/share/gridlabd/csv-table2glm-object.py ./test_object.csv test_object_opt.glm {'class': 'test'}
object test {
name "item1";
value1 1.2;
diff --git a/converters/csv-ami2glm-player.py b/converters/csv-ami2glm-player.py
new file mode 100644
index 000000000..7f1edad94
--- /dev/null
+++ b/converters/csv-ami2glm-player.py
@@ -0,0 +1,105 @@
+"""Convert AMI to GLM players
+
+SYNOPSIS
+
+ Shell:
+ $ gridlabd convert -i ami:AMI.csv,ami_key:AMI_KEYS.csv, network:NETWORK.csv
+ -o PLAYERS.csv -f xlsx-spida -t csv-geodata [OPTIONS ...]
+
+ GLM:
+ #convert ami:AMI.csv,ami_key:AMI_KEYS.csv
+ -o PLAYERS.csv
+
+
+OPTIONS:
+
+
+
+DESCRIPTION
+
+ This converter extracts AMI and formulates players files that associate AMI to the
+ nodes on the network.
+
+ The output is always a GridLAB-D PLAYER file.
+"""
+
+import pandas as pd
+import string
+import math
+import re
+import numpy as np
+import os
+
+
+default_options = {
+ # "include_network" : None,
+}
+
+def string_clean(input_str):
+ output_str = input_str.replace(" ", "_")
+ output_str = output_str.replace(".", "_")
+ output_str = output_str.replace('"', "")
+ return output_str
+
+include_network = False
+ami_key = False
+
+def convert(input_files, output_file, options={}):
+ print('test')
+
+ if type(input_files) is dict:
+ for key in input_files:
+ if not key in ["ami","ami_key","network"]:
+ print(f"WARNING [csv-ami2glm-player]: input file spec '{key}' is not valid",file=sys.stderr)
+
+ if not "ami" in input_files:
+ raise Exception("AMI not specified among input files")
+ else:
+ input_ami_file = input_files["ami"]
+
+ if not "ami_key" in input_files:
+ input_ami_key_file = None
+ else:
+ input_ami_key_file = input_files["ami_key"]
+ global ami_key
+ ami_key = True
+
+ if "network" in input_files:
+ global include_network
+ include_network = input_files["network"]
+
+
+ elif type(input_files) is str:
+ input_ami_file = input_files
+ else:
+ raise Exception("input_files is not dict or str")
+
+ # read default options into globals
+ for name, value in default_options.items():
+ globals()[name] = value
+
+ # read user options into globals
+ for name, value in options.items():
+ if name not in default_options.keys():
+ raise Exception("option '{name}={value}' is not valid")
+ globals()[name] = value
+
+ df_ami = pd.read_csv(input_ami_file)
+
+ node_ID_set = set(df_ami['transformer_structure'])
+
+ with open(output_file, mode='w', newline='') as file :
+ writer = csv.writer(file)
+ writer.writerow(['module tape;'])
+
+ for node_ID in node_ID_set :
+ writer.writerow(['\n'])
+ writer.writerow(['object player {\n'])
+ writer.writerow(['\tproperty measured_real_energy;\n'])
+ writer.writerow(['\tparent ' + node_ID + '\n'])
+ writer.writerow(['\tfile ./player/' + node_ID + '.csv\n'])
+ writer.writerow(['}\n'])
+
+
+
+
diff --git a/converters/csv2glm.py b/converters/csv2glm.py
index 1e6582a66..e72af21a0 100644
--- a/converters/csv2glm.py
+++ b/converters/csv2glm.py
@@ -9,7 +9,7 @@
"input" : "csv",
"output" : "glm",
"from" : ["ami","scada","onpoint-weather", "table"],
- "type" : ["ceus","rbsa","climate", "object"],
+ "type" : ["ceus","rbsa","climate", "object", "player"],
}
def help():
@@ -49,7 +49,13 @@ def error(msg):
print(json.dumps(config))
sys.exit(0)
elif opt in ("-i", "--ifile"):
- input_file = arg.strip()
+ try:
+ if not arg.startswith("http"):
+ input_file = dict([x.split(":") for x in arg.strip().split(",")])
+ else:
+ input_file = arg.strip()
+ except:
+ input_file = arg.strip()
elif opt in ("-o", "--ofile"):
output_file = arg.strip()
elif opt in ("-f","--from"):
diff --git a/converters/mdb-cyme2glm.py b/converters/mdb-cyme2glm.py
index 7f1e63233..975c74e0b 100644
--- a/converters/mdb-cyme2glm.py
+++ b/converters/mdb-cyme2glm.py
@@ -505,7 +505,18 @@ def mdb2csv(input_file, output_dir, tables, extract_option):
os.system(f"mkdir -p {data_folder}")
for table in tables:
csvname = table[3:].lower()
- os.system(f"mdb-export {input_file} {table} > {output_dir}/{csvname}.csv")
+ output_file = f"{output_dir}/{csvname}.csv"
+
+ try:
+ with open(output_file, "w") as output_file_obj:
+ subprocess.run(["mdb-export", input_file, table], stdout=output_file_obj, check=True)
+ except subprocess.CalledProcessError as e:
+ error(f"Command failed with error code {e.returncode}", 1)
+ except FileNotFoundError:
+ error(f"Command not found. Make sure mdb-export is installed and in your PATH.", 3)
+ except Exception as e:
+ error(f"An unexpected error occurred: {e}", 1)
+
row_count = os.popen(f"wc -l {output_dir}/{csvname}.csv").read()
if (int(row_count.strip().split(" ")[0]) <= 1) and extract_option != "all":
os.remove(f"{output_dir}/{csvname}.csv")
@@ -978,29 +989,7 @@ def add_link(self, section_id, section, version, **kwargs):
# add node to glm file
def add_node(self, node_id, node_links, device_dict, version, **kwargs):
phase = 0
- if geodata_file:
- node_geodata_id = f"{node_id}_{network_id}"
- if node_geodata_id not in node_geodata.keys():
- all_node = kwargs["node_info"]["all_node"]
- try:
- node_X = float(all_node[all_node["NodeId"] == node_id]["X"].values)
- node_Y = float(all_node[all_node["NodeId"] == node_id]["Y"].values)
- except:
- warning(
- f"{cyme_mdbname}@{network_id}: cannot add coordinates for node_id"
- )
- node_X = np.nan
- node_Y = np.nan
- node_geodata[node_geodata_id] = {
- "NotworkID": network_id,
- "node": node_id,
- "x": node_X,
- "y": node_Y,
- }
- else:
- raise Exception(
- f"{cyme_mdbname}@{network_id}: multiple definition for {node_id}"
- )
+
for device_id in node_links[node_id]:
phase |= glm_phase_code[device_dict[device_id]["phases"]]
obj = self.object(
@@ -3259,10 +3248,36 @@ def cyme_extract_9(network_id, network, conversion_info):
# generate coordinate file
if geodata_file:
+ all_node = table_find(cyme_table["node"], NetworkId=network_id)
+ df_all_nodes = pd.DataFrame.from_dict(all_node)
+
+ for index, row in df_all_nodes.iterrows():
+ node_id = row["NodeId"]
+ if node_id not in node_geodata.keys():
+ try:
+ node_X = float(row["X"])
+ node_Y = float(row["Y"])
+ except:
+ warning(
+ f"{cyme_mdbname}@{network_id}: cannot add coordinates for node_id"
+ )
+ node_X = np.nan
+ node_Y = np.nan
+ node_geodata[node_id] = {
+ "NetworkID": network_id,
+ "node": node_id,
+ "x": node_X,
+ "y": node_Y,
+ }
+ else:
+ raise Exception(
+ f"{cyme_mdbname}@{network_id}: multiple definition for {node_id}"
+ )
+
df_node = pd.DataFrame.from_dict(node_geodata)
df_node = df_node.T
- df_node.drop(df_node[df_node[:]["NotworkID"] != network_id].index, inplace=True)
- df_node = df_node.drop(["NotworkID"], axis=1)
+ df_node.drop(df_node[df_node[:]["NetworkID"] != network_id].index, inplace=True)
+ df_node = df_node.drop(["NetworkID"], axis=1)
df_node.to_csv(f"{output_folder}/{geodata_file}", index=False, header=True)
glm.close()
@@ -3397,6 +3412,7 @@ def convert(input_file: str, output_file: str = None, options: dict[str, Any] =
cyme_extracter["default"] = cyme_extracter["90000"]
version = cyme_table["schemaversion"].loc[0]["Version"]
+
network_count = 0
conversion_info = {
"input_folder": input_folder,
diff --git a/converters/mdb2glm.py b/converters/mdb2glm.py
index b924ed099..ce56bf570 100644
--- a/converters/mdb2glm.py
+++ b/converters/mdb2glm.py
@@ -37,32 +37,36 @@
"""
-import json
-import os
+import json
+import os
import sys, getopt
-from datetime import datetime
+from datetime import datetime
import importlib, copy
from importlib import util
config = {
- "input" : "mdb",
- "output" : "glm",
- "type" : ["cyme","table"],
- "format" : ["player","object"],
- "options" : {},
+ "input": "mdb",
+ "output": "glm",
+ "type": ["cyme", "table"],
+ "format": ["player", "object"],
+ "options": {},
}
+
def help():
- print('Syntax:')
- print('mdb2glm.py -i|--ifile -o|--ofile -t|--type -f|--format ')
- print(' -c|--config : [OPTIONAL] print converter configuration')
- print(' -i|--ifile : [REQUIRED] mdb input file name.')
- print(' -o|--ofile : [REQUIRED] glm output file name.')
- print(' -t|--type : [REQUIRED] specify input type')
- print(' -f|--format : [OPTIONAL] specify output format')
- print(' -p|--property : [OPTIONAL] specify a converter option/property')
- print('Input types')
- print(' cyme : cyme input');
+ print("Syntax:")
+ print(
+ "mdb2glm.py -i|--ifile -o|--ofile -t|--type -f|--format "
+ )
+ print(" -c|--config : [OPTIONAL] print converter configuration")
+ print(" -i|--ifile : [REQUIRED] mdb input file name.")
+ print(" -o|--ofile : [REQUIRED] glm output file name.")
+ print(" -t|--type : [REQUIRED] specify input type")
+ print(" -f|--format : [OPTIONAL] specify output format")
+ print(" -p|--property : [OPTIONAL] specify a converter option/property")
+ print("Input types")
+ print(" cyme : cyme input")
+
input_name = None
output_name = None
@@ -70,39 +74,43 @@ def help():
output_type = ""
options = {}
-try :
- opts, args = getopt.getopt(sys.argv[1:],"hi:o:t:cf:p:",["help","ifile=","ofile=","type=","config","format","property"])
+try:
+ opts, args = getopt.getopt(
+ sys.argv[1:],
+ "hi:o:t:cf:p:",
+ ["help", "ifile=", "ofile=", "type=", "config", "format", "property"],
+ )
except getopt.GetoptError:
print("ERROR [mdb2glm.py]: command line options not valid")
sys.exit(2)
-if not opts :
+if not opts:
help()
sys.exit(1)
for opt, arg in opts:
- if opt in ("-h","--help"):
+ if opt in ("-h", "--help"):
help()
sys.exit(0)
- elif opt in ("-c","--config"):
+ elif opt in ("-c", "--config"):
print(json.dumps(config))
sys.exit(0)
elif opt in ("-i", "--ifile"):
input_name = arg.strip()
elif opt in ("-o", "--ofile"):
output_name = arg.strip()
- elif opt in ("-t","--type"):
+ elif opt in ("-t", "--type"):
if arg in config["type"]:
input_type = arg
else:
print(f"ERROR [mdb2glm]: '{arg}'' is not a valid input data type")
- sys.exit(1)
- elif opt in ("-f","--format"):
+ sys.exit(3)
+ elif opt in ("-f", "--format"):
if arg in config["format"]:
output_type = arg
else:
print(f"ERROR [mdb2glm]: '{arg}'' is not a valid output format")
- sys.exit(1)
- elif opt in ("-p","--property"):
+ sys.exit(4)
+ elif opt in ("-p", "--property"):
spec = arg.split("=")
if len(spec) == 1:
options[spec[0]] = True
@@ -110,19 +118,22 @@ def help():
options[spec[0]] = "=".join(spec[1:])
if not input_type:
- print("ERROR [mdb2glm.py]: conversion type not specified (-t option is missing)")
- sys.exit(1)
+ print(
+ "ERROR [mdb2glm.py]: conversion type not specified (-t option is missing)"
+ )
+ sys.exit(5)
if output_type:
- output_type = "-" + output_type
+ output_type = "-" + output_type
-modname = sys.argv[0].replace("mdb2glm.py",f"mdb-{input_type}2glm{output_type}.py")
+modname = sys.argv[0].replace("mdb2glm.py", f"mdb-{input_type}2glm{output_type}.py")
if os.path.exists(modname):
util.spec_from_file_location(input_type, modname)
mod = importlib.import_module(f"mdb-{input_type}2glm{output_type}")
argv = copy.deepcopy(sys.argv)
argv[0] = modname
- mod.convert(input_name,output_name,options)
+ mod.convert(input_name, output_name, options)
else:
-
- print(f"ERROR [mdb2glm.py]: type '{input_type}' is not valid -- {modname} not found");
- sys.exit(2)
\ No newline at end of file
+ print(
+ f"ERROR [mdb2glm.py]: type '{input_type}' is not valid -- {modname} not found"
+ )
+ sys.exit(6)
diff --git a/converters/xls-spida2csv-geodata.py b/converters/xls-spida2csv-geodata.py
index 8df42b1bd..47ef7da09 100644
--- a/converters/xls-spida2csv-geodata.py
+++ b/converters/xls-spida2csv-geodata.py
@@ -1,11 +1,3 @@
-import pandas as pd
-import string
-import math
-import re
-import gridlabd
-import numpy as np
-import os
-
"""Convert XLS SPIDAcalc pole data to geodata
SYNOPSIS
@@ -30,7 +22,13 @@
"""
-import pandas
+import pandas as pd
+import string
+import math
+import re
+import gridlabd
+import numpy as np
+import os
default_options = {
"precision" : 2,
diff --git a/converters/xlsx-spida2csv-geodata.py b/converters/xlsx-spida2csv-geodata.py
new file mode 100644
index 000000000..10a2c39c6
--- /dev/null
+++ b/converters/xlsx-spida2csv-geodata.py
@@ -0,0 +1,776 @@
+"""Convert XLSX SPIDAcalc pole data to geodata
+
+SYNOPSIS
+
+ Shell:
+ $ gridlabd convert -i poles:POLES.xlsx,equipment:ASSETS.xlsx
+ -o GEODATA.csv -f xlsx-spida -t csv-geodata [OPTIONS ...]
+
+ GLM:
+ #convert -i poles:POLES.xlsx,equipment:ASSETS.xlsx -o GEODATA.csv
+ -f xlsx-spida -t csv-geodata [OPTIONS ...]
+
+
+OPTIONS:
+
+ - `precision=2`: specify the number of digits in a number and function
+ ROUND will be used (default 2)
+
+ - `extract_equipment`: enable the conversion of pole-mounted equipment,
+ dummy values will be used for equipment properties (default None)
+
+ - `include_dummy_network`: enable the generation of a bus-type feeder,
+ dummy values will be used for properties of feeder and equipment
+ (default None)
+
+ - `include_weather=NAME`: name the weather object and do not use dummy
+ values for weather data (default None)
+
+ - `include_mount` : enable the generation of pole mounts objects for the
+ ability to connect poles to network
+
+DESCRIPTION
+
+ This converter extracts pole geodata from a SPIDAcalc pole asset report
+ spreadsheet and generates a GriDLAB-D geodata CSV file.
+
+ If only a single input file is specified without a file type
+ specification, then it is assumed to be the pole data file. In
+ general, multiple files are needed, in which case they must be
+ specified as a series of comma-separated specifications, e.g.,
+ `TYPE1:NAME1,TYPE2:NAME2,...`. Accepted file types are
+
+ - `pole` Pole data from SpidaCalc (XLSX)
+ - `equipment` Equipment data from SpidaCalc (XLSX)
+ - `network` Network mapping data (CSV)
+
+ The output is always a GridLAB-D GeoData CSV file.
+"""
+
+import pandas as pd
+import string
+import math
+import re
+import numpy as np
+import os
+
+
+default_options = {
+ "precision" : 2,
+ "extract_equipment" : None,
+ "include_dummy_network" : None,
+ "include_weather" : None,
+ "include_mount" : None,
+}
+
+def string_clean(input_str):
+ output_str = input_str.replace(" ", "_")
+ output_str = output_str.replace(".", "_")
+ output_str = output_str.replace('"', "")
+ return output_str
+
+include_network = False
+extract_equipment = False
+
+def convert(input_files, output_file, options={}):
+
+ if type(input_files) is dict:
+ for key in input_files:
+ if not key in ["poles","equipment","network"]:
+ print(f"WARNING [xlsx-spida2csv-geodata]: input file spec '{key}' is not valid",file=sys.stderr)
+
+ if not "poles" in input_files:
+ raise Exception("poles not specified among input files")
+ else:
+ input_pole_file = input_files["poles"]
+
+ if not "equipment" in input_files:
+ input_equipment_file = None
+ else:
+ input_equipment_file = input_files["equipment"]
+ global extract_equipment
+ extract_equipment = True
+
+ if "network" in input_files:
+ global include_network
+ include_network = input_files["network"]
+ global include_mount
+ include_mount = True
+
+ elif type(input_files) is str:
+ input_pole_file = input_files
+ else:
+ raise Exception("input_files is not dict or str")
+
+ # read default options into globals
+ for name, value in default_options.items():
+ globals()[name] = value
+
+ # read user options into globals
+ for name, value in options.items():
+ if name not in default_options.keys():
+ raise Exception("option '{name}={value}' is not valid")
+ globals()[name] = value
+
+ # check network mounts
+ if include_network :
+ globals()['include_mount'] = True
+
+ # Read all the sheets in the .xlxs file
+ file_extension = input_pole_file.split(".")[-1]
+ if file_extension == 'xlsx':
+ df = pd.read_excel(input_pole_file, sheet_name=0, usecols=[
+ 'Structure ID', 'AS-IS AGL', 'AS-IS Species', 'AS-IS GLC', 'AS-IS Length',
+ 'AS-IS Class', 'AS-IS Allowable Stress Adjustment',
+ 'AS-IS Effective Stress Adjustment', 'AS-IS GPS Point'], engine='openpyxl')
+ elif file_extension == 'xls':
+ df = pd.read_excel(input_pole_file, sheet_name=0, usecols=[
+ 'Structure ID', 'AS-IS AGL', 'AS-IS Species', 'AS-IS GLC', 'AS-IS Length',
+ 'AS-IS Class', 'AS-IS Allowable Stress Adjustment',
+ 'AS-IS Effective Stress Adjustment', 'AS-IS GPS Point'])
+ elif file_extension == 'csv':
+ df = pd.read_csv(input_pole_file, usecols=[
+ 'Structure ID', 'AS-IS AGL', 'AS-IS Species', 'AS-IS GLC', 'AS-IS Length',
+ 'AS-IS Class', 'AS-IS Allowable Stress Adjustment',
+ 'AS-IS Effective Stress Adjustment', 'AS-IS GPS Point'])
+
+ # Read the overhead lines
+ df_lines = pd.read_csv(include_network) if include_network else pd.DataFrame()
+ overheadline_names = []
+ for index, row in df_lines.iterrows():
+
+ if row['class']=="overhead_line" :
+ overheadline_names.append(row['name'])
+
+ # Parse necessary columns into a format supported by Gridlabd.
+ # parse_column(df_current_sheet, 'Lean Angle', parse_angle)
+ # parse_column(df_current_sheet, 'Lean Direction', parse_angle)
+ parse_column(df, 'AS-IS Length', parse_length)
+ parse_column(df, 'AS-IS GLC', parse_circumference_to_diamater)
+ parse_column(df, 'AS-IS AGL', parse_length)
+ parse_column(df, 'AS-IS Effective Stress Adjustment', parse_pressure) # for sec data
+ parse_column(df, 'AS-IS GPS Point', check_lat_long)
+
+ # Prepare GPS Point column for splitting and split value into lat and long.
+ df['AS-IS GPS Point'] = df['AS-IS GPS Point'].apply(lambda x: str(x).replace('', ',') if str(x) == '' else str(x))
+ df[['latitude','longitude']] = df['AS-IS GPS Point'].str.split(',', expand=True)
+
+ # Subtract agl from length to get depth.
+ for row in range(0,len(df['AS-IS AGL'])):
+ try:
+ df.at[row,'AS-IS AGL'] = subtract_length_columns(str(df.at[row,'AS-IS Length']), str(df.at[row,'AS-IS AGL']), 'AS-IS Length', 'AS-IS AGL', row)
+
+ except ValueError as e:
+ df.at[row,'AS-IS AGL'] = ""
+
+ # Missing tilt angle and direction, set to default 0
+ columns_to_ensure = ['Lean Angle', 'Lean Direction']
+
+ # Loop through the columns you want to ensure
+ for col in columns_to_ensure:
+ if col not in df.columns:
+ df[col] = 0
+
+ # Rename columns to its corresponding column name in Gridlabd.
+ # I believe class in the file is referring to grade, so it is renamed.
+ df.rename(columns = {'Structure ID' : 'name', 'AS-IS Effective Stress Adjustment': 'fiber_strength',\
+ 'AS-IS Length' : 'pole_length', 'AS-IS GLC' : 'ground_diameter', 'AS-IS AGL' : 'pole_depth',\
+ 'Class': "grade", 'Lean Angle': 'tilt_angle',
+ 'Lean Direction': 'tilt_direction'}, inplace=True) # for sec data
+
+ # Split GPS Point into longitude and latitude, then parse.
+ # Remove original GPS Point column
+ df.drop(columns = {'AS-IS GPS Point'},axis=1,inplace=True) # sce data
+
+ # Split the dataframe based on properties of pole_config and pole_library.
+ df_pole_config = df[['pole_length', 'pole_depth', 'ground_diameter', 'fiber_strength']].copy()
+ df_pole_library = df[['tilt_angle', 'tilt_direction', 'latitude', 'longitude']].copy()
+
+ # # # Adding a pole mount for each pole
+ # if include_mount :
+ # df_pole_mount = df[['tilt_angle']].copy()
+ # df_pole_mount.drop(['tilt_angle'],axis=1, inplace=True)
+ # df_pole_mount['class'] = 'powerflow.pole_mount'
+ # Specify class of the properties.
+ df_pole_config.loc[:,'class'] = 'powerflow.pole_configuration'
+ df_pole_library.loc[:,'class'] = 'powerflow.pole'
+
+
+ # Additional properties for each class. These values are just for testing purposes for now.
+ pole_configuration_name = []
+ pole_name = []
+ pole_mount_name = []
+
+ for i in range(len(df["name"])):
+ pole_configuration_name.append(f"pole_configuration_{df['name'][i]}")
+ pole_name.append(f"pole_{df['name'][i]}")
+
+
+ df_pole_config.loc[:,'class'] = 'pole_configuration'
+ df_pole_library.loc[:,'class'] = 'pole'
+
+
+ df_pole_config.loc[:,'name'] = pole_configuration_name
+ df_pole_library.loc[:,'configuration'] = pole_configuration_name
+ df_pole_library.loc[:,'name'] = pole_name
+
+
+ if include_weather:
+ df_pole_library.loc[:,'weather'] = include_weather
+ else:
+ df_pole_library.loc[:,'wind_speed'] = '0 m/s'
+ df_pole_library.loc[:,'wind_direction'] = '0 deg'
+ df_pole_library.loc[:,'flags'] = 'NONE'
+ if include_mount :
+
+
+ equipment_name = {}
+
+ for pole in pole_name :
+ if [p for p in overheadline_names if pole[5:] in p] :
+ # equipment_name_raw.append([p for p in overheadline_names if pole[5:] in p])
+ # matching_lines =
+ equipment_name[pole] = [p for p in overheadline_names if pole[5:] in p]
+ # equipment_name_raw = {pole[5:]: p for p in overheadline_names if pole[5:] in p}
+ # equipment_name = [item for sublist in equipment_name_raw for item in sublist]
+
+ # Create an empty list to hold the formatted data
+ formatted_equipment = []
+
+ # Iterate through the dictionary items and format them
+ for pole, lines in equipment_name.items():
+ for line in lines:
+ formatted_equipment.append([pole, line])
+
+ # Create a DataFrame from the formatted data
+ df_pole_mount = pd.DataFrame(formatted_equipment, columns=['parent', 'equipment'])
+ df_pole_mount.loc[:,'class'] = 'pole_mount'
+ df_pole_mount.loc[:,'name'] = 'pole_mount_'+df_pole_mount['equipment']
+
+ poles_with_parents_named = set([p for p in pole_name if any(p[5:] in l for l in overheadline_names)])
+
+ # Filtering poles to the ones that found in overheadline names
+ df_pole_library_filtered= df_pole_library[df_pole_library['name'].isin(poles_with_parents_named)]
+
+ if include_mount :
+ df= pd.concat([df_pole_config, df_pole_library_filtered, df_pole_mount], axis=0, ignore_index=True)
+ else :
+ df= pd.concat([df_pole_config, df_pole_library], axis=0, ignore_index=True)
+
+ # Drop rows with duplicate entries under the 'ID' column
+ df = df.drop_duplicates(subset=['name'])
+ # Secondly do operations on the sheet 'Design - Structure'
+ if extract_equipment:
+ file_extension = input_equipment_file.split(".")[-1]
+ if file_extension == 'xlsx':
+ df_structure_raw = pd.read_excel(input_equipment_file, sheet_name=0, usecols=['ID', 'Structure_x0020_ID', 'AS-IS_x0020_Size', 'AtHeight_x0020_Unit', 'AtHeight_x0020_Value', 'Usage_x0020_Group', 'AS-IS_x0020_Height', 'AS-IS_x0020_Direction',
+ 'AS-IS_x0020_Offset_x002F_Lead'], engine='openpyxl')
+ elif file_extension == 'xls':
+ df_structure_raw = pd.read_excel(input_equipment_file, sheet_name=0, usecols=['ID', 'Structure_x0020_ID', 'AS-IS_x0020_Size', 'AtHeight_x0020_Unit', 'AtHeight_x0020_Value', 'Usage_x0020_Group', 'AS-IS_x0020_Height', 'AS-IS_x0020_Direction',
+ 'AS-IS_x0020_Offset_x002F_Lead'])
+ elif file_extension == 'csv':
+ df_structure_raw = pd.read_csv(input_equipment_file, usecols=['ID', 'Structure_x0020_ID', 'AS-IS_x0020_Size', 'AtHeight_x0020_Unit', 'AtHeight_x0020_Value', 'Usage_x0020_Group', 'AS-IS_x0020_Height', 'AS-IS_x0020_Direction',
+ 'AS-IS_x0020_Offset_x002F_Lead'], engine='openpyxl')
+
+ # new_header_index = df_structure.iloc[:, 0].first_valid_index()
+ # new_header = df_structure.iloc[new_header_index+1]
+ # df_structure = df_structure[new_header_index:]
+ # df_structure.columns = new_header
+ # df_structure.index = range(len(df_structure.index))
+ # df_structure.columns.name = None
+ # pos_index = []
+ # pole_index = 0
+ # for i in range(len(df_structure["ID#"])):
+ # if df_current_sheet.iloc[i]["ID#"] == pole_name[pole_index].split('_')[1]:
+ # pos_index.append(i)
+ # if pole_index == len(pole_name)-1:
+ # break
+ # else:
+ # pole_index += 1
+ # pos_index = sorted(pos_index)
+ # pole_index = 0
+ # mount_wire_dic = {}
+ # mount_equip_dic = {}
+ # mount_wep_dic = {}
+ # for i in range(len(pos_index)-1):
+ # for k in range(pos_index[i]+2,pos_index[i+1]-1):
+ # mount_ID = df_current_sheet.iloc[k]["ID#"]
+ # if "Wire" in mount_ID:
+ # mount_height = parse_length(df_current_sheet.iloc[k]["Height"], "Height", f"{k}")
+ # mount_direction = parse_angle(df_current_sheet.iloc[k]["Direction"], "Direction", f"{k}")
+ # mount_wire_dic[f"OL_{mount_ID}_{pole_name[pole_index]}"] = {
+ # "equipment" : f"OL_{mount_ID}_{pole_name[pole_index]}",
+ # "class" : "pole_mount",
+ # "parent" : pole_name[pole_index],
+ # "height" : mount_height,
+ # "direction" : mount_direction,
+ # "pole_spacing" : f'WEP_{df_current_sheet.iloc[k]["Related"]}_{pole_name[pole_index]}',
+ # "// cable_type" : df_current_sheet.iloc[k]["Size"],
+ # "flags" : "NONE",
+
+ # }
+ # elif "Equip" in mount_ID:
+ # mount_height = parse_length(df_current_sheet.iloc[k]["Height"], "Height", f"{k}")
+ # mount_direction = parse_angle(df_current_sheet.iloc[k]["Direction"], "Direction", f"{k}")
+ # mount_equip_dic[f"TF_{mount_ID}_{pole_name[pole_index]}"] = {
+ # "equipment" : f"TF_{mount_ID}_{pole_name[pole_index]}",
+ # "class" : "pole_mount",
+ # "parent" : pole_name[pole_index],
+ # "height" : mount_height,
+ # "direction" : mount_direction,
+ # "offset" : "1 ft",
+ # "area" : "1 sf",
+ # "weight" : "10 lb",
+ # "// equipment_type" : df_current_sheet.iloc[k]["Size"],
+ # "flags" : "NONE",
+
+ # }
+ # elif "WEP" in mount_ID:
+ # mount_direction = parse_angle(df_current_sheet.iloc[k]["Direction"], "Direction", f"{k}")
+ # mount_offset = parse_length(df_current_sheet.iloc[k]["Offset/Lead"], "Offset/Lead", f"{k}")
+ # mount_wep_dic[f"WEP_{mount_ID}_{pole_name[pole_index]}"] = {
+ # "name" : f"WEP_{mount_ID}_{pole_name[pole_index]}",
+ # "direction" : mount_direction,
+ # "distance" : mount_offset,
+ # }
+ # pole_index += 1
+ # for k in range(pos_index[-1]+2,len(df_current_sheet["ID#"])):
+ # mount_ID = df_current_sheet.iloc[k]["ID#"]
+ # if "Wire" in mount_ID:
+ # mount_height = parse_length(df_current_sheet.iloc[k]["Height"], "Height", f"{k}")
+ # mount_direction = parse_angle(df_current_sheet.iloc[k]["Direction"], "Direction", f"{k}")
+ # mount_wire_dic[f"OL_{mount_ID}_{pole_name[pole_index]}"] = {
+ # "equipment" : f"OL_{mount_ID}_{pole_name[pole_index]}",
+ # "class" : "pole_mount",
+ # "parent" : pole_name[pole_index],
+ # "height" : mount_height,
+ # "direction" : mount_direction,
+ # "pole_spacing" : f'WEP_{df_current_sheet.iloc[k]["Related"]}_{pole_name[pole_index]}',
+ # "// cable_type" : df_current_sheet.iloc[k]["Size"],
+ # "flags" : "NONE",
+ # }
+ # elif "Equip" in mount_ID:
+ # mount_height = parse_length(df_current_sheet.iloc[k]["Height"], "Height", f"{k}")
+ # mount_direction = parse_angle(df_current_sheet.iloc[k]["Direction"], "Direction", f"{k}")
+ # mount_equip_dic[f"TF_{mount_ID}_{pole_name[pole_index]}"] = {
+ # "equipment" : f"TF_{mount_ID}_{pole_name[pole_index]}",
+ # "class" : "pole_mount",
+ # "parent" : pole_name[pole_index],
+ # "height" : mount_height,
+ # "direction" : mount_direction,
+ # "offset" : "1 ft",
+ # "area" : "1 sf",
+ # "weight" : "10 lb",
+ # "// equipment_type" : df_current_sheet.iloc[k]["Size"],
+ # "flags" : "NONE",
+ # }
+ # elif "WEP" in mount_ID:
+ # mount_direction = parse_angle(df_current_sheet.iloc[k]["Direction"], "Direction", f"{k}")
+ # mount_offset = parse_length(df_current_sheet.iloc[k]["Offset/Lead"], "Offset/Lead", f"{k}")
+ # mount_wep_dic[f"WEP_{mount_ID}_{pole_name[pole_index]}"] = {
+ # "name" : f"WEP_{mount_ID}_{pole_name[pole_index]}",
+ # "direction" : mount_direction,
+ # "distance" : mount_offset,
+ # }
+ # for key in mount_wire_dic.keys():
+ # mount_wire_dic[key]["pole_spacing"] = mount_wep_dic[mount_wire_dic[key]["pole_spacing"]]["distance"]
+ # df_mount_wire = pd.DataFrame.from_dict(mount_wire_dic, orient='index')
+ # df_mount_equip = pd.DataFrame.from_dict(mount_equip_dic, orient='index')
+ # df['Design - Structure']= pd.concat([df_mount_wire, df_mount_equip], axis=0, ignore_index=True)
+ # df['Design - Pole']= pd.concat([df['Design - Pole'], df['Design - Structure']], axis=0, ignore_index=True)
+
+ if include_dummy_network:
+ df = xls2glm_object(df,input_pole_file)
+
+ # Keep track of final df to output at the end.
+ df_final = df.copy()
+
+ # Move class column to the first column. May not be necessary.
+ class_column = df_final.pop('class')
+ df_final.insert(0, 'class', class_column)
+
+ # Create the intermediate csv files. May not be necessary.
+
+ df_final.reset_index(drop=True, inplace=True)
+
+ # Create final csv file.
+ df_final.to_csv(output_file, index=False)
+
+def parse_angle(cell_string, current_column, current_row):
+ """Parse a string to get a string with angle in a unit that is supported by Gridlabd
+
+ Additional acceptable units can be added to angle_units. Invalid inputs raise a ValueError.
+
+ Keyword arguments:
+ cell_string -- the string to be parsed (presumably from a cell)
+ current_column -- the column of the cell it is parsing. For more descriptive ValueErrors
+ current_row -- the row of the cell it is parsing. For more descriptive ValueErrors
+ """
+ angle_units = {
+ "°" : "deg",
+ "deg" : "deg",
+ "rad" : "rad",
+ "grad" : "grad",
+ "quad" : "quad",
+ "sr" : "sr"
+ }
+ value = re.search("\d+[\.]?[\d+]*", cell_string)
+ if cell_string == "nan":
+ raise ValueError(f'The cell column: {current_column}, row {current_row} is empty. Please enter a value.')
+ output_unit = ""
+ for unit in angle_units.keys():
+ if unit in cell_string:
+ output_unit = angle_units[unit]
+ break
+ if output_unit == "":
+ raise ValueError(f'Please specify valid units for {cell_string} in column: {current_column}, row {current_row}.')
+ elif value == None:
+ raise ValueError(f'Please specify valid value for {cell_string} in column: {current_column}, row {current_row}.')
+ else:
+ return value.group() + " " + output_unit
+
+
+def parse_length(cell_string_raw, current_column, current_row):
+ """Parse a string to get a string with length in a unit that is supported by Gridlabd
+
+ Additional acceptable units can be added to length_units and length_conversion with its corresponding conversion value to degrees.
+ Supports multiple units in one string. Invalid inputs raise a ValueError.
+
+ Keyword arguments:
+ cell_string -- the string to be parsed (presumably from a cell)
+ current_column -- the column of the cell it is parsing. For more descriptive ValueErrors
+ current_row -- the row of the cell it is parsing. For more descriptive ValueErrors
+ """
+ cell_string=cell_string_raw.lower()
+
+ INCH_TO_FEET = 0.0833
+ UNIT_TO_UNIT = 1.0
+ YARD_TO_FEET = 3.0
+ MILE_TO_FT = 5280.0
+ FEET_TO_INCH = 12.0
+ YARD_TO_INCH = 36.0
+ MILE_TO_INCH = 6360.0
+ MILE_TO_YARD = 1760.0
+ # Handle values and units in different orders.
+ length_units = {
+ "'" : "ft",
+ '"' : "in",
+ "in" : "in",
+ "inch" : "in",
+ "inches" :'in',
+ "feet" : "ft",
+ "ft" : "ft",
+ "foot" : "ft",
+ "yd" : "yd",
+ "yard" : "yd",
+ "mile" : "mile",
+ "mi" : "mile"
+ }
+ # Map to a dictionary of conversion rates of different units to the key of length_conversions.
+ length_conversions = {
+ "ft" : {"in" : INCH_TO_FEET, "ft" : UNIT_TO_UNIT, "yd" : YARD_TO_FEET, "mile" : MILE_TO_FT},
+ "in" : {"in" : UNIT_TO_UNIT,"ft": FEET_TO_INCH, "yd": YARD_TO_INCH, "mile" : MILE_TO_INCH},
+ "yd" : {"in": 1/YARD_TO_INCH, "ft": 1/YARD_TO_FEET, "yd": UNIT_TO_UNIT, "mile" : MILE_TO_YARD},
+ "mile" : {"in": 1/MILE_TO_INCH, "ft": 1/MILE_TO_FT, "yd": 1/MILE_TO_YARD, "mile" : UNIT_TO_UNIT}
+ }
+
+ if cell_string == "nan":
+ raise ValueError(f'The cell column: {current_column}, row {current_row} is empty. Please enter a value.')
+
+ # Keeps track of the units that are in the cell. Whichever unit is listed first in length_units AND is present in the string is the unit that will be used as the output.
+ cell_units = []
+ units_positions = []
+ num_strings = []
+ for key in length_units.keys():
+ if key in cell_string:
+ cell_units.append(length_units[key])
+ units_positions.append(cell_string.find(key))
+ last_pos = 0
+ for units_position in units_positions:
+ num_strings.append(cell_string[last_pos:units_position])
+ last_pos = units_position+1
+
+ if len(cell_units) == 0:
+ raise ValueError(f'Please specify valid units for {cell_string} in column: {current_column}, row {current_row}.')
+
+ if len(num_strings) != len(cell_units):
+ raise ValueError(f'Please make sure there are the same number of numbers and units for value {cell_string} in column: {current_column}, row {current_row}')
+
+ cell_numbers = re.findall('\d+[\./]?[\d+]*', cell_string)
+
+ # Convert all the units and values in the cell to one unit and value.
+ total_cell_value = 0
+ convert_to = length_conversions[cell_units[0]]
+ for i in range(len(num_strings)):
+ num_unit_strings = re.findall('\d+[\./]?[\d+]*', num_strings[i])
+ total_num_value = 0
+ for num_unit_string in num_unit_strings:
+ if "/" in num_unit_string:
+ total_num_value += float(num_unit_string.split('/')[0])/float(num_unit_string.split('/')[1])
+ else:
+ total_num_value += float(num_unit_string)
+ total_cell_value += total_num_value * convert_to[cell_units[i]]
+ return str(round(total_cell_value,precision)) + " " + cell_units[0]
+
+def parse_pressure(cell_string, current_column, current_row):
+ """Parse a string to get a string with pressure in a unit that is supported by Gridlabd
+
+ Additional acceptable units can be added to pressure_units. Invalid inputs raise a ValueError.
+
+ Keyword arguments:
+ cell_string -- the string to be parsed (presumably from a cell)
+ current_column -- the column of the cell it is parsing. For more descriptive ValueErrors
+ current_row -- the row of the cell it is parsing. For more descriptive ValueErrors
+ """
+ pressure_units = {
+ "psi" : "psi",
+ "lb/in²" : "psi",
+ "bar" : "bar",
+ "atm" : "atm",
+ }
+ value = re.search("\d+[\.]?[\d+]*", cell_string)
+ if cell_string == "nan":
+ raise ValueError(f'The cell column: {current_column}, row {current_row} is empty. Please enter a value.')
+ output_unit = ""
+ for unit in pressure_units.keys():
+ if unit in cell_string:
+ cell_string = cell_string.replace(unit,pressure_units[unit])
+ output_unit = pressure_units[unit]
+ else : # ASSUME no unit given
+ output_unit="psi"
+
+ if output_unit == "":
+ raise ValueError(f'Please specify valid units for {cell_string} in column: {current_column}, row {current_row}.')
+ elif value == None:
+ raise ValueError(f'Please specify valid value for {cell_string} in column: {current_column}, row {current_row}.')
+ else:
+ return value.group() + " " + output_unit
+
+def parse_column(df_current_sheet, current_column, parsing_function):
+ """Parse each cell in the column with a function
+ For invalid inputs, resulting cell will be ''.
+ Allows empty cells ('nan'). Can remove the if statement if an error should be raised for empty cells.
+ Keyword arguments:
+ current_column -- the string to be parsed (presumably from a cell)
+ parsing_function -- the function to be called for each cell
+ """
+ for row in range(len(df_current_sheet[current_column])):
+ current_string = str(df_current_sheet.at[row,current_column]).lower()
+ if (current_string == 'nan'):
+ df_current_sheet.at[row,current_column] = ''
+ else:
+ try:
+ df_current_sheet.at[row,current_column] = parsing_function(str(df_current_sheet.at[row,current_column]),current_column,row)
+ except ValueError as e:
+ df_current_sheet.at[row,current_column] = ''
+
+def subtract_length_columns(minuend_string, subtrahend_string, minuend_column, subtrahend_column,current_row):
+ """Subtract the lengths of strings contained in two cells
+
+ Assumes the units are the same for the two columns.
+
+ Keyword arguments:
+ minuend_string -- the string containing the minuend
+ subtrahend_string -- the string containing the subtrahend
+ minuend_column -- the name of the column containing the minuend cell. For more descriptive ValueErrors
+ subtrahend_column -- the name of the column containing the subtrahend cell. For more descriptive ValueErrors
+ current_row -- the row number containing the minuend cell. For more descriptive ValueErrors
+ """
+ length_units = {
+ "'" : "ft",
+ '"' : "in",
+ "in" : "in",
+ "inch" : "in",
+ "feet" : "ft",
+ "ft" : "ft",
+ "foot" : "ft",
+ "yd" : "yd",
+ "yard" : "yd",
+ "mile" : "mile",
+ "mi" : "mile"
+ }
+ if minuend_string == "nan":
+ raise ValueError(f'The cell column: {minuend_column}, row {current_row} is empty. Please enter a value.')
+ elif subtrahend_string == "nan":
+ raise ValueError(f'The cell column: {subtrahend_column}, row {current_row} is empty. Please enter a value.')
+ output_unit = ""
+ for unit in length_units.keys():
+ if unit in minuend_string and unit in subtrahend_string:
+ output_unit = length_units[unit]
+ break
+ if output_unit == "":
+ raise ValueError(f'Please provide {minuend_column} and {subtrahend_column}, row {current_row} with the same units.')
+ else:
+ return str(round(float(re.search("^[1-9]\d*(\.\d+)?", minuend_string).group()) - float(re.search("^[1-9]\d*(\.\d+)?", subtrahend_string).group()),precision)) + " " + output_unit
+
+
+def check_lat_long(cell_string, current_column, current_row):
+ """Parse the lat/long value
+
+ Keyword arguments:
+ cell_string -- the string to be parsed (presumably from a cell)
+ current_column -- the column number containing the cell_string. For more descriptive ValueErrors
+ current_row -- the row number containing the cell_string. For more descriptive ValueErrors
+ """
+ CONTIGUOUS_US_LOWER_LAT = 23
+ CONTIGUOUS_US_UPPER_LAT = 50
+ CONTIGUOUS_US_LOWER_LONG = -130
+ CONTIGUOUS_US_UPPER_LONG = -64
+ ALASKA_LOWER_LAT = 55
+ ALASKA_UPPER_LAT = 71
+ ALASKA_LOWER_LONG = -168
+ ALASKA_UPPER_LONG = -130
+ if cell_string == "nan":
+ raise ValueError(f'The cell column: {current_column}, row {current_row} is empty. Please enter a value.')
+ else:
+ lat_long = re.findall('[\-]?\d+[\.]?[\d+]*', cell_string)
+ if (len(lat_long) != 2):
+ raise ValueError(f'The cell value {cell_string} in {current_column}, row {current_row} is not valid. Please provide GPS Point in this format: lat , long')
+ try:
+ lat = float(lat_long[0])
+ longitude = float(lat_long[1])
+ except ValueError:
+ raise ValueError(f'The cell value {cell_string} in {current_column}, row {current_row} is not valid. Please provide GPS Point in this format: float , float')
+ if ((lat < CONTIGUOUS_US_UPPER_LAT and longitude > CONTIGUOUS_US_LOWER_LONG) and (lat > CONTIGUOUS_US_LOWER_LAT and longitude < CONTIGUOUS_US_UPPER_LONG) or
+ ((lat > ALASKA_LOWER_LAT and longitude < ALASKA_UPPER_LONG ) and (lat < ALASKA_UPPER_LAT and longitude > ALASKA_LOWER_LONG))):
+ return str(lat) + "," + str(longitude)
+ else:
+ raise ValueError(f'The cell value {cell_string} in {current_column}, row {current_row} is not in North America. Please enter a valid value.')
+
+
+def parse_circumference_to_diamater(cell_string, current_column, current_row):
+ """Parse the circumference value into its diameter value
+
+ Keyword arguments:
+ cell_string -- the string to be parsed (presumably from a cell)
+ current_column -- the column number containing the cell_string. For more descriptive ValueErrors
+ current_row -- the row number containing the cell_string. For more descriptive ValueErrors
+ """
+ try:
+ string_value = parse_length(cell_string, current_column, current_row).split(" ")
+ return str(round(float(string_value[0])/math.pi, precision)) + " " + string_value[1]
+ except ValueError as e:
+ raise e
+
+def parse_space_to_underscore(cell_string, current_column, current_row):
+ if cell_string == "nan":
+ raise ValueError(f'The cell column: {current_column}, row {current_row} is empty. Please enter a value.')
+ return cell_string.replace(' ','_')
+
+def xls2glm_object(df_glm, input_file):
+ glm_node_dic = {}
+ glm_OLLC_dic = {}
+ glm_LS_dic = {}
+ glm_LC_dic = {}
+ glm_OL_dic = {}
+ glm_TC_dic = {}
+ glm_TF_dic = {}
+
+ swing_node = f"ND_{re.sub(r'[^a-zA-Z]', '_', os.path.basename(input_file).split('.')[0])}"
+ df_glm["parent"]=swing_node
+ glm_node_dic[swing_node] = {
+ "name" : swing_node,
+ "class" : "node",
+ "phases" : "A",
+ "bustype" : "SWING",
+ "nominal_voltage" : "2401 V",
+ }
+ last_node = swing_node
+ # for n in range(len(df_glm["class"])):
+ # if df_glm.iloc[n]["class"] == "pole_mount":
+ # if df_glm.iloc[n]["equipment"].split('_')[0] == "OL":
+ # if f'ND_{df_glm.iloc[n]["equipment"]}' not in glm_node_dic.keys():
+ # glm_node_dic[f'ND_{df_glm.iloc[n]["equipment"]}'] = {
+ # "name" : f"ND_{df_glm.iloc[n]['equipment']}",
+ # "class" : "node",
+ # "phases" : "A",
+ # "nominal_voltage" : "2401 V",
+ # }
+
+ # name_overhead_line_conductor = f'OC_{string_clean(df_glm.iloc[n]["// cable_type"])}'
+ # if name_overhead_line_conductor not in glm_OLLC_dic.keys():
+ # glm_OLLC_dic[name_overhead_line_conductor] = {
+ # "name" : name_overhead_line_conductor,
+ # "class" : "overhead_line_conductor",
+ # "diameter" : "0.1 in",
+ # "resistance" : "0.1 Ohm/mile",
+ # "weight" : "0.1 lb/ft",
+ # "strength" : "100 lb",
+ # }
+
+ # name_line_spacing = f'LS_{string_clean(df_glm.iloc[n]["height"])}'
+ # if name_line_spacing not in glm_LS_dic.keys():
+ # glm_LS_dic[name_line_spacing] = {
+ # "name" : name_line_spacing,
+ # "class" : "line_spacing",
+ # "distance_AE" : df_glm.iloc[n]["height"],
+ # }
+
+ # name_line_configuration = f'LC_{df_glm.iloc[n]["equipment"]}'
+ # if name_line_configuration not in glm_LC_dic.keys():
+ # glm_LC_dic[name_line_configuration] = {
+ # "name" : name_line_configuration,
+ # "class" : "line_configuration",
+ # "conductor_A" : name_overhead_line_conductor,
+ # "spacing" : name_line_spacing,
+ # }
+
+ # name_overhead_line = f'{df_glm.iloc[n]["equipment"]}'
+ # if name_overhead_line not in glm_OL_dic.keys():
+ # glm_OL_dic[name_overhead_line] = {
+ # "name" : name_overhead_line,
+ # "class" : "overhead_line",
+ # "phases" : "A",
+ # "from" : last_node,
+ # "to" : f'ND_{df_glm.iloc[n]["equipment"]}',
+ # "length" : df_glm.iloc[n]["pole_spacing"],
+ # "configuration" : name_line_configuration
+ # }
+ # last_node = f'ND_{df_glm.iloc[n]["equipment"]}'
+ # elif df_glm.iloc[n]["equipment"].split('_')[0] == "TF":
+ # if f'ND_{df_glm.iloc[n]["equipment"]}' not in glm_node_dic.keys():
+ # glm_node_dic[f'ND_{df_glm.iloc[n]["equipment"]}'] = {
+ # "name" : f"ND_{df_glm.iloc[n]['equipment']}",
+ # "class" : "node",
+ # "phases" : "A",
+ # "nominal_voltage" : "2401 V",
+ # }
+
+ # name_transformer_configuration = f'TC_{df_glm.iloc[n]["equipment"]}'
+ # if name_transformer_configuration not in glm_TC_dic.keys():
+ # glm_TC_dic[name_transformer_configuration] = {
+ # "name" : name_transformer_configuration,
+ # "class" : "transformer_configuration",
+ # "connect_type" : "WYE_WYE",
+ # "install_type" : "PADMOUNT",
+ # "power_rating" : "100 kVA",
+ # "primary_voltage" : "2401 V",
+ # "secondary_voltage" : "2401 V",
+ # "resistance" : "0.000333",
+ # "reactance" : "0.00222",
+ # }
+ # name_transformer = f'{df_glm.iloc[n]["equipment"]}'
+ # if name_transformer not in glm_TF_dic.keys():
+ # glm_TF_dic[name_transformer] = {
+ # "name" : name_transformer,
+ # "class" : "transformer",
+ # "phases" : "AN",
+ # "from" : last_node,
+ # "to" : f'ND_{df_glm.iloc[n]["equipment"]}',
+ # "configuration" : name_transformer_configuration,
+ # }
+ # last_node = f'ND_{df_glm.iloc[n]["equipment"]}'
+ # else:
+ # raise Exception(f"cannot convert equipment")
+ df_glm_node = pd.DataFrame.from_dict(glm_node_dic, orient='index')
+ df_glm_OLLC = pd.DataFrame.from_dict(glm_OLLC_dic, orient='index')
+ df_glm_LS = pd.DataFrame.from_dict(glm_LS_dic, orient='index')
+ df_glm_LC = pd.DataFrame.from_dict(glm_LC_dic, orient='index')
+ df_glm_OL = pd.DataFrame.from_dict(glm_OL_dic, orient='index')
+ df_glm_TC = pd.DataFrame.from_dict(glm_TC_dic, orient='index')
+ df_glm_TF = pd.DataFrame.from_dict(glm_TF_dic, orient='index')
+
+ df_glm_network= pd.concat([df_glm_node, df_glm_OLLC, df_glm_LS, df_glm_LC, df_glm_OL, df_glm_TC, df_glm_TF], axis=0, ignore_index=True)
+ df_glm= pd.concat([df_glm, df_glm_network], axis=0, ignore_index=True)
+
+ return df_glm.copy()
diff --git a/converters/xlsx2csv.py b/converters/xlsx2csv.py
index 17c17e8ef..bb93068ce 100644
--- a/converters/xlsx2csv.py
+++ b/converters/xlsx2csv.py
@@ -8,13 +8,13 @@
config = {
"input" : "xlsx",
"output" : "csv",
- "from" : ["workbook"],
- "type" : ["table"],
+ "from" : ["workbook","spida"],
+ "type" : ["table","geodata"],
}
def help():
print('Syntax:')
- print(f'{config["input"]}2{config["output"]}.py -i|--ifile [,[,...]] -o|--ofile [options ...]')
+ print(f'{config["input"]}2{config["output"]}.py -i|--ifile INPUTSPEC -o|--ofile OUTPUTSPEC [options ...]')
print(f' -c|--config : [OPTIONAL] display converter configuration')
print(f' -i|--ifile : [REQUIRED] {config["input"]} input file name')
print(f' -o|--ofile : [REQUIRED] {config["output"]} output file name')
@@ -22,6 +22,7 @@ def help():
print(f' -t|--type : [REQUIRED] output {config["output"]} data type')
print(f' -r|--read : [OPTIONAL] set converter read option')
print(f' -w|--write : [OPTIONAL] set converter write option')
+ print(f' OPTION[=VALUE : [OPTIONAL] set converter general option')
def error(msg):
print(f'ERROR [{config["input"]}2{config["output"]}]: {msg}')
@@ -33,7 +34,7 @@ def error(msg):
output_type = None
options = {}
-opts, args = getopt.getopt(sys.argv[1:],"hci:o:f:t:r:w:",["help","config","ifile=","ofile=","from=","type=","read=","write="])
+opts, args = getopt.getopt(sys.argv[1:],"hci:o:f:t:r:w:",["help","config","ifile=","sfile=","ofile=","from=","type=","read=","write="])
if not opts :
help()
@@ -44,10 +45,12 @@ def error(msg):
help()
sys.exit(0)
elif opt in ("-c","--config"):
- print(json.dumps(config))
sys.exit(0)
elif opt in ("-i", "--ifile"):
- input_file = arg.strip()
+ try:
+ input_file = dict([x.split(":") for x in arg.strip().split(",")])
+ except:
+ input_file = arg.strip()
elif opt in ("-o", "--ofile"):
output_file = arg.strip()
elif opt in ("-f","--from"):
@@ -70,6 +73,14 @@ def error(msg):
options[f"write.{spec[0]}"] = spec[1]
else:
options[f"write.{spec[0]}"] = "=".join(spec[1:])
+ elif not opt.startswith("-"):
+ spec = arg.split("=")
+ if len(spec) == 1:
+ options[arg] = True
+ elif len(spec) == 2:
+ options[spec[0]] = spec[1]
+ else:
+ options[spec[0]] = "=".join(spec[1:])
else:
error(f"{opt}={arg} is not a valid option");
diff --git a/docs/Cloud/README.md b/docs/Cloud/README.md
index 01555e966..cbe6fa645 100644
--- a/docs/Cloud/README.md
+++ b/docs/Cloud/README.md
@@ -1,6 +1,6 @@
-[[/Cloud/README]] -- HiPAS GridLAB-D Cloud Support
+[[/Cloud/README]] -- Arras Energy Cloud Support
-HiPAS GridLAB-D was developed to support cloud operations. Currently the following cloud services are supported.
+Arras Energy was developed to support cloud operations. Currently the following cloud services are supported.
* [[/Cloud/AWS]]
* [[/Cloud/Docker]]
diff --git a/docs/Converters/Import/SpidaCalc.md b/docs/Converters/Import/SpidaCalc.md
new file mode 100644
index 000000000..311747191
--- /dev/null
+++ b/docs/Converters/Import/SpidaCalc.md
@@ -0,0 +1,55 @@
+[[/Converters/Import/Spida_data]] -- SPIDACalc data import
+
+# Synopis
+
+GLM:
+~~~
+#convert SPIDACALC.xls GEODATA.csv -f xls-spida -t csv-geodata [precision=2] [extract_equipment=yes] [include_network=yes]
+~~~
+
+# Description
+
+This converter extracts pole geodata from a SPIDAcalc pole asset report spreadsheet and generates a GriDLAB-D geodata CSV file.
+
+# Options
+
+* `precision=DIGITS`: specify the number of digits in a number and function ROUND will be used (default 2)
+* `extract_equipment={yes,no}`: enable the conversion of pole-mounted equipment, dummy values will be used for equipment properties (default None)
+* `include_network={yes,no}`: enable the generation of a bus-type feeder, dummy values will be used for properties of feeder and equipment (default None)
+* `include_weather=NAME`: name the weather object and do not use dummy values for weather data (default None)
+
+# Input
+
+[SPIDAcalc](https://www.spidasoftware.com/spidacalc/) is proprietarty pole loading and line design software that some utilities use to model the forces on transmission and distribution systems. The data includes detailed specifications and location data for poles, mounted equipment and lines.
+
+The input `.xls` file must include a sheet called 'Design - Pole'.
+If `extract_equipment=yes`, then it must also include a sheet called 'Design - Structure'
+
+This SPIDACalc API documentation explains data in the pole asset report spreadsheet:
+* https://github.com/spidasoftware/schema/blob/66cb5d102dde5bf23b487dbddb261d3a88fc0907/doc/wfs.md
+* https://github.com/spidasoftware/schema/blob/master/doc/calc.md
+
+For quick reference, some of the less obvious meanings are included below:
+In 'Design - Pole':
+* `AGL` means Above Ground Length
+* `GLC` means GroundLine Circumference
+
+In 'Design - Structure':
+* `Direction` is a bearing for the mounted equipment, measured in degrees clockwise from North.
+* A WEP is a Wire End Point, indicating the pole or building at the other end of a wire. Here `Offset/Lead` corresponds to the length of wire between the pole and this Wire End Point.
+* For Insulators: "If on pole, then `offest` is attach height. If on cross arm, then `offset` is the distance from one end of the cross arm." - (SPIDAcalc docs)[https://github.com/spidasoftware/schema/blob/66cb5d102dde5bf23b487dbddb261d3a88fc0907/doc/wfs.md]
+* For CrossArms: "Crossarm bearing is the direction the end of the crossarm points, not the direction of the bolt attachment." - (SPIDAcalc docs)[https://github.com/spidasoftware/schema/blob/66cb5d102dde5bf23b487dbddb261d3a88fc0907/doc/wfs.md]
+
+# Output
+
+A csv where each row represents a GridLAB-D object, columns are properties for that object.
+**See the documentation for the respective GridLAB-D objects to interpret the properties.**
+
+The following objects can be included in the output:
+* `pole`
+* `pole_configuration`
+If `extract_equipment=yes`, it will also include `pole_mount`.
+
+# See also
+
+* [[/Converters/Import/Csv_files]]
diff --git a/docs/Converters/Import/Xls_files.md b/docs/Converters/Import/Xls_files.md
index d82bc8f7e..caf6d8b1e 100644
--- a/docs/Converters/Import/Xls_files.md
+++ b/docs/Converters/Import/Xls_files.md
@@ -17,6 +17,7 @@ There are many different types of XLS files that can be imported. Each is docume
* [[/Converters/Import/Ceus_data]]
* [[/Converters/Import/Rbsa_data]]
* [[/Converters/Import/Scada_data]]
+ * [[/Converters/Import/Spida_data]]
* GLM models
* [[/Converters/Import/Config_data]]
* [[/Converters/Import/Ica_data]]
diff --git a/docs/Converters/README.md b/docs/Converters/README.md
index cc1450ccc..601dc7994 100644
--- a/docs/Converters/README.md
+++ b/docs/Converters/README.md
@@ -18,7 +18,7 @@ bash$ gridlabd -o . [-D _save_options=' ...']
# Description
-HiPAS GridLAB-D automatically converts input and output files based on their extension and options provided, if any. In general each input and output extension has specific requirement for options to define how the file must be converted. Please see the documentation for the individual converters for details.
+Arras Energy automatically converts input and output files based on their extension and options provided, if any. In general each input and output extension has specific requirement for options to define how the file must be converted. Please see the documentation for the individual converters for details.
# See also
diff --git a/docs/Developer/Module/Create.md b/docs/Developer/Module/Create.md
index 1333ed77b..a5458a53f 100644
--- a/docs/Developer/Module/Create.md
+++ b/docs/Developer/Module/Create.md
@@ -1 +1,166 @@
-TODO
+This page describes the elements required to create a new module and its class implementations
+
+# Module C++ Main
+
+You should use the [module template](https://github.com/arras-energy/module_template) to create a new module. This will provide you with a `main.cpp` and template `.cpp` and `.h` files needed to start your new module and new class implementations.
+
+# Module C++ Implementation of Classes
+
+This section describes how to public properties in a class.
+
+## Declaring Properties
+
+The `gl_publish_variable(...)` function uses property offsets in memory. Every object attribute is listed sequentially in memory in the order in which they are declared. This function returns the difference in the memory address of an attribute from the start of the object in memory. It's defined by a macro, `GL_ATOMIC(type, attribute name)` which generates a callable function specific to every attribute it's applied to.
+
+The code looks like this:
+ static inline size_t get_##X##_offset(void) { return (char*)&(defaults->X)-(char*)defaults; };
+
+`defaults` is a class attribute, a pointer to an object of the same type as the class it's a part of. Say we are looking at the `pole` class. `defaults` will be a pointer to a pole object. Confusingly, `defaults` is never inititialized to anything beyond NULL. How does this work? Back when this program was written in C, `defaults` pointed to a chunk of memory holding an object with all attributes initilized to default values. In C you could create a new object by simply copying this memory chunk. In C++ you need to declare all the attributes within an object, not just the object itself. The old method of setting defaults stopped working, so it's done differently now. The `defaults` pointer was retained as an attribute in the class declaration. The get offset function uses it for pointer math, finding the differences in memory location between the start of an object and all of it's attributes. Because a class declaration includes the type of all attributes, the compiler can figure out how much space they will take up in memory. (In C++ all types have a fixed size.) 'defaults' never needs to be initialized.
+
+Published properties are declared using the `GL_*` declaration macros:
+### `GL_ATOMIC(TYPE,NAME)` defines the following members:
+ * `size_t get_NAME_offset(void)` - return the address of the value
+ * `TYPE get_NAME()` - get the value
+ * `gld_property get_NAME_property()` - get the property of the value
+ * `TYPE get_NAME(gld_rlock &lock)` - get the value with a read lock
+ * `TYPE get_NAME(gld_wlock &lock)` - get the value with a write lock
+ * `void set_NAME(TYPE value)` - set a value
+ * `void set_NAME(TYPE value, gld_wlock &lock)` - set a value with a write lock
+ * `gld_string get_NAME_string(void)` - get the value as a string
+ * `void set_NAME(const char *text)` - set the value from a string
+ * `void init_NAME(void)` - initialize the value to the default
+ * `void init_NAME(TYPE value)` - initialize the value
+### `GL_STRUCT(TYPE,NAME)` defines the following members:
+ * `size_t get_NAME_offset(void)` - return the address of the value
+ * `TYPE get_NAME()` - get the value
+ * `gld_property get_NAME_property()` - get the property of the value
+ * `TYPE get_NAME(gld_rlock &lock)` - get the value with a read lock
+ * `TYPE get_NAME(gld_wlock &lock)` - get the value with a write lock
+ * `void set_NAME(TYPE value)` - set a value
+ * `void set_NAME(TYPE value, gld_wlock &lock)` - set a value with a write lock
+ * `gld_string get_NAME_string(void)` - get the value as a string
+ * `void set_NAME(const char *text)` - set the value from a string
+ * `void init_NAME(void)` - initialize the value to the default
+ * `void init_NAME(TYPE value)` - initialize the value
+### `GL_STRING(TYPE,NAME)` defines the following members:
+ * `size_t get_NAME_offset(void)` - return the address of the value
+ * `TYPE get_NAME()` - get the value
+ * `gld_property get_NAME_property()` - get the property of the value
+ * `char* get_NAME(gld_rlock &lock)` - get the value with a read lock
+ * `char* get_NAME(gld_wlock &lock)` - get the value with a write lock
+ * `char get_NAME(size_t index)` - get a character
+ * `char get_NAME(size_t index, gld_rlock &lock)` - get a character with a read lock
+ * `char get_NAME(size_t index, gld_wlock &lock)` - get a character with a write lock
+ * `void set_NAME(TYPE *value)` - set the value
+ * `void set_NAME(TYPE *value, gld_wlock &lock)` - set the value with a write lock
+ * `void set_NAME(size_t index, TYPE c)` - set a character
+ * `void set_NAME(size_t index, TYPE c, gld_wlock &lock)` - set a character with a write lock
+ * `gld_string get_NAME_string(void)` - get the value as a string
+ * `void set_NAME(const char *text)` - set the value from a string
+ * `void init_NAME(void)` - initialize the value to the default
+ * `void init_NAME(TYPE value)` - initialize the value
+### `GL_ARRAY(TYPE,NAME,SIZE)` defines the following members:
+ * `size_t get_NAME_offset(void)` - returns the memory offset of the property
+ * `gld_property get_NAME_property(void)` - returns the property
+ * `TYPE* get_NAME(void)` - get values
+ * `TYPE* get_NAME(gld_rlock &lock)` - get values using a read lock
+ * `TYPE* get_NAME(gld_wlock &lock)` - get values using a write lock
+ * `TYPE get_NAME(size_t index)` - get a value
+ * `TYPE get_NAME(size_t index, gld_rlock &lock)` - get a value using a read lock
+ * `TYPE get_NAME(size_t index, gld_wlock &lock)` - get a value using a write lock
+ * `void set_NAME(T* values)` - copy values
+ * `void set_NAME(T* values, gld_wlock &lock)` - copy values using a write lock
+ * `void set_NAME(size_t index, T value)` - set a value
+ * `void set_NAME(size_t index, T value, gld_wlock &lock)` - set a value using a write lock
+### `GL_BITFLAGS(TYPE,NAME)` defines the following members:
+ * `size_t get_NAME_offset(void)` - returns the memory offset for the property
+ * `TYPE get_NAME(TYPE mask=-1)` - returns the bits using the mask
+ * `inline gld_property get_NAME_property(void)` - return the property
+ * `TYPE get_NAME(gld_rlock &lock)` - return the value using a read lock
+ * `TYPE get_NAME(gld_wlock &lock)` - return the value using a write lock
+ * `void set_NAME(TYPE p)` - sets the value
+ * `void set_NAME_bits(TYPE bits)` - sets bits
+ * `void clr_NAME_bits(TYPE bits)` - clears bits
+ * `void set_##X(TYPE p, gld_wlock &lock)` - sets bits using a write lock
+ * `gld_string get_##X##_string(void)` - returns the value as a string
+ * `void set_##X(char *text)` - sets the value from a string
+### `GL_METHOD(CLASS,NAME)` defines the following members:
+ * `size_t get_##X##_offset(void)` - returns the memory offset for the property
+ * `int get_##X(char *buffer, size_t length)` - gets the output value of the method
+ * `int set_##X(char *buffer)` - sets the input value of the value
+### `GL_OBJECT(NAME)` defines the following members:
+ * `size_t get_NAME_offset(void)` - returns the memory offset for the property
+ * `gld_object* get_NAME(void)` - returns a pointer to underlying object
+ * `gld_property* get_NAME_property(void)` - returns a pointer to the property
+ * `gld_object *get_NAME(gld_rlock &lock)` - returns a pointer to the underlying object using a read lock
+ * `gld_object *get_NAME(gld_wlock &lock)` - returns a pointer to the underlying object using a write lock
+ * `void set_NAME(OBJECT *ptr)` - sets the property to a new object pointer
+ * `void set_NAME(const char *name)` - sets the property to a new object name
+ * `void init_NAME(void)` - initializes the object pointer (sets to NULL)
+ * `void init_NAME(OBJECT *ptr)` - initializes the object pointer
+ * `OBJECT *get_NAME_object(void)` - get the object pointer
+
+## Publishing properties
+
+You should use the `gl_publish_variable(...)` to publish class properties.
+
+The `PT_` prefix for variable specifications indicates Property Types:
+* `PT_void` - the type has no data
+* `PT_double` - the data is a double-precision float
+* `PT_complex` - the data is a complex value
+* `PT_enumeration` - the data is an enumeration
+* `PT_set` - the data is a set
+* `PT_int16` - the data is a 16-bit integer
+* `PT_int32` - the data is a 32-bit integer
+* `PT_int64` - the data is a 64-bit integer
+* `PT_char8` - the data is \p NULL -terminated string up to 8 characters in length
+* `PT_char32` - the data is \p NULL -terminated string up to 32 characters in length
+* `PT_char256` - the data is \p NULL -terminated string up to 256 characters in length
+* `PT_char1024` - the data is \p NULL -terminated string up to 1024 characters in length
+* `PT_object` - the data is a pointer to a GridLAB object
+* `PT_delegated` - the data is delegated to a module for implementation (experimental)
+* `PT_bool` - the data is a true/false value, implemented as a C++ bool
+* `PT_timestamp` - timestamp value
+* `PT_double_array` - the data is a fixed length double[] (experimental)
+* `PT_complex_array` - the data is a fixed length complex[] (experimental)
+* `PT_real` - Single or double precision float ~ allows double values to be overriden (experimental)
+* `PT_float` - Single-precision float (experimental)
+* `PT_loadshape` - Loadshapes are state machines driven by schedules
+* `PT_enduse` - Enduse load data
+* `PT_random` - Randomized number
+* `PT_method` - Method entry point
+* `PT_string` - Variable length string (experimental)
+* `PT_python` - Python object (experimental)
+
+* `PT_AGGREGATE` - internal use only
+* `PT_KEYWORD` - used to add an enum/set keyword definition
+* `PT_ACCESS` - used to specify property access rights
+* `PT_SIZE` - used to setup arrayed properties
+* `PT_FLAGS` - used to indicate property flags next
+* `PT_INHERIT` - used to indicate that properties from a parent class are to be published
+* `PT_UNITS` - used to indicate that property has certain units (which following immediately as a string)
+* `PT_DESCRIPTION` - used to provide helpful description of property
+* `PT_EXTEND` - used to enlarge class size by the size of the current property being mapped
+* `PT_EXTENDBY` - used to enlarge class size by the size provided in the next argument
+* `PT_DEPRECATED` - used to flag a property that is deprecated
+* `PT_HAS_NOTIFY` - used to indicate that a notify function exists for the specified property
+* `PT_HAS_NOTIFY_OVERRIDE` - as `PT_HAS_NOTIFY`, but instructs the core not to set the property to the value being set
+* `PT_DEFAULT` - identifies the default value to use when creating the object property
+
+The `PA_` prefix indicates to property access flags:
+* `PA_N = 0x00` - no access permitted
+* `PA_R = 0x01` - read access--modules can read the property
+* `PA_W = 0x02` - write access--modules can write the property
+* `PA_S = 0x04` - save access--property is saved to output
+* `PA_L = 0x08` - load access--property is loaded from input
+* `PA_H = 0x10` - hidden access--property is not revealed by modhelp
+* `PA_PUBLIC = (PA_R|PA_W|PA_S|PA_L)` - property is public (readable, writable, saved, and loaded)
+* `PA_REFERENCE = (PA_R|PA_S|PA_L)` - property is FYI (readable, saved, and loaded
+* `PA_PROTECTED = (PA_R)` - property is semipublic (readable, but not saved or loaded)
+* `PA_PRIVATE = (PA_S|PA_L)` - property is nonpublic (not accessible, but saved and loaded)
+* `PA_HIDDEN = (PA_PUBLIC|PA_H)` - property is not visible
+
+## Special properties
+
+* `oclass` refers to the object class.
+* `pclass` refers to the parent class (if any).
diff --git a/docs/Developers.md b/docs/Developers.md
index 1850d35a4..bc5bf37b4 100644
--- a/docs/Developers.md
+++ b/docs/Developers.md
@@ -1,4 +1,4 @@
-Software developers and engineers are welcome to contribute to HiPAS GridLAB-D. The source code to HiPAS is available to the public through the [GitHub SLAC Gismo GridLAB-D project](https://source.gridlabd.us/).
+Software developers and engineers are welcome to contribute to Arras Energy. The source code to HiPAS is available to the public through the [GitHub SLAC Gismo GridLAB-D project](https://source.gridlabd.us/).
## Developer Resources
@@ -9,9 +9,9 @@ Software developers and engineers are welcome to contribute to HiPAS GridLAB-D.
- [Wiki](https://source.gridlabd.us/wiki)
- [Discussions](https://source.gridlabd.us/discussions)
-Developers should consult the [[/Developer/README]] for information about modifying and contributing to HiPAS GridLAB-D.
+Developers should consult the [[/Developer/README]] for information about modifying and contributing to Arras Energy.
-# Installing HiPAS GridLAB-D from source code
+# Installing Arras Energy from source code
You can set up your system to host development and build GridLAB-D from source code using the installation script.
@@ -23,7 +23,7 @@ bash$ ./install.sh
This script supports the most common Linux/Unix platforms. If your platform is not supported, please consult the developer guide at [[/Developer/README]].
-# Validating a HiPAS GridLAB-D installation
+# Validating an Arras Energy installation
Once you have completed installation, you should validate your system before beginning software development.
diff --git a/docs/Documentation.md b/docs/Documentation.md
index a3df67383..a86a36487 100644
--- a/docs/Documentation.md
+++ b/docs/Documentation.md
@@ -1,22 +1,22 @@
-Welcome to the user and modeling manuals for HiPAS GridLAB-D. The following manual sections are available in this branch.
+Welcome to the user and modeling manuals for Arras Energy. The following manual sections are available in this branch.
# [Cloud](/index.html?folder=/Cloud)
-*HiPAS GridLAB-D resources on the cloud using AWS, GitHub, and CircleCI*
+*Arras Energy resources on the cloud using AWS, GitHub, and CircleCI*
# [Command](/index.html?folder=/Command)
-*Command line options that change how HiPAS GridLAB-D works*
+*Command line options that change how Arras Energy works*
# [Developer](/index.html?folder=/Developer)
-*Develop guides for integrating and extending HiPAS GridLAB-D*
+*Develop guides for integrating and extending Arras Energy*
# [GLM](/index.html?folder=/GLM)
-*GLM is HiPAS GridLAB-D's powerful multi-domain modeling language*
+*GLM is Arras Energy's powerful multi-domain modeling language*
# [Global](/index.html?folder=/Global)
-*Variables that control features and environment of HiPAS GridLAB-D*
+*Variables that control features and environment of Arras Energy*
# [Install](/index.html?folder=/Install)
-*Installing HiPAS GridLAB-D on various platforms and system*
+*Installing Arras Energy on various platforms and system*
# [Macro](/index.html?folder=/Macro)
*Macros control how GLM files are loaded and read*
@@ -28,7 +28,7 @@ Welcome to the user and modeling manuals for HiPAS GridLAB-D. The following manu
*Servers allow access to a simulation while it is running*
# [Subcommand](/index.html?folder=/Subcommand)
-*Subcommand deliver extra features and extensions to HiPAS GridLAB-D*
+*Subcommand deliver extra features and extensions to Arras Energy*
# [Tips and Tricks](http://docs-dev.gridlabd.us/_page.html?folder=/Tips%20and%20tricks)
*Lots of helpful hints and solutions to common problems*
diff --git a/docs/Features.md b/docs/Features.md
index 98a928259..f83643790 100644
--- a/docs/Features.md
+++ b/docs/Features.md
@@ -1,4 +1,4 @@
-The following features are new or improved in HiPAS GridLAB-D 4.2.
+The following features are available in Arras Energy 4.3.
# Cloud
diff --git a/docs/GLM/Global/Now.md b/docs/GLM/Global/Now.md
new file mode 100644
index 000000000..e06246752
--- /dev/null
+++ b/docs/GLM/Global/Now.md
@@ -0,0 +1,36 @@
+[[/GLM/Global/Now.md]] -- Get current time
+
+# Synopsis
+
+GLM:
+
+~~~
+${NOW}
+${NOW FORMAT}
+~~~
+
+# Description
+
+If used without the `FORMAT`, then the format used is `%Y%m%d-%H%M%S`.
+
+# Example
+
+File `/tmp/test.glm`:
+
+~~~
+#print ${NOW}
+#print ${NOW %m/%d/%y %H:%M}
+~~~
+
+Run the following:
+
+~~~
+gridlabd /tmp/test.glm
+~~~
+
+Output:
+
+~~~
+20231008-101445
+10/08/23 10:14
+~~~
diff --git a/docs/GLM/Global/Tmpfile.md b/docs/GLM/Global/Tmpfile.md
new file mode 100644
index 000000000..8010cdb8b
--- /dev/null
+++ b/docs/GLM/Global/Tmpfile.md
@@ -0,0 +1,44 @@
+[[/GLM/Global/Tmpfile]] -- Get a temporary filename
+
+# Synopsis
+
+~~~
+${TMPFILE}
+${TMPFILE TAG}
+~~~
+
+# Description
+
+Create and access a temporary file using a tag. The file is deleted when the GridLAB-D run is completed. The file is located in the `TMPDIR` or `TMP` or `/tmp` folder, whichever is found first. The file naming convention is `gridlabd_tmp_HOSTNAME_PID_NAME.EXT, where
+
+ - `HOSTNAME` is the name of the local host machine
+ - `PID` is the process ID of the current gridlabd run
+ - `NAME` is the tag name
+ - `EXT` is the tag type
+
+If `TAG` is omitted, a random tag is generated. If `TAG` has the format `EXT:NAME` these are used in constructing the file name, otherwise `NAME` is set to `TAG`.
+
+# Example
+
+Create the file `/tmp/test.glm`:
+
+~~~
+#print ${TMPFILE py:A}
+#exec ls ${TMPFILE py:A}
+~~~
+
+Run the following command:
+
+~~~
+export TMP=/tmp
+gridlabd /tmp/test.glm
+ls /tmp/gridlabd*
+~~~
+
+Output:
+
+~~~
+/tmp/test.glm(1): /tmp/gridlabd_tmp_MacBook_Pro_2_local_10391_A.py
+/tmp/gridlabd_tmp_MacBook_Pro_2_local_10391_A.py
+/tmp/gridlabd-pmap-4
+~~~
diff --git a/docs/Home.md b/docs/Home.md
index 843409dc8..93f9ebb65 100644
--- a/docs/Home.md
+++ b/docs/Home.md
@@ -1,12 +1,12 @@
-Welcome to the [HiPAS GridLAB-D](http://www.gridlabd.us/) documentation.
+Welcome to the [Arras Energy](http://www.gridlabd.us/) documentation.
# [[/Features]]
-*Learn the latest features of HiPAS GridLAB-D*
+*Learn the latest features of Arras Energy*
# [[/Getting Started]]
-*Get started using HiPAS GridLAB-D*
+*Get started using Arras Energy*
# [[/Documentation]]
diff --git a/docs/Module/Powerflow/Pole_mount.md b/docs/Module/Powerflow/Pole_mount.md
index e991adc23..a34213c2f 100644
--- a/docs/Module/Powerflow/Pole_mount.md
+++ b/docs/Module/Powerflow/Pole_mount.md
@@ -27,6 +27,16 @@ The pole mount object attaches powerflow link objects to pole objects. The
parent of a `pole_mount` must be the `pole` object on which the equipment is
mounted.
+## Properties
+
+### `direction`
+
+~~~
+double direction[deg];
+~~~
+
+Bearing of the mounted equipment, an angle measured clockwise from due north in degrees with vertex at the pole centerline.
+
# Example
The following example illustrates mounting an overhead line on a pole.
diff --git a/docs/Module/Python.md b/docs/Module/Python.md
index 29ba8c2c1..689b61886 100644
--- a/docs/Module/Python.md
+++ b/docs/Module/Python.md
@@ -2,7 +2,15 @@
# Synopsis
-Python 3.6 or greater:
+GridLAB-D Python venv:
+~~~
+gridlabd shell
+python$PYTHON_VER -m venv myenv
+. myenv/bin/activate
+python3 -m pip install $GLD_ETC/*.whl
+~~~
+
+Python 3:
~~~
>>> import gridlabd
>>> gridlabd.title()
@@ -256,6 +264,7 @@ Saves the full model to the file. The currently supported formats are `.glm`, `
The following model is `test.glm`:
~~~
module test;
+ #set suppress_repeat_messages=FALSE
clock {
starttime '2018-01-01 00:00:00';
stoptime '2018-01-01 01:00:00';
@@ -308,7 +317,7 @@ bash$ python3
2018-01-01 00:50:00 UTC,0.251099
2018-01-01 00:55:00 UTC,2.778129
2018-01-01 01:00:00 UTC,0.603100
- 4362511024
+ 0
>>> quit()
~~~
The following example records all house temperature when the model commit if performed:
@@ -391,4 +400,6 @@ The first few lines of output are in `house.csv`:
# See also
-* [[/Python subcommand]]
+* [[/Module/Python]]
+* [[/Subcommand/Shell]]
+
diff --git a/docs/Module/Python/Tutorial.md b/docs/Module/Python/Tutorial.md
index bb0e2a99f..391829498 100644
--- a/docs/Module/Python/Tutorial.md
+++ b/docs/Module/Python/Tutorial.md
@@ -1,5 +1,5 @@
-The `python` module allows HiPAS GridLAB-D models to be manipulated using Python code, and GridLAB-D simulations of those models to be controlled directly from Python.
+The `python` module allows Arras Energy models to be manipulated using Python code, and GridLAB-D simulations of those models to be controlled directly from Python.
# Runtime Structure
diff --git a/docs/News.md b/docs/News.md
index 87d46faa6..62d821e2d 100644
--- a/docs/News.md
+++ b/docs/News.md
@@ -1,7 +1,3 @@
-# Technical Advisory Committee Meetings and User Workshops
-
-The HiPAS GridLAB-D Technical Advisory Committee Meetings and User Workshops are held every September in Oakland California. Please see [Gridworks Distribution Systems Modeling Tools](https://gridworks.org/initiatives/distribution-system-modeling-tools/) for more information.
-
# Recent Updates
A list of recent releases of HiPAS GridLAB-D may be found at the [GitHub repository](https://source.gridlabd.us/discussions).
diff --git a/docs/README.md b/docs/README.md
index bb240f222..b4bb21e69 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,7 +1,7 @@
-# HiPAS GridLAB-D
+# Arras Energy
*Brought to you by the [CEC EPIC Program](https://www.energy.ca.gov/programs-and-topics/programs/electric-program-investment-charge-epic-program)* [image:cec-logo.png]
-This documentation is for [HiPAS GridLAB-D](http://www.gridlabd.us/), the high-performance commercial release of GridLAB-D developed by Stanford University at SLAC National Accelerator Laboratory under funding from the California Energy Commission.
+This documentation is for [Arras Energy](http://arras.energy/), the high-performance commercial release of GridLAB-D developed by Stanford University at SLAC National Accelerator Laboratory under funding from the California Energy Commission.
The documentation for the current research version of [GridLAB-D](https://www.gridlabd.org) developed by Battelle Memorial Institute at Pacific Northwest National Laboratory under funding from the US Department of Energy is available from [ShoutWiki](http://gridlab-d.shoutwiki.com/wiki/Main_Page).
diff --git a/docs/Sponsors.md b/docs/Sponsors.md
index f06062518..6e77ef746 100644
--- a/docs/Sponsors.md
+++ b/docs/Sponsors.md
@@ -1,9 +1,9 @@
-HiPAS GridLAB-D was developed with funding from the following organizations:
+Arras Energy was developed with funding from the following organizations:
# California Energy Commission EPIC Program
[image:cec-logo.png]
-The current California version of GridLAB-D is called [HiPAS GridLAB-D](https://source.gridlabd.us/) and is managed by [Stanford University](https://www.stanford.edu/) at [SLAC National Accelerator Laboratory](https://slac.stanford.edu.) under funding from the [California Energy Commission](https://energy.ca.gov/) under the [Electric Program Investment Charge (EPIC) program](https://www.energy.ca.gov/programs-and-topics/programs/electric-program-investment-charge-epic-program).
+The current California version of GridLAB-D is called [Arras Energy](https://arras.energy/) and is managed by [Stanford University](https://www.stanford.edu/) at [SLAC National Accelerator Laboratory](https://slac.stanford.edu.) under funding from the [California Energy Commission](https://energy.ca.gov/) under the [Electric Program Investment Charge (EPIC) program](https://www.energy.ca.gov/programs-and-topics/programs/electric-program-investment-charge-epic-program).
# US Department of Energy Office of Electricity
[image:doe-logo.png]
diff --git a/docs/Subcommand/Geodata.md b/docs/Subcommand/Geodata.md
index 60296536b..688ab9f82 100644
--- a/docs/Subcommand/Geodata.md
+++ b/docs/Subcommand/Geodata.md
@@ -167,7 +167,7 @@ You must subscribe to the TrafficView service to use this dataset.
The following command obtains the distance between two locations:
~~~
-% gridlabd geodata -d -D distance location 37.4150,-122.2056 37.3880,-122.2884
+% gridlabd geodata merge -d -D distance location 37.4150,-122.2056 37.3880,-122.2884
latitude,longitude,distance
37.415,-122.2056,0.0
37.388,-122.2884,7906.193731232153
@@ -176,7 +176,7 @@ latitude,longitude,distance
The following command obtains the coordinates for the points between two locations at 1 km resolution:
~~~
-% gridlabd geodata -d -D distance location 37.4150,-122.2056 37.3880,-122.2884 -r 1000
+% gridlabd geodata merge -d -D distance location 37.4150,-122.2056 37.3880,-122.2884 -r 1000
latitude,longitude,distance
37.415,-122.2056,0.0
37.41158495593229,-122.21607280180764,1000.0
diff --git a/docs/Subcommand/Insights.md b/docs/Subcommand/Insights.md
index add1c2c4b..756362080 100644
--- a/docs/Subcommand/Insights.md
+++ b/docs/Subcommand/Insights.md
@@ -34,7 +34,7 @@ Currently, the supported categories are
# Caveat
-Collects version usage data for HiPAS GridLAB-D by year and month. If month
+Collects version usage data for Arras Energy by year and month. If month
is not specified, then all months of the current year are returned. If year
is not specified, then all months of all years are returned.
diff --git a/docs/Subcommand/Shell.md b/docs/Subcommand/Shell.md
new file mode 100644
index 000000000..753c05f0a
--- /dev/null
+++ b/docs/Subcommand/Shell.md
@@ -0,0 +1,51 @@
+[[/Subcommand/Shell]] -- Open GridLAB-D shell environment
+
+# Synopsis
+
+Shell:
+
+~~~
+sh$ gridlabd shell [OPTIONS ...]
+~~~
+
+# Description
+
+The `shell` subcommand opens a shell in the GridLAB-D environment. The shell used is the one currently running as specified by the `SHELL` environment variable. This can be used to run Python with the active python `venv` used for GridLAB-D, or to create a new Python virtual environment in which gridlabd can be run. The options are the same as for the shell current being used.
+
+The following environment variables are set in the shell environment:
+
+- `CCFLAGS`: C-compiler flags
+- `CFLAGS`: C-compiler flags
+- `CPPFLAGS`: C++ compiler flags
+- `CXXFLAGS`: C++ compiler flags
+- `GLD_BIN`: binary folder
+- `GLD_ETC`: shared files folder
+- `GLD_INC`: include files folder
+- `GLD_LIB`: library folder
+- `GLD_VER`: version folder
+- `GLPATH`: GridLAB-D file search path
+- `INCLUDE`: C-compiler include flags
+- `LDFLAGS`: linker flags
+- `LIB`: linker library path
+- `PYCCFLAGS`: python C-compiler flags
+- `PYLDFLAGS`: Python linker flags
+- `PYTHON_CONFIG` python config executable name
+- `PYTHON_VER`: python version number (major.minor)
+- `PYTHONPATH`: Python search path
+- `VIRTUAL_ENV`: Python virtual environment path
+- `VIRTUAL_ENV_PROMPT`: Python virtual environment prompt
+
+# Example
+
+The following commands open a GridLAB-D shell environment and create a Python virtual environment in which GridLAB-D is installed
+
+~~~
+gridlabd shell
+python$PYTHON_VER -m venv myenv
+. myenv/bin/activate
+python3 -m pip install $GLD_ETC/*.whl
+~~~
+
+# See also
+
+* [[/Subcommand/Python]]
diff --git a/docs/Use cases/README.md b/docs/Use cases/README.md
index 5fd287517..b4d84e649 100644
--- a/docs/Use cases/README.md
+++ b/docs/Use cases/README.md
@@ -1,6 +1,6 @@
-[[/Use cases/README]] -- HiPAS GridLAB-D Use-cases
+[[/Use cases/README]] -- Arras Energy Use-cases
-HiPAS GridLAB-D was developed to support a number of important new use-cases that have emerged as a result of California's greenhouse gas emissions goals. The following use-cases were identified for HiPAS GridLAB-D 4.2.
+Arras Energy was developed to support a number of important new use-cases that have emerged as a result of California's greenhouse gas emissions goals. The following use-cases were identified for HiPAS GridLAB-D 4.2.
* [[/Use cases/Deep electrification]]
* [[/Use cases/Integration capacity analysis]]
diff --git a/docs/User manual/0 - Cover/0 - Front matter.md b/docs/User manual/0 - Cover/0 - Front matter.md
index 650a6c96a..5a3acae56 100644
--- a/docs/User manual/0 - Cover/0 - Front matter.md
+++ b/docs/User manual/0 - Cover/0 - Front matter.md
@@ -1,4 +1,4 @@
-# HiPAS GridLAB-D 4.3 User's Manual
+# Arras Energy 4.3 User's Manual
By David P. Chassin, SLAC National Accelerator Laboratory
diff --git a/docs/User manual/0 - Cover/2 - Preface.md b/docs/User manual/0 - Cover/2 - Preface.md
index 9f82a29e5..bf8591780 100644
--- a/docs/User manual/0 - Cover/2 - Preface.md
+++ b/docs/User manual/0 - Cover/2 - Preface.md
@@ -1,6 +1,6 @@
# Preface
-This manual is designed for general engineering, policy, regulatory, and economics readers who are interested in using HiPAS GridLAB-D to model and simulate the behavior of modern electricity delivery systems. Historically power system simulation tools were either solvers that could determine the power flow at a moment in time or the dynamic response for a short period of time, or they were simulators that were designed to produce verisimilar real-time behavior that is necessary for training operators and testing new hardware.
+This manual is designed for general engineering, policy, regulatory, and economics readers who are interested in using Arras Energy to model and simulate the behavior of modern electricity delivery systems. Historically power system simulation tools were either solvers that could determine the power flow at a moment in time or the dynamic response for a short period of time, or they were simulators that were designed to produce verisimilar real-time behavior that is necessary for training operators and testing new hardware.
But the need to study and understand modern energy systems that are far more complex has given rise to a new generation of tools that can do more, including
diff --git a/docs/User manual/2 - Designing GridLAB-D Models/2 - Modules.md b/docs/User manual/2 - Designing GridLAB-D Models/2 - Modules.md
index dee009e0d..1b73e1aa3 100644
--- a/docs/User manual/2 - Designing GridLAB-D Models/2 - Modules.md
+++ b/docs/User manual/2 - Designing GridLAB-D Models/2 - Modules.md
@@ -2,22 +2,16 @@
Runtime modules are implemented as dynamic libraries that are loaded as needed. The model loaded determines whether a runtime module is needed by specifying a [[module]] block.
-; Prior to {{VERSION20}} : Adding a module in Windows can be done using the "Add GridLAB module" wizard. In Linux it can be done using the "add_gridlab_module" script. This document is provided for completeness and to provide details that may be necessary should the scripts not function as required.
-
-The exact approach to use in building a GridLAB module is not clear cut.
-In general a module is a solver that can compute the steady state of
-a collection of objects given a specific boundary condition. For example,
-a power flow solver makes sense as a module because the steady state
-of a flow network can be directly computed. However, a market clearing
-system and a load simulation doesn't make sense because the market is
-influenced not only by demand from loads, but also by supply. As a general
-rule, if a set of simultaneous equations can be solved to obtain the state
-of a system, the system is suitable for implementation as a module.
+**Prior to Version 2.0** : Adding a module in Windows can be done using the "Add GridLAB module" wizard. In Linux it can be done using the "add_gridlab_module" script. This document is provided for completeness and to provide details that may be necessary should the scripts not function as required.
+
+**As of Version 4.3** : The [module template](https://arras.energy/module_template) should be used to build new modules. The template is designed to build external modules. However, the source code to an external module is the same as for an internal module.
+
+The exact approach to use in building a GridLAB module is not clear cut. In general a module is a solver that can compute the steady state of a collection of objects given a specific boundary condition. For example, a power flow solver makes sense as a module because the steady state of a flow network can be directly computed. However, a market clearing system and a load simulation doesn't make sense because the market is influenced not only by demand from loads, but also by supply. As a general rule, if a set of simultaneous equations can be solved to obtain the state of a system, the system is suitable for implementation as a module.
Modules must be able to implement a least three capabilities:
-* they must be able to create objects on demand (see create)
-* they must be able to initialize objects on demand (see init)
-* they must be able to compute the state of individual objects at a specified date and time on demand (see sync)
+* they must be able to create objects on demand (see `create()`)
+* they must be able to initialize objects on demand (see `init()`)
+* they must be able to compute the state of individual objects at a specified date and time on demand (see `sync()`)
In addition, modules generally should be able to implement the following
@@ -28,573 +22,91 @@ In addition, modules generally should be able to implement the following
* determine whether an object is a subtype of another object
* verify that a collection of objects form a self-consistent and correct model
-It turns out that implementing these capabilities is not as easy as it
-at first seems. In particular, the synchronization has typically been one
-of the most challenging concepts for programmers to understand. Given
-the amount of time spend in sync calls, it is recommended that
-considerable time and effort be put into its design.
+It turns out that implementing these capabilities is not as easy as it at first seems. In particular, the synchronization has typically been one of the most challenging concepts for programmers to understand. Given the amount of time spent in sync calls, it is recommended that considerable time and effort be put into its design.
-= Basic Synchronization =
+## Basic Synchronization
-An object's sync method actually performs two essential functions. First,
-it updates the state of an object to a designated point in time, and second
-it lets the core know when the object is next expected to change state. This
-is vital for the core to know because the core's clock will be advanced
-to the time of the next expected state change, and all objects will be
-synchronized to that time.
+An object's sync method actually performs two essential functions. First, it updates the state of an object to a designated point in time, and second it lets the core know when the object is next expected to change state. This is vital for the core to know because the core's clock will be advanced to the time of the next expected state change, and all objects will be synchronized to that time.
In general a sync() function should be aware of three time values:
-* t_0 is the time from which the object is being advanced. This is not the current time, because it is presumed that the object has not yet advanced to the current time and this is why ''sync''() is being called.
-* t_1 is the time to which the object is being advanced. Think
-of this as \e now from the object's perspective. This is usually the
-current time from the core's perspective (but don't assume it \e always is).
-* t_2 is the time at which the object expects to have its next
-state change. This time must be computed by the object during or immediately
-after the state is advanced to t_1 . This is the time returned to the
-core should the ''sync''() call succeed.
+* $t_0$ is the time from which the object is being advanced. This is not the current time, because it is presumed that the object has not yet advanced to the current time and this is why `sync()` is being called.
+* $t_1$ is the time to which the object is being advanced. Think of this as `now` from the object's perspective. This is usually the current time from the core's perspective (but don't assume it always is).
+* $t_2$ is the time at which the object expects to have its next state change. This time must be computed by the object during or immediately after the state is advanced to $t_1$. This is the time returned to the core should the `sync()` call succeed.
-If no state change is ever anticipated
-then t_2 = TS\_NEVER is returned, indicating that barring any changes to its
-boundary condition, the object is in steady state.
+If no state change is ever anticipated then $t_2 = \mathrm{TS_NEVER}$ is returned, indicating that barring any changes to its boundary condition, the object is in steady state.
-If an object's ''sync''() method determines that
-the object is not yet in steady state (i.e., the module has not converged), then
-t_2 = t_1 is returned.
+If an object's `sync()` method determines that the object is not yet in steady state (i.e., the module has not converged), then $t_2 = t_1$ is returned.
-If an object's ''sync''() method determines that it cannot update to t_1 as required,
-the simulation has failed. It can either throw an exception using ''GL_THROW''() or
-return t_2 < t_1 to indicate the time at which the problem is believed to have occurred.
+If an object's `sync()` method determines that it cannot update to $t_1$ as required, the simulation has failed. It can either throw an exception using `GL_THROW()` or return $t_2 \le t_1$ to indicate the time at which the problem is believed to have occurred.
-The time window t_1 - t_0 is the past window and the ''sync''() method
-must implement all behaviors during that time as though they have already occurred.
+The time window $t_1 - t_0$ is the past window and the `sync()` method must implement all behaviors during that time as though they have already occurred.
-The time window t_2 - t_1 is the future window and the sync function
-must not implement behaviors in this window yet, as they have not yet occurred.
+The time window $t_2 - t_1$ is the future window and the sync function must not implement behaviors in this window yet, as they have not yet occurred.
-It is a non-trivial fact that if all objects in all modules in GridLAB model
-return t_2 = TS\_NEVER , then the simulation stops successfully. This
-is because the system has completely settle to a steady state and there is
-nothing further to compute.
+It is a non-trivial fact that if all objects in all modules in GridLAB model return $t_2 = \mathrm{TS\_NEVER}$, then the simulation stops successfully. This is because the system has completely settle to a steady state and there is nothing further to compute.
-For more details on synchronization in GridLAB-D see [[theory of operation]].
+For more details on synchronization in GridLAB-D see [[/User_manual/1_-_Introduction/2_-_Theory_of_Operation]].
-= Control Code =
+## Control Code
-One very important aspect of synchronization behavior is how control code
-is handled when object behavior goes beyond the mere physics of its
-response to its boundary condition. It is quite easy to implement
-control code that is integrated with the physical model. However, this
-would prevent users from altering the control code without altering the
-source code of the object's implementation.
+One very important aspect of synchronization behavior is how control code is handled when object behavior goes beyond the mere physics of its response to its boundary condition. It is quite easy to implement control code that is integrated with the physical model. However, this would prevent users from altering the control code without altering the source code of the object's implementation.
-; Prior to {{VERSION30}} : To address this problem, objects can implement default control code that is disabled if a [[PLC]] object is attached later. The ability to alter control code should be made available when implemented for any object for which this is a realistic possibility, which is very nearly always.
+**Prior to Version 3.0** : To address this problem, objects can implement default control code that is disabled if a [[PLC]] object is attached later. The ability to alter control code should be made available when implemented for any object for which this is a realistic possibility, which is very nearly always.
-: To implement default machine [[PLC]] code for an object, the module must expose a ''plc''() method that will be called immediately before ''sync''() is called, but only if not external PLC method is provided in the model. This ''plc''() method may be written as though it was integrated with the physics implemented in ''sync''(), but the physics must be able to update even when the default [[PLC]] code is not run.
+To implement default machine [[PLC]] code for an object, the module must expose a ''plc''() method that will be called immediately before ''sync''() is called, but only if not external PLC method is provided in the model. This ''plc''() method may be written as though it was integrated with the physics implemented in ''sync''(), but the physics must be able to update even when the default [[PLC]] code is not run.
-; {{VERSION30}} and later : As of {{VERSION30}} the PLC module will no longer be supported and the [[PID controller]] module replaces it. Alternatively, the [[class]] [[class#intrinsic|intrinsic]] function [[class#plc|plc]] supports simple control code replacements.
+**As of Version 3.0** : As of Version 3.0 the PLC module will no longer be supported and the [[PID controller]] module replaces it. Alternatively, the [[class]] [[class#intrinsic|intrinsic]] function [[class#plc|plc]] supports simple control code replacements.
-= Building a GridLAB module =
+## Building a GridLAB module
A GridLAB module must be a Windows DLL or a Linux SO.
-=== [[VS2005]] ===
-The compile options that are typically required are
-* Include path: ../core
-* Runtime library: Multi-threaded Debug DLL (/MDd)
-
-For example the command-line options used by the climate module is
-
- compiler: /Od /I "../core" /I "../test/cppunit2/include"
- /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL"
- /D "_CRT_SECURE_NO_DEPRECATE" /D "_WINDLL" /D "_MBCS"
- /Gm /EHsc /RTC1 /MDd /Fo"Win32\Debug\climate\"
- /Fd"Win32\Debug\climate\vc80.pdb" /W3 /nologo /c /Wp64
- /ZI /TP /errorReport:prompt
-
- linker: /OUT:"Win32\Debug\climate.dll" /INCREMENTAL /NOLOGO
- /LIBPATH:"..\test\cppunit2\lib" /DLL /MANIFEST
- /MANIFESTFILE:"Win32\Debug\climate\climate.dll.intermediate.manifest"
- /DEBUG /PDB:"c:\projects\GridlabD\source\VS2005\Win32\Debug\climate.pdb"
- /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT cppunitd.lib
- kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib
-
-=== Linux makefiles ===
-
-; configure.ac: You must add the module's makefile to the AC_CONFIG_FILES variable near the end of the list (but not in the last place).
-
-; Makefile.am: You must add the module folder location to the SUBDIRS variable in the last position.
-
-=== Module implementation Prior to {{VERSION30}} ===
-
-The main.cpp file contains the code to load and unload both Windows DLL
-and Linux/Unix shared-object libraries:
-
- // the version can be used to make sure the right module is loaded
- #define MAJOR 0 // TODO: set the major version of your module here
- #define MINOR 0 // TODO: set the minor version of your module here
-
- #define DLMAIN
- #include
- #include "gridlabd.h"
- EXPORT int do_kill(void*);
- EXPORT int major=MAJOR, minor=MINOR;
-
- #ifdef WIN32
- #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
- #include
- BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID)
- {
- switch (ul_reason_for_call)
- {
- case DLL_PROCESS_ATTACH:
- case DLL_THREAD_ATTACH:
- break;
- case DLL_THREAD_DETACH:
- case DLL_PROCESS_DETACH:
- do_kill(hModule);
- break;
- }
- return TRUE;
- }
- #else // !WIN32
- CDECL int dllinit() __attribute__((constructor));
- CDECL int dllkill() __attribute__((destructor));
- CDECL int dllinit() { return 0;}
- CDECL int dllkill() { do_kill(NULL);}
- #endif // !WIN32
- \endcode
-
-The init.cpp file contains the code needed to initialize a module
-after it is loaded:
-
- #include
- #include
- #include
- #include "gridlabd.h"
- #include "myclass.h"
- EXPORT CLASS *init(CALLBACKS *fntable, MODULE *module, int argc, char *argv[])
- {
- // set the GridLAB core API callback table
- callback = fntable;
-
- // TODO: register each object class by creating its first instance
- new myclass(module);
-
- // always return the first class registered
- return myclass::oclass;
- }
- CDECL int do_kill()
- {
- // if anything needs to be deleted or freed, this is a good time to do it
- return 0;
- }
-
-You can also implement EXPORT int check(void) to allow the core
-to request a check of the objects that are implemented by the module. This is
-particularly useful to perform topology checks for network models.
-
-If you implement the EXPORT int import_file(char *file) this will
-permit users to use the [[import]] command in the model definition.
-
-If you implement the EXPORT int save(char *file) this will permit
-users to request saves in formats other than '''.glm''' or '''.xml'''.
-
-; Prior to {{VERSION20}} : The EXPORT int setvar(char *varname, char *value) and the
-EXPORT void* getvar(char *varname, char *value, unsigned int size)
-are implemented when you wish to allow the user to alter any of the module's global
-variables. See network/varmap.c for an example.
-
-: EXPORT int module_test(TEST_CALLBACKS *callbacks,int argc, char* argv[])
-function implements the module's unit test code. See "Unit testing" for
-more information.
-
-The EXPORT MODULE *subload(char *modname, MODULE **pMod, CLASS **cptr, int argc, char **argv)
-function is used to load modules written in foreign languages. Look at the gldjava project
-for examples of how this is used. This function needs to manually set the function pointers
-for any classes registered by subload-ed modules. A module subload is triggered with
-"module X::Y".
-
-The implementation of each class will require two files for each object class
-be included in your module's source code. The header file will usually include
-the following:
-
- #ifndef _MYCLASS_H
- #define _MYCLASS_H
- #include "gridlabd.h"
- class myclass {
- public:
- // TODO: add your published variables here using GridLAB types (see PROPERTY)
- double myDouble; // just an example
- private:
- // TODO: add any unpublished variables here (any type is ok)
- double *pDouble; // just an example
- public:
- static CLASS *oclass;
- static myclass *defaults;
- public:
- myclass(MODULE *module);
- int create(void);
- int init(OBJECT *parent);
- TIMESTAMP sync(TIMESTAMP t0, TIMESTAMP t1);
- };
- #endif
-
-The implementation file should include the following:
- #include
- #include
- #include
- #include "myclass.h"
- CLASS *myclass::oclass = NULL;
- myclass *myclass::defaults = NULL;
- myclass::myclass(MODULE *module)
- {
- if (oclass==NULL)
- {
- oclass = gl_register_class(module,"myclass",PC_BOTTOMUP);
- if (gl_publish_variable(oclass,
- // TODO: publish your variables here
- PT_double, "my_double", PADDR(myDouble), // just an example
- NULL)<1) GL_THROW("unable to publish properties in %s",__FILE__);
- defaults = this;
- // TODO: initialize the default values that apply to all objects of this class
- myDouble = 1.23; // just an example
- pDouble = NULL; // just an example
- }
- }
- void myclass::create(void)
- {
- memcpy(this,defaults,sizeof(*this));
- // TODO: initialize the defaults values that do not depend on relatioships with other objects
- }
- int myclass::init(OBJECT *parent)
- {
- // find the data in the parent object
- myclass *pMyClass = OBJECTDATA(parent,myclass); // just an example
-
- // TODO: initialize the default values that depend on relationships with other objects
- pDouble = &(pMyClass->double); // just an example
-
- // return 1 on success, 0 on failure
- return 1;
- }
- TIMESTAMP myclass::sync(TIMESTAMP t0, TIMESTAMP t1)
- {
- // TODO: update the state of the object
- myDouble = myDouble*1.01; // just an example
-
- // TODO: compute time to next state change
- return (TIMESTAMP)(t1 + myDouble/TS_SECOND); // just an example
- }
-
- //////////////////////////////////////////////////////////////////////////
- // IMPLEMENTATION OF CORE LINKAGE
- //////////////////////////////////////////////////////////////////////////
-
- /// Create a myclass object
- EXPORT int create_myclass(OBJECT **obj, ///< a pointer to the OBJECT*
- OBJECT *parent) ///< a pointer to the parent OBJECT
- {
- *obj = gl_create_object(myclass::oclass,sizeof(myclass));
- if (*obj!=NULL)
- {
- myclass *my = OBJECTDATA(*obj,myclass);
- gl_set_parent(*obj,parent);
- my->create();
- return 1;
- }
- return 0;
- }
-
- /// Initialize the object
- EXPORT int init_myclass(OBJECT *obj, ///< a pointer to the OBJECT
- OBJECT *parent) ///< a pointer to the parent OBJECT
- {
- if (obj!=NULL)
- {
- myclass *my = OBJECTDATA(obj,myclass);
- return my->init(parent);
- }
- return 0;
- }
-
- /// Synchronize the object
- EXPORT TIMESTAMP sync_myclass(OBJECT *obj, ///< a pointer to the OBJECT
- TIMESTAMP t1) ///< the time to which the OBJECT's clock should advance
- {
- TIMESTAMP t2 = OBJECTDATA(obj,myclass)->sync(obj->clock,t1);
- obj->clock = t1;
- return t2;
- }
-
-There are a number of useful extended capabilities that can be added. These include
-* int notify_myclass(OBJECT *obj, NOTIFYMODULE msg)
-can be implemented to receive notification messages before and after a variable is changed by
-the core ('''NM_PREUPDATE''' / '''NM_POSTUPDATE''') and when the core needs the module to reset ('''NM_RESET''')
-
-* int isa_myclass(OBJECT *obj, char *classname)
-can be implemented to allow the core to discover whether an object is a subtype of
-another class.
-
-* int plc_myclass(OBJECT *obj, TIMESTAMP t1)
-can be implemented to create default [[PLC]] code that can be overridden by attaching a
-child plc object.
-
-* EXPORT int recalc_myclass(OBJECT *obj)
-can be implemented to create a recalculation triggered based on changes to properties made
-through ''object_set_value_by_addr''() and related functions. A property can be made to
-trigger recalculation calls by adding '''PT_FLAGS''', '''PF_RECALC''' after the property publish specification, e.g.,
-
- gl_publish_variable(oclass, PT_double, "resistance[Ohm]", PADDR(resistance), PT_FLAGS, PF_RECALC, NULL);
-
-will cause ''recalc''() to be called after resistance is changed. The recalc calls occur right before the PLC code
-is run during ''sync''() events.
-
-; Linux/Unix Note : A Linux GridLAB module must be a shared object library and must be listed in the appropriate makefile.am files.
-
-=== Module implementation as of {{VERSION30}} ===
-
-The above implementation protocol is simplified using the C++ [[Module API]].
-
-main.cpp :
-
- #define DLMAIN
- #include
- #include
- #include
- #include "gridlabd.h"
- #include "''myclass''.h"
- EXPORT CLASS *init(CALLBACKS *fntable, MODULE *module, int argc, char *argv[])
- {
- // set the GridLAB core API callback table
- callback = fntable;
-
- // TODO: register each object class by creating its first instance
- new ''myclass''(module);
-
- // always return the first class registered
- return ''myclass''::oclass;
- }
- CDECL int do_kill()
- {
- // if anything needs to be deleted or freed, this is a good time to do it
- return 0;
- }
-
-''myclass''.h :
-
- #ifndef _''MYCLASS''_H
- #define _''MYCLASS''_H
- #include "gridlabd.h"
- class ''myclass'' : public [[gld_object]] {
- public: // declare typedefs
- // declare properties using [[GL_ATOMIC]], [[GL_STRING]], [[GL_ARRAY]], [[GL_STRUCT]]
- private: // declare private members
- public:
- ''myclass''(MODULE *mod);
- // add declarations for create, init, presync, sync, postsync, precommit, commit, finalize, prenotify, postnotify, etc.
- public:
- static CLASS *oclass;
- static myclass *defaults;
- // add pclass only if derived from another registered class
- static CLASS *pclass;
- };
- #endif // _''MYCLASS''_H
-
-''myclass''.cpp when not derived from a registered class
-
- #include "''myclass''.h"
- EXPORT_CREATE(''myclass'')
- // add EXPORT_* as needed (note that sync and notify are grouped)
- ''myclass''::''myclass''(MODULE *mod)
- {
- if ( !oclass ) { // first time
- oclass = [[gld_class]]::[[gld_class#create|create]](mod,"''myclass''",sizeof(''myclass''),''passconfig'');
- if ( !oclass ) [[gld_object#exception|exception]]("unable to register class ''myclass''");
- oclass->trl = [[TRL_UNKNOWN]];
- defaults = this;
- if ( gl_public_variable(oclass,
- // add ''type'',"''name''", get_''name''_offset(), PT_DESCRIPTION,"''description''",
- NULL)<1) { [[gld_object#exception|exception]]("unable to publish ''myclass'' properties"); }
- memset(this,0,sizeof(''myclass''));
- // add other default values as needed
- }
- }
- // add implementations for create, init, presync, sync, postsync, precommit, commit, finalize, prenotify, postnotify, etc.
-
-''myclass''.cpp when derived from a registered class (with difference in bold)
-
- #include "''myclass''.h"
- EXPORT_CREATE(''myclass'')
- // add EXPORT_* as needed (note that sync and notify are grouped)
- ''myclass''::''myclass''(MODULE *mod) ''': ''parentclass''(mod)'''
- {
- if ( !oclass ) { // first time
- '''pclass = ''parentclass''::oclass;'''
- oclass = [[gld_class]]::[[gld_class#create|create]](mod,"''myclass''",sizeof(''myclass''),''passconfig'');
- if ( !oclass ) [[gld_object#exception|exception]]("unable to register class ''myclass''");
- oclass->trl = [[TRL_UNKNOWN]];
- defaults = this;
- if ( gl_public_variable(oclass,
- '''PT_INHERIT, "''parentclass''",'''
- // add ''type'',"''name''", get_''name''_offset(), PT_DESCRIPTION,"''description''",
- NULL)<1) { [[gld_object#exception|exception]]("unable to publish ''myclass'' properties"); }
- memset(this,0,sizeof(''myclass''));
- // add other default values as needed
- }
- }
- // add implementations for create, init, presync, sync, postsync, precommit, commit, finalize, prenotify, postnotify, etc.
-
-= Upgrading modules to {{VERSION30}} =
-
-As of {{VERSION30}} modules must support multithreaded communication between classes. To upgrade a module created prior to {{VERSION30}} full R/W locking of class members must be supported. The following must be done to enable use of locked accessors.
-
-== Minimum upgrade ==
-
-The following steps are the minimum required to upgrade a class created prior to {{VERSION30}} to full compatibility with {{VERSION30}} and later:
-
-# Change main.cpp to contain only the following
- #define DLMAIN
- #include "gridlabd.h"
-# Derive all registered base classes from [[gld_object]].
-# Add PC_AUTOLOCK to the class registration pass configuration for any class that requires locking.
-# Remove all self-locking calls.
-# Add read or write lock/unlock calls around all accesses to other objects.
-# Move first sync initialization code when t0=0 to init() and return deferred status when necessary (see [[Tech:Initialization|Initialization Technical Manual]]).
-
-== Full upgrade ==
-
-; Update the main.cpp to contain only the following
-
- #define DLMAIN
- #include "gridlabd.h"
-
-; Derive existing base classes from [[gld_object]]
-
- [[class]] ''myclass'' : public [[gld_object]] {
- // declarations ...
- }
-
-; Change declarations of published variables to define get/set accessors
-
- [[class]] ''myclass'' : protected [[gld_object]] {
- // declare members that can updated atomically (e.g., intN, double, enum, set)
- [[GL_ATOMIC]](''type'',''name'');
- // declare string members (e.g., charN)
- [[GL_STRING]](''type'',''name'');
- // declare struct members (e.g., struct, class)
- [[GL_STRUCT]](''type'',''name'');
- // declare array members (e.g., anything[N])
- [[GL_ARRAY]](''type'',''name'',''size'');
- }
-
-; Replace all internal references to members with get/set accessors
-
-: Lookups (offsets)
-
- PADDR(''value'')
-
-become
-
- get_''value''_offset()
-
-and defaults=this; must be moved to before first use of get_*_offset() .
-
-: Right-hand-side uses of ''value''
-
- ''atomic_value'' = get_''atomic_var''();
- ''struct_value'' = get_''struct_var''();
- ''char_ptr'' = get_''string_var''();
- ''char_value'' = get_''string_var''(''index'');
- ''array_ptr'' = get_''array_var''();
- ''array_value'' = get_''array_var''(''index'');
-
-: Left-hand-side uses of ''value''
-
- set_''atomic_var''(''atomic_value'');
- set_''struct_var''(''struct_value'');
- set_''string_var''(''char_ptr'');
- set_''string_var''(''index'',''char_value'');
- set_''array_var''(''array_ptr'');
- set_''array_var''(''index'',''array_value'');
-
-; Replace needed core linkage code with standard export macros
-
- EXPORT_CREATE(my_class);
- EXPORT_INIT(my_class);
- EXPORT_COMMIT(my_class);
- EXPORT_SYNC(my_class);
- EXPORT_NOTIFY(my_class);
- EXPORT_PRECOMMIT(my_class);
- EXPORT_FINALIZE(my_class);
- EXPORT_ISA(my_class);
- EXPORT_PLC(my_class);
- EXPORT_RECALC(my_class);
-
-: Depending on how the original export function was implemented, you may have to move
-some code into the class member.
-
-; Move old-style initialization in sync() function to init(). The clock will no longer
-be 0 on the first sync call. It will be set to the start time prior to init().
+### MS Windows
-; Surround all internal references requiring coherent access with locked blocks
+Windows is not supported directly as of Version 4.3.
- [[rlock]]();
- ''copy1'' = ''var1'';
- ''copy2'' = ''var2'';
- [[runlock]]();
+### macOS/ and Linux makefiles
- [[wlock]]();
- ''var1'' = ''value1'';
- ''var2'' = ''value2'';
- [[wunlock]]();
+* `module/Makefile.mk`: You must add the module's makefile to the `module` folder's general Makefile.
-: For programming convenience a scope lock is available
+### Event Handlers
- { [[gld_wlock]] _lock(my); // write locked when block is entered
- // write safe code
- value1 += 12.3;
- value2 -= 12.3;
- } // unlock when scope is exited
+The following event handlers can be implemented.
-: Ideally, enable automatic locking for all sync operations by added the ''PC_AUTOLOCK'' to the class registration call:
+* **create()** (required)
- oclass = gl_register_class(module,"''myclass''",sizeof(''myclass''),passconfig|PC_AUTOLOCK);
+ EXPORT_CREATE(my_class);
-Be careful not to use locking accessors within scope locks or autolocked sync functions. Doing so will cause a deadlock.
-
-; Modify all external references to use set/get accessors
-
- [[gld_property]] prop(obj,"varname");
- if ( prop.[[gld_property#is_valid|is_valid]]() )
- {
- double value;
- prop.[[gld_property#getp|getp]](value); // read lock is automatic for non-atomic operations
- value = 12.3;
- prop.[[gld_property#setp|setp]](value); // write lock is automatic for non-atomic operations
- }
-
-: If code requires a locked block use a scope lock w/non-locking accessors
-
- [[gld_property]] prop(obj,"varname");
- if ( prop.[[gld_property#is_valid|is_valid]]() )
- {
- double value;
- [[gld_wlock]] lock(obj); // write lock is taken
- prop.[[gld_property#getp|getp]](value,lock); // write lock continues so read is ok
- value += 12.3;
- prop.[[gld_property#setp|setp]](value,lock); // write lock continues so write is ok
- } // unlocked
-
-= Debugging lock timeouts =
+* **init()** (required)
+
+ EXPORT_INIT(my_class);
+
+* **precommit()**
+ EXPORT_PRECOMMIT(my_class);
+* **sync()**
+ EXPORT_SYNC(my_class);
+* **commit()**
+ EXPORT_COMMIT(my_class);
+* **finalize()**
+ EXPORT_FINALIZE(my_class);
+* **isa()**
+ EXPORT_ISA(my_class);
+* **notify()**
+ EXPORT_NOTIFY(my_class);
+* **plc()** (obsolete)
+ EXPORT_PLC(my_class);
+* **recalc()**
+ EXPORT_RECALC(my_class);
+
+## Debugging lock timeouts
A maximum spin timeout is implemented in both read and write locks to prevent deadlocks. If you run into a situation where you get a "write lock timeout" or "read lock timeout" then most likely you've encountered a condition where an object is trying to take a lock out on itself. Consider the following
-; Are you using a locking accessor in a sync call on an autolocked object? : If so, consider using direct access call instead because the object is already locked by the core.
-
-; Is the object locked for a very long time because it's doing something that really does take a long time? : If so, you may have to increase the value of '''MAXSPIN''' in the core/lock.cpp . Note that this value has a maximum of about 4e9 and it is currently set to 1e9 (which is roughly 10 seconds), so there's not much room left for growth. If this is a problem, please file a ticket and an alternate timeout method will have to be implemented.
+* _Are you using a locking accessor in a sync call on an autolocked object?_
+ If so, consider using direct access call instead because the object is already locked by the core.
-; Try debugging with a breakpoint on the throw_exception calls in core/lock.cpp : This should tell you exactly which lock is causing the timeout.
+* _Is the object locked for a very long time because it's doing something that really does take a long time?_
+ If so, you may have to increase the value of '''MAXSPIN''' in the core/lock.cpp . Note that this value has a maximum of about 4e9 and it is currently set to 1e9 (which is roughly 10 seconds), so there's not much room left for growth. If this is a problem, please file a ticket and an alternate timeout method will have to be implemented.
-== See also ==
-{{:Xref:Developers}}
+* Try debugging with a breakpoint on the throw_exception calls in core/lock.cpp .
+ This should tell you exactly which lock is causing the timeout.
diff --git a/docs/Utilities/Create_poles.md b/docs/Utilities/Create_poles.md
index 594e7148b..2bd5e2915 100644
--- a/docs/Utilities/Create_poles.md
+++ b/docs/Utilities/Create_poles.md
@@ -59,7 +59,7 @@ on using libraries.
Some network models include latitude and longitude information. When this information is present,
the line length information checked. If there is a discrepancy between these, a warning is printed
and the latitude/longitude information is used. The `--ignore_length` option will suppress this
-warning. The `--ignore_location` warning will cause the model to use the line length data instead.
+warning. The `--ignore_location` option will cause the model to use the line length data instead.
The `--include_network` adds a `#include "FILENAME"` directive in the output to ensure that the
resulting GLM file contains all the objects required to run the simulation, e.g.,
diff --git a/docs/_header.md b/docs/_header.md
index f140cfb54..aaf2cd54f 100644
--- a/docs/_header.md
+++ b/docs/_header.md
@@ -1,2 +1,2 @@
-# [HiPAS GridLAB-D 4.3](http://www.gridlabd.us/) User Documentation
+# [Arras Energy](http://arras.energy/) User Documentation
## ((Home)) ((Features)) ((Getting Started)) ((Documentation)) ((Resources)) ((Developers)) ((Sponsors)) ((About Us)) ((News))
diff --git a/docs/gridlabd.tex b/docs/gridlabd.tex
index c99373560..07a5f1aa0 100644
--- a/docs/gridlabd.tex
+++ b/docs/gridlabd.tex
@@ -3,7 +3,7 @@
\title
{
- \LARGE HiPAS GridLAB-D
+ \LARGE Arras Energy
\\
User's Manual
}
@@ -22,7 +22,7 @@
\vspace{0.5in}
-HiPAS GridLAB-D was developed for the California Energy Commission by SLAC National Accelerator Laboratory under grant CEC-EPC-17-047.
+Arras Energy was developed for the California Energy Commission by SLAC National Accelerator Laboratory under grant CEC-EPC-17-047.
\vspace{0.5in}
@@ -36,7 +36,7 @@
To reference this document, please use the following citation:
-Chassin, D.P., \textit{et al}., ``HiPAS GridLAB-D 4.2 User's Manual,''\\\today. URL: https://docs.gridlabd.us.
+Chassin, D.P., \textit{et al}., ``Arras Energy User's Manual,''\\\today. URL: https://docs.gridlabd.us.
\end{center}
diff --git a/geodata/geodata_powerline.py b/geodata/geodata_powerline.py
index 42e88710e..4df6b9a0a 100644
--- a/geodata/geodata_powerline.py
+++ b/geodata/geodata_powerline.py
@@ -196,7 +196,7 @@ def TODO(value=float('nan')):
}
default_config = {
- "cabletype_file" : f"{GLD_ETC}/gridlabd/geodata_powerline_cabletypes.csv",
+ "cabletype_file" : f"{GLD_ETC}/geodata_powerline_cabletypes.csv",
}
OPTIONS = default_options
diff --git a/install/README.md b/install/README.md
index 93e0a1044..b2fb9227e 100644
--- a/install/README.md
+++ b/install/README.md
@@ -30,7 +30,7 @@ sudo ./setup.sh --local
# Security
-HiPAS GridLAB-D requires access to two python virtual environments to build and run. The build `venv` is created in the user's home folder under the name `.gridlabd`. This environment contains all the modules needed to build and install `gridlabd`. The runtime `venv` is created in the `gridlabd/bin` folder and contains all the modules needed to run `gridlabd`. Because `gridlabd` users needed access to these, there must a set of group permissions for them to use. The following procedure implements a security policy that achieves this.
+Arras Energy requires access to two python virtual environments to build and run. The build `venv` is created in the user's home folder under the name `.gridlabd`. This environment contains all the modules needed to build and install `gridlabd`. The runtime `venv` is created in the `gridlabd/bin` folder and contains all the modules needed to run `gridlabd`. Because `gridlabd` users needed access to these, there must a set of group permissions for them to use. The following procedure implements a security policy that achieves this.
1. Create a `gridlabd` user and group, e.g., `adduser gridlabd`.
2. Add each `gridlabd` user to the `gridlabd` group, e.g., `adduser $USER gridlabd`.
diff --git a/module/assert/assert.vcproj b/module/assert/assert.vcproj
deleted file mode 100644
index 8048a25a3..000000000
--- a/module/assert/assert.vcproj
+++ /dev/null
@@ -1,571 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/climate/climate.vcproj b/module/climate/climate.vcproj
deleted file mode 100644
index fe75e3972..000000000
--- a/module/climate/climate.vcproj
+++ /dev/null
@@ -1,625 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/commercial/commercial.vcproj b/module/commercial/commercial.vcproj
deleted file mode 100644
index 3cda3e3f3..000000000
--- a/module/commercial/commercial.vcproj
+++ /dev/null
@@ -1,758 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/generators/generators.vcproj b/module/generators/generators.vcproj
deleted file mode 100644
index 1a7fbf303..000000000
--- a/module/generators/generators.vcproj
+++ /dev/null
@@ -1,662 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/market/market.vcproj b/module/market/market.vcproj
deleted file mode 100644
index 591a4c7a0..000000000
--- a/module/market/market.vcproj
+++ /dev/null
@@ -1,964 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/mysql/MYSQL_specific.vsprops b/module/mysql/MYSQL_specific.vsprops
deleted file mode 100644
index 28e331b1b..000000000
--- a/module/mysql/MYSQL_specific.vsprops
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
diff --git a/module/mysql/collector.cpp b/module/mysql/collector.cpp
index a4a1d15e1..1a4270ce4 100644
--- a/module/mysql/collector.cpp
+++ b/module/mysql/collector.cpp
@@ -155,10 +155,10 @@ int collector::init(OBJECT *parent)
size_t n;
for ( n=0 ; nquery(buffer) )
@@ -217,17 +217,17 @@ TIMESTAMP collector::commit(TIMESTAMP t0, TIMESTAMP t1)
size_t n;
for ( n=0 ; nconvert_to_dbtime(gl_globalclock));
+ snprintf(buffer+eos,sizeof(buffer)-eos-1,") VALUES (from_unixtime(%lli) ",db->convert_to_dbtime(gl_globalclock));
eos = strlen(buffer);
for ( n=0 ; nquery(buffer) )
diff --git a/module/mysql/database.cpp b/module/mysql/database.cpp
index 2a0dfc98b..d8b2061f8 100644
--- a/module/mysql/database.cpp
+++ b/module/mysql/database.cpp
@@ -107,7 +107,7 @@ int database::init(OBJECT *parent)
}
// set options
- my_bool report_truncate = false;
+ bool report_truncate = false;
if ( mysql_options(mysql_client,MYSQL_REPORT_DATA_TRUNCATION,&report_truncate)!=0 )
gl_warning("unable to disable data truncation reporting in mysql");
@@ -303,10 +303,10 @@ const char *database::get_last_error(void)
{
return mysql_error(mysql);
}
-bool database::get_sqlbind(MYSQL_BIND &value, gld_property &target, my_bool *error)
+bool database::get_sqlbind(MYSQL_BIND &value, gld_property &target, bool *error)
{
memset(&value,0,sizeof(value));
- switch ( target.get_type() ) {
+ switch ( target.get_type() ) {
case PT_double:
case PT_random:
case PT_loadshape:
@@ -336,6 +336,7 @@ char *database::get_sqldata(char *buffer, size_t size, gld_property &prop, doubl
return NULL;
return buffer;
}
+ break;
default:
return NULL;
}
@@ -378,16 +379,16 @@ char *database::get_sqldata(char *buffer, size_t size, gld_property &prop, gld_u
default:
return NULL;
}
- char tmp[65536];
- if ( prop.to_string(tmp,sizeof(tmp)) < (int)size )
- {
- snprintf(buffer,size,"'%s'",tmp);
- }
- else
- {
- snprintf(buffer,size,"NULL");
- }
- return buffer;
+ // char tmp[65536];
+ // if ( prop.to_string(tmp,sizeof(tmp)) < (int)size )
+ // {
+ // snprintf(buffer,size,"'%s'",tmp);
+ // }
+ // else
+ // {
+ // snprintf(buffer,size,"NULL");
+ // }
+ // return buffer;
}
void database::start_transaction(void)
{
diff --git a/module/mysql/database.h b/module/mysql/database.h
index 2172eedcd..94645eee5 100644
--- a/module/mysql/database.h
+++ b/module/mysql/database.h
@@ -111,7 +111,7 @@ class database : public gld_object {
const char *get_sqltype(gld_property &p);
char *get_sqldata(char *buffer, size_t size, gld_property &p, double scale=1.0);
char *get_sqldata(char *buffer, size_t size, gld_property &p, gld_unit *unit=NULL);
- bool get_sqlbind(MYSQL_BIND &value,gld_property &target, my_bool *error=NULL);
+ bool get_sqlbind(MYSQL_BIND &value,gld_property &target, bool *error=NULL);
bool check_field(const char *table, const char *field);
TIMESTAMP convert_from_dbtime(TIMESTAMP);
diff --git a/module/mysql/init.cpp b/module/mysql/init.cpp
index 8c50ea690..8a4f73401 100644
--- a/module/mysql/init.cpp
+++ b/module/mysql/init.cpp
@@ -76,4 +76,3 @@ EXPORT CLASS *init(CALLBACKS *fntable, MODULE *module, int argc, char *argv[])
return NULL;
}
#endif // HAVE_MYSQL
-
diff --git a/module/mysql/main.cpp b/module/mysql/main.cpp
index 343269fb1..922fc4697 100644
--- a/module/mysql/main.cpp
+++ b/module/mysql/main.cpp
@@ -3,6 +3,23 @@
#define DLMAIN
+#include "gridlabd.h"
+
+/********************************************************
+ * MODULE SUPPORT
+ ********************************************************/
+
+EXPORT int do_kill(void*)
+{
+ /* if global memory needs to be released, this is a good time to do it */
+ return 0;
+}
+
+EXPORT int check(){
+ /* if any assert objects have bad filenames, they'll fail on init() */
+ return 0;
+}
+
#ifdef HAVE_MYSQL
#include "database.h"
@@ -29,26 +46,6 @@ bool use_graph = true; ///< flag to enable graph schema
bool use_guid = false; ///< flag to enable use of guid
bool use_transaction = true; ///< flag to disable use of transactions
-#else
-#include "gridlabd.h"
-#endif
-
-/********************************************************
- * MODULE SUPPORT
- ********************************************************/
-
-EXPORT int do_kill(void*)
-{
- /* if global memory needs to be released, this is a good time to do it */
- return 0;
-}
-
-EXPORT int check(){
- /* if any assert objects have bad filenames, they'll fail on init() */
- return 0;
-}
-
-#ifdef HAVE_MYSQL
/********************************************************
* MYSQL SUPPORT
********************************************************/
@@ -534,7 +531,7 @@ static bool import_objects(MYSQL *mysql)
return false;
}
}
- if ( row[3]!=NULL ) strncpy(obj->groupid,row[3],sizeof(obj->groupid));
+ if ( row[3]!=NULL ) snprintf(obj->groupid,sizeof(obj->groupid)-1,"%s",row[3]);
obj->parent = row[4]==NULL ? NULL : gl_object_find_by_id(atoi(row[4]));
obj->rank = atoi(row[5]);
obj->clock = get_mysql_timestamp(row[6]);
@@ -921,17 +918,21 @@ static bool export_globals(MYSQL *mysql)
static bool export_class(MYSQL *mysql, CLASS *cls)
{
MODULE *mod = cls->module;
- char modname[128] = "NULL";
+ char modname[1032] = "NULL";
if ( mod )
+ {
snprintf(modname,sizeof(modname)-1,"\"%s\"",mod->name);
-
+ }
+
// handle parent class first
if ( cls->parent!=NULL )
{
if ( !export_class(mysql,cls->parent) || !query(mysql,"REPLACE INTO `%s` (`name`,`module`,`property`,`type`) "
"VALUES (\"%s\",%s,\"%s\",%d)",
get_table_name("classes"), cls->name, modname, cls->parent->name, PT_INHERIT) )
+ {
return false;
+ }
}
// create class tables
@@ -944,7 +945,9 @@ static bool export_class(MYSQL *mysql, CLASS *cls)
for ( PROPERTY *prop = cls->pmap ; prop!=NULL && prop->oclass==cls ; prop=prop->next )
{
if ( !(prop->access&(PA_R|PA_S) ) )
+ {
continue; // ignore unreadable non-saved properties
+ }
// write class structure info
char units[1024] = "NULL";
@@ -954,7 +957,9 @@ static bool export_class(MYSQL *mysql, CLASS *cls)
if ( !query(mysql,"REPLACE INTO `%s` (`name`,`module`,`property`,`type`,`flags`,`units`,`description`) "
"VALUES (\"%s\",%s,\"%s\",%d,%d,%s,%s)",
get_table_name("classes"), prop->oclass->name,modname,prop->name,prop->ptype,prop->flags,units,description) )
+ {
return false;
+ }
// write class table
snprintf(query_string+len,sizeof(query_string)-len-1, ", `%s` text", prop->name);
@@ -973,7 +978,9 @@ static bool export_class(MYSQL *mysql, CLASS *cls)
if ( !query(mysql,"REPLACE INTO `%s` (`name`,`module`,`property`,`keyword`,`type`,`flags`) "
"VALUES (\"%s\",%s,\"%s\",\"%s\",%d,%lld)",
get_table_name("classes"), prop->oclass->name,modname,prop->name,keyword->name,PT_KEYWORD,keyword->value) )
+ {
return false;
+ }
}
}
snprintf(query_string+len,sizeof(query_string)-len-1,")");
@@ -1027,7 +1034,7 @@ static bool export_properties(MYSQL *mysql, OBJECT *obj, CLASS *cls = NULL)
gld_property var(obj,prop);
if ( !var.get_access(PA_R|PA_S) )
continue; // ignore properties that not readable or saveable
- snprintf(names+len_names,sizeof(name)-len_names-1",`%s`", prop->name);
+ snprintf(names+len_names,sizeof(names)-len_names-1,",`%s`", prop->name);
len_names = strlen(names);
char buffer[4096]="", quoted[4096*2+1+3]="", *value = buffer;
TIMESTAMP ts;
@@ -1054,12 +1061,12 @@ static bool export_properties(MYSQL *mysql, OBJECT *obj, CLASS *cls = NULL)
if ( strlen(value)>0 )
{
mysql_real_escape_string(mysql,quoted,value,strlen(value)); // protect SQL from contents
- snprintf(values+len_values,sizeof(values)-len_values-1",\"%s\"", quoted);
+ snprintf(values+len_values,sizeof(values)-len_values-1,",\"%s\"", quoted);
len_values = strlen(values);
}
else
{
- snprintf(values+len_values,sizeof(values)-len_values-1",NULL");
+ snprintf(values+len_values,sizeof(values)-len_values-1,",NULL");
len_values = strlen(values);
}
}
@@ -1070,7 +1077,9 @@ static bool export_properties(MYSQL *mysql, OBJECT *obj, CLASS *cls = NULL)
static bool export_objects(MYSQL *mysql)
{
if ( my_overwrite && !query(mysql,"DROP TABLE IF EXISTS `%s`", get_table_name("objects")) )
+ {
return false;
+ }
if ( !no_create && !query(mysql,"CREATE TABLE IF NOT EXISTS `%s` ("
" `id` mediumint PRIMARY KEY,"
" `module` char(64),"
@@ -1092,16 +1101,18 @@ static bool export_objects(MYSQL *mysql)
" `heartbeat` timestamp default " MYSQL_TS_ZERO ","
" `flags` bigint,"
" KEY (`name`))", get_table_name("objects")) )
+ {
return false;
+ }
for ( OBJECT *obj = gl_object_get_first(); obj!=NULL ; obj=obj->next )
{
// objects table
CLASS *cls = obj->oclass;
MODULE *mod = cls->module;
- char modname[64]="NULL";
+ char modname[1032]="NULL";
char name[1024]="NULL";
char parent[64]="NULL";
- char groupid[32]="NULL";
+ char groupid[1027]="NULL";
char latitude[64] = "NULL";
char longitude[64] = "NULL";
char clock[64] = MYSQL_TS_NEVER;
@@ -1133,7 +1144,9 @@ static bool export_objects(MYSQL *mysql)
obj->id,modname,cls->name,name,groupid,parent,obj->rank,latitude,longitude,
clock,valid_to,schedule_skew,in_svc,obj->in_svc_micro,out_svc,obj->out_svc_micro,
obj->rng_state,heartbeat,obj->flags) )
+ {
return false;
+ }
// data table
if ( !export_properties(mysql,obj) )
@@ -1244,7 +1257,7 @@ bool export_transforms(MYSQL *mysql)
case XT_EXTERNAL:
if ( xform->nlhs>1 )
{
- snprintf(specs+len,sizeof(specs)-len-1"%s","(");
+ snprintf(specs+len,sizeof(specs)-len-1,"%s","(");
len = strlen(specs);
}
for ( int n = 1 ; n < xform->nlhs ; n++)
diff --git a/module/mysql/recorder.cpp b/module/mysql/recorder.cpp
index 958fb2c67..bd2406b29 100644
--- a/module/mysql/recorder.cpp
+++ b/module/mysql/recorder.cpp
@@ -15,12 +15,12 @@ EXPORT_COMMIT(recorder);
CLASS *recorder::oclass = NULL;
recorder *recorder::defaults = NULL;
-vector split(char* str, const char* delim)
+std::vector split(char* str, const char* delim)
{
char* saveptr;
char* token = strtok_r(str,delim,&saveptr);
- vector result;
+ std::vector result;
while(token != NULL)
{
@@ -74,8 +74,8 @@ int recorder::create(void)
db = last_database;
strcpy(datetime_fieldname,"t");
strcpy(recordid_fieldname,"id");
- property_target = new vector;
- property_unit = new vector;
+ property_target = new std::vector;
+ property_unit = new std::vector;
return 1; /* return 1 on success, 0 on failure */
}
@@ -164,13 +164,13 @@ int recorder::init(OBJECT *parent)
}
// connect the target properties
- vector property_specs = split(get_property(), ", \t;");
+ std::vector property_specs = split(get_property(), ", \t;");
char property_list[65536]="";
for ( size_t n = 0 ; n < property_specs.size() ; n++ )
{
char buffer[1024];
strcpy(buffer,(const char*)property_specs[n].c_str());
- vector spec = split(buffer,"[]");
+ std::vector spec = split(buffer,"[]");
if ( spec.size()>0 )
{
strcpy(buffer,(const char*)spec[0].c_str());
@@ -237,7 +237,7 @@ int recorder::init(OBJECT *parent)
exception("cannot find header fields without a parent");
char buffer[1024];
strcpy(buffer,header_fieldnames);
- vector header_specs = split(buffer, ",");
+ std::vector header_specs = split(buffer, ",");
size_t header_pos = 0;
header_data[0] = '\0';
for ( size_t n = 0 ; n < header_specs.size() ; n++ )
diff --git a/module/optimize/optimize.vcproj b/module/optimize/optimize.vcproj
deleted file mode 100644
index aca9cf427..000000000
--- a/module/optimize/optimize.vcproj
+++ /dev/null
@@ -1,552 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/powerflow/autotest/test_pole.csv b/module/powerflow/autotest/test_pole.csv
index a4a7fc3df..34e0a2807 100644
--- a/module/powerflow/autotest/test_pole.csv
+++ b/module/powerflow/autotest/test_pole.csv
@@ -1,8785 +1,8785 @@
timestamp,weather:wind_speed, weather:wind_dir,pole1:tilt_angle, pole1:tilt_direction,pole1:pole_stress, pole1:total_moment, pole1:resisting_moment,pole1:susceptibility, pole1:status,device1:status,pole2:tilt_angle, pole2:tilt_direction,pole2:pole_stress, pole2:total_moment, pole2:resisting_moment,pole2:susceptibility, pole2:status,device2:status
-2020-01-01 00:00:00 PST,+3.1,+160,+5,+270,+0.0253352,+1563.75,+61722.3,+82.4413,OK,OK,+8,+180,+0.0172462,+1064.48,+61722.3,+191.518,OK,OK
-2020-01-01 01:00:00 PST,+0,+0,+5,+270,+0.0253352,+1563.75,+61722.3,+82.4413,OK,OK,+8,+180,+0.0172462,+1064.48,+61722.3,+191.518,OK,OK
-2020-01-01 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 07:00:00 PST,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 08:00:00 PST,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-01-01 09:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 10:00:00 PST,+2.1,+320,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-01-01 11:00:00 PST,+5.1,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-01 12:00:00 PST,+4.6,+300,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-01-01 13:00:00 PST,+4.1,+290,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-01-01 14:00:00 PST,+4.6,+300,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-01-01 15:00:00 PST,+4.6,+300,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-01-01 16:00:00 PST,+2.6,+320,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-01-01 17:00:00 PST,+1.3,+340,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-01-01 18:00:00 PST,+0,+0,+5,+270,+0.0262156,+1618.08,+61722.3,-36.3007,OK,OK,+8,+180,+0.016894,+1042.73,+61722.3,-86.4195,OK,OK
-2020-01-01 19:00:00 PST,+2.1,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-01 20:00:00 PST,+3.1,+110,+5,+270,+0.0251675,+1553.39,+61722.3,+122.186,OK,OK,+8,+180,+0.0187936,+1159.98,+61722.3,+236.412,OK,OK
-2020-01-01 21:00:00 PST,+2.6,+40,+5,+270,+0.0281181,+1735.51,+61722.3,-6.45008,OK,OK,+8,+180,+0.0117186,+723.298,+61722.3,-121.029,OK,OK
-2020-01-01 22:00:00 PST,+0,+0,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-01-01 23:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 00:00:00 PST,+2.1,+50,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-02 01:00:00 PST,+2.1,+70,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-01-02 02:00:00 PST,+1.5,+20,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-01-02 03:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-02 04:00:00 PST,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 05:00:00 PST,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-01-02 06:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 07:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-02 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 11:00:00 PST,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 12:00:00 PST,+2.6,+340,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-01-02 13:00:00 PST,+3.1,+290,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-01-02 14:00:00 PST,+3.1,+280,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-01-02 15:00:00 PST,+2.1,+320,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-01-02 16:00:00 PST,+2.6,+300,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-02 17:00:00 PST,+1.5,+240,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-01-02 18:00:00 PST,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-01-02 19:00:00 PST,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-02 20:00:00 PST,+2.1,+340,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-01-02 21:00:00 PST,+1.5,+10,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-01-02 22:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-02 23:00:00 PST,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-03 00:00:00 PST,+1.5,+160,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-01-03 01:00:00 PST,+2.3,+140,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-01-03 02:00:00 PST,+3.1,+120,+5,+270,+0.0260014,+1604.86,+61722.3,+10.3784,OK,OK,+8,+180,+0.0160156,+988.517,+61722.3,+28.4873,OK,OK
-2020-01-03 03:00:00 PST,+9.3,+100,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-01-03 04:00:00 PST,+7.7,+90,+5,+270,+0.0819684,+5059.27,+61722.3,+989.189,OK,OK,+8,+180,+0.0562508,+3471.93,+61722.3,+1334.65,OK,OK
-2020-01-03 05:00:00 PST,+6.7,+90,+5,+270,+0.0638743,+3942.46,+61722.3,+893.593,OK,OK,+8,+180,+0.036923,+2278.97,+61722.3,+1388.05,OK,OK
-2020-01-03 06:00:00 PST,+7.7,+80,+5,+270,+0.0523353,+3230.25,+61722.3,+677.335,OK,OK,+8,+180,+0.0245961,+1518.13,+61722.3,+1241.96,OK,OK
-2020-01-03 07:00:00 PST,+8.7,+90,+5,+270,+0.0655501,+4045.9,+61722.3,+1035.32,OK,OK,+8,+180,+0.0383115,+2364.67,+61722.3,+1594.69,OK,OK
-2020-01-03 08:00:00 PST,+15.4,+70,+5,+270,+0.0774958,+4783.22,+61722.3,+1103.47,OK,OK,+8,+180,+0.0511932,+3159.76,+61722.3,+1536.95,OK,OK
-2020-01-03 09:00:00 PST,+15.4,+70,+5,+270,+0.224594,+13862.4,+61722.3,+2996.89,OK,OK,+8,+180,+0.198982,+12281.6,+61722.3,+3276.16,OK,OK
-2020-01-03 10:00:00 PST,+7.2,+70,+5,+270,+0.224594,+13862.4,+61722.3,+2996.89,OK,OK,+8,+180,+0.198982,+12281.6,+61722.3,+3276.16,OK,OK
-2020-01-03 11:00:00 PST,+9.3,+60,+5,+270,+0.0594606,+3670.05,+61722.3,+996.304,OK,OK,+8,+180,+0.0314864,+1943.41,+61722.3,+1663.15,OK,OK
-2020-01-03 12:00:00 PST,+6.2,+60,+5,+270,+0.0870388,+5372.23,+61722.3,+1618.94,OK,OK,+8,+180,+0.0599409,+3699.69,+61722.3,+2181.19,OK,OK
-2020-01-03 13:00:00 PST,+5.7,+60,+5,+270,+0.0478587,+2953.95,+61722.3,+742.241,OK,OK,+8,+180,+0.018628,+1149.76,+61722.3,+1580.27,OK,OK
-2020-01-03 14:00:00 PST,+4.6,+60,+5,+270,+0.0434383,+2681.11,+61722.3,+598.723,OK,OK,+8,+180,+0.0138923,+857.462,+61722.3,+1475.05,OK,OK
-2020-01-03 15:00:00 PST,+6.2,+90,+5,+270,+0.0356553,+2200.73,+61722.3,+302.02,OK,OK,+8,+180,+0.00712802,+439.958,+61722.3,+903.274,OK,OK
-2020-01-03 16:00:00 PST,+7.2,+100,+5,+270,+0.0473756,+2924.13,+61722.3,+568.026,OK,OK,+8,+180,+0.0192388,+1187.46,+61722.3,+1166.65,OK,OK
-2020-01-03 17:00:00 PST,+0,+0,+5,+270,+0.0551167,+3401.92,+61722.3,+626.444,OK,OK,+8,+180,+0.0280147,+1729.13,+61722.3,+1078.44,OK,OK
-2020-01-03 18:00:00 PST,+2.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-03 19:00:00 PST,+2.1,+20,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-03 20:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-03 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-03 22:00:00 PST,+3.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-03 23:00:00 PST,+0,+0,+5,+270,+0.0289646,+1787.76,+61722.3,-6.34541,OK,OK,+8,+180,+0.0108248,+668.132,+61722.3,-286.598,OK,OK
-2020-01-04 00:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-04 01:00:00 PST,+1.5,+60,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-01-04 02:00:00 PST,+2.1,+40,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-01-04 03:00:00 PST,+2.1,+340,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-04 04:00:00 PST,+0,+0,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-04 05:00:00 PST,+2.6,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-04 06:00:00 PST,+2.1,+10,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-01-04 07:00:00 PST,+0,+0,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-01-04 08:00:00 PST,+2.1,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-04 09:00:00 PST,+2.1,+80,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-04 10:00:00 PST,+2.1,+110,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-04 11:00:00 PST,+5.1,+150,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-04 12:00:00 PST,+2.6,+100,+5,+270,+0.0266481,+1644.78,+61722.3,+8.79327,OK,OK,+8,+180,+0.0131484,+811.552,+61722.3,+112.557,OK,OK
-2020-01-04 13:00:00 PST,+4.1,+110,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-01-04 14:00:00 PST,+6.2,+110,+5,+270,+0.0309674,+1911.38,+61722.3,+64.9306,OK,OK,+8,+180,+0.0084957,+524.374,+61722.3,+40.9733,OK,OK
-2020-01-04 15:00:00 PST,+5.1,+140,+5,+270,+0.0426862,+2634.69,+61722.3,+310.753,OK,OK,+8,+180,+0.0151523,+935.233,+61722.3,+701.5,OK,OK
-2020-01-04 16:00:00 PST,+2.1,+130,+5,+270,+0.028824,+1779.08,+61722.3,-11.0051,OK,OK,+8,+180,+0.0104543,+645.265,+61722.3,+10.2299,OK,OK
-2020-01-04 17:00:00 PST,+0,+0,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-01-04 18:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-04 19:00:00 PST,+3.1,+120,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-01-04 20:00:00 PST,+1.5,+100,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-01-04 21:00:00 PST,+2.1,+50,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-01-04 22:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-01-04 23:00:00 PST,+2.6,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 00:00:00 PST,+2.1,+60,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-01-05 01:00:00 PST,+0,+0,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-01-05 02:00:00 PST,+0.8,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 03:00:00 PST,+1.5,+340,+5,+270,+0.0258045,+1592.71,+61722.3,-32.5506,OK,OK,+8,+180,+0.0175259,+1081.74,+61722.3,-72.1201,OK,OK
-2020-01-05 04:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-05 05:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 06:00:00 PST,+0,+0,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-01-05 07:00:00 PST,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 08:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-01-05 09:00:00 PST,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 10:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-05 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 12:00:00 PST,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 13:00:00 PST,+0,+0,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-01-05 14:00:00 PST,+2.1,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 15:00:00 PST,+4.1,+300,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-01-05 16:00:00 PST,+4.1,+270,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-01-05 17:00:00 PST,+0,+0,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-01-05 18:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 19:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-05 20:00:00 PST,+2.1,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 21:00:00 PST,+0,+0,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-01-05 22:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-05 23:00:00 PST,+1.5,+360,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-06 00:00:00 PST,+2.6,+210,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-06 01:00:00 PST,+0,+0,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-01-06 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 04:00:00 PST,+0.8,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 05:00:00 PST,+1.5,+290,+5,+270,+0.0259274,+1600.3,+61722.3,-14.4486,OK,OK,+8,+180,+0.0173602,+1071.51,+61722.3,-32.6031,OK,OK
-2020-01-06 06:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-06 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 10:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 11:00:00 PST,+1.5,+250,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-06 12:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-06 13:00:00 PST,+2.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 14:00:00 PST,+4.6,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-01-06 15:00:00 PST,+5.1,+250,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-01-06 16:00:00 PST,+4.6,+260,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-01-06 17:00:00 PST,+3.6,+270,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-01-06 18:00:00 PST,+2.1,+290,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-01-06 19:00:00 PST,+1.5,+300,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-06 20:00:00 PST,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-01-06 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-06 23:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 00:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-01-07 01:00:00 PST,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 02:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-01-07 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 04:00:00 PST,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 05:00:00 PST,+1.5,+360,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-01-07 06:00:00 PST,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-01-07 07:00:00 PST,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 08:00:00 PST,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-01-07 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 12:00:00 PST,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 13:00:00 PST,+4.6,+310,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-07 14:00:00 PST,+5.7,+250,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-01-07 15:00:00 PST,+5.1,+290,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-01-07 16:00:00 PST,+4.1,+290,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-01-07 17:00:00 PST,+4.6,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-01-07 18:00:00 PST,+3.1,+290,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-01-07 19:00:00 PST,+2.6,+290,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-01-07 20:00:00 PST,+2.1,+350,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-01-07 21:00:00 PST,+0,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-01-07 22:00:00 PST,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-07 23:00:00 PST,+3.1,+320,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-01-08 00:00:00 PST,+1.5,+310,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-01-08 01:00:00 PST,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-01-08 02:00:00 PST,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-08 03:00:00 PST,+1.5,+180,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-01-08 04:00:00 PST,+0,+0,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-01-08 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-08 06:00:00 PST,+1.5,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-08 07:00:00 PST,+3.1,+150,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-01-08 08:00:00 PST,+2.1,+170,+5,+270,+0.0258361,+1594.67,+61722.3,+38.6937,OK,OK,+8,+180,+0.0159067,+981.798,+61722.3,+109.807,OK,OK
-2020-01-08 09:00:00 PST,+2.1,+230,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-01-08 10:00:00 PST,+2.6,+280,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-01-08 11:00:00 PST,+6.2,+50,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-01-08 12:00:00 PST,+12.9,+40,+5,+270,+0.046258,+2855.15,+61722.3,+718.094,OK,OK,+8,+180,+0.0164901,+1017.8,+61722.3,+1636.26,OK,OK
-2020-01-08 13:00:00 PST,+15.4,+50,+5,+270,+0.134307,+8289.72,+61722.3,+2503.57,OK,OK,+8,+180,+0.107148,+6613.42,+61722.3,+2987.49,OK,OK
-2020-01-08 14:00:00 PST,+8.2,+60,+5,+270,+0.205174,+12663.8,+61722.3,+3204.68,OK,OK,+8,+180,+0.178776,+11034.5,+61722.3,+3553.08,OK,OK
-2020-01-08 15:00:00 PST,+9.8,+60,+5,+270,+0.07089,+4375.49,+61722.3,+1315.99,OK,OK,+8,+180,+0.0431824,+2665.31,+61722.3,+1961.28,OK,OK
-2020-01-08 16:00:00 PST,+7.2,+50,+5,+270,+0.0951618,+5873.6,+61722.3,+1753.21,OK,OK,+8,+180,+0.0682825,+4214.55,+61722.3,+2283.25,OK,OK
-2020-01-08 17:00:00 PST,+6.2,+80,+5,+270,+0.0559665,+3454.38,+61722.3,+1013.16,OK,OK,+8,+180,+0.0269642,+1664.29,+61722.3,+1826.38,OK,OK
-2020-01-08 18:00:00 PST,+7.2,+60,+5,+270,+0.0484491,+2990.39,+61722.3,+662.241,OK,OK,+8,+180,+0.0200138,+1235.29,+61722.3,+1344.12,OK,OK
-2020-01-08 19:00:00 PST,+7.2,+90,+5,+270,+0.058325,+3599.95,+61722.3,+1031.65,OK,OK,+8,+180,+0.0298986,+1845.41,+61722.3,+1768.63,OK,OK
-2020-01-08 20:00:00 PST,+7.7,+80,+5,+270,+0.058325,+3599.95,+61722.3,+1031.65,OK,OK,+8,+180,+0.0298986,+1845.41,+61722.3,+1768.63,OK,OK
-2020-01-08 21:00:00 PST,+6.7,+70,+5,+270,+0.0655501,+4045.9,+61722.3,+1035.32,OK,OK,+8,+180,+0.0383115,+2364.67,+61722.3,+1594.69,OK,OK
-2020-01-08 22:00:00 PST,+8.2,+80,+5,+270,+0.0537577,+3318.05,+61722.3,+859.639,OK,OK,+8,+180,+0.0253759,+1566.26,+61722.3,+1573.19,OK,OK
-2020-01-08 23:00:00 PST,+5.7,+90,+5,+270,+0.0723296,+4464.35,+61722.3,+1156.5,OK,OK,+8,+180,+0.0454296,+2804.02,+61722.3,+1679.61,OK,OK
-2020-01-09 00:00:00 PST,+8.2,+70,+5,+270,+0.0429704,+2652.23,+61722.3,+459.455,OK,OK,+8,+180,+0.0145263,+896.598,+61722.3,+1080.57,OK,OK
-2020-01-09 01:00:00 PST,+9.3,+100,+5,+270,+0.0724781,+4473.51,+61722.3,+1264.44,OK,OK,+8,+180,+0.0452182,+2790.97,+61722.3,+1847.23,OK,OK
-2020-01-09 02:00:00 PST,+9.3,+120,+5,+270,+0.0819684,+5059.27,+61722.3,+989.189,OK,OK,+8,+180,+0.0562508,+3471.93,+61722.3,+1334.65,OK,OK
-2020-01-09 03:00:00 PST,+9.3,+140,+5,+270,+0.0819684,+5059.27,+61722.3,+989.189,OK,OK,+8,+180,+0.0562508,+3471.93,+61722.3,+1334.65,OK,OK
-2020-01-09 04:00:00 PST,+2.6,+20,+5,+270,+0.0819684,+5059.27,+61722.3,+989.189,OK,OK,+8,+180,+0.0562508,+3471.93,+61722.3,+1334.65,OK,OK
-2020-01-09 05:00:00 PST,+2.1,+30,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-01-09 06:00:00 PST,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-01-09 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 11:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 12:00:00 PST,+1.5,+150,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-09 13:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-09 14:00:00 PST,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 15:00:00 PST,+2.6,+330,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-01-09 16:00:00 PST,+4.1,+270,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-01-09 17:00:00 PST,+4.1,+200,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-09 18:00:00 PST,+0,+0,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-09 19:00:00 PST,+3,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-09 20:00:00 PST,+3,+180,+5,+270,+0.0246897,+1523.91,+61722.3,+195.708,OK,OK,+8,+180,+0.0198606,+1225.84,+61722.3,+341.427,OK,OK
-2020-01-09 21:00:00 PST,+2.5,+50,+5,+270,+0.0246897,+1523.91,+61722.3,+195.708,OK,OK,+8,+180,+0.0198606,+1225.84,+61722.3,+341.427,OK,OK
-2020-01-09 22:00:00 PST,+0,+0,+5,+270,+0.0275947,+1703.21,+61722.3,-62.5672,OK,OK,+8,+180,+0.0131296,+810.391,+61722.3,-309.338,OK,OK
-2020-01-09 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 02:00:00 PST,+1.3,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 03:00:00 PST,+0,+0,+5,+270,+0.0259232,+1600.04,+61722.3,-71.3081,OK,OK,+8,+180,+0.0171486,+1058.45,+61722.3,-165.248,OK,OK
-2020-01-10 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 05:00:00 PST,+1.2,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 06:00:00 PST,+1.2,+100,+5,+270,+0.0260235,+1606.23,+61722.3,-59.1251,OK,OK,+8,+180,+0.0165808,+1023.4,+61722.3,-147.766,OK,OK
-2020-01-10 07:00:00 PST,+0,+0,+5,+270,+0.0260235,+1606.23,+61722.3,-59.1251,OK,OK,+8,+180,+0.0165808,+1023.4,+61722.3,-147.766,OK,OK
-2020-01-10 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 09:00:00 PST,+1.8,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 10:00:00 PST,+1.7,+20,+5,+270,+0.0265555,+1639.07,+61722.3,-85.1463,OK,OK,+8,+180,+0.0153242,+945.844,+61722.3,-256.47,OK,OK
-2020-01-10 11:00:00 PST,+1.1,+10,+5,+270,+0.0262241,+1618.61,+61722.3,-90.6934,OK,OK,+8,+180,+0.016352,+1009.28,+61722.3,-232.835,OK,OK
-2020-01-10 12:00:00 PST,+0,+0,+5,+270,+0.0258474,+1595.36,+61722.3,-61.863,OK,OK,+8,+180,+0.0173248,+1069.32,+61722.3,-140.391,OK,OK
-2020-01-10 13:00:00 PST,+3.7,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-10 14:00:00 PST,+6.3,+250,+5,+270,+0.0328473,+2027.41,+61722.3,+84.7649,OK,OK,+8,+180,+0.0090652,+559.524,+61722.3,+676.368,OK,OK
-2020-01-10 15:00:00 PST,+5.2,+240,+5,+270,+0.0517439,+3193.75,+61722.3,-212.429,OK,OK,+8,+180,+0.0125163,+772.533,+61722.3,-436.339,OK,OK
-2020-01-10 16:00:00 PST,+5.2,+250,+5,+270,+0.0405502,+2502.85,+61722.3,-35.5252,OK,OK,+8,+180,+0.0028141,+173.693,+61722.3,+1182.26,OK,OK
-2020-01-10 17:00:00 PST,+3.1,+270,+5,+270,+0.0405502,+2502.85,+61722.3,-35.5252,OK,OK,+8,+180,+0.0028141,+173.693,+61722.3,+1182.26,OK,OK
-2020-01-10 18:00:00 PST,+2.6,+330,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-01-10 19:00:00 PST,+1.5,+340,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-01-10 20:00:00 PST,+2.1,+70,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-10 21:00:00 PST,+1.5,+360,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-01-10 22:00:00 PST,+2.1,+40,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-10 23:00:00 PST,+0,+0,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-11 00:00:00 PST,+3.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-11 01:00:00 PST,+2.9,+340,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-01-11 02:00:00 PST,+2.6,+340,+5,+270,+0.0285822,+1764.16,+61722.3,-50.4152,OK,OK,+8,+180,+0.013412,+827.821,+61722.3,-192.59,OK,OK
-2020-01-11 03:00:00 PST,+2.4,+350,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-01-11 04:00:00 PST,+2.1,+350,+5,+270,+0.027003,+1666.69,+61722.3,-76.3709,OK,OK,+8,+180,+0.0155762,+961.401,+61722.3,-214.411,OK,OK
-2020-01-11 05:00:00 PST,+1.5,+20,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-01-11 06:00:00 PST,+3.1,+10,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-11 07:00:00 PST,+2.6,+100,+5,+270,+0.0273228,+1686.43,+61722.3,-102.016,OK,OK,+8,+180,+0.0142656,+880.506,+61722.3,-361.427,OK,OK
-2020-01-11 08:00:00 PST,+1.5,+70,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-01-11 09:00:00 PST,+1.5,+330,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-01-11 10:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-01-11 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-11 12:00:00 PST,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-11 13:00:00 PST,+5.7,+250,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-01-11 14:00:00 PST,+4.1,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-01-11 15:00:00 PST,+4.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-11 16:00:00 PST,+3.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-11 17:00:00 PST,+5.1,+250,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-01-11 18:00:00 PST,+3.1,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-01-11 19:00:00 PST,+4.1,+310,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-01-11 20:00:00 PST,+4.6,+300,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-01-11 21:00:00 PST,+3.1,+320,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-01-11 22:00:00 PST,+0,+0,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-01-11 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 01:00:00 PST,+2.1,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 02:00:00 PST,+1.5,+360,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-01-12 03:00:00 PST,+2.1,+10,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-12 04:00:00 PST,+1.5,+110,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-01-12 05:00:00 PST,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-01-12 06:00:00 PST,+2.6,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 07:00:00 PST,+1.5,+340,+5,+270,+0.0273706,+1689.38,+61722.3,-82.9282,OK,OK,+8,+180,+0.0137729,+850.096,+61722.3,-335.303,OK,OK
-2020-01-12 08:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-12 09:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 10:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-01-12 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 13:00:00 PST,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 14:00:00 PST,+2.6,+240,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-01-12 15:00:00 PST,+1.5,+300,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-01-12 16:00:00 PST,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-01-12 17:00:00 PST,+3.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 18:00:00 PST,+3.1,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-01-12 19:00:00 PST,+2.6,+310,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-01-12 20:00:00 PST,+2.1,+330,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-01-12 21:00:00 PST,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-01-12 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-12 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 03:00:00 PST,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 04:00:00 PST,+1.5,+360,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-01-13 05:00:00 PST,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-01-13 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 07:00:00 PST,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 08:00:00 PST,+0,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-01-13 09:00:00 PST,+2.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 10:00:00 PST,+2.1,+110,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-13 11:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-13 12:00:00 PST,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 13:00:00 PST,+1.5,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-01-13 14:00:00 PST,+2.6,+290,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-01-13 15:00:00 PST,+5.1,+260,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-01-13 16:00:00 PST,+4.6,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-01-13 17:00:00 PST,+2.6,+230,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-01-13 18:00:00 PST,+0,+0,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-01-13 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 20:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 21:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-01-13 22:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-13 23:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-01-14 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 01:00:00 PST,+2.6,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 02:00:00 PST,+0,+0,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-01-14 03:00:00 PST,+3.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 04:00:00 PST,+0,+0,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-01-14 05:00:00 PST,+3.6,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 06:00:00 PST,+2.1,+80,+5,+270,+0.0287213,+1772.74,+61722.3,-45.3652,OK,OK,+8,+180,+0.0115705,+714.155,+61722.3,-377.97,OK,OK
-2020-01-14 07:00:00 PST,+2.1,+360,+5,+270,+0.0269589,+1663.97,+61722.3,-59.5034,OK,OK,+8,+180,+0.0141955,+876.177,+61722.3,-226.274,OK,OK
-2020-01-14 08:00:00 PST,+0,+0,+5,+270,+0.0269589,+1663.97,+61722.3,-59.5034,OK,OK,+8,+180,+0.0141955,+876.177,+61722.3,-226.274,OK,OK
-2020-01-14 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 13:00:00 PST,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 14:00:00 PST,+1.5,+350,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-14 15:00:00 PST,+3.1,+350,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-14 16:00:00 PST,+0,+0,+5,+270,+0.0279614,+1725.84,+61722.3,-79.3691,OK,OK,+8,+180,+0.0141107,+870.946,+61722.3,-274.587,OK,OK
-2020-01-14 17:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 18:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-14 19:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 20:00:00 PST,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-01-14 21:00:00 PST,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-14 22:00:00 PST,+2.1,+100,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-01-14 23:00:00 PST,+1.4,+70,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-15 00:00:00 PST,+0.7,+30,+5,+270,+0.0261881,+1616.39,+61722.3,-70.6431,OK,OK,+8,+180,+0.0161496,+996.789,+61722.3,-187.503,OK,OK
-2020-01-15 01:00:00 PST,+0,+0,+5,+270,+0.0257643,+1590.23,+61722.3,-47.2879,OK,OK,+8,+180,+0.0174747,+1078.58,+61722.3,-105.488,OK,OK
-2020-01-15 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 05:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 06:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-15 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 11:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 12:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-01-15 13:00:00 PST,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-15 14:00:00 PST,+3.6,+270,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-01-15 15:00:00 PST,+4.1,+290,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-01-15 16:00:00 PST,+6.2,+240,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-01-15 17:00:00 PST,+2.6,+270,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-01-15 18:00:00 PST,+3.1,+310,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-01-15 19:00:00 PST,+2.6,+340,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-01-15 20:00:00 PST,+1.5,+130,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-01-15 21:00:00 PST,+2.1,+340,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-01-15 22:00:00 PST,+1.5,+340,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-01-15 23:00:00 PST,+2.1,+70,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-16 00:00:00 PST,+2.1,+80,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-01-16 01:00:00 PST,+1.5,+320,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-01-16 02:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-01-16 03:00:00 PST,+3.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-16 04:00:00 PST,+3.1,+330,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-01-16 05:00:00 PST,+2.6,+160,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-01-16 06:00:00 PST,+2.1,+60,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-01-16 07:00:00 PST,+2.1,+20,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-01-16 08:00:00 PST,+3.1,+330,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-01-16 09:00:00 PST,+2.1,+290,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-01-16 10:00:00 PST,+2.1,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-16 11:00:00 PST,+2.1,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-16 12:00:00 PST,+4.6,+270,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-16 13:00:00 PST,+4.6,+260,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-01-16 14:00:00 PST,+5.1,+290,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-01-16 15:00:00 PST,+3.1,+320,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-01-16 16:00:00 PST,+4.6,+260,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-01-16 17:00:00 PST,+4.1,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-01-16 18:00:00 PST,+4.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-01-16 19:00:00 PST,+2.6,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-01-16 20:00:00 PST,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-01-16 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-16 22:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-16 23:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-17 00:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 01:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-01-17 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 08:00:00 PST,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 09:00:00 PST,+0,+0,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-01-17 10:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 11:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-01-17 12:00:00 PST,+2.1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 13:00:00 PST,+2.1,+60,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-01-17 14:00:00 PST,+1.5,+360,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-01-17 15:00:00 PST,+2.1,+340,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-17 16:00:00 PST,+3.1,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-01-17 17:00:00 PST,+2.6,+260,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-01-17 18:00:00 PST,+2.1,+260,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-01-17 19:00:00 PST,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-01-17 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 22:00:00 PST,+0.8,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-17 23:00:00 PST,+1.5,+100,+5,+270,+0.0258183,+1593.56,+61722.3,-54.0606,OK,OK,+8,+180,+0.0172814,+1066.65,+61722.3,-123.424,OK,OK
-2020-01-18 00:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-01-18 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 02:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 03:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-01-18 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 05:00:00 PST,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 06:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-01-18 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 13:00:00 PST,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 14:00:00 PST,+5.7,+260,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-01-18 15:00:00 PST,+5.1,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-01-18 16:00:00 PST,+2.6,+270,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-01-18 17:00:00 PST,+1.5,+290,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-01-18 18:00:00 PST,+2.1,+280,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-18 19:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-01-18 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 21:00:00 PST,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-18 22:00:00 PST,+2.1,+330,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-01-18 23:00:00 PST,+1.5,+240,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-01-19 00:00:00 PST,+2.1,+270,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-01-19 01:00:00 PST,+2.6,+310,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-01-19 02:00:00 PST,+1.5,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-01-19 03:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-19 04:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 05:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-01-19 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 07:00:00 PST,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 08:00:00 PST,+2.6,+230,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-01-19 09:00:00 PST,+2.6,+270,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-01-19 10:00:00 PST,+0,+0,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-01-19 11:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 12:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-19 13:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 14:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-01-19 15:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 16:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 17:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 19:00:00 PST,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 20:00:00 PST,+1.5,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-01-19 21:00:00 PST,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-01-19 22:00:00 PST,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-19 23:00:00 PST,+2.1,+230,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-01-20 00:00:00 PST,+1.5,+290,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-01-20 01:00:00 PST,+2.6,+250,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-20 02:00:00 PST,+2.1,+290,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-01-20 03:00:00 PST,+2.1,+300,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-20 04:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-20 05:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-20 06:00:00 PST,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-01-20 07:00:00 PST,+1.5,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-20 08:00:00 PST,+1.5,+260,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-01-20 09:00:00 PST,+1.5,+240,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-01-20 10:00:00 PST,+4.1,+240,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-01-20 11:00:00 PST,+5.7,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-01-20 12:00:00 PST,+4.6,+230,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-01-20 13:00:00 PST,+4.1,+250,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-01-20 14:00:00 PST,+4.6,+230,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-01-20 15:00:00 PST,+3.6,+240,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-01-20 16:00:00 PST,+5.1,+250,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-01-20 17:00:00 PST,+4.1,+230,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-01-20 18:00:00 PST,+3.6,+260,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-01-20 19:00:00 PST,+3.6,+230,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-01-20 20:00:00 PST,+3.6,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-01-20 21:00:00 PST,+5.1,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-01-20 22:00:00 PST,+3.6,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-01-20 23:00:00 PST,+4.6,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-01-21 00:00:00 PST,+5.1,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-01-21 01:00:00 PST,+4.1,+270,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-01-21 02:00:00 PST,+6.2,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-21 03:00:00 PST,+6.2,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-01-21 04:00:00 PST,+7.2,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-01-21 05:00:00 PST,+5.1,+230,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-01-21 06:00:00 PST,+3.6,+220,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-01-21 07:00:00 PST,+4.1,+230,+5,+270,+0.0298938,+1845.11,+61722.3,+160.135,OK,OK,+8,+180,+0.0128178,+791.145,+61722.3,+633.657,OK,OK
-2020-01-21 08:00:00 PST,+3.1,+230,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-01-21 09:00:00 PST,+3.1,+240,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-01-21 10:00:00 PST,+2.6,+240,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-01-21 11:00:00 PST,+4.6,+230,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-01-21 12:00:00 PST,+3.1,+240,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-01-21 13:00:00 PST,+3.6,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-01-21 14:00:00 PST,+3.1,+250,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-01-21 15:00:00 PST,+3.1,+240,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-01-21 16:00:00 PST,+5.1,+230,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-01-21 17:00:00 PST,+4.3,+250,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-01-21 18:00:00 PST,+3.4,+270,+5,+270,+0.0370729,+2288.22,+61722.3,+10.8392,OK,OK,+8,+180,+0.00443437,+273.699,+61722.3,+920.736,OK,OK
-2020-01-21 19:00:00 PST,+2.6,+300,+5,+270,+0.0336877,+2079.28,+61722.3,+36.0718,OK,OK,+8,+180,+0.00770919,+475.829,+61722.3,+450.704,OK,OK
-2020-01-21 20:00:00 PST,+1.7,+320,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-01-21 21:00:00 PST,+0.9,+340,+5,+270,+0.0271278,+1674.39,+61722.3,-8.48015,OK,OK,+8,+180,+0.0156262,+964.486,+61722.3,-23.5149,OK,OK
-2020-01-21 22:00:00 PST,+0,+0,+5,+270,+0.0259247,+1600.13,+61722.3,-26.4822,OK,OK,+8,+180,+0.0173499,+1070.88,+61722.3,-59.8349,OK,OK
-2020-01-21 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 02:00:00 PST,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 03:00:00 PST,+2.1,+80,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-22 04:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-22 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 06:00:00 PST,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 07:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-22 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 10:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 11:00:00 PST,+2.1,+110,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-01-22 12:00:00 PST,+2.1,+160,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-01-22 13:00:00 PST,+1.5,+200,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-01-22 14:00:00 PST,+2.6,+240,+5,+270,+0.0258978,+1598.47,+61722.3,+98.4989,OK,OK,+8,+180,+0.0175856,+1085.42,+61722.3,+216.45,OK,OK
-2020-01-22 15:00:00 PST,+2.6,+280,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-01-22 16:00:00 PST,+3.6,+240,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-01-22 17:00:00 PST,+3.1,+250,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-01-22 18:00:00 PST,+2.1,+280,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-01-22 19:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-01-22 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 22:00:00 PST,+2.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-22 23:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-23 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 05:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 06:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-23 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 13:00:00 PST,+3.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-23 14:00:00 PST,+5.7,+270,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-01-23 15:00:00 PST,+7.7,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-01-23 16:00:00 PST,+4.6,+240,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-01-23 17:00:00 PST,+6.2,+260,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-01-23 18:00:00 PST,+4.1,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-01-23 19:00:00 PST,+2.6,+310,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-23 20:00:00 PST,+2.6,+340,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-01-23 21:00:00 PST,+2.1,+280,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-01-23 22:00:00 PST,+2.1,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-01-23 23:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-01-24 00:00:00 PST,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 01:00:00 PST,+0,+0,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-01-24 02:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 03:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-24 04:00:00 PST,+2.1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 05:00:00 PST,+0,+0,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-01-24 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 07:00:00 PST,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 08:00:00 PST,+1.5,+340,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-01-24 09:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-24 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 11:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 12:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-24 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 15:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 16:00:00 PST,+4.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-24 17:00:00 PST,+4.1,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-01-24 18:00:00 PST,+2.6,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-01-24 19:00:00 PST,+4.1,+270,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-01-24 20:00:00 PST,+5.1,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-24 21:00:00 PST,+4.6,+280,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-01-24 22:00:00 PST,+2.6,+260,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-01-24 23:00:00 PST,+0,+0,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-01-25 00:00:00 PST,+2.6,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-25 01:00:00 PST,+2.6,+270,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-01-25 02:00:00 PST,+2.6,+100,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-01-25 03:00:00 PST,+2.5,+120,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-01-25 04:00:00 PST,+4,+200,+5,+270,+0.0267568,+1651.49,+61722.3,-21.4023,OK,OK,+8,+180,+0.0142689,+880.706,+61722.3,-82.5453,OK,OK
-2020-01-25 05:00:00 PST,+2,+90,+5,+270,+0.0273454,+1687.82,+61722.3,+252.279,OK,OK,+8,+180,+0.0164924,+1017.95,+61722.3,+621.225,OK,OK
-2020-01-25 06:00:00 PST,+2.7,+120,+5,+270,+0.0267367,+1650.25,+61722.3,-54.9319,OK,OK,+8,+180,+0.0146296,+902.974,+61722.3,-190.627,OK,OK
-2020-01-25 07:00:00 PST,+4.1,+290,+5,+270,+0.0269953,+1666.21,+61722.3,-18.6587,OK,OK,+8,+180,+0.0137172,+846.656,+61722.3,-84.4663,OK,OK
-2020-01-25 08:00:00 PST,+0,+0,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-01-25 09:00:00 PST,+2.6,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-25 10:00:00 PST,+0,+0,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-01-25 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-25 12:00:00 PST,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-25 13:00:00 PST,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-01-25 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-25 15:00:00 PST,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-25 16:00:00 PST,+4.1,+260,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-01-25 17:00:00 PST,+3.6,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-01-25 18:00:00 PST,+3.6,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-01-25 19:00:00 PST,+4.1,+240,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-01-25 20:00:00 PST,+3.1,+250,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-01-25 21:00:00 PST,+2.1,+250,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-01-25 22:00:00 PST,+2.1,+270,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-01-25 23:00:00 PST,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-01-26 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-26 01:00:00 PST,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-26 02:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-26 03:00:00 PST,+1.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-26 04:00:00 PST,+2.1,+100,+5,+270,+0.0259664,+1602.71,+61722.3,-69.3723,OK,OK,+8,+180,+0.0168485,+1039.93,+61722.3,-167.159,OK,OK
-2020-01-26 05:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-01-26 06:00:00 PST,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-26 07:00:00 PST,+2.1,+120,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-01-26 08:00:00 PST,+2.1,+20,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-01-26 09:00:00 PST,+2.6,+360,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-01-26 10:00:00 PST,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-01-26 11:00:00 PST,+3.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-26 12:00:00 PST,+2.1,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-01-26 13:00:00 PST,+2.1,+260,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-26 14:00:00 PST,+2.6,+320,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-01-26 15:00:00 PST,+5.1,+260,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-01-26 16:00:00 PST,+4.1,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-01-26 17:00:00 PST,+2.6,+230,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-01-26 18:00:00 PST,+1.5,+170,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-01-26 19:00:00 PST,+2.1,+140,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-01-26 20:00:00 PST,+1.5,+110,+5,+270,+0.0259332,+1600.65,+61722.3,+10.1183,OK,OK,+8,+180,+0.0163017,+1006.18,+61722.3,+26.5241,OK,OK
-2020-01-26 21:00:00 PST,+3.1,+320,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-01-26 22:00:00 PST,+3.6,+20,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-01-26 23:00:00 PST,+2.1,+30,+5,+270,+0.0287213,+1772.74,+61722.3,-45.3652,OK,OK,+8,+180,+0.0115705,+714.155,+61722.3,-377.97,OK,OK
-2020-01-27 00:00:00 PST,+2.6,+120,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-01-27 01:00:00 PST,+0,+0,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-01-27 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 04:00:00 PST,+2.1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 05:00:00 PST,+0,+0,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-01-27 06:00:00 PST,+2.6,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 07:00:00 PST,+0,+0,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-01-27 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 10:00:00 PST,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 11:00:00 PST,+2.1,+280,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-01-27 12:00:00 PST,+1.5,+290,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-01-27 13:00:00 PST,+4.6,+300,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-01-27 14:00:00 PST,+0,+0,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-01-27 15:00:00 PST,+2.1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 16:00:00 PST,+0,+0,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-01-27 17:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 18:00:00 PST,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 19:00:00 PST,+0,+0,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-01-27 20:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-27 21:00:00 PST,+1.5,+130,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-01-27 22:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-01-27 23:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 00:00:00 PST,+2.1,+30,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-28 01:00:00 PST,+2.1,+50,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-01-28 02:00:00 PST,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-01-28 03:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 04:00:00 PST,+2.6,+350,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-28 05:00:00 PST,+0,+0,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-01-28 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 07:00:00 PST,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 08:00:00 PST,+2.1,+10,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-01-28 09:00:00 PST,+1.1,+10,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-01-28 10:00:00 PST,+0,+0,+5,+270,+0.0258474,+1595.36,+61722.3,-61.863,OK,OK,+8,+180,+0.0173248,+1069.32,+61722.3,-140.391,OK,OK
-2020-01-28 11:00:00 PST,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 12:00:00 PST,+2.6,+310,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-01-28 13:00:00 PST,+3.1,+330,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-01-28 14:00:00 PST,+1.5,+340,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-01-28 15:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-01-28 16:00:00 PST,+4.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 17:00:00 PST,+3.1,+310,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-01-28 18:00:00 PST,+2.1,+330,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-01-28 19:00:00 PST,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-01-28 20:00:00 PST,+3.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-28 21:00:00 PST,+2.1,+200,+5,+270,+0.0273228,+1686.43,+61722.3,-102.016,OK,OK,+8,+180,+0.0142656,+880.506,+61722.3,-361.427,OK,OK
-2020-01-28 22:00:00 PST,+1.5,+330,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-01-28 23:00:00 PST,+1.5,+350,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-01-29 00:00:00 PST,+2.6,+10,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-01-29 01:00:00 PST,+2.1,+350,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-01-29 02:00:00 PST,+0,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-01-29 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 05:00:00 PST,+2.6,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 06:00:00 PST,+1.5,+350,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-01-29 07:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-01-29 08:00:00 PST,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 09:00:00 PST,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-01-29 10:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 11:00:00 PST,+2.6,+60,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-01-29 12:00:00 PST,+2.6,+30,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-01-29 13:00:00 PST,+0,+0,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-01-29 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 15:00:00 PST,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-29 16:00:00 PST,+3.6,+250,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-01-29 17:00:00 PST,+2.6,+270,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-01-29 18:00:00 PST,+2.9,+300,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-01-29 19:00:00 PST,+3.1,+320,+5,+270,+0.0311835,+1924.71,+61722.3,+19.7724,OK,OK,+8,+180,+0.0104179,+643.014,+61722.3,+126.623,OK,OK
-2020-01-29 20:00:00 PST,+2.6,+320,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-01-29 21:00:00 PST,+2.1,+330,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-01-29 22:00:00 PST,+1.5,+120,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-01-29 23:00:00 PST,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-01-30 00:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 01:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-01-30 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 04:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 05:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-01-30 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 09:00:00 PST,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-30 10:00:00 PST,+1.5,+350,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-01-30 11:00:00 PST,+1.5,+350,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-01-30 12:00:00 PST,+2.1,+320,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-01-30 13:00:00 PST,+2.1,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-30 14:00:00 PST,+6.7,+240,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-01-30 15:00:00 PST,+5.4,+270,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-01-30 16:00:00 PST,+4.1,+300,+5,+270,+0.0475921,+2937.49,+61722.3,-126.382,OK,OK,+8,+180,+0.00832194,+513.649,+61722.3,-280.234,OK,OK
-2020-01-30 17:00:00 PST,+3.6,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-01-30 18:00:00 PST,+4.1,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-01-30 19:00:00 PST,+1.5,+310,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-01-30 20:00:00 PST,+2.6,+300,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-01-30 21:00:00 PST,+3.1,+340,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-01-30 22:00:00 PST,+3.1,+120,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-01-30 23:00:00 PST,+2.6,+180,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-01-31 00:00:00 PST,+2.6,+360,+5,+270,+0.0249181,+1538,+61722.3,+160.608,OK,OK,+8,+180,+0.0193397,+1193.69,+61722.3,+294.387,OK,OK
-2020-01-31 01:00:00 PST,+3.6,+290,+5,+270,+0.0249181,+1538,+61722.3,+160.608,OK,OK,+8,+180,+0.0193397,+1193.69,+61722.3,+294.387,OK,OK
-2020-01-31 02:00:00 PST,+3.6,+310,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-01-31 03:00:00 PST,+2.1,+10,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-01-31 04:00:00 PST,+1.5,+40,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-01-31 05:00:00 PST,+1.5,+30,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-01-31 06:00:00 PST,+1.5,+10,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-01-31 07:00:00 PST,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-01-31 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-31 09:00:00 PST,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-31 10:00:00 PST,+0,+0,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-01-31 11:00:00 PST,+2.6,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-01-31 12:00:00 PST,+2.1,+240,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-01-31 13:00:00 PST,+4.1,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-01-31 14:00:00 PST,+3.6,+240,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-01-31 15:00:00 PST,+3.6,+220,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-01-31 16:00:00 PST,+6.2,+240,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-01-31 17:00:00 PST,+4.1,+250,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-01-31 18:00:00 PST,+2.6,+250,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-01-31 19:00:00 PST,+3.6,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-01-31 20:00:00 PST,+1.5,+310,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-01-31 21:00:00 PST,+2.1,+270,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-01-31 22:00:00 PST,+2,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-01-31 23:00:00 PST,+1.9,+0,+5,+270,+0.0261371,+1613.24,+61722.3,-91.5356,OK,OK,+8,+180,+0.0168422,+1039.54,+61722.3,-219.783,OK,OK
-2020-02-01 00:00:00 PST,+1.8,+160,+5,+270,+0.0260896,+1610.31,+61722.3,-88.0226,OK,OK,+8,+180,+0.0169326,+1045.12,+61722.3,-209.058,OK,OK
-2020-02-01 01:00:00 PST,+1.8,+360,+5,+270,+0.0255472,+1576.83,+61722.3,+52.9552,OK,OK,+8,+180,+0.0175882,+1085.58,+61722.3,+116.912,OK,OK
-2020-02-01 02:00:00 PST,+1.7,+0,+5,+270,+0.0255472,+1576.83,+61722.3,+52.9552,OK,OK,+8,+180,+0.0175882,+1085.58,+61722.3,+116.912,OK,OK
-2020-02-01 03:00:00 PST,+1.6,+0,+5,+270,+0.0260025,+1604.93,+61722.3,-80.5215,OK,OK,+8,+180,+0.0170994,+1055.42,+61722.3,-187.481,OK,OK
-2020-02-01 04:00:00 PST,+1.5,+60,+5,+270,+0.0259628,+1602.49,+61722.3,-76.5489,OK,OK,+8,+180,+0.0171759,+1060.14,+61722.3,-176.635,OK,OK
-2020-02-01 05:00:00 PST,+0.8,+30,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-02-01 06:00:00 PST,+0,+0,+5,+270,+0.0257965,+1592.22,+61722.3,-53.3322,OK,OK,+8,+180,+0.0173845,+1073.01,+61722.3,-120.24,OK,OK
-2020-02-01 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-01 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-01 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-01 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-01 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-01 12:00:00 PST,+3.6,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-01 13:00:00 PST,+5.7,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-02-01 14:00:00 PST,+4.6,+260,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-02-01 15:00:00 PST,+3.6,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-02-01 16:00:00 PST,+4.6,+240,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-02-01 17:00:00 PST,+4.1,+290,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-02-01 18:00:00 PST,+5.1,+300,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-02-01 19:00:00 PST,+5.7,+300,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-02-01 20:00:00 PST,+4.1,+300,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-02-01 21:00:00 PST,+4.1,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-02-01 22:00:00 PST,+0,+0,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-02-01 23:00:00 PST,+4.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 00:00:00 PST,+2.1,+260,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-02-02 01:00:00 PST,+2.1,+280,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-02 02:00:00 PST,+1.5,+280,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-02 03:00:00 PST,+2.1,+100,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-02-02 04:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-02-02 05:00:00 PST,+1.5,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 06:00:00 PST,+3.1,+310,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-02-02 07:00:00 PST,+2.6,+340,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-02-02 08:00:00 PST,+1.5,+150,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-02-02 09:00:00 PST,+2.6,+170,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-02-02 10:00:00 PST,+1.5,+230,+5,+270,+0.0251436,+1551.92,+61722.3,+114.327,OK,OK,+8,+180,+0.0183721,+1133.97,+61722.3,+231.38,OK,OK
-2020-02-02 11:00:00 PST,+3.1,+290,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-02-02 12:00:00 PST,+0,+0,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-02-02 13:00:00 PST,+4.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 14:00:00 PST,+2.6,+320,+5,+270,+0.0379613,+2343.06,+61722.3,+4.92843,OK,OK,+8,+180,+0.00219825,+135.681,+61722.3,-88.3922,OK,OK
-2020-02-02 15:00:00 PST,+0,+0,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-02-02 16:00:00 PST,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 17:00:00 PST,+3.1,+260,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-02 18:00:00 PST,+0,+0,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-02-02 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 20:00:00 PST,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 21:00:00 PST,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-02-02 22:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-02 23:00:00 PST,+1.5,+30,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-02-03 00:00:00 PST,+3.1,+60,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-02-03 01:00:00 PST,+6.7,+80,+5,+270,+0.029157,+1799.64,+61722.3,+8.09709,OK,OK,+8,+180,+0.0104776,+646.702,+61722.3,-248.026,OK,OK
-2020-02-03 02:00:00 PST,+1.5,+90,+5,+270,+0.053598,+3308.19,+61722.3,+787.609,OK,OK,+8,+180,+0.0255728,+1578.41,+61722.3,+1428.19,OK,OK
-2020-02-03 03:00:00 PST,+8.2,+90,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-02-03 04:00:00 PST,+7.2,+100,+5,+270,+0.0704302,+4347.11,+61722.3,+999.425,OK,OK,+8,+180,+0.0438234,+2704.88,+61722.3,+1462.02,OK,OK
-2020-02-03 05:00:00 PST,+7.2,+90,+5,+270,+0.0551167,+3401.92,+61722.3,+626.444,OK,OK,+8,+180,+0.0280147,+1729.13,+61722.3,+1078.44,OK,OK
-2020-02-03 06:00:00 PST,+8.7,+100,+5,+270,+0.0551167,+3401.92,+61722.3,+626.444,OK,OK,+8,+180,+0.0280147,+1729.13,+61722.3,+1078.44,OK,OK
-2020-02-03 07:00:00 PST,+2.1,+360,+5,+270,+0.073429,+4532.2,+61722.3,+888.111,OK,OK,+8,+180,+0.0473813,+2924.48,+61722.3,+1260.41,OK,OK
-2020-02-03 08:00:00 PST,+1.5,+50,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-02-03 09:00:00 PST,+4.6,+90,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-03 10:00:00 PST,+10.3,+120,+5,+270,+0.0352569,+2176.14,+61722.3,+234.089,OK,OK,+8,+180,+0.00778772,+480.675,+61722.3,+652.186,OK,OK
-2020-02-03 11:00:00 PST,+9.3,+110,+5,+270,+0.0786893,+4856.88,+61722.3,+504.181,OK,OK,+8,+180,+0.0540054,+3333.34,+61722.3,+679.223,OK,OK
-2020-02-03 12:00:00 PST,+8.2,+120,+5,+270,+0.0752214,+4642.84,+61722.3,+717.431,OK,OK,+8,+180,+0.0497521,+3070.81,+61722.3,+997.119,OK,OK
-2020-02-03 13:00:00 PST,+8.2,+110,+5,+270,+0.0551483,+3403.88,+61722.3,+336.612,OK,OK,+8,+180,+0.0292095,+1802.88,+61722.3,+559.274,OK,OK
-2020-02-03 14:00:00 PST,+7.2,+120,+5,+270,+0.0551483,+3403.88,+61722.3,+336.612,OK,OK,+8,+180,+0.0292095,+1802.88,+61722.3,+559.274,OK,OK
-2020-02-03 15:00:00 PST,+5.7,+130,+5,+270,+0.0463896,+2863.27,+61722.3,+253.669,OK,OK,+8,+180,+0.0197632,+1219.83,+61722.3,+499.188,OK,OK
-2020-02-03 16:00:00 PST,+4.1,+160,+5,+270,+0.0333054,+2055.68,+61722.3,+35.3941,OK,OK,+8,+180,+0.0087431,+539.644,+61722.3,+79.4888,OK,OK
-2020-02-03 17:00:00 PST,+2.6,+130,+5,+270,+0.0251159,+1550.21,+61722.3,+95.6279,OK,OK,+8,+180,+0.0168843,+1042.14,+61722.3,+237.621,OK,OK
-2020-02-03 18:00:00 PST,+2.1,+130,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-02-03 19:00:00 PST,+2.1,+230,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-03 20:00:00 PST,+1.5,+340,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-03 21:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-02-03 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-03 23:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 00:00:00 PST,+1.5,+50,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-04 01:00:00 PST,+1.5,+180,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-04 02:00:00 PST,+2.6,+30,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-04 03:00:00 PST,+0,+0,+5,+270,+0.0273706,+1689.38,+61722.3,-82.9282,OK,OK,+8,+180,+0.0137729,+850.096,+61722.3,-335.303,OK,OK
-2020-02-04 04:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 05:00:00 PST,+2.1,+70,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-02-04 06:00:00 PST,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-02-04 07:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 08:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-02-04 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 12:00:00 PST,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 13:00:00 PST,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-02-04 14:00:00 PST,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-04 15:00:00 PST,+3.6,+260,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-04 16:00:00 PST,+5.7,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-02-04 17:00:00 PST,+4.1,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-04 18:00:00 PST,+3.1,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-02-04 19:00:00 PST,+3.6,+290,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-04 20:00:00 PST,+2.1,+260,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-02-04 21:00:00 PST,+1.5,+360,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-04 22:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-04 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 00:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 01:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-05 02:00:00 PST,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 03:00:00 PST,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-02-05 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 05:00:00 PST,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 06:00:00 PST,+1.5,+10,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-02-05 07:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-02-05 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 12:00:00 PST,+6.7,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 13:00:00 PST,+8.2,+50,+5,+270,+0.0528242,+3260.43,+61722.3,+887.122,OK,OK,+8,+180,+0.0239931,+1480.91,+61722.3,+1674.85,OK,OK
-2020-02-05 14:00:00 PST,+8.2,+70,+5,+270,+0.067652,+4175.63,+61722.3,+1305.3,OK,OK,+8,+180,+0.0393763,+2430.4,+61722.3,+2019.8,OK,OK
-2020-02-05 15:00:00 PST,+8.2,+70,+5,+270,+0.067652,+4175.63,+61722.3,+1305.3,OK,OK,+8,+180,+0.0393763,+2430.4,+61722.3,+2019.8,OK,OK
-2020-02-05 16:00:00 PST,+6.2,+40,+5,+270,+0.067652,+4175.63,+61722.3,+1305.3,OK,OK,+8,+180,+0.0393763,+2430.4,+61722.3,+2019.8,OK,OK
-2020-02-05 17:00:00 PST,+7.2,+40,+5,+270,+0.0439096,+2710.2,+61722.3,+647.666,OK,OK,+8,+180,+0.0135008,+833.3,+61722.3,+1648.78,OK,OK
-2020-02-05 18:00:00 PST,+5.7,+40,+5,+270,+0.0525192,+3241.6,+61722.3,+937.163,OK,OK,+8,+180,+0.0227769,+1405.84,+61722.3,+1837.45,OK,OK
-2020-02-05 19:00:00 PST,+2.6,+340,+5,+270,+0.0402947,+2487.08,+61722.3,+507.584,OK,OK,+8,+180,+0.00981506,+605.808,+61722.3,+1511.95,OK,OK
-2020-02-05 20:00:00 PST,+2.1,+280,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-02-05 21:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-05 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-05 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 00:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 01:00:00 PST,+2.1,+70,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-06 02:00:00 PST,+2.6,+70,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-02-06 03:00:00 PST,+1.5,+350,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-02-06 04:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-02-06 05:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 06:00:00 PST,+1.5,+360,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-06 07:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-06 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 10:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 11:00:00 PST,+3.6,+120,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-02-06 12:00:00 PST,+2.1,+150,+5,+270,+0.0285483,+1762.07,+61722.3,+5.70011,OK,OK,+8,+180,+0.0109622,+676.61,+61722.3,-65.7195,OK,OK
-2020-02-06 13:00:00 PST,+3.6,+70,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-02-06 14:00:00 PST,+0,+0,+5,+270,+0.0309501,+1910.31,+61722.3,+91.2469,OK,OK,+8,+180,+0.00835394,+515.624,+61722.3,-35.3365,OK,OK
-2020-02-06 15:00:00 PST,+5.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-06 16:00:00 PST,+4.1,+260,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-02-06 17:00:00 PST,+4.1,+270,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-02-06 18:00:00 PST,+4.1,+280,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-02-06 19:00:00 PST,+2.6,+300,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-02-06 20:00:00 PST,+2.1,+10,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-02-06 21:00:00 PST,+3.1,+50,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-02-06 22:00:00 PST,+2.1,+190,+5,+270,+0.0289646,+1787.76,+61722.3,-6.34541,OK,OK,+8,+180,+0.0108248,+668.132,+61722.3,-286.598,OK,OK
-2020-02-06 23:00:00 PST,+0,+0,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-02-07 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-07 01:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-07 02:00:00 PST,+0,+0,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-02-07 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-07 04:00:00 PST,+1.3,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-07 05:00:00 PST,+2.6,+150,+5,+270,+0.0260926,+1610.5,+61722.3,-61.7087,OK,OK,+8,+180,+0.0163762,+1010.78,+61722.3,-158.657,OK,OK
-2020-02-07 06:00:00 PST,+3.6,+160,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-02-07 07:00:00 PST,+3.1,+150,+5,+270,+0.0252305,+1557.28,+61722.3,+90.2961,OK,OK,+8,+180,+0.0170745,+1053.88,+61722.3,+216.119,OK,OK
-2020-02-07 08:00:00 PST,+4.1,+160,+5,+270,+0.0258361,+1594.67,+61722.3,+38.6937,OK,OK,+8,+180,+0.0159067,+981.798,+61722.3,+109.807,OK,OK
-2020-02-07 09:00:00 PST,+5.7,+170,+5,+270,+0.0251159,+1550.21,+61722.3,+95.6279,OK,OK,+8,+180,+0.0168843,+1042.14,+61722.3,+237.621,OK,OK
-2020-02-07 10:00:00 PST,+5.7,+120,+5,+270,+0.0232254,+1433.52,+61722.3,+301.085,OK,OK,+8,+180,+0.0206796,+1276.39,+61722.3,+483.664,OK,OK
-2020-02-07 11:00:00 PST,+6.7,+130,+5,+270,+0.0232254,+1433.52,+61722.3,+301.085,OK,OK,+8,+180,+0.0206796,+1276.39,+61722.3,+483.664,OK,OK
-2020-02-07 12:00:00 PST,+6.7,+110,+5,+270,+0.037959,+2342.92,+61722.3,+61.4261,OK,OK,+8,+180,+0.0119508,+737.63,+61722.3,+146.579,OK,OK
-2020-02-07 13:00:00 PST,+4.6,+90,+5,+270,+0.037959,+2342.92,+61722.3,+61.4261,OK,OK,+8,+180,+0.0119508,+737.63,+61722.3,+146.579,OK,OK
-2020-02-07 14:00:00 PST,+4.1,+140,+5,+270,+0.0352569,+2176.14,+61722.3,+234.089,OK,OK,+8,+180,+0.00778772,+480.675,+61722.3,+652.186,OK,OK
-2020-02-07 15:00:00 PST,+2.6,+110,+5,+270,+0.0272985,+1684.93,+61722.3,+2.63044,OK,OK,+8,+180,+0.0125681,+775.729,+61722.3,+32.5363,OK,OK
-2020-02-07 16:00:00 PST,+1.5,+180,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-02-07 17:00:00 PST,+2.6,+240,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-02-07 18:00:00 PST,+0,+0,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-02-07 19:00:00 PST,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-07 20:00:00 PST,+2.1,+360,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-02-07 21:00:00 PST,+2.1,+20,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-02-07 22:00:00 PST,+2.6,+120,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-02-07 23:00:00 PST,+1.5,+130,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-02-08 00:00:00 PST,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-02-08 01:00:00 PST,+3.6,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-08 02:00:00 PST,+3.6,+190,+5,+270,+0.0256202,+1581.34,+61722.3,+251.086,OK,OK,+8,+180,+0.0187689,+1158.46,+61722.3,+487.273,OK,OK
-2020-02-08 03:00:00 PST,+4.1,+330,+5,+270,+0.0256202,+1581.34,+61722.3,+251.086,OK,OK,+8,+180,+0.0187689,+1158.46,+61722.3,+487.273,OK,OK
-2020-02-08 04:00:00 PST,+1.5,+10,+5,+270,+0.0336414,+2076.42,+61722.3,-7.00638,OK,OK,+8,+180,+0.0070223,+433.432,+61722.3,-176.086,OK,OK
-2020-02-08 05:00:00 PST,+2.1,+170,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-02-08 06:00:00 PST,+0,+0,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-02-08 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-08 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-08 09:00:00 PST,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-08 10:00:00 PST,+2.1,+30,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-02-08 11:00:00 PST,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-02-08 12:00:00 PST,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-08 13:00:00 PST,+1.5,+330,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-02-08 14:00:00 PST,+4.1,+320,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-02-08 15:00:00 PST,+3.6,+300,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-02-08 16:00:00 PST,+5.1,+240,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-02-08 17:00:00 PST,+4.6,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-02-08 18:00:00 PST,+4.1,+260,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-02-08 19:00:00 PST,+4.1,+270,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-02-08 20:00:00 PST,+2.6,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-02-08 21:00:00 PST,+0,+0,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-02-08 22:00:00 PST,+2.6,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-08 23:00:00 PST,+1.5,+50,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-02-09 00:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-09 01:00:00 PST,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 02:00:00 PST,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-02-09 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 05:00:00 PST,+1.5,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 06:00:00 PST,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-02-09 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 14:00:00 PST,+2.1,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 15:00:00 PST,+2.1,+240,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-02-09 16:00:00 PST,+3.6,+310,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-02-09 17:00:00 PST,+4.6,+250,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-02-09 18:00:00 PST,+2.1,+280,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-02-09 19:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-09 20:00:00 PST,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-09 21:00:00 PST,+2.1,+80,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-02-09 22:00:00 PST,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-02-09 23:00:00 PST,+3.6,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-10 00:00:00 PST,+0,+0,+5,+270,+0.0294209,+1815.92,+61722.3,-1.85971,OK,OK,+8,+180,+0.0103427,+638.378,+61722.3,-323.207,OK,OK
-2020-02-10 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-10 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-10 03:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-10 04:00:00 PST,+2.6,+340,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-10 05:00:00 PST,+2.6,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-02-10 06:00:00 PST,+3.6,+40,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-02-10 07:00:00 PST,+1.5,+50,+5,+270,+0.0300375,+1853.98,+61722.3,+37.1879,OK,OK,+8,+180,+0.00941612,+581.184,+61722.3,-242.994,OK,OK
-2020-02-10 08:00:00 PST,+1.5,+260,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-10 09:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-10 10:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-10 11:00:00 PST,+3.6,+80,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-10 12:00:00 PST,+5.7,+130,+5,+270,+0.0308514,+1904.22,+61722.3,+84.979,OK,OK,+8,+180,+0.00845865,+522.087,+61722.3,-23.459,OK,OK
-2020-02-10 13:00:00 PST,+6.2,+120,+5,+270,+0.0333054,+2055.68,+61722.3,+35.3941,OK,OK,+8,+180,+0.0087431,+539.644,+61722.3,+79.4888,OK,OK
-2020-02-10 14:00:00 PST,+5.1,+110,+5,+270,+0.039297,+2425.5,+61722.3,+171.448,OK,OK,+8,+180,+0.012336,+761.408,+61722.3,+416.648,OK,OK
-2020-02-10 15:00:00 PST,+6.2,+70,+5,+270,+0.0355044,+2191.41,+61722.3,+171.199,OK,OK,+8,+180,+0.00862397,+532.291,+61722.3,+460.082,OK,OK
-2020-02-10 16:00:00 PST,+6.2,+120,+5,+270,+0.0486074,+3000.16,+61722.3,+722.269,OK,OK,+8,+180,+0.0198151,+1223.03,+61722.3,+1482.54,OK,OK
-2020-02-10 17:00:00 PST,+4.6,+120,+5,+270,+0.0486074,+3000.16,+61722.3,+722.269,OK,OK,+8,+180,+0.0198151,+1223.03,+61722.3,+1482.54,OK,OK
-2020-02-10 18:00:00 PST,+4.6,+100,+5,+270,+0.0314437,+1940.78,+61722.3,+55.6456,OK,OK,+8,+180,+0.00837906,+517.174,+61722.3,+71.9573,OK,OK
-2020-02-10 19:00:00 PST,+3.6,+100,+5,+270,+0.0314437,+1940.78,+61722.3,+55.6456,OK,OK,+8,+180,+0.00837906,+517.174,+61722.3,+71.9573,OK,OK
-2020-02-10 20:00:00 PST,+2.6,+90,+5,+270,+0.0300305,+1853.55,+61722.3,+47.1771,OK,OK,+8,+180,+0.00925676,+571.348,+61722.3,-59.7368,OK,OK
-2020-02-10 21:00:00 PST,+1.5,+90,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-02-10 22:00:00 PST,+2.1,+120,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-02-10 23:00:00 PST,+3.6,+90,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-02-11 00:00:00 PST,+2.6,+130,+5,+270,+0.0305399,+1884.99,+61722.3,+69.0667,OK,OK,+8,+180,+0.00875587,+540.432,+61722.3,-36.9228,OK,OK
-2020-02-11 01:00:00 PST,+2.1,+120,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-02-11 02:00:00 PST,+4.1,+80,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-02-11 03:00:00 PST,+4.6,+30,+5,+270,+0.0330613,+2040.62,+61722.3,+173.636,OK,OK,+8,+180,+0.00724334,+447.076,+61722.3,+344.607,OK,OK
-2020-02-11 04:00:00 PST,+5.1,+90,+5,+270,+0.0326882,+2017.59,+61722.3,+157.514,OK,OK,+8,+180,+0.00677626,+418.246,+61722.3,+130.665,OK,OK
-2020-02-11 05:00:00 PST,+3.6,+110,+5,+270,+0.0384259,+2371.74,+61722.3,+332.98,OK,OK,+8,+180,+0.0100257,+618.811,+61722.3,+920.889,OK,OK
-2020-02-11 06:00:00 PST,+4.6,+160,+5,+270,+0.0293525,+1811.7,+61722.3,+24.1491,OK,OK,+8,+180,+0.00998546,+616.325,+61722.3,-73.9578,OK,OK
-2020-02-11 07:00:00 PST,+4.1,+180,+5,+270,+0.0249941,+1542.69,+61722.3,+98.0319,OK,OK,+8,+180,+0.016679,+1029.47,+61722.3,+255.398,OK,OK
-2020-02-11 08:00:00 PST,+4.6,+160,+5,+270,+0.0239681,+1479.36,+61722.3,+318.11,OK,OK,+8,+180,+0.0216788,+1338.07,+61722.3,+474.009,OK,OK
-2020-02-11 09:00:00 PST,+5.1,+160,+5,+270,+0.0249941,+1542.69,+61722.3,+98.0319,OK,OK,+8,+180,+0.016679,+1029.47,+61722.3,+255.398,OK,OK
-2020-02-11 10:00:00 PST,+5.1,+160,+5,+270,+0.024868,+1534.91,+61722.3,+97.0872,OK,OK,+8,+180,+0.0164626,+1016.11,+61722.3,+268.743,OK,OK
-2020-02-11 11:00:00 PST,+6.7,+160,+5,+270,+0.024868,+1534.91,+61722.3,+97.0872,OK,OK,+8,+180,+0.0164626,+1016.11,+61722.3,+268.743,OK,OK
-2020-02-11 12:00:00 PST,+5.1,+130,+5,+270,+0.0244765,+1510.74,+61722.3,+66.4476,OK,OK,+8,+180,+0.0157544,+972.395,+61722.3,+271.996,OK,OK
-2020-02-11 13:00:00 PST,+7.2,+140,+5,+270,+0.0311612,+1923.34,+61722.3,+21.7708,OK,OK,+8,+180,+0.00874172,+539.558,+61722.3,+28.5942,OK,OK
-2020-02-11 14:00:00 PST,+7.2,+150,+5,+270,+0.0348633,+2151.84,+61722.3,-59.0644,OK,OK,+8,+180,+0.0107344,+662.553,+61722.3,-134.265,OK,OK
-2020-02-11 15:00:00 PST,+6.7,+140,+5,+270,+0.0348633,+2151.84,+61722.3,-59.0644,OK,OK,+8,+180,+0.0107344,+662.553,+61722.3,-134.265,OK,OK
-2020-02-11 16:00:00 PST,+4.6,+170,+5,+270,+0.0330309,+2038.74,+61722.3,-45.7974,OK,OK,+8,+180,+0.00964142,+595.09,+61722.3,-97.7556,OK,OK
-2020-02-11 17:00:00 PST,+6.2,+150,+5,+270,+0.0240592,+1484.99,+61722.3,+224.356,OK,OK,+8,+180,+0.019661,+1213.52,+61722.3,+398.209,OK,OK
-2020-02-11 18:00:00 PST,+6.2,+140,+5,+270,+0.0276641,+1707.49,+61722.3,-36.6765,OK,OK,+8,+180,+0.0116085,+716.503,+61722.3,+44.3711,OK,OK
-2020-02-11 19:00:00 PST,+7.2,+140,+5,+270,+0.0276641,+1707.49,+61722.3,-36.6765,OK,OK,+8,+180,+0.0116085,+716.503,+61722.3,+44.3711,OK,OK
-2020-02-11 20:00:00 PST,+4.6,+140,+5,+270,+0.0348633,+2151.84,+61722.3,-59.0644,OK,OK,+8,+180,+0.0107344,+662.553,+61722.3,-134.265,OK,OK
-2020-02-11 21:00:00 PST,+3.6,+160,+5,+270,+0.0279701,+1726.38,+61722.3,-3.31815,OK,OK,+8,+180,+0.0114727,+708.121,+61722.3,+25.0569,OK,OK
-2020-02-11 22:00:00 PST,+4.1,+160,+5,+270,+0.0252305,+1557.28,+61722.3,+90.2961,OK,OK,+8,+180,+0.0170745,+1053.88,+61722.3,+216.119,OK,OK
-2020-02-11 23:00:00 PST,+3.1,+130,+5,+270,+0.0251159,+1550.21,+61722.3,+95.6279,OK,OK,+8,+180,+0.0168843,+1042.14,+61722.3,+237.621,OK,OK
-2020-02-12 00:00:00 PST,+4.1,+110,+5,+270,+0.0269959,+1666.25,+61722.3,-6.16996,OK,OK,+8,+180,+0.0135157,+834.219,+61722.3,-31.0839,OK,OK
-2020-02-12 01:00:00 PST,+2.1,+100,+5,+270,+0.0309674,+1911.38,+61722.3,+64.9306,OK,OK,+8,+180,+0.0084957,+524.374,+61722.3,+40.9733,OK,OK
-2020-02-12 02:00:00 PST,+2.1,+90,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-02-12 03:00:00 PST,+3.6,+110,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-02-12 04:00:00 PST,+2.6,+80,+5,+270,+0.0293525,+1811.7,+61722.3,+24.1491,OK,OK,+8,+180,+0.00998546,+616.325,+61722.3,-73.9578,OK,OK
-2020-02-12 05:00:00 PST,+2.1,+130,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-02-12 06:00:00 PST,+0,+0,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-12 07:00:00 PST,+2.6,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-12 08:00:00 PST,+1.5,+140,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-02-12 09:00:00 PST,+2.6,+100,+5,+270,+0.0257853,+1591.53,+61722.3,+8.35746,OK,OK,+8,+180,+0.017014,+1050.14,+61722.3,+19.783,OK,OK
-2020-02-12 10:00:00 PST,+3.1,+110,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-02-12 11:00:00 PST,+7.7,+60,+5,+270,+0.0281181,+1735.51,+61722.3,-6.45008,OK,OK,+8,+180,+0.0117186,+723.298,+61722.3,-121.029,OK,OK
-2020-02-12 12:00:00 PST,+7.2,+90,+5,+270,+0.0643505,+3971.86,+61722.3,+1174.79,OK,OK,+8,+180,+0.0363023,+2240.66,+61722.3,+1863.99,OK,OK
-2020-02-12 13:00:00 PST,+4.1,+70,+5,+270,+0.0578388,+3569.94,+61722.3,+786.105,OK,OK,+8,+180,+0.0305059,+1882.89,+61722.3,+1314.92,OK,OK
-2020-02-12 14:00:00 PST,+7.7,+50,+5,+270,+0.033178,+2047.82,+61722.3,+188.026,OK,OK,+8,+180,+0.00707141,+436.463,+61722.3,+374.738,OK,OK
-2020-02-12 15:00:00 PST,+4.6,+90,+5,+270,+0.0615669,+3800.05,+61722.3,+1160.03,OK,OK,+8,+180,+0.0329439,+2033.37,+61722.3,+1921.97,OK,OK
-2020-02-12 16:00:00 PST,+4.1,+40,+5,+270,+0.0352569,+2176.14,+61722.3,+234.089,OK,OK,+8,+180,+0.00778772,+480.675,+61722.3,+652.186,OK,OK
-2020-02-12 17:00:00 PST,+0,+0,+5,+270,+0.0317927,+1962.32,+61722.3,+123.348,OK,OK,+8,+180,+0.00754237,+465.532,+61722.3,+1.60479,OK,OK
-2020-02-12 18:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-12 19:00:00 PST,+5.7,+90,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-02-12 20:00:00 PST,+4.1,+100,+5,+270,+0.0429704,+2652.23,+61722.3,+459.455,OK,OK,+8,+180,+0.0145263,+896.598,+61722.3,+1080.57,OK,OK
-2020-02-12 21:00:00 PST,+2.1,+50,+5,+270,+0.0319259,+1970.54,+61722.3,+106.518,OK,OK,+8,+180,+0.00787098,+485.815,+61722.3,+144.351,OK,OK
-2020-02-12 22:00:00 PST,+2.6,+30,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-02-12 23:00:00 PST,+1.5,+20,+5,+270,+0.0273706,+1689.38,+61722.3,-82.9282,OK,OK,+8,+180,+0.0137729,+850.096,+61722.3,-335.303,OK,OK
-2020-02-13 00:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-02-13 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-13 02:00:00 PST,+2.1,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-13 03:00:00 PST,+1.5,+100,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-02-13 04:00:00 PST,+1.5,+90,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-02-13 05:00:00 PST,+1.5,+130,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-02-13 06:00:00 PST,+1.5,+160,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-02-13 07:00:00 PST,+2.6,+140,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-02-13 08:00:00 PST,+1.5,+110,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-02-13 09:00:00 PST,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-02-13 10:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-13 11:00:00 PST,+0,+0,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-02-13 12:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-13 13:00:00 PST,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-02-13 14:00:00 PST,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-13 15:00:00 PST,+2.1,+190,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-13 16:00:00 PST,+0,+0,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-02-13 17:00:00 PST,+3.6,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-13 18:00:00 PST,+2.6,+240,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-02-13 19:00:00 PST,+3.1,+240,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-02-13 20:00:00 PST,+3.1,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-13 21:00:00 PST,+3.1,+280,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-13 22:00:00 PST,+3.1,+310,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-13 23:00:00 PST,+1.5,+270,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-14 00:00:00 PST,+1.5,+250,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-14 01:00:00 PST,+2.1,+220,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-14 02:00:00 PST,+0,+0,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-02-14 03:00:00 PST,+2.1,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-14 04:00:00 PST,+2.1,+300,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-02-14 05:00:00 PST,+1.5,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-02-14 06:00:00 PST,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-14 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-14 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-14 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-14 10:00:00 PST,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-14 11:00:00 PST,+1.5,+240,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-02-14 12:00:00 PST,+2.6,+270,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-02-14 13:00:00 PST,+2.9,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-02-14 14:00:00 PST,+3.1,+260,+5,+270,+0.0313713,+1936.31,+61722.3,+57.3806,OK,OK,+8,+180,+0.0104224,+643.297,+61722.3,+356.747,OK,OK
-2020-02-14 15:00:00 PST,+5.1,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-02-14 16:00:00 PST,+6.2,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-02-14 17:00:00 PST,+5.7,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-02-14 18:00:00 PST,+5.1,+250,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-02-14 19:00:00 PST,+3.1,+300,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-02-14 20:00:00 PST,+3.1,+300,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-02-14 21:00:00 PST,+3.1,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-02-14 22:00:00 PST,+3.6,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-02-14 23:00:00 PST,+2.1,+300,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-02-15 00:00:00 PST,+2.1,+70,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-02-15 01:00:00 PST,+0,+0,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-02-15 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 03:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 04:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-02-15 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 07:00:00 PST,+2.6,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 08:00:00 PST,+2.6,+100,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-02-15 09:00:00 PST,+2.1,+290,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-02-15 10:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-02-15 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 12:00:00 PST,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 13:00:00 PST,+2.6,+310,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-02-15 14:00:00 PST,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-02-15 15:00:00 PST,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 16:00:00 PST,+3.6,+260,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-02-15 17:00:00 PST,+3.1,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-02-15 18:00:00 PST,+2.6,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-15 19:00:00 PST,+0,+0,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-02-15 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 21:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-15 22:00:00 PST,+4.1,+310,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-02-15 23:00:00 PST,+1.5,+320,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-02-16 00:00:00 PST,+1.5,+270,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-02-16 01:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-02-16 02:00:00 PST,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-16 03:00:00 PST,+1.5,+110,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-02-16 04:00:00 PST,+2.1,+270,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-02-16 05:00:00 PST,+2.1,+330,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-02-16 06:00:00 PST,+1.5,+50,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-02-16 07:00:00 PST,+2.1,+230,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-16 08:00:00 PST,+0,+0,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-02-16 09:00:00 PST,+2.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-16 10:00:00 PST,+0,+0,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-02-16 11:00:00 PST,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-16 12:00:00 PST,+2.4,+320,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-02-16 13:00:00 PST,+2.3,+300,+5,+270,+0.0286709,+1769.63,+61722.3,-9.01337,OK,OK,+8,+180,+0.0134985,+833.156,+61722.3,-33.5733,OK,OK
-2020-02-16 14:00:00 PST,+2.1,+280,+5,+270,+0.0290356,+1792.14,+61722.3,+24.8324,OK,OK,+8,+180,+0.0131406,+811.066,+61722.3,+97.0639,OK,OK
-2020-02-16 15:00:00 PST,+2.1,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-16 16:00:00 PST,+2.1,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-16 17:00:00 PST,+2.1,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-16 18:00:00 PST,+1.5,+240,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-16 19:00:00 PST,+2.6,+280,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-02-16 20:00:00 PST,+2.6,+280,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-16 21:00:00 PST,+2.6,+290,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-16 22:00:00 PST,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-16 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 10:00:00 PST,+2.1,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 11:00:00 PST,+4.6,+240,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-02-17 12:00:00 PST,+3.1,+270,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-02-17 13:00:00 PST,+3.1,+240,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-17 14:00:00 PST,+4.1,+250,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-17 15:00:00 PST,+5.1,+240,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-02-17 16:00:00 PST,+2.6,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-02-17 17:00:00 PST,+1.5,+270,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-02-17 18:00:00 PST,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-17 19:00:00 PST,+2.1,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-17 20:00:00 PST,+2.1,+240,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-02-17 21:00:00 PST,+2.1,+260,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-02-17 22:00:00 PST,+2.1,+260,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-02-17 23:00:00 PST,+1.5,+260,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-02-18 00:00:00 PST,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-02-18 01:00:00 PST,+2.6,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 02:00:00 PST,+1.5,+10,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-02-18 03:00:00 PST,+2.1,+280,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-02-18 04:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-02-18 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 07:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 08:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-02-18 09:00:00 PST,+2.1,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 10:00:00 PST,+2.1,+20,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-02-18 11:00:00 PST,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-02-18 12:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 13:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-02-18 14:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 15:00:00 PST,+1.5,+310,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-18 16:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-02-18 17:00:00 PST,+3.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-18 18:00:00 PST,+2.1,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-02-18 19:00:00 PST,+2.1,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-02-18 20:00:00 PST,+2.1,+310,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-02-18 21:00:00 PST,+1.5,+320,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-02-18 22:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-02-18 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 00:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 01:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-02-19 02:00:00 PST,+2.1,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 03:00:00 PST,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-02-19 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 11:00:00 PST,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 12:00:00 PST,+3.6,+250,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-02-19 13:00:00 PST,+4.6,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-02-19 14:00:00 PST,+5.7,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-02-19 15:00:00 PST,+5.7,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-19 16:00:00 PST,+6.2,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-19 17:00:00 PST,+7.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-02-19 18:00:00 PST,+4.6,+270,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-02-19 19:00:00 PST,+7.2,+280,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-02-19 20:00:00 PST,+2.1,+260,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-02-19 21:00:00 PST,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-19 22:00:00 PST,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-19 23:00:00 PST,+3.1,+270,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-02-20 00:00:00 PST,+3.1,+270,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-20 01:00:00 PST,+3.6,+260,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-20 02:00:00 PST,+2.6,+200,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-02-20 03:00:00 PST,+1.5,+170,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-02-20 04:00:00 PST,+1.5,+110,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-02-20 05:00:00 PST,+2.6,+180,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-02-20 06:00:00 PST,+0,+0,+5,+270,+0.0249181,+1538,+61722.3,+160.608,OK,OK,+8,+180,+0.0193397,+1193.69,+61722.3,+294.387,OK,OK
-2020-02-20 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-20 08:00:00 PST,+2.1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-20 09:00:00 PST,+1.5,+200,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-02-20 10:00:00 PST,+7.7,+200,+5,+270,+0.0258978,+1598.47,+61722.3,+98.4989,OK,OK,+8,+180,+0.0175856,+1085.42,+61722.3,+216.45,OK,OK
-2020-02-20 11:00:00 PST,+5.7,+250,+5,+270,+0.0319203,+1970.19,+61722.3,+434.304,OK,OK,+8,+180,+0.0135224,+834.631,+61722.3,+1501.13,OK,OK
-2020-02-20 12:00:00 PST,+2.1,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-20 13:00:00 PST,+3.1,+270,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-20 14:00:00 PST,+2.6,+280,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-20 15:00:00 PST,+3.6,+290,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-20 16:00:00 PST,+3.1,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-02-20 17:00:00 PST,+2.1,+270,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-02-20 18:00:00 PST,+2.6,+250,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-02-20 19:00:00 PST,+2.1,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-02-20 20:00:00 PST,+1.1,+310,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-20 21:00:00 PST,+0,+0,+5,+270,+0.0263413,+1625.85,+61722.3,+6.28709,OK,OK,+8,+180,+0.0167759,+1035.45,+61722.3,+15.1597,OK,OK
-2020-02-20 22:00:00 PST,+2.1,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-20 23:00:00 PST,+0,+0,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-02-21 00:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-21 01:00:00 PST,+1.5,+210,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-02-21 02:00:00 PST,+1.5,+10,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-02-21 03:00:00 PST,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-02-21 04:00:00 PST,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-21 05:00:00 PST,+2.6,+190,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-02-21 06:00:00 PST,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-02-21 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-21 08:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-21 09:00:00 PST,+2.1,+50,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-02-21 10:00:00 PST,+2.1,+20,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-02-21 11:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-02-21 12:00:00 PST,+3.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-21 13:00:00 PST,+2.6,+270,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-02-21 14:00:00 PST,+3.6,+230,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-02-21 15:00:00 PST,+6.2,+270,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-02-21 16:00:00 PST,+5.1,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-02-21 17:00:00 PST,+3.6,+260,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-02-21 18:00:00 PST,+3.1,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-02-21 19:00:00 PST,+3.6,+300,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-02-21 20:00:00 PST,+3.1,+320,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-02-21 21:00:00 PST,+0,+0,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-02-21 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-21 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 00:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 01:00:00 PST,+1.5,+160,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-02-22 02:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-02-22 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 05:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 06:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-02-22 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 13:00:00 PST,+2.3,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-22 14:00:00 PST,+4.6,+250,+5,+270,+0.0287733,+1775.95,+61722.3,+8.63675,OK,OK,+8,+180,+0.0134275,+828.775,+61722.3,+32.4073,OK,OK
-2020-02-22 15:00:00 PST,+4.8,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-02-22 16:00:00 PST,+4.9,+250,+5,+270,+0.0401328,+2477.09,+61722.3,-36.0085,OK,OK,+8,+180,+0.002483,+153.257,+61722.3,+1081.92,OK,OK
-2020-02-22 17:00:00 PST,+5.1,+250,+5,+270,+0.0407931,+2517.84,+61722.3,-46.2664,OK,OK,+8,+180,+0.00251391,+155.164,+61722.3,+928.892,OK,OK
-2020-02-22 18:00:00 PST,+3.1,+270,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-02-22 19:00:00 PST,+2.6,+310,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-02-22 20:00:00 PST,+4.1,+310,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-02-22 21:00:00 PST,+3.1,+290,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-02-22 22:00:00 PST,+0,+0,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-02-22 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 02:00:00 PST,+2.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 03:00:00 PST,+1.5,+300,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-02-23 04:00:00 PST,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-02-23 05:00:00 PST,+1.5,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 06:00:00 PST,+0.8,+80,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-02-23 07:00:00 PST,+0,+0,+5,+270,+0.0258146,+1593.34,+61722.3,-44.0624,OK,OK,+8,+180,+0.0172391,+1064.04,+61722.3,-101.151,OK,OK
-2020-02-23 08:00:00 PST,+1.3,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 09:00:00 PST,+2.6,+170,+5,+270,+0.026062,+1608.61,+61722.3,-53.6085,OK,OK,+8,+180,+0.0164236,+1013.7,+61722.3,-136.996,OK,OK
-2020-02-23 10:00:00 PST,+0,+0,+5,+270,+0.0251436,+1551.92,+61722.3,+114.327,OK,OK,+8,+180,+0.0183721,+1133.97,+61722.3,+231.38,OK,OK
-2020-02-23 11:00:00 PST,+2.1,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-23 12:00:00 PST,+2.6,+320,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-02-23 13:00:00 PST,+3.6,+290,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-02-23 14:00:00 PST,+4.1,+280,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-02-23 15:00:00 PST,+5.1,+260,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-02-23 16:00:00 PST,+4.6,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-02-23 17:00:00 PST,+4.6,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-02-23 18:00:00 PST,+3.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-02-23 19:00:00 PST,+3.1,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-02-23 20:00:00 PST,+2.1,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-02-23 21:00:00 PST,+2.1,+330,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-02-23 22:00:00 PST,+1.5,+350,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-02-23 23:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-02-24 00:00:00 PST,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-24 01:00:00 PST,+1.5,+340,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-02-24 02:00:00 PST,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-02-24 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-24 04:00:00 PST,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-24 05:00:00 PST,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-02-24 06:00:00 PST,+1.5,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-24 07:00:00 PST,+0,+0,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-02-24 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-24 09:00:00 PST,+2.1,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-24 10:00:00 PST,+2.6,+160,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-24 11:00:00 PST,+3.1,+190,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-02-24 12:00:00 PST,+3.6,+210,+5,+270,+0.0256253,+1581.65,+61722.3,+208.246,OK,OK,+8,+180,+0.0185083,+1142.37,+61722.3,+414.665,OK,OK
-2020-02-24 13:00:00 PST,+4.1,+240,+5,+270,+0.0284695,+1757.2,+61722.3,+196.894,OK,OK,+8,+180,+0.0147251,+908.864,+61722.3,+599.505,OK,OK
-2020-02-24 14:00:00 PST,+5.1,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-02-24 15:00:00 PST,+4.6,+220,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-02-24 16:00:00 PST,+6.7,+220,+5,+270,+0.0327121,+2019.06,+61722.3,+139.369,OK,OK,+8,+180,+0.0097878,+604.125,+61722.3,+903.063,OK,OK
-2020-02-24 17:00:00 PST,+7.2,+230,+5,+270,+0.0412492,+2545.99,+61722.3,+1.8067,OK,OK,+8,+180,+0.00411859,+254.209,+61722.3,+1550.59,OK,OK
-2020-02-24 18:00:00 PST,+5.1,+240,+5,+270,+0.0500548,+3089.49,+61722.3,-189.205,OK,OK,+8,+180,+0.0106556,+657.689,+61722.3,-241.617,OK,OK
-2020-02-24 19:00:00 PST,+4.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-02-24 20:00:00 PST,+2.6,+180,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-02-24 21:00:00 PST,+2.1,+120,+5,+270,+0.0249181,+1538,+61722.3,+160.608,OK,OK,+8,+180,+0.0193397,+1193.69,+61722.3,+294.387,OK,OK
-2020-02-24 22:00:00 PST,+0,+0,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-02-24 23:00:00 PST,+2.6,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-25 00:00:00 PST,+2.6,+100,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-02-25 01:00:00 PST,+2.1,+10,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-02-25 02:00:00 PST,+2.6,+40,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-02-25 03:00:00 PST,+3.1,+50,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-02-25 04:00:00 PST,+4.1,+70,+5,+270,+0.0289646,+1787.76,+61722.3,-6.34541,OK,OK,+8,+180,+0.0108248,+668.132,+61722.3,-286.598,OK,OK
-2020-02-25 05:00:00 PST,+3.6,+60,+5,+270,+0.033178,+2047.82,+61722.3,+188.026,OK,OK,+8,+180,+0.00707141,+436.463,+61722.3,+374.738,OK,OK
-2020-02-25 06:00:00 PST,+5.1,+60,+5,+270,+0.0308357,+1903.25,+61722.3,+85.5835,OK,OK,+8,+180,+0.00845452,+521.832,+61722.3,-80.5566,OK,OK
-2020-02-25 07:00:00 PST,+5.7,+80,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-02-25 08:00:00 PST,+5.1,+80,+5,+270,+0.0438667,+2707.55,+61722.3,+537.507,OK,OK,+8,+180,+0.0150906,+931.427,+61722.3,+1251.3,OK,OK
-2020-02-25 09:00:00 PST,+4.1,+60,+5,+270,+0.039127,+2415.01,+61722.3,+391.78,OK,OK,+8,+180,+0.010298,+635.614,+61722.3,+1087.22,OK,OK
-2020-02-25 10:00:00 PST,+6.7,+100,+5,+270,+0.0329882,+2036.11,+61722.3,+184.94,OK,OK,+8,+180,+0.00698934,+431.398,+61722.3,+326.629,OK,OK
-2020-02-25 11:00:00 PST,+3.1,+120,+5,+270,+0.0500122,+3086.86,+61722.3,+537.024,OK,OK,+8,+180,+0.022514,+1389.61,+61722.3,+1017.35,OK,OK
-2020-02-25 12:00:00 PST,+5.1,+60,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-02-25 13:00:00 PST,+2.6,+70,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-02-25 14:00:00 PST,+3.1,+80,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-02-25 15:00:00 PST,+3.1,+140,+5,+270,+0.0291389,+1798.52,+61722.3,+15.279,OK,OK,+8,+180,+0.0103961,+641.671,+61722.3,-188.7,OK,OK
-2020-02-25 16:00:00 PST,+3.6,+190,+5,+270,+0.0291389,+1798.52,+61722.3,+15.279,OK,OK,+8,+180,+0.0103961,+641.671,+61722.3,-188.7,OK,OK
-2020-02-25 17:00:00 PST,+4.1,+280,+5,+270,+0.0256202,+1581.34,+61722.3,+251.086,OK,OK,+8,+180,+0.0187689,+1158.46,+61722.3,+487.273,OK,OK
-2020-02-25 18:00:00 PST,+2.6,+280,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-02-25 19:00:00 PST,+2.6,+250,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-25 20:00:00 PST,+3.6,+230,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-02-25 21:00:00 PST,+3.6,+260,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-02-25 22:00:00 PST,+2.1,+210,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-02-25 23:00:00 PST,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-02-26 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-26 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-26 02:00:00 PST,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-26 03:00:00 PST,+1.5,+90,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-02-26 04:00:00 PST,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-02-26 05:00:00 PST,+2.1,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-26 06:00:00 PST,+3.1,+210,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-02-26 07:00:00 PST,+0,+0,+5,+270,+0.0277338,+1711.79,+61722.3,+181.303,OK,OK,+8,+180,+0.0155038,+956.931,+61722.3,+503.139,OK,OK
-2020-02-26 08:00:00 PST,+2.1,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-26 09:00:00 PST,+2.1,+30,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-26 10:00:00 PST,+2.1,+40,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-26 11:00:00 PST,+4.1,+310,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-26 12:00:00 PST,+7.2,+240,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-02-26 13:00:00 PST,+6.2,+230,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-02-26 14:00:00 PST,+5.7,+230,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-02-26 15:00:00 PST,+5.1,+240,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-02-26 16:00:00 PST,+6.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-02-26 17:00:00 PST,+5.1,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-02-26 18:00:00 PST,+5.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-02-26 19:00:00 PST,+4.1,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-02-26 20:00:00 PST,+3.1,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-02-26 21:00:00 PST,+3.1,+290,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-02-26 22:00:00 PST,+0,+0,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-02-26 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-27 00:00:00 PST,+3.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-27 01:00:00 PST,+4.6,+240,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-02-27 02:00:00 PST,+3.1,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-02-27 03:00:00 PST,+2.1,+260,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-27 04:00:00 PST,+4.6,+220,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-02-27 05:00:00 PST,+2.6,+290,+5,+270,+0.0327121,+2019.06,+61722.3,+139.369,OK,OK,+8,+180,+0.0097878,+604.125,+61722.3,+903.063,OK,OK
-2020-02-27 06:00:00 PST,+3.6,+270,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-02-27 07:00:00 PST,+1.5,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-02-27 08:00:00 PST,+2.1,+220,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-27 09:00:00 PST,+2.6,+220,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-02-27 10:00:00 PST,+3.6,+220,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-02-27 11:00:00 PST,+3.6,+190,+5,+270,+0.0298938,+1845.11,+61722.3,+160.135,OK,OK,+8,+180,+0.0128178,+791.145,+61722.3,+633.657,OK,OK
-2020-02-27 12:00:00 PST,+2.1,+230,+5,+270,+0.0298938,+1845.11,+61722.3,+160.135,OK,OK,+8,+180,+0.0128178,+791.145,+61722.3,+633.657,OK,OK
-2020-02-27 13:00:00 PST,+2.6,+190,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-02-27 14:00:00 PST,+3.6,+250,+5,+270,+0.0256327,+1582.11,+61722.3,+168.955,OK,OK,+8,+180,+0.0182878,+1128.76,+61722.3,+344.148,OK,OK
-2020-02-27 15:00:00 PST,+5.1,+220,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-02-27 16:00:00 PST,+5.7,+250,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-02-27 17:00:00 PST,+5.7,+240,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-27 18:00:00 PST,+3.1,+230,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-27 19:00:00 PST,+4.1,+240,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-02-27 20:00:00 PST,+3.1,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-02-27 21:00:00 PST,+0,+0,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-02-27 22:00:00 PST,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-27 23:00:00 PST,+2.1,+270,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-28 00:00:00 PST,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-02-28 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 04:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 05:00:00 PST,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-02-28 06:00:00 PST,+2.1,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 07:00:00 PST,+0,+0,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-02-28 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 09:00:00 PST,+0.8,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 10:00:00 PST,+1.5,+360,+5,+270,+0.0257357,+1588.46,+61722.3,-40.5149,OK,OK,+8,+180,+0.0176212,+1087.62,+61722.3,-88.832,OK,OK
-2020-02-28 11:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-28 12:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 13:00:00 PST,+1.5,+360,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-28 14:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-02-28 15:00:00 PST,+3.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-28 16:00:00 PST,+3.1,+250,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-02-28 17:00:00 PST,+5.7,+250,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-02-28 18:00:00 PST,+4.6,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-02-28 19:00:00 PST,+3.6,+240,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-02-28 20:00:00 PST,+3.1,+240,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-02-28 21:00:00 PST,+1.5,+270,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-02-28 22:00:00 PST,+1.3,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-02-28 23:00:00 PST,+1.1,+0,+5,+270,+0.0258592,+1596.09,+61722.3,-63.8396,OK,OK,+8,+180,+0.0173776,+1072.59,+61722.3,-143.901,OK,OK
-2020-02-29 00:00:00 PST,+0.9,+0,+5,+270,+0.0258025,+1592.59,+61722.3,-54.7891,OK,OK,+8,+180,+0.017489,+1079.46,+61722.3,-121.938,OK,OK
-2020-02-29 01:00:00 PST,+0.6,+0,+5,+270,+0.0257555,+1589.69,+61722.3,-45.3548,OK,OK,+8,+180,+0.0175817,+1085.18,+61722.3,-99.886,OK,OK
-2020-02-29 02:00:00 PST,+0.4,+0,+5,+270,+0.025703,+1586.45,+61722.3,-30.6331,OK,OK,+8,+180,+0.0176861,+1091.63,+61722.3,-66.6785,OK,OK
-2020-02-29 03:00:00 PST,+0.2,+0,+5,+270,+0.0256798,+1585.02,+61722.3,-20.5399,OK,OK,+8,+180,+0.0177325,+1094.49,+61722.3,-44.4781,OK,OK
-2020-02-29 04:00:00 PST,+0,+0,+5,+270,+0.0256659,+1584.16,+61722.3,-10.3053,OK,OK,+8,+180,+0.0177604,+1096.21,+61722.3,-22.2468,OK,OK
-2020-02-29 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-29 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-29 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-29 08:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-02-29 09:00:00 PST,+1.5,+200,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-02-29 10:00:00 PST,+1.5,+200,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-02-29 11:00:00 PST,+2.6,+190,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-02-29 12:00:00 PST,+1.5,+240,+5,+270,+0.0256327,+1582.11,+61722.3,+168.955,OK,OK,+8,+180,+0.0182878,+1128.76,+61722.3,+344.148,OK,OK
-2020-02-29 13:00:00 PST,+2.6,+250,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-02-29 14:00:00 PST,+3.6,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-02-29 15:00:00 PST,+3.9,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-02-29 16:00:00 PST,+4.3,+260,+5,+270,+0.0358447,+2212.42,+61722.3,+19.6376,OK,OK,+8,+180,+0.00546672,+337.418,+61722.3,+679.936,OK,OK
-2020-02-29 17:00:00 PST,+4.6,+260,+5,+270,+0.038239,+2360.2,+61722.3,-12.5143,OK,OK,+8,+180,+0.00316894,+195.594,+61722.3,+902.04,OK,OK
-2020-02-29 18:00:00 PST,+3.1,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-02-29 19:00:00 PST,+3.1,+270,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-02-29 20:00:00 PST,+3.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-02-29 21:00:00 PST,+2.1,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-02-29 22:00:00 PST,+2.6,+260,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-02-29 23:00:00 PST,+1.5,+30,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-01 00:00:00 PST,+0.9,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-01 01:00:00 PST,+0.6,+0,+5,+270,+0.0257555,+1589.69,+61722.3,-45.3548,OK,OK,+8,+180,+0.0175817,+1085.18,+61722.3,-99.886,OK,OK
-2020-03-01 02:00:00 PST,+0.4,+0,+5,+270,+0.025703,+1586.45,+61722.3,-30.6331,OK,OK,+8,+180,+0.0176861,+1091.63,+61722.3,-66.6785,OK,OK
-2020-03-01 03:00:00 PST,+0.2,+0,+5,+270,+0.0256798,+1585.02,+61722.3,-20.5399,OK,OK,+8,+180,+0.0177325,+1094.49,+61722.3,-44.4781,OK,OK
-2020-03-01 04:00:00 PST,+0,+0,+5,+270,+0.0256659,+1584.16,+61722.3,-10.3053,OK,OK,+8,+180,+0.0177604,+1096.21,+61722.3,-22.2468,OK,OK
-2020-03-01 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-01 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-01 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-01 08:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-01 09:00:00 PST,+1.5,+200,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-03-01 10:00:00 PST,+1.5,+200,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-03-01 11:00:00 PST,+2.6,+190,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-03-01 12:00:00 PST,+1.5,+240,+5,+270,+0.0256327,+1582.11,+61722.3,+168.955,OK,OK,+8,+180,+0.0182878,+1128.76,+61722.3,+344.148,OK,OK
-2020-03-01 13:00:00 PST,+2.6,+250,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-01 14:00:00 PST,+3.6,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-03-01 15:00:00 PST,+3.9,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-03-01 16:00:00 PST,+4.3,+260,+5,+270,+0.0358447,+2212.42,+61722.3,+19.6376,OK,OK,+8,+180,+0.00546672,+337.418,+61722.3,+679.936,OK,OK
-2020-03-01 17:00:00 PST,+4.6,+260,+5,+270,+0.038239,+2360.2,+61722.3,-12.5143,OK,OK,+8,+180,+0.00316894,+195.594,+61722.3,+902.04,OK,OK
-2020-03-01 18:00:00 PST,+3.1,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-01 19:00:00 PST,+3.1,+270,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-03-01 20:00:00 PST,+3.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-03-01 21:00:00 PST,+2.1,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-03-01 22:00:00 PST,+2.6,+260,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-03-01 23:00:00 PST,+1.5,+30,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-02 00:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-02 01:00:00 PST,+2.6,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-02 02:00:00 PST,+1.5,+20,+5,+270,+0.0251436,+1551.92,+61722.3,+114.327,OK,OK,+8,+180,+0.0183721,+1133.97,+61722.3,+231.38,OK,OK
-2020-03-02 03:00:00 PST,+2.6,+350,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-03-02 04:00:00 PST,+1.5,+160,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-03-02 05:00:00 PST,+1.5,+170,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-03-02 06:00:00 PST,+1.5,+180,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-03-02 07:00:00 PST,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-03-02 08:00:00 PST,+2.1,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-02 09:00:00 PST,+5.7,+80,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-03-02 10:00:00 PST,+6.7,+50,+5,+270,+0.0438667,+2707.55,+61722.3,+537.507,OK,OK,+8,+180,+0.0150906,+931.427,+61722.3,+1251.3,OK,OK
-2020-03-02 11:00:00 PST,+6.2,+70,+5,+270,+0.0508605,+3139.23,+61722.3,+865.431,OK,OK,+8,+180,+0.0214626,+1324.72,+61722.3,+1732.38,OK,OK
-2020-03-02 12:00:00 PST,+7.2,+60,+5,+270,+0.0486074,+3000.16,+61722.3,+722.269,OK,OK,+8,+180,+0.0198151,+1223.03,+61722.3,+1482.54,OK,OK
-2020-03-02 13:00:00 PST,+6.7,+70,+5,+270,+0.058325,+3599.95,+61722.3,+1031.65,OK,OK,+8,+180,+0.0298986,+1845.41,+61722.3,+1768.63,OK,OK
-2020-03-02 14:00:00 PST,+4.6,+80,+5,+270,+0.0537577,+3318.05,+61722.3,+859.639,OK,OK,+8,+180,+0.0253759,+1566.26,+61722.3,+1573.19,OK,OK
-2020-03-02 15:00:00 PST,+2.6,+40,+5,+270,+0.0358113,+2210.35,+61722.3,+277.366,OK,OK,+8,+180,+0.00776996,+479.579,+61722.3,+804.535,OK,OK
-2020-03-02 16:00:00 PST,+0,+0,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-03-02 17:00:00 PST,+3.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-02 18:00:00 PST,+3.1,+310,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-03-02 19:00:00 PST,+3.6,+230,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-03-02 20:00:00 PST,+2.6,+280,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-03-02 21:00:00 PST,+2.6,+300,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-03-02 22:00:00 PST,+1.5,+30,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-03-02 23:00:00 PST,+1.5,+40,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-03 00:00:00 PST,+1.5,+80,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-03 01:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-03 02:00:00 PST,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 03:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-03 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 05:00:00 PST,+2.1,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 06:00:00 PST,+0,+0,+5,+270,+0.0269589,+1663.97,+61722.3,-59.5034,OK,OK,+8,+180,+0.0141955,+876.177,+61722.3,-226.274,OK,OK
-2020-03-03 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 11:00:00 PST,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-03 12:00:00 PST,+2.6,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-03-03 13:00:00 PST,+3.1,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-03-03 14:00:00 PST,+4.1,+280,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-03 15:00:00 PST,+3.1,+250,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-03-03 16:00:00 PST,+4.1,+220,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-03-03 17:00:00 PST,+3.6,+230,+5,+270,+0.0312059,+1926.1,+61722.3,+153.818,OK,OK,+8,+180,+0.0113797,+702.383,+61722.3,+756.259,OK,OK
-2020-03-03 18:00:00 PST,+4.1,+220,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-03-03 19:00:00 PST,+3.1,+230,+5,+270,+0.0312059,+1926.1,+61722.3,+153.818,OK,OK,+8,+180,+0.0113797,+702.383,+61722.3,+756.259,OK,OK
-2020-03-03 20:00:00 PST,+3.6,+240,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-03-03 21:00:00 PST,+4.1,+280,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-03-03 22:00:00 PST,+4.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-03-03 23:00:00 PST,+0,+0,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-03-04 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 01:00:00 PST,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 02:00:00 PST,+1.5,+230,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-03-04 03:00:00 PST,+1.5,+150,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-03-04 04:00:00 PST,+0,+0,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-03-04 05:00:00 PST,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 06:00:00 PST,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-03-04 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 12:00:00 PST,+3.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-04 13:00:00 PST,+2.1,+280,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-03-04 14:00:00 PST,+2.6,+240,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-03-04 15:00:00 PST,+5.1,+230,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-03-04 16:00:00 PST,+4.1,+260,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-03-04 17:00:00 PST,+2.6,+230,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-03-04 18:00:00 PST,+2.6,+270,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-03-04 19:00:00 PST,+3.1,+260,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-03-04 20:00:00 PST,+3.6,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-03-04 21:00:00 PST,+4.1,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-03-04 22:00:00 PST,+0,+0,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-03-04 23:00:00 PST,+2.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 00:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-03-05 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 05:00:00 PST,+1.5,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 06:00:00 PST,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-03-05 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 09:00:00 PST,+0.8,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 10:00:00 PST,+1.5,+230,+5,+270,+0.0260482,+1607.75,+61722.3,+14.2454,OK,OK,+8,+180,+0.0172091,+1062.18,+61722.3,+32.6858,OK,OK
-2020-03-05 11:00:00 PST,+2.1,+250,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-03-05 12:00:00 PST,+1.5,+270,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-03-05 13:00:00 PST,+1.8,+260,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-03-05 14:00:00 PST,+2.1,+250,+5,+270,+0.0276563,+1707.01,+61722.3,+81.0494,OK,OK,+8,+180,+0.015104,+932.251,+61722.3,+238.974,OK,OK
-2020-03-05 15:00:00 PST,+4.1,+240,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-03-05 16:00:00 PST,+5.7,+250,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-03-05 17:00:00 PST,+6.7,+240,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-03-05 18:00:00 PST,+4.1,+250,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-03-05 19:00:00 PST,+3.1,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-03-05 20:00:00 PST,+0,+0,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-03-05 21:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-05 22:00:00 PST,+1.5,+10,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-03-05 23:00:00 PST,+1.5,+130,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-03-06 00:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-03-06 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 03:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 04:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-03-06 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 11:00:00 PST,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 12:00:00 PST,+2.1,+280,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-03-06 13:00:00 PST,+2.6,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-03-06 14:00:00 PST,+3.1,+270,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-03-06 15:00:00 PST,+5.7,+260,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-06 16:00:00 PST,+5.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-03-06 17:00:00 PST,+5.1,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-03-06 18:00:00 PST,+3.1,+280,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-03-06 19:00:00 PST,+3.1,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-03-06 20:00:00 PST,+2.1,+320,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-03-06 21:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-03-06 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-06 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 09:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 10:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-03-07 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 12:00:00 PST,+2.9,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-07 13:00:00 PST,+5.7,+240,+5,+270,+0.0311835,+1924.71,+61722.3,+19.7724,OK,OK,+8,+180,+0.0104179,+643.014,+61722.3,+126.623,OK,OK
-2020-03-07 14:00:00 PST,+6.2,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-03-07 15:00:00 PST,+5.1,+270,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-03-07 16:00:00 PST,+6.7,+250,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-03-07 17:00:00 PST,+4.6,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-03-07 18:00:00 PST,+5.1,+280,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-03-07 19:00:00 PST,+4.1,+280,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-03-07 20:00:00 PST,+2.1,+300,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-03-07 21:00:00 PST,+1.5,+310,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-03-07 22:00:00 PST,+2.1,+320,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-03-07 23:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-03-08 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 07:00:00 PDT,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 08:00:00 PDT,+1.5,+260,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-03-08 09:00:00 PDT,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-03-08 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 11:00:00 PDT,+0.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 12:00:00 PDT,+1,+360,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-03-08 13:00:00 PDT,+1.5,+360,+5,+270,+0.0257778,+1591.06,+61722.3,-50.1157,OK,OK,+8,+180,+0.0175377,+1082.46,+61722.3,-110.922,OK,OK
-2020-03-08 14:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-03-08 15:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 16:00:00 PDT,+3.1,+250,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-03-08 17:00:00 PDT,+4.1,+240,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-03-08 18:00:00 PDT,+3.6,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-03-08 19:00:00 PDT,+2.6,+250,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-03-08 20:00:00 PDT,+2.1,+290,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-03-08 21:00:00 PDT,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-03-08 22:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-08 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 00:00:00 PDT,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 01:00:00 PDT,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-03-09 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 07:00:00 PDT,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 08:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-03-09 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 13:00:00 PDT,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 14:00:00 PDT,+3.1,+270,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-03-09 15:00:00 PDT,+4.6,+260,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-09 16:00:00 PDT,+5.7,+240,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-09 17:00:00 PDT,+6.2,+250,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-03-09 18:00:00 PDT,+5.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-03-09 19:00:00 PDT,+3.1,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-03-09 20:00:00 PDT,+2.1,+250,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-03-09 21:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-03-09 22:00:00 PDT,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-09 23:00:00 PDT,+2.1,+360,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-03-10 00:00:00 PDT,+2.1,+170,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-03-10 01:00:00 PDT,+3.6,+360,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-03-10 02:00:00 PDT,+0,+0,+5,+270,+0.0272918,+1684.51,+61722.3,-120.116,OK,OK,+8,+180,+0.0147705,+911.667,+61722.3,-382.307,OK,OK
-2020-03-10 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 12:00:00 PDT,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 13:00:00 PDT,+3.1,+230,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-03-10 14:00:00 PDT,+3.1,+250,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-03-10 15:00:00 PDT,+4.6,+260,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-03-10 16:00:00 PDT,+4.6,+240,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-10 17:00:00 PDT,+4.6,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-10 18:00:00 PDT,+4.6,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-10 19:00:00 PDT,+4.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-10 20:00:00 PDT,+0,+0,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-10 21:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-10 22:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-03-10 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 07:00:00 PDT,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 08:00:00 PDT,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-03-11 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 12:00:00 PDT,+2.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-11 13:00:00 PDT,+1.5,+250,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-03-11 14:00:00 PDT,+5.7,+230,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-03-11 15:00:00 PDT,+5.1,+250,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-03-11 16:00:00 PDT,+5.7,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-03-11 17:00:00 PDT,+5.7,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-03-11 18:00:00 PDT,+5.1,+240,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-03-11 19:00:00 PDT,+3.6,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-03-11 20:00:00 PDT,+2.6,+310,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-03-11 21:00:00 PDT,+3.1,+320,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-03-11 22:00:00 PDT,+0,+0,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-03-11 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 00:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 01:00:00 PDT,+1.5,+90,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-03-12 02:00:00 PDT,+1.5,+120,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-03-12 03:00:00 PDT,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-03-12 04:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 05:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-03-12 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 14:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 15:00:00 PDT,+2.6,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-12 16:00:00 PDT,+3.6,+250,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-03-12 17:00:00 PDT,+7.2,+240,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-03-12 18:00:00 PDT,+3.1,+270,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-03-12 19:00:00 PDT,+3.1,+280,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-12 20:00:00 PDT,+3.1,+300,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-12 21:00:00 PDT,+2.6,+310,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-12 22:00:00 PDT,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-03-12 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 08:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 09:00:00 PDT,+1.1,+360,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-03-13 10:00:00 PDT,+0,+0,+5,+270,+0.0258025,+1592.59,+61722.3,-54.7891,OK,OK,+8,+180,+0.017489,+1079.46,+61722.3,-121.938,OK,OK
-2020-03-13 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 12:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-13 13:00:00 PDT,+2.1,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-03-13 14:00:00 PDT,+5.1,+270,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-03-13 15:00:00 PDT,+4.6,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-03-13 16:00:00 PDT,+6.2,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-13 17:00:00 PDT,+6.7,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-03-13 18:00:00 PDT,+7.2,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-03-13 19:00:00 PDT,+8.2,+260,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-03-13 20:00:00 PDT,+4.1,+10,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-03-13 21:00:00 PDT,+7.7,+250,+5,+270,+0.0288151,+1778.53,+61722.3,-60.3118,OK,OK,+8,+180,+0.0117051,+722.465,+61722.3,-418.082,OK,OK
-2020-03-13 22:00:00 PDT,+3.6,+300,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-03-13 23:00:00 PDT,+2.1,+280,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-03-14 00:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-03-14 01:00:00 PDT,+1.5,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-14 02:00:00 PDT,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-03-14 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-14 04:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-14 05:00:00 PDT,+2.1,+260,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-03-14 06:00:00 PDT,+1.5,+310,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-03-14 07:00:00 PDT,+2.1,+310,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-03-14 08:00:00 PDT,+4.1,+270,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-03-14 09:00:00 PDT,+2.6,+300,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-03-14 10:00:00 PDT,+3.1,+330,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-03-14 11:00:00 PDT,+0,+0,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-03-14 12:00:00 PDT,+1.5,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-14 13:00:00 PDT,+2.6,+210,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-03-14 14:00:00 PDT,+2.6,+230,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-03-14 15:00:00 PDT,+1.5,+240,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-03-14 16:00:00 PDT,+4.1,+250,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-14 17:00:00 PDT,+3.6,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-03-14 18:00:00 PDT,+3.1,+270,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-03-14 19:00:00 PDT,+4.1,+270,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-14 20:00:00 PDT,+4.1,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-03-14 21:00:00 PDT,+4.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-03-14 22:00:00 PDT,+3.6,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-03-14 23:00:00 PDT,+1.5,+350,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-03-15 00:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-03-15 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-15 02:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-15 03:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-03-15 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-15 05:00:00 PDT,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-15 06:00:00 PDT,+2.1,+130,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-03-15 07:00:00 PDT,+2.1,+110,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-03-15 08:00:00 PDT,+0,+0,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-03-15 09:00:00 PDT,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-15 10:00:00 PDT,+1.5,+60,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-03-15 11:00:00 PDT,+1.5,+30,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-03-15 12:00:00 PDT,+2.6,+30,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-03-15 13:00:00 PDT,+1.5,+90,+5,+270,+0.0273706,+1689.38,+61722.3,-82.9282,OK,OK,+8,+180,+0.0137729,+850.096,+61722.3,-335.303,OK,OK
-2020-03-15 14:00:00 PDT,+3.1,+80,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-03-15 15:00:00 PDT,+2.1,+50,+5,+270,+0.0291389,+1798.52,+61722.3,+15.279,OK,OK,+8,+180,+0.0103961,+641.671,+61722.3,-188.7,OK,OK
-2020-03-15 16:00:00 PDT,+2.1,+90,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-03-15 17:00:00 PDT,+2.6,+40,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-03-15 18:00:00 PDT,+5.7,+320,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-03-15 19:00:00 PDT,+2.6,+330,+5,+270,+0.0454477,+2805.14,+61722.3,+18.7893,OK,OK,+8,+180,+0.00642908,+396.817,+61722.3,+58.1657,OK,OK
-2020-03-15 20:00:00 PDT,+1.5,+350,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-03-15 21:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-03-15 22:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-15 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-16 00:00:00 PDT,+2.1,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-16 01:00:00 PDT,+2.6,+100,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-03-16 02:00:00 PDT,+1.5,+100,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-03-16 03:00:00 PDT,+3.6,+50,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-03-16 04:00:00 PDT,+2.6,+360,+5,+270,+0.0305223,+1883.9,+61722.3,+67.2479,OK,OK,+8,+180,+0.00879506,+542.851,+61722.3,-155.046,OK,OK
-2020-03-16 05:00:00 PDT,+3.6,+180,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-03-16 06:00:00 PDT,+3.1,+160,+5,+270,+0.024309,+1500.4,+61722.3,+257.223,OK,OK,+8,+180,+0.0207822,+1282.72,+61722.3,+413.152,OK,OK
-2020-03-16 07:00:00 PDT,+0,+0,+5,+270,+0.0253352,+1563.75,+61722.3,+82.4413,OK,OK,+8,+180,+0.0172462,+1064.48,+61722.3,+191.518,OK,OK
-2020-03-16 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-16 09:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-16 10:00:00 PDT,+2.1,+320,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-03-16 11:00:00 PDT,+3.6,+320,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-03-16 12:00:00 PDT,+3.6,+240,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-03-16 13:00:00 PDT,+5.1,+240,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-03-16 14:00:00 PDT,+6.7,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-03-16 15:00:00 PDT,+7.7,+220,+5,+270,+0.0465661,+2874.16,+61722.3,-127.909,OK,OK,+8,+180,+0.00722877,+446.176,+61722.3,+59.0718,OK,OK
-2020-03-16 16:00:00 PDT,+7.2,+230,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-03-16 17:00:00 PDT,+7.2,+240,+5,+270,+0.0500548,+3089.49,+61722.3,-189.205,OK,OK,+8,+180,+0.0106556,+657.689,+61722.3,-241.617,OK,OK
-2020-03-16 18:00:00 PDT,+7.7,+230,+5,+270,+0.0500548,+3089.49,+61722.3,-189.205,OK,OK,+8,+180,+0.0106556,+657.689,+61722.3,-241.617,OK,OK
-2020-03-16 19:00:00 PDT,+6.2,+260,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-03-16 20:00:00 PDT,+2.6,+230,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-03-16 21:00:00 PDT,+2.1,+230,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-03-16 22:00:00 PDT,+1.5,+240,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-03-16 23:00:00 PDT,+4.1,+240,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-17 00:00:00 PDT,+3.6,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-03-17 01:00:00 PDT,+0,+0,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-03-17 02:00:00 PDT,+2.1,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-17 03:00:00 PDT,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-03-17 04:00:00 PDT,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-17 05:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-03-17 06:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-17 07:00:00 PDT,+1.5,+260,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-03-17 08:00:00 PDT,+2.1,+20,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-03-17 09:00:00 PDT,+2.1,+280,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-03-17 10:00:00 PDT,+1.5,+280,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-03-17 11:00:00 PDT,+7.7,+270,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-03-17 12:00:00 PDT,+10.3,+260,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-03-17 13:00:00 PDT,+9.3,+280,+5,+270,+0.108412,+6691.42,+61722.3,-750.928,OK,OK,+8,+180,+0.0704829,+4350.36,+61722.3,-1028.11,OK,OK
-2020-03-17 14:00:00 PDT,+10.3,+250,+5,+270,+0.0986647,+6089.81,+61722.3,-479.796,OK,OK,+8,+180,+0.060954,+3762.22,+61722.3,-684.652,OK,OK
-2020-03-17 15:00:00 PDT,+9.3,+270,+5,+270,+0.100459,+6200.57,+61722.3,-769.185,OK,OK,+8,+180,+0.0622865,+3844.46,+61722.3,-1084.12,OK,OK
-2020-03-17 16:00:00 PDT,+7.7,+290,+5,+270,+0.0966193,+5963.56,+61722.3,-568.504,OK,OK,+8,+180,+0.0587369,+3625.37,+61722.3,-818.18,OK,OK
-2020-03-17 17:00:00 PDT,+6.7,+280,+5,+270,+0.0741336,+4575.69,+61722.3,-247.076,OK,OK,+8,+180,+0.0361309,+2230.08,+61722.3,-415.755,OK,OK
-2020-03-17 18:00:00 PDT,+8.2,+290,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-03-17 19:00:00 PDT,+4.6,+280,+5,+270,+0.0811778,+5010.47,+61722.3,-283.223,OK,OK,+8,+180,+0.0433391,+2674.99,+61722.3,-448.58,OK,OK
-2020-03-17 20:00:00 PDT,+5.1,+240,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-03-17 21:00:00 PDT,+3.1,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-03-17 22:00:00 PDT,+2.6,+290,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-03-17 23:00:00 PDT,+2,+310,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-03-18 00:00:00 PDT,+1.5,+330,+5,+270,+0.0279832,+1727.18,+61722.3,+8.68286,OK,OK,+8,+180,+0.0144857,+894.092,+61722.3,+27.9552,OK,OK
-2020-03-18 01:00:00 PDT,+2.1,+70,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-03-18 02:00:00 PDT,+1.5,+40,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-03-18 03:00:00 PDT,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-03-18 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 08:00:00 PDT,+1.5,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 09:00:00 PDT,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-03-18 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 12:00:00 PDT,+3.1,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 13:00:00 PDT,+2.1,+120,+5,+270,+0.0246291,+1520.17,+61722.3,+205.176,OK,OK,+8,+180,+0.0200025,+1234.6,+61722.3,+353.283,OK,OK
-2020-03-18 14:00:00 PDT,+2.6,+60,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-03-18 15:00:00 PDT,+0,+0,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-03-18 16:00:00 PDT,+5.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-18 17:00:00 PDT,+4.6,+210,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-03-18 18:00:00 PDT,+4.9,+170,+5,+270,+0.0302947,+1869.86,+61722.3,+212.294,OK,OK,+8,+180,+0.0128523,+793.275,+61722.3,+821.441,OK,OK
-2020-03-18 19:00:00 PDT,+3.1,+140,+5,+270,+0.0238478,+1471.94,+61722.3,+243.865,OK,OK,+8,+180,+0.0199169,+1229.31,+61722.3,+421.994,OK,OK
-2020-03-18 20:00:00 PDT,+1.4,+320,+5,+270,+0.0264015,+1629.56,+61722.3,+9.38133,OK,OK,+8,+180,+0.0146507,+904.277,+61722.3,+34.1468,OK,OK
-2020-03-18 21:00:00 PDT,+1.4,+100,+5,+270,+0.0266456,+1644.63,+61722.3,-7.58073,OK,OK,+8,+180,+0.0163159,+1007.05,+61722.3,-19.3063,OK,OK
-2020-03-18 22:00:00 PDT,+1.5,+80,+5,+270,+0.0266456,+1644.63,+61722.3,-7.58073,OK,OK,+8,+180,+0.0163159,+1007.05,+61722.3,-19.3063,OK,OK
-2020-03-18 23:00:00 PDT,+1.5,+80,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-03-19 00:00:00 PDT,+1.5,+70,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-03-19 01:00:00 PDT,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-03-19 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-19 03:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-19 04:00:00 PDT,+2.1,+360,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-03-19 05:00:00 PDT,+2.6,+140,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-03-19 06:00:00 PDT,+0,+0,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-03-19 07:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-19 08:00:00 PDT,+2.6,+330,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-03-19 09:00:00 PDT,+2.6,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-03-19 10:00:00 PDT,+2.6,+300,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-03-19 11:00:00 PDT,+2.6,+280,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-03-19 12:00:00 PDT,+2.6,+270,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-03-19 13:00:00 PDT,+5.1,+270,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-03-19 14:00:00 PDT,+4.6,+270,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-03-19 15:00:00 PDT,+5.7,+250,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-03-19 16:00:00 PDT,+7.2,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-03-19 17:00:00 PDT,+6.7,+270,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-03-19 18:00:00 PDT,+5.1,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-03-19 19:00:00 PDT,+4.6,+260,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-03-19 20:00:00 PDT,+0,+0,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-03-19 21:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-19 22:00:00 PDT,+1.5,+310,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-03-19 23:00:00 PDT,+1.5,+340,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-03-20 00:00:00 PDT,+1.5,+360,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-03-20 01:00:00 PDT,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-03-20 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 03:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 04:00:00 PDT,+0,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-03-20 05:00:00 PDT,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 06:00:00 PDT,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-03-20 07:00:00 PDT,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 08:00:00 PDT,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-03-20 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 12:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-20 13:00:00 PDT,+1.8,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-03-20 14:00:00 PDT,+1.5,+260,+5,+270,+0.0276831,+1708.66,+61722.3,+24.6932,OK,OK,+8,+180,+0.0149331,+921.707,+61722.3,+74.7391,OK,OK
-2020-03-20 15:00:00 PDT,+4.1,+230,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-03-20 16:00:00 PDT,+3.1,+290,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-03-20 17:00:00 PDT,+3.6,+280,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-03-20 18:00:00 PDT,+3.1,+260,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-03-20 19:00:00 PDT,+4.1,+240,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-03-20 20:00:00 PDT,+2.6,+260,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-03-20 21:00:00 PDT,+2.6,+310,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-20 22:00:00 PDT,+2.1,+300,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-20 23:00:00 PDT,+1.5,+310,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-03-21 00:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-03-21 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 02:00:00 PDT,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 03:00:00 PDT,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-03-21 04:00:00 PDT,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 05:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-03-21 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 12:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-21 13:00:00 PDT,+2.6,+300,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-03-21 14:00:00 PDT,+3.6,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-03-21 15:00:00 PDT,+3.1,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-03-21 16:00:00 PDT,+3.6,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-03-21 17:00:00 PDT,+6.7,+250,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-03-21 18:00:00 PDT,+5.1,+240,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-03-21 19:00:00 PDT,+4.1,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-03-21 20:00:00 PDT,+3.1,+270,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-03-21 21:00:00 PDT,+2.6,+280,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-03-21 22:00:00 PDT,+1.5,+10,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-03-21 23:00:00 PDT,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-03-22 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 11:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-03-22 12:00:00 PDT,+1.3,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-22 13:00:00 PDT,+2.6,+270,+5,+270,+0.0265074,+1636.09,+61722.3,-7.20352,OK,OK,+8,+180,+0.0165161,+1019.41,+61722.3,-17.9122,OK,OK
-2020-03-22 14:00:00 PDT,+3.6,+240,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-03-22 15:00:00 PDT,+5.1,+250,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-03-22 16:00:00 PDT,+5.7,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-03-22 17:00:00 PDT,+6.2,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-03-22 18:00:00 PDT,+5.1,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-03-22 19:00:00 PDT,+4.1,+280,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-03-22 20:00:00 PDT,+3.6,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-03-22 21:00:00 PDT,+3.1,+310,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-03-22 22:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-03-22 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 00:00:00 PDT,+0.8,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 01:00:00 PDT,+1.5,+160,+5,+270,+0.0258146,+1593.34,+61722.3,-44.0624,OK,OK,+8,+180,+0.0172391,+1064.04,+61722.3,-101.151,OK,OK
-2020-03-23 02:00:00 PDT,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-03-23 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 13:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-23 14:00:00 PDT,+4.1,+260,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-03-23 15:00:00 PDT,+4.6,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-03-23 16:00:00 PDT,+5.1,+250,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-03-23 17:00:00 PDT,+5.1,+240,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-03-23 18:00:00 PDT,+4.1,+240,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-03-23 19:00:00 PDT,+4.1,+260,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-03-23 20:00:00 PDT,+3.1,+330,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-03-23 21:00:00 PDT,+4.1,+300,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-03-23 22:00:00 PDT,+3.1,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-03-23 23:00:00 PDT,+6.2,+300,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-03-24 00:00:00 PDT,+2.6,+290,+5,+270,+0.0547243,+3377.7,+61722.3,-85.9151,OK,OK,+8,+180,+0.0161036,+993.953,+61722.3,-194.254,OK,OK
-2020-03-24 01:00:00 PDT,+2.1,+220,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-03-24 02:00:00 PDT,+3.1,+220,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-03-24 03:00:00 PDT,+1.5,+240,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-03-24 04:00:00 PDT,+1.5,+240,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-24 05:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-24 06:00:00 PDT,+1.5,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-24 07:00:00 PDT,+2.6,+160,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-03-24 08:00:00 PDT,+2.6,+160,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-03-24 09:00:00 PDT,+2.6,+150,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-03-24 10:00:00 PDT,+3.1,+80,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-03-24 11:00:00 PDT,+0,+0,+5,+270,+0.0291389,+1798.52,+61722.3,+15.279,OK,OK,+8,+180,+0.0103961,+641.671,+61722.3,-188.7,OK,OK
-2020-03-24 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-24 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-24 14:00:00 PDT,+4.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-24 15:00:00 PDT,+2.1,+310,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-03-24 16:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-03-24 17:00:00 PDT,+4.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-24 18:00:00 PDT,+2.6,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-03-24 19:00:00 PDT,+2.1,+280,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-24 20:00:00 PDT,+1.5,+240,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-03-24 21:00:00 PDT,+2.6,+260,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-24 22:00:00 PDT,+2.6,+280,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-24 23:00:00 PDT,+1.5,+300,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-03-25 00:00:00 PDT,+1.5,+280,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-03-25 01:00:00 PDT,+1.5,+260,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-03-25 02:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-03-25 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 05:00:00 PDT,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 06:00:00 PDT,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-03-25 07:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 08:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-03-25 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 10:00:00 PDT,+2.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 11:00:00 PDT,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-03-25 12:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-25 13:00:00 PDT,+2.1,+280,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-03-25 14:00:00 PDT,+1.5,+280,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-03-25 15:00:00 PDT,+2.6,+290,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-03-25 16:00:00 PDT,+3.6,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-03-25 17:00:00 PDT,+5.1,+250,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-03-25 18:00:00 PDT,+3.6,+230,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-03-25 19:00:00 PDT,+3.6,+240,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-03-25 20:00:00 PDT,+2.1,+280,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-03-25 21:00:00 PDT,+3.6,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-03-25 22:00:00 PDT,+2.6,+320,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-03-25 23:00:00 PDT,+0,+0,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-03-26 00:00:00 PDT,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 01:00:00 PDT,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-03-26 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 11:00:00 PDT,+1.5,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-26 12:00:00 PDT,+2.1,+270,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-03-26 13:00:00 PDT,+4.6,+240,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-03-26 14:00:00 PDT,+4.6,+260,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-03-26 15:00:00 PDT,+5.1,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-03-26 16:00:00 PDT,+6.7,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-03-26 17:00:00 PDT,+4.6,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-03-26 18:00:00 PDT,+3.1,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-03-26 19:00:00 PDT,+9.3,+240,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-03-26 20:00:00 PDT,+10.3,+260,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-03-26 21:00:00 PDT,+3.1,+310,+5,+270,+0.108412,+6691.42,+61722.3,-750.928,OK,OK,+8,+180,+0.0704829,+4350.36,+61722.3,-1028.11,OK,OK
-2020-03-26 22:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-03-26 23:00:00 PDT,+4.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 00:00:00 PDT,+0,+0,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-03-27 01:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 02:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-03-27 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 05:00:00 PDT,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 06:00:00 PDT,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-03-27 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 09:00:00 PDT,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-27 10:00:00 PDT,+1.5,+180,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-03-27 11:00:00 PDT,+2,+190,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-03-27 12:00:00 PDT,+2.6,+210,+5,+270,+0.0256425,+1582.71,+61722.3,+125.707,OK,OK,+8,+180,+0.0180754,+1115.65,+61722.3,+261.94,OK,OK
-2020-03-27 13:00:00 PDT,+3.1,+220,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-03-27 14:00:00 PDT,+3.6,+240,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-03-27 15:00:00 PDT,+2.9,+240,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-03-27 16:00:00 PDT,+2.1,+230,+5,+270,+0.0299613,+1849.28,+61722.3,+112.25,OK,OK,+8,+180,+0.0123847,+764.414,+61722.3,+482.25,OK,OK
-2020-03-27 17:00:00 PDT,+2.6,+210,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-03-27 18:00:00 PDT,+3.1,+210,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-03-27 19:00:00 PDT,+3.9,+190,+5,+270,+0.0277338,+1711.79,+61722.3,+181.303,OK,OK,+8,+180,+0.0155038,+956.931,+61722.3,+503.139,OK,OK
-2020-03-27 20:00:00 PDT,+5.3,+170,+5,+270,+0.0256189,+1581.26,+61722.3,+278.72,OK,OK,+8,+180,+0.0189449,+1169.32,+61722.3,+531.926,OK,OK
-2020-03-27 21:00:00 PDT,+4.6,+200,+5,+270,+0.0235471,+1453.38,+61722.3,+271.467,OK,OK,+8,+180,+0.0202836,+1251.95,+61722.3,+453.151,OK,OK
-2020-03-27 22:00:00 PDT,+6.5,+180,+5,+270,+0.0278894,+1721.4,+61722.3,+285.95,OK,OK,+8,+180,+0.0160975,+993.574,+61722.3,+734.482,OK,OK
-2020-03-27 23:00:00 PDT,+6.8,+180,+5,+270,+0.0225242,+1390.25,+61722.3,+770.68,OK,OK,+8,+180,+0.0276169,+1704.57,+61722.3,+778.511,OK,OK
-2020-03-28 00:00:00 PDT,+6.2,+170,+5,+270,+0.022436,+1384.8,+61722.3,+847.972,OK,OK,+8,+180,+0.0285497,+1762.15,+61722.3,+817.768,OK,OK
-2020-03-28 01:00:00 PDT,+4.4,+140,+5,+270,+0.0227951,+1406.96,+61722.3,+341.302,OK,OK,+8,+180,+0.0212159,+1309.5,+61722.3,+520.884,OK,OK
-2020-03-28 02:00:00 PDT,+5.3,+130,+5,+270,+0.027681,+1708.53,+61722.3,-0.728021,OK,OK,+8,+180,+0.0119078,+734.977,+61722.3,+28.786,OK,OK
-2020-03-28 03:00:00 PDT,+7.6,+130,+5,+270,+0.031824,+1964.25,+61722.3,+26.098,OK,OK,+8,+180,+0.00859257,+530.353,+61722.3,+44.6675,OK,OK
-2020-03-28 04:00:00 PDT,+9.6,+210,+5,+270,+0.04334,+2675.04,+61722.3,+86.7257,OK,OK,+8,+180,+0.0174318,+1075.93,+61722.3,+177.127,OK,OK
-2020-03-28 05:00:00 PDT,+7.8,+150,+5,+270,+0.0469644,+2898.75,+61722.3,+4.48103,OK,OK,+8,+180,+0.00853874,+527.03,+61722.3,+1051.45,OK,OK
-2020-03-28 06:00:00 PDT,+12.3,+140,+5,+270,+0.0302421,+1866.61,+61722.3,-139.626,OK,OK,+8,+180,+0.0107375,+662.744,+61722.3,-210.772,OK,OK
-2020-03-28 07:00:00 PDT,+12.6,+100,+5,+270,+0.068432,+4223.78,+61722.3,-206.282,OK,OK,+8,+180,+0.0458377,+2829.21,+61722.3,-282.19,OK,OK
-2020-03-28 08:00:00 PDT,+11.9,+60,+5,+270,+0.140665,+8682.17,+61722.3,+1513.88,OK,OK,+8,+180,+0.115988,+7159.04,+61722.3,+1755.26,OK,OK
-2020-03-28 09:00:00 PDT,+13.8,+50,+5,+270,+0.13446,+8299.19,+61722.3,+2297.53,OK,OK,+8,+180,+0.108188,+6677.59,+61722.3,+2721.11,OK,OK
-2020-03-28 10:00:00 PDT,+13.6,+30,+5,+270,+0.16684,+10297.7,+61722.3,+2805.45,OK,OK,+8,+180,+0.140362,+8663.47,+61722.3,+3202.47,OK,OK
-2020-03-28 11:00:00 PDT,+16.5,+40,+5,+270,+0.129603,+7999.4,+61722.3,+2495.56,OK,OK,+8,+180,+0.101797,+6283.15,+61722.3,+3017.49,OK,OK
-2020-03-28 12:00:00 PDT,+17.9,+10,+5,+270,+0.212537,+13118.3,+61722.3,+3402.67,OK,OK,+8,+180,+0.185664,+11459.6,+61722.3,+3765.24,OK,OK
-2020-03-28 13:00:00 PDT,+20,+360,+5,+270,+0.135097,+8338.49,+61722.3,+2599.18,OK,OK,+8,+180,+0.105151,+6490.15,+61722.3,+3167.9,OK,OK
-2020-03-28 14:00:00 PDT,+19.4,+50,+5,+270,+0.10942,+6753.66,+61722.3,+2088.76,OK,OK,+8,+180,+0.0764878,+4721,+61722.3,+2777.77,OK,OK
-2020-03-28 15:00:00 PDT,+22.4,+20,+5,+270,+0.319879,+19743.6,+61722.3,+4175.65,OK,OK,+8,+180,+0.29328,+18101.9,+61722.3,+4438,OK,OK
-2020-03-28 16:00:00 PDT,+21.8,+60,+5,+270,+0.271549,+16760.6,+61722.3,+4122.77,OK,OK,+8,+180,+0.243148,+15007.6,+61722.3,+4470.75,OK,OK
-2020-03-28 17:00:00 PDT,+20.7,+70,+5,+270,+0.427715,+26399.5,+61722.3,+4657.6,OK,OK,+8,+180,+0.401104,+24757.1,+61722.3,+4858.04,OK,OK
-2020-03-28 18:00:00 PDT,+19.6,+90,+5,+270,+0.398645,+24605.3,+61722.3,+4171.52,OK,OK,+8,+180,+0.372536,+22993.8,+61722.3,+4363.29,OK,OK
-2020-03-28 19:00:00 PDT,+18,+70,+5,+270,+0.34826,+21495.4,+61722.3,+3111.28,OK,OK,+8,+180,+0.3231,+19942.4,+61722.3,+3273.21,OK,OK
-2020-03-28 20:00:00 PDT,+18.5,+110,+5,+270,+0.303506,+18733.1,+61722.3,+3578.1,OK,OK,+8,+180,+0.277745,+17143.1,+61722.3,+3808.03,OK,OK
-2020-03-28 21:00:00 PDT,+19.4,+130,+5,+270,+0.26572,+16400.9,+61722.3,+1761.57,OK,OK,+8,+180,+0.241724,+14919.7,+61722.3,+1882.89,OK,OK
-2020-03-28 22:00:00 PDT,+18.3,+130,+5,+270,+0.207339,+12797.4,+61722.3,+385.731,OK,OK,+8,+180,+0.184968,+11416.6,+61722.3,+418.61,OK,OK
-2020-03-28 23:00:00 PDT,+14.6,+300,+5,+270,+0.185319,+11438.3,+61722.3,+360.463,OK,OK,+8,+180,+0.16292,+10055.8,+61722.3,+395.897,OK,OK
-2020-03-29 00:00:00 PDT,+14.6,+110,+5,+270,+0.206633,+12753.9,+61722.3,-452.727,OK,OK,+8,+180,+0.169533,+10464,+61722.3,-524.174,OK,OK
-2020-03-29 01:00:00 PDT,+13.4,+80,+5,+270,+0.206633,+12753.9,+61722.3,-452.727,OK,OK,+8,+180,+0.169533,+10464,+61722.3,-524.174,OK,OK
-2020-03-29 02:00:00 PDT,+13.3,+20,+5,+270,+0.172429,+10642.7,+61722.3,+2316.09,OK,OK,+8,+180,+0.147122,+9080.73,+61722.3,+2611.72,OK,OK
-2020-03-29 03:00:00 PDT,+13.9,+360,+5,+270,+0.103964,+6416.88,+61722.3,+2113.53,OK,OK,+8,+180,+0.0749562,+4626.47,+61722.3,+2744.58,OK,OK
-2020-03-29 04:00:00 PDT,+13.2,+340,+5,+270,+0.0623811,+3850.3,+61722.3,+1077.46,OK,OK,+8,+180,+0.0279898,+1727.6,+61722.3,+2040.73,OK,OK
-2020-03-29 05:00:00 PDT,+11.6,+340,+5,+270,+0.10859,+6702.4,+61722.3,+644.964,OK,OK,+8,+180,+0.0725126,+4475.64,+61722.3,+881.633,OK,OK
-2020-03-29 06:00:00 PDT,+11.5,+350,+5,+270,+0.0883495,+5453.13,+61722.3,+514.331,OK,OK,+8,+180,+0.0519525,+3206.62,+61722.3,+775.04,OK,OK
-2020-03-29 07:00:00 PDT,+13,+10,+5,+270,+0.0688703,+4250.83,+61722.3,+643.085,OK,OK,+8,+180,+0.0327022,+2018.46,+61722.3,+1147.49,OK,OK
-2020-03-29 08:00:00 PDT,+12.9,+60,+5,+270,+0.0785586,+4848.81,+61722.3,+1592.3,OK,OK,+8,+180,+0.0475338,+2933.89,+61722.3,+2388.48,OK,OK
-2020-03-29 09:00:00 PDT,+12.9,+50,+5,+270,+0.156055,+9632.09,+61722.3,+2547.94,OK,OK,+8,+180,+0.129937,+8020.01,+61722.3,+2933.1,OK,OK
-2020-03-29 10:00:00 PDT,+15.4,+50,+5,+270,+0.156055,+9632.09,+61722.3,+2547.94,OK,OK,+8,+180,+0.129937,+8020.01,+61722.3,+2933.1,OK,OK
-2020-03-29 11:00:00 PDT,+12.9,+50,+5,+270,+0.205174,+12663.8,+61722.3,+3204.68,OK,OK,+8,+180,+0.178776,+11034.5,+61722.3,+3553.08,OK,OK
-2020-03-29 12:00:00 PDT,+12.9,+30,+5,+270,+0.147193,+9085.08,+61722.3,+2576.83,OK,OK,+8,+180,+0.120613,+7444.48,+61722.3,+3006.63,OK,OK
-2020-03-29 13:00:00 PDT,+10.3,+60,+5,+270,+0.147193,+9085.08,+61722.3,+2576.83,OK,OK,+8,+180,+0.120613,+7444.48,+61722.3,+3006.63,OK,OK
-2020-03-29 14:00:00 PDT,+10.3,+60,+5,+270,+0.103765,+6404.59,+61722.3,+1885.5,OK,OK,+8,+180,+0.0770721,+4757.06,+61722.3,+2386.31,OK,OK
-2020-03-29 15:00:00 PDT,+7.7,+40,+5,+270,+0.103765,+6404.59,+61722.3,+1885.5,OK,OK,+8,+180,+0.0770721,+4757.06,+61722.3,+2386.31,OK,OK
-2020-03-29 16:00:00 PDT,+10.3,+50,+5,+270,+0.0575023,+3549.17,+61722.3,+1082.83,OK,OK,+8,+180,+0.0281342,+1736.51,+61722.3,+1929.03,OK,OK
-2020-03-29 17:00:00 PDT,+11.1,+30,+5,+270,+0.0983126,+6068.08,+61722.3,+1893.01,OK,OK,+8,+180,+0.071099,+4388.39,+61722.3,+2450.03,OK,OK
-2020-03-29 18:00:00 PDT,+13,+360,+5,+270,+0.0908642,+5608.34,+61722.3,+1861.53,OK,OK,+8,+180,+0.0623945,+3851.13,+61722.3,+2516.24,OK,OK
-2020-03-29 19:00:00 PDT,+10.8,+40,+5,+270,+0.0570765,+3522.89,+61722.3,+925.566,OK,OK,+8,+180,+0.0223373,+1378.71,+61722.3,+1947.74,OK,OK
-2020-03-29 20:00:00 PDT,+10.6,+60,+5,+270,+0.0979837,+6047.78,+61722.3,+1952.27,OK,OK,+8,+180,+0.0702878,+4338.32,+61722.3,+2544.48,OK,OK
-2020-03-29 21:00:00 PDT,+9.4,+60,+5,+270,+0.109154,+6737.26,+61722.3,+1964.01,OK,OK,+8,+180,+0.0825598,+5095.78,+61722.3,+2448.56,OK,OK
-2020-03-29 22:00:00 PDT,+10.3,+70,+5,+270,+0.0886247,+5470.12,+61722.3,+1645.96,OK,OK,+8,+180,+0.0615733,+3800.44,+61722.3,+2201.51,OK,OK
-2020-03-29 23:00:00 PDT,+9.6,+60,+5,+270,+0.106499,+6573.36,+61722.3,+1800.23,OK,OK,+8,+180,+0.0802322,+4952.11,+61722.3,+2251.21,OK,OK
-2020-03-30 00:00:00 PDT,+6.8,+140,+5,+270,+0.0918547,+5669.48,+61722.3,+1699.74,OK,OK,+8,+180,+0.064892,+4005.28,+61722.3,+2242.3,OK,OK
-2020-03-30 01:00:00 PDT,+6.7,+140,+5,+270,+0.0333766,+2060.08,+61722.3,-48.3825,OK,OK,+8,+180,+0.00980265,+605.042,+61722.3,-105.601,OK,OK
-2020-03-30 02:00:00 PDT,+8.6,+320,+5,+270,+0.0330309,+2038.74,+61722.3,-45.7974,OK,OK,+8,+180,+0.00964142,+595.09,+61722.3,-97.7556,OK,OK
-2020-03-30 03:00:00 PDT,+6.3,+150,+5,+270,+0.0746523,+4607.71,+61722.3,+63.2787,OK,OK,+8,+180,+0.0371798,+2294.82,+61722.3,+106.482,OK,OK
-2020-03-30 04:00:00 PDT,+6.1,+150,+5,+270,+0.0277839,+1714.89,+61722.3,-41.8867,OK,OK,+8,+180,+0.0114892,+709.142,+61722.3,+34.1343,OK,OK
-2020-03-30 05:00:00 PDT,+6,+150,+5,+270,+0.0275493,+1700.4,+61722.3,-31.643,OK,OK,+8,+180,+0.0117329,+724.18,+61722.3,+53.8477,OK,OK
-2020-03-30 06:00:00 PDT,+5.8,+150,+5,+270,+0.0274393,+1693.61,+61722.3,-26.7876,OK,OK,+8,+180,+0.0118618,+732.138,+61722.3,+62.5872,OK,OK
-2020-03-30 07:00:00 PDT,+5.6,+150,+5,+270,+0.0272333,+1680.9,+61722.3,-17.6154,OK,OK,+8,+180,+0.0121313,+748.77,+61722.3,+77.9571,OK,OK
-2020-03-30 08:00:00 PDT,+7.5,+310,+5,+270,+0.0270454,+1669.3,+61722.3,-9.16568,OK,OK,+8,+180,+0.012413,+766.157,+61722.3,+90.6994,OK,OK
-2020-03-30 09:00:00 PDT,+5.3,+160,+5,+270,+0.0665156,+4105.49,+61722.3,-47.6827,OK,OK,+8,+180,+0.0285755,+1763.74,+61722.3,-88.0402,OK,OK
-2020-03-30 10:00:00 PDT,+7.7,+120,+5,+270,+0.024817,+1531.76,+61722.3,+95.6748,OK,OK,+8,+180,+0.0163739,+1010.63,+61722.3,+272.667,OK,OK
-2020-03-30 11:00:00 PDT,+7.4,+110,+5,+270,+0.0505642,+3120.94,+61722.3,+295.259,OK,OK,+8,+180,+0.0242733,+1498.2,+61722.3,+530.114,OK,OK
-2020-03-30 12:00:00 PDT,+7,+100,+5,+270,+0.0531816,+3282.49,+61722.3,+470.831,OK,OK,+8,+180,+0.0264403,+1631.95,+61722.3,+823.922,OK,OK
-2020-03-30 13:00:00 PDT,+6.7,+100,+5,+270,+0.0530134,+3272.11,+61722.3,+590.749,OK,OK,+8,+180,+0.0257527,+1589.51,+61722.3,+1054.21,OK,OK
-2020-03-30 14:00:00 PDT,+6.4,+90,+5,+270,+0.0500122,+3086.86,+61722.3,+537.024,OK,OK,+8,+180,+0.022514,+1389.61,+61722.3,+1017.35,OK,OK
-2020-03-30 15:00:00 PDT,+6,+80,+5,+270,+0.0492935,+3042.5,+61722.3,+611.746,OK,OK,+8,+180,+0.021311,+1315.37,+61722.3,+1197.37,OK,OK
-2020-03-30 16:00:00 PDT,+5.7,+70,+5,+270,+0.0465476,+2873.02,+61722.3,+612.169,OK,OK,+8,+180,+0.0179612,+1108.6,+61722.3,+1308.85,OK,OK
-2020-03-30 17:00:00 PDT,+6.3,+60,+5,+270,+0.0440206,+2717.05,+61722.3,+585.713,OK,OK,+8,+180,+0.0148852,+918.751,+61722.3,+1383.37,OK,OK
-2020-03-30 18:00:00 PDT,+4.4,+90,+5,+270,+0.0488085,+3012.57,+61722.3,+771.174,OK,OK,+8,+180,+0.0196546,+1213.12,+61722.3,+1599.52,OK,OK
-2020-03-30 19:00:00 PDT,+0.5,+160,+5,+270,+0.0341443,+2107.46,+61722.3,+197.029,OK,OK,+8,+180,+0.00742859,+458.509,+61722.3,+498.754,OK,OK
-2020-03-30 20:00:00 PDT,+3.2,+60,+5,+270,+0.0256523,+1583.32,+61722.3,+15.3615,OK,OK,+8,+180,+0.0177555,+1095.91,+61722.3,+33.1861,OK,OK
-2020-03-30 21:00:00 PDT,+0,+0,+5,+270,+0.0294573,+1818.17,+61722.3,+21.6932,OK,OK,+8,+180,+0.0100626,+621.084,+61722.3,-227.767,OK,OK
-2020-03-30 22:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-30 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 04:00:00 PDT,+0.3,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 05:00:00 PDT,+2,+340,+5,+270,+0.0256903,+1585.67,+61722.3,-9.20214,OK,OK,+8,+180,+0.017723,+1093.9,+61722.3,-19.9465,OK,OK
-2020-03-31 06:00:00 PDT,+0.6,+340,+5,+270,+0.0270013,+1666.58,+61722.3,-48.235,OK,OK,+8,+180,+0.0156971,+968.858,+61722.3,-132.914,OK,OK
-2020-03-31 07:00:00 PDT,+0,+0,+5,+270,+0.0257778,+1591.07,+61722.3,-18.1219,OK,OK,+8,+180,+0.0175831,+1085.27,+61722.3,-39.8919,OK,OK
-2020-03-31 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 10:00:00 PDT,+0.2,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-03-31 11:00:00 PDT,+0.3,+10,+5,+270,+0.0256659,+1584.16,+61722.3,-10.3053,OK,OK,+8,+180,+0.0177604,+1096.21,+61722.3,-22.2468,OK,OK
-2020-03-31 12:00:00 PDT,+1.8,+310,+5,+270,+0.0256749,+1584.71,+61722.3,-17.849,OK,OK,+8,+180,+0.0177365,+1094.74,+61722.3,-38.6352,OK,OK
-2020-03-31 13:00:00 PDT,+3.1,+250,+5,+270,+0.0275264,+1698.99,+61722.3,+8.46202,OK,OK,+8,+180,+0.0151094,+932.587,+61722.3,+25.0532,OK,OK
-2020-03-31 14:00:00 PDT,+5.4,+290,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-03-31 15:00:00 PDT,+5.1,+280,+5,+270,+0.0480156,+2963.63,+61722.3,-86.3579,OK,OK,+8,+180,+0.0088942,+548.97,+61722.3,-218,OK,OK
-2020-03-31 16:00:00 PDT,+5.2,+260,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-03-31 17:00:00 PDT,+6.4,+260,+5,+270,+0.0446671,+2756.95,+61722.3,-101.499,OK,OK,+8,+180,+0.00529527,+326.836,+61722.3,-85.22,OK,OK
-2020-03-31 18:00:00 PDT,+6.5,+270,+5,+270,+0.0555067,+3426,+61722.3,-243.301,OK,OK,+8,+180,+0.0165212,+1019.72,+61722.3,-507.609,OK,OK
-2020-03-31 19:00:00 PDT,+5.7,+270,+5,+270,+0.058502,+3610.87,+61722.3,-245.335,OK,OK,+8,+180,+0.0197417,+1218.5,+61722.3,-498.203,OK,OK
-2020-03-31 20:00:00 PDT,+4.1,+300,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-03-31 21:00:00 PDT,+4.6,+250,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-03-31 22:00:00 PDT,+4.1,+200,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-03-31 23:00:00 PDT,+4.2,+230,+5,+270,+0.0274307,+1693.09,+61722.3,+257.993,OK,OK,+8,+180,+0.0164298,+1014.08,+61722.3,+639.531,OK,OK
-2020-04-01 00:00:00 PDT,+4.4,+240,+5,+270,+0.0333766,+2060.08,+61722.3,+98.4993,OK,OK,+8,+180,+0.00871864,+538.134,+61722.3,+826.473,OK,OK
-2020-04-01 01:00:00 PDT,+4.5,+270,+5,+270,+0.0360601,+2225.71,+61722.3,+38.466,OK,OK,+8,+180,+0.00566739,+349.804,+61722.3,+951.101,OK,OK
-2020-04-01 02:00:00 PDT,+4.7,+70,+5,+270,+0.0403954,+2493.29,+61722.3,-41.1091,OK,OK,+8,+180,+0.0019805,+122.241,+61722.3,+691.002,OK,OK
-2020-04-01 03:00:00 PDT,+4.8,+80,+5,+270,+0.0365634,+2256.78,+61722.3,+325.521,OK,OK,+8,+180,+0.00790977,+488.209,+61722.3,+977.561,OK,OK
-2020-04-01 04:00:00 PDT,+5,+40,+5,+270,+0.0370688,+2287.97,+61722.3,+322.091,OK,OK,+8,+180,+0.00857117,+529.032,+61722.3,+942.598,OK,OK
-2020-04-01 05:00:00 PDT,+5.1,+40,+5,+270,+0.0360093,+2222.58,+61722.3,+323.68,OK,OK,+8,+180,+0.00660802,+407.862,+61722.3,+1030.01,OK,OK
-2020-04-01 06:00:00 PDT,+4.6,+20,+5,+270,+0.0365666,+2256.97,+61722.3,+348.766,OK,OK,+8,+180,+0.00686726,+423.863,+61722.3,+1135.35,OK,OK
-2020-04-01 07:00:00 PDT,+1.5,+40,+5,+270,+0.0312625,+1929.59,+61722.3,+71.0077,OK,OK,+8,+180,+0.00808568,+499.066,+61722.3,-216.36,OK,OK
-2020-04-01 08:00:00 PDT,+7.5,+50,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-04-01 09:00:00 PDT,+13.4,+70,+5,+270,+0.059268,+3658.16,+61722.3,+1101.44,OK,OK,+8,+180,+0.0304966,+1882.32,+61722.3,+1883.48,OK,OK
-2020-04-01 10:00:00 PDT,+14.9,+70,+5,+270,+0.172433,+10642.9,+61722.3,+2539.56,OK,OK,+8,+180,+0.14676,+9058.35,+61722.3,+2870.15,OK,OK
-2020-04-01 11:00:00 PDT,+11.3,+70,+5,+270,+0.210854,+13014.4,+61722.3,+2883.57,OK,OK,+8,+180,+0.185244,+11433.7,+61722.3,+3174.34,OK,OK
-2020-04-01 12:00:00 PDT,+7.2,+80,+5,+270,+0.125759,+7762.15,+61722.3,+2044.1,OK,OK,+8,+180,+0.099772,+6158.15,+61722.3,+2448.87,OK,OK
-2020-04-01 13:00:00 PDT,+6.7,+80,+5,+270,+0.0593024,+3660.28,+61722.3,+912.232,OK,OK,+8,+180,+0.0316855,+1955.7,+61722.3,+1511.03,OK,OK
-2020-04-01 14:00:00 PDT,+7.7,+80,+5,+270,+0.053598,+3308.19,+61722.3,+787.609,OK,OK,+8,+180,+0.0255728,+1578.41,+61722.3,+1428.19,OK,OK
-2020-04-01 15:00:00 PDT,+4.6,+260,+5,+270,+0.0655501,+4045.9,+61722.3,+1035.32,OK,OK,+8,+180,+0.0383115,+2364.67,+61722.3,+1594.69,OK,OK
-2020-04-01 16:00:00 PDT,+5.4,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-04-01 17:00:00 PDT,+6.2,+260,+5,+270,+0.0462933,+2857.33,+61722.3,-123.698,OK,OK,+8,+180,+0.00693507,+428.048,+61722.3,-212.674,OK,OK
-2020-04-01 18:00:00 PDT,+4.6,+240,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-04-01 19:00:00 PDT,+5.1,+210,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-04-01 20:00:00 PDT,+3.6,+280,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-04-01 21:00:00 PDT,+3.6,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-04-01 22:00:00 PDT,+2.1,+330,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-04-01 23:00:00 PDT,+2.6,+340,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-04-02 00:00:00 PDT,+2.1,+100,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-04-02 01:00:00 PDT,+1.5,+60,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-04-02 02:00:00 PDT,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-04-02 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 09:00:00 PDT,+1.5,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 10:00:00 PDT,+0,+0,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-04-02 11:00:00 PDT,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-02 12:00:00 PDT,+6.2,+240,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-04-02 13:00:00 PDT,+7.7,+270,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-04-02 14:00:00 PDT,+6.2,+260,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-04-02 15:00:00 PDT,+5.1,+240,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-04-02 16:00:00 PDT,+6.7,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-04-02 17:00:00 PDT,+6.7,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-04-02 18:00:00 PDT,+7.2,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-04-02 19:00:00 PDT,+5.1,+280,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-02 20:00:00 PDT,+4.6,+290,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-04-02 21:00:00 PDT,+3.1,+310,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-04-02 22:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-04-02 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 03:00:00 PDT,+2.1,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 04:00:00 PDT,+2.1,+110,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-04-03 05:00:00 PDT,+0,+0,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-04-03 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 14:00:00 PDT,+5.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 15:00:00 PDT,+5.1,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-04-03 16:00:00 PDT,+7.2,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-04-03 17:00:00 PDT,+5.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-03 18:00:00 PDT,+5.7,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-03 19:00:00 PDT,+3.6,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-03 20:00:00 PDT,+2.1,+310,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-03 21:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-04-03 22:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-03 23:00:00 PDT,+2.1,+200,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-04-04 00:00:00 PDT,+0,+0,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-04-04 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 03:00:00 PDT,+1.5,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 04:00:00 PDT,+0,+0,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-04-04 05:00:00 PDT,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 06:00:00 PDT,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-04-04 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 12:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-04 13:00:00 PDT,+5.1,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-04-04 14:00:00 PDT,+6.2,+250,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-04-04 15:00:00 PDT,+5.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-04 16:00:00 PDT,+6.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-04 17:00:00 PDT,+7.2,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-04 18:00:00 PDT,+5.7,+250,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-04-04 19:00:00 PDT,+5.7,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-04-04 20:00:00 PDT,+3.1,+290,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-04-04 21:00:00 PDT,+2.1,+320,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-04-04 22:00:00 PDT,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-04-04 23:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 00:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-04-05 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 04:00:00 PDT,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 05:00:00 PDT,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-04-05 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 10:00:00 PDT,+2.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-05 11:00:00 PDT,+2.6,+270,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-04-05 12:00:00 PDT,+4.6,+290,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-04-05 13:00:00 PDT,+3.1,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-04-05 14:00:00 PDT,+5.7,+250,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-04-05 15:00:00 PDT,+5.1,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-04-05 16:00:00 PDT,+7.7,+280,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-04-05 17:00:00 PDT,+6.7,+260,+5,+270,+0.0743782,+4590.79,+61722.3,-326.281,OK,OK,+8,+180,+0.0362491,+2237.37,+61722.3,-546.31,OK,OK
-2020-04-05 18:00:00 PDT,+7.2,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-05 19:00:00 PDT,+5.7,+270,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-04-05 20:00:00 PDT,+4.6,+280,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-04-05 21:00:00 PDT,+3.6,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-05 22:00:00 PDT,+2.6,+310,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-04-05 23:00:00 PDT,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-04-06 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 04:00:00 PDT,+2.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 05:00:00 PDT,+3.1,+250,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-04-06 06:00:00 PDT,+2.1,+230,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-04-06 07:00:00 PDT,+2.1,+200,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-04-06 08:00:00 PDT,+1.5,+230,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-04-06 09:00:00 PDT,+0,+0,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-04-06 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 12:00:00 PDT,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-06 13:00:00 PDT,+3.1,+320,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-04-06 14:00:00 PDT,+3.6,+310,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-04-06 15:00:00 PDT,+4.1,+290,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-04-06 16:00:00 PDT,+4.1,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-06 17:00:00 PDT,+5.7,+250,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-06 18:00:00 PDT,+5.7,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-04-06 19:00:00 PDT,+4.6,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-04-06 20:00:00 PDT,+4.1,+280,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-04-06 21:00:00 PDT,+2.1,+270,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-04-06 22:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-06 23:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 00:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-04-07 01:00:00 PDT,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 02:00:00 PDT,+2.1,+260,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-04-07 03:00:00 PDT,+1.5,+220,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-04-07 04:00:00 PDT,+2.1,+230,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-04-07 05:00:00 PDT,+2.6,+160,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-04-07 06:00:00 PDT,+2.1,+190,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-04-07 07:00:00 PDT,+0,+0,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-04-07 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 11:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 12:00:00 PDT,+1.8,+310,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-04-07 13:00:00 PDT,+2.1,+290,+5,+270,+0.0275264,+1698.99,+61722.3,+8.46202,OK,OK,+8,+180,+0.0151094,+932.587,+61722.3,+25.0532,OK,OK
-2020-04-07 14:00:00 PDT,+4.6,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-04-07 15:00:00 PDT,+4.1,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-07 16:00:00 PDT,+3.6,+270,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-04-07 17:00:00 PDT,+4.6,+250,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-07 18:00:00 PDT,+4.6,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-07 19:00:00 PDT,+3.6,+270,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-07 20:00:00 PDT,+3.1,+290,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-07 21:00:00 PDT,+0,+0,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-04-07 22:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-07 23:00:00 PDT,+2.6,+330,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-04-08 00:00:00 PDT,+2.1,+260,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-04-08 01:00:00 PDT,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-04-08 02:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 03:00:00 PDT,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-04-08 04:00:00 PDT,+2.1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 05:00:00 PDT,+0,+0,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-04-08 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 08:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 09:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-04-08 10:00:00 PDT,+1.4,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 11:00:00 PDT,+2.7,+300,+5,+270,+0.0264881,+1634.9,+61722.3,-22.9775,OK,OK,+8,+180,+0.0165159,+1019.4,+61722.3,-57.1636,OK,OK
-2020-04-08 12:00:00 PDT,+4.1,+270,+5,+270,+0.0304011,+1876.43,+61722.3,+22.0987,OK,OK,+8,+180,+0.0113943,+703.279,+61722.3,+116.267,OK,OK
-2020-04-08 13:00:00 PDT,+6.2,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-04-08 14:00:00 PDT,+8.2,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-04-08 15:00:00 PDT,+8.2,+270,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-04-08 16:00:00 PDT,+7.7,+220,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-04-08 17:00:00 PDT,+7.2,+250,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-04-08 18:00:00 PDT,+4.6,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-08 19:00:00 PDT,+4.1,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-04-08 20:00:00 PDT,+3.1,+230,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-08 21:00:00 PDT,+0,+0,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-04-08 22:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-08 23:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-09 00:00:00 PDT,+3.6,+340,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-04-09 01:00:00 PDT,+3.1,+340,+5,+270,+0.0303098,+1870.79,+61722.3,-40.107,OK,OK,+8,+180,+0.0110545,+682.307,+61722.3,-238.83,OK,OK
-2020-04-09 02:00:00 PDT,+2.6,+350,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-04-09 03:00:00 PDT,+1.5,+350,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-04-09 04:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-04-09 05:00:00 PDT,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-09 06:00:00 PDT,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-04-09 07:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-09 08:00:00 PDT,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-04-09 09:00:00 PDT,+1.5,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-09 10:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-04-09 11:00:00 PDT,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-09 12:00:00 PDT,+3.6,+250,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-04-09 13:00:00 PDT,+4.6,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-04-09 14:00:00 PDT,+4.6,+300,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-09 15:00:00 PDT,+5.1,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-09 16:00:00 PDT,+6.7,+260,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-09 17:00:00 PDT,+7.2,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-09 18:00:00 PDT,+6.2,+210,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-09 19:00:00 PDT,+5.7,+230,+5,+270,+0.0342334,+2112.96,+61722.3,+192.553,OK,OK,+8,+180,+0.00917267,+566.158,+61722.3,+1327.59,OK,OK
-2020-04-09 20:00:00 PDT,+5.7,+230,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-04-09 21:00:00 PDT,+3.6,+260,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-04-09 22:00:00 PDT,+3.1,+330,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-04-09 23:00:00 PDT,+3.1,+290,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-04-10 00:00:00 PDT,+0,+0,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-04-10 01:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 02:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-04-10 03:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 04:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-04-10 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 08:00:00 PDT,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 09:00:00 PDT,+1.5,+280,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-04-10 10:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-04-10 11:00:00 PDT,+1.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-10 12:00:00 PDT,+3.1,+300,+5,+270,+0.026748,+1650.95,+61722.3,-25.0931,OK,OK,+8,+180,+0.0161321,+995.711,+61722.3,-65.3902,OK,OK
-2020-04-10 13:00:00 PDT,+4.1,+260,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-04-10 14:00:00 PDT,+4.6,+280,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-10 15:00:00 PDT,+5.7,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-10 16:00:00 PDT,+7.2,+240,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-04-10 17:00:00 PDT,+7.2,+260,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-04-10 18:00:00 PDT,+7.2,+270,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-04-10 19:00:00 PDT,+4.6,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-04-10 20:00:00 PDT,+2.1,+280,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-10 21:00:00 PDT,+3.6,+270,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-04-10 22:00:00 PDT,+2.6,+50,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-10 23:00:00 PDT,+0,+0,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-04-11 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 02:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 03:00:00 PDT,+2.1,+90,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-04-11 04:00:00 PDT,+1.5,+330,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-04-11 05:00:00 PDT,+2.1,+70,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-04-11 06:00:00 PDT,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-04-11 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 12:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-11 13:00:00 PDT,+4.1,+250,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-04-11 14:00:00 PDT,+6.2,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-04-11 15:00:00 PDT,+7.2,+240,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-04-11 16:00:00 PDT,+6.2,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-04-11 17:00:00 PDT,+6.7,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-11 18:00:00 PDT,+6.7,+240,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-11 19:00:00 PDT,+4.1,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-11 20:00:00 PDT,+3.6,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-04-11 21:00:00 PDT,+1.8,+320,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-04-11 22:00:00 PDT,+0,+0,+5,+270,+0.0273116,+1685.74,+61722.3,-8.69634,OK,OK,+8,+180,+0.0153667,+948.467,+61722.3,-24.9284,OK,OK
-2020-04-11 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 03:00:00 PDT,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 04:00:00 PDT,+1.5,+130,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-04-12 05:00:00 PDT,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-04-12 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 09:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 10:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-04-12 11:00:00 PDT,+1.4,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 12:00:00 PDT,+2.7,+320,+5,+270,+0.0263058,+1623.65,+61722.3,-38.4562,OK,OK,+8,+180,+0.0167541,+1034.1,+61722.3,-93.0641,OK,OK
-2020-04-12 13:00:00 PDT,+4.1,+300,+5,+270,+0.0295242,+1822.3,+61722.3,-8.49914,OK,OK,+8,+180,+0.0123646,+763.173,+61722.3,-38.0533,OK,OK
-2020-04-12 14:00:00 PDT,+5.1,+270,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-04-12 15:00:00 PDT,+6.2,+250,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-04-12 16:00:00 PDT,+6.2,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-12 17:00:00 PDT,+5.1,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-12 18:00:00 PDT,+6.2,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-12 19:00:00 PDT,+3.1,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-12 20:00:00 PDT,+0,+0,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-04-12 21:00:00 PDT,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-12 22:00:00 PDT,+3.1,+10,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-12 23:00:00 PDT,+0,+0,+5,+270,+0.0273228,+1686.43,+61722.3,-102.016,OK,OK,+8,+180,+0.0142656,+880.506,+61722.3,-361.427,OK,OK
-2020-04-13 00:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 01:00:00 PDT,+3.1,+310,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-04-13 02:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-04-13 03:00:00 PDT,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 04:00:00 PDT,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-04-13 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 06:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 07:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-04-13 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 11:00:00 PDT,+2.9,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-13 12:00:00 PDT,+5.7,+260,+5,+270,+0.0307538,+1898.2,+61722.3,+7.12329,OK,OK,+8,+180,+0.0108707,+670.964,+61722.3,+41.9031,OK,OK
-2020-04-13 13:00:00 PDT,+6.7,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-13 14:00:00 PDT,+8.2,+260,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-04-13 15:00:00 PDT,+6.7,+250,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-04-13 16:00:00 PDT,+7,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-13 17:00:00 PDT,+7.2,+260,+5,+270,+0.0618977,+3820.46,+61722.3,-319.516,OK,OK,+8,+180,+0.0231541,+1429.12,+61722.3,-609.809,OK,OK
-2020-04-13 18:00:00 PDT,+6.7,+250,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-04-13 19:00:00 PDT,+4.6,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-13 20:00:00 PDT,+3.6,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-13 21:00:00 PDT,+5.1,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-04-13 22:00:00 PDT,+4.1,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-04-13 23:00:00 PDT,+3.6,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-04-14 00:00:00 PDT,+3.6,+260,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-04-14 01:00:00 PDT,+3.1,+260,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-04-14 02:00:00 PDT,+4.1,+260,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-04-14 03:00:00 PDT,+4.6,+280,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-14 04:00:00 PDT,+4.6,+260,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-14 05:00:00 PDT,+3.1,+290,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-14 06:00:00 PDT,+2.6,+290,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-04-14 07:00:00 PDT,+2.1,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-04-14 08:00:00 PDT,+3.1,+250,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-04-14 09:00:00 PDT,+4.6,+270,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-04-14 10:00:00 PDT,+6.2,+230,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-04-14 11:00:00 PDT,+5.7,+280,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-04-14 12:00:00 PDT,+5.7,+230,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-04-14 13:00:00 PDT,+7.7,+240,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-04-14 14:00:00 PDT,+7.7,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-04-14 15:00:00 PDT,+7.7,+250,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-04-14 16:00:00 PDT,+5.1,+290,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-04-14 17:00:00 PDT,+7.7,+260,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-04-14 18:00:00 PDT,+7.2,+250,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-04-14 19:00:00 PDT,+5.7,+240,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-14 20:00:00 PDT,+5.7,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-04-14 21:00:00 PDT,+3.1,+260,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-04-14 22:00:00 PDT,+1.5,+260,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-04-14 23:00:00 PDT,+3.1,+290,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-04-15 00:00:00 PDT,+2.1,+290,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-04-15 01:00:00 PDT,+3.6,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-04-15 02:00:00 PDT,+2.1,+250,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-04-15 03:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-04-15 04:00:00 PDT,+1.5,+140,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 05:00:00 PDT,+0,+0,+5,+270,+0.0257853,+1591.53,+61722.3,+8.35746,OK,OK,+8,+180,+0.017014,+1050.14,+61722.3,+19.783,OK,OK
-2020-04-15 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 07:00:00 PDT,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 08:00:00 PDT,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-04-15 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 12:00:00 PDT,+2.6,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-15 13:00:00 PDT,+3.1,+230,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-04-15 14:00:00 PDT,+3.6,+240,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-04-15 15:00:00 PDT,+4.1,+260,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-04-15 16:00:00 PDT,+6.2,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-15 17:00:00 PDT,+6.2,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-04-15 18:00:00 PDT,+5.1,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-04-15 19:00:00 PDT,+4.1,+260,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-15 20:00:00 PDT,+4.1,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-15 21:00:00 PDT,+4.1,+300,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-15 22:00:00 PDT,+3.6,+290,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-15 23:00:00 PDT,+3.6,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-04-16 00:00:00 PDT,+0,+0,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-04-16 01:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-16 02:00:00 PDT,+0,+0,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-04-16 03:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-16 04:00:00 PDT,+1.5,+310,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-04-16 05:00:00 PDT,+1.5,+20,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-04-16 06:00:00 PDT,+1.5,+150,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-04-16 07:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-04-16 08:00:00 PDT,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-16 09:00:00 PDT,+2.6,+150,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-04-16 10:00:00 PDT,+2.1,+110,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-04-16 11:00:00 PDT,+0,+0,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-04-16 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-16 13:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-16 14:00:00 PDT,+4.1,+330,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-04-16 15:00:00 PDT,+6.2,+250,+5,+270,+0.0336414,+2076.42,+61722.3,-7.00638,OK,OK,+8,+180,+0.0070223,+433.432,+61722.3,-176.086,OK,OK
-2020-04-16 16:00:00 PDT,+6.7,+230,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-16 17:00:00 PDT,+5.1,+260,+5,+270,+0.0465661,+2874.16,+61722.3,-127.909,OK,OK,+8,+180,+0.00722877,+446.176,+61722.3,+59.0718,OK,OK
-2020-04-16 18:00:00 PDT,+6.7,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-04-16 19:00:00 PDT,+6.2,+270,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-16 20:00:00 PDT,+5.1,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-04-16 21:00:00 PDT,+4.6,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-16 22:00:00 PDT,+4.1,+310,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-16 23:00:00 PDT,+3.1,+310,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-04-17 00:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-04-17 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-17 02:00:00 PDT,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-17 03:00:00 PDT,+1.5,+40,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-04-17 04:00:00 PDT,+2.1,+150,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-04-17 05:00:00 PDT,+2.6,+80,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-04-17 06:00:00 PDT,+1.5,+90,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-04-17 07:00:00 PDT,+2.1,+110,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-04-17 08:00:00 PDT,+0,+0,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-04-17 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-17 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-17 11:00:00 PDT,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-17 12:00:00 PDT,+1.8,+10,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-04-17 13:00:00 PDT,+1.5,+360,+5,+270,+0.0261753,+1615.6,+61722.3,-90.7476,OK,OK,+8,+180,+0.0165805,+1023.39,+61722.3,-225.668,OK,OK
-2020-04-17 14:00:00 PDT,+2.6,+360,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-04-17 15:00:00 PDT,+3.1,+40,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-04-17 16:00:00 PDT,+2.6,+20,+5,+270,+0.028658,+1768.84,+61722.3,-27.2576,OK,OK,+8,+180,+0.0113848,+702.693,+61722.3,-324.349,OK,OK
-2020-04-17 17:00:00 PDT,+3.6,+270,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-04-17 18:00:00 PDT,+2.9,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-17 19:00:00 PDT,+2.1,+240,+5,+270,+0.0310633,+1917.3,+61722.3,+73.3221,OK,OK,+8,+180,+0.0108753,+671.246,+61722.3,+413.538,OK,OK
-2020-04-17 20:00:00 PDT,+2.1,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-04-17 21:00:00 PDT,+3.1,+220,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-04-17 22:00:00 PDT,+4.1,+200,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-04-17 23:00:00 PDT,+2.1,+250,+5,+270,+0.0274307,+1693.09,+61722.3,+257.993,OK,OK,+8,+180,+0.0164298,+1014.08,+61722.3,+639.531,OK,OK
-2020-04-18 00:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-04-18 01:00:00 PDT,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-18 02:00:00 PDT,+2.6,+310,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-04-18 03:00:00 PDT,+2.1,+10,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-04-18 04:00:00 PDT,+3.1,+170,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-04-18 05:00:00 PDT,+2.6,+110,+5,+270,+0.024927,+1538.55,+61722.3,+139.167,OK,OK,+8,+180,+0.0186266,+1149.68,+61722.3,+274.314,OK,OK
-2020-04-18 06:00:00 PDT,+5.7,+190,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-04-18 07:00:00 PDT,+1.5,+50,+5,+270,+0.0256667,+1584.21,+61722.3,+481.635,OK,OK,+8,+180,+0.0203172,+1254.02,+61722.3,+818.585,OK,OK
-2020-04-18 08:00:00 PDT,+3.1,+120,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-04-18 09:00:00 PDT,+4.1,+180,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-04-18 10:00:00 PDT,+4.6,+250,+5,+270,+0.0239681,+1479.36,+61722.3,+318.11,OK,OK,+8,+180,+0.0216788,+1338.07,+61722.3,+474.009,OK,OK
-2020-04-18 11:00:00 PDT,+6.2,+230,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-18 12:00:00 PDT,+4.6,+310,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-04-18 13:00:00 PDT,+6.2,+240,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-04-18 14:00:00 PDT,+6.2,+260,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-04-18 15:00:00 PDT,+4.6,+310,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-04-18 16:00:00 PDT,+7.2,+240,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-04-18 17:00:00 PDT,+6.2,+220,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-04-18 18:00:00 PDT,+4.6,+230,+5,+270,+0.0388857,+2400.11,+61722.3,+44.2432,OK,OK,+8,+180,+0.00456409,+281.706,+61722.3,+1652.36,OK,OK
-2020-04-18 19:00:00 PDT,+5.7,+260,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-04-18 20:00:00 PDT,+3.6,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-18 21:00:00 PDT,+4.6,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-04-18 22:00:00 PDT,+3.1,+240,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-18 23:00:00 PDT,+2.1,+310,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-04-19 00:00:00 PDT,+2.1,+320,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-04-19 01:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-04-19 02:00:00 PDT,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 03:00:00 PDT,+1.5,+100,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-04-19 04:00:00 PDT,+1.5,+80,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-04-19 05:00:00 PDT,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-04-19 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 13:00:00 PDT,+2.9,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-19 14:00:00 PDT,+5.7,+240,+5,+270,+0.0311835,+1924.71,+61722.3,+19.7724,OK,OK,+8,+180,+0.0104179,+643.014,+61722.3,+126.623,OK,OK
-2020-04-19 15:00:00 PDT,+3.6,+260,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-04-19 16:00:00 PDT,+3.1,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-04-19 17:00:00 PDT,+6.2,+240,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-04-19 18:00:00 PDT,+5.1,+250,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-04-19 19:00:00 PDT,+4.1,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-19 20:00:00 PDT,+3.1,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-04-19 21:00:00 PDT,+2.6,+280,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-04-19 22:00:00 PDT,+2.6,+270,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-04-19 23:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-04-20 00:00:00 PDT,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 01:00:00 PDT,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-04-20 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 05:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 06:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-04-20 07:00:00 PDT,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 08:00:00 PDT,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-04-20 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 13:00:00 PDT,+2.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-20 14:00:00 PDT,+4.1,+280,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-04-20 15:00:00 PDT,+4.1,+250,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-04-20 16:00:00 PDT,+6.7,+250,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-04-20 17:00:00 PDT,+7.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-20 18:00:00 PDT,+6.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-20 19:00:00 PDT,+6.2,+270,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-20 20:00:00 PDT,+3.6,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-04-20 21:00:00 PDT,+2.1,+300,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-04-20 22:00:00 PDT,+3.1,+310,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-04-20 23:00:00 PDT,+2.6,+300,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-04-21 00:00:00 PDT,+1.5,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-04-21 01:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-04-21 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-21 03:00:00 PDT,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-21 04:00:00 PDT,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-04-21 05:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-21 06:00:00 PDT,+3.6,+320,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-04-21 07:00:00 PDT,+0,+0,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-04-21 08:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-21 09:00:00 PDT,+1.5,+250,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-04-21 10:00:00 PDT,+2.6,+300,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-04-21 11:00:00 PDT,+3.6,+340,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-04-21 12:00:00 PDT,+3.6,+290,+5,+270,+0.0303098,+1870.79,+61722.3,-40.107,OK,OK,+8,+180,+0.0110545,+682.307,+61722.3,-238.83,OK,OK
-2020-04-21 13:00:00 PDT,+4.6,+260,+5,+270,+0.0303098,+1870.79,+61722.3,-40.107,OK,OK,+8,+180,+0.0110545,+682.307,+61722.3,-238.83,OK,OK
-2020-04-21 14:00:00 PDT,+6.1,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-04-21 15:00:00 PDT,+7.7,+260,+5,+270,+0.0525534,+3243.72,+61722.3,-206.207,OK,OK,+8,+180,+0.0134418,+829.659,+61722.3,-445.063,OK,OK
-2020-04-21 16:00:00 PDT,+7.2,+250,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-04-21 17:00:00 PDT,+8.2,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-21 18:00:00 PDT,+7.2,+260,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-04-21 19:00:00 PDT,+5.7,+270,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-04-21 20:00:00 PDT,+5.1,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-04-21 21:00:00 PDT,+7.2,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-04-21 22:00:00 PDT,+4.1,+270,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-21 23:00:00 PDT,+4.6,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-04-22 00:00:00 PDT,+6.2,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-04-22 01:00:00 PDT,+4.6,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-22 02:00:00 PDT,+4.1,+260,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-04-22 03:00:00 PDT,+3.1,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-22 04:00:00 PDT,+3.6,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-04-22 05:00:00 PDT,+4.1,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-04-22 06:00:00 PDT,+3.6,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-04-22 07:00:00 PDT,+3.1,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-22 08:00:00 PDT,+3.6,+270,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-04-22 09:00:00 PDT,+3.1,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-22 10:00:00 PDT,+3.6,+270,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-04-22 11:00:00 PDT,+3.1,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-22 12:00:00 PDT,+3.6,+270,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-04-22 13:00:00 PDT,+3.1,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-22 14:00:00 PDT,+4.6,+240,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-04-22 15:00:00 PDT,+3.6,+270,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-04-22 16:00:00 PDT,+4.6,+310,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-22 17:00:00 PDT,+3.1,+300,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-04-22 18:00:00 PDT,+6.7,+250,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-04-22 19:00:00 PDT,+4.1,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-04-22 20:00:00 PDT,+3.6,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-22 21:00:00 PDT,+4.6,+270,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-04-22 22:00:00 PDT,+5.1,+290,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-04-22 23:00:00 PDT,+4.6,+290,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-04-23 00:00:00 PDT,+4.1,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-04-23 01:00:00 PDT,+4.1,+270,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-23 02:00:00 PDT,+1.5,+290,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-23 03:00:00 PDT,+2.1,+270,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-04-23 04:00:00 PDT,+2.1,+280,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-23 05:00:00 PDT,+2.6,+270,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-23 06:00:00 PDT,+2.1,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-04-23 07:00:00 PDT,+2.1,+310,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-23 08:00:00 PDT,+3.1,+290,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-23 09:00:00 PDT,+4.1,+270,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-04-23 10:00:00 PDT,+3.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-04-23 11:00:00 PDT,+1.5,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-04-23 12:00:00 PDT,+4.1,+300,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-04-23 13:00:00 PDT,+4.6,+300,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-04-23 14:00:00 PDT,+5.1,+290,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-04-23 15:00:00 PDT,+4.1,+290,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-04-23 16:00:00 PDT,+3.6,+270,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-23 17:00:00 PDT,+3.6,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-23 18:00:00 PDT,+4.1,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-23 19:00:00 PDT,+4.6,+250,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-04-23 20:00:00 PDT,+3.6,+260,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-23 21:00:00 PDT,+2.6,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-04-23 22:00:00 PDT,+1.5,+310,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-04-23 23:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-04-24 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 08:00:00 PDT,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 09:00:00 PDT,+2.1,+180,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-04-24 10:00:00 PDT,+0,+0,+5,+270,+0.0251675,+1553.39,+61722.3,+122.186,OK,OK,+8,+180,+0.0187936,+1159.98,+61722.3,+236.412,OK,OK
-2020-04-24 11:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-24 12:00:00 PDT,+2.9,+310,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-04-24 13:00:00 PDT,+3.3,+310,+5,+270,+0.0307538,+1898.2,+61722.3,+7.12329,OK,OK,+8,+180,+0.0108707,+670.964,+61722.3,+41.9031,OK,OK
-2020-04-24 14:00:00 PDT,+3.6,+310,+5,+270,+0.0323887,+1999.1,+61722.3,+5.06407,OK,OK,+8,+180,+0.00884281,+545.798,+61722.3,+49.0898,OK,OK
-2020-04-24 15:00:00 PDT,+4.1,+270,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-04-24 16:00:00 PDT,+4.6,+310,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-04-24 17:00:00 PDT,+5.7,+260,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-04-24 18:00:00 PDT,+5.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-24 19:00:00 PDT,+3.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-24 20:00:00 PDT,+2.1,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-04-24 21:00:00 PDT,+2.6,+280,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-04-24 22:00:00 PDT,+2.1,+360,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-04-24 23:00:00 PDT,+2.1,+320,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-04-25 00:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-04-25 01:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 02:00:00 PDT,+1.5,+160,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-04-25 03:00:00 PDT,+1.5,+340,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-04-25 04:00:00 PDT,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-04-25 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 06:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 07:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-04-25 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 11:00:00 PDT,+1.3,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 12:00:00 PDT,+2.6,+310,+5,+270,+0.0262156,+1618.08,+61722.3,-36.3007,OK,OK,+8,+180,+0.016894,+1042.73,+61722.3,-86.4195,OK,OK
-2020-04-25 13:00:00 PDT,+4.6,+280,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-04-25 14:00:00 PDT,+7.2,+250,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-04-25 15:00:00 PDT,+6.2,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-04-25 16:00:00 PDT,+5.7,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-04-25 17:00:00 PDT,+6.2,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-04-25 18:00:00 PDT,+4.6,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-04-25 19:00:00 PDT,+3.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-04-25 20:00:00 PDT,+2.1,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-04-25 21:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-04-25 22:00:00 PDT,+2.6,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-25 23:00:00 PDT,+1.5,+160,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-04-26 00:00:00 PDT,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-04-26 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 10:00:00 PDT,+0.8,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-26 11:00:00 PDT,+1.6,+300,+5,+270,+0.0259274,+1600.3,+61722.3,-14.4486,OK,OK,+8,+180,+0.0173602,+1071.51,+61722.3,-32.6031,OK,OK
-2020-04-26 12:00:00 PDT,+2.3,+270,+5,+270,+0.0272463,+1681.7,+61722.3,+23.5925,OK,OK,+8,+180,+0.0155282,+958.433,+61722.3,+66.1276,OK,OK
-2020-04-26 13:00:00 PDT,+3.1,+240,+5,+270,+0.0291603,+1799.84,+61722.3,+69.5308,OK,OK,+8,+180,+0.0131379,+810.901,+61722.3,+269.575,OK,OK
-2020-04-26 14:00:00 PDT,+5.1,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-04-26 15:00:00 PDT,+6.2,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-26 16:00:00 PDT,+6.2,+260,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-04-26 17:00:00 PDT,+6.2,+240,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-04-26 18:00:00 PDT,+5.7,+260,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-04-26 19:00:00 PDT,+5.1,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-26 20:00:00 PDT,+4.1,+310,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-04-26 21:00:00 PDT,+2.6,+310,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-04-26 22:00:00 PDT,+2.1,+320,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-04-26 23:00:00 PDT,+1.5,+310,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-04-27 00:00:00 PDT,+1.5,+360,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-04-27 01:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-04-27 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 03:00:00 PDT,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 04:00:00 PDT,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-04-27 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 07:00:00 PDT,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 08:00:00 PDT,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-04-27 09:00:00 PDT,+2.1,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 10:00:00 PDT,+0,+0,+5,+270,+0.025323,+1562.99,+61722.3,+90.7692,OK,OK,+8,+180,+0.0181625,+1121.03,+61722.3,+187.776,OK,OK
-2020-04-27 11:00:00 PDT,+4.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-27 12:00:00 PDT,+3.1,+240,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-27 13:00:00 PDT,+4.1,+280,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-04-27 14:00:00 PDT,+6.7,+260,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-04-27 15:00:00 PDT,+7.7,+270,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-27 16:00:00 PDT,+8.2,+250,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-04-27 17:00:00 PDT,+7.2,+270,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-04-27 18:00:00 PDT,+7.2,+260,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-04-27 19:00:00 PDT,+5.7,+260,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-04-27 20:00:00 PDT,+3.1,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-04-27 21:00:00 PDT,+2.6,+290,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-04-27 22:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-04-27 23:00:00 PDT,+3.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-28 00:00:00 PDT,+2.6,+260,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-04-28 01:00:00 PDT,+3.1,+250,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-04-28 02:00:00 PDT,+4.6,+270,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-04-28 03:00:00 PDT,+4.6,+260,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-04-28 04:00:00 PDT,+2.1,+210,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-04-28 05:00:00 PDT,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-04-28 06:00:00 PDT,+2.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-28 07:00:00 PDT,+2.1,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-04-28 08:00:00 PDT,+3.6,+270,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-04-28 09:00:00 PDT,+1.5,+210,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-04-28 10:00:00 PDT,+1.5,+280,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-04-28 11:00:00 PDT,+6.7,+260,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-04-28 12:00:00 PDT,+4.6,+240,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-28 13:00:00 PDT,+2.1,+260,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-04-28 14:00:00 PDT,+5.1,+300,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-04-28 15:00:00 PDT,+5.1,+290,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-04-28 16:00:00 PDT,+4.1,+260,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-04-28 17:00:00 PDT,+6.7,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-28 18:00:00 PDT,+8.2,+260,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-04-28 19:00:00 PDT,+7.7,+250,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-04-28 20:00:00 PDT,+4.1,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-04-28 21:00:00 PDT,+3.6,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-04-28 22:00:00 PDT,+4.1,+260,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-04-28 23:00:00 PDT,+4.6,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-04-29 00:00:00 PDT,+4.6,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-29 01:00:00 PDT,+4.1,+290,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-04-29 02:00:00 PDT,+2.1,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-04-29 03:00:00 PDT,+2.1,+260,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-04-29 04:00:00 PDT,+1.5,+350,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-04-29 05:00:00 PDT,+1.5,+360,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-04-29 06:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-04-29 07:00:00 PDT,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-29 08:00:00 PDT,+1.5,+130,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-04-29 09:00:00 PDT,+2,+150,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-04-29 10:00:00 PDT,+2.5,+170,+5,+270,+0.0257063,+1586.65,+61722.3,+32.4495,OK,OK,+8,+180,+0.0169774,+1047.88,+61722.3,+77.3873,OK,OK
-2020-04-29 11:00:00 PDT,+3.1,+190,+5,+270,+0.0251825,+1554.32,+61722.3,+109.522,OK,OK,+8,+180,+0.0183266,+1131.16,+61722.3,+222.709,OK,OK
-2020-04-29 12:00:00 PDT,+3.6,+200,+5,+270,+0.0256253,+1581.65,+61722.3,+208.246,OK,OK,+8,+180,+0.0185083,+1142.37,+61722.3,+414.665,OK,OK
-2020-04-29 13:00:00 PDT,+4.1,+220,+5,+270,+0.0270251,+1668.05,+61722.3,+229.033,OK,OK,+8,+180,+0.0167291,+1032.56,+61722.3,+550.059,OK,OK
-2020-04-29 14:00:00 PDT,+4.6,+240,+5,+270,+0.0312059,+1926.1,+61722.3,+153.818,OK,OK,+8,+180,+0.0113797,+702.383,+61722.3,+756.259,OK,OK
-2020-04-29 15:00:00 PDT,+4.6,+310,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-04-29 16:00:00 PDT,+5.7,+310,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-04-29 17:00:00 PDT,+6.2,+250,+5,+270,+0.0480061,+2963.04,+61722.3,-20.8189,OK,OK,+8,+180,+0.00906887,+559.751,+61722.3,-57.0884,OK,OK
-2020-04-29 18:00:00 PDT,+6.2,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-29 19:00:00 PDT,+5.1,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-04-29 20:00:00 PDT,+2.6,+290,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-29 21:00:00 PDT,+1.3,+330,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-04-29 22:00:00 PDT,+0,+0,+5,+270,+0.0263722,+1627.75,+61722.3,-21.7681,OK,OK,+8,+180,+0.0166886,+1030.06,+61722.3,-53.0591,OK,OK
-2020-04-29 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 00:00:00 PDT,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 01:00:00 PDT,+1.5,+290,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-04-30 02:00:00 PDT,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-04-30 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 05:00:00 PDT,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 06:00:00 PDT,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-04-30 07:00:00 PDT,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 08:00:00 PDT,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-04-30 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 11:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-04-30 12:00:00 PDT,+4.1,+300,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-04-30 13:00:00 PDT,+4.6,+300,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-04-30 14:00:00 PDT,+5.7,+270,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-04-30 15:00:00 PDT,+6.7,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-04-30 16:00:00 PDT,+7.7,+290,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-04-30 17:00:00 PDT,+6.2,+270,+5,+270,+0.0741336,+4575.69,+61722.3,-247.076,OK,OK,+8,+180,+0.0361309,+2230.08,+61722.3,-415.755,OK,OK
-2020-04-30 18:00:00 PDT,+6.2,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-04-30 19:00:00 PDT,+5.1,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-04-30 20:00:00 PDT,+3.9,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-04-30 21:00:00 PDT,+2.7,+300,+5,+270,+0.0367184,+2266.34,+61722.3,-1.08496,OK,OK,+8,+180,+0.00423943,+261.667,+61722.3,+489.757,OK,OK
-2020-04-30 22:00:00 PDT,+1.5,+330,+5,+270,+0.0304011,+1876.43,+61722.3,+22.0987,OK,OK,+8,+180,+0.0113943,+703.279,+61722.3,+116.267,OK,OK
-2020-04-30 23:00:00 PDT,+1.3,+360,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-01 00:00:00 PDT,+1.1,+0,+5,+270,+0.0258592,+1596.09,+61722.3,-63.8396,OK,OK,+8,+180,+0.0173776,+1072.59,+61722.3,-143.901,OK,OK
-2020-05-01 01:00:00 PDT,+0.9,+0,+5,+270,+0.0258025,+1592.59,+61722.3,-54.7891,OK,OK,+8,+180,+0.017489,+1079.46,+61722.3,-121.938,OK,OK
-2020-05-01 02:00:00 PDT,+0.6,+290,+5,+270,+0.0257555,+1589.69,+61722.3,-45.3548,OK,OK,+8,+180,+0.0175817,+1085.18,+61722.3,-99.886,OK,OK
-2020-05-01 03:00:00 PDT,+0.4,+300,+5,+270,+0.0258881,+1597.87,+61722.3,+17.8906,OK,OK,+8,+180,+0.0174442,+1076.7,+61722.3,+39.9834,OK,OK
-2020-05-01 04:00:00 PDT,+0.2,+0,+5,+270,+0.0257574,+1589.8,+61722.3,+7.44413,OK,OK,+8,+180,+0.0176295,+1088.13,+61722.3,+16.3011,OK,OK
-2020-05-01 05:00:00 PDT,+0,+0,+5,+270,+0.0256659,+1584.16,+61722.3,-10.3053,OK,OK,+8,+180,+0.0177604,+1096.21,+61722.3,-22.2468,OK,OK
-2020-05-01 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-01 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-01 08:00:00 PDT,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-01 09:00:00 PDT,+2.1,+270,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-05-01 10:00:00 PDT,+1.5,+270,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-05-01 11:00:00 PDT,+2.1,+270,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-05-01 12:00:00 PDT,+3.6,+290,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-05-01 13:00:00 PDT,+4.1,+280,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-05-01 14:00:00 PDT,+5.7,+300,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-01 15:00:00 PDT,+3.6,+260,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-05-01 16:00:00 PDT,+5.1,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-05-01 17:00:00 PDT,+5.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-05-01 18:00:00 PDT,+6.2,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-05-01 19:00:00 PDT,+4.6,+260,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-05-01 20:00:00 PDT,+5.7,+270,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-01 21:00:00 PDT,+4.6,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-05-01 22:00:00 PDT,+3.6,+270,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-01 23:00:00 PDT,+2.6,+300,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-02 00:00:00 PDT,+2.6,+290,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-05-02 01:00:00 PDT,+2.1,+280,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-05-02 02:00:00 PDT,+2.1,+300,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-05-02 03:00:00 PDT,+2.1,+340,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-05-02 04:00:00 PDT,+1.5,+330,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-05-02 05:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-02 06:00:00 PDT,+1.5,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-02 07:00:00 PDT,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-05-02 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-02 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-02 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-02 11:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-02 12:00:00 PDT,+1.5,+330,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-05-02 13:00:00 PDT,+4.1,+320,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-02 14:00:00 PDT,+4.1,+290,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-05-02 15:00:00 PDT,+5.1,+220,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-05-02 16:00:00 PDT,+5.7,+230,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-05-02 17:00:00 PDT,+6.7,+230,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-05-02 18:00:00 PDT,+7.2,+250,+5,+270,+0.0465661,+2874.16,+61722.3,-127.909,OK,OK,+8,+180,+0.00722877,+446.176,+61722.3,+59.0718,OK,OK
-2020-05-02 19:00:00 PDT,+6.7,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-05-02 20:00:00 PDT,+4.6,+270,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-02 21:00:00 PDT,+3.1,+290,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-02 22:00:00 PDT,+2.1,+310,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-02 23:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-05-03 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 05:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 06:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-05-03 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 08:00:00 PDT,+2.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 09:00:00 PDT,+0,+0,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-05-03 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 11:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-03 12:00:00 PDT,+3.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-03 13:00:00 PDT,+3.6,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-03 14:00:00 PDT,+5.1,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-03 15:00:00 PDT,+5.1,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-03 16:00:00 PDT,+6.2,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-03 17:00:00 PDT,+6.7,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-05-03 18:00:00 PDT,+6.2,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-03 19:00:00 PDT,+5.7,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-03 20:00:00 PDT,+4.1,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-03 21:00:00 PDT,+3.1,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-03 22:00:00 PDT,+1.5,+300,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-03 23:00:00 PDT,+2.1,+330,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-05-04 00:00:00 PDT,+2.1,+320,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-05-04 01:00:00 PDT,+2.1,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-05-04 02:00:00 PDT,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-05-04 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-04 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-04 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-04 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-04 07:00:00 PDT,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-04 08:00:00 PDT,+2.1,+260,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-04 09:00:00 PDT,+2.1,+230,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-04 10:00:00 PDT,+2.1,+270,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-04 11:00:00 PDT,+2.1,+220,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-04 12:00:00 PDT,+1.5,+240,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-04 13:00:00 PDT,+3.1,+260,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-05-04 14:00:00 PDT,+6.2,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-05-04 15:00:00 PDT,+6.7,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-05-04 16:00:00 PDT,+7.7,+240,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-04 17:00:00 PDT,+7.2,+270,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-05-04 18:00:00 PDT,+6.7,+270,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-05-04 19:00:00 PDT,+6.7,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-04 20:00:00 PDT,+7.7,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-04 21:00:00 PDT,+8.2,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-05-04 22:00:00 PDT,+4.1,+260,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-05-04 23:00:00 PDT,+3.6,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-05-05 00:00:00 PDT,+3.6,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-05-05 01:00:00 PDT,+2.6,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-05-05 02:00:00 PDT,+2.1,+310,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-05-05 03:00:00 PDT,+2.6,+300,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-05-05 04:00:00 PDT,+3.1,+120,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-05-05 05:00:00 PDT,+3.1,+110,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-05-05 06:00:00 PDT,+5.1,+260,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-05-05 07:00:00 PDT,+4.1,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-05 08:00:00 PDT,+3.1,+240,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-05 09:00:00 PDT,+2.1,+260,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-05-05 10:00:00 PDT,+2.6,+350,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-05-05 11:00:00 PDT,+3.6,+310,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-05-05 12:00:00 PDT,+4.6,+250,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-05-05 13:00:00 PDT,+3.6,+260,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-05-05 14:00:00 PDT,+6.7,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-05-05 15:00:00 PDT,+7.2,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-05-05 16:00:00 PDT,+6.7,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-05 17:00:00 PDT,+6.7,+250,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-05-05 18:00:00 PDT,+5.7,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-05-05 19:00:00 PDT,+4.6,+230,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-05-05 20:00:00 PDT,+5.1,+240,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-05-05 21:00:00 PDT,+5.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-05-05 22:00:00 PDT,+4.1,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-05-05 23:00:00 PDT,+3.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-06 00:00:00 PDT,+1.5,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-05-06 01:00:00 PDT,+2.1,+250,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-06 02:00:00 PDT,+2.6,+250,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-05-06 03:00:00 PDT,+0,+0,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-05-06 04:00:00 PDT,+3.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-06 05:00:00 PDT,+2.6,+260,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-05-06 06:00:00 PDT,+1.5,+230,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-05-06 07:00:00 PDT,+2.1,+270,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-05-06 08:00:00 PDT,+1.5,+250,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-05-06 09:00:00 PDT,+1.5,+300,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-05-06 10:00:00 PDT,+2.6,+210,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-05-06 11:00:00 PDT,+5.7,+220,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-05-06 12:00:00 PDT,+5.1,+220,+5,+270,+0.0367308,+2267.11,+61722.3,+81.1927,OK,OK,+8,+180,+0.00600198,+370.456,+61722.3,+1385.76,OK,OK
-2020-05-06 13:00:00 PDT,+4.6,+240,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-05-06 14:00:00 PDT,+7.2,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-05-06 15:00:00 PDT,+6.7,+230,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-06 16:00:00 PDT,+7.2,+240,+5,+270,+0.0465661,+2874.16,+61722.3,-127.909,OK,OK,+8,+180,+0.00722877,+446.176,+61722.3,+59.0718,OK,OK
-2020-05-06 17:00:00 PDT,+7.2,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-06 18:00:00 PDT,+6.7,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-06 19:00:00 PDT,+6.2,+250,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-05-06 20:00:00 PDT,+3.1,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-06 21:00:00 PDT,+4.6,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-05-06 22:00:00 PDT,+3.6,+240,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-05-06 23:00:00 PDT,+5.1,+230,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-05-07 00:00:00 PDT,+2.6,+230,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-05-07 01:00:00 PDT,+3.6,+230,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-05-07 02:00:00 PDT,+0,+0,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-05-07 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-07 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-07 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-07 06:00:00 PDT,+1.5,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-07 07:00:00 PDT,+0,+0,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-05-07 08:00:00 PDT,+1.5,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-07 09:00:00 PDT,+1.5,+250,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-05-07 10:00:00 PDT,+1.5,+280,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-05-07 11:00:00 PDT,+1.5,+310,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-05-07 12:00:00 PDT,+2.6,+340,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-05-07 13:00:00 PDT,+3.1,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-05-07 14:00:00 PDT,+3.6,+270,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-05-07 15:00:00 PDT,+5.1,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-07 16:00:00 PDT,+4.6,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-07 17:00:00 PDT,+4.6,+290,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-05-07 18:00:00 PDT,+5.7,+260,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-05-07 19:00:00 PDT,+5.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-07 20:00:00 PDT,+4.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-07 21:00:00 PDT,+3.6,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-07 22:00:00 PDT,+3.1,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-07 23:00:00 PDT,+2.1,+290,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-08 00:00:00 PDT,+2.6,+270,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-08 01:00:00 PDT,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-08 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 11:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-08 12:00:00 PDT,+3.6,+320,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-05-08 13:00:00 PDT,+5.7,+280,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-05-08 14:00:00 PDT,+3.1,+340,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-05-08 15:00:00 PDT,+5.1,+280,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-05-08 16:00:00 PDT,+5.7,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-05-08 17:00:00 PDT,+6.2,+240,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-05-08 18:00:00 PDT,+6.2,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-05-08 19:00:00 PDT,+4.6,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-05-08 20:00:00 PDT,+4.6,+270,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-05-08 21:00:00 PDT,+4.1,+280,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-05-08 22:00:00 PDT,+4.6,+260,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-08 23:00:00 PDT,+4.1,+270,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-09 00:00:00 PDT,+2.6,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-09 01:00:00 PDT,+1.5,+290,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-09 02:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-09 03:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-09 04:00:00 PDT,+2.6,+300,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-05-09 05:00:00 PDT,+2.1,+340,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-05-09 06:00:00 PDT,+0,+0,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-05-09 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-09 08:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-09 09:00:00 PDT,+2.1,+240,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-05-09 10:00:00 PDT,+1.5,+180,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-05-09 11:00:00 PDT,+0,+0,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-05-09 12:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-09 13:00:00 PDT,+5.7,+290,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-05-09 14:00:00 PDT,+5.1,+300,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-05-09 15:00:00 PDT,+3.1,+290,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-05-09 16:00:00 PDT,+4.1,+260,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-09 17:00:00 PDT,+5.7,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-05-09 18:00:00 PDT,+6.2,+240,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-05-09 19:00:00 PDT,+4.6,+230,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-05-09 20:00:00 PDT,+4.1,+250,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-05-09 21:00:00 PDT,+3.6,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-09 22:00:00 PDT,+2.6,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-05-09 23:00:00 PDT,+3.6,+240,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-05-10 00:00:00 PDT,+2.6,+270,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-05-10 01:00:00 PDT,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-10 02:00:00 PDT,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 03:00:00 PDT,+1.5,+10,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-05-10 04:00:00 PDT,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-05-10 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 06:00:00 PDT,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 07:00:00 PDT,+1.5,+350,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-05-10 08:00:00 PDT,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-05-10 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 11:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 12:00:00 PDT,+2.1,+360,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-10 13:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-05-10 14:00:00 PDT,+3.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-10 15:00:00 PDT,+7.7,+210,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-10 16:00:00 PDT,+8.2,+230,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-05-10 17:00:00 PDT,+8.2,+260,+5,+270,+0.0578885,+3573.01,+61722.3,-320.151,OK,OK,+8,+180,+0.0186244,+1149.54,+61722.3,-568.468,OK,OK
-2020-05-10 18:00:00 PDT,+6.7,+250,+5,+270,+0.0578885,+3573.01,+61722.3,-320.151,OK,OK,+8,+180,+0.0186244,+1149.54,+61722.3,-568.468,OK,OK
-2020-05-10 19:00:00 PDT,+5.7,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-10 20:00:00 PDT,+1.5,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-05-10 21:00:00 PDT,+3.6,+270,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-05-10 22:00:00 PDT,+0,+0,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-10 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 01:00:00 PDT,+2.6,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 02:00:00 PDT,+2.1,+50,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-05-11 03:00:00 PDT,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-05-11 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 05:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 06:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-11 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 08:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 09:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-11 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 11:00:00 PDT,+1.5,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-11 12:00:00 PDT,+3.6,+270,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-05-11 13:00:00 PDT,+4.6,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-11 14:00:00 PDT,+3.6,+310,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-11 15:00:00 PDT,+6.2,+260,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-05-11 16:00:00 PDT,+6.2,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-11 17:00:00 PDT,+6.7,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-11 18:00:00 PDT,+7.2,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-05-11 19:00:00 PDT,+5.7,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-05-11 20:00:00 PDT,+3.6,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-11 21:00:00 PDT,+2.6,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-11 22:00:00 PDT,+1.5,+320,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-11 23:00:00 PDT,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-05-12 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 01:00:00 PDT,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 02:00:00 PDT,+2.1,+60,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-12 03:00:00 PDT,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-12 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 09:00:00 PDT,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 10:00:00 PDT,+2.6,+200,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-05-12 11:00:00 PDT,+0,+0,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-05-12 12:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-12 13:00:00 PDT,+2.1,+310,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-05-12 14:00:00 PDT,+3.6,+280,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-05-12 15:00:00 PDT,+5.1,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-12 16:00:00 PDT,+6.2,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-05-12 17:00:00 PDT,+7.2,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-12 18:00:00 PDT,+5.1,+270,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-05-12 19:00:00 PDT,+3.6,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-05-12 20:00:00 PDT,+2.6,+270,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-05-12 21:00:00 PDT,+2.6,+250,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-12 22:00:00 PDT,+1.5,+280,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-12 23:00:00 PDT,+1.5,+40,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-13 00:00:00 PDT,+1.5,+10,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-13 01:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-13 02:00:00 PDT,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 03:00:00 PDT,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-05-13 04:00:00 PDT,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 05:00:00 PDT,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-05-13 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 12:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-13 13:00:00 PDT,+4.1,+300,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-05-13 14:00:00 PDT,+4.6,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-05-13 15:00:00 PDT,+5.7,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-05-13 16:00:00 PDT,+6.2,+250,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-05-13 17:00:00 PDT,+6.7,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-13 18:00:00 PDT,+5.7,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-13 19:00:00 PDT,+4.6,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-13 20:00:00 PDT,+2.1,+260,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-05-13 21:00:00 PDT,+3.1,+250,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-05-13 22:00:00 PDT,+2.6,+300,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-05-13 23:00:00 PDT,+2.1,+10,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-05-14 00:00:00 PDT,+0,+0,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-05-14 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 12:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 13:00:00 PDT,+4.1,+290,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-05-14 14:00:00 PDT,+5.7,+260,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-05-14 15:00:00 PDT,+4.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-14 16:00:00 PDT,+6.7,+270,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-14 17:00:00 PDT,+7.2,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-14 18:00:00 PDT,+6.2,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-05-14 19:00:00 PDT,+6.2,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-14 20:00:00 PDT,+3.1,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-14 21:00:00 PDT,+0,+0,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-05-14 22:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-14 23:00:00 PDT,+2.6,+350,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-15 00:00:00 PDT,+0,+0,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-05-15 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 11:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-15 12:00:00 PDT,+2.6,+320,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-05-15 13:00:00 PDT,+3.6,+290,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-05-15 14:00:00 PDT,+5.7,+260,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-05-15 15:00:00 PDT,+5.1,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-15 16:00:00 PDT,+6.7,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-05-15 17:00:00 PDT,+5.1,+240,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-15 18:00:00 PDT,+5.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-05-15 19:00:00 PDT,+4.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-05-15 20:00:00 PDT,+4.1,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-15 21:00:00 PDT,+2.6,+320,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-15 22:00:00 PDT,+3.1,+320,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-05-15 23:00:00 PDT,+3.1,+300,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-05-16 00:00:00 PDT,+3.1,+310,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-05-16 01:00:00 PDT,+2.1,+300,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-05-16 02:00:00 PDT,+0,+0,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-16 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-16 04:00:00 PDT,+3.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-16 05:00:00 PDT,+0,+0,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-05-16 06:00:00 PDT,+3.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-16 07:00:00 PDT,+4.1,+270,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-05-16 08:00:00 PDT,+4.1,+240,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-16 09:00:00 PDT,+2.1,+180,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-16 10:00:00 PDT,+2.1,+140,+5,+270,+0.0251675,+1553.39,+61722.3,+122.186,OK,OK,+8,+180,+0.0187936,+1159.98,+61722.3,+236.412,OK,OK
-2020-05-16 11:00:00 PDT,+0,+0,+5,+270,+0.0251675,+1553.39,+61722.3,+122.186,OK,OK,+8,+180,+0.0187936,+1159.98,+61722.3,+236.412,OK,OK
-2020-05-16 12:00:00 PDT,+3.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-16 13:00:00 PDT,+5.7,+260,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-16 14:00:00 PDT,+4.6,+290,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-16 15:00:00 PDT,+6.2,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-05-16 16:00:00 PDT,+7.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-05-16 17:00:00 PDT,+7.7,+240,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-05-16 18:00:00 PDT,+6.2,+250,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-05-16 19:00:00 PDT,+6.7,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-16 20:00:00 PDT,+5.7,+250,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-05-16 21:00:00 PDT,+4.6,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-05-16 22:00:00 PDT,+3.6,+260,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-16 23:00:00 PDT,+4.6,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-05-17 00:00:00 PDT,+3.6,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-05-17 01:00:00 PDT,+3.1,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-17 02:00:00 PDT,+3.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-05-17 03:00:00 PDT,+2.1,+320,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-05-17 04:00:00 PDT,+2.1,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-05-17 05:00:00 PDT,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-05-17 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-17 07:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-17 08:00:00 PDT,+1.5,+300,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-05-17 09:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-05-17 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-17 11:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-17 12:00:00 PDT,+3.6,+270,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-05-17 13:00:00 PDT,+3.6,+320,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-17 14:00:00 PDT,+3.6,+330,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-17 15:00:00 PDT,+4.1,+250,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-17 16:00:00 PDT,+4.6,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-17 17:00:00 PDT,+6.7,+250,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-17 18:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-17 19:00:00 PDT,+6.2,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-17 20:00:00 PDT,+4.1,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-17 21:00:00 PDT,+4.1,+280,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-05-17 22:00:00 PDT,+2.6,+290,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-05-17 23:00:00 PDT,+2.1,+280,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-18 00:00:00 PDT,+1.5,+300,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-05-18 01:00:00 PDT,+2.1,+330,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-05-18 02:00:00 PDT,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-05-18 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 12:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-18 13:00:00 PDT,+3.6,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-05-18 14:00:00 PDT,+3.1,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-05-18 15:00:00 PDT,+4.6,+240,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-05-18 16:00:00 PDT,+6.2,+260,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-05-18 17:00:00 PDT,+5.7,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-18 18:00:00 PDT,+6.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-18 19:00:00 PDT,+6.2,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-18 20:00:00 PDT,+4.1,+280,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-18 21:00:00 PDT,+3.6,+270,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-18 22:00:00 PDT,+2.6,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-18 23:00:00 PDT,+1.5,+290,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-05-19 00:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-19 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 09:00:00 PDT,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 10:00:00 PDT,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-05-19 11:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-19 12:00:00 PDT,+3.1,+300,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-19 13:00:00 PDT,+4.1,+250,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-05-19 14:00:00 PDT,+6.2,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-19 15:00:00 PDT,+4.6,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-19 16:00:00 PDT,+6.2,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-05-19 17:00:00 PDT,+7.7,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-19 18:00:00 PDT,+6.7,+250,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-05-19 19:00:00 PDT,+3.1,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-19 20:00:00 PDT,+3.1,+240,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-05-19 21:00:00 PDT,+3.1,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-05-19 22:00:00 PDT,+1.5,+330,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-05-19 23:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-20 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 10:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-20 11:00:00 PDT,+2.6,+300,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-20 12:00:00 PDT,+3.6,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-05-20 13:00:00 PDT,+4.1,+290,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-20 14:00:00 PDT,+5.7,+260,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-05-20 15:00:00 PDT,+6.2,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-20 16:00:00 PDT,+4.6,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-20 17:00:00 PDT,+5.1,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-20 18:00:00 PDT,+6.2,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-05-20 19:00:00 PDT,+5.1,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-05-20 20:00:00 PDT,+3.6,+280,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-05-20 21:00:00 PDT,+3.1,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-20 22:00:00 PDT,+3.1,+340,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-20 23:00:00 PDT,+2.1,+60,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-21 00:00:00 PDT,+0,+0,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-05-21 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 11:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-21 12:00:00 PDT,+1.5,+280,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-05-21 13:00:00 PDT,+3.6,+240,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-05-21 14:00:00 PDT,+4.6,+290,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-05-21 15:00:00 PDT,+5.7,+280,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-05-21 16:00:00 PDT,+6.7,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-05-21 17:00:00 PDT,+6.7,+290,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-05-21 18:00:00 PDT,+5.7,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-05-21 19:00:00 PDT,+5.7,+280,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-05-21 20:00:00 PDT,+4.1,+300,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-05-21 21:00:00 PDT,+4.1,+300,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-05-21 22:00:00 PDT,+0,+0,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-05-21 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 01:00:00 PDT,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 02:00:00 PDT,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-05-22 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 09:00:00 PDT,+1.5,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 10:00:00 PDT,+2.1,+90,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-05-22 11:00:00 PDT,+0,+0,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-05-22 12:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-22 13:00:00 PDT,+3.1,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-05-22 14:00:00 PDT,+5.1,+260,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-22 15:00:00 PDT,+5.1,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-22 16:00:00 PDT,+6.2,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-22 17:00:00 PDT,+5.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-22 18:00:00 PDT,+6.7,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-22 19:00:00 PDT,+6.2,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-05-22 20:00:00 PDT,+4.6,+280,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-05-22 21:00:00 PDT,+3.1,+310,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-05-22 22:00:00 PDT,+2.1,+350,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-05-22 23:00:00 PDT,+1.5,+290,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-05-23 00:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-23 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 06:00:00 PDT,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 07:00:00 PDT,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-05-23 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 09:00:00 PDT,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-23 10:00:00 PDT,+4.6,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-23 11:00:00 PDT,+4.1,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-05-23 12:00:00 PDT,+4.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-23 13:00:00 PDT,+4.6,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-23 14:00:00 PDT,+5.1,+280,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-05-23 15:00:00 PDT,+6.2,+260,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-05-23 16:00:00 PDT,+6.7,+290,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-23 17:00:00 PDT,+6.2,+270,+5,+270,+0.0615005,+3795.95,+61722.3,-175.275,OK,OK,+8,+180,+0.0230833,+1424.75,+61722.3,-345.428,OK,OK
-2020-05-23 18:00:00 PDT,+5.7,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-05-23 19:00:00 PDT,+7.2,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-23 20:00:00 PDT,+4.6,+270,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-05-23 21:00:00 PDT,+2.1,+240,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-23 22:00:00 PDT,+2.6,+260,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-05-23 23:00:00 PDT,+2.1,+260,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-05-24 00:00:00 PDT,+2.6,+290,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-05-24 01:00:00 PDT,+2.6,+320,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-24 02:00:00 PDT,+2.1,+250,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-24 03:00:00 PDT,+2.1,+280,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-05-24 04:00:00 PDT,+1.5,+320,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-05-24 05:00:00 PDT,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-05-24 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-24 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-24 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-24 09:00:00 PDT,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-24 10:00:00 PDT,+1.5,+290,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-05-24 11:00:00 PDT,+2.1,+310,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-24 12:00:00 PDT,+3.1,+320,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-05-24 13:00:00 PDT,+4.1,+280,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-05-24 14:00:00 PDT,+4.6,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-24 15:00:00 PDT,+5.7,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-05-24 16:00:00 PDT,+5.7,+280,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-05-24 17:00:00 PDT,+5.7,+270,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-05-24 18:00:00 PDT,+6.7,+260,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-05-24 19:00:00 PDT,+6.2,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-05-24 20:00:00 PDT,+4.1,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-24 21:00:00 PDT,+4.6,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-05-24 22:00:00 PDT,+2.1,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-24 23:00:00 PDT,+1.5,+290,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-05-25 00:00:00 PDT,+1.5,+320,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-25 01:00:00 PDT,+1.5,+280,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-25 02:00:00 PDT,+1.5,+280,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-25 03:00:00 PDT,+2.1,+270,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-05-25 04:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-05-25 05:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-25 06:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-05-25 07:00:00 PDT,+1.5,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-25 08:00:00 PDT,+0,+0,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-05-25 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-25 10:00:00 PDT,+2.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-25 11:00:00 PDT,+2.6,+240,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-05-25 12:00:00 PDT,+1.5,+240,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-05-25 13:00:00 PDT,+2.6,+250,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-05-25 14:00:00 PDT,+3.6,+250,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-05-25 15:00:00 PDT,+6.2,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-05-25 16:00:00 PDT,+7.2,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-05-25 17:00:00 PDT,+6.7,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-05-25 18:00:00 PDT,+7.7,+270,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-05-25 19:00:00 PDT,+6.7,+270,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-05-25 20:00:00 PDT,+4.1,+280,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-25 21:00:00 PDT,+4.6,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-25 22:00:00 PDT,+1.5,+240,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-05-25 23:00:00 PDT,+1.5,+260,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-05-26 00:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-05-26 01:00:00 PDT,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-26 02:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-05-26 03:00:00 PDT,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-26 04:00:00 PDT,+1.5,+280,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-05-26 05:00:00 PDT,+2.1,+300,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-26 06:00:00 PDT,+2.1,+350,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-26 07:00:00 PDT,+1.5,+340,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-26 08:00:00 PDT,+1.5,+340,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-05-26 09:00:00 PDT,+2.6,+270,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-05-26 10:00:00 PDT,+2.1,+320,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-26 11:00:00 PDT,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-05-26 12:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-26 13:00:00 PDT,+4.6,+260,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-05-26 14:00:00 PDT,+4.6,+290,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-26 15:00:00 PDT,+6.7,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-26 16:00:00 PDT,+7.2,+250,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-05-26 17:00:00 PDT,+6.7,+270,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-05-26 18:00:00 PDT,+7.2,+280,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-26 19:00:00 PDT,+5.7,+270,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-05-26 20:00:00 PDT,+4.1,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-05-26 21:00:00 PDT,+2.6,+290,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-05-26 22:00:00 PDT,+2.1,+250,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-26 23:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-05-27 00:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-27 01:00:00 PDT,+1.5,+300,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-27 02:00:00 PDT,+1.5,+300,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-27 03:00:00 PDT,+2.6,+310,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-27 04:00:00 PDT,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-05-27 05:00:00 PDT,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-27 06:00:00 PDT,+2.1,+210,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-05-27 07:00:00 PDT,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-05-27 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-27 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-27 10:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-27 11:00:00 PDT,+2.1,+280,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-05-27 12:00:00 PDT,+3.6,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-05-27 13:00:00 PDT,+5.1,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-27 14:00:00 PDT,+4.6,+260,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-05-27 15:00:00 PDT,+6.2,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-05-27 16:00:00 PDT,+5.7,+250,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-05-27 17:00:00 PDT,+6.7,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-05-27 18:00:00 PDT,+6.7,+280,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-05-27 19:00:00 PDT,+5.7,+260,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-05-27 20:00:00 PDT,+5.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-27 21:00:00 PDT,+3.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-27 22:00:00 PDT,+3.1,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-05-27 23:00:00 PDT,+2.1,+290,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-05-28 00:00:00 PDT,+2.6,+270,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-28 01:00:00 PDT,+3.6,+280,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-28 02:00:00 PDT,+3.6,+260,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-28 03:00:00 PDT,+0,+0,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-28 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-28 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-28 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-28 07:00:00 PDT,+2.1,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-28 08:00:00 PDT,+2.1,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-05-28 09:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-05-28 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-28 11:00:00 PDT,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-28 12:00:00 PDT,+3.6,+270,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-05-28 13:00:00 PDT,+4.6,+250,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-28 14:00:00 PDT,+4.1,+280,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-05-28 15:00:00 PDT,+4.6,+270,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-28 16:00:00 PDT,+5.7,+250,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-28 17:00:00 PDT,+6.7,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-05-28 18:00:00 PDT,+7.2,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-28 19:00:00 PDT,+6.2,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-05-28 20:00:00 PDT,+5.1,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-28 21:00:00 PDT,+4.1,+280,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-28 22:00:00 PDT,+2.1,+300,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-28 23:00:00 PDT,+3.6,+300,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-29 00:00:00 PDT,+3.1,+290,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-05-29 01:00:00 PDT,+3.6,+280,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-05-29 02:00:00 PDT,+2.6,+270,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-29 03:00:00 PDT,+1.5,+280,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-05-29 04:00:00 PDT,+1.5,+300,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-29 05:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-29 06:00:00 PDT,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-29 07:00:00 PDT,+2.1,+250,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-29 08:00:00 PDT,+1.5,+280,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-05-29 09:00:00 PDT,+2.6,+280,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-29 10:00:00 PDT,+2.1,+260,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-05-29 11:00:00 PDT,+5.1,+260,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-05-29 12:00:00 PDT,+3.1,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-29 13:00:00 PDT,+5.1,+240,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-05-29 14:00:00 PDT,+3.6,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-05-29 15:00:00 PDT,+3.6,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-29 16:00:00 PDT,+3.6,+300,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-29 17:00:00 PDT,+5.7,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-05-29 18:00:00 PDT,+7.2,+240,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-29 19:00:00 PDT,+4.6,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-29 20:00:00 PDT,+4.1,+260,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-05-29 21:00:00 PDT,+5.1,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-05-29 22:00:00 PDT,+4.1,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-05-29 23:00:00 PDT,+5.1,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-30 00:00:00 PDT,+2.6,+280,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-05-30 01:00:00 PDT,+2.1,+290,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-05-30 02:00:00 PDT,+2.6,+290,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-30 03:00:00 PDT,+3.1,+280,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-30 04:00:00 PDT,+1.5,+280,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-05-30 05:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-05-30 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-30 07:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-30 08:00:00 PDT,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-05-30 09:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-30 10:00:00 PDT,+1.5,+180,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-05-30 11:00:00 PDT,+2.1,+340,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-05-30 12:00:00 PDT,+2.1,+30,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-05-30 13:00:00 PDT,+2.6,+350,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-05-30 14:00:00 PDT,+2.6,+310,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-05-30 15:00:00 PDT,+4.1,+270,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-05-30 16:00:00 PDT,+6.2,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-05-30 17:00:00 PDT,+7.7,+240,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-05-30 18:00:00 PDT,+7.2,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-05-30 19:00:00 PDT,+7.2,+260,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-30 20:00:00 PDT,+6.7,+270,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-30 21:00:00 PDT,+5.7,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-05-30 22:00:00 PDT,+3.6,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-05-30 23:00:00 PDT,+2.6,+340,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-05-31 00:00:00 PDT,+1.5,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-05-31 01:00:00 PDT,+1.5,+190,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-05-31 02:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-05-31 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-31 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-31 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-31 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-31 07:00:00 PDT,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-05-31 08:00:00 PDT,+2.6,+290,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-05-31 09:00:00 PDT,+2.6,+310,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-31 10:00:00 PDT,+1.5,+360,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-05-31 11:00:00 PDT,+1.5,+350,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-31 12:00:00 PDT,+2.6,+340,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-05-31 13:00:00 PDT,+3.1,+330,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-05-31 14:00:00 PDT,+4.6,+270,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-05-31 15:00:00 PDT,+5.7,+270,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-05-31 16:00:00 PDT,+7.2,+240,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-05-31 17:00:00 PDT,+7,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-05-31 18:00:00 PDT,+6.7,+260,+5,+270,+0.0584161,+3605.57,+61722.3,-305.805,OK,OK,+8,+180,+0.0194337,+1199.49,+61722.3,-599.567,OK,OK
-2020-05-31 19:00:00 PDT,+6.2,+270,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-05-31 20:00:00 PDT,+5.7,+280,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-05-31 21:00:00 PDT,+4.1,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-05-31 22:00:00 PDT,+4.1,+280,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-05-31 23:00:00 PDT,+3.8,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-06-01 00:00:00 PDT,+3.5,+290,+5,+270,+0.0360136,+2222.84,+61722.3,+2.01878,OK,OK,+8,+180,+0.0048537,+299.581,+61722.3,+327.732,OK,OK
-2020-06-01 01:00:00 PDT,+3.2,+0,+5,+270,+0.034319,+2118.24,+61722.3,+13.8924,OK,OK,+8,+180,+0.0067665,+417.644,+61722.3,+276.373,OK,OK
-2020-06-01 02:00:00 PDT,+3,+0,+5,+270,+0.0269289,+1662.11,+61722.3,-118.512,OK,OK,+8,+180,+0.0153984,+950.426,+61722.3,-343.775,OK,OK
-2020-06-01 03:00:00 PDT,+2.7,+270,+5,+270,+0.026767,+1652.12,+61722.3,-116.208,OK,OK,+8,+180,+0.015685,+968.114,+61722.3,-323.872,OK,OK
-2020-06-01 04:00:00 PDT,+2.4,+250,+5,+270,+0.0305671,+1886.67,+61722.3,+63.0988,OK,OK,+8,+180,+0.0113951,+703.328,+61722.3,+325.715,OK,OK
-2020-06-01 05:00:00 PDT,+2.1,+280,+5,+270,+0.0289741,+1788.34,+61722.3,+99.1702,OK,OK,+8,+180,+0.0134906,+832.673,+61722.3,+362.953,OK,OK
-2020-06-01 06:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-06-01 07:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-01 08:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-06-01 09:00:00 PDT,+2.6,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-01 10:00:00 PDT,+3.1,+90,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-06-01 11:00:00 PDT,+0,+0,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-06-01 12:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-01 13:00:00 PDT,+4.6,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-06-01 14:00:00 PDT,+5.1,+270,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-06-01 15:00:00 PDT,+6.2,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-06-01 16:00:00 PDT,+6.7,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-06-01 17:00:00 PDT,+8.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-01 18:00:00 PDT,+8.7,+270,+5,+270,+0.0834793,+5152.53,+61722.3,-541.885,OK,OK,+8,+180,+0.0452623,+2793.69,+61722.3,-838.653,OK,OK
-2020-06-01 19:00:00 PDT,+8.2,+250,+5,+270,+0.0834793,+5152.53,+61722.3,-541.885,OK,OK,+8,+180,+0.0452623,+2793.69,+61722.3,-838.653,OK,OK
-2020-06-01 20:00:00 PDT,+8.2,+260,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-06-01 21:00:00 PDT,+6.7,+270,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-06-01 22:00:00 PDT,+4.1,+280,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-06-01 23:00:00 PDT,+2.6,+300,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-06-02 00:00:00 PDT,+2.1,+330,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-02 01:00:00 PDT,+2.6,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-06-02 02:00:00 PDT,+2.1,+290,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-02 03:00:00 PDT,+2.1,+290,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-06-02 04:00:00 PDT,+1.5,+290,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-06-02 05:00:00 PDT,+1.5,+260,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-06-02 06:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-06-02 07:00:00 PDT,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-02 08:00:00 PDT,+1.5,+200,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-06-02 09:00:00 PDT,+2.1,+210,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-06-02 10:00:00 PDT,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-06-02 11:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-02 12:00:00 PDT,+1.5,+330,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-06-02 13:00:00 PDT,+2.1,+310,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-06-02 14:00:00 PDT,+2.6,+300,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-06-02 15:00:00 PDT,+5.1,+280,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-02 16:00:00 PDT,+7.2,+240,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-06-02 17:00:00 PDT,+6.7,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-06-02 18:00:00 PDT,+7.7,+250,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-06-02 19:00:00 PDT,+7.2,+260,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-06-02 20:00:00 PDT,+6.7,+270,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-06-02 21:00:00 PDT,+5.7,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-06-02 22:00:00 PDT,+5.7,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-02 23:00:00 PDT,+3.6,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-03 00:00:00 PDT,+2.1,+320,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-03 01:00:00 PDT,+1.5,+310,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-06-03 02:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-03 03:00:00 PDT,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-03 04:00:00 PDT,+2.6,+280,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-06-03 05:00:00 PDT,+2.1,+280,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-06-03 06:00:00 PDT,+4.1,+270,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-06-03 07:00:00 PDT,+3.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-06-03 08:00:00 PDT,+3.1,+260,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-03 09:00:00 PDT,+3.1,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-03 10:00:00 PDT,+2.6,+290,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-03 11:00:00 PDT,+3.1,+260,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-03 12:00:00 PDT,+3.1,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-03 13:00:00 PDT,+3.1,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-03 14:00:00 PDT,+5.7,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-03 15:00:00 PDT,+1.5,+290,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-06-03 16:00:00 PDT,+3.6,+280,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-06-03 17:00:00 PDT,+5.7,+250,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-03 18:00:00 PDT,+6.2,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-03 19:00:00 PDT,+5.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-03 20:00:00 PDT,+5.1,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-03 21:00:00 PDT,+3.1,+280,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-06-03 22:00:00 PDT,+2.6,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-06-03 23:00:00 PDT,+2.6,+280,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-04 00:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-04 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 06:00:00 PDT,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 07:00:00 PDT,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-06-04 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 11:00:00 PDT,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-04 12:00:00 PDT,+3.1,+230,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-06-04 13:00:00 PDT,+3.6,+290,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-06-04 14:00:00 PDT,+7.2,+270,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-06-04 15:00:00 PDT,+7.2,+260,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-06-04 16:00:00 PDT,+8.2,+270,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-06-04 17:00:00 PDT,+7.7,+270,+5,+270,+0.0798934,+4931.2,+61722.3,-441.041,OK,OK,+8,+180,+0.041754,+2577.15,+61722.3,-702.552,OK,OK
-2020-06-04 18:00:00 PDT,+8.2,+270,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-06-04 19:00:00 PDT,+5.7,+260,+5,+270,+0.0798934,+4931.2,+61722.3,-441.041,OK,OK,+8,+180,+0.041754,+2577.15,+61722.3,-702.552,OK,OK
-2020-06-04 20:00:00 PDT,+3.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-04 21:00:00 PDT,+4.1,+300,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-06-04 22:00:00 PDT,+2.1,+230,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-06-04 23:00:00 PDT,+0,+0,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-06-05 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 11:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-05 12:00:00 PDT,+2.1,+330,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-06-05 13:00:00 PDT,+5.1,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-06-05 14:00:00 PDT,+5.1,+290,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-06-05 15:00:00 PDT,+6.2,+300,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-06-05 16:00:00 PDT,+7.7,+250,+5,+270,+0.0547243,+3377.7,+61722.3,-85.9151,OK,OK,+8,+180,+0.0161036,+993.953,+61722.3,-194.254,OK,OK
-2020-06-05 17:00:00 PDT,+7.2,+270,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-06-05 18:00:00 PDT,+5.7,+250,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-06-05 19:00:00 PDT,+6.2,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-05 20:00:00 PDT,+4.1,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-06-05 21:00:00 PDT,+4.1,+310,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-05 22:00:00 PDT,+4.1,+290,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-05 23:00:00 PDT,+1.5,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-06 00:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-06-06 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 03:00:00 PDT,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 04:00:00 PDT,+2.1,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-06-06 05:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-06-06 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 10:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-06 11:00:00 PDT,+1.5,+240,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-06-06 12:00:00 PDT,+3.6,+250,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-06-06 13:00:00 PDT,+7.7,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-06-06 14:00:00 PDT,+9.3,+250,+5,+270,+0.0743782,+4590.79,+61722.3,-326.281,OK,OK,+8,+180,+0.0362491,+2237.37,+61722.3,-546.31,OK,OK
-2020-06-06 15:00:00 PDT,+8.2,+290,+5,+270,+0.0858936,+5301.55,+61722.3,-628.273,OK,OK,+8,+180,+0.0475523,+2935.04,+61722.3,-953.745,OK,OK
-2020-06-06 16:00:00 PDT,+10.3,+270,+5,+270,+0.0811778,+5010.47,+61722.3,-283.223,OK,OK,+8,+180,+0.0433391,+2674.99,+61722.3,-448.58,OK,OK
-2020-06-06 17:00:00 PDT,+7.2,+280,+5,+270,+0.113763,+7021.71,+61722.3,-683.093,OK,OK,+8,+180,+0.0760347,+4693.03,+61722.3,-919.324,OK,OK
-2020-06-06 18:00:00 PDT,+6.2,+250,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-06-06 19:00:00 PDT,+5.7,+280,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-06 20:00:00 PDT,+3.6,+270,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-06-06 21:00:00 PDT,+2.6,+250,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-06 22:00:00 PDT,+3.1,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-06 23:00:00 PDT,+2.6,+290,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-07 00:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-07 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-07 02:00:00 PDT,+1.5,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-07 03:00:00 PDT,+1.5,+130,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-06-07 04:00:00 PDT,+0,+0,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-06-07 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-07 06:00:00 PDT,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-07 07:00:00 PDT,+3.1,+290,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-06-07 08:00:00 PDT,+1.5,+280,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-07 09:00:00 PDT,+2.1,+290,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-06-07 10:00:00 PDT,+4.6,+290,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-06-07 11:00:00 PDT,+4.6,+300,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-06-07 12:00:00 PDT,+5.7,+280,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-06-07 13:00:00 PDT,+4.1,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-06-07 14:00:00 PDT,+6.2,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-06-07 15:00:00 PDT,+5.1,+290,+5,+270,+0.0559185,+3451.42,+61722.3,-140.15,OK,OK,+8,+180,+0.0172484,+1064.61,+61722.3,-305.297,OK,OK
-2020-06-07 16:00:00 PDT,+6.7,+280,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-06-07 17:00:00 PDT,+6.7,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-06-07 18:00:00 PDT,+7.2,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-06-07 19:00:00 PDT,+6.2,+250,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-06-07 20:00:00 PDT,+4.6,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-07 21:00:00 PDT,+4.1,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-06-07 22:00:00 PDT,+2.1,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-06-07 23:00:00 PDT,+2.1,+280,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-08 00:00:00 PDT,+2.6,+290,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-08 01:00:00 PDT,+2.1,+300,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-08 02:00:00 PDT,+1.5,+250,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-06-08 03:00:00 PDT,+1.5,+200,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-06-08 04:00:00 PDT,+2.6,+250,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-06-08 05:00:00 PDT,+2.6,+230,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-08 06:00:00 PDT,+1.5,+270,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-08 07:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-06-08 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-08 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-08 10:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-08 11:00:00 PDT,+2.6,+310,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-06-08 12:00:00 PDT,+4.6,+280,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-06-08 13:00:00 PDT,+4.1,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-06-08 14:00:00 PDT,+5.1,+280,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-06-08 15:00:00 PDT,+6.7,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-06-08 16:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-08 17:00:00 PDT,+7.7,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-08 18:00:00 PDT,+8.2,+260,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-06-08 19:00:00 PDT,+8.7,+260,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-06-08 20:00:00 PDT,+6.2,+250,+5,+270,+0.0834793,+5152.53,+61722.3,-541.885,OK,OK,+8,+180,+0.0452623,+2793.69,+61722.3,-838.653,OK,OK
-2020-06-08 21:00:00 PDT,+5.1,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-08 22:00:00 PDT,+5.7,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-06-08 23:00:00 PDT,+4.6,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-09 00:00:00 PDT,+3.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-06-09 01:00:00 PDT,+3.1,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-06-09 02:00:00 PDT,+3.6,+270,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-06-09 03:00:00 PDT,+3.6,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-09 04:00:00 PDT,+2.6,+330,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-09 05:00:00 PDT,+2.1,+320,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-06-09 06:00:00 PDT,+1.5,+350,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-06-09 07:00:00 PDT,+2.6,+250,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-06-09 08:00:00 PDT,+1.5,+290,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-09 09:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-06-09 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-09 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-09 12:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-09 13:00:00 PDT,+1.5,+290,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-09 14:00:00 PDT,+1.5,+270,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-09 15:00:00 PDT,+4.1,+250,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-09 16:00:00 PDT,+4.6,+250,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-06-09 17:00:00 PDT,+6.2,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-06-09 18:00:00 PDT,+7.2,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-09 19:00:00 PDT,+6.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-06-09 20:00:00 PDT,+5.1,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-09 21:00:00 PDT,+5.7,+250,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-06-09 22:00:00 PDT,+3.1,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-09 23:00:00 PDT,+2.1,+240,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-06-10 00:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-10 01:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-10 02:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-06-10 03:00:00 PDT,+1.5,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-10 04:00:00 PDT,+2.6,+230,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-06-10 05:00:00 PDT,+2.1,+240,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-06-10 06:00:00 PDT,+2.1,+240,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-10 07:00:00 PDT,+2.1,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-10 08:00:00 PDT,+2.1,+250,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-10 09:00:00 PDT,+2.1,+230,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-10 10:00:00 PDT,+2.9,+250,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-10 11:00:00 PDT,+3.8,+270,+5,+270,+0.0305866,+1887.87,+61722.3,+91.7277,OK,OK,+8,+180,+0.0115359,+712.024,+61722.3,+455.804,OK,OK
-2020-06-10 12:00:00 PDT,+4.6,+290,+5,+270,+0.0358657,+2213.71,+61722.3,+12.3597,OK,OK,+8,+180,+0.00529064,+326.55,+61722.3,+563.134,OK,OK
-2020-06-10 13:00:00 PDT,+5.1,+280,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-06-10 14:00:00 PDT,+5.7,+280,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-06-10 15:00:00 PDT,+7.7,+260,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-06-10 16:00:00 PDT,+7.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-06-10 17:00:00 PDT,+8.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-06-10 18:00:00 PDT,+8.2,+250,+5,+270,+0.0834793,+5152.53,+61722.3,-541.885,OK,OK,+8,+180,+0.0452623,+2793.69,+61722.3,-838.653,OK,OK
-2020-06-10 19:00:00 PDT,+7.2,+260,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-06-10 20:00:00 PDT,+4.6,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-06-10 21:00:00 PDT,+4.6,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-06-10 22:00:00 PDT,+3.1,+290,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-06-10 23:00:00 PDT,+2.1,+270,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-11 00:00:00 PDT,+2.1,+270,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-11 01:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-11 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 07:00:00 PDT,+3.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 08:00:00 PDT,+0,+0,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-06-11 09:00:00 PDT,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 10:00:00 PDT,+1.5,+310,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-06-11 11:00:00 PDT,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-06-11 12:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-11 13:00:00 PDT,+2.1,+350,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-06-11 14:00:00 PDT,+1.5,+330,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-06-11 15:00:00 PDT,+3.1,+310,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-06-11 16:00:00 PDT,+4.1,+270,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-06-11 17:00:00 PDT,+6.7,+250,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-06-11 18:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-11 19:00:00 PDT,+6.2,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-11 20:00:00 PDT,+5.1,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-11 21:00:00 PDT,+4.1,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-06-11 22:00:00 PDT,+3.1,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-11 23:00:00 PDT,+2.1,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-12 00:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-06-12 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 11:00:00 PDT,+3.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-12 12:00:00 PDT,+3.6,+260,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-06-12 13:00:00 PDT,+6.2,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-06-12 14:00:00 PDT,+3.6,+280,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-06-12 15:00:00 PDT,+5.7,+260,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-12 16:00:00 PDT,+5.7,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-12 17:00:00 PDT,+6.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-12 18:00:00 PDT,+8.2,+240,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-12 19:00:00 PDT,+8.2,+240,+5,+270,+0.0653705,+4034.81,+61722.3,-423.636,OK,OK,+8,+180,+0.0264543,+1632.82,+61722.3,-751.242,OK,OK
-2020-06-12 20:00:00 PDT,+5.7,+270,+5,+270,+0.0653705,+4034.81,+61722.3,-423.636,OK,OK,+8,+180,+0.0264543,+1632.82,+61722.3,-751.242,OK,OK
-2020-06-12 21:00:00 PDT,+4.1,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-06-12 22:00:00 PDT,+4.6,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-12 23:00:00 PDT,+3.6,+300,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-06-13 00:00:00 PDT,+2.6,+280,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-06-13 01:00:00 PDT,+1.5,+280,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-06-13 02:00:00 PDT,+1.5,+340,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-06-13 03:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-06-13 04:00:00 PDT,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-13 05:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-06-13 06:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-13 07:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-06-13 08:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-13 09:00:00 PDT,+2.1,+350,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-06-13 10:00:00 PDT,+2.1,+340,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-06-13 11:00:00 PDT,+1.5,+300,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-06-13 12:00:00 PDT,+3.1,+250,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-06-13 13:00:00 PDT,+3.6,+260,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-06-13 14:00:00 PDT,+5.7,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-06-13 15:00:00 PDT,+6,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-13 16:00:00 PDT,+6.2,+240,+5,+270,+0.0491284,+3032.32,+61722.3,-174.009,OK,OK,+8,+180,+0.00980938,+605.457,+61722.3,-336.857,OK,OK
-2020-06-13 17:00:00 PDT,+5.9,+250,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-06-13 18:00:00 PDT,+5.6,+260,+5,+270,+0.0482892,+2980.52,+61722.3,-161.475,OK,OK,+8,+180,+0.00894557,+552.141,+61722.3,-295.983,OK,OK
-2020-06-13 19:00:00 PDT,+5.2,+260,+5,+270,+0.0479917,+2962.16,+61722.3,-146.576,OK,OK,+8,+180,+0.00868669,+536.162,+61722.3,-300.744,OK,OK
-2020-06-13 20:00:00 PDT,+4.9,+270,+5,+270,+0.0446671,+2756.95,+61722.3,-101.499,OK,OK,+8,+180,+0.00529527,+326.836,+61722.3,-85.22,OK,OK
-2020-06-13 21:00:00 PDT,+4.6,+280,+5,+270,+0.0434019,+2678.86,+61722.3,-77.1478,OK,OK,+8,+180,+0.00404934,+249.934,+61722.3,-7.82524,OK,OK
-2020-06-13 22:00:00 PDT,+2.6,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-06-13 23:00:00 PDT,+2.6,+320,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-06-14 00:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-06-14 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 02:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 03:00:00 PDT,+0.8,+320,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-06-14 04:00:00 PDT,+0,+0,+5,+270,+0.0259777,+1603.4,+61722.3,-4.8348,OK,OK,+8,+180,+0.0172949,+1067.48,+61722.3,-10.9888,OK,OK
-2020-06-14 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 11:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-14 12:00:00 PDT,+2.1,+320,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-06-14 13:00:00 PDT,+3.1,+290,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-06-14 14:00:00 PDT,+5.7,+270,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-14 15:00:00 PDT,+6.2,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-06-14 16:00:00 PDT,+6.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-14 17:00:00 PDT,+6.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-14 18:00:00 PDT,+5.7,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-14 19:00:00 PDT,+5.7,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-14 20:00:00 PDT,+4.6,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-14 21:00:00 PDT,+2.1,+240,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-06-14 22:00:00 PDT,+2.1,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-14 23:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-15 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 12:00:00 PDT,+1.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-15 13:00:00 PDT,+2.1,+310,+5,+270,+0.0260563,+1608.25,+61722.3,-31.6128,OK,OK,+8,+180,+0.0171427,+1058.09,+61722.3,-73.1282,OK,OK
-2020-06-15 14:00:00 PDT,+5.1,+290,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-06-15 15:00:00 PDT,+7.2,+260,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-06-15 16:00:00 PDT,+6.7,+270,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-06-15 17:00:00 PDT,+7.7,+280,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-06-15 18:00:00 PDT,+7.7,+280,+5,+270,+0.0743782,+4590.79,+61722.3,-326.281,OK,OK,+8,+180,+0.0362491,+2237.37,+61722.3,-546.31,OK,OK
-2020-06-15 19:00:00 PDT,+6.7,+280,+5,+270,+0.0743782,+4590.79,+61722.3,-326.281,OK,OK,+8,+180,+0.0362491,+2237.37,+61722.3,-546.31,OK,OK
-2020-06-15 20:00:00 PDT,+4.6,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-06-15 21:00:00 PDT,+4.1,+280,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-06-15 22:00:00 PDT,+2.6,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-06-15 23:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-16 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 13:00:00 PDT,+2.6,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-16 14:00:00 PDT,+4.1,+320,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-06-16 15:00:00 PDT,+5.7,+290,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-06-16 16:00:00 PDT,+5.7,+270,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-06-16 17:00:00 PDT,+6.2,+270,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-06-16 18:00:00 PDT,+6.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-16 19:00:00 PDT,+5.1,+240,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-16 20:00:00 PDT,+4.1,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-06-16 21:00:00 PDT,+4.1,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-16 22:00:00 PDT,+4.1,+300,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-16 23:00:00 PDT,+3.1,+290,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-17 00:00:00 PDT,+2.6,+310,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-17 01:00:00 PDT,+1.5,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-06-17 02:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-06-17 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 06:00:00 PDT,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 07:00:00 PDT,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-06-17 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 12:00:00 PDT,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-17 13:00:00 PDT,+3.6,+280,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-06-17 14:00:00 PDT,+3.6,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-17 15:00:00 PDT,+6.7,+250,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-17 16:00:00 PDT,+6.7,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-17 17:00:00 PDT,+6.7,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-17 18:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-17 19:00:00 PDT,+5.7,+280,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-17 20:00:00 PDT,+4.6,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-06-17 21:00:00 PDT,+4.1,+280,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-06-17 22:00:00 PDT,+1.5,+320,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-06-17 23:00:00 PDT,+1.5,+240,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-06-18 00:00:00 PDT,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-06-18 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 10:00:00 PDT,+2,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 11:00:00 PDT,+0,+0,+5,+270,+0.0279313,+1723.98,+61722.3,+96.6542,OK,OK,+8,+180,+0.0147947,+913.161,+61722.3,+296.186,OK,OK
-2020-06-18 12:00:00 PDT,+3.4,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-18 13:00:00 PDT,+4.8,+250,+5,+270,+0.0336877,+2079.28,+61722.3,+36.0718,OK,OK,+8,+180,+0.00770919,+475.829,+61722.3,+450.704,OK,OK
-2020-06-18 14:00:00 PDT,+5.9,+230,+5,+270,+0.0401328,+2477.09,+61722.3,-36.0085,OK,OK,+8,+180,+0.002483,+153.257,+61722.3,+1081.92,OK,OK
-2020-06-18 15:00:00 PDT,+5.8,+260,+5,+270,+0.0415781,+2566.3,+61722.3,-38.3983,OK,OK,+8,+180,+0.00346488,+213.86,+61722.3,+1149.03,OK,OK
-2020-06-18 16:00:00 PDT,+6.3,+250,+5,+270,+0.0497623,+3071.44,+61722.3,-170.049,OK,OK,+8,+180,+0.0105289,+649.868,+61722.3,-367.385,OK,OK
-2020-06-18 17:00:00 PDT,+6.7,+250,+5,+270,+0.0517439,+3193.75,+61722.3,-212.429,OK,OK,+8,+180,+0.0125163,+772.533,+61722.3,-436.339,OK,OK
-2020-06-18 18:00:00 PDT,+6.7,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-18 19:00:00 PDT,+5.1,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-18 20:00:00 PDT,+4.1,+290,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-06-18 21:00:00 PDT,+4.1,+310,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-06-18 22:00:00 PDT,+3.6,+300,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-06-18 23:00:00 PDT,+4.1,+250,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-06-19 00:00:00 PDT,+2.6,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-06-19 01:00:00 PDT,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-06-19 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 11:00:00 PDT,+0.9,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-19 12:00:00 PDT,+3,+170,+5,+270,+0.0256324,+1582.09,+61722.3,+27.432,OK,OK,+8,+180,+0.0177238,+1093.95,+61722.3,+59.4983,OK,OK
-2020-06-19 13:00:00 PDT,+2.7,+210,+5,+270,+0.0249733,+1541.41,+61722.3,+134.083,OK,OK,+8,+180,+0.0185721,+1146.31,+61722.3,+265.785,OK,OK
-2020-06-19 14:00:00 PDT,+3.4,+200,+5,+270,+0.027228,+1680.58,+61722.3,+165.301,OK,OK,+8,+180,+0.0160469,+990.449,+61722.3,+430.865,OK,OK
-2020-06-19 15:00:00 PDT,+4,+210,+5,+270,+0.0268776,+1658.95,+61722.3,+217.186,OK,OK,+8,+180,+0.0168391,+1039.35,+61722.3,+515.617,OK,OK
-2020-06-19 16:00:00 PDT,+5.7,+210,+5,+270,+0.0291423,+1798.73,+61722.3,+205.632,OK,OK,+8,+180,+0.0140247,+865.633,+61722.3,+682.776,OK,OK
-2020-06-19 17:00:00 PDT,+7.9,+210,+5,+270,+0.032865,+2028.5,+61722.3,+204.398,OK,OK,+8,+180,+0.0103822,+640.81,+61722.3,+1140.91,OK,OK
-2020-06-19 18:00:00 PDT,+7.6,+270,+5,+270,+0.0398451,+2459.33,+61722.3,+118.678,OK,OK,+8,+180,+0.00584134,+360.541,+61722.3,+2035.44,OK,OK
-2020-06-19 19:00:00 PDT,+7.7,+260,+5,+270,+0.0717209,+4426.78,+61722.3,-371.373,OK,OK,+8,+180,+0.0333955,+2061.25,+61722.3,-635.912,OK,OK
-2020-06-19 20:00:00 PDT,+6.1,+270,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-06-19 21:00:00 PDT,+4.6,+270,+5,+270,+0.0542661,+3349.43,+61722.3,-200.85,OK,OK,+8,+180,+0.0153203,+945.605,+61722.3,-436.713,OK,OK
-2020-06-19 22:00:00 PDT,+3.6,+270,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-06-19 23:00:00 PDT,+2.5,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-20 00:00:00 PDT,+1.5,+270,+5,+270,+0.0298307,+1841.22,+61722.3,+67.1532,OK,OK,+8,+180,+0.0123005,+759.216,+61722.3,+296.847,OK,OK
-2020-06-20 01:00:00 PDT,+3.1,+280,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-06-20 02:00:00 PDT,+1.5,+330,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-06-20 03:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-06-20 04:00:00 PDT,+2.1,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-20 05:00:00 PDT,+2.1,+230,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-06-20 06:00:00 PDT,+1.5,+230,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-06-20 07:00:00 PDT,+1.5,+240,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-06-20 08:00:00 PDT,+1.5,+250,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-06-20 09:00:00 PDT,+0,+0,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-06-20 10:00:00 PDT,+2.6,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-20 11:00:00 PDT,+2.6,+250,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-20 12:00:00 PDT,+2.6,+320,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-20 13:00:00 PDT,+3.6,+290,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-20 14:00:00 PDT,+8.2,+280,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-06-20 15:00:00 PDT,+5.7,+260,+5,+270,+0.0814402,+5026.67,+61722.3,-374.385,OK,OK,+8,+180,+0.0434678,+2682.93,+61722.3,-590.783,OK,OK
-2020-06-20 16:00:00 PDT,+9.3,+240,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-20 17:00:00 PDT,+9.3,+240,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-06-20 18:00:00 PDT,+8.2,+250,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-06-20 19:00:00 PDT,+8.2,+270,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-06-20 20:00:00 PDT,+6.7,+260,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-06-20 21:00:00 PDT,+6.2,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-20 22:00:00 PDT,+4.1,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-20 23:00:00 PDT,+3.6,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-21 00:00:00 PDT,+3.5,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-06-21 01:00:00 PDT,+3.4,+250,+5,+270,+0.0337292,+2081.84,+61722.3,+46.0519,OK,OK,+8,+180,+0.00777972,+480.182,+61722.3,+545.834,OK,OK
-2020-06-21 02:00:00 PDT,+3.2,+250,+5,+270,+0.0325603,+2009.69,+61722.3,+72.5034,OK,OK,+8,+180,+0.00923441,+569.968,+61722.3,+568.211,OK,OK
-2020-06-21 03:00:00 PDT,+3.1,+240,+5,+270,+0.0317263,+1958.22,+61722.3,+81.5762,OK,OK,+8,+180,+0.010195,+629.259,+61722.3,+519.895,OK,OK
-2020-06-21 04:00:00 PDT,+2.1,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-06-21 05:00:00 PDT,+2.3,+250,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-06-21 06:00:00 PDT,+2.4,+250,+5,+270,+0.0286933,+1771.01,+61722.3,+99.2348,OK,OK,+8,+180,+0.0138385,+854.144,+61722.3,+345.78,OK,OK
-2020-06-21 07:00:00 PDT,+2.6,+260,+5,+270,+0.0289741,+1788.34,+61722.3,+99.1702,OK,OK,+8,+180,+0.0134906,+832.673,+61722.3,+362.953,OK,OK
-2020-06-21 08:00:00 PDT,+3.1,+250,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-06-21 09:00:00 PDT,+3.6,+240,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-06-21 10:00:00 PDT,+2.6,+270,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-06-21 11:00:00 PDT,+3.1,+300,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-06-21 12:00:00 PDT,+3.1,+320,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-06-21 13:00:00 PDT,+4.1,+310,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-06-21 14:00:00 PDT,+4.9,+300,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-06-21 15:00:00 PDT,+5.7,+290,+5,+270,+0.0429789,+2652.75,+61722.3,-33.2649,OK,OK,+8,+180,+0.00362806,+223.932,+61722.3,-58.7866,OK,OK
-2020-06-21 16:00:00 PDT,+5.1,+270,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-06-21 17:00:00 PDT,+6.2,+270,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-06-21 18:00:00 PDT,+7.2,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-21 19:00:00 PDT,+7.2,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-06-21 20:00:00 PDT,+5.1,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-06-21 21:00:00 PDT,+4.6,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-06-21 22:00:00 PDT,+3.6,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-06-21 23:00:00 PDT,+2.6,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-22 00:00:00 PDT,+0,+0,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-06-22 01:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 02:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-06-22 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 08:00:00 PDT,+1.5,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 09:00:00 PDT,+0,+0,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-06-22 10:00:00 PDT,+3.1,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-22 11:00:00 PDT,+2.6,+220,+5,+270,+0.0266723,+1646.27,+61722.3,+199.151,OK,OK,+8,+180,+0.0169934,+1048.87,+61722.3,+465.239,OK,OK
-2020-06-22 12:00:00 PDT,+2.1,+250,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-06-22 13:00:00 PDT,+4.6,+270,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-06-22 14:00:00 PDT,+5.1,+290,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-06-22 15:00:00 PDT,+5.7,+240,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-06-22 16:00:00 PDT,+7.7,+250,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-06-22 17:00:00 PDT,+8.7,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-06-22 18:00:00 PDT,+7.7,+250,+5,+270,+0.0779116,+4808.88,+61722.3,-543.385,OK,OK,+8,+180,+0.0394383,+2434.22,+61722.3,-871.65,OK,OK
-2020-06-22 19:00:00 PDT,+5.7,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-06-22 20:00:00 PDT,+7.7,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-22 21:00:00 PDT,+3.1,+260,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-06-22 22:00:00 PDT,+2.1,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-06-22 23:00:00 PDT,+4.1,+320,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-06-23 00:00:00 PDT,+1.5,+310,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-06-23 01:00:00 PDT,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-23 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 10:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 11:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-06-23 12:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-23 13:00:00 PDT,+3.6,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-06-23 14:00:00 PDT,+3.6,+270,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-23 15:00:00 PDT,+5.7,+260,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-23 16:00:00 PDT,+6.7,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-06-23 17:00:00 PDT,+5.7,+270,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-23 18:00:00 PDT,+6.7,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-06-23 19:00:00 PDT,+6.7,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-06-23 20:00:00 PDT,+4.1,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-06-23 21:00:00 PDT,+5.1,+290,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-06-23 22:00:00 PDT,+4.1,+300,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-06-23 23:00:00 PDT,+2.6,+300,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-06-24 00:00:00 PDT,+2.1,+310,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-24 01:00:00 PDT,+2.6,+300,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-06-24 02:00:00 PDT,+2.6,+290,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-24 03:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-24 04:00:00 PDT,+3.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 05:00:00 PDT,+2.6,+280,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-06-24 06:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-06-24 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 10:00:00 PDT,+2.1,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 11:00:00 PDT,+0,+0,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-06-24 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 13:00:00 PDT,+3.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-24 14:00:00 PDT,+4.6,+270,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-06-24 15:00:00 PDT,+7.2,+250,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-06-24 16:00:00 PDT,+8.2,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-06-24 17:00:00 PDT,+6.2,+270,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-06-24 18:00:00 PDT,+6.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-24 19:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-06-24 20:00:00 PDT,+5.7,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-24 21:00:00 PDT,+4.6,+290,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-06-24 22:00:00 PDT,+3.6,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-06-24 23:00:00 PDT,+2.6,+300,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-06-25 00:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-25 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 12:00:00 PDT,+3.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-25 13:00:00 PDT,+4.6,+290,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-06-25 14:00:00 PDT,+6.2,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-06-25 15:00:00 PDT,+7.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-25 16:00:00 PDT,+5.7,+270,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-06-25 17:00:00 PDT,+6.2,+250,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-06-25 18:00:00 PDT,+6.2,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-25 19:00:00 PDT,+5.7,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-25 20:00:00 PDT,+5.1,+250,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-06-25 21:00:00 PDT,+3.6,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-06-25 22:00:00 PDT,+2.6,+300,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-06-25 23:00:00 PDT,+2.1,+260,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-26 00:00:00 PDT,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-06-26 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 09:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-26 10:00:00 PDT,+1.5,+280,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-26 11:00:00 PDT,+1.5,+240,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-26 12:00:00 PDT,+2.1,+250,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-06-26 13:00:00 PDT,+4.1,+310,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-06-26 14:00:00 PDT,+5.7,+280,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-06-26 15:00:00 PDT,+6.2,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-06-26 16:00:00 PDT,+6.7,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-06-26 17:00:00 PDT,+7.7,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-06-26 18:00:00 PDT,+6.2,+250,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-06-26 19:00:00 PDT,+7.2,+270,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-26 20:00:00 PDT,+6.7,+280,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-06-26 21:00:00 PDT,+4.1,+300,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-06-26 22:00:00 PDT,+3.1,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-06-26 23:00:00 PDT,+1.5,+270,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-27 00:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-06-27 01:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-27 02:00:00 PDT,+3.1,+290,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-06-27 03:00:00 PDT,+1.5,+260,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-27 04:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-06-27 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-27 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-27 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-27 08:00:00 PDT,+3.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-27 09:00:00 PDT,+2.6,+290,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-06-27 10:00:00 PDT,+4.1,+270,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-27 11:00:00 PDT,+3.1,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-06-27 12:00:00 PDT,+2.6,+300,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-06-27 13:00:00 PDT,+5.1,+300,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-27 14:00:00 PDT,+6.2,+250,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-06-27 15:00:00 PDT,+6.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-27 16:00:00 PDT,+6.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-27 17:00:00 PDT,+6.7,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-27 18:00:00 PDT,+6.7,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-27 19:00:00 PDT,+5.9,+270,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-27 20:00:00 PDT,+5.1,+290,+5,+270,+0.0522632,+3225.8,+61722.3,-179.061,OK,OK,+8,+180,+0.0132217,+816.072,+61722.3,-400.976,OK,OK
-2020-06-27 21:00:00 PDT,+2.6,+250,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-06-27 22:00:00 PDT,+2.6,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-27 23:00:00 PDT,+2.1,+310,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-28 00:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-06-28 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 04:00:00 PDT,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 05:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-06-28 06:00:00 PDT,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 07:00:00 PDT,+3.1,+240,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-28 08:00:00 PDT,+2.6,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-06-28 09:00:00 PDT,+1.5,+240,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-06-28 10:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-06-28 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 12:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-28 13:00:00 PDT,+3.6,+270,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-06-28 14:00:00 PDT,+3.6,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-28 15:00:00 PDT,+5.1,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-06-28 16:00:00 PDT,+6.2,+250,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-06-28 17:00:00 PDT,+6.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-06-28 18:00:00 PDT,+6.2,+240,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-28 19:00:00 PDT,+6.7,+260,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-06-28 20:00:00 PDT,+6.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-28 21:00:00 PDT,+4.1,+290,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-28 22:00:00 PDT,+2.6,+300,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-06-28 23:00:00 PDT,+2.6,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-29 00:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-06-29 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 09:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 10:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-06-29 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 13:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-29 14:00:00 PDT,+3.1,+300,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-06-29 15:00:00 PDT,+5.1,+270,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-06-29 16:00:00 PDT,+6.2,+270,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-06-29 17:00:00 PDT,+7.2,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-29 18:00:00 PDT,+7.2,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-06-29 19:00:00 PDT,+6.7,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-06-29 20:00:00 PDT,+4.1,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-06-29 21:00:00 PDT,+3.6,+290,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-06-29 22:00:00 PDT,+3.6,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-06-29 23:00:00 PDT,+3.1,+270,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-06-30 00:00:00 PDT,+0,+0,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-06-30 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 07:00:00 PDT,+2.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 08:00:00 PDT,+2.1,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-06-30 09:00:00 PDT,+2.1,+260,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-30 10:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-06-30 11:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-06-30 12:00:00 PDT,+2.6,+290,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-06-30 13:00:00 PDT,+5.7,+310,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-06-30 14:00:00 PDT,+5.7,+270,+5,+270,+0.0480061,+2963.04,+61722.3,-20.8189,OK,OK,+8,+180,+0.00906887,+559.751,+61722.3,-57.0884,OK,OK
-2020-06-30 15:00:00 PDT,+4.6,+280,+5,+270,+0.0480061,+2963.04,+61722.3,-20.8189,OK,OK,+8,+180,+0.00906887,+559.751,+61722.3,-57.0884,OK,OK
-2020-06-30 16:00:00 PDT,+5.7,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-06-30 17:00:00 PDT,+5.1,+240,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-06-30 18:00:00 PDT,+6.2,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-06-30 19:00:00 PDT,+5.1,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-06-30 20:00:00 PDT,+3.6,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-06-30 21:00:00 PDT,+4.1,+300,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-06-30 22:00:00 PDT,+3.6,+300,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-06-30 23:00:00 PDT,+3.1,+270,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-07-01 00:00:00 PDT,+2.6,+190,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-07-01 01:00:00 PDT,+2.1,+0,+5,+270,+0.0256327,+1582.11,+61722.3,+168.955,OK,OK,+8,+180,+0.0182878,+1128.76,+61722.3,+344.148,OK,OK
-2020-07-01 02:00:00 PDT,+1.5,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-07-01 03:00:00 PDT,+1,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-01 04:00:00 PDT,+0.5,+0,+5,+270,+0.0257778,+1591.06,+61722.3,-50.1157,OK,OK,+8,+180,+0.0175377,+1082.46,+61722.3,-110.922,OK,OK
-2020-07-01 05:00:00 PDT,+0,+0,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-07-01 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-01 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-01 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-01 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-01 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-01 11:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-01 12:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-01 13:00:00 PDT,+3.1,+290,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-07-01 14:00:00 PDT,+6.2,+250,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-07-01 15:00:00 PDT,+7.7,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-01 16:00:00 PDT,+5.1,+290,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-01 17:00:00 PDT,+6.7,+280,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-07-01 18:00:00 PDT,+8.2,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-07-01 19:00:00 PDT,+5.1,+260,+5,+270,+0.0798934,+4931.2,+61722.3,-441.041,OK,OK,+8,+180,+0.041754,+2577.15,+61722.3,-702.552,OK,OK
-2020-07-01 20:00:00 PDT,+4.6,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-07-01 21:00:00 PDT,+4.1,+290,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-01 22:00:00 PDT,+2.1,+250,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-01 23:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-02 00:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 01:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-07-02 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 09:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-02 10:00:00 PDT,+2.6,+270,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-07-02 11:00:00 PDT,+2.6,+290,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-07-02 12:00:00 PDT,+3.6,+300,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-07-02 13:00:00 PDT,+5.1,+300,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-07-02 14:00:00 PDT,+5.1,+280,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-07-02 15:00:00 PDT,+5.1,+280,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-07-02 16:00:00 PDT,+5.7,+280,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-07-02 17:00:00 PDT,+6.7,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-02 18:00:00 PDT,+5.1,+250,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-07-02 19:00:00 PDT,+7.2,+270,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-07-02 20:00:00 PDT,+7.2,+280,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-07-02 21:00:00 PDT,+5.1,+280,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-07-02 22:00:00 PDT,+4.6,+290,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-02 23:00:00 PDT,+0,+0,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-07-03 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-03 01:00:00 PDT,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-03 02:00:00 PDT,+2.1,+260,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-03 03:00:00 PDT,+2.6,+310,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-03 04:00:00 PDT,+3.1,+310,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-07-03 05:00:00 PDT,+1.5,+260,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-07-03 06:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-07-03 07:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-03 08:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-07-03 09:00:00 PDT,+2.1,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-03 10:00:00 PDT,+2.1,+320,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-07-03 11:00:00 PDT,+3.6,+250,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-07-03 12:00:00 PDT,+5.7,+270,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-07-03 13:00:00 PDT,+6.2,+280,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-07-03 14:00:00 PDT,+7.2,+280,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-03 15:00:00 PDT,+6.7,+280,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-07-03 16:00:00 PDT,+7.2,+250,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-07-03 17:00:00 PDT,+7.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-03 18:00:00 PDT,+7.7,+250,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-03 19:00:00 PDT,+7.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-03 20:00:00 PDT,+4.6,+280,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-03 21:00:00 PDT,+4.6,+250,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-07-03 22:00:00 PDT,+2.1,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-07-03 23:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-07-04 00:00:00 PDT,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-04 01:00:00 PDT,+2.1,+300,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-07-04 02:00:00 PDT,+1.5,+240,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-07-04 03:00:00 PDT,+2.1,+290,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-07-04 04:00:00 PDT,+3.1,+300,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-04 05:00:00 PDT,+2.1,+250,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-07-04 06:00:00 PDT,+1.5,+170,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-04 07:00:00 PDT,+1.5,+80,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-07-04 08:00:00 PDT,+1.5,+140,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-07-04 09:00:00 PDT,+1.5,+110,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-07-04 10:00:00 PDT,+3.1,+70,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-07-04 11:00:00 PDT,+2.1,+40,+5,+270,+0.029218,+1803.4,+61722.3,+15.1857,OK,OK,+8,+180,+0.0103374,+638.048,+61722.3,-214.636,OK,OK
-2020-07-04 12:00:00 PDT,+0,+0,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-07-04 13:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-04 14:00:00 PDT,+3.1,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-07-04 15:00:00 PDT,+3.1,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-07-04 16:00:00 PDT,+5.1,+260,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-07-04 17:00:00 PDT,+7.2,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-07-04 18:00:00 PDT,+7.2,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-07-04 19:00:00 PDT,+5.4,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-07-04 20:00:00 PDT,+3.6,+250,+5,+270,+0.0443377,+2736.62,+61722.3,-101.297,OK,OK,+8,+180,+0.00499879,+308.537,+61722.3,+38.1509,OK,OK
-2020-07-04 21:00:00 PDT,+4.6,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-07-04 22:00:00 PDT,+3.6,+290,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-04 23:00:00 PDT,+3.1,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-07-05 00:00:00 PDT,+2.1,+250,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-07-05 01:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-05 02:00:00 PDT,+1.5,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-05 03:00:00 PDT,+0,+0,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-07-05 04:00:00 PDT,+1.5,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-05 05:00:00 PDT,+2.1,+240,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-07-05 06:00:00 PDT,+2.1,+270,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-05 07:00:00 PDT,+2.1,+240,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-05 08:00:00 PDT,+1.5,+300,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-05 09:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-05 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-05 11:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-05 12:00:00 PDT,+3.1,+260,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-05 13:00:00 PDT,+4.1,+290,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-07-05 14:00:00 PDT,+3.1,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-05 15:00:00 PDT,+5.7,+260,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-05 16:00:00 PDT,+8.2,+240,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-07-05 17:00:00 PDT,+8.2,+250,+5,+270,+0.0653705,+4034.81,+61722.3,-423.636,OK,OK,+8,+180,+0.0264543,+1632.82,+61722.3,-751.242,OK,OK
-2020-07-05 18:00:00 PDT,+6.7,+270,+5,+270,+0.0653705,+4034.81,+61722.3,-423.636,OK,OK,+8,+180,+0.0264543,+1632.82,+61722.3,-751.242,OK,OK
-2020-07-05 19:00:00 PDT,+8.2,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-07-05 20:00:00 PDT,+4.6,+260,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-07-05 21:00:00 PDT,+4.1,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-05 22:00:00 PDT,+3.1,+280,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-07-05 23:00:00 PDT,+2.6,+280,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-06 00:00:00 PDT,+1.5,+240,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-07-06 01:00:00 PDT,+2.1,+260,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-07-06 02:00:00 PDT,+2.6,+230,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-07-06 03:00:00 PDT,+2.1,+220,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-07-06 04:00:00 PDT,+2.1,+210,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-07-06 05:00:00 PDT,+1.5,+210,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-07-06 06:00:00 PDT,+2.1,+200,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-07-06 07:00:00 PDT,+0,+0,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-07-06 08:00:00 PDT,+1.5,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-06 09:00:00 PDT,+0,+0,+5,+270,+0.0258978,+1598.47,+61722.3,+98.4989,OK,OK,+8,+180,+0.0175856,+1085.42,+61722.3,+216.45,OK,OK
-2020-07-06 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-06 11:00:00 PDT,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-06 12:00:00 PDT,+2.6,+230,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-06 13:00:00 PDT,+3.6,+290,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-07-06 14:00:00 PDT,+4.1,+250,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-07-06 15:00:00 PDT,+5.7,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-07-06 16:00:00 PDT,+8.7,+240,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-07-06 17:00:00 PDT,+8.2,+260,+5,+270,+0.0707307,+4365.66,+61722.3,-495.56,OK,OK,+8,+180,+0.0319391,+1971.35,+61722.3,-835.578,OK,OK
-2020-07-06 18:00:00 PDT,+6.2,+250,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-07-06 19:00:00 PDT,+5.7,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-06 20:00:00 PDT,+4.6,+260,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-07-06 21:00:00 PDT,+3.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-06 22:00:00 PDT,+2.1,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-07-06 23:00:00 PDT,+2.1,+250,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-07 00:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-07 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 03:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 04:00:00 PDT,+3.1,+290,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-07-07 05:00:00 PDT,+2.1,+310,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-07-07 06:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-07 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 10:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-07 11:00:00 PDT,+2.1,+350,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-07-07 12:00:00 PDT,+2.6,+340,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-07-07 13:00:00 PDT,+3.6,+330,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-07-07 14:00:00 PDT,+2.6,+240,+5,+270,+0.0316651,+1954.44,+61722.3,-17.6553,OK,OK,+8,+180,+0.00948189,+585.243,+61722.3,-151.199,OK,OK
-2020-07-07 15:00:00 PDT,+7.7,+250,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-07-07 16:00:00 PDT,+7.2,+240,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-07 17:00:00 PDT,+6.2,+250,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-07-07 18:00:00 PDT,+7.7,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-07 19:00:00 PDT,+5.1,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-07-07 20:00:00 PDT,+5.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-07-07 21:00:00 PDT,+4.6,+290,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-07-07 22:00:00 PDT,+0,+0,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-07-07 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 09:00:00 PDT,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 10:00:00 PDT,+1.5,+10,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-07-08 11:00:00 PDT,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-07-08 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 13:00:00 PDT,+5.7,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-08 14:00:00 PDT,+6.2,+270,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-07-08 15:00:00 PDT,+5.7,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-07-08 16:00:00 PDT,+4.1,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-07-08 17:00:00 PDT,+5.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-07-08 18:00:00 PDT,+7.2,+280,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-07-08 19:00:00 PDT,+4.6,+250,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-07-08 20:00:00 PDT,+3.6,+260,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-07-08 21:00:00 PDT,+3.6,+320,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-07-08 22:00:00 PDT,+3.1,+310,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-07-08 23:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-07-09 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 09:00:00 PDT,+0.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 10:00:00 PDT,+0.5,+360,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-07-09 11:00:00 PDT,+0,+0,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-07-09 12:00:00 PDT,+4.1,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-09 13:00:00 PDT,+5.7,+300,+5,+270,+0.0293224,+1809.84,+61722.3,+207.283,OK,OK,+8,+180,+0.0138392,+854.184,+61722.3,+704.63,OK,OK
-2020-07-09 14:00:00 PDT,+6.2,+280,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-07-09 15:00:00 PDT,+7.7,+250,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-09 16:00:00 PDT,+7.7,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-09 17:00:00 PDT,+7.2,+260,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-09 18:00:00 PDT,+5.7,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-07-09 19:00:00 PDT,+6.2,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-07-09 20:00:00 PDT,+4.1,+290,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-09 21:00:00 PDT,+2.6,+310,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-09 22:00:00 PDT,+2.1,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-07-09 23:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-10 00:00:00 PDT,+1.5,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 01:00:00 PDT,+0,+0,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-07-10 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 03:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 04:00:00 PDT,+1.5,+360,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-10 05:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-10 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 10:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-10 11:00:00 PDT,+3.6,+200,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-10 12:00:00 PDT,+4.6,+250,+5,+270,+0.0270251,+1668.05,+61722.3,+229.033,OK,OK,+8,+180,+0.0167291,+1032.56,+61722.3,+550.059,OK,OK
-2020-07-10 13:00:00 PDT,+7.2,+300,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-07-10 14:00:00 PDT,+7.7,+270,+5,+270,+0.0659668,+4071.62,+61722.3,-130.056,OK,OK,+8,+180,+0.0278511,+1719.03,+61722.3,-241.109,OK,OK
-2020-07-10 15:00:00 PDT,+8.2,+290,+5,+270,+0.0730361,+4507.95,+61722.3,-382.968,OK,OK,+8,+180,+0.0347441,+2144.49,+61722.3,-647.28,OK,OK
-2020-07-10 16:00:00 PDT,+7.7,+280,+5,+270,+0.0811778,+5010.47,+61722.3,-283.223,OK,OK,+8,+180,+0.0433391,+2674.99,+61722.3,-448.58,OK,OK
-2020-07-10 17:00:00 PDT,+6.7,+260,+5,+270,+0.0743782,+4590.79,+61722.3,-326.281,OK,OK,+8,+180,+0.0362491,+2237.37,+61722.3,-546.31,OK,OK
-2020-07-10 18:00:00 PDT,+7.2,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-10 19:00:00 PDT,+6.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-10 20:00:00 PDT,+4.6,+280,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-10 21:00:00 PDT,+3.6,+310,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-07-10 22:00:00 PDT,+0,+0,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-07-10 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 00:00:00 PDT,+2.6,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 01:00:00 PDT,+2.6,+140,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-07-11 02:00:00 PDT,+0,+0,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-07-11 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 11:00:00 PDT,+2.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-11 12:00:00 PDT,+2.6,+270,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-07-11 13:00:00 PDT,+2.1,+270,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-07-11 14:00:00 PDT,+4.1,+280,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-07-11 15:00:00 PDT,+6.7,+240,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-07-11 16:00:00 PDT,+5.1,+260,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-07-11 17:00:00 PDT,+4.6,+280,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-07-11 18:00:00 PDT,+5.1,+290,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-07-11 19:00:00 PDT,+4.1,+270,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-07-11 20:00:00 PDT,+4.1,+250,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-07-11 21:00:00 PDT,+2.1,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-07-11 22:00:00 PDT,+3.1,+320,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-07-11 23:00:00 PDT,+1.5,+300,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-07-12 00:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-12 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 11:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 12:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-12 13:00:00 PDT,+4.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-12 14:00:00 PDT,+6.2,+260,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-07-12 15:00:00 PDT,+6.7,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-12 16:00:00 PDT,+8.2,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-12 17:00:00 PDT,+7.7,+260,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-07-12 18:00:00 PDT,+6.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-12 19:00:00 PDT,+5.7,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-12 20:00:00 PDT,+5.1,+290,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-07-12 21:00:00 PDT,+4.1,+290,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-07-12 22:00:00 PDT,+2.6,+300,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-12 23:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-07-13 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 01:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 02:00:00 PDT,+2.1,+300,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-07-13 03:00:00 PDT,+0,+0,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-07-13 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 08:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 09:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-13 10:00:00 PDT,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-13 11:00:00 PDT,+2.6,+280,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-07-13 12:00:00 PDT,+4.1,+310,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-07-13 13:00:00 PDT,+4.1,+260,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-07-13 14:00:00 PDT,+4.6,+290,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-07-13 15:00:00 PDT,+7.2,+250,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-07-13 16:00:00 PDT,+6.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-13 17:00:00 PDT,+6.7,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-13 18:00:00 PDT,+7.7,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-13 19:00:00 PDT,+6.2,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-13 20:00:00 PDT,+5.1,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-13 21:00:00 PDT,+3.6,+330,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-07-13 22:00:00 PDT,+3.1,+280,+5,+270,+0.0316651,+1954.44,+61722.3,-17.6553,OK,OK,+8,+180,+0.00948189,+585.243,+61722.3,-151.199,OK,OK
-2020-07-13 23:00:00 PDT,+3.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-14 00:00:00 PDT,+0,+0,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-14 01:00:00 PDT,+3.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 02:00:00 PDT,+4.1,+300,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-07-14 03:00:00 PDT,+0,+0,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-07-14 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 10:00:00 PDT,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-14 11:00:00 PDT,+3.6,+310,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-07-14 12:00:00 PDT,+3.1,+310,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-07-14 13:00:00 PDT,+2.6,+310,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-07-14 14:00:00 PDT,+3.6,+300,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-07-14 15:00:00 PDT,+6.7,+270,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-07-14 16:00:00 PDT,+7.2,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-07-14 17:00:00 PDT,+7.7,+250,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-07-14 18:00:00 PDT,+5.7,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-14 19:00:00 PDT,+5.7,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-07-14 20:00:00 PDT,+5.7,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-07-14 21:00:00 PDT,+3.9,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-07-14 22:00:00 PDT,+2.1,+280,+5,+270,+0.0367184,+2266.34,+61722.3,-1.08496,OK,OK,+8,+180,+0.00423943,+261.667,+61722.3,+489.757,OK,OK
-2020-07-14 23:00:00 PDT,+1.9,+300,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-07-15 00:00:00 PDT,+1.7,+310,+5,+270,+0.0279234,+1723.49,+61722.3,+25.0268,OK,OK,+8,+180,+0.0146095,+901.728,+61722.3,+79.1018,OK,OK
-2020-07-15 01:00:00 PDT,+1.5,+330,+5,+270,+0.0273184,+1686.15,+61722.3,+8.27968,OK,OK,+8,+180,+0.0153967,+950.318,+61722.3,+23.6178,OK,OK
-2020-07-15 02:00:00 PDT,+1.5,+170,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-07-15 03:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-07-15 04:00:00 PDT,+0.7,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-15 05:00:00 PDT,+1.4,+330,+5,+270,+0.0257708,+1590.63,+61722.3,-28.6708,OK,OK,+8,+180,+0.017583,+1085.26,+61722.3,-63.1198,OK,OK
-2020-07-15 06:00:00 PDT,+2.1,+320,+5,+270,+0.0264881,+1634.9,+61722.3,-22.9775,OK,OK,+8,+180,+0.0165159,+1019.4,+61722.3,-57.1636,OK,OK
-2020-07-15 07:00:00 PDT,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-07-15 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-15 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-15 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-15 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-15 12:00:00 PDT,+2.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-15 13:00:00 PDT,+5.1,+240,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-07-15 14:00:00 PDT,+6.2,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-07-15 15:00:00 PDT,+7.2,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-15 16:00:00 PDT,+7.2,+280,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-07-15 17:00:00 PDT,+7.7,+290,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-07-15 18:00:00 PDT,+7.2,+280,+5,+270,+0.0741336,+4575.69,+61722.3,-247.076,OK,OK,+8,+180,+0.0361309,+2230.08,+61722.3,-415.755,OK,OK
-2020-07-15 19:00:00 PDT,+6.7,+250,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-07-15 20:00:00 PDT,+5.7,+280,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-15 21:00:00 PDT,+4.1,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-15 22:00:00 PDT,+3.6,+290,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-15 23:00:00 PDT,+1.5,+300,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-07-16 00:00:00 PDT,+1.5,+240,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-16 01:00:00 PDT,+2.1,+310,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-16 02:00:00 PDT,+2.1,+280,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-16 03:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-16 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 11:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-16 12:00:00 PDT,+6.2,+260,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-07-16 13:00:00 PDT,+5.7,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-16 14:00:00 PDT,+5.7,+290,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-07-16 15:00:00 PDT,+7.2,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-07-16 16:00:00 PDT,+8.2,+250,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-07-16 17:00:00 PDT,+8.2,+280,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-07-16 18:00:00 PDT,+8.2,+280,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-07-16 19:00:00 PDT,+6.2,+260,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-07-16 20:00:00 PDT,+4.6,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-16 21:00:00 PDT,+3.1,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-16 22:00:00 PDT,+2.6,+290,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-16 23:00:00 PDT,+3.1,+300,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-17 00:00:00 PDT,+1.5,+270,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-07-17 01:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-07-17 02:00:00 PDT,+2.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 03:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-07-17 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 08:00:00 PDT,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 09:00:00 PDT,+2.6,+300,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-07-17 10:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-07-17 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 12:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-17 13:00:00 PDT,+4.6,+290,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-07-17 14:00:00 PDT,+5.7,+300,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-07-17 15:00:00 PDT,+5.1,+280,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-07-17 16:00:00 PDT,+6.7,+260,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-17 17:00:00 PDT,+6.7,+270,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-17 18:00:00 PDT,+9.3,+240,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-17 19:00:00 PDT,+7.7,+240,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-07-17 20:00:00 PDT,+5.7,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-07-17 21:00:00 PDT,+5.1,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-07-17 22:00:00 PDT,+2.6,+290,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-07-17 23:00:00 PDT,+3.6,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-18 00:00:00 PDT,+2.1,+270,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-07-18 01:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-07-18 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 03:00:00 PDT,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 04:00:00 PDT,+2.1,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-18 05:00:00 PDT,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-18 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 08:00:00 PDT,+2.6,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 09:00:00 PDT,+0,+0,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-07-18 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 11:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-18 12:00:00 PDT,+4.6,+270,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-07-18 13:00:00 PDT,+3.6,+310,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-07-18 14:00:00 PDT,+5.1,+270,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-07-18 15:00:00 PDT,+5.7,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-18 16:00:00 PDT,+6.2,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-07-18 17:00:00 PDT,+7.7,+250,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-18 18:00:00 PDT,+8.2,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-18 19:00:00 PDT,+6.7,+250,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-07-18 20:00:00 PDT,+5.1,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-18 21:00:00 PDT,+4.1,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-07-18 22:00:00 PDT,+4.1,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-07-18 23:00:00 PDT,+2.1,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-07-19 00:00:00 PDT,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-19 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 08:00:00 PDT,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 09:00:00 PDT,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-07-19 10:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 11:00:00 PDT,+2.6,+320,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-07-19 12:00:00 PDT,+0,+0,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-07-19 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 14:00:00 PDT,+4.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-19 15:00:00 PDT,+6.2,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-19 16:00:00 PDT,+5.1,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-19 17:00:00 PDT,+6.7,+270,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-19 18:00:00 PDT,+7.2,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-07-19 19:00:00 PDT,+5.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-19 20:00:00 PDT,+3.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-07-19 21:00:00 PDT,+3.1,+280,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-07-19 22:00:00 PDT,+2.6,+260,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-19 23:00:00 PDT,+1.5,+260,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-07-20 00:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-07-20 01:00:00 PDT,+4.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-20 02:00:00 PDT,+3.6,+250,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-20 03:00:00 PDT,+2.1,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-07-20 04:00:00 PDT,+2.1,+230,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-20 05:00:00 PDT,+2.1,+200,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-20 06:00:00 PDT,+2.1,+210,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-20 07:00:00 PDT,+2.6,+230,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-07-20 08:00:00 PDT,+3.1,+220,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-07-20 09:00:00 PDT,+2.6,+290,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-07-20 10:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-20 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-20 12:00:00 PDT,+2.6,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-20 13:00:00 PDT,+4.1,+240,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-07-20 14:00:00 PDT,+4.6,+300,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-07-20 15:00:00 PDT,+5.7,+280,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-07-20 16:00:00 PDT,+5.1,+270,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-20 17:00:00 PDT,+9.3,+240,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-20 18:00:00 PDT,+6.7,+250,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-07-20 19:00:00 PDT,+7.2,+270,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-20 20:00:00 PDT,+4.6,+260,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-07-20 21:00:00 PDT,+3.1,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-20 22:00:00 PDT,+3.1,+260,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-07-20 23:00:00 PDT,+0,+0,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-07-21 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 02:00:00 PDT,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 03:00:00 PDT,+2.6,+250,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-21 04:00:00 PDT,+2.4,+240,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-21 05:00:00 PDT,+2.1,+230,+5,+270,+0.0285612,+1762.86,+61722.3,+114.623,OK,OK,+8,+180,+0.0140732,+868.631,+61722.3,+385.658,OK,OK
-2020-07-21 06:00:00 PDT,+2.6,+220,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-07-21 07:00:00 PDT,+2.1,+210,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-07-21 08:00:00 PDT,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-07-21 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 13:00:00 PDT,+5.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-21 14:00:00 PDT,+6.2,+270,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-21 15:00:00 PDT,+4.1,+290,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-07-21 16:00:00 PDT,+5.1,+270,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-21 17:00:00 PDT,+7.7,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-21 18:00:00 PDT,+8.2,+250,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-21 19:00:00 PDT,+6.2,+250,+5,+270,+0.0716969,+4425.29,+61722.3,-472.753,OK,OK,+8,+180,+0.0330944,+2042.66,+61722.3,-799.654,OK,OK
-2020-07-21 20:00:00 PDT,+5.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-21 21:00:00 PDT,+3.6,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-07-21 22:00:00 PDT,+3.6,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-07-21 23:00:00 PDT,+2.6,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-07-22 00:00:00 PDT,+2.6,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-22 01:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-22 02:00:00 PDT,+2.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-22 03:00:00 PDT,+2.6,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-07-22 04:00:00 PDT,+3.1,+280,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-07-22 05:00:00 PDT,+2.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-22 06:00:00 PDT,+0,+0,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-07-22 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-22 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-22 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-22 10:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-22 11:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-07-22 12:00:00 PDT,+3.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-22 13:00:00 PDT,+5.1,+310,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-07-22 14:00:00 PDT,+4.1,+250,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-07-22 15:00:00 PDT,+3.1,+290,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-07-22 16:00:00 PDT,+5.1,+270,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-07-22 17:00:00 PDT,+5.1,+250,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-22 18:00:00 PDT,+6.7,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-22 19:00:00 PDT,+5.7,+280,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-22 20:00:00 PDT,+5.1,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-22 21:00:00 PDT,+4.6,+280,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-22 22:00:00 PDT,+3.6,+310,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-07-22 23:00:00 PDT,+3.1,+290,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-07-23 00:00:00 PDT,+0,+0,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-07-23 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 12:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-23 13:00:00 PDT,+4.1,+300,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-07-23 14:00:00 PDT,+5.7,+250,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-07-23 15:00:00 PDT,+6.2,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-07-23 16:00:00 PDT,+6.7,+280,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-23 17:00:00 PDT,+7.2,+260,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-07-23 18:00:00 PDT,+6.2,+250,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-07-23 19:00:00 PDT,+6.7,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-23 20:00:00 PDT,+6.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-23 21:00:00 PDT,+3.1,+280,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-07-23 22:00:00 PDT,+3.1,+310,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-23 23:00:00 PDT,+3.1,+310,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-24 00:00:00 PDT,+2.1,+310,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-07-24 01:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-24 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 12:00:00 PDT,+3.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-24 13:00:00 PDT,+4.6,+300,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-07-24 14:00:00 PDT,+6.7,+280,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-07-24 15:00:00 PDT,+6.2,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-07-24 16:00:00 PDT,+8.2,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-07-24 17:00:00 PDT,+9.3,+250,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-07-24 18:00:00 PDT,+9.3,+250,+5,+270,+0.0858936,+5301.55,+61722.3,-628.273,OK,OK,+8,+180,+0.0475523,+2935.04,+61722.3,-953.745,OK,OK
-2020-07-24 19:00:00 PDT,+7.6,+260,+5,+270,+0.0858936,+5301.55,+61722.3,-628.273,OK,OK,+8,+180,+0.0475523,+2935.04,+61722.3,-953.745,OK,OK
-2020-07-24 20:00:00 PDT,+5.8,+270,+5,+270,+0.0689312,+4254.59,+61722.3,-397.423,OK,OK,+8,+180,+0.030402,+1876.48,+61722.3,-696.725,OK,OK
-2020-07-24 21:00:00 PDT,+4.1,+280,+5,+270,+0.0512905,+3165.76,+61722.3,-168.305,OK,OK,+8,+180,+0.0122011,+753.081,+61722.3,-381.208,OK,OK
-2020-07-24 22:00:00 PDT,+2.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-07-24 23:00:00 PDT,+2.1,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-25 00:00:00 PDT,+1.5,+170,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-25 01:00:00 PDT,+0,+0,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-07-25 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 03:00:00 PDT,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 04:00:00 PDT,+0,+0,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-07-25 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 12:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-25 13:00:00 PDT,+2.6,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-07-25 14:00:00 PDT,+4.1,+290,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-07-25 15:00:00 PDT,+4.6,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-25 16:00:00 PDT,+7.2,+250,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-07-25 17:00:00 PDT,+7.2,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-25 18:00:00 PDT,+7.2,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-25 19:00:00 PDT,+7.2,+250,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-25 20:00:00 PDT,+5.1,+280,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-07-25 21:00:00 PDT,+5.1,+290,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-25 22:00:00 PDT,+2.6,+270,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-25 23:00:00 PDT,+2.6,+280,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-07-26 00:00:00 PDT,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-07-26 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 13:00:00 PDT,+3.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-26 14:00:00 PDT,+4.6,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-07-26 15:00:00 PDT,+6.7,+270,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-07-26 16:00:00 PDT,+6.7,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-07-26 17:00:00 PDT,+6.7,+290,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-07-26 18:00:00 PDT,+6.4,+280,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-07-26 19:00:00 PDT,+7.9,+280,+5,+270,+0.0582899,+3597.78,+61722.3,-202.614,OK,OK,+8,+180,+0.0196251,+1211.3,+61722.3,-417.752,OK,OK
-2020-07-26 20:00:00 PDT,+5.7,+280,+5,+270,+0.0771451,+4761.57,+61722.3,-345.52,OK,OK,+8,+180,+0.0390818,+2412.21,+61722.3,-564.288,OK,OK
-2020-07-26 21:00:00 PDT,+4.1,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-26 22:00:00 PDT,+2.2,+270,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-26 23:00:00 PDT,+2.4,+270,+5,+270,+0.0288494,+1780.65,+61722.3,+70.0931,OK,OK,+8,+180,+0.0135309,+835.155,+61722.3,+256.409,OK,OK
-2020-07-27 00:00:00 PDT,+0,+0,+5,+270,+0.0294873,+1820.02,+61722.3,+68.5515,OK,OK,+8,+180,+0.0127278,+785.586,+61722.3,+283.039,OK,OK
-2020-07-27 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 06:00:00 PDT,+2.1,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 07:00:00 PDT,+2.1,+210,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-27 08:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-07-27 09:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 10:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-27 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 13:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-27 14:00:00 PDT,+3.1,+290,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-07-27 15:00:00 PDT,+5.7,+260,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-07-27 16:00:00 PDT,+6.2,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-07-27 17:00:00 PDT,+8.7,+250,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-27 18:00:00 PDT,+7.7,+250,+5,+270,+0.0779116,+4808.88,+61722.3,-543.385,OK,OK,+8,+180,+0.0394383,+2434.22,+61722.3,-871.65,OK,OK
-2020-07-27 19:00:00 PDT,+10.3,+250,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-27 20:00:00 PDT,+7.7,+240,+5,+270,+0.100459,+6200.57,+61722.3,-769.185,OK,OK,+8,+180,+0.0622865,+3844.46,+61722.3,-1084.12,OK,OK
-2020-07-27 21:00:00 PDT,+4.1,+260,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-07-27 22:00:00 PDT,+2.6,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-07-27 23:00:00 PDT,+2.6,+250,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-07-28 00:00:00 PDT,+0,+0,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-07-28 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 03:00:00 PDT,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 04:00:00 PDT,+1.5,+260,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-07-28 05:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-07-28 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 11:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-28 12:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-28 13:00:00 PDT,+4.1,+290,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-28 14:00:00 PDT,+5.7,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-07-28 15:00:00 PDT,+5.1,+270,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-28 16:00:00 PDT,+6.7,+250,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-28 17:00:00 PDT,+7.7,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-28 18:00:00 PDT,+7.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-28 19:00:00 PDT,+8.2,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-07-28 20:00:00 PDT,+6.2,+260,+5,+270,+0.0766026,+4728.09,+61722.3,-476.128,OK,OK,+8,+180,+0.0382565,+2361.28,+61722.3,-776.004,OK,OK
-2020-07-28 21:00:00 PDT,+4.6,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-28 22:00:00 PDT,+2.3,+310,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-07-28 23:00:00 PDT,+0,+0,+5,+270,+0.0287733,+1775.95,+61722.3,+8.63675,OK,OK,+8,+180,+0.0134275,+828.775,+61722.3,+32.4073,OK,OK
-2020-07-29 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 01:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 02:00:00 PDT,+2.6,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-07-29 03:00:00 PDT,+2.1,+280,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-07-29 04:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-07-29 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 08:00:00 PDT,+0.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 09:00:00 PDT,+0.5,+360,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-07-29 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-07-29 11:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-29 12:00:00 PDT,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-29 13:00:00 PDT,+4.6,+300,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-07-29 14:00:00 PDT,+4.9,+300,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-07-29 15:00:00 PDT,+5.1,+290,+5,+270,+0.0429789,+2652.75,+61722.3,-33.2649,OK,OK,+8,+180,+0.00362806,+223.932,+61722.3,-58.7866,OK,OK
-2020-07-29 16:00:00 PDT,+6.2,+260,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-07-29 17:00:00 PDT,+6.2,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-29 18:00:00 PDT,+6.7,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-07-29 19:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-29 20:00:00 PDT,+5.7,+280,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-29 21:00:00 PDT,+5.1,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-07-29 22:00:00 PDT,+1.5,+300,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-29 23:00:00 PDT,+2.1,+290,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-30 00:00:00 PDT,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-07-30 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 12:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-30 13:00:00 PDT,+5.7,+290,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-07-30 14:00:00 PDT,+5.1,+310,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-07-30 15:00:00 PDT,+5.1,+240,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-07-30 16:00:00 PDT,+6.7,+250,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-07-30 17:00:00 PDT,+7.7,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-30 18:00:00 PDT,+7.7,+260,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-30 19:00:00 PDT,+7.2,+270,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-07-30 20:00:00 PDT,+5.1,+280,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-07-30 21:00:00 PDT,+3.1,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-07-30 22:00:00 PDT,+0,+0,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-07-30 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 00:00:00 PDT,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 01:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-07-31 02:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 03:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-07-31 04:00:00 PDT,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 05:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-07-31 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-07-31 11:00:00 PDT,+1.5,+350,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-31 12:00:00 PDT,+1.5,+350,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-31 13:00:00 PDT,+2.1,+340,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-07-31 14:00:00 PDT,+3.6,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-07-31 15:00:00 PDT,+6.7,+250,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-07-31 16:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-07-31 17:00:00 PDT,+6.7,+290,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-07-31 18:00:00 PDT,+6.2,+280,+5,+270,+0.0615005,+3795.95,+61722.3,-175.275,OK,OK,+8,+180,+0.0230833,+1424.75,+61722.3,-345.428,OK,OK
-2020-07-31 19:00:00 PDT,+6.2,+280,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-31 20:00:00 PDT,+6.2,+250,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-31 21:00:00 PDT,+5.1,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-07-31 22:00:00 PDT,+4.1,+290,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-07-31 23:00:00 PDT,+3.7,+290,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-01 00:00:00 PDT,+3.4,+270,+5,+270,+0.0354297,+2186.8,+61722.3,+6.18567,OK,OK,+8,+180,+0.00550283,+339.647,+61722.3,+308.106,OK,OK
-2020-08-01 01:00:00 PDT,+3,+0,+5,+270,+0.0336877,+2079.28,+61722.3,+36.0718,OK,OK,+8,+180,+0.00770919,+475.829,+61722.3,+450.704,OK,OK
-2020-08-01 02:00:00 PDT,+2.6,+280,+5,+270,+0.026767,+1652.12,+61722.3,-116.208,OK,OK,+8,+180,+0.015685,+968.114,+61722.3,-323.872,OK,OK
-2020-08-01 03:00:00 PDT,+2.2,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-01 04:00:00 PDT,+1.9,+270,+5,+270,+0.0262403,+1619.61,+61722.3,-98.0483,OK,OK,+8,+180,+0.0166476,+1027.53,+61722.3,-241.09,OK,OK
-2020-08-01 05:00:00 PDT,+1.5,+300,+5,+270,+0.0280111,+1728.91,+61722.3,+69.321,OK,OK,+8,+180,+0.0146062,+901.525,+61722.3,+218.358,OK,OK
-2020-08-01 06:00:00 PDT,+1.5,+260,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-08-01 07:00:00 PDT,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-08-01 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-01 09:00:00 PDT,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-01 10:00:00 PDT,+1.5,+240,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-01 11:00:00 PDT,+2.6,+220,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-08-01 12:00:00 PDT,+1.5,+260,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-08-01 13:00:00 PDT,+4.1,+300,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-01 14:00:00 PDT,+5.7,+270,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-08-01 15:00:00 PDT,+6.2,+270,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-01 16:00:00 PDT,+6.2,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-01 17:00:00 PDT,+6.2,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-01 18:00:00 PDT,+6.2,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-01 19:00:00 PDT,+5.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-01 20:00:00 PDT,+4.6,+280,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-08-01 21:00:00 PDT,+4.6,+290,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-08-01 22:00:00 PDT,+3.6,+280,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-08-01 23:00:00 PDT,+3.6,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-02 00:00:00 PDT,+2.6,+300,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-02 01:00:00 PDT,+1.5,+190,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-08-02 02:00:00 PDT,+4.1,+290,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-08-02 03:00:00 PDT,+2.1,+240,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-02 04:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-08-02 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-02 06:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-02 07:00:00 PDT,+1.5,+230,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-08-02 08:00:00 PDT,+2.1,+270,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-08-02 09:00:00 PDT,+2.6,+270,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-02 10:00:00 PDT,+1.5,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-02 11:00:00 PDT,+1.5,+270,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-02 12:00:00 PDT,+3.6,+270,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-02 13:00:00 PDT,+5.7,+280,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-08-02 14:00:00 PDT,+4.6,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-02 15:00:00 PDT,+5.7,+280,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-02 16:00:00 PDT,+6.2,+270,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-02 17:00:00 PDT,+6.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-02 18:00:00 PDT,+6.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-02 19:00:00 PDT,+5.7,+280,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-02 20:00:00 PDT,+6.7,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-02 21:00:00 PDT,+4.1,+270,+5,+270,+0.0615005,+3795.95,+61722.3,-175.275,OK,OK,+8,+180,+0.0230833,+1424.75,+61722.3,-345.428,OK,OK
-2020-08-02 22:00:00 PDT,+2.6,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-02 23:00:00 PDT,+2.1,+250,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-03 00:00:00 PDT,+2.1,+290,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-03 01:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-03 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 06:00:00 PDT,+2.1,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 07:00:00 PDT,+0,+0,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-08-03 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 10:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-03 11:00:00 PDT,+2.1,+330,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-08-03 12:00:00 PDT,+3.1,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-03 13:00:00 PDT,+5.1,+290,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-08-03 14:00:00 PDT,+3.6,+280,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-03 15:00:00 PDT,+6.2,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-03 16:00:00 PDT,+6.2,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-03 17:00:00 PDT,+6.7,+260,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-03 18:00:00 PDT,+7.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-03 19:00:00 PDT,+6.2,+280,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-08-03 20:00:00 PDT,+4.6,+290,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-03 21:00:00 PDT,+4.1,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-03 22:00:00 PDT,+1.5,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-03 23:00:00 PDT,+1.5,+230,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-04 00:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-04 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 07:00:00 PDT,+1.5,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 08:00:00 PDT,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-08-04 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 11:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-04 12:00:00 PDT,+4.1,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-08-04 13:00:00 PDT,+5.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-08-04 14:00:00 PDT,+4.6,+270,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-04 15:00:00 PDT,+5.7,+290,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-08-04 16:00:00 PDT,+5.7,+260,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-04 17:00:00 PDT,+5.7,+290,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-04 18:00:00 PDT,+6.7,+270,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-04 19:00:00 PDT,+5.7,+290,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-04 20:00:00 PDT,+5.1,+290,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-04 21:00:00 PDT,+5.1,+300,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-04 22:00:00 PDT,+0,+0,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-04 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 01:00:00 PDT,+2.1,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 02:00:00 PDT,+0,+0,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-08-05 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 11:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-05 12:00:00 PDT,+2.1,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-08-05 13:00:00 PDT,+6.2,+290,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-08-05 14:00:00 PDT,+5.1,+290,+5,+270,+0.0559185,+3451.42,+61722.3,-140.15,OK,OK,+8,+180,+0.0172484,+1064.61,+61722.3,-305.297,OK,OK
-2020-08-05 15:00:00 PDT,+6.7,+280,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-05 16:00:00 PDT,+7.2,+270,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-08-05 17:00:00 PDT,+6.7,+270,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-08-05 18:00:00 PDT,+6.2,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-05 19:00:00 PDT,+5.1,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-05 20:00:00 PDT,+4.1,+300,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-08-05 21:00:00 PDT,+3.1,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-08-05 22:00:00 PDT,+0,+0,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-08-05 23:00:00 PDT,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 00:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-06 01:00:00 PDT,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 02:00:00 PDT,+2.1,+240,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-06 03:00:00 PDT,+1.5,+140,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-08-06 04:00:00 PDT,+0,+0,+5,+270,+0.0257853,+1591.53,+61722.3,+8.35746,OK,OK,+8,+180,+0.017014,+1050.14,+61722.3,+19.783,OK,OK
-2020-08-06 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 10:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-06 11:00:00 PDT,+1.5,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-06 12:00:00 PDT,+4.1,+280,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-08-06 13:00:00 PDT,+4.1,+300,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-08-06 14:00:00 PDT,+6.2,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-08-06 15:00:00 PDT,+6.7,+280,+5,+270,+0.0559185,+3451.42,+61722.3,-140.15,OK,OK,+8,+180,+0.0172484,+1064.61,+61722.3,-305.297,OK,OK
-2020-08-06 16:00:00 PDT,+5.7,+250,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-08-06 17:00:00 PDT,+4.1,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-08-06 18:00:00 PDT,+5.1,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-06 19:00:00 PDT,+6.2,+280,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-08-06 20:00:00 PDT,+3.6,+230,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-06 21:00:00 PDT,+4.6,+290,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-08-06 22:00:00 PDT,+2.1,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-06 23:00:00 PDT,+3.6,+320,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-08-07 00:00:00 PDT,+2.1,+240,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-08-07 01:00:00 PDT,+1.5,+260,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-08-07 02:00:00 PDT,+3.1,+320,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-07 03:00:00 PDT,+0,+0,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-08-07 04:00:00 PDT,+2.1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 05:00:00 PDT,+0,+0,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-08-07 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 11:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-07 12:00:00 PDT,+4.6,+310,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-08-07 13:00:00 PDT,+4.1,+260,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-08-07 14:00:00 PDT,+4.6,+280,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-08-07 15:00:00 PDT,+7.2,+260,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-08-07 16:00:00 PDT,+6.7,+250,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-08-07 17:00:00 PDT,+6.2,+250,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-08-07 18:00:00 PDT,+5.7,+250,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-08-07 19:00:00 PDT,+6.2,+270,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-08-07 20:00:00 PDT,+4.6,+290,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-07 21:00:00 PDT,+4.1,+320,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-07 22:00:00 PDT,+3.1,+290,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-08-07 23:00:00 PDT,+1.5,+240,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-08-08 00:00:00 PDT,+2.1,+300,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-08-08 01:00:00 PDT,+1.5,+280,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-08-08 02:00:00 PDT,+2.1,+160,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-08 03:00:00 PDT,+1.5,+200,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-08-08 04:00:00 PDT,+2.1,+240,+5,+270,+0.0258978,+1598.47,+61722.3,+98.4989,OK,OK,+8,+180,+0.0175856,+1085.42,+61722.3,+216.45,OK,OK
-2020-08-08 05:00:00 PDT,+0,+0,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-08-08 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-08 07:00:00 PDT,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-08 08:00:00 PDT,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-08-08 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-08 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-08 11:00:00 PDT,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-08 12:00:00 PDT,+2.6,+180,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-08-08 13:00:00 PDT,+1.5,+110,+5,+270,+0.0249181,+1538,+61722.3,+160.608,OK,OK,+8,+180,+0.0193397,+1193.69,+61722.3,+294.387,OK,OK
-2020-08-08 14:00:00 PDT,+2.1,+220,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-08-08 15:00:00 PDT,+5.1,+250,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-08-08 16:00:00 PDT,+5.7,+230,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-08-08 17:00:00 PDT,+5.7,+260,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-08-08 18:00:00 PDT,+6.2,+260,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-08-08 19:00:00 PDT,+5.7,+280,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-08 20:00:00 PDT,+6.2,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-08 21:00:00 PDT,+4.6,+290,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-08 22:00:00 PDT,+4.1,+290,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-08 23:00:00 PDT,+2.6,+320,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-09 00:00:00 PDT,+2.6,+270,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-08-09 01:00:00 PDT,+1.5,+280,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-08-09 02:00:00 PDT,+1.5,+270,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-09 03:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-09 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 12:00:00 PDT,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-09 13:00:00 PDT,+4.1,+300,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-08-09 14:00:00 PDT,+5.1,+280,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-08-09 15:00:00 PDT,+6.2,+260,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-08-09 16:00:00 PDT,+7.2,+290,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-09 17:00:00 PDT,+6.2,+260,+5,+270,+0.0675734,+4170.78,+61722.3,-211.02,OK,OK,+8,+180,+0.0293785,+1813.31,+61722.3,-381.651,OK,OK
-2020-08-09 18:00:00 PDT,+6.7,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-09 19:00:00 PDT,+6.7,+290,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-09 20:00:00 PDT,+5.1,+300,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-09 21:00:00 PDT,+4.6,+300,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-08-09 22:00:00 PDT,+2.6,+280,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-08-09 23:00:00 PDT,+3.1,+260,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-10 00:00:00 PDT,+3.1,+290,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-08-10 01:00:00 PDT,+0,+0,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-08-10 02:00:00 PDT,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-10 03:00:00 PDT,+1.5,+230,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-10 04:00:00 PDT,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-10 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-10 06:00:00 PDT,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-10 07:00:00 PDT,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-08-10 08:00:00 PDT,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-10 09:00:00 PDT,+2.1,+240,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-10 10:00:00 PDT,+2.6,+290,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-10 11:00:00 PDT,+2.6,+260,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-10 12:00:00 PDT,+2.6,+230,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-10 13:00:00 PDT,+4.1,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-10 14:00:00 PDT,+5.7,+240,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-10 15:00:00 PDT,+7.7,+260,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-08-10 16:00:00 PDT,+7.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-08-10 17:00:00 PDT,+7.2,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-08-10 18:00:00 PDT,+6.7,+260,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-08-10 19:00:00 PDT,+5.1,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-10 20:00:00 PDT,+5.1,+310,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-08-10 21:00:00 PDT,+4.6,+290,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-08-10 22:00:00 PDT,+2.6,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-10 23:00:00 PDT,+1.5,+240,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-11 00:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-08-11 01:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-11 02:00:00 PDT,+1.5,+260,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-11 03:00:00 PDT,+1.5,+260,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-11 04:00:00 PDT,+3.1,+310,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-11 05:00:00 PDT,+0,+0,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-08-11 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-11 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-11 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-11 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-11 10:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-11 11:00:00 PDT,+1.5,+290,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-08-11 12:00:00 PDT,+3.1,+250,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-11 13:00:00 PDT,+3.1,+270,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-08-11 14:00:00 PDT,+5.1,+250,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-08-11 15:00:00 PDT,+5.1,+280,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-08-11 16:00:00 PDT,+6.7,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-08-11 17:00:00 PDT,+6.7,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-08-11 18:00:00 PDT,+6.7,+270,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-08-11 19:00:00 PDT,+5.7,+290,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-08-11 20:00:00 PDT,+5.1,+290,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-11 21:00:00 PDT,+3.6,+270,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-11 22:00:00 PDT,+2.6,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-08-11 23:00:00 PDT,+1.5,+250,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-12 00:00:00 PDT,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-12 01:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-12 02:00:00 PDT,+2.1,+270,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-08-12 03:00:00 PDT,+1.5,+270,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-12 04:00:00 PDT,+1.5,+330,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-12 05:00:00 PDT,+2.1,+350,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-12 06:00:00 PDT,+0,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-08-12 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-12 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-12 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-12 10:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-12 11:00:00 PDT,+3.6,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-12 12:00:00 PDT,+2.1,+250,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-08-12 13:00:00 PDT,+3.1,+280,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-12 14:00:00 PDT,+4.1,+270,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-08-12 15:00:00 PDT,+6.7,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-12 16:00:00 PDT,+5.7,+280,+5,+270,+0.0615005,+3795.95,+61722.3,-175.275,OK,OK,+8,+180,+0.0230833,+1424.75,+61722.3,-345.428,OK,OK
-2020-08-12 17:00:00 PDT,+5.7,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-12 18:00:00 PDT,+7.2,+250,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-12 19:00:00 PDT,+5.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-08-12 20:00:00 PDT,+4.6,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-08-12 21:00:00 PDT,+4.1,+270,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-08-12 22:00:00 PDT,+2.6,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-12 23:00:00 PDT,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-13 00:00:00 PDT,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-13 01:00:00 PDT,+3.6,+320,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-08-13 02:00:00 PDT,+3.1,+280,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-08-13 03:00:00 PDT,+0,+0,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-08-13 04:00:00 PDT,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-13 05:00:00 PDT,+2.6,+180,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-13 06:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-13 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-13 08:00:00 PDT,+1.5,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-13 09:00:00 PDT,+1.5,+300,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-08-13 10:00:00 PDT,+0,+0,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-08-13 11:00:00 PDT,+3.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-13 12:00:00 PDT,+3.1,+320,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-08-13 13:00:00 PDT,+3.6,+290,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-08-13 14:00:00 PDT,+6.2,+280,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-08-13 15:00:00 PDT,+5.1,+280,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-13 16:00:00 PDT,+5.1,+270,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-08-13 17:00:00 PDT,+7.2,+250,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-08-13 18:00:00 PDT,+6.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-08-13 19:00:00 PDT,+5.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-13 20:00:00 PDT,+4.1,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-08-13 21:00:00 PDT,+3.6,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-08-13 22:00:00 PDT,+2.6,+270,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-08-13 23:00:00 PDT,+3.1,+300,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-14 00:00:00 PDT,+3.6,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-08-14 01:00:00 PDT,+3.1,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-14 02:00:00 PDT,+3.6,+230,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-08-14 03:00:00 PDT,+2.6,+230,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-08-14 04:00:00 PDT,+2.6,+240,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-08-14 05:00:00 PDT,+2.6,+230,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-08-14 06:00:00 PDT,+1.5,+220,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-08-14 07:00:00 PDT,+0,+0,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-08-14 08:00:00 PDT,+1.5,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-14 09:00:00 PDT,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-08-14 10:00:00 PDT,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-14 11:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-14 12:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-14 13:00:00 PDT,+3.1,+300,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-14 14:00:00 PDT,+3.6,+310,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-08-14 15:00:00 PDT,+4.1,+270,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-08-14 16:00:00 PDT,+4.1,+280,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-14 17:00:00 PDT,+6.2,+250,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-14 18:00:00 PDT,+6.2,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-08-14 19:00:00 PDT,+6.2,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-08-14 20:00:00 PDT,+5.1,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-08-14 21:00:00 PDT,+3.1,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-08-14 22:00:00 PDT,+2.1,+280,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-08-14 23:00:00 PDT,+3.1,+290,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-15 00:00:00 PDT,+3.6,+290,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-08-15 01:00:00 PDT,+2.6,+310,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-08-15 02:00:00 PDT,+3.1,+310,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-08-15 03:00:00 PDT,+2.1,+290,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-08-15 04:00:00 PDT,+2.6,+300,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-08-15 05:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-08-15 06:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-15 07:00:00 PDT,+1.5,+280,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-08-15 08:00:00 PDT,+2.6,+280,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-08-15 09:00:00 PDT,+4.1,+300,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-15 10:00:00 PDT,+3.1,+270,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-08-15 11:00:00 PDT,+2.6,+270,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-08-15 12:00:00 PDT,+2.6,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-15 13:00:00 PDT,+3.6,+250,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-15 14:00:00 PDT,+2.1,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-08-15 15:00:00 PDT,+4.1,+260,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-15 16:00:00 PDT,+5.7,+270,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-08-15 17:00:00 PDT,+7.2,+240,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-15 18:00:00 PDT,+5.1,+270,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-08-15 19:00:00 PDT,+4.6,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-08-15 20:00:00 PDT,+4.6,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-08-15 21:00:00 PDT,+3.6,+280,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-08-15 22:00:00 PDT,+2.6,+280,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-15 23:00:00 PDT,+2.1,+260,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-16 00:00:00 PDT,+2.1,+280,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-16 01:00:00 PDT,+1.5,+280,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-16 02:00:00 PDT,+2.1,+280,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-16 03:00:00 PDT,+2.1,+260,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-16 04:00:00 PDT,+2.1,+310,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-16 05:00:00 PDT,+2.6,+320,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-16 06:00:00 PDT,+0,+0,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-08-16 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-16 08:00:00 PDT,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-16 09:00:00 PDT,+1.5,+40,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-16 10:00:00 PDT,+1.5,+100,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-16 11:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-16 12:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-16 13:00:00 PDT,+3.1,+280,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-08-16 14:00:00 PDT,+4.1,+310,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-08-16 15:00:00 PDT,+3.6,+290,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-08-16 16:00:00 PDT,+4.6,+270,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-08-16 17:00:00 PDT,+6.2,+280,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-08-16 18:00:00 PDT,+6.7,+260,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-16 19:00:00 PDT,+6.2,+250,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-16 20:00:00 PDT,+3.6,+260,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-08-16 21:00:00 PDT,+3.6,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-08-16 22:00:00 PDT,+2.1,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-08-16 23:00:00 PDT,+2.1,+320,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-17 00:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-17 01:00:00 PDT,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 02:00:00 PDT,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-17 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 09:00:00 PDT,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-17 10:00:00 PDT,+2.1,+270,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-17 11:00:00 PDT,+2.1,+290,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-17 12:00:00 PDT,+3.6,+310,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-17 13:00:00 PDT,+4.6,+270,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-08-17 14:00:00 PDT,+5.1,+280,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-08-17 15:00:00 PDT,+6.7,+290,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-08-17 16:00:00 PDT,+5.7,+270,+5,+270,+0.0615005,+3795.95,+61722.3,-175.275,OK,OK,+8,+180,+0.0230833,+1424.75,+61722.3,-345.428,OK,OK
-2020-08-17 17:00:00 PDT,+6.7,+250,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-17 18:00:00 PDT,+6.2,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-08-17 19:00:00 PDT,+6.2,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-17 20:00:00 PDT,+4.1,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-17 21:00:00 PDT,+4.1,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-08-17 22:00:00 PDT,+0,+0,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-08-17 23:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-18 00:00:00 PDT,+2.1,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-08-18 01:00:00 PDT,+1.5,+260,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-08-18 02:00:00 PDT,+2.6,+310,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-18 03:00:00 PDT,+2.1,+270,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-08-18 04:00:00 PDT,+1.5,+260,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-18 05:00:00 PDT,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-18 06:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-18 07:00:00 PDT,+2.6,+290,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-08-18 08:00:00 PDT,+2.1,+300,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-18 09:00:00 PDT,+2.6,+300,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-08-18 10:00:00 PDT,+1.5,+290,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-08-18 11:00:00 PDT,+1.5,+270,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-18 12:00:00 PDT,+3.1,+260,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-18 13:00:00 PDT,+3.1,+280,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-08-18 14:00:00 PDT,+3.6,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-08-18 15:00:00 PDT,+6.2,+260,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-08-18 16:00:00 PDT,+6.7,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-18 17:00:00 PDT,+7.2,+250,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-18 18:00:00 PDT,+6.7,+280,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-08-18 19:00:00 PDT,+6.2,+280,+5,+270,+0.0617092,+3808.83,+61722.3,-230.769,OK,OK,+8,+180,+0.0231849,+1431.02,+61722.3,-450.164,OK,OK
-2020-08-18 20:00:00 PDT,+4.6,+280,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-18 21:00:00 PDT,+4.1,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-08-18 22:00:00 PDT,+3.1,+280,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-08-18 23:00:00 PDT,+2.1,+280,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-08-19 00:00:00 PDT,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-19 01:00:00 PDT,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 02:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-19 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 04:00:00 PDT,+1.5,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 05:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-08-19 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 10:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-19 11:00:00 PDT,+1.5,+300,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-08-19 12:00:00 PDT,+4.1,+280,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-08-19 13:00:00 PDT,+4.6,+310,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-08-19 14:00:00 PDT,+5.1,+260,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-08-19 15:00:00 PDT,+5.7,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-08-19 16:00:00 PDT,+4.6,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-19 17:00:00 PDT,+6.2,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-08-19 18:00:00 PDT,+6.7,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-08-19 19:00:00 PDT,+5.7,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-19 20:00:00 PDT,+3.6,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-19 21:00:00 PDT,+3.1,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-08-19 22:00:00 PDT,+2.1,+250,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-08-19 23:00:00 PDT,+0,+0,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-08-20 00:00:00 PDT,+1.5,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 01:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-08-20 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 04:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 05:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-20 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 11:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-20 12:00:00 PDT,+2.1,+330,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-08-20 13:00:00 PDT,+5.7,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-20 14:00:00 PDT,+5.1,+280,+5,+270,+0.0480061,+2963.04,+61722.3,-20.8189,OK,OK,+8,+180,+0.00906887,+559.751,+61722.3,-57.0884,OK,OK
-2020-08-20 15:00:00 PDT,+6.2,+280,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-08-20 16:00:00 PDT,+6.7,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-20 17:00:00 PDT,+6.2,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-20 18:00:00 PDT,+5.7,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-20 19:00:00 PDT,+6.2,+270,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-08-20 20:00:00 PDT,+3.6,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-20 21:00:00 PDT,+3.1,+290,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-08-20 22:00:00 PDT,+2.6,+300,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-08-20 23:00:00 PDT,+3.1,+300,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-08-21 00:00:00 PDT,+2.6,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-08-21 01:00:00 PDT,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-21 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 07:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 08:00:00 PDT,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-08-21 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 10:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 11:00:00 PDT,+1.5,+340,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-08-21 12:00:00 PDT,+1.5,+330,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-08-21 13:00:00 PDT,+4.1,+320,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-08-21 14:00:00 PDT,+5.1,+300,+5,+270,+0.0352048,+2172.92,+61722.3,-0.143443,OK,OK,+8,+180,+0.00533196,+329.1,+61722.3,-64.3202,OK,OK
-2020-08-21 15:00:00 PDT,+5.1,+280,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-08-21 16:00:00 PDT,+6.2,+270,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-08-21 17:00:00 PDT,+6.2,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-21 18:00:00 PDT,+6.7,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-21 19:00:00 PDT,+5.7,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-21 20:00:00 PDT,+0,+0,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-21 21:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 22:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-21 23:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 00:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-22 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 04:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 05:00:00 PDT,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-22 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 10:00:00 PDT,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-22 11:00:00 PDT,+1.5,+330,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-08-22 12:00:00 PDT,+2.1,+320,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-08-22 13:00:00 PDT,+2.6,+300,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-08-22 14:00:00 PDT,+5.7,+290,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-08-22 15:00:00 PDT,+5.7,+280,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-22 16:00:00 PDT,+6.7,+250,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-22 17:00:00 PDT,+7.2,+280,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-08-22 18:00:00 PDT,+5.7,+280,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-08-22 19:00:00 PDT,+6.2,+280,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-22 20:00:00 PDT,+3.6,+290,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-22 21:00:00 PDT,+1.5,+300,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-08-22 22:00:00 PDT,+3.1,+310,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-08-22 23:00:00 PDT,+2.6,+300,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-08-23 00:00:00 PDT,+2.1,+330,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-08-23 01:00:00 PDT,+1.5,+250,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-23 02:00:00 PDT,+1.5,+300,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-23 03:00:00 PDT,+2.1,+280,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-23 04:00:00 PDT,+1.5,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-23 05:00:00 PDT,+1.5,+240,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-23 06:00:00 PDT,+1.5,+280,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-23 07:00:00 PDT,+2.1,+260,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-23 08:00:00 PDT,+2.1,+290,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-23 09:00:00 PDT,+2.1,+260,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-23 10:00:00 PDT,+1.5,+290,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-23 11:00:00 PDT,+2.6,+320,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-23 12:00:00 PDT,+4.1,+300,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-08-23 13:00:00 PDT,+4.1,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-08-23 14:00:00 PDT,+5.1,+280,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-08-23 15:00:00 PDT,+6.2,+270,+5,+270,+0.0455284,+2810.12,+61722.3,-87.364,OK,OK,+8,+180,+0.00621182,+383.408,+61722.3,-187.341,OK,OK
-2020-08-23 16:00:00 PDT,+7.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-23 17:00:00 PDT,+7.2,+270,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-08-23 18:00:00 PDT,+6.7,+270,+5,+270,+0.0666488,+4113.71,+61722.3,-325.141,OK,OK,+8,+180,+0.0281794,+1739.29,+61722.3,-589.015,OK,OK
-2020-08-23 19:00:00 PDT,+4.1,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-23 20:00:00 PDT,+2.6,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-08-23 21:00:00 PDT,+1.5,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-08-23 22:00:00 PDT,+2.1,+280,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-08-23 23:00:00 PDT,+2.6,+290,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-08-24 00:00:00 PDT,+1.5,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-08-24 01:00:00 PDT,+1.5,+300,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-24 02:00:00 PDT,+2.1,+310,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-08-24 03:00:00 PDT,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-08-24 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 10:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-24 11:00:00 PDT,+2.6,+330,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-08-24 12:00:00 PDT,+5.1,+310,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-08-24 13:00:00 PDT,+4.1,+290,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-08-24 14:00:00 PDT,+5.7,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-24 15:00:00 PDT,+4.6,+290,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-24 16:00:00 PDT,+5.1,+300,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-24 17:00:00 PDT,+5.7,+270,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-08-24 18:00:00 PDT,+5.7,+290,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-24 19:00:00 PDT,+5.1,+290,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-24 20:00:00 PDT,+5.7,+290,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-24 21:00:00 PDT,+3.6,+280,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-08-24 22:00:00 PDT,+1.5,+250,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-24 23:00:00 PDT,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-25 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 01:00:00 PDT,+1.5,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 02:00:00 PDT,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-08-25 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 07:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 08:00:00 PDT,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-08-25 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 12:00:00 PDT,+3.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-25 13:00:00 PDT,+3.6,+230,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-25 14:00:00 PDT,+3.6,+330,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-25 15:00:00 PDT,+5.1,+290,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-08-25 16:00:00 PDT,+5.1,+260,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-25 17:00:00 PDT,+6.2,+270,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-25 18:00:00 PDT,+6.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-25 19:00:00 PDT,+4.6,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-25 20:00:00 PDT,+4.6,+260,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-08-25 21:00:00 PDT,+5.1,+270,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-08-25 22:00:00 PDT,+0,+0,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-08-25 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 00:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 01:00:00 PDT,+2.6,+310,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-08-26 02:00:00 PDT,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-08-26 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 05:00:00 PDT,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 06:00:00 PDT,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-08-26 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 11:00:00 PDT,+2.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-26 12:00:00 PDT,+4.1,+290,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-08-26 13:00:00 PDT,+3.1,+320,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-26 14:00:00 PDT,+4.1,+290,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-08-26 15:00:00 PDT,+5.7,+270,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-26 16:00:00 PDT,+7.2,+250,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-26 17:00:00 PDT,+6.2,+270,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-08-26 18:00:00 PDT,+7.2,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-26 19:00:00 PDT,+5.1,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-08-26 20:00:00 PDT,+2.6,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-08-26 21:00:00 PDT,+2.1,+260,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-08-26 22:00:00 PDT,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-08-26 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 04:00:00 PDT,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 05:00:00 PDT,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-08-27 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 10:00:00 PDT,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 11:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-08-27 12:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-27 13:00:00 PDT,+3.1,+320,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-08-27 14:00:00 PDT,+3.6,+300,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-08-27 15:00:00 PDT,+5.7,+250,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-08-27 16:00:00 PDT,+6.7,+240,+5,+270,+0.0466597,+2879.94,+61722.3,-136.876,OK,OK,+8,+180,+0.00728352,+449.556,+61722.3,-195.642,OK,OK
-2020-08-27 17:00:00 PDT,+6.7,+260,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-08-27 18:00:00 PDT,+5.7,+260,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-08-27 19:00:00 PDT,+6.2,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-08-27 20:00:00 PDT,+4.1,+280,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-08-27 21:00:00 PDT,+2.6,+280,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-08-27 22:00:00 PDT,+2.1,+270,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-08-27 23:00:00 PDT,+1.5,+330,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-28 00:00:00 PDT,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-08-28 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 08:00:00 PDT,+1.5,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 09:00:00 PDT,+0,+0,+5,+270,+0.0258978,+1598.47,+61722.3,+98.4989,OK,OK,+8,+180,+0.0175856,+1085.42,+61722.3,+216.45,OK,OK
-2020-08-28 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 11:00:00 PDT,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-28 12:00:00 PDT,+2.1,+330,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-08-28 13:00:00 PDT,+3.1,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-08-28 14:00:00 PDT,+4.1,+290,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-08-28 15:00:00 PDT,+5.7,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-28 16:00:00 PDT,+6.2,+270,+5,+270,+0.0510021,+3147.96,+61722.3,-138.776,OK,OK,+8,+180,+0.0119774,+739.272,+61722.3,-325.761,OK,OK
-2020-08-28 17:00:00 PDT,+6.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-28 18:00:00 PDT,+6.2,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-28 19:00:00 PDT,+4.1,+290,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-28 20:00:00 PDT,+4.1,+310,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-28 21:00:00 PDT,+3.1,+300,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-08-28 22:00:00 PDT,+2.1,+270,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-08-28 23:00:00 PDT,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-08-29 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 06:00:00 PDT,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 07:00:00 PDT,+0,+0,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-08-29 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 10:00:00 PDT,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-29 11:00:00 PDT,+2.1,+220,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-08-29 12:00:00 PDT,+2.1,+250,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-08-29 13:00:00 PDT,+4.1,+280,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-08-29 14:00:00 PDT,+5.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-08-29 15:00:00 PDT,+5.1,+300,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-29 16:00:00 PDT,+6.7,+270,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-29 17:00:00 PDT,+5.7,+260,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-08-29 18:00:00 PDT,+5.1,+260,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-08-29 19:00:00 PDT,+4.6,+290,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-08-29 20:00:00 PDT,+4.1,+310,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-08-29 21:00:00 PDT,+3.1,+300,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-08-29 22:00:00 PDT,+1.5,+270,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-08-29 23:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-30 00:00:00 PDT,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 01:00:00 PDT,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-08-30 02:00:00 PDT,+2.1,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 03:00:00 PDT,+0,+0,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-08-30 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 11:00:00 PDT,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-30 12:00:00 PDT,+1.5,+250,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-08-30 13:00:00 PDT,+3.1,+250,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-08-30 14:00:00 PDT,+5.1,+300,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-08-30 15:00:00 PDT,+5.7,+270,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-08-30 16:00:00 PDT,+6.7,+260,+5,+270,+0.050337,+3106.92,+61722.3,-157.65,OK,OK,+8,+180,+0.0112003,+691.306,+61722.3,-359.77,OK,OK
-2020-08-30 17:00:00 PDT,+7.2,+280,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-30 18:00:00 PDT,+7.2,+280,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-08-30 19:00:00 PDT,+6.2,+280,+5,+270,+0.0678001,+4184.77,+61722.3,-278.311,OK,OK,+8,+180,+0.0294875,+1820.04,+61722.3,-499.867,OK,OK
-2020-08-30 20:00:00 PDT,+4.6,+270,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-08-30 21:00:00 PDT,+2.1,+290,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-08-30 22:00:00 PDT,+1.5,+250,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-08-30 23:00:00 PDT,+2.1,+290,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-08-31 00:00:00 PDT,+3.1,+270,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-08-31 01:00:00 PDT,+0,+0,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-08-31 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-31 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-31 04:00:00 PDT,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-31 05:00:00 PDT,+1.5,+240,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-31 06:00:00 PDT,+1.5,+240,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-31 07:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-08-31 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-31 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-31 10:00:00 PDT,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-08-31 11:00:00 PDT,+2.1,+340,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-08-31 12:00:00 PDT,+1.5,+330,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-08-31 13:00:00 PDT,+3.1,+320,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-08-31 14:00:00 PDT,+5.1,+290,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-08-31 15:00:00 PDT,+5.6,+280,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-08-31 16:00:00 PDT,+6.2,+270,+5,+270,+0.0500402,+3088.59,+61722.3,-129.949,OK,OK,+8,+180,+0.0109625,+676.63,+61722.3,-309.025,OK,OK
-2020-08-31 17:00:00 PDT,+6.7,+260,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-08-31 18:00:00 PDT,+6.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-31 19:00:00 PDT,+5.7,+260,+5,+270,+0.0586216,+3618.26,+61722.3,-281.128,OK,OK,+8,+180,+0.0197598,+1219.62,+61722.3,-561.438,OK,OK
-2020-08-31 20:00:00 PDT,+3.1,+250,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-08-31 21:00:00 PDT,+2.6,+250,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-08-31 22:00:00 PDT,+1.5,+230,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-08-31 23:00:00 PDT,+1.3,+260,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-09-01 00:00:00 PDT,+1.1,+0,+5,+270,+0.0266862,+1647.14,+61722.3,+67.3802,OK,OK,+8,+180,+0.0163782,+1010.9,+61722.3,+169.979,OK,OK
-2020-09-01 01:00:00 PDT,+0.9,+0,+5,+270,+0.0258025,+1592.59,+61722.3,-54.7891,OK,OK,+8,+180,+0.017489,+1079.46,+61722.3,-121.938,OK,OK
-2020-09-01 02:00:00 PDT,+0.8,+20,+5,+270,+0.0257555,+1589.69,+61722.3,-45.3548,OK,OK,+8,+180,+0.0175817,+1085.18,+61722.3,-99.886,OK,OK
-2020-09-01 03:00:00 PDT,+0.6,+360,+5,+270,+0.0257794,+1591.16,+61722.3,-50.6065,OK,OK,+8,+180,+0.0174545,+1077.33,+61722.3,-113.143,OK,OK
-2020-09-01 04:00:00 PDT,+0.4,+360,+5,+270,+0.025703,+1586.45,+61722.3,-30.6331,OK,OK,+8,+180,+0.0176861,+1091.63,+61722.3,-66.6785,OK,OK
-2020-09-01 05:00:00 PDT,+0.2,+10,+5,+270,+0.0256798,+1585.02,+61722.3,-20.5399,OK,OK,+8,+180,+0.0177325,+1094.49,+61722.3,-44.4781,OK,OK
-2020-09-01 06:00:00 PDT,+0.1,+360,+5,+270,+0.0256673,+1584.25,+61722.3,-11.9285,OK,OK,+8,+180,+0.0177549,+1095.87,+61722.3,-25.7669,OK,OK
-2020-09-01 07:00:00 PDT,+0,+0,+5,+270,+0.0256624,+1583.94,+61722.3,-5.15708,OK,OK,+8,+180,+0.0177673,+1096.64,+61722.3,-11.1243,OK,OK
-2020-09-01 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-01 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-01 10:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-01 11:00:00 PDT,+2.6,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-09-01 12:00:00 PDT,+3.1,+290,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-09-01 13:00:00 PDT,+3.1,+260,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-09-01 14:00:00 PDT,+5.1,+240,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-09-01 15:00:00 PDT,+5.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-01 16:00:00 PDT,+5.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-01 17:00:00 PDT,+9.3,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-01 18:00:00 PDT,+8.3,+230,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-09-01 19:00:00 PDT,+7.2,+220,+5,+270,+0.0587345,+3625.23,+61722.3,-333.692,OK,OK,+8,+180,+0.0194894,+1202.93,+61722.3,-592.459,OK,OK
-2020-09-01 20:00:00 PDT,+6.7,+230,+5,+270,+0.0438226,+2704.83,+61722.3,-45.3285,OK,OK,+8,+180,+0.00524099,+323.486,+61722.3,+919.833,OK,OK
-2020-09-01 21:00:00 PDT,+4.1,+260,+5,+270,+0.0465661,+2874.16,+61722.3,-127.909,OK,OK,+8,+180,+0.00722877,+446.176,+61722.3,+59.0718,OK,OK
-2020-09-01 22:00:00 PDT,+2.7,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-09-01 23:00:00 PDT,+1.8,+270,+5,+270,+0.0293651,+1812.48,+61722.3,+114.572,OK,OK,+8,+180,+0.0130971,+808.382,+61722.3,+442.166,OK,OK
-2020-09-02 00:00:00 PDT,+1.4,+250,+5,+270,+0.0277623,+1713.55,+61722.3,+68.2663,OK,OK,+8,+180,+0.0149299,+921.509,+61722.3,+206.064,OK,OK
-2020-09-02 01:00:00 PDT,+0,+0,+5,+270,+0.0267548,+1651.37,+61722.3,+79.8888,OK,OK,+8,+180,+0.0163103,+1006.71,+61722.3,+203.067,OK,OK
-2020-09-02 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-02 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-02 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-02 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-02 06:00:00 PDT,+1.3,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-02 07:00:00 PDT,+1.4,+250,+5,+270,+0.0266862,+1647.14,+61722.3,+67.3802,OK,OK,+8,+180,+0.0163782,+1010.9,+61722.3,+169.979,OK,OK
-2020-09-02 08:00:00 PDT,+0,+0,+5,+270,+0.0267548,+1651.37,+61722.3,+79.8888,OK,OK,+8,+180,+0.0163103,+1006.71,+61722.3,+203.067,OK,OK
-2020-09-02 09:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-02 10:00:00 PDT,+2.4,+300,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-09-02 11:00:00 PDT,+2.1,+260,+5,+270,+0.0293526,+1811.71,+61722.3,+24.3897,OK,OK,+8,+180,+0.0127299,+785.72,+61722.3,+101.72,OK,OK
-2020-09-02 12:00:00 PDT,+3.1,+230,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-09-02 13:00:00 PDT,+3.1,+290,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-09-02 14:00:00 PDT,+4.6,+250,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-09-02 15:00:00 PDT,+6.2,+240,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-09-02 16:00:00 PDT,+7.7,+230,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-09-02 17:00:00 PDT,+9.3,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-02 18:00:00 PDT,+7.7,+230,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-09-02 19:00:00 PDT,+5.1,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-02 20:00:00 PDT,+4.6,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-02 21:00:00 PDT,+4.1,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-09-02 22:00:00 PDT,+3,+220,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-02 23:00:00 PDT,+2.5,+190,+5,+270,+0.0285676,+1763.26,+61722.3,+156.814,OK,OK,+8,+180,+0.0143165,+883.646,+61722.3,+506.633,OK,OK
-2020-09-03 00:00:00 PDT,+1.4,+170,+5,+270,+0.0256343,+1582.21,+61722.3,+161.474,OK,OK,+8,+180,+0.0182484,+1126.34,+61722.3,+330.275,OK,OK
-2020-09-03 01:00:00 PDT,+0,+0,+5,+270,+0.0255107,+1574.58,+61722.3,+59.4343,OK,OK,+8,+180,+0.0179441,+1107.55,+61722.3,+125.818,OK,OK
-2020-09-03 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 11:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-03 12:00:00 PDT,+2.6,+320,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-09-03 13:00:00 PDT,+3.1,+300,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-09-03 14:00:00 PDT,+3.1,+290,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-09-03 15:00:00 PDT,+4.5,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-09-03 16:00:00 PDT,+5.9,+260,+5,+270,+0.040769,+2516.36,+61722.3,-40.7743,OK,OK,+8,+180,+0.0019001,+117.278,+61722.3,+420.259,OK,OK
-2020-09-03 17:00:00 PDT,+7.3,+250,+5,+270,+0.0506746,+3127.75,+61722.3,-181.984,OK,OK,+8,+180,+0.0114807,+708.613,+61722.3,-395.59,OK,OK
-2020-09-03 18:00:00 PDT,+8.7,+240,+5,+270,+0.0615188,+3797.08,+61722.3,-346.966,OK,OK,+8,+180,+0.0226396,+1397.37,+61722.3,-655.242,OK,OK
-2020-09-03 19:00:00 PDT,+8.2,+240,+5,+270,+0.0707307,+4365.66,+61722.3,-495.56,OK,OK,+8,+180,+0.0319391,+1971.35,+61722.3,-835.578,OK,OK
-2020-09-03 20:00:00 PDT,+7.7,+240,+5,+270,+0.0653705,+4034.81,+61722.3,-423.636,OK,OK,+8,+180,+0.0264543,+1632.82,+61722.3,-751.242,OK,OK
-2020-09-03 21:00:00 PDT,+3.9,+300,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-03 22:00:00 PDT,+0,+0,+5,+270,+0.0361523,+2231.4,+61722.3,-0.781959,OK,OK,+8,+180,+0.00455909,+281.397,+61722.3,+203.271,OK,OK
-2020-09-03 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 11:00:00 PDT,+3.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 12:00:00 PDT,+0,+0,+5,+270,+0.0268464,+1657.02,+61722.3,-117.481,OK,OK,+8,+180,+0.015544,+959.412,+61722.3,-333.871,OK,OK
-2020-09-04 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 14:00:00 PDT,+4.1,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-04 15:00:00 PDT,+7.2,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-04 16:00:00 PDT,+6.2,+220,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-04 17:00:00 PDT,+7.7,+210,+5,+270,+0.0388857,+2400.11,+61722.3,+44.2432,OK,OK,+8,+180,+0.00456409,+281.706,+61722.3,+1652.36,OK,OK
-2020-09-04 18:00:00 PDT,+8.2,+230,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-09-04 19:00:00 PDT,+7.2,+260,+5,+270,+0.0578885,+3573.01,+61722.3,-320.151,OK,OK,+8,+180,+0.0186244,+1149.54,+61722.3,-568.468,OK,OK
-2020-09-04 20:00:00 PDT,+7.2,+240,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-09-04 21:00:00 PDT,+2.6,+250,+5,+270,+0.064171,+3960.78,+61722.3,-345.348,OK,OK,+8,+180,+0.0255023,+1574.06,+61722.3,-639.956,OK,OK
-2020-09-04 22:00:00 PDT,+4.1,+240,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-09-04 23:00:00 PDT,+2.9,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-05 00:00:00 PDT,+1.2,+180,+5,+270,+0.0292131,+1803.1,+61722.3,+133.916,OK,OK,+8,+180,+0.0133965,+826.861,+61722.3,+492.519,OK,OK
-2020-09-05 01:00:00 PDT,+1.1,+160,+5,+270,+0.0254964,+1573.7,+61722.3,+64.4635,OK,OK,+8,+180,+0.0181038,+1117.41,+61722.3,+134.038,OK,OK
-2020-09-05 02:00:00 PDT,+2.4,+200,+5,+270,+0.0256182,+1581.21,+61722.3,+33.3367,OK,OK,+8,+180,+0.0177013,+1092.57,+61722.3,+72.5126,OK,OK
-2020-09-05 03:00:00 PDT,+0.8,+120,+5,+270,+0.026267,+1621.26,+61722.3,+155.944,OK,OK,+8,+180,+0.0173013,+1067.87,+61722.3,+352.853,OK,OK
-2020-09-05 04:00:00 PDT,+0.6,+90,+5,+270,+0.0257456,+1589.08,+61722.3,-14.243,OK,OK,+8,+180,+0.0173997,+1073.95,+61722.3,-32.0795,OK,OK
-2020-09-05 05:00:00 PDT,+0.4,+70,+5,+270,+0.0257398,+1588.72,+61722.3,-29.6204,OK,OK,+8,+180,+0.0174809,+1078.96,+61722.3,-66.0513,OK,OK
-2020-09-05 06:00:00 PDT,+0.3,+50,+5,+270,+0.0257,+1586.26,+61722.3,-25.9305,OK,OK,+8,+180,+0.0176362,+1088.55,+61722.3,-56.7794,OK,OK
-2020-09-05 07:00:00 PDT,+0.1,+20,+5,+270,+0.0256828,+1585.2,+61722.3,-21.5868,OK,OK,+8,+180,+0.0177009,+1092.54,+61722.3,-46.9179,OK,OK
-2020-09-05 08:00:00 PDT,+0,+0,+5,+270,+0.0256631,+1583.98,+61722.3,-6.6073,OK,OK,+8,+180,+0.0177647,+1096.48,+61722.3,-14.2569,OK,OK
-2020-09-05 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-05 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-05 11:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-05 12:00:00 PDT,+3.6,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-09-05 13:00:00 PDT,+4.1,+240,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-09-05 14:00:00 PDT,+5.1,+270,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-05 15:00:00 PDT,+7.7,+240,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-09-05 16:00:00 PDT,+8.2,+210,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-05 17:00:00 PDT,+7.7,+260,+5,+270,+0.0409912,+2530.07,+61722.3,+101.012,OK,OK,+8,+180,+0.00572906,+353.611,+61722.3,+2021.73,OK,OK
-2020-09-05 18:00:00 PDT,+7.5,+250,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-05 19:00:00 PDT,+7.2,+240,+5,+270,+0.0636681,+3929.74,+61722.3,-374.672,OK,OK,+8,+180,+0.024855,+1534.1,+61722.3,-689.717,OK,OK
-2020-09-05 20:00:00 PDT,+6.2,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-05 21:00:00 PDT,+7.7,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-09-05 22:00:00 PDT,+7.7,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-05 23:00:00 PDT,+7.2,+170,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-06 00:00:00 PDT,+7,+110,+5,+270,+0.0218468,+1348.43,+61722.3,+434.356,OK,OK,+8,+180,+0.0224268,+1384.24,+61722.3,+592.261,OK,OK
-2020-09-06 01:00:00 PDT,+6.2,+90,+5,+270,+0.0493792,+3047.8,+61722.3,+417.424,OK,OK,+8,+180,+0.0223369,+1378.69,+61722.3,+786.574,OK,OK
-2020-09-06 02:00:00 PDT,+5.7,+90,+5,+270,+0.0473756,+2924.13,+61722.3,+568.026,OK,OK,+8,+180,+0.0192388,+1187.46,+61722.3,+1166.65,OK,OK
-2020-09-06 03:00:00 PDT,+5.1,+80,+5,+270,+0.0429704,+2652.23,+61722.3,+459.455,OK,OK,+8,+180,+0.0145263,+896.598,+61722.3,+1080.57,OK,OK
-2020-09-06 04:00:00 PDT,+4.6,+70,+5,+270,+0.039127,+2415.01,+61722.3,+391.78,OK,OK,+8,+180,+0.010298,+635.614,+61722.3,+1087.22,OK,OK
-2020-09-06 05:00:00 PDT,+4.1,+60,+5,+270,+0.0359434,+2218.51,+61722.3,+301.305,OK,OK,+8,+180,+0.00755125,+466.08,+61722.3,+895.015,OK,OK
-2020-09-06 06:00:00 PDT,+3.6,+200,+5,+270,+0.0329882,+2036.11,+61722.3,+184.94,OK,OK,+8,+180,+0.00698934,+431.398,+61722.3,+326.629,OK,OK
-2020-09-06 07:00:00 PDT,+3.1,+40,+5,+270,+0.0270251,+1668.05,+61722.3,+229.033,OK,OK,+8,+180,+0.0167291,+1032.56,+61722.3,+550.059,OK,OK
-2020-09-06 08:00:00 PDT,+2.6,+30,+5,+270,+0.028658,+1768.84,+61722.3,-27.2576,OK,OK,+8,+180,+0.0113848,+702.693,+61722.3,-324.349,OK,OK
-2020-09-06 09:00:00 PDT,+3.1,+20,+5,+270,+0.0273706,+1689.38,+61722.3,-82.9282,OK,OK,+8,+180,+0.0137729,+850.096,+61722.3,-335.303,OK,OK
-2020-09-06 10:00:00 PDT,+2.9,+20,+5,+270,+0.0278056,+1716.22,+61722.3,-78.816,OK,OK,+8,+180,+0.0131243,+810.061,+61722.3,-367.466,OK,OK
-2020-09-06 11:00:00 PDT,+2.6,+10,+5,+270,+0.0274971,+1697.18,+61722.3,-87.5924,OK,OK,+8,+180,+0.0136915,+845.072,+61722.3,-355.383,OK,OK
-2020-09-06 12:00:00 PDT,+2.6,+360,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-09-06 13:00:00 PDT,+3.1,+280,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-09-06 14:00:00 PDT,+5.1,+240,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-09-06 15:00:00 PDT,+5.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-06 16:00:00 PDT,+7.7,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-06 17:00:00 PDT,+7.7,+240,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-06 18:00:00 PDT,+7.7,+240,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-06 19:00:00 PDT,+7.7,+230,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-06 20:00:00 PDT,+7.7,+230,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-06 21:00:00 PDT,+7.7,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-06 22:00:00 PDT,+5.1,+240,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-06 23:00:00 PDT,+2.8,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-07 00:00:00 PDT,+2.4,+280,+5,+270,+0.0309606,+1910.96,+61722.3,+60.4461,OK,OK,+8,+180,+0.0109171,+673.826,+61722.3,+340.915,OK,OK
-2020-09-07 01:00:00 PDT,+2.2,+290,+5,+270,+0.0295668,+1824.93,+61722.3,+53.8389,OK,OK,+8,+180,+0.0125707,+775.89,+61722.3,+228.699,OK,OK
-2020-09-07 02:00:00 PDT,+3.9,+320,+5,+270,+0.0288754,+1782.26,+61722.3,+40.5631,OK,OK,+8,+180,+0.0134001,+827.086,+61722.3,+151.993,OK,OK
-2020-09-07 03:00:00 PDT,+1.6,+310,+5,+270,+0.0342127,+2111.68,+61722.3,-1.89734,OK,OK,+8,+180,+0.00650837,+401.711,+61722.3,-59.2499,OK,OK
-2020-09-07 04:00:00 PDT,+1.2,+320,+5,+270,+0.0271236,+1674.13,+61722.3,+8.05142,OK,OK,+8,+180,+0.0156676,+967.037,+61722.3,+22.1911,OK,OK
-2020-09-07 05:00:00 PDT,+0.9,+330,+5,+270,+0.0263801,+1628.24,+61722.3,-6.79102,OK,OK,+8,+180,+0.0167016,+1030.86,+61722.3,-16.5217,OK,OK
-2020-09-07 06:00:00 PDT,+2.1,+120,+5,+270,+0.0259987,+1604.7,+61722.3,-16.0606,OK,OK,+8,+180,+0.0172515,+1064.8,+61722.3,-36.6871,OK,OK
-2020-09-07 07:00:00 PDT,+0.3,+350,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-09-07 08:00:00 PDT,+0,+0,+5,+270,+0.0256813,+1585.11,+61722.3,-12.5043,OK,OK,+8,+180,+0.0177354,+1094.67,+61722.3,-27.0679,OK,OK
-2020-09-07 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-07 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-07 11:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-07 12:00:00 PDT,+3.6,+250,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-09-07 13:00:00 PDT,+4.1,+240,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-09-07 14:00:00 PDT,+5.1,+270,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-07 15:00:00 PDT,+7.7,+240,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-09-07 16:00:00 PDT,+7.7,+260,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-07 17:00:00 PDT,+7.7,+230,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-07 18:00:00 PDT,+7.7,+230,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-07 19:00:00 PDT,+10.3,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-07 20:00:00 PDT,+7.7,+240,+5,+270,+0.0901985,+5567.25,+61722.3,-727.785,OK,OK,+8,+180,+0.0517166,+3192.07,+61722.3,-1072.32,OK,OK
-2020-09-07 21:00:00 PDT,+7.7,+230,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-07 22:00:00 PDT,+5.1,+270,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-07 23:00:00 PDT,+2.7,+280,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-09-08 00:00:00 PDT,+4.5,+310,+5,+270,+0.0306727,+1893.19,+61722.3,+48.7866,OK,OK,+8,+180,+0.0111954,+691.005,+61722.3,+262.907,OK,OK
-2020-09-08 01:00:00 PDT,+2,+220,+5,+270,+0.0389177,+2402.09,+61722.3,-5.52885,OK,OK,+8,+180,+0.00153785,+94.9198,+61722.3,+102.947,OK,OK
-2020-09-08 02:00:00 PDT,+1.7,+180,+5,+270,+0.0269325,+1662.33,+61722.3,+126.223,OK,OK,+8,+180,+0.0162285,+1001.66,+61722.3,+323.106,OK,OK
-2020-09-08 03:00:00 PDT,+1.4,+140,+5,+270,+0.0253339,+1563.67,+61722.3,+95.0108,OK,OK,+8,+180,+0.0184405,+1138.19,+61722.3,+190.632,OK,OK
-2020-09-08 04:00:00 PDT,+1.1,+110,+5,+270,+0.0257676,+1590.44,+61722.3,+7.94218,OK,OK,+8,+180,+0.0171107,+1056.11,+61722.3,+18.563,OK,OK
-2020-09-08 05:00:00 PDT,+2.3,+190,+5,+270,+0.0258711,+1596.82,+61722.3,-29.717,OK,OK,+8,+180,+0.0169569,+1046.62,+61722.3,-70.73,OK,OK
-2020-09-08 06:00:00 PDT,+0.4,+50,+5,+270,+0.0256376,+1582.41,+61722.3,+146.853,OK,OK,+8,+180,+0.0181745,+1121.77,+61722.3,+302.742,OK,OK
-2020-09-08 07:00:00 PDT,+0.1,+10,+5,+270,+0.0256996,+1586.24,+61722.3,-28.5589,OK,OK,+8,+180,+0.0176474,+1089.24,+61722.3,-62.4522,OK,OK
-2020-09-08 08:00:00 PDT,+0,+0,+5,+270,+0.0256628,+1583.97,+61722.3,-5.97303,OK,OK,+8,+180,+0.017766,+1096.56,+61722.3,-12.8864,OK,OK
-2020-09-08 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-08 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-08 11:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-08 12:00:00 PDT,+2.1,+290,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-09-08 13:00:00 PDT,+4.6,+260,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-09-08 14:00:00 PDT,+4.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-09-08 15:00:00 PDT,+7.7,+230,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-09-08 16:00:00 PDT,+7.7,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-08 17:00:00 PDT,+7.7,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-08 18:00:00 PDT,+7.7,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-08 19:00:00 PDT,+7.2,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-08 20:00:00 PDT,+4.1,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-08 21:00:00 PDT,+5.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-08 22:00:00 PDT,+3.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-08 23:00:00 PDT,+2.8,+210,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-09-09 00:00:00 PDT,+4,+150,+5,+270,+0.0273476,+1687.96,+61722.3,+169.582,OK,OK,+8,+180,+0.0159179,+982.487,+61722.3,+448.59,OK,OK
-2020-09-09 01:00:00 PDT,+3.7,+140,+5,+270,+0.0260773,+1609.55,+61722.3,+32.9382,OK,OK,+8,+180,+0.0147567,+910.817,+61722.3,+123.868,OK,OK
-2020-09-09 02:00:00 PDT,+1.9,+140,+5,+270,+0.0268758,+1658.83,+61722.3,+6.13277,OK,OK,+8,+180,+0.0134356,+829.275,+61722.3,+34.8223,OK,OK
-2020-09-09 03:00:00 PDT,+1.6,+120,+5,+270,+0.0258752,+1597.07,+61722.3,+9.68411,OK,OK,+8,+180,+0.0165639,+1022.36,+61722.3,+24.4038,OK,OK
-2020-09-09 04:00:00 PDT,+1.2,+90,+5,+270,+0.0260376,+1607.1,+61722.3,-23.344,OK,OK,+8,+180,+0.0163034,+1006.28,+61722.3,-60.8625,OK,OK
-2020-09-09 05:00:00 PDT,+0.9,+70,+5,+270,+0.0259977,+1604.64,+61722.3,-51.3077,OK,OK,+8,+180,+0.0166211,+1025.89,+61722.3,-127.583,OK,OK
-2020-09-09 06:00:00 PDT,+0.6,+50,+5,+270,+0.0258653,+1596.46,+61722.3,-53.6409,OK,OK,+8,+180,+0.0170963,+1055.22,+61722.3,-125.315,OK,OK
-2020-09-09 07:00:00 PDT,+0.3,+30,+5,+270,+0.0257484,+1589.25,+61722.3,-41.8815,OK,OK,+8,+180,+0.0174947,+1079.81,+61722.3,-93.222,OK,OK
-2020-09-09 08:00:00 PDT,+0,+0,+5,+270,+0.0256799,+1585.02,+61722.3,-20.9793,OK,OK,+8,+180,+0.0177154,+1093.44,+61722.3,-45.5209,OK,OK
-2020-09-09 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-09 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-09 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-09 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-09 13:00:00 PDT,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-09 14:00:00 PDT,+4.1,+240,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-09-09 15:00:00 PDT,+5.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-09 16:00:00 PDT,+7.2,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-09 17:00:00 PDT,+7.7,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-09 18:00:00 PDT,+7.7,+230,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-09 19:00:00 PDT,+7.2,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-09 20:00:00 PDT,+5.1,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-09 21:00:00 PDT,+3.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-09 22:00:00 PDT,+0,+0,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-09-09 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 06:00:00 PDT,+0.7,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 07:00:00 PDT,+1.1,+210,+5,+270,+0.025931,+1600.52,+61722.3,+44.6541,OK,OK,+8,+180,+0.0174046,+1074.25,+61722.3,+100.216,OK,OK
-2020-09-10 08:00:00 PDT,+0,+0,+5,+270,+0.0259188,+1599.77,+61722.3,+75.7483,OK,OK,+8,+180,+0.0174822,+1079.04,+61722.3,+168.453,OK,OK
-2020-09-10 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 13:00:00 PDT,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-10 14:00:00 PDT,+5.1,+290,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-09-10 15:00:00 PDT,+7.7,+250,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-09-10 16:00:00 PDT,+7.2,+240,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-09-10 17:00:00 PDT,+7.2,+230,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-10 18:00:00 PDT,+5.1,+230,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-10 19:00:00 PDT,+5.6,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-09-10 20:00:00 PDT,+6.2,+240,+5,+270,+0.0431291,+2662.03,+61722.3,-79.228,OK,OK,+8,+180,+0.00404395,+249.602,+61722.3,+430.12,OK,OK
-2020-09-10 21:00:00 PDT,+5.1,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-09-10 22:00:00 PDT,+1.5,+280,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-10 23:00:00 PDT,+1.7,+340,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-09-11 00:00:00 PDT,+1.9,+0,+5,+270,+0.0266198,+1643.03,+61722.3,-44.0677,OK,OK,+8,+180,+0.0162722,+1004.36,+61722.3,-112.994,OK,OK
-2020-09-11 01:00:00 PDT,+0.6,+30,+5,+270,+0.0260896,+1610.31,+61722.3,-88.0226,OK,OK,+8,+180,+0.0169326,+1045.12,+61722.3,-209.058,OK,OK
-2020-09-11 02:00:00 PDT,+0.9,+60,+5,+270,+0.0257366,+1588.52,+61722.3,-40.9953,OK,OK,+8,+180,+0.0175529,+1083.4,+61722.3,-90.6232,OK,OK
-2020-09-11 03:00:00 PDT,+1,+90,+5,+270,+0.0258667,+1596.55,+61722.3,-57.3903,OK,OK,+8,+180,+0.0171143,+1056.33,+61722.3,-133.753,OK,OK
-2020-09-11 04:00:00 PDT,+1.2,+120,+5,+270,+0.0258886,+1597.91,+61722.3,-45.4408,OK,OK,+8,+180,+0.0169702,+1047.44,+61722.3,-107.907,OK,OK
-2020-09-11 05:00:00 PDT,+1.4,+150,+5,+270,+0.0258602,+1596.15,+61722.3,-19.7524,OK,OK,+8,+180,+0.0169403,+1045.59,+61722.3,-47.1353,OK,OK
-2020-09-11 06:00:00 PDT,+1.6,+180,+5,+270,+0.0256784,+1584.93,+61722.3,+24.6148,OK,OK,+8,+180,+0.0173787,+1072.65,+61722.3,+55.6584,OK,OK
-2020-09-11 07:00:00 PDT,+1.9,+200,+5,+270,+0.0253706,+1565.93,+61722.3,+88.6293,OK,OK,+8,+180,+0.0183639,+1133.46,+61722.3,+179.261,OK,OK
-2020-09-11 08:00:00 PDT,+2.2,+230,+5,+270,+0.0260409,+1607.3,+61722.3,+124.254,OK,OK,+8,+180,+0.017475,+1078.6,+61722.3,+276.16,OK,OK
-2020-09-11 09:00:00 PDT,+2.6,+260,+5,+270,+0.0276716,+1707.95,+61722.3,+124.664,OK,OK,+8,+180,+0.0152455,+940.988,+61722.3,+359.548,OK,OK
-2020-09-11 10:00:00 PDT,+2.6,+290,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-09-11 11:00:00 PDT,+3.1,+310,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-09-11 12:00:00 PDT,+3.8,+290,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-09-11 13:00:00 PDT,+4.4,+260,+5,+270,+0.0360136,+2222.84,+61722.3,+2.01878,OK,OK,+8,+180,+0.0048537,+299.581,+61722.3,+327.732,OK,OK
-2020-09-11 14:00:00 PDT,+5.1,+240,+5,+270,+0.0388817,+2399.87,+61722.3,-21.3516,OK,OK,+8,+180,+0.00269587,+166.395,+61722.3,+960.171,OK,OK
-2020-09-11 15:00:00 PDT,+6.2,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-11 16:00:00 PDT,+6.2,+260,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-09-11 17:00:00 PDT,+8.7,+240,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-09-11 18:00:00 PDT,+7.7,+240,+5,+270,+0.0707307,+4365.66,+61722.3,-495.56,OK,OK,+8,+180,+0.0319391,+1971.35,+61722.3,-835.578,OK,OK
-2020-09-11 19:00:00 PDT,+7.7,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-11 20:00:00 PDT,+7.7,+250,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-11 21:00:00 PDT,+5.1,+260,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-11 22:00:00 PDT,+5.1,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-09-11 23:00:00 PDT,+5.1,+230,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-09-12 00:00:00 PDT,+2.9,+270,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-09-12 01:00:00 PDT,+2.9,+250,+5,+270,+0.0313713,+1936.31,+61722.3,+57.3806,OK,OK,+8,+180,+0.0104224,+643.297,+61722.3,+356.747,OK,OK
-2020-09-12 02:00:00 PDT,+2.8,+260,+5,+270,+0.0313713,+1936.31,+61722.3,+57.3806,OK,OK,+8,+180,+0.0104224,+643.297,+61722.3,+356.747,OK,OK
-2020-09-12 03:00:00 PDT,+2.8,+240,+5,+270,+0.0306764,+1893.42,+61722.3,+76.3147,OK,OK,+8,+180,+0.0113391,+699.878,+61722.3,+395.316,OK,OK
-2020-09-12 04:00:00 PDT,+2.8,+320,+5,+270,+0.0306764,+1893.42,+61722.3,+76.3147,OK,OK,+8,+180,+0.0113391,+699.878,+61722.3,+395.316,OK,OK
-2020-09-12 05:00:00 PDT,+2.7,+320,+5,+270,+0.0306764,+1893.42,+61722.3,+76.3147,OK,OK,+8,+180,+0.0113391,+699.878,+61722.3,+395.316,OK,OK
-2020-09-12 06:00:00 PDT,+2.7,+330,+5,+270,+0.0295242,+1822.3,+61722.3,-8.49914,OK,OK,+8,+180,+0.0123646,+763.173,+61722.3,-38.0533,OK,OK
-2020-09-12 07:00:00 PDT,+2.6,+330,+5,+270,+0.0295242,+1822.3,+61722.3,-8.49914,OK,OK,+8,+180,+0.0123646,+763.173,+61722.3,-38.0533,OK,OK
-2020-09-12 08:00:00 PDT,+2.6,+340,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-09-12 09:00:00 PDT,+2.1,+340,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-09-12 10:00:00 PDT,+3.1,+340,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-09-12 11:00:00 PDT,+3.1,+350,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-12 12:00:00 PDT,+3.1,+350,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-12 13:00:00 PDT,+1.5,+310,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-12 14:00:00 PDT,+2.6,+270,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-09-12 15:00:00 PDT,+3.6,+270,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-09-12 16:00:00 PDT,+4.1,+240,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-09-12 17:00:00 PDT,+7.7,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-12 18:00:00 PDT,+7.7,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-12 19:00:00 PDT,+7.7,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-12 20:00:00 PDT,+6.2,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-12 21:00:00 PDT,+5.1,+240,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-09-12 22:00:00 PDT,+4.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-12 23:00:00 PDT,+5.4,+220,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-13 00:00:00 PDT,+5.1,+210,+5,+270,+0.035537,+2193.43,+61722.3,+100.4,OK,OK,+8,+180,+0.0070282,+433.796,+61722.3,+1225.54,OK,OK
-2020-09-13 01:00:00 PDT,+3.4,+300,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-09-13 02:00:00 PDT,+3.1,+180,+5,+270,+0.0334428,+2064.16,+61722.3,+11.261,OK,OK,+8,+180,+0.00768196,+474.148,+61722.3,+156.783,OK,OK
-2020-09-13 03:00:00 PDT,+2.9,+160,+5,+270,+0.0246291,+1520.17,+61722.3,+205.176,OK,OK,+8,+180,+0.0200025,+1234.6,+61722.3,+353.283,OK,OK
-2020-09-13 04:00:00 PDT,+2.5,+200,+5,+270,+0.0253739,+1566.13,+61722.3,+78.6806,OK,OK,+8,+180,+0.0173091,+1068.36,+61722.3,+180.938,OK,OK
-2020-09-13 05:00:00 PDT,+2.3,+70,+5,+270,+0.0263186,+1624.44,+61722.3,+162.205,OK,OK,+8,+180,+0.0172618,+1065.44,+61722.3,+368.517,OK,OK
-2020-09-13 06:00:00 PDT,+2,+120,+5,+270,+0.0273295,+1686.84,+61722.3,-57.5573,OK,OK,+8,+180,+0.013489,+832.57,+61722.3,-261.387,OK,OK
-2020-09-13 07:00:00 PDT,+1.8,+100,+5,+270,+0.0262941,+1622.93,+61722.3,-24.4184,OK,OK,+8,+180,+0.0154968,+956.496,+61722.3,-72.5321,OK,OK
-2020-09-13 08:00:00 PDT,+1.5,+90,+5,+270,+0.0264077,+1629.94,+61722.3,-48.1868,OK,OK,+8,+180,+0.0153796,+949.266,+61722.3,-145.248,OK,OK
-2020-09-13 09:00:00 PDT,+2.1,+70,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-09-13 10:00:00 PDT,+3.1,+60,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-09-13 11:00:00 PDT,+2.6,+360,+5,+270,+0.029157,+1799.64,+61722.3,+8.09709,OK,OK,+8,+180,+0.0104776,+646.702,+61722.3,-248.026,OK,OK
-2020-09-13 12:00:00 PDT,+2.6,+300,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-09-13 13:00:00 PDT,+2.6,+300,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-09-13 14:00:00 PDT,+2.6,+270,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-09-13 15:00:00 PDT,+5.1,+240,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-09-13 16:00:00 PDT,+4.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-13 17:00:00 PDT,+5.1,+240,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-09-13 18:00:00 PDT,+6.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-13 19:00:00 PDT,+6.7,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-09-13 20:00:00 PDT,+6.2,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-09-13 21:00:00 PDT,+5.1,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-09-13 22:00:00 PDT,+3.6,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-13 23:00:00 PDT,+1.8,+210,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-09-14 00:00:00 PDT,+1.6,+190,+5,+270,+0.0263532,+1626.58,+61722.3,+119.221,OK,OK,+8,+180,+0.0170012,+1049.35,+61722.3,+279.333,OK,OK
-2020-09-14 01:00:00 PDT,+0,+0,+5,+270,+0.0256486,+1583.09,+61722.3,+98.785,OK,OK,+8,+180,+0.017965,+1108.84,+61722.3,+208.361,OK,OK
-2020-09-14 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-14 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-14 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-14 05:00:00 PDT,+0.6,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-14 06:00:00 PDT,+1,+60,+5,+270,+0.0257398,+1588.72,+61722.3,-29.6204,OK,OK,+8,+180,+0.0174809,+1078.96,+61722.3,-66.0513,OK,OK
-2020-09-14 07:00:00 PDT,+0.8,+40,+5,+270,+0.0259175,+1599.69,+61722.3,-62.2045,OK,OK,+8,+180,+0.0169612,+1046.88,+61722.3,-147.785,OK,OK
-2020-09-14 08:00:00 PDT,+0,+0,+5,+270,+0.0258097,+1593.03,+61722.3,-54.4765,OK,OK,+8,+180,+0.0173262,+1069.41,+61722.3,-123.69,OK,OK
-2020-09-14 09:00:00 PDT,+2.6,+140,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-14 10:00:00 PDT,+2.6,+160,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-09-14 11:00:00 PDT,+2.6,+180,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-09-14 12:00:00 PDT,+2.6,+200,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-09-14 13:00:00 PDT,+2.6,+190,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-09-14 14:00:00 PDT,+2.6,+160,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-09-14 15:00:00 PDT,+3.1,+180,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-09-14 16:00:00 PDT,+5.1,+200,+5,+270,+0.0246291,+1520.17,+61722.3,+205.176,OK,OK,+8,+180,+0.0200025,+1234.6,+61722.3,+353.283,OK,OK
-2020-09-14 17:00:00 PDT,+5.1,+230,+5,+270,+0.0284011,+1752.98,+61722.3,+312.844,OK,OK,+8,+180,+0.0157349,+971.195,+61722.3,+835.8,OK,OK
-2020-09-14 18:00:00 PDT,+5.1,+240,+5,+270,+0.0284011,+1752.98,+61722.3,+312.844,OK,OK,+8,+180,+0.0157349,+971.195,+61722.3,+835.8,OK,OK
-2020-09-14 19:00:00 PDT,+4.1,+240,+5,+270,+0.0284011,+1752.98,+61722.3,+312.844,OK,OK,+8,+180,+0.0157349,+971.195,+61722.3,+835.8,OK,OK
-2020-09-14 20:00:00 PDT,+3.1,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-14 21:00:00 PDT,+2.6,+220,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-09-14 22:00:00 PDT,+2.1,+220,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-09-14 23:00:00 PDT,+1.8,+220,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-09-15 00:00:00 PDT,+1,+200,+5,+270,+0.0266883,+1647.26,+61722.3,+116.757,OK,OK,+8,+180,+0.0165207,+1019.69,+61722.3,+289.033,OK,OK
-2020-09-15 01:00:00 PDT,+0,+0,+5,+270,+0.0257664,+1590.36,+61722.3,+65.916,OK,OK,+8,+180,+0.0176877,+1091.72,+61722.3,+143.345,OK,OK
-2020-09-15 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-15 03:00:00 PDT,+1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-15 04:00:00 PDT,+1.2,+210,+5,+270,+0.0259757,+1603.28,+61722.3,+70.2058,OK,OK,+8,+180,+0.0173836,+1072.95,+61722.3,+157.861,OK,OK
-2020-09-15 05:00:00 PDT,+0,+0,+5,+270,+0.0259679,+1602.8,+61722.3,+82.2723,OK,OK,+8,+180,+0.0174276,+1075.67,+61722.3,+184.039,OK,OK
-2020-09-15 06:00:00 PDT,+0.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-15 07:00:00 PDT,+0.3,+300,+5,+270,+0.0256673,+1584.24,+61722.3,+1.88646,OK,OK,+8,+180,+0.0177609,+1096.24,+61722.3,+4.07212,OK,OK
-2020-09-15 08:00:00 PDT,+2.6,+280,+5,+270,+0.0257153,+1587.21,+61722.3,+5.61864,OK,OK,+8,+180,+0.0176908,+1091.92,+61722.3,+12.2214,OK,OK
-2020-09-15 09:00:00 PDT,+3.1,+190,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-09-15 10:00:00 PDT,+2.6,+220,+5,+270,+0.0256253,+1581.65,+61722.3,+208.246,OK,OK,+8,+180,+0.0185083,+1142.37,+61722.3,+414.665,OK,OK
-2020-09-15 11:00:00 PDT,+2.1,+250,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-09-15 12:00:00 PDT,+2.6,+310,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-09-15 13:00:00 PDT,+2.1,+270,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-09-15 14:00:00 PDT,+2.6,+230,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-09-15 15:00:00 PDT,+3.1,+250,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-09-15 16:00:00 PDT,+2.6,+240,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-09-15 17:00:00 PDT,+4.6,+230,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-09-15 18:00:00 PDT,+5.7,+230,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-09-15 19:00:00 PDT,+5.1,+270,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-09-15 20:00:00 PDT,+3.6,+260,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-09-15 21:00:00 PDT,+4.1,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-09-15 22:00:00 PDT,+6.2,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-09-15 23:00:00 PDT,+5,+160,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-09-16 00:00:00 PDT,+3,+260,+5,+270,+0.0248934,+1536.48,+61722.3,+97.5647,OK,OK,+8,+180,+0.0165066,+1018.82,+61722.3,+266.465,OK,OK
-2020-09-16 01:00:00 PDT,+5,+160,+5,+270,+0.0314663,+1942.17,+61722.3,+69.8751,OK,OK,+8,+180,+0.010396,+641.666,+61722.3,+432.554,OK,OK
-2020-09-16 02:00:00 PDT,+1.9,+210,+5,+270,+0.0248934,+1536.48,+61722.3,+97.5647,OK,OK,+8,+180,+0.0165066,+1018.82,+61722.3,+266.465,OK,OK
-2020-09-16 03:00:00 PDT,+1.3,+190,+5,+270,+0.0264327,+1631.49,+61722.3,+124.95,OK,OK,+8,+180,+0.0169137,+1043.95,+61722.3,+295.58,OK,OK
-2020-09-16 04:00:00 PDT,+0.7,+170,+5,+270,+0.0256527,+1583.34,+61722.3,+79.3881,OK,OK,+8,+180,+0.0178985,+1104.74,+61722.3,+168.702,OK,OK
-2020-09-16 05:00:00 PDT,+0.2,+150,+5,+270,+0.0256236,+1581.55,+61722.3,+29.397,OK,OK,+8,+180,+0.0178132,+1099.47,+61722.3,+63.1021,OK,OK
-2020-09-16 06:00:00 PDT,+0,+0,+5,+270,+0.0256615,+1583.89,+61722.3,+3.77103,OK,OK,+8,+180,+0.0177616,+1096.29,+61722.3,+8.14,OK,OK
-2020-09-16 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-16 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-16 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-16 10:00:00 PDT,+2.6,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-16 11:00:00 PDT,+2.6,+120,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-09-16 12:00:00 PDT,+3.1,+170,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-09-16 13:00:00 PDT,+3.1,+200,+5,+270,+0.024927,+1538.55,+61722.3,+139.167,OK,OK,+8,+180,+0.0186266,+1149.68,+61722.3,+274.314,OK,OK
-2020-09-16 14:00:00 PDT,+2.6,+220,+5,+270,+0.024927,+1538.55,+61722.3,+139.167,OK,OK,+8,+180,+0.0186266,+1149.68,+61722.3,+274.314,OK,OK
-2020-09-16 15:00:00 PDT,+2.6,+220,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-09-16 16:00:00 PDT,+2.6,+260,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-09-16 17:00:00 PDT,+3.1,+240,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-09-16 18:00:00 PDT,+5.1,+220,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-09-16 19:00:00 PDT,+5.1,+240,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-09-16 20:00:00 PDT,+4.1,+240,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-09-16 21:00:00 PDT,+4.6,+280,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-16 22:00:00 PDT,+4.6,+340,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-09-16 23:00:00 PDT,+4.1,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-09-17 00:00:00 PDT,+2,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-09-17 01:00:00 PDT,+4.1,+350,+5,+270,+0.0282943,+1746.39,+61722.3,+40.8074,OK,OK,+8,+180,+0.0141575,+873.831,+61722.3,+137.053,OK,OK
-2020-09-17 02:00:00 PDT,+2,+140,+5,+270,+0.0298674,+1843.49,+61722.3,-61.466,OK,OK,+8,+180,+0.011372,+701.903,+61722.3,-355.102,OK,OK
-2020-09-17 03:00:00 PDT,+2.1,+350,+5,+270,+0.025903,+1598.79,+61722.3,+9.92195,OK,OK,+8,+180,+0.0164358,+1014.46,+61722.3,+25.4821,OK,OK
-2020-09-17 04:00:00 PDT,+2.1,+350,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-09-17 05:00:00 PDT,+2.1,+280,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-09-17 06:00:00 PDT,+3.6,+320,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-09-17 07:00:00 PDT,+2.1,+260,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-09-17 08:00:00 PDT,+2.1,+360,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-09-17 09:00:00 PDT,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-09-17 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-17 11:00:00 PDT,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-17 12:00:00 PDT,+2.1,+310,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-09-17 13:00:00 PDT,+4.1,+280,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-09-17 14:00:00 PDT,+4.6,+260,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-09-17 15:00:00 PDT,+5.1,+240,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-09-17 16:00:00 PDT,+5.7,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-17 17:00:00 PDT,+5.1,+210,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-09-17 18:00:00 PDT,+6.2,+230,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-09-17 19:00:00 PDT,+5.1,+240,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-09-17 20:00:00 PDT,+7.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-17 21:00:00 PDT,+6.2,+250,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-17 22:00:00 PDT,+4.1,+240,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-09-17 23:00:00 PDT,+3.7,+220,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-18 00:00:00 PDT,+3.3,+190,+5,+270,+0.0301409,+1860.37,+61722.3,+159.533,OK,OK,+8,+180,+0.0125435,+774.213,+61722.3,+656.714,OK,OK
-2020-09-18 01:00:00 PDT,+2.9,+170,+5,+270,+0.0256229,+1581.51,+61722.3,+224.925,OK,OK,+8,+180,+0.0186077,+1148.51,+61722.3,+443.445,OK,OK
-2020-09-18 02:00:00 PDT,+2.5,+140,+5,+270,+0.0250181,+1544.17,+61722.3,+129.06,OK,OK,+8,+180,+0.0185194,+1143.06,+61722.3,+257.227,OK,OK
-2020-09-18 03:00:00 PDT,+2.1,+120,+5,+270,+0.026081,+1609.78,+61722.3,+10.4491,OK,OK,+8,+180,+0.0157063,+969.431,+61722.3,+30.2658,OK,OK
-2020-09-18 04:00:00 PDT,+1.6,+100,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-09-18 05:00:00 PDT,+1.2,+70,+5,+270,+0.0262296,+1618.95,+61722.3,-47.8197,OK,OK,+8,+180,+0.0158733,+979.735,+61722.3,-132.762,OK,OK
-2020-09-18 06:00:00 PDT,+2.3,+170,+5,+270,+0.0260374,+1607.09,+61722.3,-65.4898,OK,OK,+8,+180,+0.0165762,+1023.12,+61722.3,-163.702,OK,OK
-2020-09-18 07:00:00 PDT,+0.4,+20,+5,+270,+0.0252557,+1558.84,+61722.3,+100.056,OK,OK,+8,+180,+0.018241,+1125.87,+61722.3,+205.291,OK,OK
-2020-09-18 08:00:00 PDT,+0,+0,+5,+270,+0.0256905,+1585.67,+61722.3,-26.1605,OK,OK,+8,+180,+0.0176908,+1091.92,+61722.3,-56.9205,OK,OK
-2020-09-18 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-18 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-18 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-18 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-18 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-18 14:00:00 PDT,+1.9,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-18 15:00:00 PDT,+3.8,+280,+5,+270,+0.0275074,+1697.82,+61722.3,-8.86797,OK,OK,+8,+180,+0.0150923,+931.533,+61722.3,-26.3483,OK,OK
-2020-09-18 16:00:00 PDT,+5.7,+240,+5,+270,+0.0361113,+2228.87,+61722.3,+4.69976,OK,OK,+8,+180,+0.00488496,+301.511,+61722.3,+456.321,OK,OK
-2020-09-18 17:00:00 PDT,+7.2,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-09-18 18:00:00 PDT,+8.7,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-18 19:00:00 PDT,+9.3,+240,+5,+270,+0.0707307,+4365.66,+61722.3,-495.56,OK,OK,+8,+180,+0.0319391,+1971.35,+61722.3,-835.578,OK,OK
-2020-09-18 20:00:00 PDT,+5.7,+240,+5,+270,+0.0776192,+4790.83,+61722.3,-582.517,OK,OK,+8,+180,+0.0389598,+2404.69,+61722.3,-928.704,OK,OK
-2020-09-18 21:00:00 PDT,+4.6,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-09-18 22:00:00 PDT,+4.6,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-09-18 23:00:00 PDT,+4.1,+220,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-09-19 00:00:00 PDT,+3.7,+190,+5,+270,+0.0312059,+1926.1,+61722.3,+153.818,OK,OK,+8,+180,+0.0113797,+702.383,+61722.3,+756.259,OK,OK
-2020-09-19 01:00:00 PDT,+3.2,+170,+5,+270,+0.0256196,+1581.3,+61722.3,+260.128,OK,OK,+8,+180,+0.018826,+1161.98,+61722.3,+502.064,OK,OK
-2020-09-19 02:00:00 PDT,+2.8,+140,+5,+270,+0.0248792,+1535.6,+61722.3,+144.314,OK,OK,+8,+180,+0.0186829,+1153.15,+61722.3,+282.812,OK,OK
-2020-09-19 03:00:00 PDT,+2.3,+120,+5,+270,+0.0262246,+1618.64,+61722.3,+10.168,OK,OK,+8,+180,+0.0152014,+938.263,+61722.3,+32.5163,OK,OK
-2020-09-19 04:00:00 PDT,+1.8,+100,+5,+270,+0.0265503,+1638.75,+61722.3,-23.2425,OK,OK,+8,+180,+0.0147874,+912.714,+61722.3,-79.3093,OK,OK
-2020-09-19 05:00:00 PDT,+1.4,+70,+5,+270,+0.0264077,+1629.94,+61722.3,-48.1868,OK,OK,+8,+180,+0.0153796,+949.266,+61722.3,-145.248,OK,OK
-2020-09-19 06:00:00 PDT,+0.9,+50,+5,+270,+0.0261881,+1616.39,+61722.3,-70.6431,OK,OK,+8,+180,+0.0161496,+996.789,+61722.3,-187.503,OK,OK
-2020-09-19 07:00:00 PDT,+0.5,+20,+5,+270,+0.0258617,+1596.24,+61722.3,-59.6046,OK,OK,+8,+180,+0.0171521,+1058.67,+61722.3,-138.242,OK,OK
-2020-09-19 08:00:00 PDT,+0,+0,+5,+270,+0.025707,+1586.69,+61722.3,-32.4994,OK,OK,+8,+180,+0.0176465,+1089.18,+61722.3,-71.0698,OK,OK
-2020-09-19 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-19 10:00:00 PDT,+2.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-19 11:00:00 PDT,+2.6,+260,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-09-19 12:00:00 PDT,+3.6,+250,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-09-19 13:00:00 PDT,+2.6,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-09-19 14:00:00 PDT,+5.1,+240,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-09-19 15:00:00 PDT,+7.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-19 16:00:00 PDT,+7.7,+230,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-19 17:00:00 PDT,+7.7,+220,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-19 18:00:00 PDT,+7.7,+210,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-19 19:00:00 PDT,+8.2,+220,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-19 20:00:00 PDT,+7.8,+230,+5,+270,+0.0496025,+3061.58,+61722.3,-150.744,OK,OK,+8,+180,+0.0102458,+632.391,+61722.3,+32.9197,OK,OK
-2020-09-19 21:00:00 PDT,+7.3,+240,+5,+270,+0.0546181,+3371.16,+61722.3,-266.697,OK,OK,+8,+180,+0.0152833,+943.322,+61722.3,-460.94,OK,OK
-2020-09-19 22:00:00 PDT,+6.9,+250,+5,+270,+0.0565986,+3493.39,+61722.3,-296.833,OK,OK,+8,+180,+0.0174354,+1076.15,+61722.3,-569.651,OK,OK
-2020-09-19 23:00:00 PDT,+6.5,+260,+5,+270,+0.0574142,+3543.74,+61722.3,-292.212,OK,OK,+8,+180,+0.0183967,+1135.49,+61722.3,-579.65,OK,OK
-2020-09-20 00:00:00 PDT,+6,+270,+5,+270,+0.056527,+3488.98,+61722.3,-255.837,OK,OK,+8,+180,+0.0175832,+1085.28,+61722.3,-526.318,OK,OK
-2020-09-20 01:00:00 PDT,+5.6,+280,+5,+270,+0.0532551,+3287.02,+61722.3,-189.912,OK,OK,+8,+180,+0.0142615,+880.252,+61722.3,-419.395,OK,OK
-2020-09-20 02:00:00 PDT,+5.2,+290,+5,+270,+0.0500402,+3088.59,+61722.3,-129.949,OK,OK,+8,+180,+0.0109625,+676.63,+61722.3,-309.025,OK,OK
-2020-09-20 03:00:00 PDT,+4.8,+300,+5,+270,+0.0462384,+2853.94,+61722.3,-73.6087,OK,OK,+8,+180,+0.00700807,+432.554,+61722.3,-183.32,OK,OK
-2020-09-20 04:00:00 PDT,+4.3,+310,+5,+270,+0.0422103,+2605.31,+61722.3,-29.613,OK,OK,+8,+180,+0.00285346,+176.122,+61722.3,-21.0884,OK,OK
-2020-09-20 05:00:00 PDT,+3.9,+320,+5,+270,+0.0376547,+2324.13,+61722.3,-3.36635,OK,OK,+8,+180,+0.00275053,+169.769,+61722.3,+83.3272,OK,OK
-2020-09-20 06:00:00 PDT,+3.5,+330,+5,+270,+0.0342127,+2111.68,+61722.3,-1.89734,OK,OK,+8,+180,+0.00650837,+401.711,+61722.3,-59.2499,OK,OK
-2020-09-20 07:00:00 PDT,+3,+340,+5,+270,+0.0313085,+1932.43,+61722.3,-19.3767,OK,OK,+8,+180,+0.00993569,+613.253,+61722.3,-146.563,OK,OK
-2020-09-20 08:00:00 PDT,+2.6,+350,+5,+270,+0.0288011,+1777.67,+61722.3,-49.6069,OK,OK,+8,+180,+0.0131063,+808.952,+61722.3,-199.209,OK,OK
-2020-09-20 09:00:00 PDT,+0,+0,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-09-20 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-20 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-20 12:00:00 PDT,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-20 13:00:00 PDT,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-09-20 14:00:00 PDT,+4.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-20 15:00:00 PDT,+4.6,+250,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-09-20 16:00:00 PDT,+4.1,+270,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-09-20 17:00:00 PDT,+10.3,+230,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-09-20 18:00:00 PDT,+7.7,+230,+5,+270,+0.0780296,+4816.16,+61722.3,-612.95,OK,OK,+8,+180,+0.0391491,+2416.37,+61722.3,-959.318,OK,OK
-2020-09-20 19:00:00 PDT,+5.1,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-20 20:00:00 PDT,+5.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-20 21:00:00 PDT,+4.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-20 22:00:00 PDT,+4.1,+230,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-09-20 23:00:00 PDT,+3.7,+220,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-09-21 00:00:00 PDT,+1.3,+200,+5,+270,+0.0301409,+1860.37,+61722.3,+159.533,OK,OK,+8,+180,+0.0125435,+774.213,+61722.3,+656.714,OK,OK
-2020-09-21 01:00:00 PDT,+0.8,+170,+5,+270,+0.025839,+1594.84,+61722.3,+85.511,OK,OK,+8,+180,+0.0176313,+1088.24,+61722.3,+187.032,OK,OK
-2020-09-21 02:00:00 PDT,+1.5,+150,+5,+270,+0.0256121,+1580.83,+61722.3,+33.6338,OK,OK,+8,+180,+0.0178266,+1100.3,+61722.3,+72.0941,OK,OK
-2020-09-21 03:00:00 PDT,+2.6,+130,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-09-21 04:00:00 PDT,+1.7,+100,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-09-21 05:00:00 PDT,+1.2,+70,+5,+270,+0.0263146,+1624.2,+61722.3,-48.2306,OK,OK,+8,+180,+0.0156331,+964.912,+61722.3,-139.212,OK,OK
-2020-09-21 06:00:00 PDT,+1.9,+60,+5,+270,+0.0260374,+1607.09,+61722.3,-65.4898,OK,OK,+8,+180,+0.0165762,+1023.12,+61722.3,-163.702,OK,OK
-2020-09-21 07:00:00 PDT,+2.5,+40,+5,+270,+0.0267128,+1648.77,+61722.3,-78.2674,OK,OK,+8,+180,+0.0148886,+918.957,+61722.3,-255.342,OK,OK
-2020-09-21 08:00:00 PDT,+2.6,+20,+5,+270,+0.0274344,+1693.32,+61722.3,-74.3529,OK,OK,+8,+180,+0.0135321,+835.229,+61722.3,-323.016,OK,OK
-2020-09-21 09:00:00 PDT,+0,+0,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-09-21 10:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-21 11:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-09-21 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-21 13:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-21 14:00:00 PDT,+2.6,+290,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-09-21 15:00:00 PDT,+3.6,+250,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-09-21 16:00:00 PDT,+7.2,+240,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-09-21 17:00:00 PDT,+7.7,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-21 18:00:00 PDT,+7.7,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-21 19:00:00 PDT,+8.2,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-21 20:00:00 PDT,+7.7,+260,+5,+270,+0.0653705,+4034.81,+61722.3,-423.636,OK,OK,+8,+180,+0.0264543,+1632.82,+61722.3,-751.242,OK,OK
-2020-09-21 21:00:00 PDT,+4.1,+240,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-21 22:00:00 PDT,+2.6,+220,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-21 23:00:00 PDT,+3.6,+210,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-09-22 00:00:00 PDT,+3.1,+180,+5,+270,+0.0284695,+1757.2,+61722.3,+196.894,OK,OK,+8,+180,+0.0147251,+908.864,+61722.3,+599.505,OK,OK
-2020-09-22 01:00:00 PDT,+2,+170,+5,+270,+0.0246291,+1520.17,+61722.3,+205.176,OK,OK,+8,+180,+0.0200025,+1234.6,+61722.3,+353.283,OK,OK
-2020-09-22 02:00:00 PDT,+2,+140,+5,+270,+0.0253543,+1564.93,+61722.3,+86.1876,OK,OK,+8,+180,+0.0181259,+1118.77,+61722.3,+178.984,OK,OK
-2020-09-22 03:00:00 PDT,+2,+90,+5,+270,+0.0253543,+1564.93,+61722.3,+86.1876,OK,OK,+8,+180,+0.0181259,+1118.77,+61722.3,+178.984,OK,OK
-2020-09-22 04:00:00 PDT,+2.1,+350,+5,+270,+0.0253543,+1564.93,+61722.3,+86.1876,OK,OK,+8,+180,+0.0181259,+1118.77,+61722.3,+178.984,OK,OK
-2020-09-22 05:00:00 PDT,+0.6,+10,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-09-22 06:00:00 PDT,+0.6,+10,+5,+270,+0.0257159,+1587.25,+61722.3,-35.2251,OK,OK,+8,+180,+0.0176372,+1088.61,+61722.3,-77.1064,OK,OK
-2020-09-22 07:00:00 PDT,+0.6,+0,+5,+270,+0.0257159,+1587.25,+61722.3,-35.2251,OK,OK,+8,+180,+0.0176372,+1088.61,+61722.3,-77.1064,OK,OK
-2020-09-22 08:00:00 PDT,+2.1,+0,+5,+270,+0.0257159,+1587.25,+61722.3,-35.2251,OK,OK,+8,+180,+0.0176372,+1088.61,+61722.3,-77.1064,OK,OK
-2020-09-22 09:00:00 PDT,+2.1,+360,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-09-22 10:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-09-22 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-22 12:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-22 13:00:00 PDT,+2.6,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-09-22 14:00:00 PDT,+2.6,+230,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-09-22 15:00:00 PDT,+6.2,+190,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-09-22 16:00:00 PDT,+7,+220,+5,+270,+0.0257067,+1586.67,+61722.3,+551.128,OK,OK,+8,+180,+0.0207975,+1283.67,+61722.3,+904.097,OK,OK
-2020-09-22 17:00:00 PDT,+7.7,+250,+5,+270,+0.042768,+2639.74,+61722.3,-25.9599,OK,OK,+8,+180,+0.00461911,+285.102,+61722.3,+1190.31,OK,OK
-2020-09-22 18:00:00 PDT,+7.7,+230,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-09-22 19:00:00 PDT,+7.7,+240,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-09-22 20:00:00 PDT,+4.1,+230,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-09-22 21:00:00 PDT,+2.6,+230,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-09-22 22:00:00 PDT,+3.1,+210,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-09-22 23:00:00 PDT,+2.6,+210,+5,+270,+0.0277338,+1711.79,+61722.3,+181.303,OK,OK,+8,+180,+0.0155038,+956.931,+61722.3,+503.139,OK,OK
-2020-09-23 00:00:00 PDT,+2.1,+190,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-09-23 01:00:00 PDT,+1.5,+160,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-09-23 02:00:00 PDT,+2.5,+140,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-09-23 03:00:00 PDT,+2.6,+120,+5,+270,+0.026081,+1609.78,+61722.3,+10.4491,OK,OK,+8,+180,+0.0157063,+969.431,+61722.3,+30.2658,OK,OK
-2020-09-23 04:00:00 PDT,+0,+0,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-09-23 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-23 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-23 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-23 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-23 09:00:00 PDT,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-23 10:00:00 PDT,+1.5,+50,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-09-23 11:00:00 PDT,+2.6,+80,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-09-23 12:00:00 PDT,+6.2,+100,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-09-23 13:00:00 PDT,+2.6,+110,+5,+270,+0.0454256,+2803.77,+61722.3,+447.453,OK,OK,+8,+180,+0.0175644,+1084.12,+61722.3,+951.999,OK,OK
-2020-09-23 14:00:00 PDT,+5.1,+120,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-09-23 15:00:00 PDT,+7.7,+200,+5,+270,+0.0334468,+2064.41,+61722.3,+88.2271,OK,OK,+8,+180,+0.00822048,+507.387,+61722.3,+202.847,OK,OK
-2020-09-23 16:00:00 PDT,+7.7,+200,+5,+270,+0.0319203,+1970.19,+61722.3,+434.304,OK,OK,+8,+180,+0.0135224,+834.631,+61722.3,+1501.13,OK,OK
-2020-09-23 17:00:00 PDT,+6.2,+230,+5,+270,+0.0319203,+1970.19,+61722.3,+434.304,OK,OK,+8,+180,+0.0135224,+834.631,+61722.3,+1501.13,OK,OK
-2020-09-23 18:00:00 PDT,+2.6,+240,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-09-23 19:00:00 PDT,+3.1,+250,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-09-23 20:00:00 PDT,+3.6,+260,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-09-23 21:00:00 PDT,+2.6,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-09-23 22:00:00 PDT,+0,+0,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-09-23 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 00:00:00 PDT,+1.2,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 01:00:00 PDT,+0,+0,+5,+270,+0.0259608,+1602.36,+61722.3,-42.0975,OK,OK,+8,+180,+0.0166962,+1030.52,+61722.3,-103.67,OK,OK
-2020-09-24 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 07:00:00 PDT,+0.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 08:00:00 PDT,+0,+0,+5,+270,+0.0256645,+1584.07,+61722.3,-3.08138,OK,OK,+8,+180,+0.0177645,+1096.46,+61722.3,-6.6489,OK,OK
-2020-09-24 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 12:00:00 PDT,+4.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 13:00:00 PDT,+2.1,+50,+5,+270,+0.0319259,+1970.54,+61722.3,+106.518,OK,OK,+8,+180,+0.00787098,+485.815,+61722.3,+144.351,OK,OK
-2020-09-24 14:00:00 PDT,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-09-24 15:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 16:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 17:00:00 PDT,+7.7,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-24 18:00:00 PDT,+5.1,+210,+5,+270,+0.0259408,+1601.12,+61722.3,+799.298,OK,OK,+8,+180,+0.0225072,+1389.19,+61722.3,+1175.35,OK,OK
-2020-09-24 19:00:00 PDT,+4.1,+200,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-09-24 20:00:00 PDT,+5.1,+120,+5,+270,+0.0274307,+1693.09,+61722.3,+257.993,OK,OK,+8,+180,+0.0164298,+1014.08,+61722.3,+639.531,OK,OK
-2020-09-24 21:00:00 PDT,+5.1,+120,+5,+270,+0.0334468,+2064.41,+61722.3,+88.2271,OK,OK,+8,+180,+0.00822048,+507.387,+61722.3,+202.847,OK,OK
-2020-09-24 22:00:00 PDT,+3.1,+120,+5,+270,+0.0334468,+2064.41,+61722.3,+88.2271,OK,OK,+8,+180,+0.00822048,+507.387,+61722.3,+202.847,OK,OK
-2020-09-24 23:00:00 PDT,+3.8,+120,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-09-25 00:00:00 PDT,+3.9,+130,+5,+270,+0.0290186,+1791.09,+61722.3,+13.841,OK,OK,+8,+180,+0.0103403,+638.228,+61722.3,-51.5752,OK,OK
-2020-09-25 01:00:00 PDT,+3.2,+130,+5,+270,+0.0281807,+1739.38,+61722.3,+1.38922,OK,OK,+8,+180,+0.011369,+701.723,+61722.3,-24.8739,OK,OK
-2020-09-25 02:00:00 PDT,+2.2,+30,+5,+270,+0.0271152,+1673.61,+61722.3,-5.49433,OK,OK,+8,+180,+0.0132581,+818.32,+61722.3,-30.999,OK,OK
-2020-09-25 03:00:00 PDT,+1.6,+130,+5,+270,+0.0268245,+1655.67,+61722.3,-93.3851,OK,OK,+8,+180,+0.0148894,+919.008,+61722.3,-301.228,OK,OK
-2020-09-25 04:00:00 PDT,+2,+130,+5,+270,+0.0259239,+1600.08,+61722.3,-8.27099,OK,OK,+8,+180,+0.016589,+1023.91,+61722.3,-20.7222,OK,OK
-2020-09-25 05:00:00 PDT,+2.4,+130,+5,+270,+0.0261021,+1611.08,+61722.3,-9.01174,OK,OK,+8,+180,+0.0159376,+983.705,+61722.3,-24.9281,OK,OK
-2020-09-25 06:00:00 PDT,+2.8,+140,+5,+270,+0.0263489,+1626.31,+61722.3,-8.88729,OK,OK,+8,+180,+0.0151561,+935.47,+61722.3,-28.3202,OK,OK
-2020-09-25 07:00:00 PDT,+3.6,+140,+5,+270,+0.0262246,+1618.64,+61722.3,+10.168,OK,OK,+8,+180,+0.0152014,+938.263,+61722.3,+32.5163,OK,OK
-2020-09-25 08:00:00 PDT,+3.7,+140,+5,+270,+0.0267842,+1653.18,+61722.3,+6.83753,OK,OK,+8,+180,+0.0136468,+842.314,+61722.3,+35.0054,OK,OK
-2020-09-25 09:00:00 PDT,+4.1,+140,+5,+270,+0.0268758,+1658.83,+61722.3,+6.13277,OK,OK,+8,+180,+0.0134356,+829.275,+61722.3,+34.8223,OK,OK
-2020-09-25 10:00:00 PDT,+3.1,+150,+5,+270,+0.0272985,+1684.93,+61722.3,+2.63044,OK,OK,+8,+180,+0.0125681,+775.729,+61722.3,+32.5363,OK,OK
-2020-09-25 11:00:00 PDT,+3.1,+140,+5,+270,+0.0258361,+1594.67,+61722.3,+38.6937,OK,OK,+8,+180,+0.0159067,+981.798,+61722.3,+109.807,OK,OK
-2020-09-25 12:00:00 PDT,+2.1,+200,+5,+270,+0.0258361,+1594.67,+61722.3,+38.6937,OK,OK,+8,+180,+0.0159067,+981.798,+61722.3,+109.807,OK,OK
-2020-09-25 13:00:00 PDT,+2.1,+250,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-09-25 14:00:00 PDT,+2.1,+250,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-09-25 15:00:00 PDT,+3.1,+250,+5,+270,+0.026125,+1612.49,+61722.3,+137.003,OK,OK,+8,+180,+0.0174102,+1074.6,+61722.3,+306.532,OK,OK
-2020-09-25 16:00:00 PDT,+2.6,+260,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-09-25 17:00:00 PDT,+3.1,+260,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-09-25 18:00:00 PDT,+3.4,+260,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-09-25 19:00:00 PDT,+3.6,+260,+5,+270,+0.0332431,+2051.84,+61722.3,+51.6679,OK,OK,+8,+180,+0.00833081,+514.196,+61722.3,+519.917,OK,OK
-2020-09-25 20:00:00 PDT,+4.1,+230,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-09-25 21:00:00 PDT,+3.1,+260,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-09-25 22:00:00 PDT,+3,+300,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-09-25 23:00:00 PDT,+2.9,+10,+5,+270,+0.0316003,+1950.44,+61722.3,+18.3734,OK,OK,+8,+180,+0.00990411,+611.304,+61722.3,+132.074,OK,OK
-2020-09-26 00:00:00 PDT,+2.9,+60,+5,+270,+0.0270935,+1672.27,+61722.3,-104.721,OK,OK,+8,+180,+0.0146989,+907.248,+61722.3,-343.586,OK,OK
-2020-09-26 01:00:00 PDT,+2.8,+80,+5,+270,+0.0270935,+1672.27,+61722.3,-104.721,OK,OK,+8,+180,+0.0146989,+907.248,+61722.3,-343.586,OK,OK
-2020-09-26 02:00:00 PDT,+2.7,+110,+5,+270,+0.0283262,+1748.36,+61722.3,-16.3377,OK,OK,+8,+180,+0.0116132,+716.794,+61722.3,-226.17,OK,OK
-2020-09-26 03:00:00 PDT,+4.1,+130,+5,+270,+0.0273686,+1689.25,+61722.3,-23.2211,OK,OK,+8,+180,+0.01307,+806.709,+61722.3,-130.619,OK,OK
-2020-09-26 04:00:00 PDT,+4,+150,+5,+270,+0.0285681,+1763.28,+61722.3,+4.05548,OK,OK,+8,+180,+0.0108285,+668.36,+61722.3,-20.6381,OK,OK
-2020-09-26 05:00:00 PDT,+3.9,+180,+5,+270,+0.0260773,+1609.55,+61722.3,+32.9382,OK,OK,+8,+180,+0.0147567,+910.817,+61722.3,+123.868,OK,OK
-2020-09-26 06:00:00 PDT,+2.4,+320,+5,+270,+0.0241061,+1487.89,+61722.3,+292.607,OK,OK,+8,+180,+0.0213061,+1315.06,+61722.3,+449.549,OK,OK
-2020-09-26 07:00:00 PDT,+2.3,+230,+5,+270,+0.0286709,+1769.63,+61722.3,-9.01337,OK,OK,+8,+180,+0.0134985,+833.156,+61722.3,-33.5733,OK,OK
-2020-09-26 08:00:00 PDT,+2.2,+100,+5,+270,+0.0278633,+1719.79,+61722.3,+127.154,OK,OK,+8,+180,+0.0150118,+926.559,+61722.3,+377.566,OK,OK
-2020-09-26 09:00:00 PDT,+2.1,+280,+5,+270,+0.0268693,+1658.43,+61722.3,-43.051,OK,OK,+8,+180,+0.0142389,+878.859,+61722.3,-164.09,OK,OK
-2020-09-26 10:00:00 PDT,+2.6,+300,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-09-26 11:00:00 PDT,+2.6,+280,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-09-26 12:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-09-26 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-26 14:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-26 15:00:00 PDT,+3.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-26 16:00:00 PDT,+4.1,+240,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-09-26 17:00:00 PDT,+3.6,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-26 18:00:00 PDT,+5.1,+260,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-09-26 19:00:00 PDT,+5.7,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-09-26 20:00:00 PDT,+3.6,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-09-26 21:00:00 PDT,+2.6,+270,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-09-26 22:00:00 PDT,+3.6,+250,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-09-26 23:00:00 PDT,+3,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-09-27 00:00:00 PDT,+2.9,+230,+5,+270,+0.0319359,+1971.16,+61722.3,+40.6151,OK,OK,+8,+180,+0.00966351,+596.453,+61722.3,+301.042,OK,OK
-2020-09-27 01:00:00 PDT,+2.2,+250,+5,+270,+0.0292131,+1803.1,+61722.3,+133.916,OK,OK,+8,+180,+0.0133965,+826.861,+61722.3,+492.519,OK,OK
-2020-09-27 02:00:00 PDT,+0.6,+330,+5,+270,+0.028426,+1754.51,+61722.3,+98.8326,OK,OK,+8,+180,+0.0141718,+874.717,+61722.3,+328.952,OK,OK
-2020-09-27 03:00:00 PDT,+0.5,+330,+5,+270,+0.0258105,+1593.08,+61722.3,-11.0509,OK,OK,+8,+180,+0.0175394,+1082.57,+61722.3,-24.4431,OK,OK
-2020-09-27 04:00:00 PDT,+0.4,+340,+5,+270,+0.0257648,+1590.26,+61722.3,-9.27964,OK,OK,+8,+180,+0.0176097,+1086.91,+61722.3,-20.3663,OK,OK
-2020-09-27 05:00:00 PDT,+2.9,+250,+5,+270,+0.025713,+1587.06,+61722.3,-12.2206,OK,OK,+8,+180,+0.0176867,+1091.67,+61722.3,-26.5952,OK,OK
-2020-09-27 06:00:00 PDT,+2.3,+260,+5,+270,+0.0305866,+1887.87,+61722.3,+91.7277,OK,OK,+8,+180,+0.0115359,+712.024,+61722.3,+455.804,OK,OK
-2020-09-27 07:00:00 PDT,+3.2,+300,+5,+270,+0.0289782,+1788.6,+61722.3,+84.3649,OK,OK,+8,+180,+0.0134224,+828.459,+61722.3,+312.734,OK,OK
-2020-09-27 08:00:00 PDT,+0,+0,+5,+270,+0.0324861,+2005.12,+61722.3,+15.1147,OK,OK,+8,+180,+0.00882607,+544.765,+61722.3,+143.723,OK,OK
-2020-09-27 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-27 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-27 11:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-27 12:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-09-27 13:00:00 PDT,+3.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-27 14:00:00 PDT,+3.1,+320,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-09-27 15:00:00 PDT,+0,+0,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-09-27 16:00:00 PDT,+6.2,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-27 17:00:00 PDT,+5.1,+240,+5,+270,+0.0561088,+3463.16,+61722.3,-184.067,OK,OK,+8,+180,+0.017345,+1070.57,+61722.3,-394.46,OK,OK
-2020-09-27 18:00:00 PDT,+6.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-27 19:00:00 PDT,+5.1,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-09-27 20:00:00 PDT,+4.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-27 21:00:00 PDT,+3.6,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-09-27 22:00:00 PDT,+2.6,+210,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-09-27 23:00:00 PDT,+2.4,+280,+5,+270,+0.027113,+1673.47,+61722.3,+160.84,OK,OK,+8,+180,+0.0161713,+998.13,+61722.3,+413.346,OK,OK
-2020-09-28 00:00:00 PDT,+2.1,+180,+5,+270,+0.0295668,+1824.93,+61722.3,+53.8389,OK,OK,+8,+180,+0.0125707,+775.89,+61722.3,+228.699,OK,OK
-2020-09-28 01:00:00 PDT,+1.8,+150,+5,+270,+0.0251675,+1553.39,+61722.3,+122.186,OK,OK,+8,+180,+0.0187936,+1159.98,+61722.3,+236.412,OK,OK
-2020-09-28 02:00:00 PDT,+1.5,+0,+5,+270,+0.0256947,+1585.94,+61722.3,+30.1155,OK,OK,+8,+180,+0.0171262,+1057.07,+61722.3,+70.3743,OK,OK
-2020-09-28 03:00:00 PDT,+1.3,+20,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-09-28 04:00:00 PDT,+1,+210,+5,+270,+0.0259813,+1603.62,+61722.3,-76.1857,OK,OK,+8,+180,+0.016939,+1045.51,+61722.3,-181.253,OK,OK
-2020-09-28 05:00:00 PDT,+2.3,+200,+5,+270,+0.0258741,+1597,+61722.3,+69.1386,OK,OK,+8,+180,+0.017532,+1082.12,+61722.3,+152.933,OK,OK
-2020-09-28 06:00:00 PDT,+0.5,+70,+5,+270,+0.0262176,+1618.21,+61722.3,+149.656,OK,OK,+8,+180,+0.0173391,+1070.21,+61722.3,+337.304,OK,OK
-2020-09-28 07:00:00 PDT,+0.2,+20,+5,+270,+0.0257222,+1587.63,+61722.3,-32.0503,OK,OK,+8,+180,+0.0175613,+1083.92,+61722.3,-70.7924,OK,OK
-2020-09-28 08:00:00 PDT,+0,+0,+5,+270,+0.0256686,+1584.32,+61722.3,-13.1877,OK,OK,+8,+180,+0.0177499,+1095.57,+61722.3,-28.5031,OK,OK
-2020-09-28 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-28 10:00:00 PDT,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-28 11:00:00 PDT,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-09-28 12:00:00 PDT,+3.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-28 13:00:00 PDT,+3.1,+310,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-28 14:00:00 PDT,+3.1,+290,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-28 15:00:00 PDT,+3.1,+260,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-28 16:00:00 PDT,+7.2,+240,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-09-28 17:00:00 PDT,+5.1,+240,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-09-28 18:00:00 PDT,+2.1,+210,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-28 19:00:00 PDT,+5.1,+230,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-09-28 20:00:00 PDT,+3.6,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-09-28 21:00:00 PDT,+7.7,+260,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-09-28 22:00:00 PDT,+5.1,+240,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-09-28 23:00:00 PDT,+3,+350,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-29 00:00:00 PDT,+3,+30,+5,+270,+0.0278065,+1716.28,+61722.3,-79.6874,OK,OK,+8,+180,+0.0143429,+885.276,+61722.3,-266.123,OK,OK
-2020-09-29 01:00:00 PDT,+3,+70,+5,+270,+0.0278065,+1716.28,+61722.3,-79.6874,OK,OK,+8,+180,+0.0143429,+885.276,+61722.3,-266.123,OK,OK
-2020-09-29 02:00:00 PDT,+3.1,+90,+5,+270,+0.0278065,+1716.28,+61722.3,-79.6874,OK,OK,+8,+180,+0.0143429,+885.276,+61722.3,-266.123,OK,OK
-2020-09-29 03:00:00 PDT,+3.2,+130,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-09-29 04:00:00 PDT,+3.2,+160,+5,+270,+0.0271152,+1673.61,+61722.3,-5.49433,OK,OK,+8,+180,+0.0132581,+818.32,+61722.3,-30.999,OK,OK
-2020-09-29 05:00:00 PDT,+3.2,+200,+5,+270,+0.0271152,+1673.61,+61722.3,-5.49433,OK,OK,+8,+180,+0.0132581,+818.32,+61722.3,-30.999,OK,OK
-2020-09-29 06:00:00 PDT,+3.3,+220,+5,+270,+0.0271152,+1673.61,+61722.3,-5.49433,OK,OK,+8,+180,+0.0132581,+818.32,+61722.3,-30.999,OK,OK
-2020-09-29 07:00:00 PDT,+3.3,+260,+5,+270,+0.0291974,+1802.13,+61722.3,+159.954,OK,OK,+8,+180,+0.0135991,+839.37,+61722.3,+567.977,OK,OK
-2020-09-29 08:00:00 PDT,+0,+0,+5,+270,+0.0291974,+1802.13,+61722.3,+159.954,OK,OK,+8,+180,+0.0135991,+839.37,+61722.3,+567.977,OK,OK
-2020-09-29 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-29 10:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-09-29 11:00:00 PDT,+2.6,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-09-29 12:00:00 PDT,+2.6,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-09-29 13:00:00 PDT,+2.6,+260,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-09-29 14:00:00 PDT,+5.1,+240,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-09-29 15:00:00 PDT,+5.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-29 16:00:00 PDT,+6.4,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-29 17:00:00 PDT,+7.7,+230,+5,+270,+0.04461,+2753.43,+61722.3,-92.95,OK,OK,+8,+180,+0.00545108,+336.453,+61722.3,+354.54,OK,OK
-2020-09-29 18:00:00 PDT,+6.4,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-09-29 19:00:00 PDT,+5.1,+240,+5,+270,+0.0489613,+3022,+61722.3,-176.535,OK,OK,+8,+180,+0.00958796,+591.79,+61722.3,-280.991,OK,OK
-2020-09-29 20:00:00 PDT,+6.7,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-29 21:00:00 PDT,+7.7,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-09-29 22:00:00 PDT,+5.1,+240,+5,+270,+0.0603576,+3725.41,+61722.3,-352.628,OK,OK,+8,+180,+0.0213063,+1315.08,+61722.3,-656.939,OK,OK
-2020-09-29 23:00:00 PDT,+5.7,+290,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-09-30 00:00:00 PDT,+2.5,+360,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-09-30 01:00:00 PDT,+4.1,+350,+5,+270,+0.0264159,+1630.45,+61722.3,-106.424,OK,OK,+8,+180,+0.0163212,+1007.38,+61722.3,-272.643,OK,OK
-2020-09-30 02:00:00 PDT,+2.5,+40,+5,+270,+0.0298674,+1843.49,+61722.3,-61.466,OK,OK,+8,+180,+0.011372,+701.903,+61722.3,-355.102,OK,OK
-2020-09-30 03:00:00 PDT,+2.6,+60,+5,+270,+0.0274344,+1693.32,+61722.3,-74.3529,OK,OK,+8,+180,+0.0135321,+835.229,+61722.3,-323.016,OK,OK
-2020-09-30 04:00:00 PDT,+4.1,+80,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-09-30 05:00:00 PDT,+2.6,+100,+5,+270,+0.0330613,+2040.62,+61722.3,+173.636,OK,OK,+8,+180,+0.00724334,+447.076,+61722.3,+344.607,OK,OK
-2020-09-30 06:00:00 PDT,+4.1,+290,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-09-30 07:00:00 PDT,+2.6,+150,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-09-30 08:00:00 PDT,+2.6,+170,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-09-30 09:00:00 PDT,+1.5,+190,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-09-30 10:00:00 PDT,+2.1,+210,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-09-30 11:00:00 PDT,+2.6,+230,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-09-30 12:00:00 PDT,+2.1,+280,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-09-30 13:00:00 PDT,+2.6,+290,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-09-30 14:00:00 PDT,+4.1,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-09-30 15:00:00 PDT,+4.6,+280,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-09-30 16:00:00 PDT,+5.1,+260,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-09-30 17:00:00 PDT,+6.7,+210,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-09-30 18:00:00 PDT,+5.7,+240,+5,+270,+0.0357291,+2205.28,+61722.3,+175.927,OK,OK,+8,+180,+0.00797164,+492.028,+61722.3,+1546.98,OK,OK
-2020-09-30 19:00:00 PDT,+5.7,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-09-30 20:00:00 PDT,+4.6,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-09-30 21:00:00 PDT,+3.1,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-09-30 22:00:00 PDT,+3.1,+270,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-09-30 23:00:00 PDT,+3.2,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-01 00:00:00 PDT,+3.2,+260,+5,+270,+0.0317263,+1958.22,+61722.3,+81.5762,OK,OK,+8,+180,+0.010195,+629.259,+61722.3,+519.895,OK,OK
-2020-10-01 01:00:00 PDT,+3.3,+260,+5,+270,+0.0317263,+1958.22,+61722.3,+81.5762,OK,OK,+8,+180,+0.010195,+629.259,+61722.3,+519.895,OK,OK
-2020-10-01 02:00:00 PDT,+3.3,+260,+5,+270,+0.0327739,+2022.88,+61722.3,+56.8674,OK,OK,+8,+180,+0.00886856,+547.388,+61722.3,+495.941,OK,OK
-2020-10-01 03:00:00 PDT,+3.4,+170,+5,+270,+0.0327739,+2022.88,+61722.3,+56.8674,OK,OK,+8,+180,+0.00886856,+547.388,+61722.3,+495.941,OK,OK
-2020-10-01 04:00:00 PDT,+3.4,+230,+5,+270,+0.0247793,+1529.43,+61722.3,+154.805,OK,OK,+8,+180,+0.018801,+1160.44,+61722.3,+299.712,OK,OK
-2020-10-01 05:00:00 PDT,+3.5,+300,+5,+270,+0.0247793,+1529.43,+61722.3,+154.805,OK,OK,+8,+180,+0.018801,+1160.44,+61722.3,+299.712,OK,OK
-2020-10-01 06:00:00 PDT,+3.3,+170,+5,+270,+0.0339481,+2095.35,+61722.3,+9.1196,OK,OK,+8,+180,+0.0070859,+437.358,+61722.3,+164.082,OK,OK
-2020-10-01 07:00:00 PDT,+3.8,+350,+5,+270,+0.02483,+1532.56,+61722.3,+149.526,OK,OK,+8,+180,+0.018741,+1156.74,+61722.3,+291.278,OK,OK
-2020-10-01 08:00:00 PDT,+1.5,+360,+5,+270,+0.0292249,+1803.83,+61722.3,-69.6969,OK,OK,+8,+180,+0.0122731,+757.525,+61722.3,-331.956,OK,OK
-2020-10-01 09:00:00 PDT,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-10-01 10:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-01 11:00:00 PDT,+2.6,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-10-01 12:00:00 PDT,+2.6,+310,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-10-01 13:00:00 PDT,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-10-01 14:00:00 PDT,+2.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-01 15:00:00 PDT,+3.6,+230,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-10-01 16:00:00 PDT,+6.7,+240,+5,+270,+0.0312372,+1928.03,+61722.3,+123.299,OK,OK,+8,+180,+0.011065,+682.96,+61722.3,+650.487,OK,OK
-2020-10-01 17:00:00 PDT,+6.7,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-10-01 18:00:00 PDT,+6.2,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-10-01 19:00:00 PDT,+6.7,+220,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-01 20:00:00 PDT,+6.7,+240,+5,+270,+0.0412492,+2545.99,+61722.3,+1.8067,OK,OK,+8,+180,+0.00411859,+254.209,+61722.3,+1550.59,OK,OK
-2020-10-01 21:00:00 PDT,+6.2,+260,+5,+270,+0.0412492,+2545.99,+61722.3,+1.8067,OK,OK,+8,+180,+0.00411859,+254.209,+61722.3,+1550.59,OK,OK
-2020-10-01 22:00:00 PDT,+4.1,+270,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-10-01 23:00:00 PDT,+4,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-10-02 00:00:00 PDT,+3.9,+260,+5,+270,+0.0370658,+2287.78,+61722.3,-1.48403,OK,OK,+8,+180,+0.00404474,+249.651,+61722.3,+647.929,OK,OK
-2020-10-02 01:00:00 PDT,+3.8,+260,+5,+270,+0.0358447,+2212.42,+61722.3,+19.6376,OK,OK,+8,+180,+0.00546672,+337.418,+61722.3,+679.936,OK,OK
-2020-10-02 02:00:00 PDT,+3.7,+260,+5,+270,+0.0352899,+2178.17,+61722.3,+26.8105,OK,OK,+8,+180,+0.00605747,+373.881,+61722.3,+640.352,OK,OK
-2020-10-02 03:00:00 PDT,+3.6,+260,+5,+270,+0.0347525,+2145,+61722.3,+33.6118,OK,OK,+8,+180,+0.00664152,+409.93,+61722.3,+605.397,OK,OK
-2020-10-02 04:00:00 PDT,+3.5,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-02 05:00:00 PDT,+4.5,+330,+5,+270,+0.0329999,+2036.83,+61722.3,+67.2962,OK,OK,+8,+180,+0.00873518,+539.155,+61722.3,+594.664,OK,OK
-2020-10-02 06:00:00 PDT,+3.3,+250,+5,+270,+0.0354606,+2188.71,+61722.3,+3.79437,OK,OK,+8,+180,+0.00482813,+298.003,+61722.3,-200.612,OK,OK
-2020-10-02 07:00:00 PDT,+3.2,+240,+5,+270,+0.0321358,+1983.5,+61722.3,+77.266,OK,OK,+8,+180,+0.00972117,+600.012,+61722.3,+543.371,OK,OK
-2020-10-02 08:00:00 PDT,+3.1,+240,+5,+270,+0.0309481,+1910.19,+61722.3,+105.32,OK,OK,+8,+180,+0.0112258,+692.88,+61722.3,+547.324,OK,OK
-2020-10-02 09:00:00 PDT,+2.6,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-02 10:00:00 PDT,+2.1,+250,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-02 11:00:00 PDT,+2.6,+240,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-10-02 12:00:00 PDT,+0,+0,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-02 13:00:00 PDT,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-02 14:00:00 PDT,+4.6,+260,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-02 15:00:00 PDT,+5.1,+240,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-10-02 16:00:00 PDT,+4.1,+270,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-02 17:00:00 PDT,+6.2,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-10-02 18:00:00 PDT,+5.1,+240,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-10-02 19:00:00 PDT,+7.7,+210,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-02 20:00:00 PDT,+5.7,+230,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-10-02 21:00:00 PDT,+3.6,+250,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-10-02 22:00:00 PDT,+4.1,+220,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-10-02 23:00:00 PDT,+4.2,+200,+5,+270,+0.0312059,+1926.1,+61722.3,+153.818,OK,OK,+8,+180,+0.0113797,+702.383,+61722.3,+756.259,OK,OK
-2020-10-03 00:00:00 PDT,+0.9,+240,+5,+270,+0.0275182,+1698.49,+61722.3,+263.667,OK,OK,+8,+180,+0.0163659,+1010.14,+61722.3,+658.055,OK,OK
-2020-10-03 01:00:00 PDT,+2,+200,+5,+270,+0.0260555,+1608.2,+61722.3,+60.3033,OK,OK,+8,+180,+0.0172483,+1064.6,+61722.3,+137.683,OK,OK
-2020-10-03 02:00:00 PDT,+2.8,+140,+5,+270,+0.0260819,+1609.83,+61722.3,+130.64,OK,OK,+8,+180,+0.0174434,+1076.65,+61722.3,+291.299,OK,OK
-2020-10-03 03:00:00 PDT,+2.5,+100,+5,+270,+0.0262246,+1618.64,+61722.3,+10.168,OK,OK,+8,+180,+0.0152014,+938.263,+61722.3,+32.5163,OK,OK
-2020-10-03 04:00:00 PDT,+2.2,+50,+5,+270,+0.0273238,+1686.49,+61722.3,-33.5015,OK,OK,+8,+180,+0.0132627,+818.602,+61722.3,-170.457,OK,OK
-2020-10-03 05:00:00 PDT,+0.3,+330,+5,+270,+0.0270843,+1671.71,+61722.3,-77.6163,OK,OK,+8,+180,+0.014146,+873.126,+61722.3,-293.371,OK,OK
-2020-10-03 06:00:00 PDT,+0.2,+330,+5,+270,+0.0256985,+1586.17,+61722.3,-5.6296,OK,OK,+8,+180,+0.0177121,+1093.23,+61722.3,-12.2172,OK,OK
-2020-10-03 07:00:00 PDT,+0.2,+320,+5,+270,+0.0256778,+1584.89,+61722.3,-3.76598,OK,OK,+8,+180,+0.0177441,+1095.2,+61722.3,-8.14425,OK,OK
-2020-10-03 08:00:00 PDT,+2.6,+250,+5,+270,+0.0256778,+1584.89,+61722.3,-3.76598,OK,OK,+8,+180,+0.0177441,+1095.2,+61722.3,-8.14425,OK,OK
-2020-10-03 09:00:00 PDT,+0,+0,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-10-03 10:00:00 PDT,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-03 11:00:00 PDT,+2.6,+280,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-10-03 12:00:00 PDT,+3.6,+240,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-10-03 13:00:00 PDT,+2.6,+240,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-10-03 14:00:00 PDT,+2.6,+270,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-03 15:00:00 PDT,+6.7,+290,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-03 16:00:00 PDT,+5.1,+250,+5,+270,+0.0615005,+3795.95,+61722.3,-175.275,OK,OK,+8,+180,+0.0230833,+1424.75,+61722.3,-345.428,OK,OK
-2020-10-03 17:00:00 PDT,+6.2,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-03 18:00:00 PDT,+7.7,+220,+5,+270,+0.0508558,+3138.93,+61722.3,-199.494,OK,OK,+8,+180,+0.0115956,+715.707,+61722.3,-406.244,OK,OK
-2020-10-03 19:00:00 PDT,+7.7,+230,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-03 20:00:00 PDT,+5.1,+240,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-03 21:00:00 PDT,+5.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-03 22:00:00 PDT,+2.6,+200,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-03 23:00:00 PDT,+2.5,+150,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-10-04 00:00:00 PDT,+4.1,+110,+5,+270,+0.0257491,+1589.29,+61722.3,+36.8109,OK,OK,+8,+180,+0.0165419,+1021,+61722.3,+93.615,OK,OK
-2020-10-04 01:00:00 PDT,+2.5,+60,+5,+270,+0.0309674,+1911.38,+61722.3,+64.9306,OK,OK,+8,+180,+0.0084957,+524.374,+61722.3,+40.9733,OK,OK
-2020-10-04 02:00:00 PDT,+2.4,+20,+5,+270,+0.0276899,+1709.09,+61722.3,-52.6102,OK,OK,+8,+180,+0.0128683,+794.262,+61722.3,-289.344,OK,OK
-2020-10-04 03:00:00 PDT,+2.4,+340,+5,+270,+0.026855,+1657.55,+61722.3,-98.614,OK,OK,+8,+180,+0.0149596,+923.337,+61722.3,-312.447,OK,OK
-2020-10-04 04:00:00 PDT,+2.3,+300,+5,+270,+0.026855,+1657.55,+61722.3,-98.614,OK,OK,+8,+180,+0.0149596,+923.337,+61722.3,-312.447,OK,OK
-2020-10-04 05:00:00 PDT,+3.7,+260,+5,+270,+0.0290356,+1792.14,+61722.3,+24.8324,OK,OK,+8,+180,+0.0131406,+811.066,+61722.3,+97.0639,OK,OK
-2020-10-04 06:00:00 PDT,+4.8,+270,+5,+270,+0.0347525,+2145,+61722.3,+33.6118,OK,OK,+8,+180,+0.00664152,+409.93,+61722.3,+605.397,OK,OK
-2020-10-04 07:00:00 PDT,+3.7,+170,+5,+270,+0.0426215,+2630.7,+61722.3,-67.8252,OK,OK,+8,+180,+0.00332704,+205.353,+61722.3,+106.267,OK,OK
-2020-10-04 08:00:00 PDT,+2.1,+130,+5,+270,+0.0246185,+1519.51,+61722.3,+171.073,OK,OK,+8,+180,+0.0189915,+1172.2,+61722.3,+324.816,OK,OK
-2020-10-04 09:00:00 PDT,+2.6,+60,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-10-04 10:00:00 PDT,+0,+0,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-10-04 11:00:00 PDT,+3.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-04 12:00:00 PDT,+0,+0,+5,+270,+0.0268464,+1657.02,+61722.3,-117.481,OK,OK,+8,+180,+0.015544,+959.412,+61722.3,-333.871,OK,OK
-2020-10-04 13:00:00 PDT,+3.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-04 14:00:00 PDT,+3.6,+260,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-10-04 15:00:00 PDT,+5.7,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-04 16:00:00 PDT,+6.7,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-10-04 17:00:00 PDT,+6.2,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-10-04 18:00:00 PDT,+6.2,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-04 19:00:00 PDT,+6.2,+230,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-04 20:00:00 PDT,+5.1,+240,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-04 21:00:00 PDT,+4.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-04 22:00:00 PDT,+3.6,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-10-04 23:00:00 PDT,+3.8,+180,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-05 00:00:00 PDT,+4,+180,+5,+270,+0.0241744,+1492.1,+61722.3,+280.44,OK,OK,+8,+180,+0.0211268,+1303.99,+61722.3,+437.377,OK,OK
-2020-10-05 01:00:00 PDT,+3.6,+200,+5,+270,+0.0240373,+1483.64,+61722.3,+305.16,OK,OK,+8,+180,+0.0214901,+1326.42,+61722.3,+461.759,OK,OK
-2020-10-05 02:00:00 PDT,+3.2,+160,+5,+270,+0.0270251,+1668.05,+61722.3,+229.033,OK,OK,+8,+180,+0.0167291,+1032.56,+61722.3,+550.059,OK,OK
-2020-10-05 03:00:00 PDT,+3.1,+250,+5,+270,+0.0253152,+1562.51,+61722.3,+84.1952,OK,OK,+8,+180,+0.0172135,+1062.45,+61722.3,+196.659,OK,OK
-2020-10-05 04:00:00 PDT,+3,+230,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-10-05 05:00:00 PDT,+2.9,+340,+5,+270,+0.029472,+1819.08,+61722.3,+133.632,OK,OK,+8,+180,+0.0130923,+808.087,+61722.3,+513.144,OK,OK
-2020-10-05 06:00:00 PDT,+2.8,+200,+5,+270,+0.0285822,+1764.16,+61722.3,-50.4152,OK,OK,+8,+180,+0.013412,+827.821,+61722.3,-192.59,OK,OK
-2020-10-05 07:00:00 PDT,+2.7,+180,+5,+270,+0.0264859,+1634.77,+61722.3,+180.816,OK,OK,+8,+180,+0.0171344,+1057.57,+61722.3,+416.258,OK,OK
-2020-10-05 08:00:00 PDT,+2.6,+160,+5,+270,+0.0248632,+1534.62,+61722.3,+168.988,OK,OK,+8,+180,+0.0194629,+1201.3,+61722.3,+306.09,OK,OK
-2020-10-05 09:00:00 PDT,+3.1,+150,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-10-05 10:00:00 PDT,+0,+0,+5,+270,+0.0258361,+1594.67,+61722.3,+38.6937,OK,OK,+8,+180,+0.0159067,+981.798,+61722.3,+109.807,OK,OK
-2020-10-05 11:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-05 12:00:00 PDT,+3.6,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-10-05 13:00:00 PDT,+4.6,+300,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-10-05 14:00:00 PDT,+3.1,+280,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-10-05 15:00:00 PDT,+4.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-10-05 16:00:00 PDT,+4.1,+290,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-10-05 17:00:00 PDT,+5.1,+230,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-10-05 18:00:00 PDT,+5.1,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-05 19:00:00 PDT,+7.7,+230,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-05 20:00:00 PDT,+5.1,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-05 21:00:00 PDT,+2.6,+110,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-05 22:00:00 PDT,+4.7,+110,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-10-05 23:00:00 PDT,+1.8,+20,+5,+270,+0.0334694,+2065.81,+61722.3,+125.397,OK,OK,+8,+180,+0.00785598,+484.889,+61722.3,+288.769,OK,OK
-2020-10-06 00:00:00 PDT,+1.3,+330,+5,+270,+0.0262973,+1623.13,+61722.3,-93.2937,OK,OK,+8,+180,+0.0161813,+998.745,+61722.3,-245.17,OK,OK
-2020-10-06 01:00:00 PDT,+0.9,+280,+5,+270,+0.0263722,+1627.75,+61722.3,-21.7681,OK,OK,+8,+180,+0.0166886,+1030.06,+61722.3,-53.0591,OK,OK
-2020-10-06 02:00:00 PDT,+0.6,+250,+5,+270,+0.0261817,+1615.99,+61722.3,+34.9267,OK,OK,+8,+180,+0.0170372,+1051.57,+61722.3,+81.6931,OK,OK
-2020-10-06 03:00:00 PDT,+1.6,+140,+5,+270,+0.0258592,+1596.09,+61722.3,+38.6428,OK,OK,+8,+180,+0.0175014,+1080.23,+61722.3,+85.8056,OK,OK
-2020-10-06 04:00:00 PDT,+0,+0,+5,+270,+0.0258048,+1592.73,+61722.3,+8.74135,OK,OK,+8,+180,+0.016911,+1043.78,+61722.3,+20.9794,OK,OK
-2020-10-06 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 12:00:00 PDT,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-06 13:00:00 PDT,+3.1,+250,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-10-06 14:00:00 PDT,+3.1,+240,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-10-06 15:00:00 PDT,+5.1,+260,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-10-06 16:00:00 PDT,+7.7,+210,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-10-06 17:00:00 PDT,+7.7,+220,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-10-06 18:00:00 PDT,+10.3,+210,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-10-06 19:00:00 PDT,+7.7,+210,+5,+270,+0.0503379,+3106.97,+61722.3,-50.7628,OK,OK,+8,+180,+0.0113787,+702.318,+61722.3,+605.044,OK,OK
-2020-10-06 20:00:00 PDT,+5.1,+210,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-10-06 21:00:00 PDT,+4.1,+260,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-10-06 22:00:00 PDT,+4.1,+240,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-10-06 23:00:00 PDT,+3.5,+250,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-10-07 00:00:00 PDT,+2.9,+340,+5,+270,+0.0329999,+2036.83,+61722.3,+67.2962,OK,OK,+8,+180,+0.00873518,+539.155,+61722.3,+594.664,OK,OK
-2020-10-07 01:00:00 PDT,+3.3,+280,+5,+270,+0.0285822,+1764.16,+61722.3,-50.4152,OK,OK,+8,+180,+0.013412,+827.821,+61722.3,-192.59,OK,OK
-2020-10-07 02:00:00 PDT,+3.2,+340,+5,+270,+0.0333617,+2059.16,+61722.3,+29.4436,OK,OK,+8,+180,+0.00798043,+492.57,+61722.3,+345.947,OK,OK
-2020-10-07 03:00:00 PDT,+3.6,+200,+5,+270,+0.0292662,+1806.38,+61722.3,-47.3287,OK,OK,+8,+180,+0.0124638,+769.296,+61722.3,-212.435,OK,OK
-2020-10-07 04:00:00 PDT,+3,+10,+5,+270,+0.0270251,+1668.05,+61722.3,+229.033,OK,OK,+8,+180,+0.0167291,+1032.56,+61722.3,+550.059,OK,OK
-2020-10-07 05:00:00 PDT,+2.4,+140,+5,+270,+0.0272055,+1679.19,+61722.3,-103.591,OK,OK,+8,+180,+0.0144857,+894.088,+61722.3,-352.695,OK,OK
-2020-10-07 06:00:00 PDT,+2.3,+170,+5,+270,+0.0260397,+1607.23,+61722.3,+10.4384,OK,OK,+8,+180,+0.0158638,+979.149,+61722.3,+29.4015,OK,OK
-2020-10-07 07:00:00 PDT,+2.2,+30,+5,+270,+0.0252557,+1558.84,+61722.3,+100.056,OK,OK,+8,+180,+0.018241,+1125.87,+61722.3,+205.291,OK,OK
-2020-10-07 08:00:00 PDT,+2.6,+110,+5,+270,+0.0268245,+1655.67,+61722.3,-93.3851,OK,OK,+8,+180,+0.0148894,+919.008,+61722.3,-301.228,OK,OK
-2020-10-07 09:00:00 PDT,+4.1,+190,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-10-07 10:00:00 PDT,+6.2,+210,+5,+270,+0.0256191,+1581.27,+61722.3,+298.019,OK,OK,+8,+180,+0.0190704,+1177.07,+61722.3,+562.17,OK,OK
-2020-10-07 11:00:00 PDT,+6.2,+200,+5,+270,+0.0342334,+2112.96,+61722.3,+192.553,OK,OK,+8,+180,+0.00917267,+566.158,+61722.3,+1327.59,OK,OK
-2020-10-07 12:00:00 PDT,+5.1,+190,+5,+270,+0.0342334,+2112.96,+61722.3,+192.553,OK,OK,+8,+180,+0.00917267,+566.158,+61722.3,+1327.59,OK,OK
-2020-10-07 13:00:00 PDT,+3.1,+220,+5,+270,+0.0256368,+1582.36,+61722.3,+406.234,OK,OK,+8,+180,+0.0197984,+1222,+61722.3,+719.358,OK,OK
-2020-10-07 14:00:00 PDT,+5.1,+240,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-10-07 15:00:00 PDT,+5.1,+190,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-07 16:00:00 PDT,+4.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-07 17:00:00 PDT,+7.7,+210,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-07 18:00:00 PDT,+7.7,+190,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-10-07 19:00:00 PDT,+5.9,+210,+5,+270,+0.0391071,+2413.78,+61722.3,+129.763,OK,OK,+8,+180,+0.00604367,+373.029,+61722.3,+1993.63,OK,OK
-2020-10-07 20:00:00 PDT,+4.1,+230,+5,+270,+0.0333972,+2061.35,+61722.3,+200.255,OK,OK,+8,+180,+0.00990129,+611.13,+61722.3,+1211.82,OK,OK
-2020-10-07 21:00:00 PDT,+3.1,+240,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-10-07 22:00:00 PDT,+1.5,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-07 23:00:00 PDT,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-10-08 00:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 12:00:00 PDT,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 13:00:00 PDT,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-10-08 14:00:00 PDT,+2.6,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-08 15:00:00 PDT,+3.1,+90,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-10-08 16:00:00 PDT,+3.1,+140,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-10-08 17:00:00 PDT,+5.1,+180,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-10-08 18:00:00 PDT,+5.1,+220,+5,+270,+0.0232776,+1436.74,+61722.3,+471.691,OK,OK,+8,+180,+0.023824,+1470.47,+61722.3,+598.569,OK,OK
-2020-10-08 19:00:00 PDT,+5.7,+240,+5,+270,+0.0232776,+1436.74,+61722.3,+471.691,OK,OK,+8,+180,+0.023824,+1470.47,+61722.3,+598.569,OK,OK
-2020-10-08 20:00:00 PDT,+4.1,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-10-08 21:00:00 PDT,+4.1,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-08 22:00:00 PDT,+3.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-08 23:00:00 PDT,+2.8,+220,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-09 00:00:00 PDT,+2.5,+190,+5,+270,+0.0281841,+1739.59,+61722.3,+153.111,OK,OK,+8,+180,+0.0147584,+910.92,+61722.3,+467.68,OK,OK
-2020-10-09 01:00:00 PDT,+2.2,+170,+5,+270,+0.0256343,+1582.21,+61722.3,+161.474,OK,OK,+8,+180,+0.0182484,+1126.34,+61722.3,+330.275,OK,OK
-2020-10-09 02:00:00 PDT,+1.9,+140,+5,+270,+0.0252901,+1560.96,+61722.3,+95.3913,OK,OK,+8,+180,+0.0182008,+1123.4,+61722.3,+196.545,OK,OK
-2020-10-09 03:00:00 PDT,+1.6,+120,+5,+270,+0.0258752,+1597.07,+61722.3,+9.68411,OK,OK,+8,+180,+0.0165639,+1022.36,+61722.3,+24.4038,OK,OK
-2020-10-09 04:00:00 PDT,+1.2,+100,+5,+270,+0.0260376,+1607.1,+61722.3,-23.344,OK,OK,+8,+180,+0.0163034,+1006.28,+61722.3,-60.8625,OK,OK
-2020-10-09 05:00:00 PDT,+0.9,+70,+5,+270,+0.0259608,+1602.36,+61722.3,-42.0975,OK,OK,+8,+180,+0.0166962,+1030.52,+61722.3,-103.67,OK,OK
-2020-10-09 06:00:00 PDT,+0.6,+50,+5,+270,+0.0258653,+1596.46,+61722.3,-53.6409,OK,OK,+8,+180,+0.0170963,+1055.22,+61722.3,-125.315,OK,OK
-2020-10-09 07:00:00 PDT,+0.3,+20,+5,+270,+0.0257484,+1589.25,+61722.3,-41.8815,OK,OK,+8,+180,+0.0174947,+1079.81,+61722.3,-93.222,OK,OK
-2020-10-09 08:00:00 PDT,+0,+0,+5,+270,+0.0256777,+1584.88,+61722.3,-19.7144,OK,OK,+8,+180,+0.0177253,+1094.05,+61722.3,-42.7279,OK,OK
-2020-10-09 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-09 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-09 11:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-09 12:00:00 PDT,+2.1,+360,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-10-09 13:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-10-09 14:00:00 PDT,+3.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-09 15:00:00 PDT,+3.6,+260,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-10-09 16:00:00 PDT,+4.1,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-09 17:00:00 PDT,+4.1,+250,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-09 18:00:00 PDT,+6.2,+220,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-09 19:00:00 PDT,+5.1,+240,+5,+270,+0.0388857,+2400.11,+61722.3,+44.2432,OK,OK,+8,+180,+0.00456409,+281.706,+61722.3,+1652.36,OK,OK
-2020-10-09 20:00:00 PDT,+5.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-09 21:00:00 PDT,+3.1,+300,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-09 22:00:00 PDT,+0,+0,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-10-09 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-10 00:00:00 PDT,+0.8,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-10 01:00:00 PDT,+1.2,+220,+5,+270,+0.0257286,+1588.02,+61722.3,+52.7908,OK,OK,+8,+180,+0.0177172,+1093.54,+61722.3,+114.457,OK,OK
-2020-10-10 02:00:00 PDT,+0.1,+160,+5,+270,+0.0261148,+1611.86,+61722.3,+82.9633,OK,OK,+8,+180,+0.0172139,+1062.48,+61722.3,+190.049,OK,OK
-2020-10-10 03:00:00 PDT,+2.1,+210,+5,+270,+0.0256609,+1583.85,+61722.3,+3.08269,OK,OK,+8,+180,+0.0177691,+1096.75,+61722.3,+6.64844,OK,OK
-2020-10-10 04:00:00 PDT,+1,+220,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-10-10 05:00:00 PDT,+1.4,+250,+5,+270,+0.0259757,+1603.28,+61722.3,+70.2058,OK,OK,+8,+180,+0.0173836,+1072.95,+61722.3,+157.861,OK,OK
-2020-10-10 06:00:00 PDT,+1.8,+280,+5,+270,+0.0267548,+1651.37,+61722.3,+79.8888,OK,OK,+8,+180,+0.0163103,+1006.71,+61722.3,+203.067,OK,OK
-2020-10-10 07:00:00 PDT,+3.7,+10,+5,+270,+0.027803,+1716.06,+61722.3,+54.5682,OK,OK,+8,+180,+0.0148421,+916.087,+61722.3,+166.797,OK,OK
-2020-10-10 08:00:00 PDT,+2.6,+330,+5,+270,+0.0281449,+1737.16,+61722.3,-82.7988,OK,OK,+8,+180,+0.0128052,+790.367,+61722.3,-403.682,OK,OK
-2020-10-10 09:00:00 PDT,+0,+0,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-10-10 10:00:00 PDT,+2.6,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-10 11:00:00 PDT,+4.4,+290,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-10-10 12:00:00 PDT,+6.2,+260,+5,+270,+0.0399235,+2464.17,+61722.3,-26.8822,OK,OK,+8,+180,+0.00155743,+96.1282,+61722.3,+448.298,OK,OK
-2020-10-10 13:00:00 PDT,+5.1,+250,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-10-10 14:00:00 PDT,+6.2,+230,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-10 15:00:00 PDT,+5.7,+230,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-10-10 16:00:00 PDT,+8.7,+210,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-10-10 17:00:00 PDT,+7.2,+200,+5,+270,+0.0430063,+2654.44,+61722.3,+69.016,OK,OK,+8,+180,+0.00613447,+378.634,+61722.3,+1773.71,OK,OK
-2020-10-10 18:00:00 PDT,+8.7,+220,+5,+270,+0.0311314,+1921.5,+61722.3,+413.379,OK,OK,+8,+180,+0.0139697,+862.239,+61722.3,+1352.07,OK,OK
-2020-10-10 19:00:00 PDT,+7.7,+230,+5,+270,+0.0528094,+3259.51,+61722.3,-207.712,OK,OK,+8,+180,+0.0133887,+826.379,+61722.3,-197.337,OK,OK
-2020-10-10 20:00:00 PDT,+6.2,+240,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-10 21:00:00 PDT,+4.1,+260,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-10 22:00:00 PDT,+3.9,+210,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-10-10 23:00:00 PDT,+3.6,+160,+5,+270,+0.028967,+1787.91,+61722.3,+203.766,OK,OK,+8,+180,+0.014206,+876.829,+61722.3,+661.361,OK,OK
-2020-10-11 00:00:00 PDT,+3.4,+120,+5,+270,+0.0252305,+1557.28,+61722.3,+90.2961,OK,OK,+8,+180,+0.0170745,+1053.88,+61722.3,+216.119,OK,OK
-2020-10-11 01:00:00 PDT,+3.2,+70,+5,+270,+0.0281271,+1736.07,+61722.3,-1.45315,OK,OK,+8,+180,+0.0115938,+715.593,+61722.3,-75.2697,OK,OK
-2020-10-11 02:00:00 PDT,+2.9,+50,+5,+270,+0.0295273,+1822.49,+61722.3,+28.5825,OK,OK,+8,+180,+0.00992366,+612.511,+61722.3,-192.366,OK,OK
-2020-10-11 03:00:00 PDT,+2.7,+270,+5,+270,+0.0284517,+1756.11,+61722.3,-29.0247,OK,OK,+8,+180,+0.0116249,+717.518,+61722.3,-305.234,OK,OK
-2020-10-11 04:00:00 PDT,+2.4,+320,+5,+270,+0.0305671,+1886.67,+61722.3,+63.0988,OK,OK,+8,+180,+0.0113951,+703.328,+61722.3,+325.715,OK,OK
-2020-10-11 05:00:00 PDT,+2.2,+360,+5,+270,+0.0286709,+1769.63,+61722.3,-9.01337,OK,OK,+8,+180,+0.0134985,+833.156,+61722.3,-33.5733,OK,OK
-2020-10-11 06:00:00 PDT,+2,+190,+5,+270,+0.0262403,+1619.61,+61722.3,-98.0483,OK,OK,+8,+180,+0.0166476,+1027.53,+61722.3,-241.09,OK,OK
-2020-10-11 07:00:00 PDT,+1.7,+260,+5,+270,+0.0256425,+1582.71,+61722.3,+125.707,OK,OK,+8,+180,+0.0180754,+1115.65,+61722.3,+261.94,OK,OK
-2020-10-11 08:00:00 PDT,+1.5,+40,+5,+270,+0.0274349,+1693.34,+61722.3,+79.0935,OK,OK,+8,+180,+0.0153915,+949.999,+61722.3,+224.879,OK,OK
-2020-10-11 09:00:00 PDT,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-10-11 10:00:00 PDT,+3.1,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-11 11:00:00 PDT,+4.9,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-11 12:00:00 PDT,+6.7,+240,+5,+270,+0.0387626,+2392.52,+61722.3,-5.48089,OK,OK,+8,+180,+0.00338744,+209.081,+61722.3,+1259.5,OK,OK
-2020-10-11 13:00:00 PDT,+2.6,+250,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-10-11 14:00:00 PDT,+2.6,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-10-11 15:00:00 PDT,+3.6,+270,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-10-11 16:00:00 PDT,+3.1,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-10-11 17:00:00 PDT,+4.6,+240,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-10-11 18:00:00 PDT,+9.3,+220,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-10-11 19:00:00 PDT,+7.7,+220,+5,+270,+0.0569363,+3514.24,+61722.3,-278.794,OK,OK,+8,+180,+0.0175201,+1081.38,+61722.3,-395.144,OK,OK
-2020-10-11 20:00:00 PDT,+6.2,+210,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-11 21:00:00 PDT,+4.1,+180,+5,+270,+0.0342334,+2112.96,+61722.3,+192.553,OK,OK,+8,+180,+0.00917267,+566.158,+61722.3,+1327.59,OK,OK
-2020-10-11 22:00:00 PDT,+3.1,+170,+5,+270,+0.0239681,+1479.36,+61722.3,+318.11,OK,OK,+8,+180,+0.0216788,+1338.07,+61722.3,+474.009,OK,OK
-2020-10-11 23:00:00 PDT,+1.1,+150,+5,+270,+0.024927,+1538.55,+61722.3,+139.167,OK,OK,+8,+180,+0.0186266,+1149.68,+61722.3,+274.314,OK,OK
-2020-10-12 00:00:00 PDT,+3.1,+290,+5,+270,+0.0256707,+1584.46,+61722.3,+19.8879,OK,OK,+8,+180,+0.0175277,+1081.85,+61722.3,+44.1441,OK,OK
-2020-10-12 01:00:00 PDT,+3.7,+130,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-10-12 02:00:00 PDT,+2.8,+110,+5,+270,+0.0278322,+1717.86,+61722.3,-0.966512,OK,OK,+8,+180,+0.0119163,+735.499,+61722.3,-27.8252,OK,OK
-2020-10-12 03:00:00 PDT,+5,+100,+5,+270,+0.027538,+1699.71,+61722.3,-19.6695,OK,OK,+8,+180,+0.0127409,+786.4,+61722.3,-129.849,OK,OK
-2020-10-12 04:00:00 PDT,+7,+80,+5,+270,+0.0365768,+2257.6,+61722.3,+240.138,OK,OK,+8,+180,+0.00891252,+550.101,+61722.3,+669.496,OK,OK
-2020-10-12 05:00:00 PDT,+7.6,+120,+5,+270,+0.0569548,+3515.38,+61722.3,+862.533,OK,OK,+8,+180,+0.0291771,+1800.88,+61722.3,+1477.85,OK,OK
-2020-10-12 06:00:00 PDT,+6.6,+360,+5,+270,+0.0496963,+3067.37,+61722.3,+286.95,OK,OK,+8,+180,+0.0233356,+1440.33,+61722.3,+524.127,OK,OK
-2020-10-12 07:00:00 PDT,+7.7,+40,+5,+270,+0.0319872,+1974.32,+61722.3,+13.3849,OK,OK,+8,+180,+0.00783102,+483.348,+61722.3,-509.613,OK,OK
-2020-10-12 08:00:00 PDT,+6.2,+30,+5,+270,+0.0575023,+3549.17,+61722.3,+1082.83,OK,OK,+8,+180,+0.0281342,+1736.51,+61722.3,+1929.03,OK,OK
-2020-10-12 09:00:00 PDT,+3.1,+230,+5,+270,+0.0409708,+2528.81,+61722.3,+531.171,OK,OK,+8,+180,+0.00987649,+609.599,+61722.3,+1603.84,OK,OK
-2020-10-12 10:00:00 PDT,+5.1,+50,+5,+270,+0.0297409,+1835.68,+61722.3,+132.938,OK,OK,+8,+180,+0.0127783,+788.707,+61722.3,+534.306,OK,OK
-2020-10-12 11:00:00 PDT,+2.6,+10,+5,+270,+0.0379373,+2341.57,+61722.3,+406.277,OK,OK,+8,+180,+0.00819478,+505.8,+61722.3,+1272.16,OK,OK
-2020-10-12 12:00:00 PDT,+2.6,+330,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-10-12 13:00:00 PDT,+2.6,+290,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-10-12 14:00:00 PDT,+3.6,+250,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-10-12 15:00:00 PDT,+4.4,+310,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-10-12 16:00:00 PDT,+5.1,+10,+5,+270,+0.0382773,+2362.56,+61722.3,-4.43054,OK,OK,+8,+180,+0.00211433,+130.501,+61722.3,+92.282,OK,OK
-2020-10-12 17:00:00 PDT,+7.7,+40,+5,+270,+0.0309767,+1911.95,+61722.3,+30.1981,OK,OK,+8,+180,+0.00860134,+530.894,+61722.3,-351.9,OK,OK
-2020-10-12 18:00:00 PDT,+7.7,+40,+5,+270,+0.0575023,+3549.17,+61722.3,+1082.83,OK,OK,+8,+180,+0.0281342,+1736.51,+61722.3,+1929.03,OK,OK
-2020-10-12 19:00:00 PDT,+10.3,+30,+5,+270,+0.0575023,+3549.17,+61722.3,+1082.83,OK,OK,+8,+180,+0.0281342,+1736.51,+61722.3,+1929.03,OK,OK
-2020-10-12 20:00:00 PDT,+4.1,+270,+5,+270,+0.0802991,+4956.24,+61722.3,+1650.81,OK,OK,+8,+180,+0.0515005,+3178.73,+61722.3,+2360.69,OK,OK
-2020-10-12 21:00:00 PDT,+4.1,+270,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-10-12 22:00:00 PDT,+2.7,+300,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-10-12 23:00:00 PDT,+2.8,+310,+5,+270,+0.0304011,+1876.43,+61722.3,+22.0987,OK,OK,+8,+180,+0.0113943,+703.279,+61722.3,+116.267,OK,OK
-2020-10-13 00:00:00 PDT,+2.7,+320,+5,+270,+0.0303853,+1875.45,+61722.3,+7.50832,OK,OK,+8,+180,+0.0113374,+699.773,+61722.3,+40.2419,OK,OK
-2020-10-13 01:00:00 PDT,+2.7,+320,+5,+270,+0.0295242,+1822.3,+61722.3,-8.49914,OK,OK,+8,+180,+0.0123646,+763.173,+61722.3,-38.0533,OK,OK
-2020-10-13 02:00:00 PDT,+2.7,+330,+5,+270,+0.0295242,+1822.3,+61722.3,-8.49914,OK,OK,+8,+180,+0.0123646,+763.173,+61722.3,-38.0533,OK,OK
-2020-10-13 03:00:00 PDT,+3.6,+340,+5,+270,+0.0295242,+1822.3,+61722.3,-8.49914,OK,OK,+8,+180,+0.0123646,+763.173,+61722.3,-38.0533,OK,OK
-2020-10-13 04:00:00 PDT,+4.3,+340,+5,+270,+0.0303098,+1870.79,+61722.3,-40.107,OK,OK,+8,+180,+0.0110545,+682.307,+61722.3,-238.83,OK,OK
-2020-10-13 05:00:00 PDT,+2.8,+360,+5,+270,+0.0325191,+2007.15,+61722.3,-19.064,OK,OK,+8,+180,+0.00818915,+505.453,+61722.3,-284.683,OK,OK
-2020-10-13 06:00:00 PDT,+2.8,+10,+5,+270,+0.0266175,+1642.89,+61722.3,-112.96,OK,OK,+8,+180,+0.0159533,+984.671,+61722.3,-303.611,OK,OK
-2020-10-13 07:00:00 PDT,+2.8,+20,+5,+270,+0.0266175,+1642.89,+61722.3,-112.96,OK,OK,+8,+180,+0.0159533,+984.671,+61722.3,-303.611,OK,OK
-2020-10-13 08:00:00 PDT,+3.1,+20,+5,+270,+0.0266175,+1642.89,+61722.3,-112.96,OK,OK,+8,+180,+0.0159533,+984.671,+61722.3,-303.611,OK,OK
-2020-10-13 09:00:00 PDT,+3.1,+30,+5,+270,+0.0278056,+1716.22,+61722.3,-78.816,OK,OK,+8,+180,+0.0131243,+810.061,+61722.3,-367.466,OK,OK
-2020-10-13 10:00:00 PDT,+3.1,+40,+5,+270,+0.0278056,+1716.22,+61722.3,-78.816,OK,OK,+8,+180,+0.0131243,+810.061,+61722.3,-367.466,OK,OK
-2020-10-13 11:00:00 PDT,+7.7,+50,+5,+270,+0.0278056,+1716.22,+61722.3,-78.816,OK,OK,+8,+180,+0.0131243,+810.061,+61722.3,-367.466,OK,OK
-2020-10-13 12:00:00 PDT,+9,+70,+5,+270,+0.0615669,+3800.05,+61722.3,+1160.03,OK,OK,+8,+180,+0.0329439,+2033.37,+61722.3,+1921.97,OK,OK
-2020-10-13 13:00:00 PDT,+10.3,+80,+5,+270,+0.084392,+5208.87,+61722.3,+1472.82,OK,OK,+8,+180,+0.0575863,+3554.36,+61722.3,+1998.83,OK,OK
-2020-10-13 14:00:00 PDT,+10.3,+50,+5,+270,+0.106394,+6566.85,+61722.3,+1643.96,OK,OK,+8,+180,+0.0804907,+4968.06,+61722.3,+2048.08,OK,OK
-2020-10-13 15:00:00 PDT,+7.7,+50,+5,+270,+0.106394,+6566.85,+61722.3,+1643.96,OK,OK,+8,+180,+0.0804907,+4968.06,+61722.3,+2048.08,OK,OK
-2020-10-13 16:00:00 PDT,+7.7,+70,+5,+270,+0.0615669,+3800.05,+61722.3,+1160.03,OK,OK,+8,+180,+0.0329439,+2033.37,+61722.3,+1921.97,OK,OK
-2020-10-13 17:00:00 PDT,+7.7,+70,+5,+270,+0.0615669,+3800.05,+61722.3,+1160.03,OK,OK,+8,+180,+0.0329439,+2033.37,+61722.3,+1921.97,OK,OK
-2020-10-13 18:00:00 PDT,+5.1,+70,+5,+270,+0.0615669,+3800.05,+61722.3,+1160.03,OK,OK,+8,+180,+0.0329439,+2033.37,+61722.3,+1921.97,OK,OK
-2020-10-13 19:00:00 PDT,+6.7,+70,+5,+270,+0.0392711,+2423.9,+61722.3,+426.331,OK,OK,+8,+180,+0.0100788,+622.088,+61722.3,+1207.71,OK,OK
-2020-10-13 20:00:00 PDT,+5.1,+70,+5,+270,+0.0537577,+3318.05,+61722.3,+859.639,OK,OK,+8,+180,+0.0253759,+1566.26,+61722.3,+1573.19,OK,OK
-2020-10-13 21:00:00 PDT,+7.2,+80,+5,+270,+0.0392711,+2423.9,+61722.3,+426.331,OK,OK,+8,+180,+0.0100788,+622.088,+61722.3,+1207.71,OK,OK
-2020-10-13 22:00:00 PDT,+8.2,+80,+5,+270,+0.0593024,+3660.28,+61722.3,+912.232,OK,OK,+8,+180,+0.0316855,+1955.7,+61722.3,+1511.03,OK,OK
-2020-10-13 23:00:00 PDT,+7.6,+100,+5,+270,+0.0723296,+4464.35,+61722.3,+1156.5,OK,OK,+8,+180,+0.0454296,+2804.02,+61722.3,+1679.61,OK,OK
-2020-10-14 00:00:00 PDT,+7.1,+50,+5,+270,+0.0595659,+3676.54,+61722.3,+697.373,OK,OK,+8,+180,+0.0327734,+2022.85,+61722.3,+1126.65,OK,OK
-2020-10-14 01:00:00 PDT,+6.5,+60,+5,+270,+0.0549055,+3388.89,+61722.3,+983.654,OK,OK,+8,+180,+0.0258245,+1593.94,+61722.3,+1807.51,OK,OK
-2020-10-14 02:00:00 PDT,+5.9,+160,+5,+270,+0.0507731,+3133.83,+61722.3,+829.133,OK,OK,+8,+180,+0.0217787,+1344.23,+61722.3,+1637.39,OK,OK
-2020-10-14 03:00:00 PDT,+5.3,+160,+5,+270,+0.0246655,+1522.41,+61722.3,+87.5221,OK,OK,+8,+180,+0.016105,+994.036,+61722.3,+278.883,OK,OK
-2020-10-14 04:00:00 PDT,+4.6,+160,+5,+270,+0.024817,+1531.76,+61722.3,+95.6748,OK,OK,+8,+180,+0.0163739,+1010.63,+61722.3,+272.667,OK,OK
-2020-10-14 05:00:00 PDT,+4.2,+170,+5,+270,+0.0249941,+1542.69,+61722.3,+98.0319,OK,OK,+8,+180,+0.016679,+1029.47,+61722.3,+255.398,OK,OK
-2020-10-14 06:00:00 PDT,+3.8,+170,+5,+270,+0.0243219,+1501.2,+61722.3,+199.772,OK,OK,+8,+180,+0.0193453,+1194.04,+61722.3,+365.959,OK,OK
-2020-10-14 07:00:00 PDT,+3.5,+60,+5,+270,+0.024562,+1516.02,+61722.3,+176.647,OK,OK,+8,+180,+0.0190586,+1176.34,+61722.3,+333.116,OK,OK
-2020-10-14 08:00:00 PDT,+3.1,+180,+5,+270,+0.0304636,+1880.28,+61722.3,+68.2267,OK,OK,+8,+180,+0.00884026,+545.641,+61722.3,-129.369,OK,OK
-2020-10-14 09:00:00 PDT,+2.6,+190,+5,+270,+0.0246291,+1520.17,+61722.3,+205.176,OK,OK,+8,+180,+0.0200025,+1234.6,+61722.3,+353.283,OK,OK
-2020-10-14 10:00:00 PDT,+9.3,+100,+5,+270,+0.0256327,+1582.11,+61722.3,+168.955,OK,OK,+8,+180,+0.0182878,+1128.76,+61722.3,+344.148,OK,OK
-2020-10-14 11:00:00 PDT,+7.7,+110,+5,+270,+0.0819684,+5059.27,+61722.3,+989.189,OK,OK,+8,+180,+0.0562508,+3471.93,+61722.3,+1334.65,OK,OK
-2020-10-14 12:00:00 PDT,+7.7,+110,+5,+270,+0.056229,+3470.58,+61722.3,+510.662,OK,OK,+8,+180,+0.0297135,+1833.98,+61722.3,+851.319,OK,OK
-2020-10-14 13:00:00 PDT,+11.3,+100,+5,+270,+0.056229,+3470.58,+61722.3,+510.662,OK,OK,+8,+180,+0.0297135,+1833.98,+61722.3,+851.319,OK,OK
-2020-10-14 14:00:00 PDT,+10.3,+80,+5,+270,+0.11522,+7111.63,+61722.3,+1312.53,OK,OK,+8,+180,+0.090263,+5571.23,+61722.3,+1587.64,OK,OK
-2020-10-14 15:00:00 PDT,+10.3,+100,+5,+270,+0.106394,+6566.85,+61722.3,+1643.96,OK,OK,+8,+180,+0.0804907,+4968.06,+61722.3,+2048.08,OK,OK
-2020-10-14 16:00:00 PDT,+9.3,+180,+5,+270,+0.106394,+6566.85,+61722.3,+1643.96,OK,OK,+8,+180,+0.0804907,+4968.06,+61722.3,+2048.08,OK,OK
-2020-10-14 17:00:00 PDT,+7.2,+110,+5,+270,+0.0237241,+1464.31,+61722.3,+1599.74,OK,OK,+8,+180,+0.0379725,+2343.75,+61722.3,+1151.41,OK,OK
-2020-10-14 18:00:00 PDT,+7.2,+90,+5,+270,+0.0512429,+3162.83,+61722.3,+444.158,OK,OK,+8,+180,+0.0243501,+1502.94,+61722.3,+805.422,OK,OK
-2020-10-14 19:00:00 PDT,+5.1,+90,+5,+270,+0.0512429,+3162.83,+61722.3,+444.158,OK,OK,+8,+180,+0.0243501,+1502.94,+61722.3,+805.422,OK,OK
-2020-10-14 20:00:00 PDT,+4.6,+120,+5,+270,+0.0384259,+2371.74,+61722.3,+332.98,OK,OK,+8,+180,+0.0100257,+618.811,+61722.3,+920.889,OK,OK
-2020-10-14 21:00:00 PDT,+7.2,+130,+5,+270,+0.0314437,+1940.78,+61722.3,+55.6456,OK,OK,+8,+180,+0.00837906,+517.174,+61722.3,+71.9573,OK,OK
-2020-10-14 22:00:00 PDT,+5.1,+120,+5,+270,+0.0408084,+2518.79,+61722.3,+75.3642,OK,OK,+8,+180,+0.0147692,+911.591,+61722.3,+165.582,OK,OK
-2020-10-14 23:00:00 PDT,+4.9,+120,+5,+270,+0.0334468,+2064.41,+61722.3,+88.2271,OK,OK,+8,+180,+0.00822048,+507.387,+61722.3,+202.847,OK,OK
-2020-10-15 00:00:00 PDT,+4.6,+120,+5,+270,+0.0325981,+2012.03,+61722.3,+74.6861,OK,OK,+8,+180,+0.00813865,+502.336,+61722.3,+148.218,OK,OK
-2020-10-15 01:00:00 PDT,+4.4,+130,+5,+270,+0.0314437,+1940.78,+61722.3,+55.6456,OK,OK,+8,+180,+0.00837906,+517.174,+61722.3,+71.9573,OK,OK
-2020-10-15 02:00:00 PDT,+4.1,+130,+5,+270,+0.0292267,+1803.94,+61722.3,+8.62564,OK,OK,+8,+180,+0.0100565,+620.707,+61722.3,-11.2946,OK,OK
-2020-10-15 03:00:00 PDT,+6.5,+70,+5,+270,+0.0285681,+1763.28,+61722.3,+4.05548,OK,OK,+8,+180,+0.0108285,+668.36,+61722.3,-20.6381,OK,OK
-2020-10-15 04:00:00 PDT,+5.1,+70,+5,+270,+0.0516306,+3186.76,+61722.3,+804.707,OK,OK,+8,+180,+0.0230824,+1424.7,+61722.3,+1537.23,OK,OK
-2020-10-15 05:00:00 PDT,+3.4,+140,+5,+270,+0.0392711,+2423.9,+61722.3,+426.331,OK,OK,+8,+180,+0.0100788,+622.088,+61722.3,+1207.71,OK,OK
-2020-10-15 06:00:00 PDT,+3.1,+140,+5,+270,+0.0266168,+1642.85,+61722.3,+8.04777,OK,OK,+8,+180,+0.0140598,+867.803,+61722.3,+34.9881,OK,OK
-2020-10-15 07:00:00 PDT,+2.9,+140,+5,+270,+0.0264015,+1629.56,+61722.3,+9.38133,OK,OK,+8,+180,+0.0146507,+904.277,+61722.3,+34.1468,OK,OK
-2020-10-15 08:00:00 PDT,+2.6,+130,+5,+270,+0.0262796,+1622.04,+61722.3,+9.96414,OK,OK,+8,+180,+0.0150227,+927.233,+61722.3,+33.1362,OK,OK
-2020-10-15 09:00:00 PDT,+2.6,+120,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-10-15 10:00:00 PDT,+2.6,+130,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-10-15 11:00:00 PDT,+4.6,+130,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-10-15 12:00:00 PDT,+8.7,+70,+5,+270,+0.0297207,+1834.43,+61722.3,+12.0403,OK,OK,+8,+180,+0.00959005,+591.919,+61722.3,-2.6672,OK,OK
-2020-10-15 13:00:00 PDT,+7.7,+90,+5,+270,+0.0797709,+4923.64,+61722.3,+1395.33,OK,OK,+8,+180,+0.0528069,+3259.36,+61722.3,+1941.58,OK,OK
-2020-10-15 14:00:00 PDT,+7.2,+70,+5,+270,+0.0638743,+3942.46,+61722.3,+893.593,OK,OK,+8,+180,+0.036923,+2278.97,+61722.3,+1388.05,OK,OK
-2020-10-15 15:00:00 PDT,+5.1,+60,+5,+270,+0.0594606,+3670.05,+61722.3,+996.304,OK,OK,+8,+180,+0.0314864,+1943.41,+61722.3,+1663.15,OK,OK
-2020-10-15 16:00:00 PDT,+5.1,+90,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-10-15 17:00:00 PDT,+5.1,+60,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-10-15 18:00:00 PDT,+5.1,+60,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-10-15 19:00:00 PDT,+5.1,+60,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-10-15 20:00:00 PDT,+2.1,+60,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-10-15 21:00:00 PDT,+2.6,+50,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-10-15 22:00:00 PDT,+3.1,+50,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-10-15 23:00:00 PDT,+2.6,+40,+5,+270,+0.0289646,+1787.76,+61722.3,-6.34541,OK,OK,+8,+180,+0.0108248,+668.132,+61722.3,-286.598,OK,OK
-2020-10-16 00:00:00 PDT,+2.1,+40,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-10-16 01:00:00 PDT,+1.6,+30,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-10-16 02:00:00 PDT,+1,+30,+5,+270,+0.0262369,+1619.4,+61722.3,-88.6745,OK,OK,+8,+180,+0.0162363,+1002.14,+61722.3,-231.619,OK,OK
-2020-10-16 03:00:00 PDT,+2.1,+20,+5,+270,+0.0258752,+1597.07,+61722.3,-64.5377,OK,OK,+8,+180,+0.0171684,+1059.67,+61722.3,-149.325,OK,OK
-2020-10-16 04:00:00 PDT,+0.2,+20,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-10-16 05:00:00 PDT,+0.1,+10,+5,+270,+0.0256686,+1584.32,+61722.3,-13.1877,OK,OK,+8,+180,+0.0177499,+1095.57,+61722.3,-28.5031,OK,OK
-2020-10-16 06:00:00 PDT,+0.1,+10,+5,+270,+0.0256628,+1583.97,+61722.3,-5.97303,OK,OK,+8,+180,+0.017766,+1096.56,+61722.3,-12.8864,OK,OK
-2020-10-16 07:00:00 PDT,+0,+0,+5,+270,+0.0256628,+1583.97,+61722.3,-5.97303,OK,OK,+8,+180,+0.017766,+1096.56,+61722.3,-12.8864,OK,OK
-2020-10-16 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-16 09:00:00 PDT,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-16 10:00:00 PDT,+2.1,+360,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-10-16 11:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-10-16 12:00:00 PDT,+2.1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-16 13:00:00 PDT,+0,+0,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-10-16 14:00:00 PDT,+6.2,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-16 15:00:00 PDT,+3.1,+60,+5,+270,+0.0426862,+2634.69,+61722.3,+310.753,OK,OK,+8,+180,+0.0151523,+935.233,+61722.3,+701.5,OK,OK
-2020-10-16 16:00:00 PDT,+2.6,+60,+5,+270,+0.029157,+1799.64,+61722.3,+8.09709,OK,OK,+8,+180,+0.0104776,+646.702,+61722.3,-248.026,OK,OK
-2020-10-16 17:00:00 PDT,+4.1,+250,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-10-16 18:00:00 PDT,+4.1,+240,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-10-16 19:00:00 PDT,+4.6,+220,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-10-16 20:00:00 PDT,+3.1,+240,+5,+270,+0.0327121,+2019.06,+61722.3,+139.369,OK,OK,+8,+180,+0.0097878,+604.125,+61722.3,+903.063,OK,OK
-2020-10-16 21:00:00 PDT,+3.1,+300,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-16 22:00:00 PDT,+0,+0,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-16 23:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 00:00:00 PDT,+0.3,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 01:00:00 PDT,+0,+0,+5,+270,+0.0256832,+1585.23,+61722.3,-20.916,OK,OK,+8,+180,+0.0176966,+1092.27,+61722.3,-45.4822,OK,OK
-2020-10-17 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 03:00:00 PDT,+0.8,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 04:00:00 PDT,+0.9,+270,+5,+270,+0.0260184,+1605.91,+61722.3,+4.81178,OK,OK,+8,+180,+0.017244,+1064.34,+61722.3,+10.9982,OK,OK
-2020-10-17 05:00:00 PDT,+0,+0,+5,+270,+0.0261727,+1615.44,+61722.3,+43.1914,OK,OK,+8,+180,+0.0170591,+1052.92,+61722.3,+100.763,OK,OK
-2020-10-17 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 14:00:00 PDT,+3.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-17 15:00:00 PDT,+2.1,+260,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-10-17 16:00:00 PDT,+4.1,+210,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-10-17 17:00:00 PDT,+6.2,+210,+5,+270,+0.0293224,+1809.84,+61722.3,+207.283,OK,OK,+8,+180,+0.0138392,+854.184,+61722.3,+704.63,OK,OK
-2020-10-17 18:00:00 PDT,+6.7,+220,+5,+270,+0.0342334,+2112.96,+61722.3,+192.553,OK,OK,+8,+180,+0.00917267,+566.158,+61722.3,+1327.59,OK,OK
-2020-10-17 19:00:00 PDT,+6.7,+250,+5,+270,+0.0412492,+2545.99,+61722.3,+1.8067,OK,OK,+8,+180,+0.00411859,+254.209,+61722.3,+1550.59,OK,OK
-2020-10-17 20:00:00 PDT,+3.1,+250,+5,+270,+0.0412492,+2545.99,+61722.3,+1.8067,OK,OK,+8,+180,+0.00411859,+254.209,+61722.3,+1550.59,OK,OK
-2020-10-17 21:00:00 PDT,+4.1,+230,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-10-17 22:00:00 PDT,+3.1,+240,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-10-17 23:00:00 PDT,+3,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-18 00:00:00 PDT,+2.8,+270,+5,+270,+0.0309519,+1910.42,+61722.3,+88.8124,OK,OK,+8,+180,+0.0111027,+685.281,+61722.3,+476.264,OK,OK
-2020-10-18 01:00:00 PDT,+2.7,+280,+5,+270,+0.0309606,+1910.96,+61722.3,+60.4461,OK,OK,+8,+180,+0.0109171,+673.826,+61722.3,+340.915,OK,OK
-2020-10-18 02:00:00 PDT,+2.6,+290,+5,+270,+0.0306727,+1893.19,+61722.3,+48.7866,OK,OK,+8,+180,+0.0111954,+691.005,+61722.3,+262.907,OK,OK
-2020-10-18 03:00:00 PDT,+2.4,+300,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-18 04:00:00 PDT,+2.3,+320,+5,+270,+0.0293526,+1811.71,+61722.3,+24.3897,OK,OK,+8,+180,+0.0127299,+785.72,+61722.3,+101.72,OK,OK
-2020-10-18 05:00:00 PDT,+2.2,+340,+5,+270,+0.0284129,+1753.71,+61722.3,-9.08276,OK,OK,+8,+180,+0.0138468,+854.658,+61722.3,-32.108,OK,OK
-2020-10-18 06:00:00 PDT,+2.1,+350,+5,+270,+0.0272945,+1684.68,+61722.3,-50.1192,OK,OK,+8,+180,+0.0152618,+941.993,+61722.3,-146.188,OK,OK
-2020-10-18 07:00:00 PDT,+1.9,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-10-18 08:00:00 PDT,+2.1,+360,+5,+270,+0.0260896,+1610.31,+61722.3,-88.0226,OK,OK,+8,+180,+0.0169326,+1045.12,+61722.3,-209.058,OK,OK
-2020-10-18 09:00:00 PDT,+2.6,+360,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-10-18 10:00:00 PDT,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-10-18 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-18 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-18 13:00:00 PDT,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-18 14:00:00 PDT,+2.1,+280,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-10-18 15:00:00 PDT,+5.1,+240,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-10-18 16:00:00 PDT,+7.2,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-18 17:00:00 PDT,+7.7,+220,+5,+270,+0.0500548,+3089.49,+61722.3,-189.205,OK,OK,+8,+180,+0.0106556,+657.689,+61722.3,-241.617,OK,OK
-2020-10-18 18:00:00 PDT,+6.2,+220,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-18 19:00:00 PDT,+5.1,+230,+5,+270,+0.0388857,+2400.11,+61722.3,+44.2432,OK,OK,+8,+180,+0.00456409,+281.706,+61722.3,+1652.36,OK,OK
-2020-10-18 20:00:00 PDT,+4.1,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-18 21:00:00 PDT,+3.1,+250,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-18 22:00:00 PDT,+2.6,+260,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-10-18 23:00:00 PDT,+2.3,+270,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-10-19 00:00:00 PDT,+2,+280,+5,+270,+0.0291603,+1799.84,+61722.3,+69.5308,OK,OK,+8,+180,+0.0131379,+810.901,+61722.3,+269.575,OK,OK
-2020-10-19 01:00:00 PDT,+1.8,+290,+5,+270,+0.0283267,+1748.39,+61722.3,+55.686,OK,OK,+8,+180,+0.0141564,+873.765,+61722.3,+186.745,OK,OK
-2020-10-19 02:00:00 PDT,+1.5,+300,+5,+270,+0.0277763,+1714.42,+61722.3,+40.0448,OK,OK,+8,+180,+0.0148431,+916.152,+61722.3,+122.519,OK,OK
-2020-10-19 03:00:00 PDT,+1.1,+310,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-10-19 04:00:00 PDT,+0.8,+320,+5,+270,+0.0263413,+1625.85,+61722.3,+6.28709,OK,OK,+8,+180,+0.0167759,+1035.45,+61722.3,+15.1597,OK,OK
-2020-10-19 05:00:00 PDT,+0.5,+330,+5,+270,+0.0259777,+1603.4,+61722.3,-4.8348,OK,OK,+8,+180,+0.0172949,+1067.48,+61722.3,-10.9888,OK,OK
-2020-10-19 06:00:00 PDT,+0.3,+340,+5,+270,+0.0257648,+1590.26,+61722.3,-9.27964,OK,OK,+8,+180,+0.0176097,+1086.91,+61722.3,-20.3663,OK,OK
-2020-10-19 07:00:00 PDT,+0,+0,+5,+270,+0.0256903,+1585.67,+61722.3,-9.20214,OK,OK,+8,+180,+0.017723,+1093.9,+61722.3,-19.9465,OK,OK
-2020-10-19 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-19 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-19 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-19 11:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-19 12:00:00 PDT,+2.1,+320,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-10-19 13:00:00 PDT,+2.1,+290,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-10-19 14:00:00 PDT,+3.1,+270,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-10-19 15:00:00 PDT,+5.1,+250,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-10-19 16:00:00 PDT,+5.1,+240,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-19 17:00:00 PDT,+7.2,+230,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-19 18:00:00 PDT,+7.7,+260,+5,+270,+0.0500548,+3089.49,+61722.3,-189.205,OK,OK,+8,+180,+0.0106556,+657.689,+61722.3,-241.617,OK,OK
-2020-10-19 19:00:00 PDT,+6.2,+240,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-10-19 20:00:00 PDT,+7.2,+230,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-19 21:00:00 PDT,+5.1,+230,+5,+270,+0.0500548,+3089.49,+61722.3,-189.205,OK,OK,+8,+180,+0.0106556,+657.689,+61722.3,-241.617,OK,OK
-2020-10-19 22:00:00 PDT,+5.1,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-19 23:00:00 PDT,+6.7,+230,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-20 00:00:00 PDT,+4.1,+190,+5,+270,+0.0465661,+2874.16,+61722.3,-127.909,OK,OK,+8,+180,+0.00722877,+446.176,+61722.3,+59.0718,OK,OK
-2020-10-20 01:00:00 PDT,+3.6,+170,+5,+270,+0.0256191,+1581.27,+61722.3,+298.019,OK,OK,+8,+180,+0.0190704,+1177.07,+61722.3,+562.17,OK,OK
-2020-10-20 02:00:00 PDT,+3.1,+140,+5,+270,+0.0246736,+1522.91,+61722.3,+165.576,OK,OK,+8,+180,+0.0189262,+1168.17,+61722.3,+316.482,OK,OK
-2020-10-20 03:00:00 PDT,+2.6,+120,+5,+270,+0.0264015,+1629.56,+61722.3,+9.38133,OK,OK,+8,+180,+0.0146507,+904.277,+61722.3,+34.1468,OK,OK
-2020-10-20 04:00:00 PDT,+2,+100,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-10-20 05:00:00 PDT,+1.5,+70,+5,+270,+0.0266196,+1643.02,+61722.3,-46.6498,OK,OK,+8,+180,+0.0148339,+915.582,+61722.3,-155.86,OK,OK
-2020-10-20 06:00:00 PDT,+1,+50,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-10-20 07:00:00 PDT,+0.5,+20,+5,+270,+0.025911,+1599.28,+61722.3,-64.7236,OK,OK,+8,+180,+0.0170078,+1049.76,+61722.3,-152.832,OK,OK
-2020-10-20 08:00:00 PDT,+0,+0,+5,+270,+0.025707,+1586.69,+61722.3,-32.4994,OK,OK,+8,+180,+0.0176465,+1089.18,+61722.3,-71.0698,OK,OK
-2020-10-20 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-20 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-20 11:00:00 PDT,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-20 12:00:00 PDT,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-10-20 13:00:00 PDT,+2.6,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-20 14:00:00 PDT,+3.1,+40,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-10-20 15:00:00 PDT,+4.6,+310,+5,+270,+0.028658,+1768.84,+61722.3,-27.2576,OK,OK,+8,+180,+0.0113848,+702.693,+61722.3,-324.349,OK,OK
-2020-10-20 16:00:00 PDT,+3.6,+260,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-10-20 17:00:00 PDT,+5.1,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-20 18:00:00 PDT,+6.7,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-20 19:00:00 PDT,+5.7,+240,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-10-20 20:00:00 PDT,+4.1,+240,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-10-20 21:00:00 PDT,+4.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-20 22:00:00 PDT,+5.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-20 23:00:00 PDT,+4.5,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-21 00:00:00 PDT,+4,+260,+5,+270,+0.0382488,+2360.8,+61722.3,-6.95952,OK,OK,+8,+180,+0.00341491,+210.776,+61722.3,+1052.5,OK,OK
-2020-10-21 01:00:00 PDT,+3.5,+280,+5,+270,+0.036417,+2247.74,+61722.3,+12.1057,OK,OK,+8,+180,+0.00487338,+300.796,+61722.3,+725.28,OK,OK
-2020-10-21 02:00:00 PDT,+2.9,+300,+5,+270,+0.0344049,+2123.55,+61722.3,+20.4211,OK,OK,+8,+180,+0.00678013,+418.485,+61722.3,+382.429,OK,OK
-2020-10-21 03:00:00 PDT,+2.3,+310,+5,+270,+0.0311835,+1924.71,+61722.3,+19.7724,OK,OK,+8,+180,+0.0104179,+643.014,+61722.3,+126.623,OK,OK
-2020-10-21 04:00:00 PDT,+1.7,+320,+5,+270,+0.0287733,+1775.95,+61722.3,+8.63675,OK,OK,+8,+180,+0.0134275,+828.775,+61722.3,+32.4073,OK,OK
-2020-10-21 05:00:00 PDT,+1.1,+330,+5,+270,+0.0271278,+1674.39,+61722.3,-8.48015,OK,OK,+8,+180,+0.0156262,+964.486,+61722.3,-23.5149,OK,OK
-2020-10-21 06:00:00 PDT,+0.6,+350,+5,+270,+0.0261676,+1615.12,+61722.3,-19.0757,OK,OK,+8,+180,+0.0169956,+1049.01,+61722.3,-44.865,OK,OK
-2020-10-21 07:00:00 PDT,+0,+0,+5,+270,+0.0257416,+1588.83,+61722.3,-24.7156,OK,OK,+8,+180,+0.0176325,+1088.32,+61722.3,-54.1135,OK,OK
-2020-10-21 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-21 09:00:00 PDT,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-21 10:00:00 PDT,+2.6,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-10-21 11:00:00 PDT,+2.6,+290,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-10-21 12:00:00 PDT,+2.6,+260,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-10-21 13:00:00 PDT,+4.1,+240,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-10-21 14:00:00 PDT,+4.1,+280,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-21 15:00:00 PDT,+5.1,+260,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-21 16:00:00 PDT,+6.2,+240,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-10-21 17:00:00 PDT,+7.7,+250,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-10-21 18:00:00 PDT,+6.7,+240,+5,+270,+0.0658817,+4066.37,+61722.3,-402.545,OK,OK,+8,+180,+0.0271322,+1674.66,+61722.3,-722.594,OK,OK
-2020-10-21 19:00:00 PDT,+5.1,+240,+5,+270,+0.0513805,+3171.32,+61722.3,-215.63,OK,OK,+8,+180,+0.0120616,+744.467,+61722.3,-400.194,OK,OK
-2020-10-21 20:00:00 PDT,+2.6,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-21 21:00:00 PDT,+5.1,+230,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-10-21 22:00:00 PDT,+4.1,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-21 23:00:00 PDT,+3.6,+300,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-22 00:00:00 PDT,+3.5,+260,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-10-22 01:00:00 PDT,+2.4,+220,+5,+270,+0.0337292,+2081.84,+61722.3,+46.0519,OK,OK,+8,+180,+0.00777972,+480.182,+61722.3,+545.834,OK,OK
-2020-10-22 02:00:00 PDT,+0.8,+170,+5,+270,+0.0275026,+1697.52,+61722.3,+141.986,OK,OK,+8,+180,+0.0155534,+959.992,+61722.3,+393.475,OK,OK
-2020-10-22 03:00:00 PDT,+0.8,+140,+5,+270,+0.0256121,+1580.83,+61722.3,+33.6338,OK,OK,+8,+180,+0.0178266,+1100.3,+61722.3,+72.0941,OK,OK
-2020-10-22 04:00:00 PDT,+0.8,+90,+5,+270,+0.0256121,+1580.83,+61722.3,+33.6338,OK,OK,+8,+180,+0.0178266,+1100.3,+61722.3,+72.0941,OK,OK
-2020-10-22 05:00:00 PDT,+0.7,+70,+5,+270,+0.0256121,+1580.83,+61722.3,+33.6338,OK,OK,+8,+180,+0.0178266,+1100.3,+61722.3,+72.0941,OK,OK
-2020-10-22 06:00:00 PDT,+0.7,+70,+5,+270,+0.0257824,+1591.35,+61722.3,-43.5182,OK,OK,+8,+180,+0.0173617,+1071.6,+61722.3,-98.4181,OK,OK
-2020-10-22 07:00:00 PDT,+0.6,+40,+5,+270,+0.0257824,+1591.35,+61722.3,-43.5182,OK,OK,+8,+180,+0.0173617,+1071.6,+61722.3,-98.4181,OK,OK
-2020-10-22 08:00:00 PDT,+2.1,+30,+5,+270,+0.0257438,+1588.96,+61722.3,-42.0573,OK,OK,+8,+180,+0.01752,+1081.37,+61722.3,-93.3319,OK,OK
-2020-10-22 09:00:00 PDT,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-10-22 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-22 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-22 12:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-22 13:00:00 PDT,+2.6,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-10-22 14:00:00 PDT,+5.1,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-10-22 15:00:00 PDT,+5.1,+240,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-10-22 16:00:00 PDT,+7.7,+230,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-10-22 17:00:00 PDT,+7.7,+220,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-22 18:00:00 PDT,+7.7,+220,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-22 19:00:00 PDT,+5.1,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-22 20:00:00 PDT,+4.6,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-22 21:00:00 PDT,+4.1,+250,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-10-22 22:00:00 PDT,+3.6,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-10-22 23:00:00 PDT,+5.9,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-23 00:00:00 PDT,+3,+220,+5,+270,+0.0482892,+2980.52,+61722.3,-161.475,OK,OK,+8,+180,+0.00894557,+552.141,+61722.3,-295.983,OK,OK
-2020-10-23 01:00:00 PDT,+2.7,+200,+5,+270,+0.0285676,+1763.26,+61722.3,+156.814,OK,OK,+8,+180,+0.0143165,+883.646,+61722.3,+506.633,OK,OK
-2020-10-23 02:00:00 PDT,+2.4,+180,+5,+270,+0.026428,+1631.2,+61722.3,+174.642,OK,OK,+8,+180,+0.0171784,+1060.29,+61722.3,+400.214,OK,OK
-2020-10-23 03:00:00 PDT,+2.1,+160,+5,+270,+0.025023,+1544.48,+61722.3,+144.575,OK,OK,+8,+180,+0.0191073,+1179.34,+61722.3,+271.091,OK,OK
-2020-10-23 04:00:00 PDT,+1.8,+130,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-10-23 05:00:00 PDT,+1.5,+110,+5,+270,+0.0260053,+1605.11,+61722.3,-8.73976,OK,OK,+8,+180,+0.0162801,+1004.85,+61722.3,-22.9088,OK,OK
-2020-10-23 06:00:00 PDT,+1.2,+90,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-10-23 07:00:00 PDT,+0.9,+70,+5,+270,+0.0259977,+1604.64,+61722.3,-51.3077,OK,OK,+8,+180,+0.0166211,+1025.89,+61722.3,-127.583,OK,OK
-2020-10-23 08:00:00 PDT,+2.1,+30,+5,+270,+0.0258653,+1596.46,+61722.3,-53.6409,OK,OK,+8,+180,+0.0170963,+1055.22,+61722.3,-125.315,OK,OK
-2020-10-23 09:00:00 PDT,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-10-23 10:00:00 PDT,+1.3,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-23 11:00:00 PDT,+2.6,+300,+5,+270,+0.0263722,+1627.75,+61722.3,-21.7681,OK,OK,+8,+180,+0.0166886,+1030.06,+61722.3,-53.0591,OK,OK
-2020-10-23 12:00:00 PDT,+2.6,+270,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-10-23 13:00:00 PDT,+3.9,+240,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-10-23 14:00:00 PDT,+5.1,+210,+5,+270,+0.0336984,+2079.94,+61722.3,+73.524,OK,OK,+8,+180,+0.00812869,+501.721,+61722.3,+739.492,OK,OK
-2020-10-23 15:00:00 PDT,+7.7,+220,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-10-23 16:00:00 PDT,+7.7,+220,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-23 17:00:00 PDT,+7.7,+210,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-23 18:00:00 PDT,+6.7,+210,+5,+270,+0.0466069,+2876.68,+61722.3,-96.4097,OK,OK,+8,+180,+0.00745867,+460.366,+61722.3,+377.376,OK,OK
-2020-10-23 19:00:00 PDT,+7.7,+230,+5,+270,+0.0357291,+2205.28,+61722.3,+175.927,OK,OK,+8,+180,+0.00797164,+492.028,+61722.3,+1546.98,OK,OK
-2020-10-23 20:00:00 PDT,+5.1,+220,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-23 21:00:00 PDT,+5.7,+230,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-10-23 22:00:00 PDT,+7.7,+260,+5,+270,+0.040445,+2496.36,+61722.3,-18.0773,OK,OK,+8,+180,+0.00330041,+203.709,+61722.3,+1408.3,OK,OK
-2020-10-23 23:00:00 PDT,+6.9,+270,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-10-24 00:00:00 PDT,+6.1,+280,+5,+270,+0.0630432,+3891.17,+61722.3,-290.713,OK,OK,+8,+180,+0.0244551,+1509.43,+61722.3,-551.851,OK,OK
-2020-10-24 01:00:00 PDT,+5.3,+290,+5,+270,+0.0550479,+3397.68,+61722.3,-174.875,OK,OK,+8,+180,+0.0162332,+1001.95,+61722.3,-382.129,OK,OK
-2020-10-24 02:00:00 PDT,+4.5,+300,+5,+270,+0.047117,+2908.17,+61722.3,-79.94,OK,OK,+8,+180,+0.00793999,+490.074,+61722.3,-201.943,OK,OK
-2020-10-24 03:00:00 PDT,+3.7,+320,+5,+270,+0.0400197,+2470.11,+61722.3,-19.1385,OK,OK,+8,+180,+0.00134038,+82.7313,+61722.3,+257.168,OK,OK
-2020-10-24 04:00:00 PDT,+2.9,+330,+5,+270,+0.0332826,+2054.27,+61722.3,-3.47809,OK,OK,+8,+180,+0.00762932,+470.899,+61722.3,-54.9692,OK,OK
-2020-10-24 05:00:00 PDT,+2.1,+330,+5,+270,+0.0294277,+1816.34,+61722.3,-26.6944,OK,OK,+8,+180,+0.0123907,+764.784,+61722.3,-119.937,OK,OK
-2020-10-24 06:00:00 PDT,+1.3,+340,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-10-24 07:00:00 PDT,+0.5,+360,+5,+270,+0.0262156,+1618.08,+61722.3,-36.3007,OK,OK,+8,+180,+0.016894,+1042.73,+61722.3,-86.4195,OK,OK
-2020-10-24 08:00:00 PDT,+0,+0,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-10-24 09:00:00 PDT,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-24 10:00:00 PDT,+2.1,+280,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-10-24 11:00:00 PDT,+2.6,+240,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-10-24 12:00:00 PDT,+2.6,+250,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-24 13:00:00 PDT,+2.6,+250,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-24 14:00:00 PDT,+5.1,+250,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-24 15:00:00 PDT,+3.1,+240,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-24 16:00:00 PDT,+4.1,+230,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-24 17:00:00 PDT,+7.7,+230,+5,+270,+0.0329934,+2036.43,+61722.3,+103.598,OK,OK,+8,+180,+0.00912918,+563.474,+61722.3,+793.111,OK,OK
-2020-10-24 18:00:00 PDT,+7.7,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-24 19:00:00 PDT,+5.1,+230,+5,+270,+0.053829,+3322.45,+61722.3,-253.535,OK,OK,+8,+180,+0.0144788,+893.663,+61722.3,-430.345,OK,OK
-2020-10-24 20:00:00 PDT,+3.6,+240,+5,+270,+0.0373169,+2303.28,+61722.3,+36.8002,OK,OK,+8,+180,+0.00489305,+302.01,+61722.3,+1259.36,OK,OK
-2020-10-24 21:00:00 PDT,+2.6,+300,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-10-24 22:00:00 PDT,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-10-24 23:00:00 PDT,+0.1,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-25 00:00:00 PDT,+3.3,+40,+5,+270,+0.0256635,+1584.01,+61722.3,-7.26036,OK,OK,+8,+180,+0.0177627,+1096.35,+61722.3,-15.6696,OK,OK
-2020-10-25 01:00:00 PDT,+3.9,+110,+5,+270,+0.0291675,+1800.28,+61722.3,-4.20267,OK,OK,+8,+180,+0.0106069,+654.679,+61722.3,-304.55,OK,OK
-2020-10-25 02:00:00 PDT,+4.5,+110,+5,+270,+0.0302727,+1868.5,+61722.3,+47.4657,OK,OK,+8,+180,+0.00903219,+557.487,+61722.3,-15.3868,OK,OK
-2020-10-25 03:00:00 PDT,+6.1,+200,+5,+270,+0.0325636,+2009.9,+61722.3,+104.015,OK,OK,+8,+180,+0.00785986,+485.128,+61722.3,+196.982,OK,OK
-2020-10-25 04:00:00 PDT,+6.8,+250,+5,+270,+0.0295839,+1825.99,+61722.3,+363.265,OK,OK,+8,+180,+0.0149326,+921.675,+61722.3,+1061.3,OK,OK
-2020-10-25 05:00:00 PDT,+6.4,+260,+5,+270,+0.0564286,+3482.9,+61722.3,-278.692,OK,OK,+8,+180,+0.0173756,+1072.46,+61722.3,-558.881,OK,OK
-2020-10-25 06:00:00 PDT,+5.4,+350,+5,+270,+0.0555067,+3426,+61722.3,-243.301,OK,OK,+8,+180,+0.0165212,+1019.72,+61722.3,-507.609,OK,OK
-2020-10-25 07:00:00 PDT,+8.7,+280,+5,+270,+0.0334165,+2062.54,+61722.3,+1.96415,OK,OK,+8,+180,+0.00668773,+412.782,+61722.3,-428.324,OK,OK
-2020-10-25 08:00:00 PDT,+7.7,+60,+5,+270,+0.0889829,+5492.23,+61722.3,-422.423,OK,OK,+8,+180,+0.0511427,+3156.64,+61722.3,-633.971,OK,OK
-2020-10-25 09:00:00 PDT,+7.7,+30,+5,+270,+0.0643505,+3971.86,+61722.3,+1174.79,OK,OK,+8,+180,+0.0363023,+2240.66,+61722.3,+1863.99,OK,OK
-2020-10-25 10:00:00 PDT,+10.3,+40,+5,+270,+0.0643505,+3971.86,+61722.3,+1174.79,OK,OK,+8,+180,+0.0363023,+2240.66,+61722.3,+1863.99,OK,OK
-2020-10-25 11:00:00 PDT,+12.9,+30,+5,+270,+0.0903736,+5578.06,+61722.3,+1816.86,OK,OK,+8,+180,+0.0624892,+3856.98,+61722.3,+2441.12,OK,OK
-2020-10-25 12:00:00 PDT,+12.9,+30,+5,+270,+0.117895,+7276.75,+61722.3,+2321.37,OK,OK,+8,+180,+0.0899501,+5551.93,+61722.3,+2875.44,OK,OK
-2020-10-25 13:00:00 PDT,+12.9,+40,+5,+270,+0.117895,+7276.75,+61722.3,+2321.37,OK,OK,+8,+180,+0.0899501,+5551.93,+61722.3,+2875.44,OK,OK
-2020-10-25 14:00:00 PDT,+12.9,+40,+5,+270,+0.117895,+7276.75,+61722.3,+2321.37,OK,OK,+8,+180,+0.0899501,+5551.93,+61722.3,+2875.44,OK,OK
-2020-10-25 15:00:00 PDT,+12.9,+40,+5,+270,+0.117895,+7276.75,+61722.3,+2321.37,OK,OK,+8,+180,+0.0899501,+5551.93,+61722.3,+2875.44,OK,OK
-2020-10-25 16:00:00 PDT,+10.3,+30,+5,+270,+0.117895,+7276.75,+61722.3,+2321.37,OK,OK,+8,+180,+0.0899501,+5551.93,+61722.3,+2875.44,OK,OK
-2020-10-25 17:00:00 PDT,+12.9,+30,+5,+270,+0.0802991,+4956.24,+61722.3,+1650.81,OK,OK,+8,+180,+0.0515005,+3178.73,+61722.3,+2360.69,OK,OK
-2020-10-25 18:00:00 PDT,+15.4,+30,+5,+270,+0.117895,+7276.75,+61722.3,+2321.37,OK,OK,+8,+180,+0.0899501,+5551.93,+61722.3,+2875.44,OK,OK
-2020-10-25 19:00:00 PDT,+7.7,+50,+5,+270,+0.162732,+10044.2,+61722.3,+2934.03,OK,OK,+8,+180,+0.135157,+8342.17,+61722.3,+3386.65,OK,OK
-2020-10-25 20:00:00 PDT,+7,+50,+5,+270,+0.0615669,+3800.05,+61722.3,+1160.03,OK,OK,+8,+180,+0.0329439,+2033.37,+61722.3,+1921.97,OK,OK
-2020-10-25 21:00:00 PDT,+6.2,+50,+5,+270,+0.0538643,+3324.62,+61722.3,+954.117,OK,OK,+8,+180,+0.0247041,+1524.79,+61722.3,+1788.69,OK,OK
-2020-10-25 22:00:00 PDT,+7.7,+70,+5,+270,+0.046258,+2855.15,+61722.3,+718.094,OK,OK,+8,+180,+0.0164901,+1017.8,+61722.3,+1636.26,OK,OK
-2020-10-25 23:00:00 PDT,+7.7,+70,+5,+270,+0.0657046,+4055.43,+61722.3,+1131.38,OK,OK,+8,+180,+0.0381074,+2352.08,+61722.3,+1754.38,OK,OK
-2020-10-26 00:00:00 PDT,+8.5,+340,+5,+270,+0.0657046,+4055.43,+61722.3,+1131.38,OK,OK,+8,+180,+0.0381074,+2352.08,+61722.3,+1754.38,OK,OK
-2020-10-26 01:00:00 PDT,+9.5,+30,+5,+270,+0.0572091,+3531.07,+61722.3,+258.077,OK,OK,+8,+180,+0.0196667,+1213.87,+61722.3,+569.07,OK,OK
-2020-10-26 02:00:00 PDT,+5.7,+20,+5,+270,+0.070648,+4360.56,+61722.3,+1435.9,OK,OK,+8,+180,+0.0414496,+2558.36,+61722.3,+2208.98,OK,OK
-2020-10-26 03:00:00 PDT,+5,+360,+5,+270,+0.0353282,+2180.54,+61722.3,+266.129,OK,OK,+8,+180,+0.00549021,+338.868,+61722.3,+802.242,OK,OK
-2020-10-26 04:00:00 PDT,+6.5,+90,+5,+270,+0.0290151,+1790.88,+61722.3,-90.779,OK,OK,+8,+180,+0.0120049,+740.973,+61722.3,-495.341,OK,OK
-2020-10-26 05:00:00 PDT,+5.2,+350,+5,+270,+0.0502855,+3103.73,+61722.3,+633.618,OK,OK,+8,+180,+0.0223832,+1381.54,+61722.3,+1212.38,OK,OK
-2020-10-26 06:00:00 PDT,+3,+300,+5,+270,+0.0327859,+2023.62,+61722.3,-10.594,OK,OK,+8,+180,+0.00748953,+462.271,+61722.3,-422.468,OK,OK
-2020-10-26 07:00:00 PDT,+4.4,+10,+5,+270,+0.0316003,+1950.44,+61722.3,+18.3734,OK,OK,+8,+180,+0.00990411,+611.304,+61722.3,+132.074,OK,OK
-2020-10-26 08:00:00 PDT,+1.7,+270,+5,+270,+0.0293877,+1813.87,+61722.3,-38.2614,OK,OK,+8,+180,+0.0108201,+667.839,+61722.3,-417.735,OK,OK
-2020-10-26 09:00:00 PDT,+3.6,+30,+5,+270,+0.0275286,+1699.13,+61722.3,+66.8279,OK,OK,+8,+180,+0.0152363,+940.42,+61722.3,+193.929,OK,OK
-2020-10-26 10:00:00 PDT,+7.2,+120,+5,+270,+0.0294209,+1815.92,+61722.3,-1.85971,OK,OK,+8,+180,+0.0103427,+638.378,+61722.3,-323.207,OK,OK
-2020-10-26 11:00:00 PDT,+0,+0,+5,+270,+0.0463896,+2863.27,+61722.3,+253.669,OK,OK,+8,+180,+0.0197632,+1219.83,+61722.3,+499.188,OK,OK
-2020-10-26 12:00:00 PDT,+5.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-26 13:00:00 PDT,+5.1,+70,+5,+270,+0.0384259,+2371.74,+61722.3,+332.98,OK,OK,+8,+180,+0.0100257,+618.811,+61722.3,+920.889,OK,OK
-2020-10-26 14:00:00 PDT,+5.1,+50,+5,+270,+0.0384259,+2371.74,+61722.3,+332.98,OK,OK,+8,+180,+0.0100257,+618.811,+61722.3,+920.889,OK,OK
-2020-10-26 15:00:00 PDT,+3.6,+80,+5,+270,+0.0384259,+2371.74,+61722.3,+332.98,OK,OK,+8,+180,+0.0100257,+618.811,+61722.3,+920.889,OK,OK
-2020-10-26 16:00:00 PDT,+4.1,+110,+5,+270,+0.0308514,+1904.22,+61722.3,+84.979,OK,OK,+8,+180,+0.00845865,+522.087,+61722.3,-23.459,OK,OK
-2020-10-26 17:00:00 PDT,+2.1,+160,+5,+270,+0.0309674,+1911.38,+61722.3,+64.9306,OK,OK,+8,+180,+0.0084957,+524.374,+61722.3,+40.9733,OK,OK
-2020-10-26 18:00:00 PDT,+5.1,+210,+5,+270,+0.025507,+1574.35,+61722.3,+60.7016,OK,OK,+8,+180,+0.0175239,+1081.62,+61722.3,+135.205,OK,OK
-2020-10-26 19:00:00 PDT,+2.6,+200,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-10-26 20:00:00 PDT,+5.1,+240,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-10-26 21:00:00 PDT,+4.1,+250,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-26 22:00:00 PDT,+4.1,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-10-26 23:00:00 PDT,+2.6,+240,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-10-27 00:00:00 PDT,+2.4,+180,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-27 01:00:00 PDT,+2.1,+190,+5,+270,+0.025023,+1544.48,+61722.3,+144.575,OK,OK,+8,+180,+0.0191073,+1179.34,+61722.3,+271.091,OK,OK
-2020-10-27 02:00:00 PDT,+1.9,+160,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-10-27 03:00:00 PDT,+1.6,+100,+5,+270,+0.0255344,+1576.04,+61722.3,+55.5888,OK,OK,+8,+180,+0.0175678,+1084.33,+61722.3,+123.067,OK,OK
-2020-10-27 04:00:00 PDT,+1.4,+110,+5,+270,+0.0262296,+1618.95,+61722.3,-47.8197,OK,OK,+8,+180,+0.0158733,+979.735,+61722.3,-132.762,OK,OK
-2020-10-27 05:00:00 PDT,+1,+130,+5,+270,+0.0260165,+1605.79,+61722.3,-34.5333,OK,OK,+8,+180,+0.0164583,+1015.85,+61722.3,-87.9409,OK,OK
-2020-10-27 06:00:00 PDT,+0.8,+60,+5,+270,+0.0257555,+1589.69,+61722.3,-5.89289,OK,OK,+8,+180,+0.0173053,+1068.12,+61722.3,-13.4297,OK,OK
-2020-10-27 07:00:00 PDT,+0.5,+40,+5,+270,+0.0258221,+1593.8,+61722.3,-52.1346,OK,OK,+8,+180,+0.0172515,+1064.8,+61722.3,-119.474,OK,OK
-2020-10-27 08:00:00 PDT,+0.3,+10,+5,+270,+0.0257183,+1587.39,+61722.3,-35.4414,OK,OK,+8,+180,+0.0175962,+1086.08,+61722.3,-77.9581,OK,OK
-2020-10-27 09:00:00 PDT,+0,+0,+5,+270,+0.0256749,+1584.71,+61722.3,-17.849,OK,OK,+8,+180,+0.0177365,+1094.74,+61722.3,-38.6352,OK,OK
-2020-10-27 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-27 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-27 12:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-27 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-27 14:00:00 PDT,+2.6,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-27 15:00:00 PDT,+4.1,+240,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-10-27 16:00:00 PDT,+5.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-27 17:00:00 PDT,+5.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-27 18:00:00 PDT,+5.1,+213,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-27 19:00:00 PDT,+5.1,+230,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-27 20:00:00 PDT,+4.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-27 21:00:00 PDT,+5.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-27 22:00:00 PDT,+5.1,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-27 23:00:00 PDT,+2.6,+240,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-10-28 00:00:00 PDT,+2.2,+210,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-10-28 01:00:00 PDT,+1.8,+170,+5,+270,+0.0266976,+1647.83,+61722.3,+141.28,OK,OK,+8,+180,+0.0166233,+1026.02,+61722.3,+345.112,OK,OK
-2020-10-28 02:00:00 PDT,+1.4,+220,+5,+270,+0.0254125,+1568.52,+61722.3,+77.1377,OK,OK,+8,+180,+0.0180582,+1114.59,+61722.3,+161.338,OK,OK
-2020-10-28 03:00:00 PDT,+1,+200,+5,+270,+0.0262797,+1622.04,+61722.3,+95.0391,OK,OK,+8,+180,+0.0170134,+1050.11,+61722.3,+222.59,OK,OK
-2020-10-28 04:00:00 PDT,+0.5,+180,+5,+270,+0.0257664,+1590.36,+61722.3,+65.916,OK,OK,+8,+180,+0.0176877,+1091.72,+61722.3,+143.345,OK,OK
-2020-10-28 05:00:00 PDT,+0.1,+160,+5,+270,+0.0256324,+1582.09,+61722.3,+25.9773,OK,OK,+8,+180,+0.0178276,+1100.36,+61722.3,+55.6632,OK,OK
-2020-10-28 06:00:00 PDT,+0,+0,+5,+270,+0.0256609,+1583.85,+61722.3,+3.08269,OK,OK,+8,+180,+0.0177691,+1096.75,+61722.3,+6.64844,OK,OK
-2020-10-28 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-28 08:00:00 PDT,+1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-28 09:00:00 PDT,+0,+0,+5,+270,+0.0258325,+1594.44,+61722.3,-27.6756,OK,OK,+8,+180,+0.0170973,+1055.28,+61722.3,-64.6975,OK,OK
-2020-10-28 10:00:00 PDT,+2.6,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-28 11:00:00 PDT,+2.6,+340,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-10-28 12:00:00 PDT,+2.6,+330,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-10-28 13:00:00 PDT,+2.6,+320,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-10-28 14:00:00 PDT,+3.9,+310,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-10-28 15:00:00 PDT,+5.1,+300,+5,+270,+0.0353409,+2181.32,+61722.3,+0.518028,OK,OK,+8,+180,+0.00533405,+329.23,+61722.3,+63.6603,OK,OK
-2020-10-28 16:00:00 PDT,+2.6,+290,+5,+270,+0.0445738,+2751.19,+61722.3,-40.7826,OK,OK,+8,+180,+0.00530076,+327.175,+61722.3,-103.356,OK,OK
-2020-10-28 17:00:00 PDT,+5.1,+270,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-28 18:00:00 PDT,+5.1,+240,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-10-28 19:00:00 PDT,+5.1,+230,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-10-28 20:00:00 PDT,+3.6,+250,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-10-28 21:00:00 PDT,+3.6,+260,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-10-28 22:00:00 PDT,+1.5,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-10-28 23:00:00 PDT,+1.5,+60,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-10-29 00:00:00 PDT,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-10-29 01:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 02:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 03:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 04:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 05:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 06:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 07:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 08:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 09:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 12:00:00 PDT,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 13:00:00 PDT,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-10-29 14:00:00 PDT,+2.6,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-29 15:00:00 PDT,+5.1,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-10-29 16:00:00 PDT,+5.1,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-29 17:00:00 PDT,+4.1,+240,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-29 18:00:00 PDT,+5.1,+250,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-29 19:00:00 PDT,+5.1,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-29 20:00:00 PDT,+4.6,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-10-29 21:00:00 PDT,+2.6,+280,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-10-29 22:00:00 PDT,+2.6,+270,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-10-29 23:00:00 PDT,+2.6,+250,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-10-30 00:00:00 PDT,+4.9,+230,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-10-30 01:00:00 PDT,+2.1,+190,+5,+270,+0.036364,+2244.47,+61722.3,+52.8169,OK,OK,+8,+180,+0.00572494,+353.356,+61722.3,+1137.92,OK,OK
-2020-10-30 02:00:00 PDT,+1.8,+170,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-10-30 03:00:00 PDT,+3.1,+150,+5,+270,+0.0254125,+1568.52,+61722.3,+77.1377,OK,OK,+8,+180,+0.0180582,+1114.59,+61722.3,+161.338,OK,OK
-2020-10-30 04:00:00 PDT,+1.3,+130,+5,+270,+0.0258361,+1594.67,+61722.3,+38.6937,OK,OK,+8,+180,+0.0159067,+981.798,+61722.3,+109.807,OK,OK
-2020-10-30 05:00:00 PDT,+3.1,+110,+5,+270,+0.0258268,+1594.09,+61722.3,-7.24411,OK,OK,+8,+180,+0.0169872,+1048.49,+61722.3,-17.1913,OK,OK
-2020-10-30 06:00:00 PDT,+0.8,+80,+5,+270,+0.0281181,+1735.51,+61722.3,-6.45008,OK,OK,+8,+180,+0.0117186,+723.298,+61722.3,-121.029,OK,OK
-2020-10-30 07:00:00 PDT,+0.5,+50,+5,+270,+0.0258146,+1593.34,+61722.3,-44.0624,OK,OK,+8,+180,+0.0172391,+1064.04,+61722.3,-101.151,OK,OK
-2020-10-30 08:00:00 PDT,+0.3,+30,+5,+270,+0.0257214,+1587.58,+61722.3,-35.3396,OK,OK,+8,+180,+0.0175787,+1084.99,+61722.3,-77.8951,OK,OK
-2020-10-30 09:00:00 PDT,+0,+0,+5,+270,+0.0256799,+1585.02,+61722.3,-20.9793,OK,OK,+8,+180,+0.0177154,+1093.44,+61722.3,-45.5209,OK,OK
-2020-10-30 10:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-30 11:00:00 PDT,+2.6,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-30 12:00:00 PDT,+0,+0,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-10-30 13:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-30 14:00:00 PDT,+2.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-30 15:00:00 PDT,+2.1,+310,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-10-30 16:00:00 PDT,+2.6,+290,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-10-30 17:00:00 PDT,+2.6,+260,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-30 18:00:00 PDT,+4.6,+240,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-30 19:00:00 PDT,+4.1,+240,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-10-30 20:00:00 PDT,+3.6,+260,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-30 21:00:00 PDT,+2.6,+290,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-10-30 22:00:00 PDT,+2.6,+310,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-30 23:00:00 PDT,+2.6,+200,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-31 00:00:00 PDT,+0.2,+250,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-10-31 01:00:00 PDT,+2.5,+220,+5,+270,+0.0256832,+1585.23,+61722.3,+13.1853,OK,OK,+8,+180,+0.0177398,+1094.94,+61722.3,+28.5265,OK,OK
-2020-10-31 02:00:00 PDT,+0.6,+150,+5,+270,+0.0276624,+1707.39,+61722.3,+145.218,OK,OK,+8,+180,+0.0153658,+948.414,+61722.3,+411.62,OK,OK
-2020-10-31 03:00:00 PDT,+2.3,+160,+5,+270,+0.0256637,+1584.02,+61722.3,+11.186,OK,OK,+8,+180,+0.0176975,+1092.33,+61722.3,+24.3278,OK,OK
-2020-10-31 04:00:00 PDT,+1.1,+110,+5,+270,+0.0254771,+1572.51,+61722.3,+65.59,OK,OK,+8,+180,+0.017476,+1078.66,+61722.3,+147.09,OK,OK
-2020-10-31 05:00:00 PDT,+2.8,+130,+5,+270,+0.0258711,+1596.82,+61722.3,-29.717,OK,OK,+8,+180,+0.0169569,+1046.62,+61722.3,-70.73,OK,OK
-2020-10-31 06:00:00 PDT,+1.5,+60,+5,+270,+0.0266806,+1646.79,+61722.3,-7.75393,OK,OK,+8,+180,+0.0142567,+879.958,+61722.3,-30.528,OK,OK
-2020-10-31 07:00:00 PDT,+1.7,+60,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-10-31 08:00:00 PDT,+1.9,+40,+5,+270,+0.0264757,+1634.14,+61722.3,-79.7212,OK,OK,+8,+180,+0.0154541,+953.864,+61722.3,-235.45,OK,OK
-2020-10-31 09:00:00 PDT,+2.1,+20,+5,+270,+0.0266,+1641.81,+61722.3,-89.9309,OK,OK,+8,+180,+0.0152935,+943.947,+61722.3,-271.615,OK,OK
-2020-10-31 10:00:00 PDT,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-10-31 11:00:00 PDT,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-31 12:00:00 PDT,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-10-31 13:00:00 PDT,+2.1,+280,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-10-31 14:00:00 PDT,+3.1,+240,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-10-31 15:00:00 PDT,+3.1,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-31 16:00:00 PDT,+3.6,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-10-31 17:00:00 PDT,+4.1,+240,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-10-31 18:00:00 PDT,+4.1,+220,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-31 19:00:00 PDT,+3.6,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-10-31 20:00:00 PDT,+1.5,+300,+5,+270,+0.0324416,+2002.37,+61722.3,+89.7527,OK,OK,+8,+180,+0.00951891,+587.529,+61722.3,+647.759,OK,OK
-2020-10-31 21:00:00 PDT,+2.1,+330,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-10-31 22:00:00 PDT,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-10-31 23:00:00 PDT,+0.2,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 00:00:00 PDT,+0.4,+0,+5,+270,+0.0256659,+1584.16,+61722.3,-10.3053,OK,OK,+8,+180,+0.0177604,+1096.21,+61722.3,-22.2468,OK,OK
-2020-11-01 01:00:00 PDT,+0.6,+0,+5,+270,+0.0256798,+1585.02,+61722.3,-20.5399,OK,OK,+8,+180,+0.0177325,+1094.49,+61722.3,-44.4781,OK,OK
-2020-11-01 02:00:00 PDT,+0.9,+80,+5,+270,+0.025703,+1586.45,+61722.3,-30.6331,OK,OK,+8,+180,+0.0176861,+1091.63,+61722.3,-66.6785,OK,OK
-2020-11-01 02:00:00 PST,+1.1,+10,+5,+270,+0.0258574,+1595.98,+61722.3,-48.4555,OK,OK,+8,+180,+0.0170987,+1055.37,+61722.3,-113.186,OK,OK
-2020-11-01 03:00:00 PST,+1.3,+0,+5,+270,+0.0258474,+1595.36,+61722.3,-61.863,OK,OK,+8,+180,+0.0173248,+1069.32,+61722.3,-140.391,OK,OK
-2020-11-01 04:00:00 PST,+1.5,+350,+5,+270,+0.0258592,+1596.09,+61722.3,-63.8396,OK,OK,+8,+180,+0.0173776,+1072.59,+61722.3,-143.901,OK,OK
-2020-11-01 05:00:00 PST,+1.5,+90,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-01 06:00:00 PST,+1.5,+70,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-01 07:00:00 PST,+1.5,+30,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-01 08:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-01 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 14:00:00 PST,+4.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 15:00:00 PST,+4.6,+240,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-11-01 16:00:00 PST,+3.6,+250,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-11-01 17:00:00 PST,+3.6,+290,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-11-01 18:00:00 PST,+2.6,+320,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-11-01 19:00:00 PST,+3.1,+320,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-11-01 20:00:00 PST,+0,+0,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-11-01 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 22:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-01 23:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-11-02 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 11:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 12:00:00 PST,+3.6,+280,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-02 13:00:00 PST,+5.7,+240,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-11-02 14:00:00 PST,+5.7,+270,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-11-02 15:00:00 PST,+3.6,+250,+5,+270,+0.0438089,+2703.99,+61722.3,-90.7299,OK,OK,+8,+180,+0.00460206,+284.049,+61722.3,+278.052,OK,OK
-2020-11-02 16:00:00 PST,+4.1,+250,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-11-02 17:00:00 PST,+4.6,+240,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-11-02 18:00:00 PST,+2.1,+280,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-11-02 19:00:00 PST,+3.6,+320,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-02 20:00:00 PST,+1.5,+40,+5,+270,+0.0328404,+2026.99,+61722.3,-4.20051,OK,OK,+8,+180,+0.00816843,+504.174,+61722.3,-53.016,OK,OK
-2020-11-02 21:00:00 PST,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-11-02 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-02 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 05:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 06:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-11-03 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 13:00:00 PST,+3.6,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 14:00:00 PST,+4.6,+290,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-11-03 15:00:00 PST,+3.6,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-11-03 16:00:00 PST,+3.1,+240,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-11-03 17:00:00 PST,+2.6,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-11-03 18:00:00 PST,+1.5,+310,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-11-03 19:00:00 PST,+0.8,+340,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-11-03 20:00:00 PST,+0,+0,+5,+270,+0.0258691,+1596.7,+61722.3,-23.7744,OK,OK,+8,+180,+0.017438,+1076.31,+61722.3,-53.1876,OK,OK
-2020-11-03 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-03 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 10:00:00 PST,+2.1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 11:00:00 PST,+0,+0,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-11-04 12:00:00 PST,+2.6,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 13:00:00 PST,+5.1,+310,+5,+270,+0.0279791,+1726.93,+61722.3,-51.5395,OK,OK,+8,+180,+0.014267,+880.59,+61722.3,-172.717,OK,OK
-2020-11-04 14:00:00 PST,+5.7,+290,+5,+270,+0.0431366,+2662.49,+61722.3,-12.7482,OK,OK,+8,+180,+0.00383129,+236.476,+61722.3,-32.1041,OK,OK
-2020-11-04 15:00:00 PST,+5.7,+290,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-11-04 16:00:00 PST,+4.6,+260,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-11-04 17:00:00 PST,+3.6,+260,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-11-04 18:00:00 PST,+4.1,+250,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-11-04 19:00:00 PST,+3.1,+290,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-11-04 20:00:00 PST,+2.1,+320,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-11-04 21:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-11-04 22:00:00 PST,+2.6,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-04 23:00:00 PST,+2.1,+260,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-11-05 00:00:00 PST,+0,+0,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-11-05 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-05 02:00:00 PST,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-05 03:00:00 PST,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-11-05 04:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-05 05:00:00 PST,+1.5,+120,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-11-05 06:00:00 PST,+2.1,+150,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-11-05 07:00:00 PST,+2.1,+120,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-11-05 08:00:00 PST,+1.8,+40,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-11-05 09:00:00 PST,+1.5,+310,+5,+270,+0.0264927,+1635.19,+61722.3,-89.7621,OK,OK,+8,+180,+0.0155441,+959.419,+61722.3,-260.275,OK,OK
-2020-11-05 10:00:00 PST,+2.5,+290,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-11-05 11:00:00 PST,+3.6,+260,+5,+270,+0.0298697,+1843.62,+61722.3,+38.2505,OK,OK,+8,+180,+0.0121302,+748.704,+61722.3,+175.449,OK,OK
-2020-11-05 12:00:00 PST,+4.6,+240,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-11-05 13:00:00 PST,+4.1,+300,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-11-05 14:00:00 PST,+4.1,+270,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-11-05 15:00:00 PST,+4.1,+260,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-11-05 16:00:00 PST,+3.6,+280,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-11-05 17:00:00 PST,+3.1,+240,+5,+270,+0.0349546,+2157.48,+61722.3,+15.4629,OK,OK,+8,+180,+0.00615913,+380.155,+61722.3,+403.791,OK,OK
-2020-11-05 18:00:00 PST,+1.5,+260,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-11-05 19:00:00 PST,+1.5,+320,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-11-05 20:00:00 PST,+1.8,+310,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-11-05 21:00:00 PST,+2.1,+290,+5,+270,+0.0275264,+1698.99,+61722.3,+8.46202,OK,OK,+8,+180,+0.0151094,+932.587,+61722.3,+25.0532,OK,OK
-2020-11-05 22:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-11-05 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 00:00:00 PST,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 01:00:00 PST,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-11-06 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 03:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 04:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-06 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 11:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 12:00:00 PST,+3.1,+290,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-06 13:00:00 PST,+4.6,+250,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-11-06 14:00:00 PST,+6.7,+270,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-11-06 15:00:00 PST,+4.6,+270,+5,+270,+0.0607345,+3748.67,+61722.3,-267.934,OK,OK,+8,+180,+0.0220622,+1361.73,+61722.3,-525.743,OK,OK
-2020-11-06 16:00:00 PST,+4.1,+270,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-11-06 17:00:00 PST,+4.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-11-06 18:00:00 PST,+3.1,+290,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-11-06 19:00:00 PST,+1.5,+320,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-11-06 20:00:00 PST,+1.5,+290,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-06 21:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-06 22:00:00 PST,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-06 23:00:00 PST,+2.1,+290,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-11-07 00:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-11-07 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 10:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 11:00:00 PST,+2.1,+130,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-11-07 12:00:00 PST,+2.6,+190,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-11-07 13:00:00 PST,+0,+0,+5,+270,+0.0256327,+1582.11,+61722.3,+168.955,OK,OK,+8,+180,+0.0182878,+1128.76,+61722.3,+344.148,OK,OK
-2020-11-07 14:00:00 PST,+3.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-07 15:00:00 PST,+4.4,+280,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-11-07 16:00:00 PST,+5.1,+250,+5,+270,+0.040045,+2471.67,+61722.3,-33.6197,OK,OK,+8,+180,+0.00175937,+108.592,+61722.3,+600.537,OK,OK
-2020-11-07 17:00:00 PST,+2.6,+250,+5,+270,+0.0421622,+2602.35,+61722.3,-67.5676,OK,OK,+8,+180,+0.00316258,+195.202,+61722.3,+492.174,OK,OK
-2020-11-07 18:00:00 PST,+4.1,+260,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-11-07 19:00:00 PST,+3.1,+300,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-11-07 20:00:00 PST,+3.6,+270,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-11-07 21:00:00 PST,+2.1,+270,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-11-07 22:00:00 PST,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-11-07 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 01:00:00 PST,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 02:00:00 PST,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-11-08 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 10:00:00 PST,+2.1,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 11:00:00 PST,+1.8,+200,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-11-08 12:00:00 PST,+1.5,+270,+5,+270,+0.0260019,+1604.9,+61722.3,+117.845,OK,OK,+8,+180,+0.0175051,+1080.45,+61722.3,+261.111,OK,OK
-2020-11-08 13:00:00 PST,+1.5,+300,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-11-08 14:00:00 PST,+2.1,+270,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-11-08 15:00:00 PST,+3.6,+220,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-11-08 16:00:00 PST,+3.1,+260,+5,+270,+0.0298938,+1845.11,+61722.3,+160.135,OK,OK,+8,+180,+0.0128178,+791.145,+61722.3,+633.657,OK,OK
-2020-11-08 17:00:00 PST,+2.6,+240,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-11-08 18:00:00 PST,+1.5,+280,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-11-08 19:00:00 PST,+1.5,+260,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-11-08 20:00:00 PST,+3.1,+270,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-11-08 21:00:00 PST,+0,+0,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-11-08 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-08 23:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 00:00:00 PST,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-11-09 01:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 02:00:00 PST,+1.5,+330,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-09 03:00:00 PST,+1.5,+100,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-09 04:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-09 05:00:00 PST,+1.5,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 06:00:00 PST,+0,+0,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-11-09 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 10:00:00 PST,+1.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 11:00:00 PST,+2.1,+20,+5,+270,+0.0258474,+1595.36,+61722.3,-61.863,OK,OK,+8,+180,+0.0173248,+1069.32,+61722.3,-140.391,OK,OK
-2020-11-09 12:00:00 PST,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-11-09 13:00:00 PST,+0.8,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 14:00:00 PST,+1.5,+220,+5,+270,+0.0260661,+1608.86,+61722.3,+23.2318,OK,OK,+8,+180,+0.0171912,+1061.08,+61722.3,+53.4076,OK,OK
-2020-11-09 15:00:00 PST,+0,+0,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-11-09 16:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 17:00:00 PST,+3.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 18:00:00 PST,+3.6,+290,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-11-09 19:00:00 PST,+4.1,+260,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-11-09 20:00:00 PST,+0,+0,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-11-09 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-09 23:00:00 PST,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 00:00:00 PST,+0,+0,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-11-10 01:00:00 PST,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 02:00:00 PST,+2.6,+270,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-11-10 03:00:00 PST,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-11-10 04:00:00 PST,+1.5,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 05:00:00 PST,+0,+0,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-11-10 06:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 07:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-10 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 13:00:00 PST,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 14:00:00 PST,+3.1,+300,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-11-10 15:00:00 PST,+4.1,+280,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-11-10 16:00:00 PST,+4.6,+260,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-11-10 17:00:00 PST,+2.6,+250,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-11-10 18:00:00 PST,+2.1,+280,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-11-10 19:00:00 PST,+1.1,+320,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-10 20:00:00 PST,+0,+0,+5,+270,+0.0262637,+1621.05,+61722.3,-6.3455,OK,OK,+8,+180,+0.0168721,+1041.39,+61722.3,-15.1345,OK,OK
-2020-11-10 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-10 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 00:00:00 PST,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 01:00:00 PST,+0,+0,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-11-11 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 04:00:00 PST,+2.1,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 05:00:00 PST,+1.5,+270,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-11-11 06:00:00 PST,+0,+0,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-11-11 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 13:00:00 PST,+1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 14:00:00 PST,+2.1,+310,+5,+270,+0.0260788,+1609.64,+61722.3,-17.6052,OK,OK,+8,+180,+0.01713,+1057.3,+61722.3,-40.7742,OK,OK
-2020-11-11 15:00:00 PST,+3.1,+280,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-11-11 16:00:00 PST,+5.1,+240,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-11-11 17:00:00 PST,+2.6,+300,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-11-11 18:00:00 PST,+0,+0,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-11-11 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 20:00:00 PST,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 21:00:00 PST,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-11-11 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-11 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 06:00:00 PST,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 07:00:00 PST,+0,+0,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-11-12 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 11:00:00 PST,+1.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 12:00:00 PST,+2.1,+260,+5,+270,+0.0263413,+1625.85,+61722.3,+6.28709,OK,OK,+8,+180,+0.0167759,+1035.45,+61722.3,+15.1597,OK,OK
-2020-11-12 13:00:00 PST,+5.7,+300,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-11-12 14:00:00 PST,+5.7,+280,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-11-12 15:00:00 PST,+4.6,+270,+5,+270,+0.0498213,+3075.08,+61722.3,-64.7499,OK,OK,+8,+180,+0.0109037,+673.001,+61722.3,-164.383,OK,OK
-2020-11-12 16:00:00 PST,+3.6,+260,+5,+270,+0.0411183,+2537.91,+61722.3,-49.794,OK,OK,+8,+180,+0.00221805,+136.903,+61722.3,+474.816,OK,OK
-2020-11-12 17:00:00 PST,+2.6,+270,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-11-12 18:00:00 PST,+1.5,+320,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-11-12 19:00:00 PST,+1.5,+90,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-12 20:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-12 21:00:00 PST,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-12 22:00:00 PST,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-11-12 23:00:00 PST,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 00:00:00 PST,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-11-13 01:00:00 PST,+2.6,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 02:00:00 PST,+0,+0,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-11-13 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 07:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 08:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-11-13 09:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 10:00:00 PST,+1.5,+330,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-13 11:00:00 PST,+1.8,+330,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-13 12:00:00 PST,+2.1,+320,+5,+270,+0.0270462,+1669.35,+61722.3,-26.7688,OK,OK,+8,+180,+0.0156972,+968.865,+61722.3,-73.645,OK,OK
-2020-11-13 13:00:00 PST,+2.1,+320,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-11-13 14:00:00 PST,+4.6,+310,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-11-13 15:00:00 PST,+6.2,+270,+5,+270,+0.0395759,+2442.72,+61722.3,-6.6597,OK,OK,+8,+180,+0.00114959,+70.9552,+61722.3,+103.29,OK,OK
-2020-11-13 16:00:00 PST,+4.1,+270,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-11-13 17:00:00 PST,+4.6,+300,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-11-13 18:00:00 PST,+2.1,+300,+5,+270,+0.0407307,+2513.99,+61722.3,-22.5452,OK,OK,+8,+180,+0.00159568,+98.4891,+61722.3,+137.011,OK,OK
-2020-11-13 19:00:00 PST,+0,+0,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-11-13 20:00:00 PST,+3.6,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-13 21:00:00 PST,+2.6,+310,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-11-13 22:00:00 PST,+0,+0,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-11-13 23:00:00 PST,+1.5,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 00:00:00 PST,+2.1,+360,+5,+270,+0.0259866,+1603.95,+61722.3,-22.6594,OK,OK,+8,+180,+0.0164789,+1017.12,+61722.3,-57.5907,OK,OK
-2020-11-14 01:00:00 PST,+2.1,+10,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-11-14 02:00:00 PST,+2.1,+110,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-11-14 03:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-11-14 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 11:00:00 PST,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 12:00:00 PST,+1.5,+320,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-11-14 13:00:00 PST,+2.6,+250,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-14 14:00:00 PST,+6.2,+290,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-11-14 15:00:00 PST,+8.2,+280,+5,+270,+0.0559185,+3451.42,+61722.3,-140.15,OK,OK,+8,+180,+0.0172484,+1064.61,+61722.3,-305.297,OK,OK
-2020-11-14 16:00:00 PST,+7.7,+260,+5,+270,+0.0814402,+5026.67,+61722.3,-374.385,OK,OK,+8,+180,+0.0434678,+2682.93,+61722.3,-590.783,OK,OK
-2020-11-14 17:00:00 PST,+3.6,+260,+5,+270,+0.0701656,+4330.78,+61722.3,-410.504,OK,OK,+8,+180,+0.0316691,+1954.69,+61722.3,-710.349,OK,OK
-2020-11-14 18:00:00 PST,+1.8,+310,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-11-14 19:00:00 PST,+0,+0,+5,+270,+0.0275264,+1698.99,+61722.3,+8.46202,OK,OK,+8,+180,+0.0151094,+932.587,+61722.3,+25.0532,OK,OK
-2020-11-14 20:00:00 PST,+2.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-14 21:00:00 PST,+3.1,+320,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-11-14 22:00:00 PST,+2.1,+290,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-11-14 23:00:00 PST,+1.5,+10,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-11-15 00:00:00 PST,+2.1,+270,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-11-15 01:00:00 PST,+1.5,+280,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-11-15 02:00:00 PST,+1.5,+120,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-11-15 03:00:00 PST,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-11-15 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-15 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-15 06:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-15 07:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-15 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-15 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-15 10:00:00 PST,+0.8,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-15 11:00:00 PST,+1.5,+290,+5,+270,+0.0259274,+1600.3,+61722.3,-14.4486,OK,OK,+8,+180,+0.0173602,+1071.51,+61722.3,-32.6031,OK,OK
-2020-11-15 12:00:00 PST,+3.1,+340,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-15 13:00:00 PST,+3.1,+330,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-11-15 14:00:00 PST,+4.1,+270,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-11-15 15:00:00 PST,+5.1,+260,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-11-15 16:00:00 PST,+5.7,+260,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-11-15 17:00:00 PST,+4.6,+280,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-11-15 18:00:00 PST,+3.1,+270,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-11-15 19:00:00 PST,+1.5,+280,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-11-15 20:00:00 PST,+2.6,+230,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-11-15 21:00:00 PST,+1.5,+10,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-11-15 22:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-11-15 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 11:00:00 PST,+2.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-16 12:00:00 PST,+3.1,+300,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-11-16 13:00:00 PST,+6.2,+270,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-11-16 14:00:00 PST,+6.7,+250,+5,+270,+0.0552964,+3413.02,+61722.3,-211.868,OK,OK,+8,+180,+0.0163979,+1012.12,+61722.3,-453.118,OK,OK
-2020-11-16 15:00:00 PST,+6.7,+270,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-11-16 16:00:00 PST,+6.2,+260,+5,+270,+0.0554591,+3423.06,+61722.3,-265.252,OK,OK,+8,+180,+0.0163707,+1010.44,+61722.3,-537.127,OK,OK
-2020-11-16 17:00:00 PST,+5.7,+260,+5,+270,+0.0535199,+3303.37,+61722.3,-218.478,OK,OK,+8,+180,+0.0144502,+891.901,+61722.3,-467.18,OK,OK
-2020-11-16 18:00:00 PST,+5.1,+240,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-11-16 19:00:00 PST,+4.1,+260,+5,+270,+0.0399404,+2465.21,+61722.3,-25.2312,OK,OK,+8,+180,+0.00287258,+177.302,+61722.3,+1275.27,OK,OK
-2020-11-16 20:00:00 PST,+4.6,+230,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-11-16 21:00:00 PST,+4.1,+250,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-11-16 22:00:00 PST,+3.6,+260,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-11-16 23:00:00 PST,+2.6,+260,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-11-17 00:00:00 PST,+0,+0,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-11-17 01:00:00 PST,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-17 02:00:00 PST,+2.1,+240,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-11-17 03:00:00 PST,+2.6,+250,+5,+270,+0.0278627,+1719.75,+61722.3,+110.656,OK,OK,+8,+180,+0.0149369,+921.939,+61722.3,+332.403,OK,OK
-2020-11-17 04:00:00 PST,+2.6,+220,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-11-17 05:00:00 PST,+2.1,+250,+5,+270,+0.0295769,+1825.55,+61722.3,+97.6225,OK,OK,+8,+180,+0.0127516,+787.057,+61722.3,+398.519,OK,OK
-2020-11-17 06:00:00 PST,+2.6,+270,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-11-17 07:00:00 PST,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-11-17 08:00:00 PST,+1.5,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-17 09:00:00 PST,+4.1,+240,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-11-17 10:00:00 PST,+4.1,+240,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-11-17 11:00:00 PST,+4.1,+250,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-11-17 12:00:00 PST,+4.6,+230,+5,+270,+0.0346026,+2135.75,+61722.3,+60.6542,OK,OK,+8,+180,+0.00715883,+441.859,+61722.3,+812.907,OK,OK
-2020-11-17 13:00:00 PST,+5.1,+260,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-11-17 14:00:00 PST,+4.6,+230,+5,+270,+0.043881,+2708.44,+61722.3,-90.6816,OK,OK,+8,+180,+0.00453128,+279.681,+61722.3,+4.22773,OK,OK
-2020-11-17 15:00:00 PST,+7.2,+240,+5,+270,+0.0350178,+2161.38,+61722.3,+74.4569,OK,OK,+8,+180,+0.00701985,+433.281,+61722.3,+984.41,OK,OK
-2020-11-17 16:00:00 PST,+7.2,+230,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-11-17 17:00:00 PST,+5.1,+270,+5,+270,+0.0556938,+3437.55,+61722.3,-283.066,OK,OK,+8,+180,+0.0165029,+1018.59,+61722.3,-545.387,OK,OK
-2020-11-17 18:00:00 PST,+4.6,+280,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-11-17 19:00:00 PST,+3.6,+290,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-11-17 20:00:00 PST,+3.1,+310,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-11-17 21:00:00 PST,+2.1,+270,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-11-17 22:00:00 PST,+0,+0,+5,+270,+0.0285544,+1762.44,+61722.3,+70.2419,OK,OK,+8,+180,+0.0139066,+858.346,+61722.3,+243.505,OK,OK
-2020-11-17 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 00:00:00 PST,+2.6,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 01:00:00 PST,+0,+0,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-11-18 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 06:00:00 PST,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 07:00:00 PST,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-11-18 08:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 09:00:00 PST,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-11-18 10:00:00 PST,+0.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 11:00:00 PST,+1,+10,+5,+270,+0.0256903,+1585.66,+61722.3,-25.6086,OK,OK,+8,+180,+0.0177116,+1093.2,+61722.3,-55.5832,OK,OK
-2020-11-18 12:00:00 PST,+1.5,+10,+5,+270,+0.0258146,+1593.34,+61722.3,-56.8475,OK,OK,+8,+180,+0.0174019,+1074.09,+61722.3,-127.849,OK,OK
-2020-11-18 13:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-11-18 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 15:00:00 PST,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 16:00:00 PST,+6.2,+240,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-11-18 17:00:00 PST,+4.6,+260,+5,+270,+0.0474188,+2926.79,+61722.3,-151.172,OK,OK,+8,+180,+0.00803135,+495.713,+61722.3,-176.723,OK,OK
-2020-11-18 18:00:00 PST,+3.6,+270,+5,+270,+0.0402206,+2482.5,+61722.3,-39.892,OK,OK,+8,+180,+0.0022001,+135.795,+61722.3,+899.205,OK,OK
-2020-11-18 19:00:00 PST,+2.1,+290,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-11-18 20:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-11-18 21:00:00 PST,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-18 22:00:00 PST,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-11-18 23:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 00:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-19 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 02:00:00 PST,+2.1,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 03:00:00 PST,+0,+0,+5,+270,+0.0269589,+1663.97,+61722.3,-59.5034,OK,OK,+8,+180,+0.0141955,+876.177,+61722.3,-226.274,OK,OK
-2020-11-19 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 07:00:00 PST,+1.5,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 08:00:00 PST,+0,+0,+5,+270,+0.0256817,+1585.14,+61722.3,+26.0839,OK,OK,+8,+180,+0.0173213,+1069.11,+61722.3,+59.4132,OK,OK
-2020-11-19 09:00:00 PST,+2.6,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 10:00:00 PST,+0,+0,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-11-19 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 14:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 15:00:00 PST,+3.6,+300,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-19 16:00:00 PST,+2.6,+300,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-11-19 17:00:00 PST,+4.1,+260,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-11-19 18:00:00 PST,+3.6,+260,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-11-19 19:00:00 PST,+2.6,+270,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-11-19 20:00:00 PST,+0,+0,+5,+270,+0.0301905,+1863.43,+61722.3,+65.3353,OK,OK,+8,+180,+0.0118562,+731.794,+61722.3,+311.051,OK,OK
-2020-11-19 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-19 23:00:00 PST,+1.5,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 00:00:00 PST,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-11-20 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 03:00:00 PST,+1.5,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 04:00:00 PST,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-11-20 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 07:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 08:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-11-20 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 11:00:00 PST,+2.1,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 12:00:00 PST,+3.6,+290,+5,+270,+0.028172,+1738.84,+61722.3,+97.9698,OK,OK,+8,+180,+0.0144906,+894.391,+61722.3,+312.432,OK,OK
-2020-11-20 13:00:00 PST,+2.6,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-11-20 14:00:00 PST,+4.6,+290,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-11-20 15:00:00 PST,+3.6,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-11-20 16:00:00 PST,+3.6,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-11-20 17:00:00 PST,+2.6,+260,+5,+270,+0.03474,+2144.23,+61722.3,+24.9092,OK,OK,+8,+180,+0.00652171,+402.535,+61722.3,+500.273,OK,OK
-2020-11-20 18:00:00 PST,+2.1,+280,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-11-20 19:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-20 20:00:00 PST,+2.6,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-20 21:00:00 PST,+2.1,+280,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-11-20 22:00:00 PST,+2.1,+280,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-20 23:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-21 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 05:00:00 PST,+2.1,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 06:00:00 PST,+0,+0,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-11-21 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 08:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 09:00:00 PST,+1.5,+150,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-11-21 10:00:00 PST,+1.5,+130,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-11-21 11:00:00 PST,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-11-21 12:00:00 PST,+3.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-21 13:00:00 PST,+5.1,+290,+5,+270,+0.0323224,+1995.01,+61722.3,+26.6021,OK,OK,+8,+180,+0.00911476,+562.583,+61722.3,+229.158,OK,OK
-2020-11-21 14:00:00 PST,+4.6,+290,+5,+270,+0.0453796,+2800.93,+61722.3,-67.3704,OK,OK,+8,+180,+0.00610016,+376.515,+61722.3,-161.06,OK,OK
-2020-11-21 15:00:00 PST,+6.2,+230,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-11-21 16:00:00 PST,+8.7,+270,+5,+270,+0.0433631,+2676.47,+61722.3,-70.5304,OK,OK,+8,+180,+0.00445714,+275.105,+61722.3,+632.552,OK,OK
-2020-11-21 17:00:00 PST,+4.1,+260,+5,+270,+0.0872176,+5383.27,+61722.3,-499.099,OK,OK,+8,+180,+0.0492077,+3037.21,+61722.3,-755.889,OK,OK
-2020-11-21 18:00:00 PST,+4.6,+210,+5,+270,+0.0370067,+2284.14,+61722.3,+4.22764,OK,OK,+8,+180,+0.00428401,+264.418,+61722.3,+777.546,OK,OK
-2020-11-21 19:00:00 PST,+4.1,+140,+5,+270,+0.0302947,+1869.86,+61722.3,+212.294,OK,OK,+8,+180,+0.0128523,+793.275,+61722.3,+821.441,OK,OK
-2020-11-21 20:00:00 PST,+3.6,+220,+5,+270,+0.0272985,+1684.93,+61722.3,+2.63044,OK,OK,+8,+180,+0.0125681,+775.729,+61722.3,+32.5363,OK,OK
-2020-11-21 21:00:00 PST,+1.5,+330,+5,+270,+0.0298938,+1845.11,+61722.3,+160.135,OK,OK,+8,+180,+0.0128178,+791.145,+61722.3,+633.657,OK,OK
-2020-11-21 22:00:00 PST,+2.6,+50,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-11-21 23:00:00 PST,+0,+0,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-11-22 00:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-22 01:00:00 PST,+5.1,+360,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-22 02:00:00 PST,+2.6,+360,+5,+270,+0.0291676,+1800.29,+61722.3,-86.4806,OK,OK,+8,+180,+0.0117743,+726.738,+61722.3,-501.363,OK,OK
-2020-11-22 03:00:00 PST,+3.1,+360,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-11-22 04:00:00 PST,+5.1,+60,+5,+270,+0.0268464,+1657.02,+61722.3,-117.481,OK,OK,+8,+180,+0.015544,+959.412,+61722.3,-333.871,OK,OK
-2020-11-22 05:00:00 PST,+6.2,+70,+5,+270,+0.0388622,+2398.66,+61722.3,+432.025,OK,OK,+8,+180,+0.00935001,+577.103,+61722.3,+1276.06,OK,OK
-2020-11-22 06:00:00 PST,+6.2,+70,+5,+270,+0.0486074,+3000.16,+61722.3,+722.269,OK,OK,+8,+180,+0.0198151,+1223.03,+61722.3,+1482.54,OK,OK
-2020-11-22 07:00:00 PST,+5.7,+40,+5,+270,+0.0486074,+3000.16,+61722.3,+722.269,OK,OK,+8,+180,+0.0198151,+1223.03,+61722.3,+1482.54,OK,OK
-2020-11-22 08:00:00 PST,+5.7,+60,+5,+270,+0.0402947,+2487.08,+61722.3,+507.584,OK,OK,+8,+180,+0.00981506,+605.808,+61722.3,+1511.95,OK,OK
-2020-11-22 09:00:00 PST,+6.2,+50,+5,+270,+0.0402947,+2487.08,+61722.3,+507.584,OK,OK,+8,+180,+0.00981506,+605.808,+61722.3,+1511.95,OK,OK
-2020-11-22 10:00:00 PST,+6.2,+70,+5,+270,+0.046258,+2855.15,+61722.3,+718.094,OK,OK,+8,+180,+0.0164901,+1017.8,+61722.3,+1636.26,OK,OK
-2020-11-22 11:00:00 PST,+4.1,+20,+5,+270,+0.046258,+2855.15,+61722.3,+718.094,OK,OK,+8,+180,+0.0164901,+1017.8,+61722.3,+1636.26,OK,OK
-2020-11-22 12:00:00 PST,+2.1,+330,+5,+270,+0.0298652,+1843.35,+61722.3,+4.74713,OK,OK,+8,+180,+0.00985996,+608.579,+61722.3,-342.221,OK,OK
-2020-11-22 13:00:00 PST,+1.1,+350,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-11-22 14:00:00 PST,+0,+0,+5,+270,+0.0259333,+1600.66,+61722.3,-43.6344,OK,OK,+8,+180,+0.0173088,+1068.34,+61722.3,-99.0758,OK,OK
-2020-11-22 15:00:00 PST,+3.6,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-22 16:00:00 PST,+3.1,+100,+5,+270,+0.0300305,+1853.55,+61722.3,+47.1771,OK,OK,+8,+180,+0.00925676,+571.348,+61722.3,-59.7368,OK,OK
-2020-11-22 17:00:00 PST,+2.9,+70,+5,+270,+0.028574,+1763.65,+61722.3,+1.54696,OK,OK,+8,+180,+0.011089,+684.441,+61722.3,-147.713,OK,OK
-2020-11-22 18:00:00 PST,+2.6,+40,+5,+270,+0.0286515,+1768.43,+61722.3,-8.76609,OK,OK,+8,+180,+0.0111641,+689.075,+61722.3,-244.888,OK,OK
-2020-11-22 19:00:00 PST,+0,+0,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-11-22 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-22 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-22 22:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-22 23:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-11-23 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 01:00:00 PST,+2.1,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 02:00:00 PST,+0,+0,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-11-23 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 04:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 05:00:00 PST,+2.1,+330,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-11-23 06:00:00 PST,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-11-23 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 10:00:00 PST,+0.8,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 11:00:00 PST,+1.5,+330,+5,+270,+0.0258045,+1592.71,+61722.3,-32.5506,OK,OK,+8,+180,+0.0175259,+1081.74,+61722.3,-72.1201,OK,OK
-2020-11-23 12:00:00 PST,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-11-23 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 15:00:00 PST,+3.6,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-23 16:00:00 PST,+2.6,+230,+5,+270,+0.0284695,+1757.2,+61722.3,+196.894,OK,OK,+8,+180,+0.0147251,+908.864,+61722.3,+599.505,OK,OK
-2020-11-23 17:00:00 PST,+1.5,+290,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-11-23 18:00:00 PST,+4.1,+310,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-23 19:00:00 PST,+3.1,+320,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-11-23 20:00:00 PST,+2.1,+340,+5,+270,+0.0308539,+1904.38,+61722.3,-7.0923,OK,OK,+8,+180,+0.0106463,+657.115,+61722.3,-44.3123,OK,OK
-2020-11-23 21:00:00 PST,+1,+350,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-11-23 22:00:00 PST,+0,+0,+5,+270,+0.0258857,+1597.72,+61722.3,-40.0427,OK,OK,+8,+180,+0.0173888,+1073.27,+61722.3,-90.099,OK,OK
-2020-11-23 23:00:00 PST,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 00:00:00 PST,+0,+0,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-11-24 01:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 02:00:00 PST,+2.1,+50,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-11-24 03:00:00 PST,+1.5,+30,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-11-24 04:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-11-24 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 06:00:00 PST,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 07:00:00 PST,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-11-24 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 10:00:00 PST,+1.5,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 11:00:00 PST,+4.1,+80,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-11-24 12:00:00 PST,+4.1,+10,+5,+270,+0.0330613,+2040.62,+61722.3,+173.636,OK,OK,+8,+180,+0.00724334,+447.076,+61722.3,+344.607,OK,OK
-2020-11-24 13:00:00 PST,+3.1,+310,+5,+270,+0.0330613,+2040.62,+61722.3,+173.636,OK,OK,+8,+180,+0.00724334,+447.076,+61722.3,+344.607,OK,OK
-2020-11-24 14:00:00 PST,+9.3,+40,+5,+270,+0.0315388,+1946.65,+61722.3,+6.19616,OK,OK,+8,+180,+0.0098888,+610.359,+61722.3,+45.3679,OK,OK
-2020-11-24 15:00:00 PST,+7,+30,+5,+270,+0.0763815,+4714.44,+61722.3,+1540.43,OK,OK,+8,+180,+0.0480317,+2964.62,+61722.3,+2238.16,OK,OK
-2020-11-24 16:00:00 PST,+4.7,+20,+5,+270,+0.0466183,+2877.39,+61722.3,+746.44,OK,OK,+8,+180,+0.0157948,+974.892,+61722.3,+1772.11,OK,OK
-2020-11-24 17:00:00 PST,+2.3,+10,+5,+270,+0.0315743,+1948.84,+61722.3,+86.0921,OK,OK,+8,+180,+0.00773881,+477.657,+61722.3,-173.493,OK,OK
-2020-11-24 18:00:00 PST,+0,+0,+5,+270,+0.0265254,+1637.21,+61722.3,-102.691,OK,OK,+8,+180,+0.0158318,+977.173,+61722.3,-282.565,OK,OK
-2020-11-24 19:00:00 PST,+2.6,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 20:00:00 PST,+1.5,+330,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-11-24 21:00:00 PST,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-11-24 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-24 23:00:00 PST,+2.6,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 00:00:00 PST,+2.1,+320,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-11-25 01:00:00 PST,+2.1,+330,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-11-25 02:00:00 PST,+1.1,+350,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-11-25 03:00:00 PST,+0,+0,+5,+270,+0.0259333,+1600.66,+61722.3,-43.6344,OK,OK,+8,+180,+0.0173088,+1068.34,+61722.3,-99.0758,OK,OK
-2020-11-25 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 05:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 06:00:00 PST,+2.1,+340,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-25 07:00:00 PST,+0,+0,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-11-25 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 09:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 10:00:00 PST,+1.5,+230,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-25 11:00:00 PST,+2.6,+200,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-11-25 12:00:00 PST,+2.1,+320,+5,+270,+0.0263723,+1627.76,+61722.3,+168.438,OK,OK,+8,+180,+0.0172209,+1062.91,+61722.3,+384.302,OK,OK
-2020-11-25 13:00:00 PST,+3.1,+330,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-11-25 14:00:00 PST,+2.6,+330,+5,+270,+0.0300062,+1852.05,+61722.3,-24.8358,OK,OK,+8,+180,+0.0116234,+717.425,+61722.3,-128.639,OK,OK
-2020-11-25 15:00:00 PST,+3.6,+310,+5,+270,+0.0286472,+1768.17,+61722.3,-28.3893,OK,OK,+8,+180,+0.0134459,+829.91,+61722.3,-107.101,OK,OK
-2020-11-25 16:00:00 PST,+4.1,+310,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-11-25 17:00:00 PST,+2.1,+280,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-11-25 18:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-25 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 21:00:00 PST,+2.1,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-25 22:00:00 PST,+0,+0,+5,+270,+0.0266782,+1646.64,+61722.3,-71.5956,OK,OK,+8,+180,+0.0160902,+993.126,+61722.3,-188.101,OK,OK
-2020-11-25 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 05:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 06:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-11-26 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 15:00:00 PST,+4.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 16:00:00 PST,+5.1,+270,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-11-26 17:00:00 PST,+3.6,+300,+5,+270,+0.0450203,+2778.75,+61722.3,-96.3496,OK,OK,+8,+180,+0.00565802,+349.226,+61722.3,-154.74,OK,OK
-2020-11-26 18:00:00 PST,+4.1,+310,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-11-26 19:00:00 PST,+4.1,+320,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-11-26 20:00:00 PST,+2.1,+310,+5,+270,+0.0364627,+2250.56,+61722.3,-1.34657,OK,OK,+8,+180,+0.00405501,+250.285,+61722.3,+71.3797,OK,OK
-2020-11-26 21:00:00 PST,+0,+0,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-11-26 22:00:00 PST,+1.5,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-26 23:00:00 PST,+1.5,+360,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-11-27 00:00:00 PST,+0,+0,+5,+270,+0.0260758,+1609.46,+61722.3,-35.644,OK,OK,+8,+180,+0.0162667,+1004.02,+61722.3,-93.3179,OK,OK
-2020-11-27 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 03:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 04:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-11-27 05:00:00 PST,+2.1,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 06:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-11-27 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 09:00:00 PST,+1.5,+200,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 10:00:00 PST,+0,+0,+5,+270,+0.0258978,+1598.47,+61722.3,+98.4989,OK,OK,+8,+180,+0.0175856,+1085.42,+61722.3,+216.45,OK,OK
-2020-11-27 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 13:00:00 PST,+2.1,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 14:00:00 PST,+4.1,+250,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-11-27 15:00:00 PST,+4.6,+280,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-11-27 16:00:00 PST,+5.7,+290,+5,+270,+0.0415128,+2562.26,+61722.3,-48.12,OK,OK,+8,+180,+0.0023431,+144.622,+61722.3,+222.564,OK,OK
-2020-11-27 17:00:00 PST,+2.6,+260,+5,+270,+0.0508304,+3137.37,+61722.3,-106.073,OK,OK,+8,+180,+0.0118812,+733.334,+61722.3,-256.661,OK,OK
-2020-11-27 18:00:00 PST,+2.6,+320,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-11-27 19:00:00 PST,+1.5,+130,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-11-27 20:00:00 PST,+1.5,+90,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-11-27 21:00:00 PST,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-11-27 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-27 23:00:00 PST,+2.1,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 00:00:00 PST,+0,+0,+5,+270,+0.0269589,+1663.97,+61722.3,-59.5034,OK,OK,+8,+180,+0.0141955,+876.177,+61722.3,-226.274,OK,OK
-2020-11-28 01:00:00 PST,+2.1,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 02:00:00 PST,+0,+0,+5,+270,+0.027568,+1701.56,+61722.3,-28.375,OK,OK,+8,+180,+0.0149488,+922.676,+61722.3,-86.0944,OK,OK
-2020-11-28 03:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 04:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-11-28 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 09:00:00 PST,+1.5,+310,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 10:00:00 PST,+0,+0,+5,+270,+0.0269419,+1662.91,+61722.3,+7.77893,OK,OK,+8,+180,+0.015922,+982.745,+61722.3,+20.7723,OK,OK
-2020-11-28 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 12:00:00 PST,+2.1,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 13:00:00 PST,+2.1,+290,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-11-28 14:00:00 PST,+2.1,+290,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-11-28 15:00:00 PST,+3.1,+220,+5,+270,+0.0266049,+1642.11,+61722.3,+135.986,OK,OK,+8,+180,+0.0167247,+1032.29,+61722.3,+328.461,OK,OK
-2020-11-28 16:00:00 PST,+4.1,+300,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-11-28 17:00:00 PST,+2.1,+280,+5,+270,+0.0373659,+2306.31,+61722.3,-6.47167,OK,OK,+8,+180,+0.00324191,+200.098,+61722.3,+235.87,OK,OK
-2020-11-28 18:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-11-28 19:00:00 PST,+2.1,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 20:00:00 PST,+0,+0,+5,+270,+0.0269589,+1663.97,+61722.3,-59.5034,OK,OK,+8,+180,+0.0141955,+876.177,+61722.3,-226.274,OK,OK
-2020-11-28 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-28 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 04:00:00 PST,+1.5,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 05:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-11-29 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 13:00:00 PST,+1.5,+180,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 14:00:00 PST,+3.1,+240,+5,+270,+0.0254052,+1568.07,+61722.3,+82.3933,OK,OK,+8,+180,+0.0182919,+1129.02,+61722.3,+167.918,OK,OK
-2020-11-29 15:00:00 PST,+5.7,+260,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-11-29 16:00:00 PST,+4.6,+290,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-11-29 17:00:00 PST,+4.1,+270,+5,+270,+0.0413835,+2554.28,+61722.3,-37.8099,OK,OK,+8,+180,+0.00215719,+133.147,+61722.3,+135.588,OK,OK
-2020-11-29 18:00:00 PST,+3.6,+300,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-11-29 19:00:00 PST,+0,+0,+5,+270,+0.0344716,+2127.66,+61722.3,+6.84033,OK,OK,+8,+180,+0.00647451,+399.622,+61722.3,+172.094,OK,OK
-2020-11-29 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-29 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 01:00:00 PST,+1.5,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 02:00:00 PST,+1.5,+20,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-11-30 03:00:00 PST,+2.1,+70,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-11-30 04:00:00 PST,+0,+0,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-11-30 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 12:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-11-30 13:00:00 PST,+2.8,+280,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-11-30 14:00:00 PST,+4.1,+270,+5,+270,+0.031076,+1918.08,+61722.3,+46.4051,OK,OK,+8,+180,+0.010702,+660.55,+61722.3,+275.081,OK,OK
-2020-11-30 15:00:00 PST,+4.6,+250,+5,+270,+0.0376939,+2326.55,+61722.3,-8.86079,OK,OK,+8,+180,+0.00343764,+212.179,+61722.3,+701.617,OK,OK
-2020-11-30 16:00:00 PST,+4.6,+270,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-11-30 17:00:00 PST,+4.1,+250,+5,+270,+0.0388607,+2398.57,+61722.3,-16.3421,OK,OK,+8,+180,+0.00298331,+184.136,+61722.3,+1111.33,OK,OK
-2020-11-30 18:00:00 PST,+3.4,+270,+5,+270,+0.0359606,+2219.57,+61722.3,+27.2628,OK,OK,+8,+180,+0.00552943,+341.289,+61722.3,+810.777,OK,OK
-2020-11-30 19:00:00 PST,+2.8,+290,+5,+270,+0.0336877,+2079.28,+61722.3,+36.0718,OK,OK,+8,+180,+0.00770919,+475.829,+61722.3,+450.704,OK,OK
-2020-11-30 20:00:00 PST,+2.1,+310,+5,+270,+0.0310167,+1914.42,+61722.3,+33.5821,OK,OK,+8,+180,+0.0107009,+660.483,+61722.3,+200.77,OK,OK
-2020-11-30 21:00:00 PST,+1.1,+340,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-11-30 22:00:00 PST,+1.2,+0,+5,+270,+0.0260563,+1608.25,+61722.3,-31.6128,OK,OK,+8,+180,+0.0171427,+1058.09,+61722.3,-73.1282,OK,OK
-2020-11-30 23:00:00 PST,+1.4,+0,+5,+270,+0.0258296,+1594.26,+61722.3,-59.3666,OK,OK,+8,+180,+0.0174356,+1076.17,+61722.3,-132.932,OK,OK
-2020-12-01 00:00:00 PST,+1.5,+320,+5,+270,+0.0258912,+1598.06,+61722.3,-68.1999,OK,OK,+8,+180,+0.017315,+1068.72,+61722.3,-154.842,OK,OK
-2020-12-01 01:00:00 PST,+1.7,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-12-01 02:00:00 PST,+1.8,+40,+5,+270,+0.0260025,+1604.93,+61722.3,-80.5215,OK,OK,+8,+180,+0.0170994,+1055.42,+61722.3,-187.481,OK,OK
-2020-12-01 03:00:00 PST,+2,+0,+5,+270,+0.0264927,+1635.19,+61722.3,-89.7621,OK,OK,+8,+180,+0.0155441,+959.419,+61722.3,-260.275,OK,OK
-2020-12-01 04:00:00 PST,+2.1,+40,+5,+270,+0.0261371,+1613.24,+61722.3,-91.5356,OK,OK,+8,+180,+0.0168422,+1039.54,+61722.3,-219.783,OK,OK
-2020-12-01 05:00:00 PST,+0,+0,+5,+270,+0.0268403,+1656.65,+61722.3,-88.0018,OK,OK,+8,+180,+0.0147544,+910.675,+61722.3,-292.289,OK,OK
-2020-12-01 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 10:00:00 PST,+2.6,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 11:00:00 PST,+1.5,+70,+5,+270,+0.0274988,+1697.29,+61722.3,-29.1604,OK,OK,+8,+180,+0.0129175,+797.299,+61722.3,-170.528,OK,OK
-2020-12-01 12:00:00 PST,+1.5,+30,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-12-01 13:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-12-01 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 15:00:00 PST,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 16:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-01 17:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 19:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 20:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-12-01 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-01 23:00:00 PST,+1.5,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 00:00:00 PST,+0,+0,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-12-02 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 03:00:00 PST,+1.5,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 04:00:00 PST,+0,+0,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-12-02 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 07:00:00 PST,+2.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 08:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-02 09:00:00 PST,+1.1,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-02 10:00:00 PST,+2.1,+120,+5,+270,+0.0259748,+1603.23,+61722.3,-66.5301,OK,OK,+8,+180,+0.0167923,+1036.46,+61722.3,-161.533,OK,OK
-2020-12-02 11:00:00 PST,+7.7,+90,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-12-02 12:00:00 PST,+6.7,+80,+5,+270,+0.0638743,+3942.46,+61722.3,+893.593,OK,OK,+8,+180,+0.036923,+2278.97,+61722.3,+1388.05,OK,OK
-2020-12-02 13:00:00 PST,+7.7,+90,+5,+270,+0.053598,+3308.19,+61722.3,+787.609,OK,OK,+8,+180,+0.0255728,+1578.41,+61722.3,+1428.19,OK,OK
-2020-12-02 14:00:00 PST,+6.2,+90,+5,+270,+0.0638743,+3942.46,+61722.3,+893.593,OK,OK,+8,+180,+0.036923,+2278.97,+61722.3,+1388.05,OK,OK
-2020-12-02 15:00:00 PST,+4.6,+90,+5,+270,+0.0473756,+2924.13,+61722.3,+568.026,OK,OK,+8,+180,+0.0192388,+1187.46,+61722.3,+1166.65,OK,OK
-2020-12-02 16:00:00 PST,+3.1,+80,+5,+270,+0.0352569,+2176.14,+61722.3,+234.089,OK,OK,+8,+180,+0.00778772,+480.675,+61722.3,+652.186,OK,OK
-2020-12-02 17:00:00 PST,+3.6,+70,+5,+270,+0.0291389,+1798.52,+61722.3,+15.279,OK,OK,+8,+180,+0.0103961,+641.671,+61722.3,-188.7,OK,OK
-2020-12-02 18:00:00 PST,+2.6,+80,+5,+270,+0.0309501,+1910.31,+61722.3,+91.2469,OK,OK,+8,+180,+0.00835394,+515.624,+61722.3,-35.3365,OK,OK
-2020-12-02 19:00:00 PST,+5.7,+90,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-12-02 20:00:00 PST,+5.1,+90,+5,+270,+0.0429704,+2652.23,+61722.3,+459.455,OK,OK,+8,+180,+0.0145263,+896.598,+61722.3,+1080.57,OK,OK
-2020-12-02 21:00:00 PST,+4.1,+100,+5,+270,+0.0384259,+2371.74,+61722.3,+332.98,OK,OK,+8,+180,+0.0100257,+618.811,+61722.3,+920.889,OK,OK
-2020-12-02 22:00:00 PST,+5.1,+70,+5,+270,+0.0319259,+1970.54,+61722.3,+106.518,OK,OK,+8,+180,+0.00787098,+485.815,+61722.3,+144.351,OK,OK
-2020-12-02 23:00:00 PST,+4.6,+80,+5,+270,+0.0392711,+2423.9,+61722.3,+426.331,OK,OK,+8,+180,+0.0100788,+622.088,+61722.3,+1207.71,OK,OK
-2020-12-03 00:00:00 PST,+2.6,+90,+5,+270,+0.0358113,+2210.35,+61722.3,+277.366,OK,OK,+8,+180,+0.00776996,+479.579,+61722.3,+804.535,OK,OK
-2020-12-03 01:00:00 PST,+6.7,+90,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-12-03 02:00:00 PST,+4.1,+90,+5,+270,+0.0523353,+3230.25,+61722.3,+677.335,OK,OK,+8,+180,+0.0245961,+1518.13,+61722.3,+1241.96,OK,OK
-2020-12-03 03:00:00 PST,+1.5,+300,+5,+270,+0.0326373,+2014.45,+61722.3,+144.87,OK,OK,+8,+180,+0.0074893,+462.256,+61722.3,+257.72,OK,OK
-2020-12-03 04:00:00 PST,+2.1,+20,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-12-03 05:00:00 PST,+2.1,+40,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-12-03 06:00:00 PST,+1.5,+290,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-12-03 07:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-03 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-03 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-03 10:00:00 PST,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-03 11:00:00 PST,+7.7,+120,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-12-03 12:00:00 PST,+7.2,+110,+5,+270,+0.0505642,+3120.94,+61722.3,+295.259,OK,OK,+8,+180,+0.0242733,+1498.2,+61722.3,+530.114,OK,OK
-2020-12-03 13:00:00 PST,+5.1,+130,+5,+270,+0.0512429,+3162.83,+61722.3,+444.158,OK,OK,+8,+180,+0.0243501,+1502.94,+61722.3,+805.422,OK,OK
-2020-12-03 14:00:00 PST,+5.1,+130,+5,+270,+0.0311612,+1923.34,+61722.3,+21.7708,OK,OK,+8,+180,+0.00874172,+539.558,+61722.3,+28.5942,OK,OK
-2020-12-03 15:00:00 PST,+4.1,+120,+5,+270,+0.0311612,+1923.34,+61722.3,+21.7708,OK,OK,+8,+180,+0.00874172,+539.558,+61722.3,+28.5942,OK,OK
-2020-12-03 16:00:00 PST,+2.6,+130,+5,+270,+0.029822,+1840.68,+61722.3,+27.8495,OK,OK,+8,+180,+0.00946518,+584.212,+61722.3,-19.3281,OK,OK
-2020-12-03 17:00:00 PST,+3.6,+110,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-12-03 18:00:00 PST,+3.1,+180,+5,+270,+0.0293525,+1811.7,+61722.3,+24.1491,OK,OK,+8,+180,+0.00998546,+616.325,+61722.3,-73.9578,OK,OK
-2020-12-03 19:00:00 PST,+2.6,+150,+5,+270,+0.0246291,+1520.17,+61722.3,+205.176,OK,OK,+8,+180,+0.0200025,+1234.6,+61722.3,+353.283,OK,OK
-2020-12-03 20:00:00 PST,+0,+0,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-12-03 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-03 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-03 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 00:00:00 PST,+2.6,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 01:00:00 PST,+2.1,+10,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-12-04 02:00:00 PST,+1.5,+60,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-12-04 03:00:00 PST,+1.5,+120,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-04 04:00:00 PST,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-04 05:00:00 PST,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 06:00:00 PST,+1.5,+50,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-04 07:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-04 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 09:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 10:00:00 PST,+1.5,+160,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-12-04 11:00:00 PST,+2.6,+150,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-12-04 12:00:00 PST,+2.6,+200,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-12-04 13:00:00 PST,+2.6,+200,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-12-04 14:00:00 PST,+2.6,+220,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-12-04 15:00:00 PST,+3.6,+260,+5,+270,+0.0257605,+1590,+61722.3,+37.3984,OK,OK,+8,+180,+0.0164442,+1014.98,+61722.3,+96.594,OK,OK
-2020-12-04 16:00:00 PST,+1.5,+290,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-12-04 17:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-04 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 19:00:00 PST,+3.1,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 20:00:00 PST,+0,+0,+5,+270,+0.0256253,+1581.65,+61722.3,+208.246,OK,OK,+8,+180,+0.0185083,+1142.37,+61722.3,+414.665,OK,OK
-2020-12-04 21:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-04 22:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-12-04 23:00:00 PST,+2.1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 00:00:00 PST,+2.1,+180,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-12-05 01:00:00 PST,+0,+0,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-12-05 02:00:00 PST,+2.6,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 03:00:00 PST,+0,+0,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-12-05 04:00:00 PST,+3.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 05:00:00 PST,+2.1,+90,+5,+270,+0.0289646,+1787.76,+61722.3,-6.34541,OK,OK,+8,+180,+0.0108248,+668.132,+61722.3,-286.598,OK,OK
-2020-12-05 06:00:00 PST,+3.6,+90,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-12-05 07:00:00 PST,+4.6,+90,+5,+270,+0.0305399,+1884.99,+61722.3,+69.0667,OK,OK,+8,+180,+0.00875587,+540.432,+61722.3,-36.9228,OK,OK
-2020-12-05 08:00:00 PST,+3.6,+80,+5,+270,+0.0352569,+2176.14,+61722.3,+234.089,OK,OK,+8,+180,+0.00778772,+480.675,+61722.3,+652.186,OK,OK
-2020-12-05 09:00:00 PST,+1.5,+100,+5,+270,+0.0308514,+1904.22,+61722.3,+84.979,OK,OK,+8,+180,+0.00845865,+522.087,+61722.3,-23.459,OK,OK
-2020-12-05 10:00:00 PST,+2.6,+110,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-12-05 11:00:00 PST,+3.1,+100,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-12-05 12:00:00 PST,+4.6,+110,+5,+270,+0.028574,+1763.65,+61722.3,+1.54696,OK,OK,+8,+180,+0.011089,+684.441,+61722.3,-147.713,OK,OK
-2020-12-05 13:00:00 PST,+5.7,+110,+5,+270,+0.0330074,+2037.29,+61722.3,+114.565,OK,OK,+8,+180,+0.00782739,+483.124,+61722.3,+242.483,OK,OK
-2020-12-05 14:00:00 PST,+3.6,+120,+5,+270,+0.0391307,+2415.24,+61722.3,+245.572,OK,OK,+8,+180,+0.0115524,+713.04,+61722.3,+624.73,OK,OK
-2020-12-05 15:00:00 PST,+1.5,+250,+5,+270,+0.0285483,+1762.07,+61722.3,+5.70011,OK,OK,+8,+180,+0.0109622,+676.61,+61722.3,-65.7195,OK,OK
-2020-12-05 16:00:00 PST,+2.6,+160,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-12-05 17:00:00 PST,+3.1,+160,+5,+270,+0.025428,+1569.47,+61722.3,+72.4523,OK,OK,+8,+180,+0.0173968,+1073.77,+61722.3,+164.38,OK,OK
-2020-12-05 18:00:00 PST,+0,+0,+5,+270,+0.0253352,+1563.75,+61722.3,+82.4413,OK,OK,+8,+180,+0.0172462,+1064.48,+61722.3,+191.518,OK,OK
-2020-12-05 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-05 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 03:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 04:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-12-06 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 07:00:00 PST,+1.5,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 08:00:00 PST,+0,+0,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-12-06 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 13:00:00 PST,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 14:00:00 PST,+1.5,+230,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-12-06 15:00:00 PST,+1.5,+210,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-12-06 16:00:00 PST,+1.5,+200,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-12-06 17:00:00 PST,+0,+0,+5,+270,+0.0265833,+1640.78,+61722.3,+97.4433,OK,OK,+8,+180,+0.0165942,+1024.23,+61722.3,+239.414,OK,OK
-2020-12-06 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 19:00:00 PST,+1.5,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 20:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-06 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 22:00:00 PST,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-06 23:00:00 PST,+1.5,+290,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-12-07 00:00:00 PST,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-12-07 01:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 02:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-12-07 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 11:00:00 PST,+2.1,+150,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 12:00:00 PST,+2.1,+120,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-12-07 13:00:00 PST,+0,+0,+5,+270,+0.0257132,+1587.08,+61722.3,+33.4982,OK,OK,+8,+180,+0.0168974,+1042.95,+61722.3,+80.792,OK,OK
-2020-12-07 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 15:00:00 PST,+1.5,+190,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 16:00:00 PST,+1.5,+230,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-12-07 17:00:00 PST,+0,+0,+5,+270,+0.02565,+1583.18,+61722.3,+92.2513,OK,OK,+8,+180,+0.0179413,+1107.38,+61722.3,+195.096,OK,OK
-2020-12-07 18:00:00 PST,+1.5,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 19:00:00 PST,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-12-07 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 21:00:00 PST,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-07 22:00:00 PST,+0,+0,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-12-07 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 05:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 06:00:00 PST,+2.1,+100,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-12-08 07:00:00 PST,+0,+0,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-12-08 08:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 09:00:00 PST,+2.1,+120,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-08 10:00:00 PST,+2.6,+140,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-12-08 11:00:00 PST,+0,+0,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-12-08 12:00:00 PST,+1.5,+170,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 13:00:00 PST,+1.5,+100,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-12-08 14:00:00 PST,+1.5,+110,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-12-08 15:00:00 PST,+3.1,+250,+5,+270,+0.0254884,+1573.2,+61722.3,+63.8156,OK,OK,+8,+180,+0.01797,+1109.15,+61722.3,+134.723,OK,OK
-2020-12-08 16:00:00 PST,+2.1,+260,+5,+270,+0.0313317,+1933.87,+61722.3,+85.427,OK,OK,+8,+180,+0.0106556,+657.688,+61722.3,+497.582,OK,OK
-2020-12-08 17:00:00 PST,+2.6,+260,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-12-08 18:00:00 PST,+2.1,+220,+5,+270,+0.0299504,+1848.61,+61722.3,+80.9214,OK,OK,+8,+180,+0.01222,+754.248,+61722.3,+360.817,OK,OK
-2020-12-08 19:00:00 PST,+0,+0,+5,+270,+0.0270648,+1670.5,+61722.3,+130.573,OK,OK,+8,+180,+0.0160711,+991.943,+61722.3,+340.399,OK,OK
-2020-12-08 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-08 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 04:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 05:00:00 PST,+1.5,+210,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-12-09 06:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-12-09 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 08:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 09:00:00 PST,+2.6,+130,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-12-09 10:00:00 PST,+2.6,+170,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-12-09 11:00:00 PST,+0,+0,+5,+270,+0.026503,+1635.83,+61722.3,-8.45479,OK,OK,+8,+180,+0.0147202,+908.563,+61722.3,-29.6013,OK,OK
-2020-12-09 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 15:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 16:00:00 PST,+3.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 17:00:00 PST,+1.5,+340,+5,+270,+0.0318857,+1968.06,+61722.3,+65.9791,OK,OK,+8,+180,+0.0099016,+611.149,+61722.3,+452.504,OK,OK
-2020-12-09 18:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-09 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 20:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-09 21:00:00 PST,+1.5,+40,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-09 22:00:00 PST,+1.5,+60,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-09 23:00:00 PST,+2.1,+30,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-10 00:00:00 PST,+3.1,+40,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-12-10 01:00:00 PST,+2.6,+50,+5,+270,+0.028658,+1768.84,+61722.3,-27.2576,OK,OK,+8,+180,+0.0113848,+702.693,+61722.3,-324.349,OK,OK
-2020-12-10 02:00:00 PST,+2.2,+40,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-12-10 03:00:00 PST,+1.9,+40,+5,+270,+0.0269741,+1664.9,+61722.3,-85.849,OK,OK,+8,+180,+0.0144664,+892.901,+61722.3,-301.458,OK,OK
-2020-12-10 04:00:00 PST,+1.5,+30,+5,+270,+0.0266,+1641.81,+61722.3,-89.9309,OK,OK,+8,+180,+0.0152935,+943.947,+61722.3,-271.615,OK,OK
-2020-12-10 05:00:00 PST,+0,+0,+5,+270,+0.0261623,+1614.8,+61722.3,-85.8283,OK,OK,+8,+180,+0.0164209,+1013.53,+61722.3,-218.573,OK,OK
-2020-12-10 06:00:00 PST,+2.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-10 07:00:00 PST,+1.5,+20,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-12-10 08:00:00 PST,+0,+0,+5,+270,+0.026093,+1610.52,+61722.3,-84.2147,OK,OK,+8,+180,+0.0166647,+1028.58,+61722.3,-207.45,OK,OK
-2020-12-10 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-10 10:00:00 PST,+1.5,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-10 11:00:00 PST,+0,+0,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-12-10 12:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-10 13:00:00 PST,+3.1,+100,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-12-10 14:00:00 PST,+2.1,+120,+5,+270,+0.028574,+1763.65,+61722.3,+1.54696,OK,OK,+8,+180,+0.011089,+684.441,+61722.3,-147.713,OK,OK
-2020-12-10 15:00:00 PST,+3.6,+160,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-12-10 16:00:00 PST,+3.1,+140,+5,+270,+0.0252305,+1557.28,+61722.3,+90.2961,OK,OK,+8,+180,+0.0170745,+1053.88,+61722.3,+216.119,OK,OK
-2020-12-10 17:00:00 PST,+1.5,+140,+5,+270,+0.0264015,+1629.56,+61722.3,+9.38133,OK,OK,+8,+180,+0.0146507,+904.277,+61722.3,+34.1468,OK,OK
-2020-12-10 18:00:00 PST,+3.1,+120,+5,+270,+0.0257853,+1591.53,+61722.3,+8.35746,OK,OK,+8,+180,+0.017014,+1050.14,+61722.3,+19.783,OK,OK
-2020-12-10 19:00:00 PST,+2.1,+100,+5,+270,+0.0275807,+1702.34,+61722.3,-10.3098,OK,OK,+8,+180,+0.0125314,+773.465,+61722.3,-82.9766,OK,OK
-2020-12-10 20:00:00 PST,+0,+0,+5,+270,+0.0267394,+1650.42,+61722.3,-45.1171,OK,OK,+8,+180,+0.0145424,+897.588,+61722.3,-160.31,OK,OK
-2020-12-10 21:00:00 PST,+1.5,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-10 22:00:00 PST,+2.1,+60,+5,+270,+0.0262124,+1617.89,+61722.3,-56.7791,OK,OK,+8,+180,+0.0159833,+986.524,+61722.3,-154.775,OK,OK
-2020-12-10 23:00:00 PST,+2.1,+60,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-12-11 00:00:00 PST,+2.6,+40,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-12-11 01:00:00 PST,+0,+0,+5,+270,+0.027609,+1704.09,+61722.3,-68.7771,OK,OK,+8,+180,+0.0131983,+814.626,+61722.3,-327.771,OK,OK
-2020-12-11 02:00:00 PST,+2.6,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 03:00:00 PST,+2.6,+60,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-12-11 04:00:00 PST,+2.1,+50,+5,+270,+0.027924,+1723.53,+61722.3,-37.4761,OK,OK,+8,+180,+0.0123673,+763.341,+61722.3,-263.816,OK,OK
-2020-12-11 05:00:00 PST,+1.5,+360,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-11 06:00:00 PST,+1.5,+20,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-11 07:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-11 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 09:00:00 PST,+1.5,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 10:00:00 PST,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-12-11 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 15:00:00 PST,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 16:00:00 PST,+2.1,+270,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-12-11 17:00:00 PST,+1.5,+260,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-12-11 18:00:00 PST,+0,+0,+5,+270,+0.0270336,+1668.57,+61722.3,+73.9834,OK,OK,+8,+180,+0.0159176,+982.471,+61722.3,+197.166,OK,OK
-2020-12-11 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 20:00:00 PST,+1.5,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 21:00:00 PST,+0,+0,+5,+270,+0.0258884,+1597.89,+61722.3,-7.96923,OK,OK,+8,+180,+0.0167305,+1032.64,+61722.3,-19.5755,OK,OK
-2020-12-11 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-11 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 01:00:00 PST,+2.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 02:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-12 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 13:00:00 PST,+2.1,+230,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 14:00:00 PST,+2.6,+290,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-12-12 15:00:00 PST,+2.6,+310,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-12 16:00:00 PST,+3.6,+260,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-12 17:00:00 PST,+3.1,+270,+5,+270,+0.0342323,+2112.89,+61722.3,+40.0295,OK,OK,+8,+180,+0.00721621,+445.401,+61722.3,+574.137,OK,OK
-2020-12-12 18:00:00 PST,+2.6,+290,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-12-12 19:00:00 PST,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-12 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 22:00:00 PST,+2.1,+260,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-12 23:00:00 PST,+1.5,+270,+5,+270,+0.0284056,+1753.26,+61722.3,+84.3687,OK,OK,+8,+180,+0.0141436,+872.977,+61722.3,+282.464,OK,OK
-2020-12-13 00:00:00 PST,+2.1,+280,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-12-13 01:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-12-13 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 05:00:00 PST,+2.1,+130,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 06:00:00 PST,+0,+0,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-12-13 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 08:00:00 PST,+2.6,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 09:00:00 PST,+1.5,+60,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-12-13 10:00:00 PST,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-13 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 12:00:00 PST,+1.5,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 13:00:00 PST,+2.1,+290,+5,+270,+0.0271052,+1673,+61722.3,+62.8476,OK,OK,+8,+180,+0.0157968,+975.015,+61722.3,+170.062,OK,OK
-2020-12-13 14:00:00 PST,+2.1,+270,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-12-13 15:00:00 PST,+2.1,+280,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-12-13 16:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-12-13 17:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 21:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-13 22:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-12-13 23:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 00:00:00 PST,+1.5,+10,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-14 01:00:00 PST,+2.6,+350,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-14 02:00:00 PST,+1.5,+10,+5,+270,+0.0272475,+1681.78,+61722.3,-78.4393,OK,OK,+8,+180,+0.0151955,+937.903,+61722.3,-231.802,OK,OK
-2020-12-14 03:00:00 PST,+1.5,+10,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-14 04:00:00 PST,+1.5,+10,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-14 05:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-14 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 07:00:00 PST,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 08:00:00 PST,+2.1,+60,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-12-14 09:00:00 PST,+0,+0,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-12-14 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 11:00:00 PST,+2.1,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 12:00:00 PST,+0,+0,+5,+270,+0.0279352,+1724.22,+61722.3,-9.07201,OK,OK,+8,+180,+0.0144992,+894.923,+61722.3,-29.2102,OK,OK
-2020-12-14 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 15:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 16:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 17:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 20:00:00 PST,+1.5,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 21:00:00 PST,+0,+0,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-12-14 22:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-14 23:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-15 00:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 01:00:00 PST,+1.1,+360,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-12-15 02:00:00 PST,+0,+0,+5,+270,+0.0258025,+1592.59,+61722.3,-54.7891,OK,OK,+8,+180,+0.017489,+1079.46,+61722.3,-121.938,OK,OK
-2020-12-15 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 04:00:00 PST,+2.1,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 05:00:00 PST,+0,+0,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-12-15 06:00:00 PST,+1.5,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 07:00:00 PST,+1.5,+80,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-15 08:00:00 PST,+2.6,+20,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-15 09:00:00 PST,+0,+0,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-15 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 11:00:00 PST,+1.5,+330,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 12:00:00 PST,+2.6,+290,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-12-15 13:00:00 PST,+0,+0,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-15 14:00:00 PST,+3.1,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 15:00:00 PST,+2.1,+290,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-12-15 16:00:00 PST,+1.5,+330,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-12-15 17:00:00 PST,+0,+0,+5,+270,+0.0266133,+1642.63,+61722.3,-24.0876,OK,OK,+8,+180,+0.0163304,+1007.95,+61722.3,-61.2738,OK,OK
-2020-12-15 18:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 19:00:00 PST,+3.1,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-15 20:00:00 PST,+2.6,+20,+5,+270,+0.029029,+1791.74,+61722.3,-48.5785,OK,OK,+8,+180,+0.0127903,+789.444,+61722.3,-205.824,OK,OK
-2020-12-15 21:00:00 PST,+9.3,+60,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-15 22:00:00 PST,+8.2,+80,+5,+270,+0.0870388,+5372.23,+61722.3,+1618.94,OK,OK,+8,+180,+0.0599409,+3699.69,+61722.3,+2181.19,OK,OK
-2020-12-15 23:00:00 PST,+8.2,+50,+5,+270,+0.0723296,+4464.35,+61722.3,+1156.5,OK,OK,+8,+180,+0.0454296,+2804.02,+61722.3,+1679.61,OK,OK
-2020-12-16 00:00:00 PST,+7.7,+60,+5,+270,+0.0723296,+4464.35,+61722.3,+1156.5,OK,OK,+8,+180,+0.0454296,+2804.02,+61722.3,+1679.61,OK,OK
-2020-12-16 01:00:00 PST,+9.3,+50,+5,+270,+0.0643505,+3971.86,+61722.3,+1174.79,OK,OK,+8,+180,+0.0363023,+2240.66,+61722.3,+1863.99,OK,OK
-2020-12-16 02:00:00 PST,+8.2,+70,+5,+270,+0.0827018,+5104.54,+61722.3,+1617.73,OK,OK,+8,+180,+0.0550589,+3398.36,+61722.3,+2241.96,OK,OK
-2020-12-16 03:00:00 PST,+12.3,+90,+5,+270,+0.0724781,+4473.51,+61722.3,+1264.44,OK,OK,+8,+180,+0.0452182,+2790.97,+61722.3,+1847.23,OK,OK
-2020-12-16 04:00:00 PST,+7.2,+80,+5,+270,+0.142722,+8809.13,+61722.3,+1807.13,OK,OK,+8,+180,+0.11764,+7261.01,+61722.3,+2096.5,OK,OK
-2020-12-16 05:00:00 PST,+10.8,+90,+5,+270,+0.0593024,+3660.28,+61722.3,+912.232,OK,OK,+8,+180,+0.0316855,+1955.7,+61722.3,+1511.03,OK,OK
-2020-12-16 06:00:00 PST,+11.3,+80,+5,+270,+0.112546,+6946.62,+61722.3,+1522.24,OK,OK,+8,+180,+0.0871279,+5377.73,+61722.3,+1860.11,OK,OK
-2020-12-16 07:00:00 PST,+9.3,+70,+5,+270,+0.125682,+7757.39,+61722.3,+1865.69,OK,OK,+8,+180,+0.10006,+6175.94,+61722.3,+2228.14,OK,OK
-2020-12-16 08:00:00 PST,+11.3,+50,+5,+270,+0.089195,+5505.32,+61722.3,+1549.55,OK,OK,+8,+180,+0.062534,+3859.74,+61722.3,+2056.49,OK,OK
-2020-12-16 09:00:00 PST,+11.8,+60,+5,+270,+0.115713,+7142.04,+61722.3,+2160.84,OK,OK,+8,+180,+0.0888133,+5481.76,+61722.3,+2662.04,OK,OK
-2020-12-16 10:00:00 PST,+9.3,+90,+5,+270,+0.132402,+8172.15,+61722.3,+2272.22,OK,OK,+8,+180,+0.10611,+6549.35,+61722.3,+2700,OK,OK
-2020-12-16 11:00:00 PST,+9.8,+70,+5,+270,+0.0866342,+5347.26,+61722.3,+1225.98,OK,OK,+8,+180,+0.0606449,+3743.14,+61722.3,+1628.04,OK,OK
-2020-12-16 12:00:00 PST,+9.3,+70,+5,+270,+0.0975999,+6024.08,+61722.3,+1675.82,OK,OK,+8,+180,+0.071152,+4391.66,+61722.3,+2153.41,OK,OK
-2020-12-16 13:00:00 PST,+9.3,+90,+5,+270,+0.089195,+5505.32,+61722.3,+1549.55,OK,OK,+8,+180,+0.062534,+3859.74,+61722.3,+2056.49,OK,OK
-2020-12-16 14:00:00 PST,+4.1,+70,+5,+270,+0.089195,+5505.32,+61722.3,+1549.55,OK,OK,+8,+180,+0.062534,+3859.74,+61722.3,+2056.49,OK,OK
-2020-12-16 15:00:00 PST,+7.7,+80,+5,+270,+0.033178,+2047.82,+61722.3,+188.026,OK,OK,+8,+180,+0.00707141,+436.463,+61722.3,+374.738,OK,OK
-2020-12-16 16:00:00 PST,+7.2,+90,+5,+270,+0.0655501,+4045.9,+61722.3,+1035.32,OK,OK,+8,+180,+0.0383115,+2364.67,+61722.3,+1594.69,OK,OK
-2020-12-16 17:00:00 PST,+7.2,+90,+5,+270,+0.0578388,+3569.94,+61722.3,+786.105,OK,OK,+8,+180,+0.0305059,+1882.89,+61722.3,+1314.92,OK,OK
-2020-12-16 18:00:00 PST,+6.7,+90,+5,+270,+0.0578388,+3569.94,+61722.3,+786.105,OK,OK,+8,+180,+0.0305059,+1882.89,+61722.3,+1314.92,OK,OK
-2020-12-16 19:00:00 PST,+6.7,+70,+5,+270,+0.0523353,+3230.25,+61722.3,+677.335,OK,OK,+8,+180,+0.0245961,+1518.13,+61722.3,+1241.96,OK,OK
-2020-12-16 20:00:00 PST,+6.7,+60,+5,+270,+0.0523353,+3230.25,+61722.3,+677.335,OK,OK,+8,+180,+0.0245961,+1518.13,+61722.3,+1241.96,OK,OK
-2020-12-16 21:00:00 PST,+8.2,+50,+5,+270,+0.0523353,+3230.25,+61722.3,+677.335,OK,OK,+8,+180,+0.0245961,+1518.13,+61722.3,+1241.96,OK,OK
-2020-12-16 22:00:00 PST,+6.7,+50,+5,+270,+0.067652,+4175.63,+61722.3,+1305.3,OK,OK,+8,+180,+0.0393763,+2430.4,+61722.3,+2019.8,OK,OK
-2020-12-16 23:00:00 PST,+5.7,+60,+5,+270,+0.0508605,+3139.23,+61722.3,+865.431,OK,OK,+8,+180,+0.0214626,+1324.72,+61722.3,+1732.38,OK,OK
-2020-12-17 00:00:00 PST,+6.7,+60,+5,+270,+0.0434383,+2681.11,+61722.3,+598.723,OK,OK,+8,+180,+0.0138923,+857.462,+61722.3,+1475.05,OK,OK
-2020-12-17 01:00:00 PST,+6.7,+70,+5,+270,+0.0528242,+3260.43,+61722.3,+887.122,OK,OK,+8,+180,+0.0239931,+1480.91,+61722.3,+1674.85,OK,OK
-2020-12-17 02:00:00 PST,+6.7,+60,+5,+270,+0.0528242,+3260.43,+61722.3,+887.122,OK,OK,+8,+180,+0.0239931,+1480.91,+61722.3,+1674.85,OK,OK
-2020-12-17 03:00:00 PST,+5.7,+70,+5,+270,+0.0528242,+3260.43,+61722.3,+887.122,OK,OK,+8,+180,+0.0239931,+1480.91,+61722.3,+1674.85,OK,OK
-2020-12-17 04:00:00 PST,+5.1,+80,+5,+270,+0.0440206,+2717.05,+61722.3,+585.713,OK,OK,+8,+180,+0.0148852,+918.751,+61722.3,+1383.37,OK,OK
-2020-12-17 05:00:00 PST,+5.7,+100,+5,+270,+0.039127,+2415.01,+61722.3,+391.78,OK,OK,+8,+180,+0.010298,+635.614,+61722.3,+1087.22,OK,OK
-2020-12-17 06:00:00 PST,+6.7,+120,+5,+270,+0.0413661,+2553.21,+61722.3,+358.912,OK,OK,+8,+180,+0.0132807,+819.712,+61722.3,+871.838,OK,OK
-2020-12-17 07:00:00 PST,+5.1,+110,+5,+270,+0.0426321,+2631.35,+61722.3,+212.214,OK,OK,+8,+180,+0.0157438,+971.745,+61722.3,+463.656,OK,OK
-2020-12-17 08:00:00 PST,+5.1,+90,+5,+270,+0.0355044,+2191.41,+61722.3,+171.199,OK,OK,+8,+180,+0.00862397,+532.291,+61722.3,+460.082,OK,OK
-2020-12-17 09:00:00 PST,+6.2,+140,+5,+270,+0.0355044,+2191.41,+61722.3,+171.199,OK,OK,+8,+180,+0.00862397,+532.291,+61722.3,+460.082,OK,OK
-2020-12-17 10:00:00 PST,+9.3,+130,+5,+270,+0.031454,+1941.41,+61722.3,-33.4886,OK,OK,+8,+180,+0.00926855,+572.076,+61722.3,-57.16,OK,OK
-2020-12-17 11:00:00 PST,+9.3,+90,+5,+270,+0.0565475,+3490.24,+61722.3,+135.143,OK,OK,+8,+180,+0.0316545,+1953.79,+61722.3,+214.337,OK,OK
-2020-12-17 12:00:00 PST,+9.8,+100,+5,+270,+0.0565475,+3490.24,+61722.3,+135.143,OK,OK,+8,+180,+0.0316545,+1953.79,+61722.3,+214.337,OK,OK
-2020-12-17 13:00:00 PST,+8.2,+100,+5,+270,+0.089598,+5530.19,+61722.3,+1071.87,OK,OK,+8,+180,+0.0641163,+3957.4,+61722.3,+1397.18,OK,OK
-2020-12-17 14:00:00 PST,+8.2,+90,+5,+270,+0.0668359,+4125.26,+61722.3,+802.268,OK,OK,+8,+180,+0.0404717,+2498,+61722.3,+1199.26,OK,OK
-2020-12-17 15:00:00 PST,+8.2,+120,+5,+270,+0.0668359,+4125.26,+61722.3,+802.268,OK,OK,+8,+180,+0.0404717,+2498,+61722.3,+1199.26,OK,OK
-2020-12-17 16:00:00 PST,+1.5,+80,+5,+270,+0.0668359,+4125.26,+61722.3,+802.268,OK,OK,+8,+180,+0.0404717,+2498,+61722.3,+1199.26,OK,OK
-2020-12-17 17:00:00 PST,+2.1,+30,+5,+270,+0.0262541,+1620.46,+61722.3,-65.1808,OK,OK,+8,+180,+0.0159203,+982.635,+61722.3,-179.209,OK,OK
-2020-12-17 18:00:00 PST,+1.5,+100,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-12-17 19:00:00 PST,+1.5,+310,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-12-17 20:00:00 PST,+2.6,+10,+5,+270,+0.0261522,+1614.17,+61722.3,-46.9769,OK,OK,+8,+180,+0.0160999,+993.721,+61722.3,-125.944,OK,OK
-2020-12-17 21:00:00 PST,+2.1,+340,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-12-17 22:00:00 PST,+0,+0,+5,+270,+0.0271439,+1675.38,+61722.3,-49.2706,OK,OK,+8,+180,+0.0154846,+955.745,+61722.3,-139.552,OK,OK
-2020-12-17 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 00:00:00 PST,+2.6,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 01:00:00 PST,+0,+0,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-18 02:00:00 PST,+3.6,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 03:00:00 PST,+0,+0,+5,+270,+0.0279931,+1727.8,+61722.3,-87.1947,OK,OK,+8,+180,+0.0130649,+806.395,+61722.3,-398.085,OK,OK
-2020-12-18 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 06:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 07:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-12-18 08:00:00 PST,+1.5,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 09:00:00 PST,+3.1,+90,+5,+270,+0.026372,+1627.74,+61722.3,+100.79,OK,OK,+8,+180,+0.0169017,+1043.21,+61722.3,+239.016,OK,OK
-2020-12-18 10:00:00 PST,+6.7,+100,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-12-18 11:00:00 PST,+4.1,+80,+5,+270,+0.0500122,+3086.86,+61722.3,+537.024,OK,OK,+8,+180,+0.022514,+1389.61,+61722.3,+1017.35,OK,OK
-2020-12-18 12:00:00 PST,+0,+0,+5,+270,+0.0330613,+2040.62,+61722.3,+173.636,OK,OK,+8,+180,+0.00724334,+447.076,+61722.3,+344.607,OK,OK
-2020-12-18 13:00:00 PST,+6.7,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 14:00:00 PST,+4.1,+360,+5,+270,+0.0508605,+3139.23,+61722.3,+865.431,OK,OK,+8,+180,+0.0214626,+1324.72,+61722.3,+1732.38,OK,OK
-2020-12-18 15:00:00 PST,+2.6,+280,+5,+270,+0.0278228,+1717.29,+61722.3,-116.102,OK,OK,+8,+180,+0.0138834,+856.913,+61722.3,-427.411,OK,OK
-2020-12-18 16:00:00 PST,+0,+0,+5,+270,+0.0302869,+1869.37,+61722.3,+50.8208,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+251.16,OK,OK
-2020-12-18 17:00:00 PST,+2.1,+60,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 18:00:00 PST,+5.1,+110,+5,+270,+0.0269913,+1665.97,+61722.3,-73.4081,OK,OK,+8,+180,+0.0142668,+880.578,+61722.3,-271.703,OK,OK
-2020-12-18 19:00:00 PST,+1.5,+210,+5,+270,+0.0355044,+2191.41,+61722.3,+171.199,OK,OK,+8,+180,+0.00862397,+532.291,+61722.3,+460.082,OK,OK
-2020-12-18 20:00:00 PST,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-12-18 21:00:00 PST,+3.1,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-18 22:00:00 PST,+2.1,+30,+5,+270,+0.0282616,+1744.37,+61722.3,-52.5069,OK,OK,+8,+180,+0.0121556,+750.272,+61722.3,-353.609,OK,OK
-2020-12-18 23:00:00 PST,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-12-19 00:00:00 PST,+2.1,+30,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 01:00:00 PST,+0,+0,+5,+270,+0.0267085,+1648.51,+61722.3,-94.2052,OK,OK,+8,+180,+0.0151418,+934.588,+61722.3,-290.895,OK,OK
-2020-12-19 02:00:00 PST,+2.1,+90,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 03:00:00 PST,+3.1,+110,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-12-19 04:00:00 PST,+2.6,+10,+5,+270,+0.0281181,+1735.51,+61722.3,-6.45008,OK,OK,+8,+180,+0.0117186,+723.298,+61722.3,-121.029,OK,OK
-2020-12-19 05:00:00 PST,+2.1,+10,+5,+270,+0.0267879,+1653.41,+61722.3,-105.53,OK,OK,+8,+180,+0.0152969,+944.161,+61722.3,-314.292,OK,OK
-2020-12-19 06:00:00 PST,+2.1,+50,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-12-19 07:00:00 PST,+2.6,+50,+5,+270,+0.0263728,+1627.79,+61722.3,-98.9294,OK,OK,+8,+180,+0.0161528,+996.987,+61722.3,-260.329,OK,OK
-2020-12-19 08:00:00 PST,+2.6,+50,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-12-19 09:00:00 PST,+0,+0,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-12-19 10:00:00 PST,+3.1,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 11:00:00 PST,+5.7,+130,+5,+270,+0.0281181,+1735.51,+61722.3,-6.45008,OK,OK,+8,+180,+0.0117186,+723.298,+61722.3,-121.029,OK,OK
-2020-12-19 12:00:00 PST,+4.6,+150,+5,+270,+0.0333054,+2055.68,+61722.3,+35.3941,OK,OK,+8,+180,+0.0087431,+539.644,+61722.3,+79.4888,OK,OK
-2020-12-19 13:00:00 PST,+6.7,+160,+5,+270,+0.0263427,+1625.93,+61722.3,+22.3038,OK,OK,+8,+180,+0.0138941,+857.577,+61722.3,+122.828,OK,OK
-2020-12-19 14:00:00 PST,+5.1,+130,+5,+270,+0.0244765,+1510.74,+61722.3,+66.4476,OK,OK,+8,+180,+0.0157544,+972.395,+61722.3,+271.996,OK,OK
-2020-12-19 15:00:00 PST,+4.1,+150,+5,+270,+0.0311612,+1923.34,+61722.3,+21.7708,OK,OK,+8,+180,+0.00874172,+539.558,+61722.3,+28.5942,OK,OK
-2020-12-19 16:00:00 PST,+2.6,+140,+5,+270,+0.0261148,+1611.87,+61722.3,+31.5688,OK,OK,+8,+180,+0.0146171,+902.198,+61722.3,+124.392,OK,OK
-2020-12-19 17:00:00 PST,+2.1,+230,+5,+270,+0.0261254,+1612.52,+61722.3,+10.4088,OK,OK,+8,+180,+0.0155434,+959.372,+61722.3,+31.0761,OK,OK
-2020-12-19 18:00:00 PST,+0,+0,+5,+270,+0.027489,+1696.68,+61722.3,+121.803,OK,OK,+8,+180,+0.0154691,+954.787,+61722.3,+341.784,OK,OK
-2020-12-19 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 22:00:00 PST,+1.5,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-19 23:00:00 PST,+0,+0,+5,+270,+0.0262564,+1620.61,+61722.3,-82.3902,OK,OK,+8,+180,+0.016064,+991.504,+61722.3,-221.046,OK,OK
-2020-12-20 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 06:00:00 PST,+2.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 07:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-12-20 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 13:00:00 PST,+2.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-20 14:00:00 PST,+3.6,+250,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-20 15:00:00 PST,+3.6,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-12-20 16:00:00 PST,+4.1,+280,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-12-20 17:00:00 PST,+4.1,+270,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-12-20 18:00:00 PST,+2.1,+290,+5,+270,+0.0379905,+2344.86,+61722.3,-13.4086,OK,OK,+8,+180,+0.00297765,+183.787,+61722.3,+577.904,OK,OK
-2020-12-20 19:00:00 PST,+3.1,+300,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-12-20 20:00:00 PST,+3.1,+320,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-12-20 21:00:00 PST,+2.6,+290,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-12-20 22:00:00 PST,+2.6,+280,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-20 23:00:00 PST,+1.5,+320,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-21 00:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-12-21 01:00:00 PST,+1.5,+160,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 02:00:00 PST,+0,+0,+5,+270,+0.0255816,+1578.95,+61722.3,+44.7792,OK,OK,+8,+180,+0.0176431,+1088.97,+61722.3,+98.1394,OK,OK
-2020-12-21 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 04:00:00 PST,+1.5,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 05:00:00 PST,+0,+0,+5,+270,+0.026768,+1652.18,+61722.3,+91.6072,OK,OK,+8,+180,+0.0163225,+1007.46,+61722.3,+232.402,OK,OK
-2020-12-21 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 09:00:00 PST,+1.1,+70,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 10:00:00 PST,+2.1,+140,+5,+270,+0.0259732,+1603.13,+61722.3,-62.0455,OK,OK,+8,+180,+0.0167657,+1034.82,+61722.3,-151.219,OK,OK
-2020-12-21 11:00:00 PST,+0,+0,+5,+270,+0.0259332,+1600.65,+61722.3,+10.1183,OK,OK,+8,+180,+0.0163017,+1006.18,+61722.3,+26.5241,OK,OK
-2020-12-21 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 13:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 14:00:00 PST,+3.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 15:00:00 PST,+7.2,+250,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-12-21 16:00:00 PST,+5.7,+260,+5,+270,+0.0604684,+3732.25,+61722.3,-333.187,OK,OK,+8,+180,+0.0215553,+1330.44,+61722.3,-637.278,OK,OK
-2020-12-21 17:00:00 PST,+3.6,+290,+5,+270,+0.048868,+3016.24,+61722.3,-158.243,OK,OK,+8,+180,+0.00959725,+592.364,+61722.3,-336.063,OK,OK
-2020-12-21 18:00:00 PST,+3.6,+280,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-12-21 19:00:00 PST,+0,+0,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-12-21 20:00:00 PST,+2.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-21 21:00:00 PST,+2.1,+140,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-21 22:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-21 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 01:00:00 PST,+1.5,+40,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 02:00:00 PST,+2.6,+120,+5,+270,+0.0262178,+1618.22,+61722.3,-85.093,OK,OK,+8,+180,+0.0162187,+1001.05,+61722.3,-223.061,OK,OK
-2020-12-22 03:00:00 PST,+0,+0,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-12-22 04:00:00 PST,+2.6,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 05:00:00 PST,+0,+0,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-12-22 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 07:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 08:00:00 PST,+0,+0,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-22 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 10:00:00 PST,+1.5,+320,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 11:00:00 PST,+0,+0,+5,+270,+0.026795,+1653.84,+61722.3,-7.92056,OK,OK,+8,+180,+0.0161008,+993.779,+61722.3,-20.7044,OK,OK
-2020-12-22 12:00:00 PST,+3.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 13:00:00 PST,+7.7,+100,+5,+270,+0.0289646,+1787.76,+61722.3,-6.34541,OK,OK,+8,+180,+0.0108248,+668.132,+61722.3,-286.598,OK,OK
-2020-12-22 14:00:00 PST,+2.6,+360,+5,+270,+0.0607283,+3748.29,+61722.3,+714.989,OK,OK,+8,+180,+0.0340105,+2099.2,+61722.3,+1138.7,OK,OK
-2020-12-22 15:00:00 PST,+1.5,+290,+5,+270,+0.0264801,+1634.41,+61722.3,-108.816,OK,OK,+8,+180,+0.0162031,+1000.09,+61722.3,-283.036,OK,OK
-2020-12-22 16:00:00 PST,+2.6,+90,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-22 17:00:00 PST,+2.1,+50,+5,+270,+0.027721,+1711,+61722.3,-30.7319,OK,OK,+8,+180,+0.0125847,+776.755,+61722.3,-205.059,OK,OK
-2020-12-22 18:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-22 19:00:00 PST,+3.1,+220,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 20:00:00 PST,+0,+0,+5,+270,+0.0287702,+1775.76,+61722.3,+158.186,OK,OK,+8,+180,+0.0140846,+869.333,+61722.3,+526.662,OK,OK
-2020-12-22 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 22:00:00 PST,+2.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-22 23:00:00 PST,+1.5,+60,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-23 00:00:00 PST,+0,+0,+5,+270,+0.0262762,+1621.82,+61722.3,-78.0407,OK,OK,+8,+180,+0.0159611,+985.153,+61722.3,-212.806,OK,OK
-2020-12-23 01:00:00 PST,+2.6,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-23 02:00:00 PST,+2.6,+310,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-23 03:00:00 PST,+2.6,+10,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-23 04:00:00 PST,+1.5,+340,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-23 05:00:00 PST,+0,+0,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-23 06:00:00 PST,+4.1,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-23 07:00:00 PST,+5.7,+50,+5,+270,+0.0330613,+2040.62,+61722.3,+173.636,OK,OK,+8,+180,+0.00724334,+447.076,+61722.3,+344.607,OK,OK
-2020-12-23 08:00:00 PST,+4.6,+30,+5,+270,+0.0421667,+2602.63,+61722.3,+573.114,OK,OK,+8,+180,+0.012157,+750.36,+61722.3,+1522.51,OK,OK
-2020-12-23 09:00:00 PST,+3.1,+350,+5,+270,+0.0326882,+2017.59,+61722.3,+157.514,OK,OK,+8,+180,+0.00677626,+418.246,+61722.3,+130.665,OK,OK
-2020-12-23 10:00:00 PST,+2.6,+30,+5,+270,+0.0279614,+1725.84,+61722.3,-79.3691,OK,OK,+8,+180,+0.0141107,+870.946,+61722.3,-274.587,OK,OK
-2020-12-23 11:00:00 PST,+5.7,+70,+5,+270,+0.0273706,+1689.38,+61722.3,-82.9282,OK,OK,+8,+180,+0.0137729,+850.096,+61722.3,-335.303,OK,OK
-2020-12-23 12:00:00 PST,+8.2,+60,+5,+270,+0.0440206,+2717.05,+61722.3,+585.713,OK,OK,+8,+180,+0.0148852,+918.751,+61722.3,+1383.37,OK,OK
-2020-12-23 13:00:00 PST,+9.3,+80,+5,+270,+0.07089,+4375.49,+61722.3,+1315.99,OK,OK,+8,+180,+0.0431824,+2665.31,+61722.3,+1961.28,OK,OK
-2020-12-23 14:00:00 PST,+5.1,+100,+5,+270,+0.0890658,+5497.34,+61722.3,+1415.96,OK,OK,+8,+180,+0.0627672,+3874.13,+61722.3,+1870.6,OK,OK
-2020-12-23 15:00:00 PST,+9.3,+90,+5,+270,+0.0371972,+2295.9,+61722.3,+256.534,OK,OK,+8,+180,+0.00938051,+578.986,+61722.3,+710.251,OK,OK
-2020-12-23 16:00:00 PST,+8.2,+90,+5,+270,+0.0866342,+5347.26,+61722.3,+1225.98,OK,OK,+8,+180,+0.0606449,+3743.14,+61722.3,+1628.04,OK,OK
-2020-12-23 17:00:00 PST,+7.7,+70,+5,+270,+0.0704302,+4347.11,+61722.3,+999.425,OK,OK,+8,+180,+0.0438234,+2704.88,+61722.3,+1462.02,OK,OK
-2020-12-23 18:00:00 PST,+9.3,+90,+5,+270,+0.0657046,+4055.43,+61722.3,+1131.38,OK,OK,+8,+180,+0.0381074,+2352.08,+61722.3,+1754.38,OK,OK
-2020-12-23 19:00:00 PST,+10.3,+70,+5,+270,+0.0866342,+5347.26,+61722.3,+1225.98,OK,OK,+8,+180,+0.0606449,+3743.14,+61722.3,+1628.04,OK,OK
-2020-12-23 20:00:00 PST,+10.3,+50,+5,+270,+0.106499,+6573.36,+61722.3,+1800.23,OK,OK,+8,+180,+0.0802322,+4952.11,+61722.3,+2251.21,OK,OK
-2020-12-23 21:00:00 PST,+7.7,+60,+5,+270,+0.106499,+6573.36,+61722.3,+1800.23,OK,OK,+8,+180,+0.0802322,+4952.11,+61722.3,+2251.21,OK,OK
-2020-12-23 22:00:00 PST,+7.7,+70,+5,+270,+0.0643505,+3971.86,+61722.3,+1174.79,OK,OK,+8,+180,+0.0363023,+2240.66,+61722.3,+1863.99,OK,OK
-2020-12-23 23:00:00 PST,+6.7,+50,+5,+270,+0.0643505,+3971.86,+61722.3,+1174.79,OK,OK,+8,+180,+0.0363023,+2240.66,+61722.3,+1863.99,OK,OK
-2020-12-24 00:00:00 PST,+7.7,+70,+5,+270,+0.0508605,+3139.23,+61722.3,+865.431,OK,OK,+8,+180,+0.0214626,+1324.72,+61722.3,+1732.38,OK,OK
-2020-12-24 01:00:00 PST,+5.7,+60,+5,+270,+0.0657046,+4055.43,+61722.3,+1131.38,OK,OK,+8,+180,+0.0381074,+2352.08,+61722.3,+1754.38,OK,OK
-2020-12-24 02:00:00 PST,+6.7,+50,+5,+270,+0.0434383,+2681.11,+61722.3,+598.723,OK,OK,+8,+180,+0.0138923,+857.462,+61722.3,+1475.05,OK,OK
-2020-12-24 03:00:00 PST,+8.2,+90,+5,+270,+0.0508605,+3139.23,+61722.3,+865.431,OK,OK,+8,+180,+0.0214626,+1324.72,+61722.3,+1732.38,OK,OK
-2020-12-24 04:00:00 PST,+4.6,+40,+5,+270,+0.0704302,+4347.11,+61722.3,+999.425,OK,OK,+8,+180,+0.0438234,+2704.88,+61722.3,+1462.02,OK,OK
-2020-12-24 05:00:00 PST,+3.6,+360,+5,+270,+0.0339603,+2096.11,+61722.3,+228.452,OK,OK,+8,+180,+0.00637605,+393.544,+61722.3,+522.62,OK,OK
-2020-12-24 06:00:00 PST,+3.1,+300,+5,+270,+0.0272918,+1684.51,+61722.3,-120.116,OK,OK,+8,+180,+0.0147705,+911.667,+61722.3,-382.307,OK,OK
-2020-12-24 07:00:00 PST,+1.5,+290,+5,+270,+0.0320344,+1977.24,+61722.3,+16.82,OK,OK,+8,+180,+0.00937346,+578.551,+61722.3,+137.757,OK,OK
-2020-12-24 08:00:00 PST,+2.1,+280,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-24 09:00:00 PST,+0,+0,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-12-24 10:00:00 PST,+3.6,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-24 11:00:00 PST,+4.1,+290,+5,+270,+0.0348648,+2151.94,+61722.3,+10.146,OK,OK,+8,+180,+0.00614119,+379.048,+61722.3,+291.226,OK,OK
-2020-12-24 12:00:00 PST,+3.6,+310,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-12-24 13:00:00 PST,+4.6,+320,+5,+270,+0.0337883,+2085.49,+61722.3,+2.99779,OK,OK,+8,+180,+0.00715583,+441.674,+61722.3,+55.4563,OK,OK
-2020-12-24 14:00:00 PST,+4.1,+290,+5,+270,+0.0379613,+2343.06,+61722.3,+4.92843,OK,OK,+8,+180,+0.00219825,+135.681,+61722.3,-88.3922,OK,OK
-2020-12-24 15:00:00 PST,+2.6,+320,+5,+270,+0.0378809,+2338.1,+61722.3,-11.6438,OK,OK,+8,+180,+0.00289872,+178.915,+61722.3,+414.989,OK,OK
-2020-12-24 16:00:00 PST,+3.1,+280,+5,+270,+0.0292264,+1803.92,+61722.3,-8.72194,OK,OK,+8,+180,+0.0127574,+787.413,+61722.3,-36.544,OK,OK
-2020-12-24 17:00:00 PST,+2.1,+300,+5,+270,+0.0323929,+1999.36,+61722.3,+37.2165,OK,OK,+8,+180,+0.00911888,+562.838,+61722.3,+315.052,OK,OK
-2020-12-24 18:00:00 PST,+0,+0,+5,+270,+0.0284488,+1755.92,+61722.3,+25.241,OK,OK,+8,+180,+0.0139098,+858.545,+61722.3,+87.9672,OK,OK
-2020-12-24 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-24 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-24 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-24 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-24 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 00:00:00 PST,+2.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 01:00:00 PST,+0,+0,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-25 02:00:00 PST,+1.5,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 03:00:00 PST,+1.5,+70,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-25 04:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-25 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 06:00:00 PST,+2.1,+290,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 07:00:00 PST,+0,+0,+5,+270,+0.0285769,+1763.83,+61722.3,+40.8133,OK,OK,+8,+180,+0.0137877,+851.011,+61722.3,+144.466,OK,OK
-2020-12-25 08:00:00 PST,+1.5,+350,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 09:00:00 PST,+0,+0,+5,+270,+0.0261714,+1615.36,+61722.3,-56.7404,OK,OK,+8,+180,+0.0169127,+1043.89,+61722.3,-134.873,OK,OK
-2020-12-25 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 12:00:00 PST,+1.5,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 13:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-25 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 15:00:00 PST,+2.6,+240,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-25 16:00:00 PST,+4.6,+240,+5,+270,+0.0290852,+1795.21,+61722.3,+115.044,OK,OK,+8,+180,+0.0134349,+829.231,+61722.3,+422.9,OK,OK
-2020-12-25 17:00:00 PST,+2.6,+300,+5,+270,+0.0370998,+2289.88,+61722.3,+21.8758,OK,OK,+8,+180,+0.00468467,+289.148,+61722.3,+1068.23,OK,OK
-2020-12-25 18:00:00 PST,+2.1,+310,+5,+270,+0.0300352,+1853.84,+61722.3,+23.0229,OK,OK,+8,+180,+0.0118567,+731.824,+61722.3,+111.307,OK,OK
-2020-12-25 19:00:00 PST,+2.1,+320,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-12-25 20:00:00 PST,+2.1,+300,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-12-25 21:00:00 PST,+1.5,+290,+5,+270,+0.0282323,+1742.56,+61722.3,+8.71881,OK,OK,+8,+180,+0.0141493,+873.329,+61722.3,+29.4243,OK,OK
-2020-12-25 22:00:00 PST,+0,+0,+5,+270,+0.0271133,+1673.5,+61722.3,+37.1149,OK,OK,+8,+180,+0.0157368,+971.312,+61722.3,+101.286,OK,OK
-2020-12-25 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 01:00:00 PST,+1.5,+300,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 02:00:00 PST,+1.5,+360,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-12-26 03:00:00 PST,+0,+0,+5,+270,+0.0270492,+1669.54,+61722.3,+22.835,OK,OK,+8,+180,+0.0157995,+975.179,+61722.3,+61.8703,OK,OK
-2020-12-26 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 10:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 11:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 12:00:00 PST,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 13:00:00 PST,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-12-26 14:00:00 PST,+2.6,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 15:00:00 PST,+2.1,+190,+5,+270,+0.0268718,+1658.59,+61722.3,-20.1462,OK,OK,+8,+180,+0.0139969,+863.923,+61722.3,-83.6886,OK,OK
-2020-12-26 16:00:00 PST,+0,+0,+5,+270,+0.0256409,+1582.61,+61722.3,+132.657,OK,OK,+8,+180,+0.0181069,+1117.6,+61722.3,+275.478,OK,OK
-2020-12-26 17:00:00 PST,+2.1,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-26 18:00:00 PST,+1.5,+340,+5,+270,+0.0286123,+1766.02,+61722.3,+55.742,OK,OK,+8,+180,+0.0137867,+850.947,+61722.3,+196.942,OK,OK
-2020-12-26 19:00:00 PST,+2.6,+290,+5,+270,+0.0264031,+1629.66,+61722.3,-40.4747,OK,OK,+8,+180,+0.0166038,+1024.82,+61722.3,-99.7081,OK,OK
-2020-12-26 20:00:00 PST,+1.5,+10,+5,+270,+0.0302348,+1866.16,+61722.3,+36.9554,OK,OK,+8,+180,+0.0116714,+720.384,+61722.3,+183.638,OK,OK
-2020-12-26 21:00:00 PST,+1.5,+90,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-26 22:00:00 PST,+3.1,+160,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-26 23:00:00 PST,+0,+0,+5,+270,+0.0253352,+1563.75,+61722.3,+82.4413,OK,OK,+8,+180,+0.0172462,+1064.48,+61722.3,+191.518,OK,OK
-2020-12-27 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 02:00:00 PST,+1.5,+250,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 03:00:00 PST,+0,+0,+5,+270,+0.0269198,+1661.55,+61722.3,+83.6694,OK,OK,+8,+180,+0.0160946,+993.396,+61722.3,+218.172,OK,OK
-2020-12-27 04:00:00 PST,+1.5,+210,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 05:00:00 PST,+0,+0,+5,+270,+0.026141,+1613.48,+61722.3,+101.258,OK,OK,+8,+180,+0.0172355,+1063.82,+61722.3,+231.262,OK,OK
-2020-12-27 06:00:00 PST,+2.1,+120,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 07:00:00 PST,+0,+0,+5,+270,+0.0263729,+1627.79,+61722.3,-24.2283,OK,OK,+8,+180,+0.0152699,+942.491,+61722.3,-75.013,OK,OK
-2020-12-27 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 09:00:00 PST,+2.1,+50,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 10:00:00 PST,+3.6,+90,+5,+270,+0.0269368,+1662.6,+61722.3,-80.7927,OK,OK,+8,+180,+0.0144603,+892.524,+61722.3,-285.544,OK,OK
-2020-12-27 11:00:00 PST,+3.1,+110,+5,+270,+0.0305399,+1884.99,+61722.3,+69.0667,OK,OK,+8,+180,+0.00875587,+540.432,+61722.3,-36.9228,OK,OK
-2020-12-27 12:00:00 PST,+0,+0,+5,+270,+0.0281181,+1735.51,+61722.3,-6.45008,OK,OK,+8,+180,+0.0117186,+723.298,+61722.3,-121.029,OK,OK
-2020-12-27 13:00:00 PST,+2.6,+80,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 14:00:00 PST,+0,+0,+5,+270,+0.0278649,+1719.88,+61722.3,-33.0085,OK,OK,+8,+180,+0.0123998,+765.342,+61722.3,-235.745,OK,OK
-2020-12-27 15:00:00 PST,+3.1,+270,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 16:00:00 PST,+3.1,+340,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-12-27 17:00:00 PST,+1.5,+360,+5,+270,+0.0322448,+1990.22,+61722.3,+50.0324,OK,OK,+8,+180,+0.00938413,+579.21,+61722.3,+390.8,OK,OK
-2020-12-27 18:00:00 PST,+0,+0,+5,+270,+0.0259258,+1600.2,+61722.3,-72.439,OK,OK,+8,+180,+0.0172478,+1064.57,+61722.3,-165.755,OK,OK
-2020-12-27 19:00:00 PST,+5.7,+100,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-27 20:00:00 PST,+5.7,+100,+5,+270,+0.0413661,+2553.21,+61722.3,+358.912,OK,OK,+8,+180,+0.0132807,+819.712,+61722.3,+871.838,OK,OK
-2020-12-27 21:00:00 PST,+4.1,+90,+5,+270,+0.0413661,+2553.21,+61722.3,+358.912,OK,OK,+8,+180,+0.0132807,+819.712,+61722.3,+871.838,OK,OK
-2020-12-27 22:00:00 PST,+3.1,+90,+5,+270,+0.0326373,+2014.45,+61722.3,+144.87,OK,OK,+8,+180,+0.0074893,+462.256,+61722.3,+257.72,OK,OK
-2020-12-27 23:00:00 PST,+3.1,+110,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-12-28 00:00:00 PST,+2.1,+90,+5,+270,+0.0289208,+1785.06,+61722.3,+9.89236,OK,OK,+8,+180,+0.0106476,+657.195,+61722.3,-168.157,OK,OK
-2020-12-28 01:00:00 PST,+3.6,+90,+5,+270,+0.026871,+1658.54,+61722.3,-52.6687,OK,OK,+8,+180,+0.0143181,+883.745,+61722.3,-195.758,OK,OK
-2020-12-28 02:00:00 PST,+6.2,+100,+5,+270,+0.0305399,+1884.99,+61722.3,+69.0667,OK,OK,+8,+180,+0.00875587,+540.432,+61722.3,-36.9228,OK,OK
-2020-12-28 03:00:00 PST,+7.7,+100,+5,+270,+0.0454256,+2803.77,+61722.3,+447.453,OK,OK,+8,+180,+0.0175644,+1084.12,+61722.3,+951.999,OK,OK
-2020-12-28 04:00:00 PST,+2.1,+70,+5,+270,+0.0607283,+3748.29,+61722.3,+714.989,OK,OK,+8,+180,+0.0340105,+2099.2,+61722.3,+1138.7,OK,OK
-2020-12-28 05:00:00 PST,+5.1,+100,+5,+270,+0.0269993,+1666.46,+61722.3,-66.2987,OK,OK,+8,+180,+0.014178,+875.099,+61722.3,-251.716,OK,OK
-2020-12-28 06:00:00 PST,+5.7,+100,+5,+270,+0.0371972,+2295.9,+61722.3,+256.534,OK,OK,+8,+180,+0.00938051,+578.986,+61722.3,+710.251,OK,OK
-2020-12-28 07:00:00 PST,+4.1,+90,+5,+270,+0.0413661,+2553.21,+61722.3,+358.912,OK,OK,+8,+180,+0.0132807,+819.712,+61722.3,+871.838,OK,OK
-2020-12-28 08:00:00 PST,+4.1,+90,+5,+270,+0.0326373,+2014.45,+61722.3,+144.87,OK,OK,+8,+180,+0.0074893,+462.256,+61722.3,+257.72,OK,OK
-2020-12-28 09:00:00 PST,+2.6,+60,+5,+270,+0.0326373,+2014.45,+61722.3,+144.87,OK,OK,+8,+180,+0.0074893,+462.256,+61722.3,+257.72,OK,OK
-2020-12-28 10:00:00 PST,+0,+0,+5,+270,+0.0278972,+1721.88,+61722.3,-44.9875,OK,OK,+8,+180,+0.01249,+770.912,+61722.3,-289.461,OK,OK
-2020-12-28 11:00:00 PST,+8.2,+280,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-28 12:00:00 PST,+4.6,+10,+5,+270,+0.0814402,+5026.67,+61722.3,-374.385,OK,OK,+8,+180,+0.0434678,+2682.93,+61722.3,-590.783,OK,OK
-2020-12-28 13:00:00 PST,+0,+0,+5,+270,+0.0298046,+1839.61,+61722.3,-21.1028,OK,OK,+8,+180,+0.0102049,+629.871,+61722.3,-410.124,OK,OK
-2020-12-28 14:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-28 15:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-28 16:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-28 17:00:00 PST,+2.6,+110,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-28 18:00:00 PST,+2.1,+110,+5,+270,+0.0272103,+1679.48,+61722.3,-26.3521,OK,OK,+8,+180,+0.0133915,+826.555,+61722.3,-130.513,OK,OK
-2020-12-28 19:00:00 PST,+1.5,+70,+5,+270,+0.0265705,+1639.99,+61722.3,-35.9571,OK,OK,+8,+180,+0.0148624,+917.341,+61722.3,-119.997,OK,OK
-2020-12-28 20:00:00 PST,+2.6,+20,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-12-28 21:00:00 PST,+0,+0,+5,+270,+0.0270908,+1672.11,+61722.3,-96.0178,OK,OK,+8,+180,+0.0144788,+893.664,+61722.3,-331.448,OK,OK
-2020-12-28 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-28 23:00:00 PST,+2.1,+20,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-29 00:00:00 PST,+2.6,+50,+5,+270,+0.0265496,+1638.7,+61722.3,-98.2772,OK,OK,+8,+180,+0.0156124,+963.63,+61722.3,-280.439,OK,OK
-2020-12-29 01:00:00 PST,+1.5,+70,+5,+270,+0.0277891,+1715.2,+61722.3,-55.6492,OK,OK,+8,+180,+0.012768,+788.072,+61722.3,-311.54,OK,OK
-2020-12-29 02:00:00 PST,+3.2,+100,+5,+270,+0.0262755,+1621.78,+61722.3,-72.2678,OK,OK,+8,+180,+0.0159128,+982.171,+61722.3,-198.715,OK,OK
-2020-12-29 03:00:00 PST,+4.4,+120,+5,+270,+0.0288328,+1779.63,+61722.3,+9.49883,OK,OK,+8,+180,+0.0107133,+661.25,+61722.3,-136.773,OK,OK
-2020-12-29 04:00:00 PST,+2.1,+130,+5,+270,+0.0307509,+1898.02,+61722.3,+43.8981,OK,OK,+8,+180,+0.00873363,+539.059,+61722.3,+29.4078,OK,OK
-2020-12-29 05:00:00 PST,+4.1,+160,+5,+270,+0.0261567,+1614.45,+61722.3,-9.06771,OK,OK,+8,+180,+0.015754,+972.375,+61722.3,-25.8645,OK,OK
-2020-12-29 06:00:00 PST,+4.8,+190,+5,+270,+0.0251159,+1550.21,+61722.3,+95.6279,OK,OK,+8,+180,+0.0168843,+1042.14,+61722.3,+237.621,OK,OK
-2020-12-29 07:00:00 PST,+4.5,+20,+5,+270,+0.0256279,+1581.81,+61722.3,+371.594,OK,OK,+8,+180,+0.0195623,+1207.43,+61722.3,+671.136,OK,OK
-2020-12-29 08:00:00 PST,+5,+40,+5,+270,+0.0309617,+1911.02,+61722.3,+56.5176,OK,OK,+8,+180,+0.00843793,+520.808,+61722.3,-252.21,OK,OK
-2020-12-29 09:00:00 PST,+5.4,+220,+5,+270,+0.0360093,+2222.58,+61722.3,+323.68,OK,OK,+8,+180,+0.00660802,+407.862,+61722.3,+1030.01,OK,OK
-2020-12-29 10:00:00 PST,+5.1,+210,+5,+270,+0.035537,+2193.43,+61722.3,+100.4,OK,OK,+8,+180,+0.0070282,+433.796,+61722.3,+1225.54,OK,OK
-2020-12-29 11:00:00 PST,+8.7,+210,+5,+270,+0.0313888,+1937.39,+61722.3,+211.892,OK,OK,+8,+180,+0.0117742,+726.727,+61722.3,+953.888,OK,OK
-2020-12-29 12:00:00 PST,+7.7,+200,+5,+270,+0.0430063,+2654.44,+61722.3,+69.016,OK,OK,+8,+180,+0.00613447,+378.634,+61722.3,+1773.71,OK,OK
-2020-12-29 13:00:00 PST,+7.7,+230,+5,+270,+0.0319203,+1970.19,+61722.3,+434.304,OK,OK,+8,+180,+0.0135224,+834.631,+61722.3,+1501.13,OK,OK
-2020-12-29 14:00:00 PST,+7.7,+230,+5,+270,+0.0319203,+1970.19,+61722.3,+434.304,OK,OK,+8,+180,+0.0135224,+834.631,+61722.3,+1501.13,OK,OK
-2020-12-29 15:00:00 PST,+5.1,+220,+5,+270,+0.0319203,+1970.19,+61722.3,+434.304,OK,OK,+8,+180,+0.0135224,+834.631,+61722.3,+1501.13,OK,OK
-2020-12-29 16:00:00 PST,+5.1,+210,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-12-29 17:00:00 PST,+2.6,+220,+5,+270,+0.034417,+2124.29,+61722.3,+117.184,OK,OK,+8,+180,+0.00807841,+498.618,+61722.3,+1088.13,OK,OK
-2020-12-29 18:00:00 PST,+2.4,+230,+5,+270,+0.0278292,+1717.68,+61722.3,+148.154,OK,OK,+8,+180,+0.0151708,+936.374,+61722.3,+430.022,OK,OK
-2020-12-29 19:00:00 PST,+2.2,+240,+5,+270,+0.0280645,+1732.2,+61722.3,+129.266,OK,OK,+8,+180,+0.0147678,+911.501,+61722.3,+395.86,OK,OK
-2020-12-29 20:00:00 PST,+2,+250,+5,+270,+0.028084,+1733.41,+61722.3,+112.414,OK,OK,+8,+180,+0.0146616,+904.946,+61722.3,+349.853,OK,OK
-2020-12-29 21:00:00 PST,+1.9,+260,+5,+270,+0.0279313,+1723.98,+61722.3,+96.6542,OK,OK,+8,+180,+0.0147947,+913.161,+61722.3,+296.186,OK,OK
-2020-12-29 22:00:00 PST,+1.7,+270,+5,+270,+0.0278917,+1721.54,+61722.3,+82.5878,OK,OK,+8,+180,+0.0148001,+913.497,+61722.3,+253.254,OK,OK
-2020-12-29 23:00:00 PST,+1.5,+280,+5,+270,+0.0275286,+1699.13,+61722.3,+66.8279,OK,OK,+8,+180,+0.0152363,+940.42,+61722.3,+193.929,OK,OK
-2020-12-30 00:00:00 PST,+1.3,+290,+5,+270,+0.0271322,+1674.66,+61722.3,+50.4984,OK,OK,+8,+180,+0.0157359,+971.257,+61722.3,+137.748,OK,OK
-2020-12-30 01:00:00 PST,+1.1,+300,+5,+270,+0.0267446,+1650.73,+61722.3,+34.0651,OK,OK,+8,+180,+0.0162426,+1002.53,+61722.3,+87.4163,OK,OK
-2020-12-30 02:00:00 PST,+0.9,+310,+5,+270,+0.0263981,+1629.35,+61722.3,+18.5598,OK,OK,+8,+180,+0.0167099,+1031.38,+61722.3,+45.0867,OK,OK
-2020-12-30 03:00:00 PST,+0.7,+320,+5,+270,+0.0261142,+1611.83,+61722.3,+5.33234,OK,OK,+8,+180,+0.0171044,+1055.72,+61722.3,+12.3819,OK,OK
-2020-12-30 04:00:00 PST,+0.6,+330,+5,+270,+0.0259031,+1598.8,+61722.3,-4.28168,OK,OK,+8,+180,+0.0174062,+1074.35,+61722.3,-9.61119,OK,OK
-2020-12-30 05:00:00 PST,+0.4,+340,+5,+270,+0.0258105,+1593.08,+61722.3,-11.0509,OK,OK,+8,+180,+0.0175394,+1082.57,+61722.3,-24.4431,OK,OK
-2020-12-30 06:00:00 PST,+0.2,+350,+5,+270,+0.025713,+1587.06,+61722.3,-12.2206,OK,OK,+8,+180,+0.0176867,+1091.67,+61722.3,-26.5952,OK,OK
-2020-12-30 07:00:00 PST,+0,+0,+5,+270,+0.0256702,+1584.42,+61722.3,-8.35431,OK,OK,+8,+180,+0.0177544,+1095.84,+61722.3,-18.0467,OK,OK
-2020-12-30 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 09:00:00 PST,+1.1,+360,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 10:00:00 PST,+2.1,+360,+5,+270,+0.0258025,+1592.59,+61722.3,-54.7891,OK,OK,+8,+180,+0.017489,+1079.46,+61722.3,-121.938,OK,OK
-2020-12-30 11:00:00 PST,+0,+0,+5,+270,+0.0261873,+1616.34,+61722.3,-94.88,OK,OK,+8,+180,+0.0167472,+1033.68,+61722.3,-230.461,OK,OK
-2020-12-30 12:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 13:00:00 PST,+1.5,+10,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 14:00:00 PST,+1.6,+260,+5,+270,+0.026013,+1605.58,+61722.3,-79.863,OK,OK,+8,+180,+0.0169431,+1045.77,+61722.3,-189.749,OK,OK
-2020-12-30 15:00:00 PST,+0.6,+330,+5,+270,+0.0272274,+1680.54,+61722.3,+76.7334,OK,OK,+8,+180,+0.0156627,+966.74,+61722.3,+210.949,OK,OK
-2020-12-30 16:00:00 PST,+1.3,+350,+5,+270,+0.0258105,+1593.08,+61722.3,-11.0509,OK,OK,+8,+180,+0.0175394,+1082.57,+61722.3,-24.4431,OK,OK
-2020-12-30 17:00:00 PST,+0.9,+20,+5,+270,+0.0260427,+1607.41,+61722.3,-50.459,OK,OK,+8,+180,+0.017126,+1057.06,+61722.3,-116.999,OK,OK
-2020-12-30 18:00:00 PST,+0,+0,+5,+270,+0.0258114,+1593.14,+61722.3,-56.2512,OK,OK,+8,+180,+0.017371,+1072.17,+61722.3,-127.002,OK,OK
-2020-12-30 19:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 20:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 21:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 22:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-30 23:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 00:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 01:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 02:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 03:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 04:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 05:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 06:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 07:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 08:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 09:00:00 PST,+0,+0,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 10:00:00 PST,+0.9,+340,+5,+270,+0.0256613,+1583.87,+61722.3,+0,OK,OK,+8,+180,+0.0177696,+1096.78,+61722.3,+0,OK,OK
-2020-12-31 11:00:00 PST,+1.7,+320,+5,+270,+0.0259247,+1600.13,+61722.3,-26.4822,OK,OK,+8,+180,+0.0173499,+1070.88,+61722.3,-59.8349,OK,OK
-2020-12-31 12:00:00 PST,+2.6,+310,+5,+270,+0.0271278,+1674.39,+61722.3,-8.48015,OK,OK,+8,+180,+0.0156262,+964.486,+61722.3,-23.5149,OK,OK
-2020-12-31 13:00:00 PST,+2.6,+290,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-12-31 14:00:00 PST,+2.6,+270,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-12-31 15:00:00 PST,+2.6,+250,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-12-31 16:00:00 PST,+4.1,+220,+5,+270,+0.0296949,+1832.84,+61722.3,+8.1193,OK,OK,+8,+180,+0.0122223,+754.387,+61722.3,+37.0274,OK,OK
-2020-12-31 17:00:00 PST,+2.6,+230,+5,+270,+0.0312059,+1926.1,+61722.3,+153.818,OK,OK,+8,+180,+0.0113797,+702.383,+61722.3,+756.259,OK,OK
-2020-12-31 18:00:00 PST,+3.1,+240,+5,+270,+0.028495,+1758.78,+61722.3,+132.324,OK,OK,+8,+180,+0.0142494,+879.506,+61722.3,+433.388,OK,OK
-2020-12-31 19:00:00 PST,+3.1,+240,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-12-31 20:00:00 PST,+3.6,+250,+5,+270,+0.0306067,+1889.11,+61722.3,+108.088,OK,OK,+8,+180,+0.011624,+717.458,+61722.3,+524.86,OK,OK
-2020-12-31 21:00:00 PST,+3,+230,+5,+270,+0.0334547,+2064.9,+61722.3,+61.6533,OK,OK,+8,+180,+0.00822407,+507.608,+61722.3,+623.039,OK,OK
-2020-12-31 22:00:00 PST,+3,+200,+5,+270,+0.029472,+1819.08,+61722.3,+133.632,OK,OK,+8,+180,+0.0130923,+808.087,+61722.3,+513.144,OK,OK
-2020-12-31 23:00:00 PST,+3,+190,+5,+270,+0.029472,+1819.08,+61722.3,+133.632,OK,OK,+8,+180,+0.0130923,+808.087,+61722.3,+513.144,OK,OK
+2020-01-01 00:00:00 PST,+3.1,+160,+5,+270,+0.0353122,+2179.55,+61722.3,+245.233,OK,OK,+8,+180,+0.0569678,+3516.18,+61722.3,+245.389,OK,OK
+2020-01-01 01:00:00 PST,+0,+0,+5,+270,+0.0353122,+2179.55,+61722.3,+245.233,OK,OK,+8,+180,+0.0569678,+3516.18,+61722.3,+245.389,OK,OK
+2020-01-01 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 07:00:00 PST,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 08:00:00 PST,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-01-01 09:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 10:00:00 PST,+2.1,+320,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-01-01 11:00:00 PST,+5.1,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-01 12:00:00 PST,+4.6,+300,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-01-01 13:00:00 PST,+4.1,+290,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-01-01 14:00:00 PST,+4.6,+300,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-01-01 15:00:00 PST,+4.6,+300,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-01-01 16:00:00 PST,+2.6,+320,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-01-01 17:00:00 PST,+1.3,+340,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-01-01 18:00:00 PST,+0,+0,+5,+270,+0.0362325,+2236.35,+61722.3,-102.306,OK,OK,+8,+180,+0.0567539,+3502.98,+61722.3,-104.591,OK,OK
+2020-01-01 19:00:00 PST,+2.1,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-01 20:00:00 PST,+3.1,+110,+5,+270,+0.0361002,+2228.18,+61722.3,+291.497,OK,OK,+8,+180,+0.0586659,+3620.99,+61722.3,+282.01,OK,OK
+2020-01-01 21:00:00 PST,+2.6,+40,+5,+270,+0.0346488,+2138.6,+61722.3,-194.787,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,-238.109,OK,OK
+2020-01-01 22:00:00 PST,+0,+0,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-01-01 23:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 00:00:00 PST,+2.1,+50,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-02 01:00:00 PST,+2.1,+70,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-01-02 02:00:00 PST,+1.5,+20,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-01-02 03:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-02 04:00:00 PST,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 05:00:00 PST,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-01-02 06:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 07:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-02 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 11:00:00 PST,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 12:00:00 PST,+2.6,+340,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-01-02 13:00:00 PST,+3.1,+290,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-01-02 14:00:00 PST,+3.1,+280,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-01-02 15:00:00 PST,+2.1,+320,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-01-02 16:00:00 PST,+2.6,+300,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-02 17:00:00 PST,+1.5,+240,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-01-02 18:00:00 PST,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-01-02 19:00:00 PST,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-02 20:00:00 PST,+2.1,+340,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-01-02 21:00:00 PST,+1.5,+10,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-01-02 22:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-02 23:00:00 PST,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-03 00:00:00 PST,+1.5,+160,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-01-03 01:00:00 PST,+2.3,+140,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-01-03 02:00:00 PST,+3.1,+120,+5,+270,+0.0353328,+2180.82,+61722.3,+36.0884,OK,OK,+8,+180,+0.055693,+3437.5,+61722.3,+37.5157,OK,OK
+2020-01-03 03:00:00 PST,+9.3,+100,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-01-03 04:00:00 PST,+7.7,+90,+5,+270,+0.0711627,+4392.32,+61722.3,+765.015,OK,OK,+8,+180,+0.0231244,+1427.29,+61722.3,+1379.19,OK,OK
+2020-01-03 05:00:00 PST,+6.7,+90,+5,+270,+0.0553367,+3415.51,+61722.3,+539.596,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+451.271,OK,OK
+2020-01-03 06:00:00 PST,+7.7,+80,+5,+270,+0.0460924,+2844.92,+61722.3,+254.853,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,-357.2,OK,OK
+2020-01-03 07:00:00 PST,+8.7,+90,+5,+270,+0.0569553,+3515.41,+61722.3,+638.111,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+671.246,OK,OK
+2020-01-03 08:00:00 PST,+15.4,+70,+5,+270,+0.0672956,+4153.64,+61722.3,+814.149,OK,OK,+8,+180,+0.019167,+1183.03,+61722.3,+1506.71,OK,OK
+2020-01-03 09:00:00 PST,+15.4,+70,+5,+270,+0.210703,+13005.1,+61722.3,+2867.14,OK,OK,+8,+180,+0.160195,+9887.59,+61722.3,+3375.85,OK,OK
+2020-01-03 10:00:00 PST,+7.2,+70,+5,+270,+0.210703,+13005.1,+61722.3,+2867.14,OK,OK,+8,+180,+0.160195,+9887.59,+61722.3,+3375.85,OK,OK
+2020-01-03 11:00:00 PST,+9.3,+60,+5,+270,+0.0520563,+3213.03,+61722.3,+511.384,OK,OK,+8,+180,+0.0166184,+1025.73,+61722.3,-32.0669,OK,OK
+2020-01-03 12:00:00 PST,+6.2,+60,+5,+270,+0.0766071,+4728.36,+61722.3,+1254.53,OK,OK,+8,+180,+0.0241325,+1489.51,+61722.3,+2410.75,OK,OK
+2020-01-03 13:00:00 PST,+5.7,+60,+5,+270,+0.0434479,+2681.7,+61722.3,+128.013,OK,OK,+8,+180,+0.0259636,+1602.53,+61722.3,-738.392,OK,OK
+2020-01-03 14:00:00 PST,+4.6,+60,+5,+270,+0.0405703,+2504.09,+61722.3,-38.1424,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,-792.562,OK,OK
+2020-01-03 15:00:00 PST,+6.2,+90,+5,+270,+0.0365873,+2258.25,+61722.3,-313.897,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,-746.712,OK,OK
+2020-01-03 16:00:00 PST,+7.2,+100,+5,+270,+0.0425518,+2626.39,+61722.3,+116.798,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,-496.241,OK,OK
+2020-01-03 17:00:00 PST,+0,+0,+5,+270,+0.0479968,+2962.47,+61722.3,+288.929,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,-162.894,OK,OK
+2020-01-03 18:00:00 PST,+2.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-03 19:00:00 PST,+2.1,+20,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-03 20:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-03 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-03 22:00:00 PST,+3.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-03 23:00:00 PST,+0,+0,+5,+270,+0.0352073,+2173.07,+61722.3,-444.849,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,-565.663,OK,OK
+2020-01-04 00:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-04 01:00:00 PST,+1.5,+60,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-01-04 02:00:00 PST,+2.1,+40,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-01-04 03:00:00 PST,+2.1,+340,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-04 04:00:00 PST,+0,+0,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-04 05:00:00 PST,+2.6,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-04 06:00:00 PST,+2.1,+10,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-01-04 07:00:00 PST,+0,+0,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-01-04 08:00:00 PST,+2.1,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-04 09:00:00 PST,+2.1,+80,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-04 10:00:00 PST,+2.1,+110,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-04 11:00:00 PST,+5.1,+150,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-04 12:00:00 PST,+2.6,+100,+5,+270,+0.0335067,+2068.11,+61722.3,+204.565,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+235.393,OK,OK
+2020-01-04 13:00:00 PST,+4.1,+110,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-01-04 14:00:00 PST,+6.2,+110,+5,+270,+0.0345512,+2132.58,+61722.3,-193.14,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,-301.033,OK,OK
+2020-01-04 15:00:00 PST,+5.1,+140,+5,+270,+0.0391257,+2414.93,+61722.3,+3.68706,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,-342.08,OK,OK
+2020-01-04 16:00:00 PST,+2.1,+130,+5,+270,+0.0335226,+2069.09,+61722.3,+57.0178,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+77.2094,OK,OK
+2020-01-04 17:00:00 PST,+0,+0,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-01-04 18:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-04 19:00:00 PST,+3.1,+120,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-01-04 20:00:00 PST,+1.5,+100,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-01-04 21:00:00 PST,+2.1,+50,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-01-04 22:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-01-04 23:00:00 PST,+2.6,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 00:00:00 PST,+2.1,+60,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-01-05 01:00:00 PST,+0,+0,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-01-05 02:00:00 PST,+0.8,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 03:00:00 PST,+1.5,+340,+5,+270,+0.0361122,+2228.93,+61722.3,-86.9818,OK,OK,+8,+180,+0.0573779,+3541.49,+61722.3,-87.1847,OK,OK
+2020-01-05 04:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-05 05:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 06:00:00 PST,+0,+0,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-01-05 07:00:00 PST,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 08:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-01-05 09:00:00 PST,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 10:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-05 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 12:00:00 PST,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 13:00:00 PST,+0,+0,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-01-05 14:00:00 PST,+2.1,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 15:00:00 PST,+4.1,+300,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-01-05 16:00:00 PST,+4.1,+270,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-01-05 17:00:00 PST,+0,+0,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-01-05 18:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 19:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-05 20:00:00 PST,+2.1,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 21:00:00 PST,+0,+0,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-01-05 22:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-05 23:00:00 PST,+1.5,+360,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-06 00:00:00 PST,+2.6,+210,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-06 01:00:00 PST,+0,+0,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-01-06 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 04:00:00 PST,+0.8,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 05:00:00 PST,+1.5,+290,+5,+270,+0.0361631,+2232.07,+61722.3,-39.0725,OK,OK,+8,+180,+0.0572182,+3531.64,+61722.3,-39.375,OK,OK
+2020-01-06 06:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-06 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 10:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 11:00:00 PST,+1.5,+250,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-06 12:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-06 13:00:00 PST,+2.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 14:00:00 PST,+4.6,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-01-06 15:00:00 PST,+5.1,+250,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-01-06 16:00:00 PST,+4.6,+260,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-01-06 17:00:00 PST,+3.6,+270,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-01-06 18:00:00 PST,+2.1,+290,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-01-06 19:00:00 PST,+1.5,+300,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-06 20:00:00 PST,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-01-06 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-06 23:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 00:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-01-07 01:00:00 PST,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 02:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-01-07 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 04:00:00 PST,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 05:00:00 PST,+1.5,+360,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-01-07 06:00:00 PST,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-01-07 07:00:00 PST,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 08:00:00 PST,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-01-07 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 12:00:00 PST,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 13:00:00 PST,+4.6,+310,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-07 14:00:00 PST,+5.7,+250,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-01-07 15:00:00 PST,+5.1,+290,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-01-07 16:00:00 PST,+4.1,+290,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-01-07 17:00:00 PST,+4.6,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-01-07 18:00:00 PST,+3.1,+290,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-01-07 19:00:00 PST,+2.6,+290,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-01-07 20:00:00 PST,+2.1,+350,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-01-07 21:00:00 PST,+0,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-01-07 22:00:00 PST,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-07 23:00:00 PST,+3.1,+320,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-01-08 00:00:00 PST,+1.5,+310,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-01-08 01:00:00 PST,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-01-08 02:00:00 PST,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-08 03:00:00 PST,+1.5,+180,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-01-08 04:00:00 PST,+0,+0,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-01-08 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-08 06:00:00 PST,+1.5,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-08 07:00:00 PST,+3.1,+150,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-01-08 08:00:00 PST,+2.1,+170,+5,+270,+0.0350114,+2160.98,+61722.3,+143.482,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+149.222,OK,OK
+2020-01-08 09:00:00 PST,+2.1,+230,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-01-08 10:00:00 PST,+2.6,+280,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-01-08 11:00:00 PST,+6.2,+50,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-01-08 12:00:00 PST,+12.9,+40,+5,+270,+0.0425718,+2627.63,+61722.3,+54.4283,OK,OK,+8,+180,+0.0276046,+1703.82,+61722.3,-838.697,OK,OK
+2020-01-08 13:00:00 PST,+15.4,+50,+5,+270,+0.122276,+7547.12,+61722.3,+2228.08,OK,OK,+8,+180,+0.0684565,+4225.29,+61722.3,+3170.35,OK,OK
+2020-01-08 14:00:00 PST,+8.2,+60,+5,+270,+0.191815,+11839.2,+61722.3,+3032.71,OK,OK,+8,+180,+0.139873,+8633.26,+61722.3,+3668.39,OK,OK
+2020-01-08 15:00:00 PST,+9.8,+60,+5,+270,+0.0619708,+3824.98,+61722.3,+867.136,OK,OK,+8,+180,+0.013788,+851.025,+61722.3,+1493.15,OK,OK
+2020-01-08 16:00:00 PST,+7.2,+50,+5,+270,+0.0842015,+5197.11,+61722.3,+1421.04,OK,OK,+8,+180,+0.0314614,+1941.87,+61722.3,+2527.3,OK,OK
+2020-01-08 17:00:00 PST,+6.2,+80,+5,+270,+0.0496683,+3065.64,+61722.3,+419.762,OK,OK,+8,+180,+0.0185012,+1141.94,+61722.3,-480.867,OK,OK
+2020-01-08 18:00:00 PST,+7.2,+60,+5,+270,+0.0434807,+2683.72,+61722.3,+153.46,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,-563.086,OK,OK
+2020-01-08 19:00:00 PST,+7.2,+90,+5,+270,+0.0513315,+3168.3,+61722.3,+494.966,OK,OK,+8,+180,+0.0170066,+1049.68,+61722.3,-205.449,OK,OK
+2020-01-08 20:00:00 PST,+7.7,+80,+5,+270,+0.0513315,+3168.3,+61722.3,+494.966,OK,OK,+8,+180,+0.0170066,+1049.68,+61722.3,-205.449,OK,OK
+2020-01-08 21:00:00 PST,+6.7,+70,+5,+270,+0.0569553,+3515.41,+61722.3,+638.111,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+671.246,OK,OK
+2020-01-08 22:00:00 PST,+8.2,+80,+5,+270,+0.0475494,+2934.86,+61722.3,+333.218,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,-451.995,OK,OK
+2020-01-08 23:00:00 PST,+5.7,+90,+5,+270,+0.0628607,+3879.9,+61722.3,+796.943,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+1391.41,OK,OK
+2020-01-09 00:00:00 PST,+8.2,+70,+5,+270,+0.0397413,+2452.92,+61722.3,-10.9389,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,-551.111,OK,OK
+2020-01-09 01:00:00 PST,+9.3,+100,+5,+270,+0.0631793,+3899.57,+61722.3,+863.09,OK,OK,+8,+180,+0.0150457,+928.654,+61722.3,+1553.43,OK,OK
+2020-01-09 02:00:00 PST,+9.3,+120,+5,+270,+0.0711627,+4392.32,+61722.3,+765.015,OK,OK,+8,+180,+0.0231244,+1427.29,+61722.3,+1379.19,OK,OK
+2020-01-09 03:00:00 PST,+9.3,+140,+5,+270,+0.0711627,+4392.32,+61722.3,+765.015,OK,OK,+8,+180,+0.0231244,+1427.29,+61722.3,+1379.19,OK,OK
+2020-01-09 04:00:00 PST,+2.6,+20,+5,+270,+0.0711627,+4392.32,+61722.3,+765.015,OK,OK,+8,+180,+0.0231244,+1427.29,+61722.3,+1379.19,OK,OK
+2020-01-09 05:00:00 PST,+2.1,+30,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-01-09 06:00:00 PST,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-01-09 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 11:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 12:00:00 PST,+1.5,+150,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-09 13:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-09 14:00:00 PST,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 15:00:00 PST,+2.6,+330,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-01-09 16:00:00 PST,+4.1,+270,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-01-09 17:00:00 PST,+4.1,+200,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-09 18:00:00 PST,+0,+0,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-09 19:00:00 PST,+3,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-09 20:00:00 PST,+3,+180,+5,+270,+0.036148,+2231.14,+61722.3,+428.061,OK,OK,+8,+180,+0.0597527,+3688.07,+61722.3,+402.871,OK,OK
+2020-01-09 21:00:00 PST,+2.5,+50,+5,+270,+0.036148,+2231.14,+61722.3,+428.061,OK,OK,+8,+180,+0.0597527,+3688.07,+61722.3,+402.871,OK,OK
+2020-01-09 22:00:00 PST,+0,+0,+5,+270,+0.0353131,+2179.61,+61722.3,-402.442,OK,OK,+8,+180,+0.0526079,+3247.08,+61722.3,-462.68,OK,OK
+2020-01-09 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 02:00:00 PST,+1.3,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 03:00:00 PST,+0,+0,+5,+270,+0.0360212,+2223.31,+61722.3,-199.567,OK,OK,+8,+180,+0.0569779,+3516.81,+61722.3,-201.994,OK,OK
+2020-01-10 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 05:00:00 PST,+1.2,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 06:00:00 PST,+1.2,+100,+5,+270,+0.0357715,+2207.9,+61722.3,-180.812,OK,OK,+8,+180,+0.0563566,+3478.45,+61722.3,-185.568,OK,OK
+2020-01-10 07:00:00 PST,+0,+0,+5,+270,+0.0357715,+2207.9,+61722.3,-180.812,OK,OK,+8,+180,+0.0563566,+3478.45,+61722.3,-185.568,OK,OK
+2020-01-10 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 09:00:00 PST,+1.8,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 10:00:00 PST,+1.7,+20,+5,+270,+0.0355931,+2196.88,+61722.3,-316.128,OK,OK,+8,+180,+0.0550194,+3395.92,+61722.3,-336.89,OK,OK
+2020-01-10 11:00:00 PST,+1.1,+10,+5,+270,+0.0358816,+2214.7,+61722.3,-281.593,OK,OK,+8,+180,+0.0561379,+3464.96,+61722.3,-291.384,OK,OK
+2020-01-10 12:00:00 PST,+0,+0,+5,+270,+0.0360382,+2224.36,+61722.3,-169.754,OK,OK,+8,+180,+0.0571608,+3528.09,+61722.3,-170.977,OK,OK
+2020-01-10 13:00:00 PST,+3.7,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-10 14:00:00 PST,+6.3,+250,+5,+270,+0.0398197,+2457.76,+61722.3,+520.198,OK,OK,+8,+180,+0.0492321,+3038.72,+61722.3,+716.34,OK,OK
+2020-01-10 15:00:00 PST,+5.2,+240,+5,+270,+0.0533193,+3290.99,+61722.3,+331.358,OK,OK,+8,+180,+0.030404,+1876.6,+61722.3,+1352.57,OK,OK
+2020-01-10 16:00:00 PST,+5.2,+250,+5,+270,+0.0449148,+2772.24,+61722.3,+529.158,OK,OK,+8,+180,+0.0412668,+2547.08,+61722.3,+1073.43,OK,OK
+2020-01-10 17:00:00 PST,+3.1,+270,+5,+270,+0.0449148,+2772.24,+61722.3,+529.158,OK,OK,+8,+180,+0.0412668,+2547.08,+61722.3,+1073.43,OK,OK
+2020-01-10 18:00:00 PST,+2.6,+330,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-01-10 19:00:00 PST,+1.5,+340,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-01-10 20:00:00 PST,+2.1,+70,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-10 21:00:00 PST,+1.5,+360,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-01-10 22:00:00 PST,+2.1,+40,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-10 23:00:00 PST,+0,+0,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-11 00:00:00 PST,+3.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-11 01:00:00 PST,+2.9,+340,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-01-11 02:00:00 PST,+2.6,+340,+5,+270,+0.0370218,+2285.07,+61722.3,-204.906,OK,OK,+8,+180,+0.0533068,+3290.22,+61722.3,-235.714,OK,OK
+2020-01-11 03:00:00 PST,+2.4,+350,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-01-11 04:00:00 PST,+2.1,+350,+5,+270,+0.0363888,+2246,+61722.3,-246.357,OK,OK,+8,+180,+0.0554279,+3421.13,+61722.3,-262.549,OK,OK
+2020-01-11 05:00:00 PST,+1.5,+20,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-01-11 06:00:00 PST,+3.1,+10,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-11 07:00:00 PST,+2.6,+100,+5,+270,+0.0358778,+2214.46,+61722.3,-432.503,OK,OK,+8,+180,+0.0539621,+3330.66,+61722.3,-478.721,OK,OK
+2020-01-11 08:00:00 PST,+1.5,+70,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-01-11 09:00:00 PST,+1.5,+330,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-01-11 10:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-01-11 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-11 12:00:00 PST,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-11 13:00:00 PST,+5.7,+250,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-01-11 14:00:00 PST,+4.1,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-01-11 15:00:00 PST,+4.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-11 16:00:00 PST,+3.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-11 17:00:00 PST,+5.1,+250,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-01-11 18:00:00 PST,+3.1,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-01-11 19:00:00 PST,+4.1,+310,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-01-11 20:00:00 PST,+4.6,+300,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-01-11 21:00:00 PST,+3.1,+320,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-01-11 22:00:00 PST,+0,+0,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-01-11 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 01:00:00 PST,+2.1,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 02:00:00 PST,+1.5,+360,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-01-12 03:00:00 PST,+2.1,+10,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-12 04:00:00 PST,+1.5,+110,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-01-12 05:00:00 PST,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-01-12 06:00:00 PST,+2.6,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 07:00:00 PST,+1.5,+340,+5,+270,+0.0355426,+2193.77,+61722.3,-418.086,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-469.748,OK,OK
+2020-01-12 08:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-12 09:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 10:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-01-12 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 13:00:00 PST,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 14:00:00 PST,+2.6,+240,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-01-12 15:00:00 PST,+1.5,+300,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-01-12 16:00:00 PST,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-01-12 17:00:00 PST,+3.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 18:00:00 PST,+3.1,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-01-12 19:00:00 PST,+2.6,+310,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-01-12 20:00:00 PST,+2.1,+330,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-01-12 21:00:00 PST,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-01-12 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-12 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 03:00:00 PST,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 04:00:00 PST,+1.5,+360,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-01-13 05:00:00 PST,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-01-13 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 07:00:00 PST,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 08:00:00 PST,+0,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-01-13 09:00:00 PST,+2.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 10:00:00 PST,+2.1,+110,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-13 11:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-13 12:00:00 PST,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 13:00:00 PST,+1.5,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-01-13 14:00:00 PST,+2.6,+290,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-01-13 15:00:00 PST,+5.1,+260,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-01-13 16:00:00 PST,+4.6,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-01-13 17:00:00 PST,+2.6,+230,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-01-13 18:00:00 PST,+0,+0,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-01-13 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 20:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 21:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-01-13 22:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-13 23:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-01-14 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 01:00:00 PST,+2.6,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 02:00:00 PST,+0,+0,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-01-14 03:00:00 PST,+3.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 04:00:00 PST,+0,+0,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-01-14 05:00:00 PST,+3.6,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 06:00:00 PST,+2.1,+80,+5,+270,+0.0356657,+2201.37,+61722.3,-495.014,OK,OK,+8,+180,+0.0509765,+3146.38,+61722.3,-606.749,OK,OK
+2020-01-14 07:00:00 PST,+2.1,+360,+5,+270,+0.0352717,+2177.05,+61722.3,-290.002,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,-320.386,OK,OK
+2020-01-14 08:00:00 PST,+0,+0,+5,+270,+0.0352717,+2177.05,+61722.3,-290.002,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,-320.386,OK,OK
+2020-01-14 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 13:00:00 PST,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 14:00:00 PST,+1.5,+350,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-14 15:00:00 PST,+3.1,+350,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-14 16:00:00 PST,+0,+0,+5,+270,+0.036665,+2263.05,+61722.3,-303.663,OK,OK,+8,+180,+0.0539621,+3330.66,+61722.3,-340.149,OK,OK
+2020-01-14 17:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 18:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-14 19:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 20:00:00 PST,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-01-14 21:00:00 PST,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-14 22:00:00 PST,+2.1,+100,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-01-14 23:00:00 PST,+1.4,+70,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-15 00:00:00 PST,+0.7,+30,+5,+270,+0.0356906,+2202.9,+61722.3,-230.101,OK,OK,+8,+180,+0.0558972,+3450.1,+61722.3,-239.083,OK,OK
+2020-01-15 01:00:00 PST,+0,+0,+5,+270,+0.0360283,+2223.75,+61722.3,-127.931,OK,OK,+8,+180,+0.0573128,+3537.47,+61722.3,-128.281,OK,OK
+2020-01-15 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 05:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 06:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-15 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 11:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 12:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-01-15 13:00:00 PST,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-15 14:00:00 PST,+3.6,+270,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-01-15 15:00:00 PST,+4.1,+290,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-01-15 16:00:00 PST,+6.2,+240,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-01-15 17:00:00 PST,+2.6,+270,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-01-15 18:00:00 PST,+3.1,+310,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-01-15 19:00:00 PST,+2.6,+340,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-01-15 20:00:00 PST,+1.5,+130,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-01-15 21:00:00 PST,+2.1,+340,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-01-15 22:00:00 PST,+1.5,+340,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-01-15 23:00:00 PST,+2.1,+70,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-16 00:00:00 PST,+2.1,+80,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-01-16 01:00:00 PST,+1.5,+320,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-01-16 02:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-01-16 03:00:00 PST,+3.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-16 04:00:00 PST,+3.1,+330,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-01-16 05:00:00 PST,+2.6,+160,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-01-16 06:00:00 PST,+2.1,+60,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-01-16 07:00:00 PST,+2.1,+20,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-01-16 08:00:00 PST,+3.1,+330,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-01-16 09:00:00 PST,+2.1,+290,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-01-16 10:00:00 PST,+2.1,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-16 11:00:00 PST,+2.1,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-16 12:00:00 PST,+4.6,+270,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-16 13:00:00 PST,+4.6,+260,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-01-16 14:00:00 PST,+5.1,+290,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-01-16 15:00:00 PST,+3.1,+320,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-01-16 16:00:00 PST,+4.6,+260,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-01-16 17:00:00 PST,+4.1,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-01-16 18:00:00 PST,+4.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-01-16 19:00:00 PST,+2.6,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-01-16 20:00:00 PST,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-01-16 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-16 22:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-16 23:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-17 00:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 01:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-01-17 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 08:00:00 PST,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 09:00:00 PST,+0,+0,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-01-17 10:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 11:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-01-17 12:00:00 PST,+2.1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 13:00:00 PST,+2.1,+60,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-01-17 14:00:00 PST,+1.5,+360,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-01-17 15:00:00 PST,+2.1,+340,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-17 16:00:00 PST,+3.1,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-01-17 17:00:00 PST,+2.6,+260,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-01-17 18:00:00 PST,+2.1,+260,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-01-17 19:00:00 PST,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-01-17 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 22:00:00 PST,+0.8,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-17 23:00:00 PST,+1.5,+100,+5,+270,+0.0359725,+2220.3,+61722.3,-149.902,OK,OK,+8,+180,+0.0571072,+3524.78,+61722.3,-151.046,OK,OK
+2020-01-18 00:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-01-18 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 02:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 03:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-01-18 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 05:00:00 PST,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 06:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-01-18 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 13:00:00 PST,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 14:00:00 PST,+5.7,+260,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-01-18 15:00:00 PST,+5.1,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-01-18 16:00:00 PST,+2.6,+270,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-01-18 17:00:00 PST,+1.5,+290,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-01-18 18:00:00 PST,+2.1,+280,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-18 19:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-01-18 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 21:00:00 PST,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-18 22:00:00 PST,+2.1,+330,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-01-18 23:00:00 PST,+1.5,+240,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-01-19 00:00:00 PST,+2.1,+270,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-01-19 01:00:00 PST,+2.6,+310,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-01-19 02:00:00 PST,+1.5,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-01-19 03:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-19 04:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 05:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-01-19 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 07:00:00 PST,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 08:00:00 PST,+2.6,+230,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-01-19 09:00:00 PST,+2.6,+270,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-01-19 10:00:00 PST,+0,+0,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-01-19 11:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 12:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-19 13:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 14:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-01-19 15:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 16:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 17:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 19:00:00 PST,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 20:00:00 PST,+1.5,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-01-19 21:00:00 PST,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-01-19 22:00:00 PST,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-19 23:00:00 PST,+2.1,+230,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-01-20 00:00:00 PST,+1.5,+290,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-01-20 01:00:00 PST,+2.6,+250,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-20 02:00:00 PST,+2.1,+290,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-01-20 03:00:00 PST,+2.1,+300,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-20 04:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-20 05:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-20 06:00:00 PST,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-01-20 07:00:00 PST,+1.5,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-20 08:00:00 PST,+1.5,+260,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-01-20 09:00:00 PST,+1.5,+240,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-01-20 10:00:00 PST,+4.1,+240,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-01-20 11:00:00 PST,+5.7,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-01-20 12:00:00 PST,+4.6,+230,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-01-20 13:00:00 PST,+4.1,+250,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-01-20 14:00:00 PST,+4.6,+230,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-01-20 15:00:00 PST,+3.6,+240,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-01-20 16:00:00 PST,+5.1,+250,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-01-20 17:00:00 PST,+4.1,+230,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-01-20 18:00:00 PST,+3.6,+260,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-01-20 19:00:00 PST,+3.6,+230,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-01-20 20:00:00 PST,+3.6,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-01-20 21:00:00 PST,+5.1,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-01-20 22:00:00 PST,+3.6,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-01-20 23:00:00 PST,+4.6,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-01-21 00:00:00 PST,+5.1,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-01-21 01:00:00 PST,+4.1,+270,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-01-21 02:00:00 PST,+6.2,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-21 03:00:00 PST,+6.2,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-01-21 04:00:00 PST,+7.2,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-01-21 05:00:00 PST,+5.1,+230,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-01-21 06:00:00 PST,+3.6,+220,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-01-21 07:00:00 PST,+4.1,+230,+5,+270,+0.0383588,+2367.59,+61722.3,+593.867,OK,OK,+8,+180,+0.0529191,+3266.29,+61722.3,+706.006,OK,OK
+2020-01-21 08:00:00 PST,+3.1,+230,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-01-21 09:00:00 PST,+3.1,+240,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-01-21 10:00:00 PST,+2.6,+240,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-01-21 11:00:00 PST,+4.6,+230,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-01-21 12:00:00 PST,+3.1,+240,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-01-21 13:00:00 PST,+3.6,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-01-21 14:00:00 PST,+3.1,+250,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-01-21 15:00:00 PST,+3.1,+240,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-01-21 16:00:00 PST,+5.1,+230,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-01-21 17:00:00 PST,+4.3,+250,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-01-21 18:00:00 PST,+3.4,+270,+5,+270,+0.0423711,+2615.24,+61722.3,+470.934,OK,OK,+8,+180,+0.0445219,+2747.99,+61722.3,+805.345,OK,OK
+2020-01-21 19:00:00 PST,+2.6,+300,+5,+270,+0.0400673,+2473.04,+61722.3,+331.286,OK,OK,+8,+180,+0.0478615,+2954.12,+61722.3,+481.951,OK,OK
+2020-01-21 20:00:00 PST,+1.7,+320,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-01-21 21:00:00 PST,+0.9,+340,+5,+270,+0.0365866,+2258.21,+61722.3,-26.596,OK,OK,+8,+180,+0.0555182,+3426.71,+61722.3,-28.3608,OK,OK
+2020-01-21 22:00:00 PST,+0,+0,+5,+270,+0.0361531,+2231.45,+61722.3,-71.7503,OK,OK,+8,+180,+0.0572057,+3530.87,+61722.3,-72.3183,OK,OK
+2020-01-21 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 02:00:00 PST,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 03:00:00 PST,+2.1,+80,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-22 04:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-22 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 06:00:00 PST,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 07:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-22 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 10:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 11:00:00 PST,+2.1,+110,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-01-22 12:00:00 PST,+2.1,+160,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-01-22 13:00:00 PST,+1.5,+200,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-01-22 14:00:00 PST,+2.6,+240,+5,+270,+0.0362678,+2238.53,+61722.3,+258.333,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+259,OK,OK
+2020-01-22 15:00:00 PST,+2.6,+280,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-01-22 16:00:00 PST,+3.6,+240,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-01-22 17:00:00 PST,+3.1,+250,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-01-22 18:00:00 PST,+2.1,+280,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-01-22 19:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-01-22 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 22:00:00 PST,+2.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-22 23:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-23 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 05:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 06:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-23 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 13:00:00 PST,+3.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-23 14:00:00 PST,+5.7,+270,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-01-23 15:00:00 PST,+7.7,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-01-23 16:00:00 PST,+4.6,+240,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-01-23 17:00:00 PST,+6.2,+260,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-01-23 18:00:00 PST,+4.1,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-01-23 19:00:00 PST,+2.6,+310,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-23 20:00:00 PST,+2.6,+340,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-01-23 21:00:00 PST,+2.1,+280,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-01-23 22:00:00 PST,+2.1,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-01-23 23:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-01-24 00:00:00 PST,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 01:00:00 PST,+0,+0,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-01-24 02:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 03:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-24 04:00:00 PST,+2.1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 05:00:00 PST,+0,+0,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-01-24 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 07:00:00 PST,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 08:00:00 PST,+1.5,+340,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-01-24 09:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-24 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 11:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 12:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-24 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 15:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 16:00:00 PST,+4.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-24 17:00:00 PST,+4.1,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-01-24 18:00:00 PST,+2.6,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-01-24 19:00:00 PST,+4.1,+270,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-01-24 20:00:00 PST,+5.1,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-24 21:00:00 PST,+4.6,+280,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-01-24 22:00:00 PST,+2.6,+260,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-01-24 23:00:00 PST,+0,+0,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-01-25 00:00:00 PST,+2.6,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-25 01:00:00 PST,+2.6,+270,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-01-25 02:00:00 PST,+2.6,+100,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-01-25 03:00:00 PST,+2.5,+120,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-01-25 04:00:00 PST,+4,+200,+5,+270,+0.0350189,+2161.45,+61722.3,-108.998,OK,OK,+8,+180,+0.0537703,+3318.82,+61722.3,-119.92,OK,OK
+2020-01-25 05:00:00 PST,+2,+90,+5,+270,+0.0373992,+2308.36,+61722.3,+670.854,OK,OK,+8,+180,+0.056539,+3489.72,+61722.3,+704.084,OK,OK
+2020-01-25 06:00:00 PST,+2.7,+120,+5,+270,+0.0353032,+2178.99,+61722.3,-242.456,OK,OK,+8,+180,+0.0542256,+3346.93,+61722.3,-263.849,OK,OK
+2020-01-25 07:00:00 PST,+4.1,+290,+5,+270,+0.0348851,+2153.19,+61722.3,-114.876,OK,OK,+8,+180,+0.0531326,+3279.46,+61722.3,-128.929,OK,OK
+2020-01-25 08:00:00 PST,+0,+0,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-01-25 09:00:00 PST,+2.6,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-25 10:00:00 PST,+0,+0,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-01-25 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-25 12:00:00 PST,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-25 13:00:00 PST,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-01-25 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-25 15:00:00 PST,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-25 16:00:00 PST,+4.1,+260,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-01-25 17:00:00 PST,+3.6,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-01-25 18:00:00 PST,+3.6,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-01-25 19:00:00 PST,+4.1,+240,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-01-25 20:00:00 PST,+3.1,+250,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-01-25 21:00:00 PST,+2.1,+250,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-01-25 22:00:00 PST,+2.1,+270,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-01-25 23:00:00 PST,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-01-26 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-26 01:00:00 PST,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-26 02:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-26 03:00:00 PST,+1.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-26 04:00:00 PST,+2.1,+100,+5,+270,+0.0358786,+2214.51,+61722.3,-203.365,OK,OK,+8,+180,+0.0566491,+3496.51,+61722.3,-207.304,OK,OK
+2020-01-26 05:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-01-26 06:00:00 PST,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-26 07:00:00 PST,+2.1,+120,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-01-26 08:00:00 PST,+2.1,+20,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-01-26 09:00:00 PST,+2.6,+360,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-01-26 10:00:00 PST,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-01-26 11:00:00 PST,+3.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-26 12:00:00 PST,+2.1,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-01-26 13:00:00 PST,+2.1,+260,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-26 14:00:00 PST,+2.6,+320,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-01-26 15:00:00 PST,+5.1,+260,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-01-26 16:00:00 PST,+4.1,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-01-26 17:00:00 PST,+2.6,+230,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-01-26 18:00:00 PST,+1.5,+170,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-01-26 19:00:00 PST,+2.1,+140,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-01-26 20:00:00 PST,+1.5,+110,+5,+270,+0.0354503,+2188.07,+61722.3,+33.2929,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+34.3406,OK,OK
+2020-01-26 21:00:00 PST,+3.1,+320,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-01-26 22:00:00 PST,+3.6,+20,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-01-26 23:00:00 PST,+2.1,+30,+5,+270,+0.0356657,+2201.37,+61722.3,-495.014,OK,OK,+8,+180,+0.0509765,+3146.38,+61722.3,-606.749,OK,OK
+2020-01-27 00:00:00 PST,+2.6,+120,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-01-27 01:00:00 PST,+0,+0,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-01-27 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 04:00:00 PST,+2.1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 05:00:00 PST,+0,+0,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-01-27 06:00:00 PST,+2.6,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 07:00:00 PST,+0,+0,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-01-27 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 10:00:00 PST,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 11:00:00 PST,+2.1,+280,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-01-27 12:00:00 PST,+1.5,+290,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-01-27 13:00:00 PST,+4.6,+300,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-01-27 14:00:00 PST,+0,+0,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-01-27 15:00:00 PST,+2.1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 16:00:00 PST,+0,+0,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-01-27 17:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 18:00:00 PST,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 19:00:00 PST,+0,+0,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-01-27 20:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-27 21:00:00 PST,+1.5,+130,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-01-27 22:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-01-27 23:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 00:00:00 PST,+2.1,+30,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-28 01:00:00 PST,+2.1,+50,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-01-28 02:00:00 PST,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-01-28 03:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 04:00:00 PST,+2.6,+350,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-28 05:00:00 PST,+0,+0,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-01-28 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 07:00:00 PST,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 08:00:00 PST,+2.1,+10,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-01-28 09:00:00 PST,+1.1,+10,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-01-28 10:00:00 PST,+0,+0,+5,+270,+0.0360382,+2224.36,+61722.3,-169.754,OK,OK,+8,+180,+0.0571608,+3528.09,+61722.3,-170.977,OK,OK
+2020-01-28 11:00:00 PST,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 12:00:00 PST,+2.6,+310,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-01-28 13:00:00 PST,+3.1,+330,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-01-28 14:00:00 PST,+1.5,+340,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-01-28 15:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-01-28 16:00:00 PST,+4.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 17:00:00 PST,+3.1,+310,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-01-28 18:00:00 PST,+2.1,+330,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-01-28 19:00:00 PST,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-01-28 20:00:00 PST,+3.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-28 21:00:00 PST,+2.1,+200,+5,+270,+0.0358778,+2214.46,+61722.3,-432.503,OK,OK,+8,+180,+0.0539621,+3330.66,+61722.3,-478.721,OK,OK
+2020-01-28 22:00:00 PST,+1.5,+330,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-01-28 23:00:00 PST,+1.5,+350,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-01-29 00:00:00 PST,+2.6,+10,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-01-29 01:00:00 PST,+2.1,+350,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-01-29 02:00:00 PST,+0,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-01-29 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 05:00:00 PST,+2.6,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 06:00:00 PST,+1.5,+350,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-01-29 07:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-01-29 08:00:00 PST,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 09:00:00 PST,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-01-29 10:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 11:00:00 PST,+2.6,+60,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-01-29 12:00:00 PST,+2.6,+30,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-01-29 13:00:00 PST,+0,+0,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-01-29 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 15:00:00 PST,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-29 16:00:00 PST,+3.6,+250,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-01-29 17:00:00 PST,+2.6,+270,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-01-29 18:00:00 PST,+2.9,+300,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-01-29 19:00:00 PST,+3.1,+320,+5,+270,+0.0384972,+2376.14,+61722.3,+113.788,OK,OK,+8,+180,+0.0504569,+3114.31,+61722.3,+147.334,OK,OK
+2020-01-29 20:00:00 PST,+2.6,+320,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-01-29 21:00:00 PST,+2.1,+330,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-01-29 22:00:00 PST,+1.5,+120,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-01-29 23:00:00 PST,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-01-30 00:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 01:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-01-30 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 04:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 05:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-01-30 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 09:00:00 PST,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-30 10:00:00 PST,+1.5,+350,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-01-30 11:00:00 PST,+1.5,+350,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-01-30 12:00:00 PST,+2.1,+320,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-01-30 13:00:00 PST,+2.1,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-30 14:00:00 PST,+6.7,+240,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-01-30 15:00:00 PST,+5.4,+270,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-01-30 16:00:00 PST,+4.1,+300,+5,+270,+0.0497207,+3068.88,+61722.3,+264.296,OK,OK,+8,+180,+0.0335227,+2069.1,+61722.3,+858.975,OK,OK
+2020-01-30 17:00:00 PST,+3.6,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-01-30 18:00:00 PST,+4.1,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-01-30 19:00:00 PST,+1.5,+310,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-01-30 20:00:00 PST,+2.6,+300,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-01-30 21:00:00 PST,+3.1,+340,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-01-30 22:00:00 PST,+3.1,+120,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-01-30 23:00:00 PST,+2.6,+180,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-01-31 00:00:00 PST,+2.6,+360,+5,+270,+0.0361206,+2229.44,+61722.3,+366.11,OK,OK,+8,+180,+0.0592223,+3655.33,+61722.3,+349.155,OK,OK
+2020-01-31 01:00:00 PST,+3.6,+290,+5,+270,+0.0361206,+2229.44,+61722.3,+366.11,OK,OK,+8,+180,+0.0592223,+3655.33,+61722.3,+349.155,OK,OK
+2020-01-31 02:00:00 PST,+3.6,+310,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-01-31 03:00:00 PST,+2.1,+10,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-01-31 04:00:00 PST,+1.5,+40,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-01-31 05:00:00 PST,+1.5,+30,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-01-31 06:00:00 PST,+1.5,+10,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-01-31 07:00:00 PST,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-01-31 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-31 09:00:00 PST,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-31 10:00:00 PST,+0,+0,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-01-31 11:00:00 PST,+2.6,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-01-31 12:00:00 PST,+2.1,+240,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-01-31 13:00:00 PST,+4.1,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-01-31 14:00:00 PST,+3.6,+240,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-01-31 15:00:00 PST,+3.6,+220,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-01-31 16:00:00 PST,+6.2,+240,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-01-31 17:00:00 PST,+4.1,+250,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-01-31 18:00:00 PST,+2.6,+250,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-01-31 19:00:00 PST,+3.6,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-01-31 20:00:00 PST,+1.5,+310,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-01-31 21:00:00 PST,+2.1,+270,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-01-31 22:00:00 PST,+2,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-01-31 23:00:00 PST,+1.9,+0,+5,+270,+0.0360975,+2228.02,+61722.3,-262.729,OK,OK,+8,+180,+0.0566746,+3498.09,+61722.3,-268.581,OK,OK
+2020-02-01 00:00:00 PST,+1.8,+160,+5,+270,+0.0360952,+2227.87,+61722.3,-250.265,OK,OK,+8,+180,+0.056767,+3503.79,+61722.3,-255.152,OK,OK
+2020-02-01 01:00:00 PST,+1.8,+360,+5,+270,+0.035823,+2211.08,+61722.3,+144.265,OK,OK,+8,+180,+0.0574001,+3542.86,+61722.3,+143.809,OK,OK
+2020-02-01 02:00:00 PST,+1.7,+0,+5,+270,+0.035823,+2211.08,+61722.3,+144.265,OK,OK,+8,+180,+0.0574001,+3542.86,+61722.3,+143.809,OK,OK
+2020-02-01 03:00:00 PST,+1.6,+0,+5,+270,+0.0360915,+2227.65,+61722.3,-225.029,OK,OK,+8,+180,+0.0569374,+3514.31,+61722.3,-228.294,OK,OK
+2020-02-01 04:00:00 PST,+1.5,+60,+5,+270,+0.0360901,+2227.56,+61722.3,-212.269,OK,OK,+8,+180,+0.0570156,+3519.13,+61722.3,-214.865,OK,OK
+2020-02-01 05:00:00 PST,+0.8,+30,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-02-01 06:00:00 PST,+0,+0,+5,+270,+0.0360114,+2222.71,+61722.3,-145.814,OK,OK,+8,+180,+0.0572182,+3531.64,+61722.3,-146.561,OK,OK
+2020-02-01 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-01 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-01 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-01 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-01 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-01 12:00:00 PST,+3.6,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-01 13:00:00 PST,+5.7,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-02-01 14:00:00 PST,+4.6,+260,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-02-01 15:00:00 PST,+3.6,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-02-01 16:00:00 PST,+4.6,+240,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-02-01 17:00:00 PST,+4.1,+290,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-02-01 18:00:00 PST,+5.1,+300,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-02-01 19:00:00 PST,+5.7,+300,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-02-01 20:00:00 PST,+4.1,+300,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-02-01 21:00:00 PST,+4.1,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-02-01 22:00:00 PST,+0,+0,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-02-01 23:00:00 PST,+4.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 00:00:00 PST,+2.1,+260,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-02-02 01:00:00 PST,+2.1,+280,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-02 02:00:00 PST,+1.5,+280,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-02 03:00:00 PST,+2.1,+100,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-02-02 04:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-02-02 05:00:00 PST,+1.5,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 06:00:00 PST,+3.1,+310,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-02-02 07:00:00 PST,+2.6,+340,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-02-02 08:00:00 PST,+1.5,+150,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-02-02 09:00:00 PST,+2.6,+170,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-02-02 10:00:00 PST,+1.5,+230,+5,+270,+0.0358113,+2210.35,+61722.3,+289.145,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+281.865,OK,OK
+2020-02-02 11:00:00 PST,+3.1,+290,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-02-02 12:00:00 PST,+0,+0,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-02-02 13:00:00 PST,+4.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 14:00:00 PST,+2.6,+320,+5,+270,+0.0422507,+2607.81,+61722.3,-43.1416,OK,OK,+8,+180,+0.0423305,+2612.73,+61722.3,-81.7121,OK,OK
+2020-02-02 15:00:00 PST,+0,+0,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-02-02 16:00:00 PST,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 17:00:00 PST,+3.1,+260,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-02 18:00:00 PST,+0,+0,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-02-02 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 20:00:00 PST,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 21:00:00 PST,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-02-02 22:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-02 23:00:00 PST,+1.5,+30,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-02-03 00:00:00 PST,+3.1,+60,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-02-03 01:00:00 PST,+6.7,+80,+5,+270,+0.0350989,+2166.38,+61722.3,-420.858,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,-545.559,OK,OK
+2020-02-03 02:00:00 PST,+1.5,+90,+5,+270,+0.047239,+2915.7,+61722.3,+312.515,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,-382.24,OK,OK
+2020-02-03 03:00:00 PST,+8.2,+90,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-02-03 04:00:00 PST,+7.2,+100,+5,+270,+0.0609922,+3764.58,+61722.3,+679.049,OK,OK,+8,+180,+0.0159255,+982.955,+61722.3,+1073.56,OK,OK
+2020-02-03 05:00:00 PST,+7.2,+90,+5,+270,+0.0479968,+2962.47,+61722.3,+288.929,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,-162.894,OK,OK
+2020-02-03 06:00:00 PST,+8.7,+100,+5,+270,+0.0479968,+2962.47,+61722.3,+288.929,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,-162.894,OK,OK
+2020-02-03 07:00:00 PST,+2.1,+360,+5,+270,+0.0634351,+3915.36,+61722.3,+634.938,OK,OK,+8,+180,+0.0178553,+1102.07,+61722.3,+1080.4,OK,OK
+2020-02-03 08:00:00 PST,+1.5,+50,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-02-03 09:00:00 PST,+4.6,+90,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-03 10:00:00 PST,+10.3,+120,+5,+270,+0.0359649,+2219.83,+61722.3,-223.563,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,-535.341,OK,OK
+2020-02-03 11:00:00 PST,+9.3,+110,+5,+270,+0.0676176,+4173.51,+61722.3,+389.653,OK,OK,+8,+180,+0.023183,+1430.91,+61722.3,+650.083,OK,OK
+2020-02-03 12:00:00 PST,+8.2,+120,+5,+270,+0.0647928,+3999.16,+61722.3,+529.73,OK,OK,+8,+180,+0.019773,+1220.43,+61722.3,+898.038,OK,OK
+2020-02-03 13:00:00 PST,+8.2,+110,+5,+270,+0.0474432,+2928.3,+61722.3,+167.396,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,-42.6029,OK,OK
+2020-02-03 14:00:00 PST,+7.2,+120,+5,+270,+0.0474432,+2928.3,+61722.3,+167.396,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,-42.6029,OK,OK
+2020-02-03 15:00:00 PST,+5.7,+130,+5,+270,+0.0411111,+2537.47,+61722.3,+59.2738,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,-190.809,OK,OK
+2020-02-03 16:00:00 PST,+4.1,+160,+5,+270,+0.0343321,+2119.06,+61722.3,-38.1843,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,-80.1046,OK,OK
+2020-02-03 17:00:00 PST,+2.6,+130,+5,+270,+0.034742,+2144.35,+61722.3,+319.305,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+321.047,OK,OK
+2020-02-03 18:00:00 PST,+2.1,+130,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-02-03 19:00:00 PST,+2.1,+230,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-03 20:00:00 PST,+1.5,+340,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-03 21:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-02-03 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-03 23:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 00:00:00 PST,+1.5,+50,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-04 01:00:00 PST,+1.5,+180,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-04 02:00:00 PST,+2.6,+30,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-04 03:00:00 PST,+0,+0,+5,+270,+0.0355426,+2193.77,+61722.3,-418.086,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-469.748,OK,OK
+2020-02-04 04:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 05:00:00 PST,+2.1,+70,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-02-04 06:00:00 PST,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-02-04 07:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 08:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-02-04 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 12:00:00 PST,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 13:00:00 PST,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-02-04 14:00:00 PST,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-04 15:00:00 PST,+3.6,+260,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-04 16:00:00 PST,+5.7,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-02-04 17:00:00 PST,+4.1,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-04 18:00:00 PST,+3.1,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-02-04 19:00:00 PST,+3.6,+290,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-04 20:00:00 PST,+2.1,+260,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-02-04 21:00:00 PST,+1.5,+360,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-04 22:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-04 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 00:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 01:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-05 02:00:00 PST,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 03:00:00 PST,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-02-05 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 05:00:00 PST,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 06:00:00 PST,+1.5,+10,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-02-05 07:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-02-05 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 12:00:00 PST,+6.7,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 13:00:00 PST,+8.2,+50,+5,+270,+0.0470355,+2903.14,+61722.3,+308.229,OK,OK,+8,+180,+0.021311,+1315.36,+61722.3,-577.647,OK,OK
+2020-02-05 14:00:00 PST,+8.2,+70,+5,+270,+0.0593599,+3663.83,+61722.3,+800.39,OK,OK,+8,+180,+0.0127019,+783.991,+61722.3,+1056.03,OK,OK
+2020-02-05 15:00:00 PST,+8.2,+70,+5,+270,+0.0593599,+3663.83,+61722.3,+800.39,OK,OK,+8,+180,+0.0127019,+783.991,+61722.3,+1056.03,OK,OK
+2020-02-05 16:00:00 PST,+6.2,+40,+5,+270,+0.0593599,+3663.83,+61722.3,+800.39,OK,OK,+8,+180,+0.0127019,+783.991,+61722.3,+1056.03,OK,OK
+2020-02-05 17:00:00 PST,+7.2,+40,+5,+270,+0.0412957,+2548.86,+61722.3,-59.6875,OK,OK,+8,+180,+0.0301924,+1863.55,+61722.3,-923.473,OK,OK
+2020-02-05 18:00:00 PST,+5.7,+40,+5,+270,+0.0472672,+2917.44,+61722.3,+282.645,OK,OK,+8,+180,+0.0213689,+1318.94,+61722.3,-762.997,OK,OK
+2020-02-05 19:00:00 PST,+2.6,+340,+5,+270,+0.0391773,+2418.11,+61722.3,-203.397,OK,OK,+8,+180,+0.0343126,+2117.85,+61722.3,-911.733,OK,OK
+2020-02-05 20:00:00 PST,+2.1,+280,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-02-05 21:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-05 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-05 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 00:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 01:00:00 PST,+2.1,+70,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-06 02:00:00 PST,+2.6,+70,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-02-06 03:00:00 PST,+1.5,+350,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-02-06 04:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-02-06 05:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 06:00:00 PST,+1.5,+360,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-06 07:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-06 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 10:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 11:00:00 PST,+3.6,+120,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-02-06 12:00:00 PST,+2.1,+150,+5,+270,+0.0343854,+2122.34,+61722.3,-131.107,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,-167.233,OK,OK
+2020-02-06 13:00:00 PST,+3.6,+70,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-02-06 14:00:00 PST,+0,+0,+5,+270,+0.035126,+2168.06,+61722.3,-385.052,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,-579.842,OK,OK
+2020-02-06 15:00:00 PST,+5.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-06 16:00:00 PST,+4.1,+260,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-02-06 17:00:00 PST,+4.1,+270,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-02-06 18:00:00 PST,+4.1,+280,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-02-06 19:00:00 PST,+2.6,+300,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-02-06 20:00:00 PST,+2.1,+10,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-02-06 21:00:00 PST,+3.1,+50,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-02-06 22:00:00 PST,+2.1,+190,+5,+270,+0.0352073,+2173.07,+61722.3,-444.849,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,-565.663,OK,OK
+2020-02-06 23:00:00 PST,+0,+0,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-02-07 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-07 01:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-07 02:00:00 PST,+0,+0,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-02-07 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-07 04:00:00 PST,+1.3,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-07 05:00:00 PST,+2.6,+150,+5,+270,+0.0357217,+2204.83,+61722.3,-194.562,OK,OK,+8,+180,+0.0561371,+3464.91,+61722.3,-200.816,OK,OK
+2020-02-07 06:00:00 PST,+3.6,+160,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-02-07 07:00:00 PST,+3.1,+150,+5,+270,+0.0350459,+2163.11,+61722.3,+282.755,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+283.548,OK,OK
+2020-02-07 08:00:00 PST,+4.1,+160,+5,+270,+0.0350114,+2160.98,+61722.3,+143.482,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+149.222,OK,OK
+2020-02-07 09:00:00 PST,+5.7,+170,+5,+270,+0.034742,+2144.35,+61722.3,+319.305,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+321.047,OK,OK
+2020-02-07 10:00:00 PST,+5.7,+120,+5,+270,+0.0348565,+2151.42,+61722.3,+671.354,OK,OK,+8,+180,+0.0604106,+3728.68,+61722.3,+607.025,OK,OK
+2020-02-07 11:00:00 PST,+6.7,+130,+5,+270,+0.0348565,+2151.42,+61722.3,+671.354,OK,OK,+8,+180,+0.0604106,+3728.68,+61722.3,+607.025,OK,OK
+2020-02-07 12:00:00 PST,+6.7,+110,+5,+270,+0.0359312,+2217.76,+61722.3,-16.5359,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,-83.0438,OK,OK
+2020-02-07 13:00:00 PST,+4.6,+90,+5,+270,+0.0359312,+2217.76,+61722.3,-16.5359,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,-83.0438,OK,OK
+2020-02-07 14:00:00 PST,+4.1,+140,+5,+270,+0.0359649,+2219.83,+61722.3,-223.563,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,-535.341,OK,OK
+2020-02-07 15:00:00 PST,+2.6,+110,+5,+270,+0.0340916,+2104.21,+61722.3,+54.6639,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+64.4116,OK,OK
+2020-02-07 16:00:00 PST,+1.5,+180,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-02-07 17:00:00 PST,+2.6,+240,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-02-07 18:00:00 PST,+0,+0,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-02-07 19:00:00 PST,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-07 20:00:00 PST,+2.1,+360,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-02-07 21:00:00 PST,+2.1,+20,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-02-07 22:00:00 PST,+2.6,+120,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-02-07 23:00:00 PST,+1.5,+130,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-02-08 00:00:00 PST,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-02-08 01:00:00 PST,+3.6,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-08 02:00:00 PST,+3.6,+190,+5,+270,+0.036635,+2261.2,+61722.3,+579.458,OK,OK,+8,+180,+0.0587307,+3624.99,+61722.3,+565.108,OK,OK
+2020-02-08 03:00:00 PST,+4.1,+330,+5,+270,+0.036635,+2261.2,+61722.3,+579.458,OK,OK,+8,+180,+0.0587307,+3624.99,+61722.3,+565.108,OK,OK
+2020-02-08 04:00:00 PST,+1.5,+10,+5,+270,+0.0395383,+2440.39,+61722.3,-140.507,OK,OK,+8,+180,+0.0470635,+2904.87,+61722.3,-209.872,OK,OK
+2020-02-08 05:00:00 PST,+2.1,+170,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-02-08 06:00:00 PST,+0,+0,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-02-08 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-08 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-08 09:00:00 PST,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-08 10:00:00 PST,+2.1,+30,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-02-08 11:00:00 PST,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-02-08 12:00:00 PST,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-08 13:00:00 PST,+1.5,+330,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-02-08 14:00:00 PST,+4.1,+320,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-02-08 15:00:00 PST,+3.6,+300,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-02-08 16:00:00 PST,+5.1,+240,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-02-08 17:00:00 PST,+4.6,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-02-08 18:00:00 PST,+4.1,+260,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-02-08 19:00:00 PST,+4.1,+270,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-02-08 20:00:00 PST,+2.6,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-02-08 21:00:00 PST,+0,+0,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-02-08 22:00:00 PST,+2.6,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-08 23:00:00 PST,+1.5,+50,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-02-09 00:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-09 01:00:00 PST,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 02:00:00 PST,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-02-09 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 05:00:00 PST,+1.5,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 06:00:00 PST,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-02-09 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 14:00:00 PST,+2.1,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 15:00:00 PST,+2.1,+240,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-02-09 16:00:00 PST,+3.6,+310,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-02-09 17:00:00 PST,+4.6,+250,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-02-09 18:00:00 PST,+2.1,+280,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-02-09 19:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-09 20:00:00 PST,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-09 21:00:00 PST,+2.1,+80,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-02-09 22:00:00 PST,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-02-09 23:00:00 PST,+3.6,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-10 00:00:00 PST,+0,+0,+5,+270,+0.0355106,+2191.8,+61722.3,-492.278,OK,OK,+8,+180,+0.049473,+3053.59,+61722.3,-639.6,OK,OK
+2020-02-10 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-10 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-10 03:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-10 04:00:00 PST,+2.6,+340,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-10 05:00:00 PST,+2.6,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-02-10 06:00:00 PST,+3.6,+40,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-02-10 07:00:00 PST,+1.5,+50,+5,+270,+0.0354046,+2185.25,+61722.3,-476.052,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-652.664,OK,OK
+2020-02-10 08:00:00 PST,+1.5,+260,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-10 09:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-10 10:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-10 11:00:00 PST,+3.6,+80,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-10 12:00:00 PST,+5.7,+130,+5,+270,+0.0349895,+2159.63,+61722.3,-347.419,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,-522.323,OK,OK
+2020-02-10 13:00:00 PST,+6.2,+120,+5,+270,+0.0343321,+2119.06,+61722.3,-38.1843,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,-80.1046,OK,OK
+2020-02-10 14:00:00 PST,+5.1,+110,+5,+270,+0.0369896,+2283.08,+61722.3,-35.1647,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,-227.673,OK,OK
+2020-02-10 15:00:00 PST,+6.2,+70,+5,+270,+0.0356596,+2200.99,+61722.3,-132.354,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,-344.692,OK,OK
+2020-02-10 16:00:00 PST,+6.2,+120,+5,+270,+0.0437767,+2702,+61722.3,+159.782,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,-642.765,OK,OK
+2020-02-10 17:00:00 PST,+4.6,+120,+5,+270,+0.0437767,+2702,+61722.3,+159.782,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,-642.765,OK,OK
+2020-02-10 18:00:00 PST,+4.6,+100,+5,+270,+0.0343688,+2121.32,+61722.3,-122.704,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,-203.114,OK,OK
+2020-02-10 19:00:00 PST,+3.6,+100,+5,+270,+0.0343688,+2121.32,+61722.3,-122.704,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,-203.114,OK,OK
+2020-02-10 20:00:00 PST,+2.6,+90,+5,+270,+0.0346547,+2138.96,+61722.3,-257.751,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,-366.346,OK,OK
+2020-02-10 21:00:00 PST,+1.5,+90,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-02-10 22:00:00 PST,+2.1,+120,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-02-10 23:00:00 PST,+3.6,+90,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-02-11 00:00:00 PST,+2.6,+130,+5,+270,+0.0348274,+2149.63,+61722.3,-305.734,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,-450.629,OK,OK
+2020-02-11 01:00:00 PST,+2.1,+120,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-02-11 02:00:00 PST,+4.1,+80,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-02-11 03:00:00 PST,+4.6,+30,+5,+270,+0.0354299,+2186.81,+61722.3,-312.893,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,-577.067,OK,OK
+2020-02-11 04:00:00 PST,+5.1,+90,+5,+270,+0.0361529,+2231.44,+61722.3,-473.214,OK,OK,+8,+180,+0.0443491,+2737.33,+61722.3,-794.831,OK,OK
+2020-02-11 05:00:00 PST,+3.6,+110,+5,+270,+0.0372968,+2302.04,+61722.3,-141.163,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,-557.683,OK,OK
+2020-02-11 06:00:00 PST,+4.6,+160,+5,+270,+0.0344965,+2129.2,+61722.3,-200.52,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,-271.212,OK,OK
+2020-02-11 07:00:00 PST,+4.1,+180,+5,+270,+0.0344012,+2123.32,+61722.3,+354.702,OK,OK,+8,+180,+0.0561963,+3468.57,+61722.3,+357.774,OK,OK
+2020-02-11 08:00:00 PST,+4.6,+160,+5,+270,+0.0363044,+2240.79,+61722.3,+610.717,OK,OK,+8,+180,+0.0616019,+3802.21,+61722.3,+550.59,OK,OK
+2020-02-11 09:00:00 PST,+5.1,+160,+5,+270,+0.0344012,+2123.32,+61722.3,+354.702,OK,OK,+8,+180,+0.0561963,+3468.57,+61722.3,+357.774,OK,OK
+2020-02-11 10:00:00 PST,+5.1,+160,+5,+270,+0.0340248,+2100.09,+61722.3,+388.745,OK,OK,+8,+180,+0.0558772,+3448.87,+61722.3,+393.614,OK,OK
+2020-02-11 11:00:00 PST,+6.7,+160,+5,+270,+0.0340248,+2100.09,+61722.3,+388.745,OK,OK,+8,+180,+0.0558772,+3448.87,+61722.3,+393.614,OK,OK
+2020-02-11 12:00:00 PST,+5.1,+130,+5,+270,+0.0325972,+2011.97,+61722.3,+485.764,OK,OK,+8,+180,+0.0546634,+3373.95,+61722.3,+500.801,OK,OK
+2020-02-11 13:00:00 PST,+7.2,+140,+5,+270,+0.0339857,+2097.68,+61722.3,-45.5948,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,-75.0731,OK,OK
+2020-02-11 14:00:00 PST,+7.2,+150,+5,+270,+0.0340557,+2102,+61722.3,+31.8975,OK,OK,+8,+180,+0.0394611,+2435.63,+61722.3,+92.9418,OK,OK
+2020-02-11 15:00:00 PST,+6.7,+140,+5,+270,+0.0340557,+2102,+61722.3,+31.8975,OK,OK,+8,+180,+0.0394611,+2435.63,+61722.3,+92.9418,OK,OK
+2020-02-11 16:00:00 PST,+4.6,+170,+5,+270,+0.0336038,+2074.1,+61722.3,+42.0937,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+91.2664,OK,OK
+2020-02-11 17:00:00 PST,+6.2,+150,+5,+270,+0.0352596,+2176.3,+61722.3,+528.541,OK,OK,+8,+180,+0.0594348,+3668.45,+61722.3,+493.694,OK,OK
+2020-02-11 18:00:00 PST,+6.2,+140,+5,+270,+0.0326708,+2016.51,+61722.3,+215.279,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+275.356,OK,OK
+2020-02-11 19:00:00 PST,+7.2,+140,+5,+270,+0.0326708,+2016.51,+61722.3,+215.279,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+275.356,OK,OK
+2020-02-11 20:00:00 PST,+4.6,+140,+5,+270,+0.0340557,+2102,+61722.3,+31.8975,OK,OK,+8,+180,+0.0394611,+2435.63,+61722.3,+92.9418,OK,OK
+2020-02-11 21:00:00 PST,+3.6,+160,+5,+270,+0.0337741,+2084.61,+61722.3,+56.771,OK,OK,+8,+180,+0.0499875,+3085.34,+61722.3,+71.0767,OK,OK
+2020-02-11 22:00:00 PST,+4.1,+160,+5,+270,+0.0350459,+2163.11,+61722.3,+282.755,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+283.548,OK,OK
+2020-02-11 23:00:00 PST,+3.1,+130,+5,+270,+0.034742,+2144.35,+61722.3,+319.305,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+321.047,OK,OK
+2020-02-12 00:00:00 PST,+4.1,+110,+5,+270,+0.0346789,+2140.46,+61722.3,-43.8673,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,-49.5915,OK,OK
+2020-02-12 01:00:00 PST,+2.1,+100,+5,+270,+0.0345512,+2132.58,+61722.3,-193.14,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,-301.033,OK,OK
+2020-02-12 02:00:00 PST,+2.1,+90,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-02-12 03:00:00 PST,+3.6,+110,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-02-12 04:00:00 PST,+2.6,+80,+5,+270,+0.0344965,+2129.2,+61722.3,-200.52,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,-271.212,OK,OK
+2020-02-12 05:00:00 PST,+2.1,+130,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-02-12 06:00:00 PST,+0,+0,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-12 07:00:00 PST,+2.6,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-12 08:00:00 PST,+1.5,+140,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-02-12 09:00:00 PST,+2.6,+100,+5,+270,+0.0357518,+2206.68,+61722.3,+24.3657,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+24.6782,OK,OK
+2020-02-12 10:00:00 PST,+3.1,+110,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-02-12 11:00:00 PST,+7.7,+60,+5,+270,+0.0346488,+2138.6,+61722.3,-194.787,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,-238.109,OK,OK
+2020-02-12 12:00:00 PST,+7.2,+90,+5,+270,+0.0563185,+3476.11,+61722.3,+682.511,OK,OK,+8,+180,+0.0139801,+862.882,+61722.3,+530.992,OK,OK
+2020-02-12 13:00:00 PST,+4.1,+70,+5,+270,+0.0503606,+3108.37,+61722.3,+397.264,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,-65.0208,OK,OK
+2020-02-12 14:00:00 PST,+7.7,+50,+5,+270,+0.0356023,+2197.45,+61722.3,-347.658,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,-641.611,OK,OK
+2020-02-12 15:00:00 PST,+4.6,+90,+5,+270,+0.0541984,+3345.25,+61722.3,+610.591,OK,OK,+8,+180,+0.014646,+903.983,+61722.3,+80.683,OK,OK
+2020-02-12 16:00:00 PST,+4.1,+40,+5,+270,+0.0359649,+2219.83,+61722.3,-223.563,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,-535.341,OK,OK
+2020-02-12 17:00:00 PST,+0,+0,+5,+270,+0.03571,+2204.1,+61722.3,-463.208,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-730.795,OK,OK
+2020-02-12 18:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-12 19:00:00 PST,+5.7,+90,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-02-12 20:00:00 PST,+4.1,+100,+5,+270,+0.0397413,+2452.92,+61722.3,-10.9389,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,-551.111,OK,OK
+2020-02-12 21:00:00 PST,+2.1,+50,+5,+270,+0.0348718,+2152.37,+61722.3,-240.411,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,-405.442,OK,OK
+2020-02-12 22:00:00 PST,+2.6,+30,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-02-12 23:00:00 PST,+1.5,+20,+5,+270,+0.0355426,+2193.77,+61722.3,-418.086,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-469.748,OK,OK
+2020-02-13 00:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-02-13 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-13 02:00:00 PST,+2.1,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-13 03:00:00 PST,+1.5,+100,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-02-13 04:00:00 PST,+1.5,+90,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-02-13 05:00:00 PST,+1.5,+130,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-02-13 06:00:00 PST,+1.5,+160,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-02-13 07:00:00 PST,+2.6,+140,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-02-13 08:00:00 PST,+1.5,+110,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-02-13 09:00:00 PST,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-02-13 10:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-13 11:00:00 PST,+0,+0,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-02-13 12:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-13 13:00:00 PST,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-02-13 14:00:00 PST,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-13 15:00:00 PST,+2.1,+190,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-13 16:00:00 PST,+0,+0,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-02-13 17:00:00 PST,+3.6,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-13 18:00:00 PST,+2.6,+240,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-02-13 19:00:00 PST,+3.1,+240,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-02-13 20:00:00 PST,+3.1,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-13 21:00:00 PST,+3.1,+280,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-13 22:00:00 PST,+3.1,+310,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-13 23:00:00 PST,+1.5,+270,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-14 00:00:00 PST,+1.5,+250,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-14 01:00:00 PST,+2.1,+220,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-14 02:00:00 PST,+0,+0,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-02-14 03:00:00 PST,+2.1,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-14 04:00:00 PST,+2.1,+300,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-02-14 05:00:00 PST,+1.5,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-02-14 06:00:00 PST,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-14 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-14 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-14 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-14 10:00:00 PST,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-14 11:00:00 PST,+1.5,+240,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-02-14 12:00:00 PST,+2.6,+270,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-02-14 13:00:00 PST,+2.9,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-02-14 14:00:00 PST,+3.1,+260,+5,+270,+0.0387536,+2391.96,+61722.3,+311.841,OK,OK,+8,+180,+0.0505033,+3117.18,+61722.3,+404.494,OK,OK
+2020-02-14 15:00:00 PST,+5.1,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-02-14 16:00:00 PST,+6.2,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-02-14 17:00:00 PST,+5.7,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-02-14 18:00:00 PST,+5.1,+250,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-02-14 19:00:00 PST,+3.1,+300,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-02-14 20:00:00 PST,+3.1,+300,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-02-14 21:00:00 PST,+3.1,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-02-14 22:00:00 PST,+3.6,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-02-14 23:00:00 PST,+2.1,+300,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-02-15 00:00:00 PST,+2.1,+70,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-02-15 01:00:00 PST,+0,+0,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-02-15 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 03:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 04:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-02-15 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 07:00:00 PST,+2.6,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 08:00:00 PST,+2.6,+100,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-02-15 09:00:00 PST,+2.1,+290,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-02-15 10:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-02-15 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 12:00:00 PST,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 13:00:00 PST,+2.6,+310,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-02-15 14:00:00 PST,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-02-15 15:00:00 PST,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 16:00:00 PST,+3.6,+260,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-02-15 17:00:00 PST,+3.1,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-02-15 18:00:00 PST,+2.6,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-15 19:00:00 PST,+0,+0,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-02-15 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 21:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-15 22:00:00 PST,+4.1,+310,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-02-15 23:00:00 PST,+1.5,+320,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-02-16 00:00:00 PST,+1.5,+270,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-02-16 01:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-02-16 02:00:00 PST,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-16 03:00:00 PST,+1.5,+110,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-02-16 04:00:00 PST,+2.1,+270,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-02-16 05:00:00 PST,+2.1,+330,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-02-16 06:00:00 PST,+1.5,+50,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-02-16 07:00:00 PST,+2.1,+230,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-16 08:00:00 PST,+0,+0,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-02-16 09:00:00 PST,+2.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-16 10:00:00 PST,+0,+0,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-02-16 11:00:00 PST,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-16 12:00:00 PST,+2.4,+320,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-02-16 13:00:00 PST,+2.3,+300,+5,+270,+0.0372024,+2296.22,+61722.3,-35.1409,OK,OK,+8,+180,+0.0534331,+3298.01,+61722.3,-40.3717,OK,OK
+2020-02-16 14:00:00 PST,+2.1,+280,+5,+270,+0.0374485,+2311.41,+61722.3,+98.9702,OK,OK,+8,+180,+0.0531075,+3277.91,+61722.3,+115.339,OK,OK
+2020-02-16 15:00:00 PST,+2.1,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-16 16:00:00 PST,+2.1,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-16 17:00:00 PST,+2.1,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-16 18:00:00 PST,+1.5,+240,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-16 19:00:00 PST,+2.6,+280,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-02-16 20:00:00 PST,+2.6,+280,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-16 21:00:00 PST,+2.6,+290,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-16 22:00:00 PST,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-16 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 10:00:00 PST,+2.1,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 11:00:00 PST,+4.6,+240,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-02-17 12:00:00 PST,+3.1,+270,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-02-17 13:00:00 PST,+3.1,+240,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-17 14:00:00 PST,+4.1,+250,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-17 15:00:00 PST,+5.1,+240,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-02-17 16:00:00 PST,+2.6,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-02-17 17:00:00 PST,+1.5,+270,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-02-17 18:00:00 PST,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-17 19:00:00 PST,+2.1,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-17 20:00:00 PST,+2.1,+240,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-02-17 21:00:00 PST,+2.1,+260,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-02-17 22:00:00 PST,+2.1,+260,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-02-17 23:00:00 PST,+1.5,+260,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-02-18 00:00:00 PST,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-02-18 01:00:00 PST,+2.6,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 02:00:00 PST,+1.5,+10,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-02-18 03:00:00 PST,+2.1,+280,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-02-18 04:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-02-18 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 07:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 08:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-02-18 09:00:00 PST,+2.1,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 10:00:00 PST,+2.1,+20,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-02-18 11:00:00 PST,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-02-18 12:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 13:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-02-18 14:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 15:00:00 PST,+1.5,+310,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-18 16:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-02-18 17:00:00 PST,+3.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-18 18:00:00 PST,+2.1,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-02-18 19:00:00 PST,+2.1,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-02-18 20:00:00 PST,+2.1,+310,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-02-18 21:00:00 PST,+1.5,+320,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-02-18 22:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-02-18 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 00:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 01:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-02-19 02:00:00 PST,+2.1,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 03:00:00 PST,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-02-19 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 11:00:00 PST,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 12:00:00 PST,+3.6,+250,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-02-19 13:00:00 PST,+4.6,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-02-19 14:00:00 PST,+5.7,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-02-19 15:00:00 PST,+5.7,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-19 16:00:00 PST,+6.2,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-19 17:00:00 PST,+7.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-02-19 18:00:00 PST,+4.6,+270,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-02-19 19:00:00 PST,+7.2,+280,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-02-19 20:00:00 PST,+2.1,+260,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-02-19 21:00:00 PST,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-19 22:00:00 PST,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-19 23:00:00 PST,+3.1,+270,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-02-20 00:00:00 PST,+3.1,+270,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-20 01:00:00 PST,+3.6,+260,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-20 02:00:00 PST,+2.6,+200,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-02-20 03:00:00 PST,+1.5,+170,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-02-20 04:00:00 PST,+1.5,+110,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-02-20 05:00:00 PST,+2.6,+180,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-02-20 06:00:00 PST,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,+366.11,OK,OK,+8,+180,+0.0592223,+3655.33,+61722.3,+349.155,OK,OK
+2020-02-20 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-20 08:00:00 PST,+2.1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-20 09:00:00 PST,+1.5,+200,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-02-20 10:00:00 PST,+7.7,+200,+5,+270,+0.0362678,+2238.53,+61722.3,+258.333,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+259,OK,OK
+2020-02-20 11:00:00 PST,+5.7,+250,+5,+270,+0.0411029,+2536.96,+61722.3,+1190.5,OK,OK,+8,+180,+0.0537694,+3318.77,+61722.3,+1438.39,OK,OK
+2020-02-20 12:00:00 PST,+2.1,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-20 13:00:00 PST,+3.1,+270,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-20 14:00:00 PST,+2.6,+280,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-20 15:00:00 PST,+3.6,+290,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-20 16:00:00 PST,+3.1,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-02-20 17:00:00 PST,+2.1,+270,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-02-20 18:00:00 PST,+2.6,+250,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-02-20 19:00:00 PST,+2.1,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-02-20 20:00:00 PST,+1.1,+310,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-20 21:00:00 PST,+0,+0,+5,+270,+0.0363179,+2241.62,+61722.3,+17.7984,OK,OK,+8,+180,+0.0566491,+3496.51,+61722.3,+18.2778,OK,OK
+2020-02-20 22:00:00 PST,+2.1,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-20 23:00:00 PST,+0,+0,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-02-21 00:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-21 01:00:00 PST,+1.5,+210,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-02-21 02:00:00 PST,+1.5,+10,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-02-21 03:00:00 PST,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-02-21 04:00:00 PST,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-21 05:00:00 PST,+2.6,+190,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-02-21 06:00:00 PST,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-02-21 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-21 08:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-21 09:00:00 PST,+2.1,+50,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-02-21 10:00:00 PST,+2.1,+20,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-02-21 11:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-02-21 12:00:00 PST,+3.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-21 13:00:00 PST,+2.6,+270,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-02-21 14:00:00 PST,+3.6,+230,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-02-21 15:00:00 PST,+6.2,+270,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-02-21 16:00:00 PST,+5.1,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-02-21 17:00:00 PST,+3.6,+260,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-02-21 18:00:00 PST,+3.1,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-02-21 19:00:00 PST,+3.6,+300,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-02-21 20:00:00 PST,+3.1,+320,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-02-21 21:00:00 PST,+0,+0,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-02-21 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-21 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 00:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 01:00:00 PST,+1.5,+160,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-02-22 02:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-02-22 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 05:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 06:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-02-22 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 13:00:00 PST,+2.3,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-22 14:00:00 PST,+4.6,+250,+5,+270,+0.0372917,+2301.73,+61722.3,+33.62,OK,OK,+8,+180,+0.0533763,+3294.51,+61722.3,+38.7483,OK,OK
+2020-02-22 15:00:00 PST,+4.8,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-02-22 16:00:00 PST,+4.9,+250,+5,+270,+0.0444606,+2744.21,+61722.3,+458.445,OK,OK,+8,+180,+0.0413798,+2554.05,+61722.3,+922.17,OK,OK
+2020-02-22 17:00:00 PST,+5.1,+250,+5,+270,+0.0449277,+2773.04,+61722.3,+453.969,OK,OK,+8,+180,+0.0407158,+2513.07,+61722.3,+946.762,OK,OK
+2020-02-22 18:00:00 PST,+3.1,+270,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-02-22 19:00:00 PST,+2.6,+310,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-02-22 20:00:00 PST,+4.1,+310,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-02-22 21:00:00 PST,+3.1,+290,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-02-22 22:00:00 PST,+0,+0,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-02-22 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 02:00:00 PST,+2.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 03:00:00 PST,+1.5,+300,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-02-23 04:00:00 PST,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-02-23 05:00:00 PST,+1.5,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 06:00:00 PST,+0.8,+80,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-02-23 07:00:00 PST,+0,+0,+5,+270,+0.03594,+2218.3,+61722.3,-123.088,OK,OK,+8,+180,+0.0570592,+3521.82,+61722.3,-124.13,OK,OK
+2020-02-23 08:00:00 PST,+1.3,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 09:00:00 PST,+2.6,+170,+5,+270,+0.0357137,+2204.33,+61722.3,-168.191,OK,OK,+8,+180,+0.0561848,+3467.85,+61722.3,-173.33,OK,OK
+2020-02-23 10:00:00 PST,+0,+0,+5,+270,+0.0358113,+2210.35,+61722.3,+289.145,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+281.865,OK,OK
+2020-02-23 11:00:00 PST,+2.1,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-23 12:00:00 PST,+2.6,+320,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-02-23 13:00:00 PST,+3.6,+290,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-02-23 14:00:00 PST,+4.1,+280,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-02-23 15:00:00 PST,+5.1,+260,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-02-23 16:00:00 PST,+4.6,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-02-23 17:00:00 PST,+4.6,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-02-23 18:00:00 PST,+3.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-02-23 19:00:00 PST,+3.1,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-02-23 20:00:00 PST,+2.1,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-02-23 21:00:00 PST,+2.1,+330,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-02-23 22:00:00 PST,+1.5,+350,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-02-23 23:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-02-24 00:00:00 PST,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-24 01:00:00 PST,+1.5,+340,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-02-24 02:00:00 PST,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-02-24 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-24 04:00:00 PST,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-24 05:00:00 PST,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-02-24 06:00:00 PST,+1.5,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-24 07:00:00 PST,+0,+0,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-02-24 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-24 09:00:00 PST,+2.1,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-24 10:00:00 PST,+2.6,+160,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-24 11:00:00 PST,+3.1,+190,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-02-24 12:00:00 PST,+3.6,+210,+5,+270,+0.0364897,+2252.23,+61722.3,+495.36,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+485.515,OK,OK
+2020-02-24 13:00:00 PST,+4.1,+240,+5,+270,+0.0377319,+2328.9,+61722.3,+610.945,OK,OK,+8,+180,+0.0547856,+3381.49,+61722.3,+678.634,OK,OK
+2020-02-24 14:00:00 PST,+5.1,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-02-24 15:00:00 PST,+4.6,+220,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-02-24 16:00:00 PST,+6.7,+220,+5,+270,+0.0400764,+2473.61,+61722.3,+687.592,OK,OK,+8,+180,+0.0499875,+3085.34,+61722.3,+924.546,OK,OK
+2020-02-24 17:00:00 PST,+7.2,+230,+5,+270,+0.0460065,+2839.63,+61722.3,+730.251,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+1457.86,OK,OK
+2020-02-24 18:00:00 PST,+5.1,+240,+5,+270,+0.0524544,+3237.6,+61722.3,+506.271,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,+1693.21,OK,OK
+2020-02-24 19:00:00 PST,+4.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-02-24 20:00:00 PST,+2.6,+180,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-02-24 21:00:00 PST,+2.1,+120,+5,+270,+0.0361206,+2229.44,+61722.3,+366.11,OK,OK,+8,+180,+0.0592223,+3655.33,+61722.3,+349.155,OK,OK
+2020-02-24 22:00:00 PST,+0,+0,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-02-24 23:00:00 PST,+2.6,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-25 00:00:00 PST,+2.6,+100,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-02-25 01:00:00 PST,+2.1,+10,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-02-25 02:00:00 PST,+2.6,+40,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-02-25 03:00:00 PST,+3.1,+50,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-02-25 04:00:00 PST,+4.1,+70,+5,+270,+0.0352073,+2173.07,+61722.3,-444.849,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,-565.663,OK,OK
+2020-02-25 05:00:00 PST,+3.6,+60,+5,+270,+0.0356023,+2197.45,+61722.3,-347.658,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,-641.611,OK,OK
+2020-02-25 06:00:00 PST,+5.1,+60,+5,+270,+0.0352335,+2174.69,+61722.3,-419.646,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,-621.673,OK,OK
+2020-02-25 07:00:00 PST,+5.7,+80,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-02-25 08:00:00 PST,+5.1,+80,+5,+270,+0.0404693,+2497.86,+61722.3,+5.12587,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,-634.318,OK,OK
+2020-02-25 09:00:00 PST,+4.1,+60,+5,+270,+0.037813,+2333.9,+61722.3,-147.829,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,-645.188,OK,OK
+2020-02-25 10:00:00 PST,+6.7,+100,+5,+270,+0.0356926,+2203.02,+61722.3,-384.927,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,-689.978,OK,OK
+2020-02-25 11:00:00 PST,+3.1,+120,+5,+270,+0.0441785,+2726.79,+61722.3,+172.623,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,-342.763,OK,OK
+2020-02-25 12:00:00 PST,+5.1,+60,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-02-25 13:00:00 PST,+2.6,+70,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-02-25 14:00:00 PST,+3.1,+80,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-02-25 15:00:00 PST,+3.1,+140,+5,+270,+0.0348921,+2153.62,+61722.3,-352.016,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,-459.811,OK,OK
+2020-02-25 16:00:00 PST,+3.6,+190,+5,+270,+0.0348921,+2153.62,+61722.3,-352.016,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,-459.811,OK,OK
+2020-02-25 17:00:00 PST,+4.1,+280,+5,+270,+0.036635,+2261.2,+61722.3,+579.458,OK,OK,+8,+180,+0.0587307,+3624.99,+61722.3,+565.108,OK,OK
+2020-02-25 18:00:00 PST,+2.6,+280,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-02-25 19:00:00 PST,+2.6,+250,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-25 20:00:00 PST,+3.6,+230,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-02-25 21:00:00 PST,+3.6,+260,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-02-25 22:00:00 PST,+2.1,+210,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-02-25 23:00:00 PST,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-02-26 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-26 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-26 02:00:00 PST,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-26 03:00:00 PST,+1.5,+90,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-02-26 04:00:00 PST,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-02-26 05:00:00 PST,+2.1,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-26 06:00:00 PST,+3.1,+210,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-02-26 07:00:00 PST,+0,+0,+5,+270,+0.0372857,+2301.36,+61722.3,+537.74,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+580.211,OK,OK
+2020-02-26 08:00:00 PST,+2.1,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-26 09:00:00 PST,+2.1,+30,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-26 10:00:00 PST,+2.1,+40,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-26 11:00:00 PST,+4.1,+310,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-26 12:00:00 PST,+7.2,+240,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-02-26 13:00:00 PST,+6.2,+230,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-02-26 14:00:00 PST,+5.7,+230,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-02-26 15:00:00 PST,+5.1,+240,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-02-26 16:00:00 PST,+6.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-02-26 17:00:00 PST,+5.1,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-02-26 18:00:00 PST,+5.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-02-26 19:00:00 PST,+4.1,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-02-26 20:00:00 PST,+3.1,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-02-26 21:00:00 PST,+3.1,+290,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-02-26 22:00:00 PST,+0,+0,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-02-26 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-27 00:00:00 PST,+3.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-27 01:00:00 PST,+4.6,+240,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-02-27 02:00:00 PST,+3.1,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-02-27 03:00:00 PST,+2.1,+260,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-27 04:00:00 PST,+4.6,+220,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-02-27 05:00:00 PST,+2.6,+290,+5,+270,+0.0400764,+2473.61,+61722.3,+687.592,OK,OK,+8,+180,+0.0499875,+3085.34,+61722.3,+924.546,OK,OK
+2020-02-27 06:00:00 PST,+3.6,+270,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-02-27 07:00:00 PST,+1.5,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-02-27 08:00:00 PST,+2.1,+220,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-27 09:00:00 PST,+2.6,+220,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-02-27 10:00:00 PST,+3.6,+220,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-02-27 11:00:00 PST,+3.6,+190,+5,+270,+0.0383588,+2367.59,+61722.3,+593.867,OK,OK,+8,+180,+0.0529191,+3266.29,+61722.3,+706.006,OK,OK
+2020-02-27 12:00:00 PST,+2.1,+230,+5,+270,+0.0383588,+2367.59,+61722.3,+593.867,OK,OK,+8,+180,+0.0529191,+3266.29,+61722.3,+706.006,OK,OK
+2020-02-27 13:00:00 PST,+2.6,+190,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-02-27 14:00:00 PST,+3.6,+250,+5,+270,+0.0363678,+2244.7,+61722.3,+412.843,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+406.408,OK,OK
+2020-02-27 15:00:00 PST,+5.1,+220,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-02-27 16:00:00 PST,+5.7,+250,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-02-27 17:00:00 PST,+5.7,+240,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-27 18:00:00 PST,+3.1,+230,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-27 19:00:00 PST,+4.1,+240,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-02-27 20:00:00 PST,+3.1,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-02-27 21:00:00 PST,+0,+0,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-02-27 22:00:00 PST,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-27 23:00:00 PST,+2.1,+270,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-28 00:00:00 PST,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-02-28 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 04:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 05:00:00 PST,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-02-28 06:00:00 PST,+2.1,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 07:00:00 PST,+0,+0,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-02-28 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 09:00:00 PST,+0.8,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 10:00:00 PST,+1.5,+360,+5,+270,+0.0360853,+2227.27,+61722.3,-107.51,OK,OK,+8,+180,+0.0574702,+3547.19,+61722.3,-107.432,OK,OK
+2020-02-28 11:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-28 12:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 13:00:00 PST,+1.5,+360,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-28 14:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-02-28 15:00:00 PST,+3.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-28 16:00:00 PST,+3.1,+250,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-02-28 17:00:00 PST,+5.7,+250,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-02-28 18:00:00 PST,+4.6,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-02-28 19:00:00 PST,+3.6,+240,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-02-28 20:00:00 PST,+3.1,+240,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-02-28 21:00:00 PST,+1.5,+270,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-02-28 22:00:00 PST,+1.3,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-02-28 23:00:00 PST,+1.1,+0,+5,+270,+0.0360872,+2227.39,+61722.3,-173.485,OK,OK,+8,+180,+0.0572216,+3531.84,+61722.3,-174.577,OK,OK
+2020-02-29 00:00:00 PST,+0.9,+0,+5,+270,+0.0360862,+2227.32,+61722.3,-147.267,OK,OK,+8,+180,+0.0573352,+3538.86,+61722.3,-147.719,OK,OK
+2020-02-29 01:00:00 PST,+0.6,+0,+5,+270,+0.0360855,+2227.28,+61722.3,-120.813,OK,OK,+8,+180,+0.0574299,+3544.7,+61722.3,-120.861,OK,OK
+2020-02-29 02:00:00 PST,+0.4,+0,+5,+270,+0.0360851,+2227.25,+61722.3,-80.7821,OK,OK,+8,+180,+0.0575365,+3551.28,+61722.3,-80.5742,OK,OK
+2020-02-29 03:00:00 PST,+0.2,+0,+5,+270,+0.036085,+2227.25,+61722.3,-53.9258,OK,OK,+8,+180,+0.0575838,+3554.2,+61722.3,-53.7161,OK,OK
+2020-02-29 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,-26.9842,OK,OK,+8,+180,+0.0576122,+3555.96,+61722.3,-26.8581,OK,OK
+2020-02-29 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-29 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-29 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-29 08:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-02-29 09:00:00 PST,+1.5,+200,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-02-29 10:00:00 PST,+1.5,+200,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-02-29 11:00:00 PST,+2.6,+190,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-02-29 12:00:00 PST,+1.5,+240,+5,+270,+0.0363678,+2244.7,+61722.3,+412.843,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+406.408,OK,OK
+2020-02-29 13:00:00 PST,+2.6,+250,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-02-29 14:00:00 PST,+3.6,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-02-29 15:00:00 PST,+3.9,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-02-29 16:00:00 PST,+4.3,+260,+5,+270,+0.0414708,+2559.67,+61722.3,+403.405,OK,OK,+8,+180,+0.0456367,+2816.8,+61722.3,+652.037,OK,OK
+2020-02-29 17:00:00 PST,+4.6,+260,+5,+270,+0.0430374,+2656.37,+61722.3,+399.461,OK,OK,+8,+180,+0.0431006,+2660.26,+61722.3,+732.509,OK,OK
+2020-02-29 18:00:00 PST,+3.1,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-02-29 19:00:00 PST,+3.1,+270,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-02-29 20:00:00 PST,+3.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-02-29 21:00:00 PST,+2.1,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-02-29 22:00:00 PST,+2.6,+260,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-02-29 23:00:00 PST,+1.5,+30,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-01 00:00:00 PST,+0.9,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-01 01:00:00 PST,+0.6,+0,+5,+270,+0.0360855,+2227.28,+61722.3,-120.813,OK,OK,+8,+180,+0.0574299,+3544.7,+61722.3,-120.861,OK,OK
+2020-03-01 02:00:00 PST,+0.4,+0,+5,+270,+0.0360851,+2227.25,+61722.3,-80.7821,OK,OK,+8,+180,+0.0575365,+3551.28,+61722.3,-80.5742,OK,OK
+2020-03-01 03:00:00 PST,+0.2,+0,+5,+270,+0.036085,+2227.25,+61722.3,-53.9258,OK,OK,+8,+180,+0.0575838,+3554.2,+61722.3,-53.7161,OK,OK
+2020-03-01 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,-26.9842,OK,OK,+8,+180,+0.0576122,+3555.96,+61722.3,-26.8581,OK,OK
+2020-03-01 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-01 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-01 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-01 08:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-01 09:00:00 PST,+1.5,+200,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-03-01 10:00:00 PST,+1.5,+200,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-03-01 11:00:00 PST,+2.6,+190,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-03-01 12:00:00 PST,+1.5,+240,+5,+270,+0.0363678,+2244.7,+61722.3,+412.843,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+406.408,OK,OK
+2020-03-01 13:00:00 PST,+2.6,+250,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-01 14:00:00 PST,+3.6,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-03-01 15:00:00 PST,+3.9,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-03-01 16:00:00 PST,+4.3,+260,+5,+270,+0.0414708,+2559.67,+61722.3,+403.405,OK,OK,+8,+180,+0.0456367,+2816.8,+61722.3,+652.037,OK,OK
+2020-03-01 17:00:00 PST,+4.6,+260,+5,+270,+0.0430374,+2656.37,+61722.3,+399.461,OK,OK,+8,+180,+0.0431006,+2660.26,+61722.3,+732.509,OK,OK
+2020-03-01 18:00:00 PST,+3.1,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-01 19:00:00 PST,+3.1,+270,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-03-01 20:00:00 PST,+3.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-03-01 21:00:00 PST,+2.1,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-03-01 22:00:00 PST,+2.6,+260,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-03-01 23:00:00 PST,+1.5,+30,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-02 00:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-02 01:00:00 PST,+2.6,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-02 02:00:00 PST,+1.5,+20,+5,+270,+0.0358113,+2210.35,+61722.3,+289.145,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+281.865,OK,OK
+2020-03-02 03:00:00 PST,+2.6,+350,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-03-02 04:00:00 PST,+1.5,+160,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-03-02 05:00:00 PST,+1.5,+170,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-03-02 06:00:00 PST,+1.5,+180,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-03-02 07:00:00 PST,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-03-02 08:00:00 PST,+2.1,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-02 09:00:00 PST,+5.7,+80,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-03-02 10:00:00 PST,+6.7,+50,+5,+270,+0.0404693,+2497.86,+61722.3,+5.12587,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,-634.318,OK,OK
+2020-03-02 11:00:00 PST,+6.2,+70,+5,+270,+0.0457895,+2826.23,+61722.3,+232.308,OK,OK,+8,+180,+0.0230113,+1420.31,+61722.3,-737.081,OK,OK
+2020-03-02 12:00:00 PST,+7.2,+60,+5,+270,+0.0437767,+2702,+61722.3,+159.782,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,-642.765,OK,OK
+2020-03-02 13:00:00 PST,+6.7,+70,+5,+270,+0.0513315,+3168.3,+61722.3,+494.966,OK,OK,+8,+180,+0.0170066,+1049.68,+61722.3,-205.449,OK,OK
+2020-03-02 14:00:00 PST,+4.6,+80,+5,+270,+0.0475494,+2934.86,+61722.3,+333.218,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,-451.995,OK,OK
+2020-03-02 15:00:00 PST,+2.6,+40,+5,+270,+0.036334,+2242.62,+61722.3,-246.071,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,-620.183,OK,OK
+2020-03-02 16:00:00 PST,+0,+0,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-03-02 17:00:00 PST,+3.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-02 18:00:00 PST,+3.1,+310,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-03-02 19:00:00 PST,+3.6,+230,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-03-02 20:00:00 PST,+2.6,+280,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-03-02 21:00:00 PST,+2.6,+300,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-03-02 22:00:00 PST,+1.5,+30,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-03-02 23:00:00 PST,+1.5,+40,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-03 00:00:00 PST,+1.5,+80,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-03 01:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-03 02:00:00 PST,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 03:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-03 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 05:00:00 PST,+2.1,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 06:00:00 PST,+0,+0,+5,+270,+0.0352717,+2177.05,+61722.3,-290.002,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,-320.386,OK,OK
+2020-03-03 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 11:00:00 PST,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-03 12:00:00 PST,+2.6,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-03-03 13:00:00 PST,+3.1,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-03-03 14:00:00 PST,+4.1,+280,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-03 15:00:00 PST,+3.1,+250,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-03-03 16:00:00 PST,+4.1,+220,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-03-03 17:00:00 PST,+3.6,+230,+5,+270,+0.0391406,+2415.84,+61722.3,+646.25,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+813.239,OK,OK
+2020-03-03 18:00:00 PST,+4.1,+220,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-03-03 19:00:00 PST,+3.1,+230,+5,+270,+0.0391406,+2415.84,+61722.3,+646.25,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+813.239,OK,OK
+2020-03-03 20:00:00 PST,+3.6,+240,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-03-03 21:00:00 PST,+4.1,+280,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-03-03 22:00:00 PST,+4.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-03-03 23:00:00 PST,+0,+0,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-03-04 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 01:00:00 PST,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 02:00:00 PST,+1.5,+230,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-03-04 03:00:00 PST,+1.5,+150,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-03-04 04:00:00 PST,+0,+0,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-03-04 05:00:00 PST,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 06:00:00 PST,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-03-04 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 12:00:00 PST,+3.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-04 13:00:00 PST,+2.1,+280,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-03-04 14:00:00 PST,+2.6,+240,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-03-04 15:00:00 PST,+5.1,+230,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-03-04 16:00:00 PST,+4.1,+260,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-03-04 17:00:00 PST,+2.6,+230,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-03-04 18:00:00 PST,+2.6,+270,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-03-04 19:00:00 PST,+3.1,+260,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-03-04 20:00:00 PST,+3.6,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-03-04 21:00:00 PST,+4.1,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-03-04 22:00:00 PST,+0,+0,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-03-04 23:00:00 PST,+2.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 00:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-03-05 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 05:00:00 PST,+1.5,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 06:00:00 PST,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-03-05 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 09:00:00 PST,+0.8,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 10:00:00 PST,+1.5,+230,+5,+270,+0.0362206,+2235.62,+61722.3,+38.9129,OK,OK,+8,+180,+0.0570744,+3522.76,+61722.3,+39.4133,OK,OK
+2020-03-05 11:00:00 PST,+2.1,+250,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-03-05 12:00:00 PST,+1.5,+270,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-03-05 13:00:00 PST,+1.8,+260,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-03-05 14:00:00 PST,+2.1,+250,+5,+270,+0.036933,+2279.59,+61722.3,+260.917,OK,OK,+8,+180,+0.0550445,+3397.47,+61722.3,+283.842,OK,OK
+2020-03-05 15:00:00 PST,+4.1,+240,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-03-05 16:00:00 PST,+5.7,+250,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-03-05 17:00:00 PST,+6.7,+240,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-03-05 18:00:00 PST,+4.1,+250,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-03-05 19:00:00 PST,+3.1,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-03-05 20:00:00 PST,+0,+0,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-03-05 21:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-05 22:00:00 PST,+1.5,+10,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-03-05 23:00:00 PST,+1.5,+130,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-03-06 00:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-03-06 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 03:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 04:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-03-06 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 11:00:00 PST,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 12:00:00 PST,+2.1,+280,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-03-06 13:00:00 PST,+2.6,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-03-06 14:00:00 PST,+3.1,+270,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-03-06 15:00:00 PST,+5.7,+260,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-06 16:00:00 PST,+5.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-03-06 17:00:00 PST,+5.1,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-03-06 18:00:00 PST,+3.1,+280,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-03-06 19:00:00 PST,+3.1,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-03-06 20:00:00 PST,+2.1,+320,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-03-06 21:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-03-06 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-06 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 09:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 10:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-03-07 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 12:00:00 PST,+2.9,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-07 13:00:00 PST,+5.7,+240,+5,+270,+0.0384972,+2376.14,+61722.3,+113.788,OK,OK,+8,+180,+0.0504569,+3114.31,+61722.3,+147.334,OK,OK
+2020-03-07 14:00:00 PST,+6.2,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-03-07 15:00:00 PST,+5.1,+270,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-03-07 16:00:00 PST,+6.7,+250,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-03-07 17:00:00 PST,+4.6,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-03-07 18:00:00 PST,+5.1,+280,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-03-07 19:00:00 PST,+4.1,+280,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-03-07 20:00:00 PST,+2.1,+300,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-03-07 21:00:00 PST,+1.5,+310,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-03-07 22:00:00 PST,+2.1,+320,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-03-07 23:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-03-08 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 07:00:00 PDT,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 08:00:00 PDT,+1.5,+260,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-03-08 09:00:00 PDT,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-03-08 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 11:00:00 PDT,+0.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 12:00:00 PDT,+1,+360,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-03-08 13:00:00 PDT,+1.5,+360,+5,+270,+0.0360858,+2227.3,+61722.3,-134.067,OK,OK,+8,+180,+0.0573849,+3541.93,+61722.3,-134.29,OK,OK
+2020-03-08 14:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-03-08 15:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 16:00:00 PDT,+3.1,+250,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-03-08 17:00:00 PDT,+4.1,+240,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-03-08 18:00:00 PDT,+3.6,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-03-08 19:00:00 PDT,+2.6,+250,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-03-08 20:00:00 PDT,+2.1,+290,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-03-08 21:00:00 PDT,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-03-08 22:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-08 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 00:00:00 PDT,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 01:00:00 PDT,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-03-09 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 07:00:00 PDT,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 08:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-03-09 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 13:00:00 PDT,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 14:00:00 PDT,+3.1,+270,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-03-09 15:00:00 PDT,+4.6,+260,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-09 16:00:00 PDT,+5.7,+240,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-09 17:00:00 PDT,+6.2,+250,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-03-09 18:00:00 PDT,+5.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-03-09 19:00:00 PDT,+3.1,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-03-09 20:00:00 PDT,+2.1,+250,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-03-09 21:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-03-09 22:00:00 PDT,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-09 23:00:00 PDT,+2.1,+360,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-03-10 00:00:00 PDT,+2.1,+170,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-03-10 01:00:00 PDT,+3.6,+360,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-03-10 02:00:00 PDT,+0,+0,+5,+270,+0.0362156,+2235.31,+61722.3,-442.873,OK,OK,+8,+180,+0.0545531,+3367.14,+61722.3,-483.445,OK,OK
+2020-03-10 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 12:00:00 PDT,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 13:00:00 PDT,+3.1,+230,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-03-10 14:00:00 PDT,+3.1,+250,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-03-10 15:00:00 PDT,+4.6,+260,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-03-10 16:00:00 PDT,+4.6,+240,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-10 17:00:00 PDT,+4.6,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-10 18:00:00 PDT,+4.6,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-10 19:00:00 PDT,+4.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-10 20:00:00 PDT,+0,+0,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-10 21:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-10 22:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-03-10 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 07:00:00 PDT,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 08:00:00 PDT,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-03-11 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 12:00:00 PDT,+2.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-11 13:00:00 PDT,+1.5,+250,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-03-11 14:00:00 PDT,+5.7,+230,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-03-11 15:00:00 PDT,+5.1,+250,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-03-11 16:00:00 PDT,+5.7,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-03-11 17:00:00 PDT,+5.7,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-03-11 18:00:00 PDT,+5.1,+240,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-03-11 19:00:00 PDT,+3.6,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-03-11 20:00:00 PDT,+2.6,+310,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-03-11 21:00:00 PDT,+3.1,+320,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-03-11 22:00:00 PDT,+0,+0,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-03-11 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 00:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 01:00:00 PDT,+1.5,+90,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-03-12 02:00:00 PDT,+1.5,+120,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-03-12 03:00:00 PDT,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-03-12 04:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 05:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-03-12 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 14:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 15:00:00 PDT,+2.6,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-12 16:00:00 PDT,+3.6,+250,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-03-12 17:00:00 PDT,+7.2,+240,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-03-12 18:00:00 PDT,+3.1,+270,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-03-12 19:00:00 PDT,+3.1,+280,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-12 20:00:00 PDT,+3.1,+300,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-12 21:00:00 PDT,+2.6,+310,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-12 22:00:00 PDT,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-03-12 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 08:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 09:00:00 PDT,+1.1,+360,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-03-13 10:00:00 PDT,+0,+0,+5,+270,+0.0360862,+2227.32,+61722.3,-147.267,OK,OK,+8,+180,+0.0573352,+3538.86,+61722.3,-147.719,OK,OK
+2020-03-13 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 12:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-13 13:00:00 PDT,+2.1,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-03-13 14:00:00 PDT,+5.1,+270,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-03-13 15:00:00 PDT,+4.6,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-03-13 16:00:00 PDT,+6.2,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-13 17:00:00 PDT,+6.7,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-03-13 18:00:00 PDT,+7.2,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-03-13 19:00:00 PDT,+8.2,+260,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-03-13 20:00:00 PDT,+4.1,+10,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-03-13 21:00:00 PDT,+7.7,+250,+5,+270,+0.0359712,+2220.23,+61722.3,-516.222,OK,OK,+8,+180,+0.0512224,+3161.56,+61722.3,-629.17,OK,OK
+2020-03-13 22:00:00 PDT,+3.6,+300,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-03-13 23:00:00 PDT,+2.1,+280,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-03-14 00:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-03-14 01:00:00 PDT,+1.5,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-14 02:00:00 PDT,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-03-14 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-14 04:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-14 05:00:00 PDT,+2.1,+260,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-03-14 06:00:00 PDT,+1.5,+310,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-03-14 07:00:00 PDT,+2.1,+310,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-03-14 08:00:00 PDT,+4.1,+270,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-03-14 09:00:00 PDT,+2.6,+300,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-03-14 10:00:00 PDT,+3.1,+330,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-03-14 11:00:00 PDT,+0,+0,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-03-14 12:00:00 PDT,+1.5,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-14 13:00:00 PDT,+2.6,+210,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-03-14 14:00:00 PDT,+2.6,+230,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-03-14 15:00:00 PDT,+1.5,+240,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-03-14 16:00:00 PDT,+4.1,+250,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-14 17:00:00 PDT,+3.6,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-03-14 18:00:00 PDT,+3.1,+270,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-03-14 19:00:00 PDT,+4.1,+270,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-14 20:00:00 PDT,+4.1,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-03-14 21:00:00 PDT,+4.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-03-14 22:00:00 PDT,+3.6,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-03-14 23:00:00 PDT,+1.5,+350,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-03-15 00:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-03-15 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-15 02:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-15 03:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-03-15 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-15 05:00:00 PDT,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-15 06:00:00 PDT,+2.1,+130,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-03-15 07:00:00 PDT,+2.1,+110,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-03-15 08:00:00 PDT,+0,+0,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-03-15 09:00:00 PDT,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-15 10:00:00 PDT,+1.5,+60,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-03-15 11:00:00 PDT,+1.5,+30,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-03-15 12:00:00 PDT,+2.6,+30,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-03-15 13:00:00 PDT,+1.5,+90,+5,+270,+0.0355426,+2193.77,+61722.3,-418.086,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-469.748,OK,OK
+2020-03-15 14:00:00 PDT,+3.1,+80,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-03-15 15:00:00 PDT,+2.1,+50,+5,+270,+0.0348921,+2153.62,+61722.3,-352.016,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,-459.811,OK,OK
+2020-03-15 16:00:00 PDT,+2.1,+90,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-03-15 17:00:00 PDT,+2.6,+40,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-03-15 18:00:00 PDT,+5.7,+320,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-03-15 19:00:00 PDT,+2.6,+330,+5,+270,+0.0474289,+2927.42,+61722.3,-34.4946,OK,OK,+8,+180,+0.0343126,+2117.85,+61722.3,-106.959,OK,OK
+2020-03-15 20:00:00 PDT,+1.5,+350,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-03-15 21:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-03-15 22:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-15 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-16 00:00:00 PDT,+2.1,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-16 01:00:00 PDT,+2.6,+100,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-03-16 02:00:00 PDT,+1.5,+100,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-03-16 03:00:00 PDT,+3.6,+50,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-03-16 04:00:00 PDT,+2.6,+360,+5,+270,+0.0353204,+2180.06,+61722.3,-450.682,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,-646.372,OK,OK
+2020-03-16 05:00:00 PDT,+3.6,+180,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-03-16 06:00:00 PDT,+3.1,+160,+5,+270,+0.0362156,+2235.31,+61722.3,+525.31,OK,OK,+8,+180,+0.0606903,+3745.94,+61722.3,+483.445,OK,OK
+2020-03-16 07:00:00 PDT,+0,+0,+5,+270,+0.0353122,+2179.55,+61722.3,+245.233,OK,OK,+8,+180,+0.0569678,+3516.18,+61722.3,+245.389,OK,OK
+2020-03-16 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-16 09:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-16 10:00:00 PDT,+2.1,+320,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-03-16 11:00:00 PDT,+3.6,+320,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-03-16 12:00:00 PDT,+3.6,+240,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-03-16 13:00:00 PDT,+5.1,+240,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-03-16 14:00:00 PDT,+6.7,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-03-16 15:00:00 PDT,+7.7,+220,+5,+270,+0.0496767,+3066.16,+61722.3,+554.82,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,+1520.72,OK,OK
+2020-03-16 16:00:00 PDT,+7.2,+230,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-03-16 17:00:00 PDT,+7.2,+240,+5,+270,+0.0524544,+3237.6,+61722.3,+506.271,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,+1693.21,OK,OK
+2020-03-16 18:00:00 PDT,+7.7,+230,+5,+270,+0.0524544,+3237.6,+61722.3,+506.271,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,+1693.21,OK,OK
+2020-03-16 19:00:00 PDT,+6.2,+260,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-03-16 20:00:00 PDT,+2.6,+230,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-03-16 21:00:00 PDT,+2.1,+230,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-03-16 22:00:00 PDT,+1.5,+240,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-03-16 23:00:00 PDT,+4.1,+240,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-17 00:00:00 PDT,+3.6,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-03-17 01:00:00 PDT,+0,+0,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-03-17 02:00:00 PDT,+2.1,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-17 03:00:00 PDT,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-03-17 04:00:00 PDT,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-17 05:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-03-17 06:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-17 07:00:00 PDT,+1.5,+260,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-03-17 08:00:00 PDT,+2.1,+20,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-03-17 09:00:00 PDT,+2.1,+280,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-03-17 10:00:00 PDT,+1.5,+280,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-03-17 11:00:00 PDT,+7.7,+270,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-03-17 12:00:00 PDT,+10.3,+260,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-03-17 13:00:00 PDT,+9.3,+280,+5,+270,+0.104607,+6456.59,+61722.3,-373.006,OK,OK,+8,+180,+0.0365722,+2257.32,+61722.3,-96.3476,OK,OK
+2020-03-17 14:00:00 PDT,+10.3,+250,+5,+270,+0.0949602,+5861.16,+61722.3,-216.66,OK,OK,+8,+180,+0.0273178,+1686.11,+61722.3,+64.5525,OK,OK
+2020-03-17 15:00:00 PDT,+9.3,+270,+5,+270,+0.0972487,+6002.41,+61722.3,-312.05,OK,OK,+8,+180,+0.0300729,+1856.16,+61722.3,+293.027,OK,OK
+2020-03-17 16:00:00 PDT,+7.7,+290,+5,+270,+0.0931985,+5752.42,+61722.3,-235.153,OK,OK,+8,+180,+0.025981,+1603.6,+61722.3,+215.812,OK,OK
+2020-03-17 17:00:00 PDT,+6.7,+280,+5,+270,+0.0720212,+4445.31,+61722.3,-27.7303,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+806.133,OK,OK
+2020-03-17 18:00:00 PDT,+8.2,+290,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-03-17 19:00:00 PDT,+4.6,+280,+5,+270,+0.078446,+4841.86,+61722.3,-71.5433,OK,OK,+8,+180,+0.0150457,+928.654,+61722.3,+584.455,OK,OK
+2020-03-17 20:00:00 PDT,+5.1,+240,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-03-17 21:00:00 PDT,+3.1,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-03-17 22:00:00 PDT,+2.6,+290,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-03-17 23:00:00 PDT,+2,+310,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-03-18 00:00:00 PDT,+1.5,+330,+5,+270,+0.0369532,+2280.83,+61722.3,+30.2304,OK,OK,+8,+180,+0.0544099,+3358.3,+61722.3,+33.5429,OK,OK
+2020-03-18 01:00:00 PDT,+2.1,+70,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-03-18 02:00:00 PDT,+1.5,+40,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-03-18 03:00:00 PDT,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-03-18 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 08:00:00 PDT,+1.5,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 09:00:00 PDT,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-03-18 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 12:00:00 PDT,+3.1,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 13:00:00 PDT,+2.1,+120,+5,+270,+0.0361569,+2231.68,+61722.3,+443.895,OK,OK,+8,+180,+0.0598971,+3696.98,+61722.3,+416.3,OK,OK
+2020-03-18 14:00:00 PDT,+2.6,+60,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-03-18 15:00:00 PDT,+0,+0,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-03-18 16:00:00 PDT,+5.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-18 17:00:00 PDT,+4.6,+210,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-03-18 18:00:00 PDT,+4.9,+170,+5,+270,+0.0388801,+2399.77,+61722.3,+738.953,OK,OK,+8,+180,+0.0530153,+3272.22,+61722.3,+882.773,OK,OK
+2020-03-18 19:00:00 PDT,+3.1,+140,+5,+270,+0.0351556,+2169.88,+61722.3,+566.574,OK,OK,+8,+180,+0.05968,+3683.58,+61722.3,+524.859,OK,OK
+2020-03-18 20:00:00 PDT,+1.4,+320,+5,+270,+0.0348014,+2148.02,+61722.3,+46.0478,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+49.9066,OK,OK
+2020-03-18 21:00:00 PDT,+1.4,+100,+5,+270,+0.036412,+2247.43,+61722.3,-22.3524,OK,OK,+8,+180,+0.0561947,+3468.47,+61722.3,-23.2958,OK,OK
+2020-03-18 22:00:00 PDT,+1.5,+80,+5,+270,+0.036412,+2247.43,+61722.3,-22.3524,OK,OK,+8,+180,+0.0561947,+3468.47,+61722.3,-23.2958,OK,OK
+2020-03-18 23:00:00 PDT,+1.5,+80,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-03-19 00:00:00 PDT,+1.5,+70,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-03-19 01:00:00 PDT,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-03-19 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-19 03:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-19 04:00:00 PDT,+2.1,+360,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-03-19 05:00:00 PDT,+2.6,+140,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-03-19 06:00:00 PDT,+0,+0,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-03-19 07:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-19 08:00:00 PDT,+2.6,+330,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-03-19 09:00:00 PDT,+2.6,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-03-19 10:00:00 PDT,+2.6,+300,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-03-19 11:00:00 PDT,+2.6,+280,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-03-19 12:00:00 PDT,+2.6,+270,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-03-19 13:00:00 PDT,+5.1,+270,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-03-19 14:00:00 PDT,+4.6,+270,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-03-19 15:00:00 PDT,+5.7,+250,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-03-19 16:00:00 PDT,+7.2,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-03-19 17:00:00 PDT,+6.7,+270,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-03-19 18:00:00 PDT,+5.1,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-03-19 19:00:00 PDT,+4.6,+260,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-03-19 20:00:00 PDT,+0,+0,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-03-19 21:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-19 22:00:00 PDT,+1.5,+310,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-03-19 23:00:00 PDT,+1.5,+340,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-03-20 00:00:00 PDT,+1.5,+360,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-03-20 01:00:00 PDT,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-03-20 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 03:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 04:00:00 PDT,+0,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-03-20 05:00:00 PDT,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 06:00:00 PDT,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-03-20 07:00:00 PDT,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 08:00:00 PDT,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-03-20 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 12:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-20 13:00:00 PDT,+1.8,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-03-20 14:00:00 PDT,+1.5,+260,+5,+270,+0.0368557,+2274.82,+61722.3,+81.9386,OK,OK,+8,+180,+0.0548541,+3385.72,+61722.3,+89.5417,OK,OK
+2020-03-20 15:00:00 PDT,+4.1,+230,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-03-20 16:00:00 PDT,+3.1,+290,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-03-20 17:00:00 PDT,+3.6,+280,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-03-20 18:00:00 PDT,+3.1,+260,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-03-20 19:00:00 PDT,+4.1,+240,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-03-20 20:00:00 PDT,+2.6,+260,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-03-20 21:00:00 PDT,+2.6,+310,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-20 22:00:00 PDT,+2.1,+300,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-20 23:00:00 PDT,+1.5,+310,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-03-21 00:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-03-21 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 02:00:00 PDT,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 03:00:00 PDT,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-03-21 04:00:00 PDT,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 05:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-03-21 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 12:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-21 13:00:00 PDT,+2.6,+300,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-03-21 14:00:00 PDT,+3.6,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-03-21 15:00:00 PDT,+3.1,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-03-21 16:00:00 PDT,+3.6,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-03-21 17:00:00 PDT,+6.7,+250,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-03-21 18:00:00 PDT,+5.1,+240,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-03-21 19:00:00 PDT,+4.1,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-03-21 20:00:00 PDT,+3.1,+270,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-03-21 21:00:00 PDT,+2.6,+280,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-03-21 22:00:00 PDT,+1.5,+10,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-03-21 23:00:00 PDT,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-03-22 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 10:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-03-22 12:00:00 PDT,+1.3,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-22 13:00:00 PDT,+2.6,+270,+5,+270,+0.0363636,+2244.44,+61722.3,-20.8765,OK,OK,+8,+180,+0.0563912,+3480.59,+61722.3,-21.6158,OK,OK
+2020-03-22 14:00:00 PDT,+3.6,+240,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-03-22 15:00:00 PDT,+5.1,+250,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-03-22 16:00:00 PDT,+5.7,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-03-22 17:00:00 PDT,+6.2,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-03-22 18:00:00 PDT,+5.1,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-03-22 19:00:00 PDT,+4.1,+280,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-03-22 20:00:00 PDT,+3.6,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-03-22 21:00:00 PDT,+3.1,+310,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-03-22 22:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-03-22 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 00:00:00 PDT,+0.8,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 01:00:00 PDT,+1.5,+160,+5,+270,+0.03594,+2218.3,+61722.3,-123.088,OK,OK,+8,+180,+0.0570592,+3521.82,+61722.3,-124.13,OK,OK
+2020-03-23 02:00:00 PDT,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-03-23 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 13:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-23 14:00:00 PDT,+4.1,+260,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-03-23 15:00:00 PDT,+4.6,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-03-23 16:00:00 PDT,+5.1,+250,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-03-23 17:00:00 PDT,+5.1,+240,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-03-23 18:00:00 PDT,+4.1,+240,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-03-23 19:00:00 PDT,+4.1,+260,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-03-23 20:00:00 PDT,+3.1,+330,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-03-23 21:00:00 PDT,+4.1,+300,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-03-23 22:00:00 PDT,+3.1,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-03-23 23:00:00 PDT,+6.2,+300,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-03-24 00:00:00 PDT,+2.6,+290,+5,+270,+0.0550171,+3395.78,+61722.3,+60.7793,OK,OK,+8,+180,+0.0259636,+1602.53,+61722.3,+382.888,OK,OK
+2020-03-24 01:00:00 PDT,+2.1,+220,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-03-24 02:00:00 PDT,+3.1,+220,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-03-24 03:00:00 PDT,+1.5,+240,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-03-24 04:00:00 PDT,+1.5,+240,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-24 05:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-24 06:00:00 PDT,+1.5,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-24 07:00:00 PDT,+2.6,+160,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-03-24 08:00:00 PDT,+2.6,+160,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-03-24 09:00:00 PDT,+2.6,+150,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-03-24 10:00:00 PDT,+3.1,+80,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-03-24 11:00:00 PDT,+0,+0,+5,+270,+0.0348921,+2153.62,+61722.3,-352.016,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,-459.811,OK,OK
+2020-03-24 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-24 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-24 14:00:00 PDT,+4.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-24 15:00:00 PDT,+2.1,+310,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-03-24 16:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-03-24 17:00:00 PDT,+4.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-24 18:00:00 PDT,+2.6,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-03-24 19:00:00 PDT,+2.1,+280,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-24 20:00:00 PDT,+1.5,+240,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-03-24 21:00:00 PDT,+2.6,+260,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-24 22:00:00 PDT,+2.6,+280,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-24 23:00:00 PDT,+1.5,+300,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-03-25 00:00:00 PDT,+1.5,+280,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-03-25 01:00:00 PDT,+1.5,+260,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-03-25 02:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-03-25 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 05:00:00 PDT,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 06:00:00 PDT,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-03-25 07:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 08:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-03-25 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 10:00:00 PDT,+2.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 11:00:00 PDT,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-03-25 12:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-25 13:00:00 PDT,+2.1,+280,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-03-25 14:00:00 PDT,+1.5,+280,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-03-25 15:00:00 PDT,+2.6,+290,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-03-25 16:00:00 PDT,+3.6,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-03-25 17:00:00 PDT,+5.1,+250,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-03-25 18:00:00 PDT,+3.6,+230,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-03-25 19:00:00 PDT,+3.6,+240,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-03-25 20:00:00 PDT,+2.1,+280,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-03-25 21:00:00 PDT,+3.6,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-03-25 22:00:00 PDT,+2.6,+320,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-03-25 23:00:00 PDT,+0,+0,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-03-26 00:00:00 PDT,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 01:00:00 PDT,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-03-26 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 11:00:00 PDT,+1.5,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-26 12:00:00 PDT,+2.1,+270,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-03-26 13:00:00 PDT,+4.6,+240,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-03-26 14:00:00 PDT,+4.6,+260,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-03-26 15:00:00 PDT,+5.1,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-03-26 16:00:00 PDT,+6.7,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-03-26 17:00:00 PDT,+4.6,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-03-26 18:00:00 PDT,+3.1,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-03-26 19:00:00 PDT,+9.3,+240,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-03-26 20:00:00 PDT,+10.3,+260,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-03-26 21:00:00 PDT,+3.1,+310,+5,+270,+0.104607,+6456.59,+61722.3,-373.006,OK,OK,+8,+180,+0.0365722,+2257.32,+61722.3,-96.3476,OK,OK
+2020-03-26 22:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-03-26 23:00:00 PDT,+4.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 00:00:00 PDT,+0,+0,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-03-27 01:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 02:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-03-27 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 05:00:00 PDT,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 06:00:00 PDT,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-03-27 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 09:00:00 PDT,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-27 10:00:00 PDT,+1.5,+180,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-03-27 11:00:00 PDT,+2,+190,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-03-27 12:00:00 PDT,+2.6,+210,+5,+270,+0.0362513,+2237.51,+61722.3,+315.594,OK,OK,+8,+180,+0.0579635,+3577.64,+61722.3,+312.02,OK,OK
+2020-03-27 13:00:00 PDT,+3.1,+220,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-03-27 14:00:00 PDT,+3.6,+240,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-03-27 15:00:00 PDT,+2.9,+240,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-03-27 16:00:00 PDT,+2.1,+230,+5,+270,+0.0381729,+2356.12,+61722.3,+456.195,OK,OK,+8,+180,+0.052447,+3237.15,+61722.3,+549.192,OK,OK
+2020-03-27 17:00:00 PDT,+2.6,+210,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-03-27 18:00:00 PDT,+3.1,+210,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-03-27 19:00:00 PDT,+3.9,+190,+5,+270,+0.0372857,+2301.36,+61722.3,+537.74,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+580.211,OK,OK
+2020-03-27 20:00:00 PDT,+5.3,+170,+5,+270,+0.0367338,+2267.29,+61722.3,+630.763,OK,OK,+8,+180,+0.0589237,+3636.91,+61722.3,+613.126,OK,OK
+2020-03-27 21:00:00 PDT,+4.6,+200,+5,+270,+0.0350097,+2160.88,+61722.3,+618.328,OK,OK,+8,+180,+0.0600313,+3705.27,+61722.3,+566.12,OK,OK
+2020-03-27 22:00:00 PDT,+6.5,+180,+5,+270,+0.0378298,+2334.94,+61722.3,+763.897,OK,OK,+8,+180,+0.0561963,+3468.57,+61722.3,+815.534,OK,OK
+2020-03-27 23:00:00 PDT,+6.8,+180,+5,+270,+0.0374494,+2311.46,+61722.3,+1079.88,OK,OK,+8,+180,+0.0676253,+4173.99,+61722.3,+872.887,OK,OK
+2020-03-28 00:00:00 PDT,+6.2,+170,+5,+270,+0.0377134,+2327.76,+61722.3,+1144.83,OK,OK,+8,+180,+0.0685701,+4232.3,+61722.3,+913.174,OK,OK
+2020-03-28 01:00:00 PDT,+4.4,+140,+5,+270,+0.0346562,+2139.06,+61722.3,+739.551,OK,OK,+8,+180,+0.0609244,+3760.39,+61722.3,+657.624,OK,OK
+2020-03-28 02:00:00 PDT,+5.3,+130,+5,+270,+0.033895,+2092.08,+61722.3,+56.1344,OK,OK,+8,+180,+0.0506278,+3124.86,+61722.3,+68.4676,OK,OK
+2020-03-28 03:00:00 PDT,+7.6,+130,+5,+270,+0.0340588,+2102.19,+61722.3,-43.5924,OK,OK,+8,+180,+0.0438798,+2708.36,+61722.3,-76.9473,OK,OK
+2020-03-28 04:00:00 PDT,+9.6,+210,+5,+270,+0.0387406,+2391.16,+61722.3,+11.3758,OK,OK,+8,+180,+0.0306036,+1888.92,+61722.3,-75.1329,OK,OK
+2020-03-28 05:00:00 PDT,+7.8,+150,+5,+270,+0.0512973,+3166.19,+61722.3,+913.517,OK,OK,+8,+180,+0.038864,+2398.77,+61722.3,+2184.63,OK,OK
+2020-03-28 06:00:00 PDT,+12.3,+140,+5,+270,+0.0318962,+1968.71,+61722.3,+185.055,OK,OK,+8,+180,+0.0447898,+2764.53,+61722.3,+316.755,OK,OK
+2020-03-28 07:00:00 PDT,+12.6,+100,+5,+270,+0.0572872,+3535.9,+61722.3,-152.702,OK,OK,+8,+180,+0.0231397,+1428.23,+61722.3,-182.383,OK,OK
+2020-03-28 08:00:00 PDT,+11.9,+60,+5,+270,+0.12733,+7859.12,+61722.3,+1389.92,OK,OK,+8,+180,+0.07823,+4828.53,+61722.3,+1858.62,OK,OK
+2020-03-28 09:00:00 PDT,+13.8,+50,+5,+270,+0.121988,+7529.37,+61722.3,+2064.11,OK,OK,+8,+180,+0.069841,+4310.74,+61722.3,+2892.97,OK,OK
+2020-03-28 10:00:00 PDT,+13.6,+30,+5,+270,+0.153933,+9501.07,+61722.3,+2598.13,OK,OK,+8,+180,+0.101577,+6269.56,+61722.3,+3343.1,OK,OK
+2020-03-28 11:00:00 PDT,+16.5,+40,+5,+270,+0.118007,+7283.65,+61722.3,+2188.24,OK,OK,+8,+180,+0.0629445,+3885.08,+61722.3,+3206.9,OK,OK
+2020-03-28 12:00:00 PDT,+17.9,+10,+5,+270,+0.199347,+12304.2,+61722.3,+3221.03,OK,OK,+8,+180,+0.146672,+9052.94,+61722.3,+3876.4,OK,OK
+2020-03-28 13:00:00 PDT,+20,+360,+5,+270,+0.124566,+7688.48,+61722.3,+2236.48,OK,OK,+8,+180,+0.065776,+4059.84,+61722.3,+3285.99,OK,OK
+2020-03-28 14:00:00 PDT,+19.4,+50,+5,+270,+0.101463,+6262.55,+61722.3,+1562.73,OK,OK,+8,+180,+0.0370872,+2289.1,+61722.3,+2685.81,OK,OK
+2020-03-28 15:00:00 PDT,+22.4,+20,+5,+270,+0.305904,+18881.1,+61722.3,+4057.02,OK,OK,+8,+180,+0.254365,+15700,+61722.3,+4520.7,OK,OK
+2020-03-28 16:00:00 PDT,+21.8,+60,+5,+270,+0.258753,+15970.8,+61722.3,+3942.92,OK,OK,+8,+180,+0.204158,+12601.1,+61722.3,+4545.75,OK,OK
+2020-03-28 17:00:00 PDT,+20.7,+70,+5,+270,+0.413311,+25510.5,+61722.3,+4572.08,OK,OK,+8,+180,+0.362275,+22360.4,+61722.3,+4927.4,OK,OK
+2020-03-28 18:00:00 PDT,+19.6,+90,+5,+270,+0.384101,+23707.6,+61722.3,+4091.03,OK,OK,+8,+180,+0.333677,+20595.3,+61722.3,+4432.37,OK,OK
+2020-03-28 19:00:00 PDT,+18,+70,+5,+270,+0.333476,+20582.9,+61722.3,+3045.12,OK,OK,+8,+180,+0.284277,+17546.2,+61722.3,+3335.9,OK,OK
+2020-03-28 20:00:00 PDT,+18.5,+110,+5,+270,+0.289206,+17850.4,+61722.3,+3477.8,OK,OK,+8,+180,+0.238876,+14743.9,+61722.3,+3888.72,OK,OK
+2020-03-28 21:00:00 PDT,+19.4,+130,+5,+270,+0.250841,+15482.5,+61722.3,+1711.86,OK,OK,+8,+180,+0.203189,+12541.3,+61722.3,+1933.09,OK,OK
+2020-03-28 22:00:00 PDT,+18.3,+130,+5,+270,+0.192219,+11864.2,+61722.3,+372.295,OK,OK,+8,+180,+0.147253,+9088.79,+61722.3,+433.385,OK,OK
+2020-03-28 23:00:00 PDT,+14.6,+300,+5,+270,+0.170416,+10518.5,+61722.3,+345.366,OK,OK,+8,+180,+0.125436,+7742.22,+61722.3,+411.702,OK,OK
+2020-03-29 00:00:00 PDT,+14.6,+110,+5,+270,+0.199956,+12341.7,+61722.3,-373.2,OK,OK,+8,+180,+0.132163,+8157.39,+61722.3,-439.924,OK,OK
+2020-03-29 01:00:00 PDT,+13.4,+80,+5,+270,+0.199956,+12341.7,+61722.3,-373.2,OK,OK,+8,+180,+0.132163,+8157.39,+61722.3,-439.924,OK,OK
+2020-03-29 02:00:00 PDT,+13.3,+20,+5,+270,+0.1589,+9807.65,+61722.3,+2170.52,OK,OK,+8,+180,+0.108652,+6706.23,+61722.3,+2726.95,OK,OK
+2020-03-29 03:00:00 PDT,+13.9,+360,+5,+270,+0.0937616,+5787.18,+61722.3,+1704.39,OK,OK,+8,+180,+0.0361822,+2233.25,+61722.3,+3008.48,OK,OK
+2020-03-29 04:00:00 PDT,+13.2,+340,+5,+270,+0.0583116,+3599.12,+61722.3,+312.698,OK,OK,+8,+180,+0.011875,+732.949,+61722.3,-1866.64,OK,OK
+2020-03-29 05:00:00 PDT,+11.6,+340,+5,+270,+0.10292,+6352.45,+61722.3,+409.937,OK,OK,+8,+180,+0.0348492,+2150.97,+61722.3,+539.765,OK,OK
+2020-03-29 06:00:00 PDT,+11.5,+350,+5,+270,+0.0837987,+5172.24,+61722.3,+249.935,OK,OK,+8,+180,+0.0158324,+977.214,+61722.3,+34.6446,OK,OK
+2020-03-29 07:00:00 PDT,+13,+10,+5,+270,+0.0654131,+4037.45,+61722.3,+173.394,OK,OK,+8,+180,+0.00905376,+558.818,+61722.3,-1753.97,OK,OK
+2020-03-29 08:00:00 PDT,+12.9,+60,+5,+270,+0.0708475,+4372.87,+61722.3,+1017.12,OK,OK,+8,+180,+0.0096952,+598.41,+61722.3,+2859.84,OK,OK
+2020-03-29 09:00:00 PDT,+12.9,+50,+5,+270,+0.143127,+8834.15,+61722.3,+2346.07,OK,OK,+8,+180,+0.0913463,+5638.1,+61722.3,+3079.1,OK,OK
+2020-03-29 10:00:00 PDT,+15.4,+50,+5,+270,+0.143127,+8834.15,+61722.3,+2346.07,OK,OK,+8,+180,+0.0913463,+5638.1,+61722.3,+3079.1,OK,OK
+2020-03-29 11:00:00 PDT,+12.9,+50,+5,+270,+0.191815,+11839.2,+61722.3,+3032.71,OK,OK,+8,+180,+0.139873,+8633.26,+61722.3,+3668.39,OK,OK
+2020-03-29 12:00:00 PDT,+12.9,+30,+5,+270,+0.134631,+8309.7,+61722.3,+2343.54,OK,OK,+8,+180,+0.0819596,+5058.73,+61722.3,+3167.85,OK,OK
+2020-03-29 13:00:00 PDT,+10.3,+60,+5,+270,+0.134631,+8309.7,+61722.3,+2343.54,OK,OK,+8,+180,+0.0819596,+5058.73,+61722.3,+3167.85,OK,OK
+2020-03-29 14:00:00 PDT,+10.3,+60,+5,+270,+0.0923531,+5700.24,+61722.3,+1581.84,OK,OK,+8,+180,+0.0396361,+2446.43,+61722.3,+2616.48,OK,OK
+2020-03-29 15:00:00 PDT,+7.7,+40,+5,+270,+0.0923531,+5700.24,+61722.3,+1581.84,OK,OK,+8,+180,+0.0396361,+2446.43,+61722.3,+2616.48,OK,OK
+2020-03-29 16:00:00 PDT,+10.3,+50,+5,+270,+0.0511374,+3156.32,+61722.3,+468.013,OK,OK,+8,+180,+0.0170209,+1050.57,+61722.3,-462.903,OK,OK
+2020-03-29 17:00:00 PDT,+11.1,+30,+5,+270,+0.0873822,+5393.43,+61722.3,+1544.82,OK,OK,+8,+180,+0.0337213,+2081.36,+61722.3,+2712.25,OK,OK
+2020-03-29 18:00:00 PDT,+13,+360,+5,+270,+0.0809437,+4996.03,+61722.3,+1429.93,OK,OK,+8,+180,+0.0248137,+1531.56,+61722.3,+2844.24,OK,OK
+2020-03-29 19:00:00 PDT,+10.8,+40,+5,+270,+0.0539201,+3328.07,+61722.3,+129.518,OK,OK,+8,+180,+0.0176072,+1086.76,+61722.3,-1745.77,OK,OK
+2020-03-29 20:00:00 PDT,+10.6,+60,+5,+270,+0.0873164,+5389.36,+61722.3,+1577.15,OK,OK,+8,+180,+0.0326013,+2012.22,+61722.3,+2826.4,OK,OK
+2020-03-29 21:00:00 PDT,+9.4,+60,+5,+270,+0.0975037,+6018.15,+61722.3,+1675.79,OK,OK,+8,+180,+0.0448643,+2769.13,+61722.3,+2667.09,OK,OK
+2020-03-29 22:00:00 PDT,+10.3,+70,+5,+270,+0.0780804,+4819.3,+61722.3,+1288.3,OK,OK,+8,+180,+0.0255156,+1574.88,+61722.3,+2438.61,OK,OK
+2020-03-29 23:00:00 PDT,+9.6,+60,+5,+270,+0.094778,+5849.91,+61722.3,+1532.16,OK,OK,+8,+180,+0.0428948,+2647.56,+61722.3,+2455.87,OK,OK
+2020-03-30 00:00:00 PDT,+6.8,+140,+5,+270,+0.0810958,+5005.42,+61722.3,+1355.14,OK,OK,+8,+180,+0.0284123,+1753.67,+61722.3,+2486.37,OK,OK
+2020-03-30 01:00:00 PDT,+6.7,+140,+5,+270,+0.0336742,+2078.45,+61722.3,+40.2695,OK,OK,+8,+180,+0.0413159,+2550.11,+61722.3,+91.7384,OK,OK
+2020-03-30 02:00:00 PDT,+8.6,+320,+5,+270,+0.0336038,+2074.1,+61722.3,+42.0937,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+91.2664,OK,OK
+2020-03-30 03:00:00 PDT,+6.3,+150,+5,+270,+0.0719248,+4439.36,+61722.3,+13.4842,OK,OK,+8,+180,+0.0118632,+732.222,+61722.3,-180.013,OK,OK
+2020-03-30 04:00:00 PDT,+6.1,+150,+5,+270,+0.0326022,+2012.28,+61722.3,+215.138,OK,OK,+8,+180,+0.0490957,+3030.3,+61722.3,+278.61,OK,OK
+2020-03-30 05:00:00 PDT,+6,+150,+5,+270,+0.032741,+2020.85,+61722.3,+215.215,OK,OK,+8,+180,+0.0496131,+3062.23,+61722.3,+272.031,OK,OK
+2020-03-30 06:00:00 PDT,+5.8,+150,+5,+270,+0.0328129,+2025.28,+61722.3,+214.954,OK,OK,+8,+180,+0.0498664,+3077.87,+61722.3,+268.637,OK,OK
+2020-03-30 07:00:00 PDT,+5.6,+150,+5,+270,+0.0329607,+2034.41,+61722.3,+213.859,OK,OK,+8,+180,+0.050362,+3108.46,+61722.3,+261.654,OK,OK
+2020-03-30 08:00:00 PDT,+7.5,+310,+5,+270,+0.0331131,+2043.81,+61722.3,+212.035,OK,OK,+8,+180,+0.0508428,+3138.13,+61722.3,+254.426,OK,OK
+2020-03-30 09:00:00 PDT,+5.3,+160,+5,+270,+0.0648905,+4005.19,+61722.3,+1.60695,OK,OK,+8,+180,+0.016048,+990.52,+61722.3,+174.747,OK,OK
+2020-03-30 10:00:00 PDT,+7.7,+120,+5,+270,+0.0338646,+2090.2,+61722.3,+401.933,OK,OK,+8,+180,+0.0557413,+3440.48,+61722.3,+407.673,OK,OK
+2020-03-30 11:00:00 PDT,+7.4,+110,+5,+270,+0.0439989,+2715.71,+61722.3,+112.572,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,-137.285,OK,OK
+2020-03-30 12:00:00 PDT,+7,+100,+5,+270,+0.0462604,+2855.3,+61722.3,+202.973,OK,OK,+8,+180,+0.0219526,+1354.97,+61722.3,-164.431,OK,OK
+2020-03-30 13:00:00 PDT,+6.7,+100,+5,+270,+0.0463867,+2863.09,+61722.3,+242.072,OK,OK,+8,+180,+0.0218005,+1345.58,+61722.3,-249.772,OK,OK
+2020-03-30 14:00:00 PDT,+6.4,+90,+5,+270,+0.0441785,+2726.79,+61722.3,+172.623,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,-342.763,OK,OK
+2020-03-30 15:00:00 PDT,+6,+80,+5,+270,+0.0438801,+2708.38,+61722.3,+171.145,OK,OK,+8,+180,+0.0247412,+1527.08,+61722.3,-453.781,OK,OK
+2020-03-30 16:00:00 PDT,+5.7,+70,+5,+270,+0.0421869,+2603.87,+61722.3,+92.4176,OK,OK,+8,+180,+0.0272909,+1684.46,+61722.3,-601.059,OK,OK
+2020-03-30 17:00:00 PDT,+6.3,+60,+5,+270,+0.0407443,+2514.83,+61722.3,-1.76195,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,-714.731,OK,OK
+2020-03-30 18:00:00 PDT,+4.4,+90,+5,+270,+0.0441084,+2722.47,+61722.3,+163.194,OK,OK,+8,+180,+0.025029,+1544.85,+61722.3,-717.107,OK,OK
+2020-03-30 19:00:00 PDT,+0.5,+160,+5,+270,+0.0355908,+2196.74,+61722.3,-248.923,OK,OK,+8,+180,+0.0413992,+2555.25,+61722.3,-521.82,OK,OK
+2020-03-30 20:00:00 PDT,+3.2,+60,+5,+270,+0.0360647,+2226,+61722.3,+40.3103,OK,OK,+8,+180,+0.0576046,+3555.48,+61722.3,+40.1167,OK,OK
+2020-03-30 21:00:00 PDT,+0,+0,+5,+270,+0.0351052,+2166.77,+61722.3,-423.077,OK,OK,+8,+180,+0.048907,+3018.65,+61722.3,-561.277,OK,OK
+2020-03-30 22:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-30 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 04:00:00 PDT,+0.3,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 05:00:00 PDT,+2,+340,+5,+270,+0.0360923,+2227.7,+61722.3,-24.1668,OK,OK,+8,+180,+0.0575755,+3553.69,+61722.3,-24.0815,OK,OK
+2020-03-31 06:00:00 PDT,+0.6,+340,+5,+270,+0.0364677,+2250.87,+61722.3,-151.938,OK,OK,+8,+180,+0.0555683,+3429.8,+61722.3,-161.456,OK,OK
+2020-03-31 07:00:00 PDT,+0,+0,+5,+270,+0.0361147,+2229.08,+61722.3,-48.1465,OK,OK,+8,+180,+0.0574368,+3545.13,+61722.3,-48.1814,OK,OK
+2020-03-31 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 10:00:00 PDT,+0.2,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-03-31 11:00:00 PDT,+0.3,+10,+5,+270,+0.036085,+2227.25,+61722.3,-26.9842,OK,OK,+8,+180,+0.0576122,+3555.96,+61722.3,-26.8581,OK,OK
+2020-03-31 12:00:00 PDT,+1.8,+310,+5,+270,+0.0360813,+2227.02,+61722.3,-46.8576,OK,OK,+8,+180,+0.0575874,+3554.43,+61722.3,-46.6678,OK,OK
+2020-03-31 13:00:00 PDT,+3.1,+250,+5,+270,+0.0367668,+2269.33,+61722.3,+27.7331,OK,OK,+8,+180,+0.0550194,+3395.92,+61722.3,+30.1105,OK,OK
+2020-03-31 14:00:00 PDT,+5.4,+290,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-03-31 15:00:00 PDT,+5.1,+280,+5,+270,+0.0498005,+3073.8,+61722.3,+146.552,OK,OK,+8,+180,+0.0325916,+2011.63,+61722.3,+511.017,OK,OK
+2020-03-31 16:00:00 PDT,+5.2,+260,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-03-31 17:00:00 PDT,+6.4,+260,+5,+270,+0.0476224,+2939.36,+61722.3,+353.577,OK,OK,+8,+180,+0.0366166,+2260.06,+61722.3,+936.174,OK,OK
+2020-03-31 18:00:00 PDT,+6.5,+270,+5,+270,+0.0562395,+3471.23,+61722.3,+227.693,OK,OK,+8,+180,+0.0267388,+1650.38,+61722.3,+1285.6,OK,OK
+2020-03-31 19:00:00 PDT,+5.7,+270,+5,+270,+0.0585993,+3616.88,+61722.3,+148.616,OK,OK,+8,+180,+0.0238615,+1472.78,+61722.3,+1158.42,OK,OK
+2020-03-31 20:00:00 PDT,+4.1,+300,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-03-31 21:00:00 PDT,+4.6,+250,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-03-31 22:00:00 PDT,+4.1,+200,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-03-31 23:00:00 PDT,+4.2,+230,+5,+270,+0.0374665,+2312.52,+61722.3,+686.558,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+722.501,OK,OK
+2020-04-01 00:00:00 PDT,+4.4,+240,+5,+270,+0.04028,+2486.17,+61722.3,+602.821,OK,OK,+8,+180,+0.0489104,+3018.86,+61722.3,+844.887,OK,OK
+2020-04-01 01:00:00 PDT,+4.5,+270,+5,+270,+0.0418358,+2582.2,+61722.3,+542.889,OK,OK,+8,+180,+0.0458164,+2827.89,+61722.3,+874.054,OK,OK
+2020-04-01 02:00:00 PDT,+4.7,+70,+5,+270,+0.0444099,+2741.08,+61722.3,+322.019,OK,OK,+8,+180,+0.0406708,+2510.29,+61722.3,+671.334,OK,OK
+2020-04-01 03:00:00 PDT,+4.8,+80,+5,+270,+0.0367957,+2271.11,+61722.3,-256.303,OK,OK,+8,+180,+0.0384813,+2375.15,+61722.3,-699.024,OK,OK
+2020-04-01 04:00:00 PDT,+5,+40,+5,+270,+0.036851,+2274.53,+61722.3,-210.373,OK,OK,+8,+180,+0.0377475,+2329.86,+61722.3,-632.854,OK,OK
+2020-04-01 05:00:00 PDT,+5.1,+40,+5,+270,+0.0371018,+2290.01,+61722.3,-358.118,OK,OK,+8,+180,+0.0395938,+2443.82,+61722.3,-850.68,OK,OK
+2020-04-01 06:00:00 PDT,+4.6,+20,+5,+270,+0.0373394,+2304.67,+61722.3,-339.761,OK,OK,+8,+180,+0.0388769,+2399.57,+61722.3,-861.62,OK,OK
+2020-04-01 07:00:00 PDT,+1.5,+40,+5,+270,+0.0360594,+2225.67,+61722.3,-517.646,OK,OK,+8,+180,+0.0467857,+2887.72,+61722.3,-762.23,OK,OK
+2020-04-01 08:00:00 PDT,+7.5,+50,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-04-01 09:00:00 PDT,+13.4,+70,+5,+270,+0.0523094,+3228.65,+61722.3,+534.177,OK,OK,+8,+180,+0.016048,+990.52,+61722.3,-193.185,OK,OK
+2020-04-01 10:00:00 PDT,+14.9,+70,+5,+270,+0.159072,+9818.3,+61722.3,+2374.24,OK,OK,+8,+180,+0.108172,+6676.63,+61722.3,+2995.19,OK,OK
+2020-04-01 11:00:00 PDT,+11.3,+70,+5,+270,+0.197073,+12163.8,+61722.3,+2746.29,OK,OK,+8,+180,+0.146491,+9041.75,+61722.3,+3279.19,OK,OK
+2020-04-01 12:00:00 PDT,+7.2,+80,+5,+270,+0.113344,+6995.85,+61722.3,+1818.45,OK,OK,+8,+180,+0.0617623,+3812.11,+61722.3,+2621.66,OK,OK
+2020-04-01 13:00:00 PDT,+6.7,+80,+5,+270,+0.051738,+3193.39,+61722.3,+475.659,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+3.12502,OK,OK
+2020-04-01 14:00:00 PDT,+7.7,+80,+5,+270,+0.047239,+2915.7,+61722.3,+312.515,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,-382.24,OK,OK
+2020-04-01 15:00:00 PDT,+4.6,+260,+5,+270,+0.0569553,+3515.41,+61722.3,+638.111,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+671.246,OK,OK
+2020-04-01 16:00:00 PDT,+5.4,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-04-01 17:00:00 PDT,+6.2,+260,+5,+270,+0.0488543,+3015.4,+61722.3,+337.089,OK,OK,+8,+180,+0.0350459,+2163.11,+61722.3,+987.099,OK,OK
+2020-04-01 18:00:00 PDT,+4.6,+240,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-04-01 19:00:00 PDT,+5.1,+210,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-04-01 20:00:00 PDT,+3.6,+280,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-04-01 21:00:00 PDT,+3.6,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-04-01 22:00:00 PDT,+2.1,+330,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-04-01 23:00:00 PDT,+2.6,+340,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-04-02 00:00:00 PDT,+2.1,+100,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-04-02 01:00:00 PDT,+1.5,+60,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-04-02 02:00:00 PDT,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-04-02 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 09:00:00 PDT,+1.5,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 10:00:00 PDT,+0,+0,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-04-02 11:00:00 PDT,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-02 12:00:00 PDT,+6.2,+240,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-04-02 13:00:00 PDT,+7.7,+270,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-04-02 14:00:00 PDT,+6.2,+260,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-04-02 15:00:00 PDT,+5.1,+240,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-04-02 16:00:00 PDT,+6.7,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-04-02 17:00:00 PDT,+6.7,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-04-02 18:00:00 PDT,+7.2,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-04-02 19:00:00 PDT,+5.1,+280,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-02 20:00:00 PDT,+4.6,+290,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-04-02 21:00:00 PDT,+3.1,+310,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-04-02 22:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-04-02 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 03:00:00 PDT,+2.1,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 04:00:00 PDT,+2.1,+110,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-04-03 05:00:00 PDT,+0,+0,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-04-03 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 14:00:00 PDT,+5.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 15:00:00 PDT,+5.1,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-04-03 16:00:00 PDT,+7.2,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-04-03 17:00:00 PDT,+5.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-03 18:00:00 PDT,+5.7,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-03 19:00:00 PDT,+3.6,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-03 20:00:00 PDT,+2.1,+310,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-03 21:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-04-03 22:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-03 23:00:00 PDT,+2.1,+200,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-04-04 00:00:00 PDT,+0,+0,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-04-04 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 03:00:00 PDT,+1.5,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 04:00:00 PDT,+0,+0,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-04-04 05:00:00 PDT,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 06:00:00 PDT,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-04-04 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 12:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-04 13:00:00 PDT,+5.1,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-04-04 14:00:00 PDT,+6.2,+250,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-04-04 15:00:00 PDT,+5.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-04 16:00:00 PDT,+6.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-04 17:00:00 PDT,+7.2,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-04 18:00:00 PDT,+5.7,+250,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-04-04 19:00:00 PDT,+5.7,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-04-04 20:00:00 PDT,+3.1,+290,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-04-04 21:00:00 PDT,+2.1,+320,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-04-04 22:00:00 PDT,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-04-04 23:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 00:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-04-05 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 04:00:00 PDT,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 05:00:00 PDT,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-04-05 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 10:00:00 PDT,+2.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-05 11:00:00 PDT,+2.6,+270,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-04-05 12:00:00 PDT,+4.6,+290,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-04-05 13:00:00 PDT,+3.1,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-04-05 14:00:00 PDT,+5.7,+250,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-04-05 15:00:00 PDT,+5.1,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-04-05 16:00:00 PDT,+7.7,+280,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-04-05 17:00:00 PDT,+6.7,+260,+5,+270,+0.0724013,+4468.77,+61722.3,-29.1645,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+1089.11,OK,OK
+2020-04-05 18:00:00 PDT,+7.2,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-05 19:00:00 PDT,+5.7,+270,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-04-05 20:00:00 PDT,+4.6,+280,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-04-05 21:00:00 PDT,+3.6,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-05 22:00:00 PDT,+2.6,+310,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-04-05 23:00:00 PDT,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-04-06 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 04:00:00 PDT,+2.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 05:00:00 PDT,+3.1,+250,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-04-06 06:00:00 PDT,+2.1,+230,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-04-06 07:00:00 PDT,+2.1,+200,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-04-06 08:00:00 PDT,+1.5,+230,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-04-06 09:00:00 PDT,+0,+0,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-04-06 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 12:00:00 PDT,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-06 13:00:00 PDT,+3.1,+320,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-04-06 14:00:00 PDT,+3.6,+310,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-04-06 15:00:00 PDT,+4.1,+290,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-04-06 16:00:00 PDT,+4.1,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-06 17:00:00 PDT,+5.7,+250,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-06 18:00:00 PDT,+5.7,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-04-06 19:00:00 PDT,+4.6,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-04-06 20:00:00 PDT,+4.1,+280,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-04-06 21:00:00 PDT,+2.1,+270,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-04-06 22:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-06 23:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 00:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-04-07 01:00:00 PDT,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 02:00:00 PDT,+2.1,+260,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-04-07 03:00:00 PDT,+1.5,+220,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-04-07 04:00:00 PDT,+2.1,+230,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-04-07 05:00:00 PDT,+2.6,+160,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-04-07 06:00:00 PDT,+2.1,+190,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-04-07 07:00:00 PDT,+0,+0,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-04-07 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 11:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 12:00:00 PDT,+1.8,+310,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-04-07 13:00:00 PDT,+2.1,+290,+5,+270,+0.0367668,+2269.33,+61722.3,+27.7331,OK,OK,+8,+180,+0.0550194,+3395.92,+61722.3,+30.1105,OK,OK
+2020-04-07 14:00:00 PDT,+4.6,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-04-07 15:00:00 PDT,+4.1,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-07 16:00:00 PDT,+3.6,+270,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-04-07 17:00:00 PDT,+4.6,+250,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-07 18:00:00 PDT,+4.6,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-07 19:00:00 PDT,+3.6,+270,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-07 20:00:00 PDT,+3.1,+290,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-07 21:00:00 PDT,+0,+0,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-04-07 22:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-07 23:00:00 PDT,+2.6,+330,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-04-08 00:00:00 PDT,+2.1,+260,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-04-08 01:00:00 PDT,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-04-08 02:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 03:00:00 PDT,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-04-08 04:00:00 PDT,+2.1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 05:00:00 PDT,+0,+0,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-04-08 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 08:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 09:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-04-08 10:00:00 PDT,+1.4,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 11:00:00 PDT,+2.7,+300,+5,+270,+0.0363386,+2242.9,+61722.3,-66.7535,OK,OK,+8,+180,+0.0563862,+3480.28,+61722.3,-69.0978,OK,OK
+2020-04-08 12:00:00 PDT,+4.1,+270,+5,+270,+0.0381011,+2351.69,+61722.3,+109.609,OK,OK,+8,+180,+0.0514072,+3172.97,+61722.3,+136.518,OK,OK
+2020-04-08 13:00:00 PDT,+6.2,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-04-08 14:00:00 PDT,+8.2,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-04-08 15:00:00 PDT,+8.2,+270,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-04-08 16:00:00 PDT,+7.7,+220,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-04-08 17:00:00 PDT,+7.2,+250,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-04-08 18:00:00 PDT,+4.6,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-08 19:00:00 PDT,+4.1,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-04-08 20:00:00 PDT,+3.1,+230,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-08 21:00:00 PDT,+0,+0,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-04-08 22:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-08 23:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-09 00:00:00 PDT,+3.6,+340,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-04-09 01:00:00 PDT,+3.1,+340,+5,+270,+0.0377323,+2328.92,+61722.3,-234.361,OK,OK,+8,+180,+0.0509765,+3146.38,+61722.3,-294.829,OK,OK
+2020-04-09 02:00:00 PDT,+2.6,+350,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-04-09 03:00:00 PDT,+1.5,+350,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-04-09 04:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-04-09 05:00:00 PDT,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-09 06:00:00 PDT,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-04-09 07:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-09 08:00:00 PDT,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-04-09 09:00:00 PDT,+1.5,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-09 10:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-04-09 11:00:00 PDT,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-09 12:00:00 PDT,+3.6,+250,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-04-09 13:00:00 PDT,+4.6,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-04-09 14:00:00 PDT,+4.6,+300,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-09 15:00:00 PDT,+5.1,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-09 16:00:00 PDT,+6.7,+260,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-09 17:00:00 PDT,+7.2,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-09 18:00:00 PDT,+6.2,+210,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-09 19:00:00 PDT,+5.7,+230,+5,+270,+0.041534,+2563.57,+61722.3,+882.77,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+1237.38,OK,OK
+2020-04-09 20:00:00 PDT,+5.7,+230,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-04-09 21:00:00 PDT,+3.6,+260,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-04-09 22:00:00 PDT,+3.1,+330,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-04-09 23:00:00 PDT,+3.1,+290,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-04-10 00:00:00 PDT,+0,+0,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-04-10 01:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 02:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-04-10 03:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 04:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-04-10 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 08:00:00 PDT,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 09:00:00 PDT,+1.5,+280,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-04-10 10:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-04-10 11:00:00 PDT,+1.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-10 12:00:00 PDT,+3.1,+300,+5,+270,+0.0364246,+2248.21,+61722.3,-75.4392,OK,OK,+8,+180,+0.0560082,+3456.95,+61722.3,-79.0703,OK,OK
+2020-04-10 13:00:00 PDT,+4.1,+260,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-04-10 14:00:00 PDT,+4.6,+280,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-10 15:00:00 PDT,+5.7,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-10 16:00:00 PDT,+7.2,+240,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-04-10 17:00:00 PDT,+7.2,+260,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-04-10 18:00:00 PDT,+7.2,+270,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-04-10 19:00:00 PDT,+4.6,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-04-10 20:00:00 PDT,+2.1,+280,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-10 21:00:00 PDT,+3.6,+270,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-04-10 22:00:00 PDT,+2.6,+50,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-10 23:00:00 PDT,+0,+0,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-04-11 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 02:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 03:00:00 PDT,+2.1,+90,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-04-11 04:00:00 PDT,+1.5,+330,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-04-11 05:00:00 PDT,+2.1,+70,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-04-11 06:00:00 PDT,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-04-11 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 12:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-11 13:00:00 PDT,+4.1,+250,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-04-11 14:00:00 PDT,+6.2,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-04-11 15:00:00 PDT,+7.2,+240,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-04-11 16:00:00 PDT,+6.2,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-04-11 17:00:00 PDT,+6.7,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-11 18:00:00 PDT,+6.7,+240,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-11 19:00:00 PDT,+4.1,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-11 20:00:00 PDT,+3.6,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-04-11 21:00:00 PDT,+1.8,+320,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-04-11 22:00:00 PDT,+0,+0,+5,+270,+0.0366555,+2262.46,+61722.3,-27.9419,OK,OK,+8,+180,+0.0552637,+3411,+61722.3,-30.0586,OK,OK
+2020-04-11 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 03:00:00 PDT,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 04:00:00 PDT,+1.5,+130,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-04-12 05:00:00 PDT,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-04-12 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 09:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 10:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-04-12 11:00:00 PDT,+1.4,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 12:00:00 PDT,+2.7,+320,+5,+270,+0.036258,+2237.93,+61722.3,-109.732,OK,OK,+8,+180,+0.0566153,+3494.42,+61722.3,-112.681,OK,OK
+2020-04-12 13:00:00 PDT,+4.1,+300,+5,+270,+0.0375767,+2319.32,+61722.3,-38.0799,OK,OK,+8,+180,+0.0523231,+3229.5,+61722.3,-45.6286,OK,OK
+2020-04-12 14:00:00 PDT,+5.1,+270,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-04-12 15:00:00 PDT,+6.2,+250,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-04-12 16:00:00 PDT,+6.2,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-12 17:00:00 PDT,+5.1,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-12 18:00:00 PDT,+6.2,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-12 19:00:00 PDT,+3.1,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-12 20:00:00 PDT,+0,+0,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-04-12 21:00:00 PDT,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-12 22:00:00 PDT,+3.1,+10,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-12 23:00:00 PDT,+0,+0,+5,+270,+0.0358778,+2214.46,+61722.3,-432.503,OK,OK,+8,+180,+0.0539621,+3330.66,+61722.3,-478.721,OK,OK
+2020-04-13 00:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 01:00:00 PDT,+3.1,+310,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-04-13 02:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-04-13 03:00:00 PDT,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 04:00:00 PDT,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-04-13 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 06:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 07:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-04-13 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 11:00:00 PDT,+2.9,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-13 12:00:00 PDT,+5.7,+260,+5,+270,+0.0382216,+2359.13,+61722.3,+38.8914,OK,OK,+8,+180,+0.0508816,+3140.52,+61722.3,+49.4189,OK,OK
+2020-04-13 13:00:00 PDT,+6.7,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-13 14:00:00 PDT,+8.2,+260,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-04-13 15:00:00 PDT,+6.7,+250,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-04-13 16:00:00 PDT,+7,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-13 17:00:00 PDT,+7.2,+260,+5,+270,+0.0616685,+3806.32,+61722.3,+145.996,OK,OK,+8,+180,+0.0218005,+1345.58,+61722.3,+1498.18,OK,OK
+2020-04-13 18:00:00 PDT,+6.7,+250,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-04-13 19:00:00 PDT,+4.6,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-13 20:00:00 PDT,+3.6,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-13 21:00:00 PDT,+5.1,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-04-13 22:00:00 PDT,+4.1,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-04-13 23:00:00 PDT,+3.6,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-04-14 00:00:00 PDT,+3.6,+260,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-04-14 01:00:00 PDT,+3.1,+260,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-04-14 02:00:00 PDT,+4.1,+260,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-04-14 03:00:00 PDT,+4.6,+280,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-14 04:00:00 PDT,+4.6,+260,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-14 05:00:00 PDT,+3.1,+290,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-14 06:00:00 PDT,+2.6,+290,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-04-14 07:00:00 PDT,+2.1,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-04-14 08:00:00 PDT,+3.1,+250,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-04-14 09:00:00 PDT,+4.6,+270,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-04-14 10:00:00 PDT,+6.2,+230,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-04-14 11:00:00 PDT,+5.7,+280,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-04-14 12:00:00 PDT,+5.7,+230,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-04-14 13:00:00 PDT,+7.7,+240,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-04-14 14:00:00 PDT,+7.7,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-04-14 15:00:00 PDT,+7.7,+250,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-04-14 16:00:00 PDT,+5.1,+290,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-04-14 17:00:00 PDT,+7.7,+260,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-04-14 18:00:00 PDT,+7.2,+250,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-04-14 19:00:00 PDT,+5.7,+240,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-14 20:00:00 PDT,+5.7,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-04-14 21:00:00 PDT,+3.1,+260,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-04-14 22:00:00 PDT,+1.5,+260,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-04-14 23:00:00 PDT,+3.1,+290,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-04-15 00:00:00 PDT,+2.1,+290,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-04-15 01:00:00 PDT,+3.6,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-04-15 02:00:00 PDT,+2.1,+250,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-04-15 03:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-04-15 04:00:00 PDT,+1.5,+140,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 05:00:00 PDT,+0,+0,+5,+270,+0.0357518,+2206.68,+61722.3,+24.3657,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+24.6782,OK,OK
+2020-04-15 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 07:00:00 PDT,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 08:00:00 PDT,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-04-15 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 12:00:00 PDT,+2.6,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-15 13:00:00 PDT,+3.1,+230,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-04-15 14:00:00 PDT,+3.6,+240,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-04-15 15:00:00 PDT,+4.1,+260,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-04-15 16:00:00 PDT,+6.2,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-15 17:00:00 PDT,+6.2,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-04-15 18:00:00 PDT,+5.1,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-04-15 19:00:00 PDT,+4.1,+260,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-15 20:00:00 PDT,+4.1,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-15 21:00:00 PDT,+4.1,+300,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-15 22:00:00 PDT,+3.6,+290,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-15 23:00:00 PDT,+3.6,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-04-16 00:00:00 PDT,+0,+0,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-04-16 01:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-16 02:00:00 PDT,+0,+0,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-04-16 03:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-16 04:00:00 PDT,+1.5,+310,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-04-16 05:00:00 PDT,+1.5,+20,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-04-16 06:00:00 PDT,+1.5,+150,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-04-16 07:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-04-16 08:00:00 PDT,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-16 09:00:00 PDT,+2.6,+150,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-04-16 10:00:00 PDT,+2.1,+110,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-04-16 11:00:00 PDT,+0,+0,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-04-16 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-16 13:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-16 14:00:00 PDT,+4.1,+330,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-04-16 15:00:00 PDT,+6.2,+250,+5,+270,+0.0395383,+2440.39,+61722.3,-140.507,OK,OK,+8,+180,+0.0470635,+2904.87,+61722.3,-209.872,OK,OK
+2020-04-16 16:00:00 PDT,+6.7,+230,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-16 17:00:00 PDT,+5.1,+260,+5,+270,+0.0496767,+3066.16,+61722.3,+554.82,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,+1520.72,OK,OK
+2020-04-16 18:00:00 PDT,+6.7,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-04-16 19:00:00 PDT,+6.2,+270,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-16 20:00:00 PDT,+5.1,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-04-16 21:00:00 PDT,+4.6,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-16 22:00:00 PDT,+4.1,+310,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-16 23:00:00 PDT,+3.1,+310,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-04-17 00:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-04-17 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-17 02:00:00 PDT,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-17 03:00:00 PDT,+1.5,+40,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-04-17 04:00:00 PDT,+2.1,+150,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-04-17 05:00:00 PDT,+2.6,+80,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-04-17 06:00:00 PDT,+1.5,+90,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-04-17 07:00:00 PDT,+2.1,+110,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-04-17 08:00:00 PDT,+0,+0,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-04-17 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-17 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-17 11:00:00 PDT,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-17 12:00:00 PDT,+1.8,+10,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-04-17 13:00:00 PDT,+1.5,+360,+5,+270,+0.0359729,+2220.33,+61722.3,-271.561,OK,OK,+8,+180,+0.0563875,+3480.37,+61722.3,-279.363,OK,OK
+2020-04-17 14:00:00 PDT,+2.6,+360,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-04-17 15:00:00 PDT,+3.1,+40,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-04-17 16:00:00 PDT,+2.6,+20,+5,+270,+0.0353279,+2180.52,+61722.3,-460.249,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-569.314,OK,OK
+2020-04-17 17:00:00 PDT,+3.6,+270,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-04-17 18:00:00 PDT,+2.9,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-17 19:00:00 PDT,+2.1,+240,+5,+270,+0.0386417,+2385.05,+61722.3,+367.29,OK,OK,+8,+180,+0.0509563,+3145.14,+61722.3,+468.179,OK,OK
+2020-04-17 20:00:00 PDT,+2.1,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-04-17 21:00:00 PDT,+3.1,+220,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-04-17 22:00:00 PDT,+4.1,+200,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-04-17 23:00:00 PDT,+2.1,+250,+5,+270,+0.0374665,+2312.52,+61722.3,+686.558,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+722.501,OK,OK
+2020-04-18 00:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-04-18 01:00:00 PDT,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-18 02:00:00 PDT,+2.6,+310,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-04-18 03:00:00 PDT,+2.1,+10,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-04-18 04:00:00 PDT,+3.1,+170,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-04-18 05:00:00 PDT,+2.6,+110,+5,+270,+0.0356987,+2203.4,+61722.3,+347.019,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+335.395,OK,OK
+2020-04-18 06:00:00 PDT,+5.7,+190,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-04-18 07:00:00 PDT,+1.5,+50,+5,+270,+0.0375238,+2316.06,+61722.3,+954.169,OK,OK,+8,+180,+0.0604106,+3728.68,+61722.3,+906.137,OK,OK
+2020-04-18 08:00:00 PDT,+3.1,+120,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-04-18 09:00:00 PDT,+4.1,+180,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-04-18 10:00:00 PDT,+4.6,+250,+5,+270,+0.0363044,+2240.79,+61722.3,+610.717,OK,OK,+8,+180,+0.0616019,+3802.21,+61722.3,+550.59,OK,OK
+2020-04-18 11:00:00 PDT,+6.2,+230,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-18 12:00:00 PDT,+4.6,+310,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-04-18 13:00:00 PDT,+6.2,+240,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-04-18 14:00:00 PDT,+6.2,+260,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-04-18 15:00:00 PDT,+4.6,+310,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-04-18 16:00:00 PDT,+7.2,+240,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-04-18 17:00:00 PDT,+6.2,+220,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-04-18 18:00:00 PDT,+4.6,+230,+5,+270,+0.0442731,+2732.63,+61722.3,+739.368,OK,OK,+8,+180,+0.0439556,+2713.04,+61722.3,+1318.68,OK,OK
+2020-04-18 19:00:00 PDT,+5.7,+260,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-04-18 20:00:00 PDT,+3.6,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-18 21:00:00 PDT,+4.6,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-04-18 22:00:00 PDT,+3.1,+240,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-18 23:00:00 PDT,+2.1,+310,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-04-19 00:00:00 PDT,+2.1,+320,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-04-19 01:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-04-19 02:00:00 PDT,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 03:00:00 PDT,+1.5,+100,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-04-19 04:00:00 PDT,+1.5,+80,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-04-19 05:00:00 PDT,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-04-19 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 13:00:00 PDT,+2.9,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-19 14:00:00 PDT,+5.7,+240,+5,+270,+0.0384972,+2376.14,+61722.3,+113.788,OK,OK,+8,+180,+0.0504569,+3114.31,+61722.3,+147.334,OK,OK
+2020-04-19 15:00:00 PDT,+3.6,+260,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-04-19 16:00:00 PDT,+3.1,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-04-19 17:00:00 PDT,+6.2,+240,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-04-19 18:00:00 PDT,+5.1,+250,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-04-19 19:00:00 PDT,+4.1,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-19 20:00:00 PDT,+3.1,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-04-19 21:00:00 PDT,+2.6,+280,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-04-19 22:00:00 PDT,+2.6,+270,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-04-19 23:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-04-20 00:00:00 PDT,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 01:00:00 PDT,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-04-20 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 05:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 06:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-04-20 07:00:00 PDT,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 08:00:00 PDT,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-04-20 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 13:00:00 PDT,+2.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-20 14:00:00 PDT,+4.1,+280,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-04-20 15:00:00 PDT,+4.1,+250,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-04-20 16:00:00 PDT,+6.7,+250,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-04-20 17:00:00 PDT,+7.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-20 18:00:00 PDT,+6.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-20 19:00:00 PDT,+6.2,+270,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-20 20:00:00 PDT,+3.6,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-04-20 21:00:00 PDT,+2.1,+300,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-04-20 22:00:00 PDT,+3.1,+310,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-04-20 23:00:00 PDT,+2.6,+300,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-04-21 00:00:00 PDT,+1.5,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-04-21 01:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-04-21 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-21 03:00:00 PDT,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-21 04:00:00 PDT,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-04-21 05:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-21 06:00:00 PDT,+3.6,+320,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-04-21 07:00:00 PDT,+0,+0,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-04-21 08:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-21 09:00:00 PDT,+1.5,+250,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-04-21 10:00:00 PDT,+2.6,+300,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-04-21 11:00:00 PDT,+3.6,+340,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-04-21 12:00:00 PDT,+3.6,+290,+5,+270,+0.0377323,+2328.92,+61722.3,-234.361,OK,OK,+8,+180,+0.0509765,+3146.38,+61722.3,-294.829,OK,OK
+2020-04-21 13:00:00 PDT,+4.6,+260,+5,+270,+0.0377323,+2328.92,+61722.3,-234.361,OK,OK,+8,+180,+0.0509765,+3146.38,+61722.3,-294.829,OK,OK
+2020-04-21 14:00:00 PDT,+6.1,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-04-21 15:00:00 PDT,+7.7,+260,+5,+270,+0.0538067,+3321.07,+61722.3,+264.62,OK,OK,+8,+180,+0.0292789,+1807.16,+61722.3,+1187.57,OK,OK
+2020-04-21 16:00:00 PDT,+7.2,+250,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-04-21 17:00:00 PDT,+8.2,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-21 18:00:00 PDT,+7.2,+260,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-04-21 19:00:00 PDT,+5.7,+270,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-04-21 20:00:00 PDT,+5.1,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-04-21 21:00:00 PDT,+7.2,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-04-21 22:00:00 PDT,+4.1,+270,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-21 23:00:00 PDT,+4.6,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-04-22 00:00:00 PDT,+6.2,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-04-22 01:00:00 PDT,+4.6,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-22 02:00:00 PDT,+4.1,+260,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-04-22 03:00:00 PDT,+3.1,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-22 04:00:00 PDT,+3.6,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-04-22 05:00:00 PDT,+4.1,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-04-22 06:00:00 PDT,+3.6,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-04-22 07:00:00 PDT,+3.1,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-22 08:00:00 PDT,+3.6,+270,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-04-22 09:00:00 PDT,+3.1,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-22 10:00:00 PDT,+3.6,+270,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-04-22 11:00:00 PDT,+3.1,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-22 12:00:00 PDT,+3.6,+270,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-04-22 13:00:00 PDT,+3.1,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-22 14:00:00 PDT,+4.6,+240,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-04-22 15:00:00 PDT,+3.6,+270,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-04-22 16:00:00 PDT,+4.6,+310,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-22 17:00:00 PDT,+3.1,+300,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-04-22 18:00:00 PDT,+6.7,+250,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-04-22 19:00:00 PDT,+4.1,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-04-22 20:00:00 PDT,+3.6,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-22 21:00:00 PDT,+4.6,+270,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-04-22 22:00:00 PDT,+5.1,+290,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-04-22 23:00:00 PDT,+4.6,+290,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-04-23 00:00:00 PDT,+4.1,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-04-23 01:00:00 PDT,+4.1,+270,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-23 02:00:00 PDT,+1.5,+290,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-23 03:00:00 PDT,+2.1,+270,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-04-23 04:00:00 PDT,+2.1,+280,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-23 05:00:00 PDT,+2.6,+270,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-23 06:00:00 PDT,+2.1,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-04-23 07:00:00 PDT,+2.1,+310,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-23 08:00:00 PDT,+3.1,+290,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-23 09:00:00 PDT,+4.1,+270,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-04-23 10:00:00 PDT,+3.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-04-23 11:00:00 PDT,+1.5,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-04-23 12:00:00 PDT,+4.1,+300,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-04-23 13:00:00 PDT,+4.6,+300,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-04-23 14:00:00 PDT,+5.1,+290,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-04-23 15:00:00 PDT,+4.1,+290,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-04-23 16:00:00 PDT,+3.6,+270,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-23 17:00:00 PDT,+3.6,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-23 18:00:00 PDT,+4.1,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-23 19:00:00 PDT,+4.6,+250,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-04-23 20:00:00 PDT,+3.6,+260,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-23 21:00:00 PDT,+2.6,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-04-23 22:00:00 PDT,+1.5,+310,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-04-23 23:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-04-24 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 08:00:00 PDT,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 09:00:00 PDT,+2.1,+180,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-04-24 10:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,+291.497,OK,OK,+8,+180,+0.0586659,+3620.99,+61722.3,+282.01,OK,OK
+2020-04-24 11:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-24 12:00:00 PDT,+2.9,+310,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-04-24 13:00:00 PDT,+3.3,+310,+5,+270,+0.0382216,+2359.13,+61722.3,+38.8914,OK,OK,+8,+180,+0.0508816,+3140.52,+61722.3,+49.4189,OK,OK
+2020-04-24 14:00:00 PDT,+3.6,+310,+5,+270,+0.0390672,+2411.32,+61722.3,+41.1142,OK,OK,+8,+180,+0.0489043,+3018.48,+61722.3,+56.7839,OK,OK
+2020-04-24 15:00:00 PDT,+4.1,+270,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-04-24 16:00:00 PDT,+4.6,+310,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-04-24 17:00:00 PDT,+5.7,+260,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-04-24 18:00:00 PDT,+5.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-24 19:00:00 PDT,+3.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-24 20:00:00 PDT,+2.1,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-04-24 21:00:00 PDT,+2.6,+280,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-04-24 22:00:00 PDT,+2.1,+360,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-04-24 23:00:00 PDT,+2.1,+320,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-04-25 00:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-04-25 01:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 02:00:00 PDT,+1.5,+160,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-04-25 03:00:00 PDT,+1.5,+340,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-04-25 04:00:00 PDT,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-04-25 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 06:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 07:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-04-25 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 11:00:00 PDT,+1.3,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 12:00:00 PDT,+2.6,+310,+5,+270,+0.0362325,+2236.35,+61722.3,-102.306,OK,OK,+8,+180,+0.0567539,+3502.98,+61722.3,-104.591,OK,OK
+2020-04-25 13:00:00 PDT,+4.6,+280,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-04-25 14:00:00 PDT,+7.2,+250,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-04-25 15:00:00 PDT,+6.2,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-04-25 16:00:00 PDT,+5.7,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-04-25 17:00:00 PDT,+6.2,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-04-25 18:00:00 PDT,+4.6,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-04-25 19:00:00 PDT,+3.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-04-25 20:00:00 PDT,+2.1,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-04-25 21:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-04-25 22:00:00 PDT,+2.6,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-25 23:00:00 PDT,+1.5,+160,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-04-26 00:00:00 PDT,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-04-26 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 10:00:00 PDT,+0.8,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-26 11:00:00 PDT,+1.6,+300,+5,+270,+0.0361631,+2232.07,+61722.3,-39.0725,OK,OK,+8,+180,+0.0572182,+3531.64,+61722.3,-39.375,OK,OK
+2020-04-26 12:00:00 PDT,+2.3,+270,+5,+270,+0.0366768,+2263.77,+61722.3,+74.1491,OK,OK,+8,+180,+0.0554342,+3421.53,+61722.3,+79.3871,OK,OK
+2020-04-26 13:00:00 PDT,+3.1,+240,+5,+270,+0.0376128,+2321.55,+61722.3,+270.764,OK,OK,+8,+180,+0.0531342,+3279.56,+61722.3,+316.063,OK,OK
+2020-04-26 14:00:00 PDT,+5.1,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-04-26 15:00:00 PDT,+6.2,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-26 16:00:00 PDT,+6.2,+260,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-04-26 17:00:00 PDT,+6.2,+240,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-04-26 18:00:00 PDT,+5.7,+260,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-04-26 19:00:00 PDT,+5.1,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-26 20:00:00 PDT,+4.1,+310,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-04-26 21:00:00 PDT,+2.6,+310,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-04-26 22:00:00 PDT,+2.1,+320,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-04-26 23:00:00 PDT,+1.5,+310,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-04-27 00:00:00 PDT,+1.5,+360,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-04-27 01:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-04-27 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 03:00:00 PDT,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 04:00:00 PDT,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-04-27 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 07:00:00 PDT,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 08:00:00 PDT,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-04-27 09:00:00 PDT,+2.1,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 10:00:00 PDT,+0,+0,+5,+270,+0.0359054,+2216.16,+61722.3,+232.271,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+228.039,OK,OK
+2020-04-27 11:00:00 PDT,+4.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-27 12:00:00 PDT,+3.1,+240,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-27 13:00:00 PDT,+4.1,+280,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-04-27 14:00:00 PDT,+6.7,+260,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-04-27 15:00:00 PDT,+7.7,+270,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-27 16:00:00 PDT,+8.2,+250,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-04-27 17:00:00 PDT,+7.2,+270,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-04-27 18:00:00 PDT,+7.2,+260,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-04-27 19:00:00 PDT,+5.7,+260,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-04-27 20:00:00 PDT,+3.1,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-04-27 21:00:00 PDT,+2.6,+290,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-04-27 22:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-04-27 23:00:00 PDT,+3.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-28 00:00:00 PDT,+2.6,+260,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-04-28 01:00:00 PDT,+3.1,+250,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-04-28 02:00:00 PDT,+4.6,+270,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-04-28 03:00:00 PDT,+4.6,+260,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-04-28 04:00:00 PDT,+2.1,+210,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-04-28 05:00:00 PDT,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-04-28 06:00:00 PDT,+2.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-28 07:00:00 PDT,+2.1,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-04-28 08:00:00 PDT,+3.6,+270,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-04-28 09:00:00 PDT,+1.5,+210,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-04-28 10:00:00 PDT,+1.5,+280,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-04-28 11:00:00 PDT,+6.7,+260,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-04-28 12:00:00 PDT,+4.6,+240,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-28 13:00:00 PDT,+2.1,+260,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-04-28 14:00:00 PDT,+5.1,+300,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-04-28 15:00:00 PDT,+5.1,+290,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-04-28 16:00:00 PDT,+4.1,+260,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-04-28 17:00:00 PDT,+6.7,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-28 18:00:00 PDT,+8.2,+260,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-04-28 19:00:00 PDT,+7.7,+250,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-04-28 20:00:00 PDT,+4.1,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-04-28 21:00:00 PDT,+3.6,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-04-28 22:00:00 PDT,+4.1,+260,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-04-28 23:00:00 PDT,+4.6,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-04-29 00:00:00 PDT,+4.6,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-29 01:00:00 PDT,+4.1,+290,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-04-29 02:00:00 PDT,+2.1,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-04-29 03:00:00 PDT,+2.1,+260,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-04-29 04:00:00 PDT,+1.5,+350,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-04-29 05:00:00 PDT,+1.5,+360,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-04-29 06:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-04-29 07:00:00 PDT,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-29 08:00:00 PDT,+1.5,+130,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-04-29 09:00:00 PDT,+2,+150,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-04-29 10:00:00 PDT,+2.5,+170,+5,+270,+0.035622,+2198.67,+61722.3,+96.2926,OK,OK,+8,+180,+0.0567417,+3502.23,+61722.3,+97.4835,OK,OK
+2020-04-29 11:00:00 PDT,+3.1,+190,+5,+270,+0.0358316,+2211.61,+61722.3,+277.696,OK,OK,+8,+180,+0.0581559,+3589.52,+61722.3,+271.121,OK,OK
+2020-04-29 12:00:00 PDT,+3.6,+200,+5,+270,+0.0364897,+2252.23,+61722.3,+495.36,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+485.515,OK,OK
+2020-04-29 13:00:00 PDT,+4.1,+220,+5,+270,+0.037147,+2292.79,+61722.3,+607.306,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+630.993,OK,OK
+2020-04-29 14:00:00 PDT,+4.6,+240,+5,+270,+0.0391406,+2415.84,+61722.3,+646.25,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+813.239,OK,OK
+2020-04-29 15:00:00 PDT,+4.6,+310,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-04-29 16:00:00 PDT,+5.7,+310,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-04-29 17:00:00 PDT,+6.2,+250,+5,+270,+0.0495216,+3056.59,+61722.3,+30.1077,OK,OK,+8,+180,+0.032041,+1977.64,+61722.3,+110.091,OK,OK
+2020-04-29 18:00:00 PDT,+6.2,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-29 19:00:00 PDT,+5.1,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-04-29 20:00:00 PDT,+2.6,+290,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-29 21:00:00 PDT,+1.3,+330,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-04-29 22:00:00 PDT,+0,+0,+5,+270,+0.0363011,+2240.59,+61722.3,-62.2952,OK,OK,+8,+180,+0.0565564,+3490.79,+61722.3,-64.1254,OK,OK
+2020-04-29 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 00:00:00 PDT,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 01:00:00 PDT,+1.5,+290,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-04-30 02:00:00 PDT,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-04-30 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 05:00:00 PDT,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 06:00:00 PDT,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-04-30 07:00:00 PDT,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 08:00:00 PDT,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-04-30 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 11:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-04-30 12:00:00 PDT,+4.1,+300,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-04-30 13:00:00 PDT,+4.6,+300,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-04-30 14:00:00 PDT,+5.7,+270,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-04-30 15:00:00 PDT,+6.7,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-04-30 16:00:00 PDT,+7.7,+290,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-04-30 17:00:00 PDT,+6.2,+270,+5,+270,+0.0720212,+4445.31,+61722.3,-27.7303,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+806.133,OK,OK
+2020-04-30 18:00:00 PDT,+6.2,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-04-30 19:00:00 PDT,+5.1,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-04-30 20:00:00 PDT,+3.9,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-04-30 21:00:00 PDT,+2.7,+300,+5,+270,+0.0418563,+2583.46,+61722.3,+267.092,OK,OK,+8,+180,+0.0443899,+2739.84,+61722.3,+457.415,OK,OK
+2020-04-30 22:00:00 PDT,+1.5,+330,+5,+270,+0.0381011,+2351.69,+61722.3,+109.609,OK,OK,+8,+180,+0.0514072,+3172.97,+61722.3,+136.518,OK,OK
+2020-04-30 23:00:00 PDT,+1.3,+360,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-01 00:00:00 PDT,+1.1,+0,+5,+270,+0.0360872,+2227.39,+61722.3,-173.485,OK,OK,+8,+180,+0.0572216,+3531.84,+61722.3,-174.577,OK,OK
+2020-05-01 01:00:00 PDT,+0.9,+0,+5,+270,+0.0360862,+2227.32,+61722.3,-147.267,OK,OK,+8,+180,+0.0573352,+3538.86,+61722.3,-147.719,OK,OK
+2020-05-01 02:00:00 PDT,+0.6,+290,+5,+270,+0.0360855,+2227.28,+61722.3,-120.813,OK,OK,+8,+180,+0.0574299,+3544.7,+61722.3,-120.861,OK,OK
+2020-05-01 03:00:00 PDT,+0.4,+300,+5,+270,+0.0361666,+2232.29,+61722.3,+47.9673,OK,OK,+8,+180,+0.0573047,+3536.98,+61722.3,+48.2243,OK,OK
+2020-05-01 04:00:00 PDT,+0.2,+0,+5,+270,+0.0361181,+2229.29,+61722.3,+19.6836,OK,OK,+8,+180,+0.0574848,+3548.09,+61722.3,+19.6727,OK,OK
+2020-05-01 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,-26.9842,OK,OK,+8,+180,+0.0576122,+3555.96,+61722.3,-26.8581,OK,OK
+2020-05-01 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-01 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-01 08:00:00 PDT,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-01 09:00:00 PDT,+2.1,+270,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-05-01 10:00:00 PDT,+1.5,+270,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-05-01 11:00:00 PDT,+2.1,+270,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-05-01 12:00:00 PDT,+3.6,+290,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-05-01 13:00:00 PDT,+4.1,+280,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-05-01 14:00:00 PDT,+5.7,+300,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-01 15:00:00 PDT,+3.6,+260,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-05-01 16:00:00 PDT,+5.1,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-05-01 17:00:00 PDT,+5.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-05-01 18:00:00 PDT,+6.2,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-05-01 19:00:00 PDT,+4.6,+260,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-05-01 20:00:00 PDT,+5.7,+270,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-01 21:00:00 PDT,+4.6,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-05-01 22:00:00 PDT,+3.6,+270,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-01 23:00:00 PDT,+2.6,+300,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-02 00:00:00 PDT,+2.6,+290,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-05-02 01:00:00 PDT,+2.1,+280,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-05-02 02:00:00 PDT,+2.1,+300,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-05-02 03:00:00 PDT,+2.1,+340,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-05-02 04:00:00 PDT,+1.5,+330,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-05-02 05:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-02 06:00:00 PDT,+1.5,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-02 07:00:00 PDT,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-05-02 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-02 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-02 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-02 11:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-02 12:00:00 PDT,+1.5,+330,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-05-02 13:00:00 PDT,+4.1,+320,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-02 14:00:00 PDT,+4.1,+290,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-05-02 15:00:00 PDT,+5.1,+220,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-05-02 16:00:00 PDT,+5.7,+230,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-05-02 17:00:00 PDT,+6.7,+230,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-05-02 18:00:00 PDT,+7.2,+250,+5,+270,+0.0496767,+3066.16,+61722.3,+554.82,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,+1520.72,OK,OK
+2020-05-02 19:00:00 PDT,+6.7,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-05-02 20:00:00 PDT,+4.6,+270,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-02 21:00:00 PDT,+3.1,+290,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-02 22:00:00 PDT,+2.1,+310,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-02 23:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-05-03 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 05:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 06:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-05-03 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 08:00:00 PDT,+2.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 09:00:00 PDT,+0,+0,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-05-03 10:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-03 12:00:00 PDT,+3.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-03 13:00:00 PDT,+3.6,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-03 14:00:00 PDT,+5.1,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-03 15:00:00 PDT,+5.1,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-03 16:00:00 PDT,+6.2,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-03 17:00:00 PDT,+6.7,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-05-03 18:00:00 PDT,+6.2,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-03 19:00:00 PDT,+5.7,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-03 20:00:00 PDT,+4.1,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-03 21:00:00 PDT,+3.1,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-03 22:00:00 PDT,+1.5,+300,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-03 23:00:00 PDT,+2.1,+330,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-05-04 00:00:00 PDT,+2.1,+320,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-05-04 01:00:00 PDT,+2.1,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-05-04 02:00:00 PDT,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-05-04 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-04 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-04 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-04 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-04 07:00:00 PDT,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-04 08:00:00 PDT,+2.1,+260,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-04 09:00:00 PDT,+2.1,+230,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-04 10:00:00 PDT,+2.1,+270,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-04 11:00:00 PDT,+2.1,+220,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-04 12:00:00 PDT,+1.5,+240,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-04 13:00:00 PDT,+3.1,+260,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-05-04 14:00:00 PDT,+6.2,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-05-04 15:00:00 PDT,+6.7,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-05-04 16:00:00 PDT,+7.7,+240,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-04 17:00:00 PDT,+7.2,+270,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-05-04 18:00:00 PDT,+6.7,+270,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-05-04 19:00:00 PDT,+6.7,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-04 20:00:00 PDT,+7.7,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-04 21:00:00 PDT,+8.2,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-05-04 22:00:00 PDT,+4.1,+260,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-05-04 23:00:00 PDT,+3.6,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-05-05 00:00:00 PDT,+3.6,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-05-05 01:00:00 PDT,+2.6,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-05-05 02:00:00 PDT,+2.1,+310,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-05-05 03:00:00 PDT,+2.6,+300,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-05-05 04:00:00 PDT,+3.1,+120,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-05-05 05:00:00 PDT,+3.1,+110,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-05-05 06:00:00 PDT,+5.1,+260,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-05-05 07:00:00 PDT,+4.1,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-05 08:00:00 PDT,+3.1,+240,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-05 09:00:00 PDT,+2.1,+260,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-05-05 10:00:00 PDT,+2.6,+350,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-05-05 11:00:00 PDT,+3.6,+310,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-05-05 12:00:00 PDT,+4.6,+250,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-05-05 13:00:00 PDT,+3.6,+260,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-05-05 14:00:00 PDT,+6.7,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-05-05 15:00:00 PDT,+7.2,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-05-05 16:00:00 PDT,+6.7,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-05 17:00:00 PDT,+6.7,+250,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-05-05 18:00:00 PDT,+5.7,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-05-05 19:00:00 PDT,+4.6,+230,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-05-05 20:00:00 PDT,+5.1,+240,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-05-05 21:00:00 PDT,+5.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-05-05 22:00:00 PDT,+4.1,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-05-05 23:00:00 PDT,+3.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-06 00:00:00 PDT,+1.5,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-05-06 01:00:00 PDT,+2.1,+250,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-06 02:00:00 PDT,+2.6,+250,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-05-06 03:00:00 PDT,+0,+0,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-05-06 04:00:00 PDT,+3.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-06 05:00:00 PDT,+2.6,+260,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-05-06 06:00:00 PDT,+1.5,+230,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-05-06 07:00:00 PDT,+2.1,+270,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-05-06 08:00:00 PDT,+1.5,+250,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-05-06 09:00:00 PDT,+1.5,+300,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-05-06 10:00:00 PDT,+2.6,+210,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-05-06 11:00:00 PDT,+5.7,+220,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-05-06 12:00:00 PDT,+5.1,+220,+5,+270,+0.0427491,+2638.57,+61722.3,+736.607,OK,OK,+8,+180,+0.0460069,+2839.65,+61722.3,+1188.06,OK,OK
+2020-05-06 13:00:00 PDT,+4.6,+240,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-05-06 14:00:00 PDT,+7.2,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-05-06 15:00:00 PDT,+6.7,+230,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-06 16:00:00 PDT,+7.2,+240,+5,+270,+0.0496767,+3066.16,+61722.3,+554.82,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,+1520.72,OK,OK
+2020-05-06 17:00:00 PDT,+7.2,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-06 18:00:00 PDT,+6.7,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-06 19:00:00 PDT,+6.2,+250,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-05-06 20:00:00 PDT,+3.1,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-06 21:00:00 PDT,+4.6,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-05-06 22:00:00 PDT,+3.6,+240,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-05-06 23:00:00 PDT,+5.1,+230,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-05-07 00:00:00 PDT,+2.6,+230,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-05-07 01:00:00 PDT,+3.6,+230,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-05-07 02:00:00 PDT,+0,+0,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-05-07 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-07 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-07 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-07 06:00:00 PDT,+1.5,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-07 07:00:00 PDT,+0,+0,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-05-07 08:00:00 PDT,+1.5,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-07 09:00:00 PDT,+1.5,+250,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-05-07 10:00:00 PDT,+1.5,+280,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-05-07 11:00:00 PDT,+1.5,+310,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-05-07 12:00:00 PDT,+2.6,+340,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-05-07 13:00:00 PDT,+3.1,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-05-07 14:00:00 PDT,+3.6,+270,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-05-07 15:00:00 PDT,+5.1,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-07 16:00:00 PDT,+4.6,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-07 17:00:00 PDT,+4.6,+290,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-05-07 18:00:00 PDT,+5.7,+260,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-05-07 19:00:00 PDT,+5.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-07 20:00:00 PDT,+4.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-07 21:00:00 PDT,+3.6,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-07 22:00:00 PDT,+3.1,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-07 23:00:00 PDT,+2.1,+290,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-08 00:00:00 PDT,+2.6,+270,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-08 01:00:00 PDT,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-08 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 11:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-08 12:00:00 PDT,+3.6,+320,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-05-08 13:00:00 PDT,+5.7,+280,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-05-08 14:00:00 PDT,+3.1,+340,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-05-08 15:00:00 PDT,+5.1,+280,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-05-08 16:00:00 PDT,+5.7,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-05-08 17:00:00 PDT,+6.2,+240,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-05-08 18:00:00 PDT,+6.2,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-05-08 19:00:00 PDT,+4.6,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-05-08 20:00:00 PDT,+4.6,+270,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-05-08 21:00:00 PDT,+4.1,+280,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-05-08 22:00:00 PDT,+4.6,+260,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-08 23:00:00 PDT,+4.1,+270,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-09 00:00:00 PDT,+2.6,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-09 01:00:00 PDT,+1.5,+290,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-09 02:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-09 03:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-09 04:00:00 PDT,+2.6,+300,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-05-09 05:00:00 PDT,+2.1,+340,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-05-09 06:00:00 PDT,+0,+0,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-05-09 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-09 08:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-09 09:00:00 PDT,+2.1,+240,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-05-09 10:00:00 PDT,+1.5,+180,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-05-09 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-05-09 12:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-09 13:00:00 PDT,+5.7,+290,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-05-09 14:00:00 PDT,+5.1,+300,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-05-09 15:00:00 PDT,+3.1,+290,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-05-09 16:00:00 PDT,+4.1,+260,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-09 17:00:00 PDT,+5.7,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-05-09 18:00:00 PDT,+6.2,+240,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-05-09 19:00:00 PDT,+4.6,+230,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-05-09 20:00:00 PDT,+4.1,+250,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-05-09 21:00:00 PDT,+3.6,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-09 22:00:00 PDT,+2.6,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-05-09 23:00:00 PDT,+3.6,+240,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-05-10 00:00:00 PDT,+2.6,+270,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-05-10 01:00:00 PDT,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-10 02:00:00 PDT,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 03:00:00 PDT,+1.5,+10,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-05-10 04:00:00 PDT,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-05-10 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 06:00:00 PDT,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 07:00:00 PDT,+1.5,+350,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-05-10 08:00:00 PDT,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-05-10 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 11:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 12:00:00 PDT,+2.1,+360,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-10 13:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-05-10 14:00:00 PDT,+3.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-10 15:00:00 PDT,+7.7,+210,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-10 16:00:00 PDT,+8.2,+230,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-05-10 17:00:00 PDT,+8.2,+260,+5,+270,+0.0589802,+3640.39,+61722.3,+381.761,OK,OK,+8,+180,+0.0269359,+1662.54,+61722.3,+2085.67,OK,OK
+2020-05-10 18:00:00 PDT,+6.7,+250,+5,+270,+0.0589802,+3640.39,+61722.3,+381.761,OK,OK,+8,+180,+0.0269359,+1662.54,+61722.3,+2085.67,OK,OK
+2020-05-10 19:00:00 PDT,+5.7,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-10 20:00:00 PDT,+1.5,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-05-10 21:00:00 PDT,+3.6,+270,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-05-10 22:00:00 PDT,+0,+0,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-10 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 01:00:00 PDT,+2.6,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 02:00:00 PDT,+2.1,+50,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-05-11 03:00:00 PDT,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-05-11 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 05:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 06:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-11 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 08:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 09:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-11 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 11:00:00 PDT,+1.5,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-11 12:00:00 PDT,+3.6,+270,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-05-11 13:00:00 PDT,+4.6,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-11 14:00:00 PDT,+3.6,+310,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-11 15:00:00 PDT,+6.2,+260,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-05-11 16:00:00 PDT,+6.2,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-11 17:00:00 PDT,+6.7,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-11 18:00:00 PDT,+7.2,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-05-11 19:00:00 PDT,+5.7,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-05-11 20:00:00 PDT,+3.6,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-11 21:00:00 PDT,+2.6,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-11 22:00:00 PDT,+1.5,+320,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-11 23:00:00 PDT,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-05-12 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 01:00:00 PDT,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 02:00:00 PDT,+2.1,+60,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-12 03:00:00 PDT,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-12 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 09:00:00 PDT,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 10:00:00 PDT,+2.6,+200,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-05-12 11:00:00 PDT,+0,+0,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-05-12 12:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-12 13:00:00 PDT,+2.1,+310,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-05-12 14:00:00 PDT,+3.6,+280,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-05-12 15:00:00 PDT,+5.1,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-12 16:00:00 PDT,+6.2,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-05-12 17:00:00 PDT,+7.2,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-12 18:00:00 PDT,+5.1,+270,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-05-12 19:00:00 PDT,+3.6,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-05-12 20:00:00 PDT,+2.6,+270,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-05-12 21:00:00 PDT,+2.6,+250,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-12 22:00:00 PDT,+1.5,+280,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-12 23:00:00 PDT,+1.5,+40,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-13 00:00:00 PDT,+1.5,+10,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-13 01:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-13 02:00:00 PDT,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 03:00:00 PDT,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-05-13 04:00:00 PDT,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 05:00:00 PDT,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-05-13 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 12:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-13 13:00:00 PDT,+4.1,+300,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-05-13 14:00:00 PDT,+4.6,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-05-13 15:00:00 PDT,+5.7,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-05-13 16:00:00 PDT,+6.2,+250,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-05-13 17:00:00 PDT,+6.7,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-13 18:00:00 PDT,+5.7,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-13 19:00:00 PDT,+4.6,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-13 20:00:00 PDT,+2.1,+260,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-05-13 21:00:00 PDT,+3.1,+250,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-05-13 22:00:00 PDT,+2.6,+300,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-05-13 23:00:00 PDT,+2.1,+10,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-05-14 00:00:00 PDT,+0,+0,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-05-14 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 12:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 13:00:00 PDT,+4.1,+290,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-05-14 14:00:00 PDT,+5.7,+260,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-05-14 15:00:00 PDT,+4.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-14 16:00:00 PDT,+6.7,+270,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-14 17:00:00 PDT,+7.2,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-14 18:00:00 PDT,+6.2,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-05-14 19:00:00 PDT,+6.2,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-14 20:00:00 PDT,+3.1,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-14 21:00:00 PDT,+0,+0,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-05-14 22:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-14 23:00:00 PDT,+2.6,+350,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-15 00:00:00 PDT,+0,+0,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-05-15 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 11:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-15 12:00:00 PDT,+2.6,+320,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-05-15 13:00:00 PDT,+3.6,+290,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-05-15 14:00:00 PDT,+5.7,+260,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-05-15 15:00:00 PDT,+5.1,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-15 16:00:00 PDT,+6.7,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-05-15 17:00:00 PDT,+5.1,+240,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-15 18:00:00 PDT,+5.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-05-15 19:00:00 PDT,+4.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-05-15 20:00:00 PDT,+4.1,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-15 21:00:00 PDT,+2.6,+320,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-15 22:00:00 PDT,+3.1,+320,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-05-15 23:00:00 PDT,+3.1,+300,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-05-16 00:00:00 PDT,+3.1,+310,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-05-16 01:00:00 PDT,+2.1,+300,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-05-16 02:00:00 PDT,+0,+0,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-16 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-16 04:00:00 PDT,+3.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-16 05:00:00 PDT,+0,+0,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-05-16 06:00:00 PDT,+3.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-16 07:00:00 PDT,+4.1,+270,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-05-16 08:00:00 PDT,+4.1,+240,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-16 09:00:00 PDT,+2.1,+180,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-16 10:00:00 PDT,+2.1,+140,+5,+270,+0.0361002,+2228.18,+61722.3,+291.497,OK,OK,+8,+180,+0.0586659,+3620.99,+61722.3,+282.01,OK,OK
+2020-05-16 11:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,+291.497,OK,OK,+8,+180,+0.0586659,+3620.99,+61722.3,+282.01,OK,OK
+2020-05-16 12:00:00 PDT,+3.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-16 13:00:00 PDT,+5.7,+260,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-16 14:00:00 PDT,+4.6,+290,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-16 15:00:00 PDT,+6.2,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-05-16 16:00:00 PDT,+7.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-05-16 17:00:00 PDT,+7.7,+240,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-05-16 18:00:00 PDT,+6.2,+250,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-05-16 19:00:00 PDT,+6.7,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-16 20:00:00 PDT,+5.7,+250,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-05-16 21:00:00 PDT,+4.6,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-05-16 22:00:00 PDT,+3.6,+260,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-16 23:00:00 PDT,+4.6,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-05-17 00:00:00 PDT,+3.6,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-05-17 01:00:00 PDT,+3.1,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-17 02:00:00 PDT,+3.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-05-17 03:00:00 PDT,+2.1,+320,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-05-17 04:00:00 PDT,+2.1,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-05-17 05:00:00 PDT,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-05-17 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-17 07:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-17 08:00:00 PDT,+1.5,+300,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-05-17 09:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-05-17 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-17 11:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-17 12:00:00 PDT,+3.6,+270,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-05-17 13:00:00 PDT,+3.6,+320,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-17 14:00:00 PDT,+3.6,+330,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-17 15:00:00 PDT,+4.1,+250,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-17 16:00:00 PDT,+4.6,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-17 17:00:00 PDT,+6.7,+250,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-17 18:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-17 19:00:00 PDT,+6.2,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-17 20:00:00 PDT,+4.1,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-17 21:00:00 PDT,+4.1,+280,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-05-17 22:00:00 PDT,+2.6,+290,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-05-17 23:00:00 PDT,+2.1,+280,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-18 00:00:00 PDT,+1.5,+300,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-05-18 01:00:00 PDT,+2.1,+330,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-05-18 02:00:00 PDT,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-05-18 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 12:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-18 13:00:00 PDT,+3.6,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-05-18 14:00:00 PDT,+3.1,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-05-18 15:00:00 PDT,+4.6,+240,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-05-18 16:00:00 PDT,+6.2,+260,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-05-18 17:00:00 PDT,+5.7,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-18 18:00:00 PDT,+6.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-18 19:00:00 PDT,+6.2,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-18 20:00:00 PDT,+4.1,+280,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-18 21:00:00 PDT,+3.6,+270,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-18 22:00:00 PDT,+2.6,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-18 23:00:00 PDT,+1.5,+290,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-05-19 00:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-19 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 09:00:00 PDT,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 10:00:00 PDT,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-05-19 11:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-19 12:00:00 PDT,+3.1,+300,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-19 13:00:00 PDT,+4.1,+250,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-05-19 14:00:00 PDT,+6.2,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-19 15:00:00 PDT,+4.6,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-19 16:00:00 PDT,+6.2,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-05-19 17:00:00 PDT,+7.7,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-19 18:00:00 PDT,+6.7,+250,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-05-19 19:00:00 PDT,+3.1,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-19 20:00:00 PDT,+3.1,+240,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-05-19 21:00:00 PDT,+3.1,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-05-19 22:00:00 PDT,+1.5,+330,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-05-19 23:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-20 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 10:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-20 11:00:00 PDT,+2.6,+300,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-20 12:00:00 PDT,+3.6,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-05-20 13:00:00 PDT,+4.1,+290,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-20 14:00:00 PDT,+5.7,+260,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-05-20 15:00:00 PDT,+6.2,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-20 16:00:00 PDT,+4.6,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-20 17:00:00 PDT,+5.1,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-20 18:00:00 PDT,+6.2,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-05-20 19:00:00 PDT,+5.1,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-05-20 20:00:00 PDT,+3.6,+280,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-05-20 21:00:00 PDT,+3.1,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-20 22:00:00 PDT,+3.1,+340,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-20 23:00:00 PDT,+2.1,+60,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-21 00:00:00 PDT,+0,+0,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-05-21 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 11:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-21 12:00:00 PDT,+1.5,+280,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-05-21 13:00:00 PDT,+3.6,+240,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-05-21 14:00:00 PDT,+4.6,+290,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-05-21 15:00:00 PDT,+5.7,+280,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-05-21 16:00:00 PDT,+6.7,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-05-21 17:00:00 PDT,+6.7,+290,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-05-21 18:00:00 PDT,+5.7,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-05-21 19:00:00 PDT,+5.7,+280,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-05-21 20:00:00 PDT,+4.1,+300,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-05-21 21:00:00 PDT,+4.1,+300,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-05-21 22:00:00 PDT,+0,+0,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-05-21 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 01:00:00 PDT,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 02:00:00 PDT,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-05-22 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 09:00:00 PDT,+1.5,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 10:00:00 PDT,+2.1,+90,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-05-22 11:00:00 PDT,+0,+0,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-05-22 12:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-22 13:00:00 PDT,+3.1,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-05-22 14:00:00 PDT,+5.1,+260,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-22 15:00:00 PDT,+5.1,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-22 16:00:00 PDT,+6.2,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-22 17:00:00 PDT,+5.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-22 18:00:00 PDT,+6.7,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-22 19:00:00 PDT,+6.2,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-05-22 20:00:00 PDT,+4.6,+280,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-05-22 21:00:00 PDT,+3.1,+310,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-05-22 22:00:00 PDT,+2.1,+350,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-05-22 23:00:00 PDT,+1.5,+290,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-05-23 00:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-23 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 06:00:00 PDT,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 07:00:00 PDT,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-05-23 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 09:00:00 PDT,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-23 10:00:00 PDT,+4.6,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-23 11:00:00 PDT,+4.1,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-05-23 12:00:00 PDT,+4.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-23 13:00:00 PDT,+4.6,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-23 14:00:00 PDT,+5.1,+280,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-05-23 15:00:00 PDT,+6.2,+260,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-05-23 16:00:00 PDT,+6.7,+290,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-23 17:00:00 PDT,+6.2,+270,+5,+270,+0.0608639,+3756.66,+61722.3,+56.2004,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,+730.707,OK,OK
+2020-05-23 18:00:00 PDT,+5.7,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-05-23 19:00:00 PDT,+7.2,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-23 20:00:00 PDT,+4.6,+270,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-05-23 21:00:00 PDT,+2.1,+240,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-23 22:00:00 PDT,+2.6,+260,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-05-23 23:00:00 PDT,+2.1,+260,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-05-24 00:00:00 PDT,+2.6,+290,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-05-24 01:00:00 PDT,+2.6,+320,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-24 02:00:00 PDT,+2.1,+250,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-24 03:00:00 PDT,+2.1,+280,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-05-24 04:00:00 PDT,+1.5,+320,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-05-24 05:00:00 PDT,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-05-24 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-24 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-24 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-24 09:00:00 PDT,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-24 10:00:00 PDT,+1.5,+290,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-05-24 11:00:00 PDT,+2.1,+310,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-24 12:00:00 PDT,+3.1,+320,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-05-24 13:00:00 PDT,+4.1,+280,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-05-24 14:00:00 PDT,+4.6,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-24 15:00:00 PDT,+5.7,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-05-24 16:00:00 PDT,+5.7,+280,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-05-24 17:00:00 PDT,+5.7,+270,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-05-24 18:00:00 PDT,+6.7,+260,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-05-24 19:00:00 PDT,+6.2,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-05-24 20:00:00 PDT,+4.1,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-24 21:00:00 PDT,+4.6,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-05-24 22:00:00 PDT,+2.1,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-24 23:00:00 PDT,+1.5,+290,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-05-25 00:00:00 PDT,+1.5,+320,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-25 01:00:00 PDT,+1.5,+280,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-25 02:00:00 PDT,+1.5,+280,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-25 03:00:00 PDT,+2.1,+270,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-05-25 04:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-05-25 05:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-25 06:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-05-25 07:00:00 PDT,+1.5,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-25 08:00:00 PDT,+0,+0,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-05-25 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-25 10:00:00 PDT,+2.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-25 11:00:00 PDT,+2.6,+240,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-05-25 12:00:00 PDT,+1.5,+240,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-05-25 13:00:00 PDT,+2.6,+250,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-05-25 14:00:00 PDT,+3.6,+250,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-05-25 15:00:00 PDT,+6.2,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-05-25 16:00:00 PDT,+7.2,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-05-25 17:00:00 PDT,+6.7,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-05-25 18:00:00 PDT,+7.7,+270,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-05-25 19:00:00 PDT,+6.7,+270,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-05-25 20:00:00 PDT,+4.1,+280,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-25 21:00:00 PDT,+4.6,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-25 22:00:00 PDT,+1.5,+240,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-05-25 23:00:00 PDT,+1.5,+260,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-05-26 00:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-05-26 01:00:00 PDT,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-26 02:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-05-26 03:00:00 PDT,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-26 04:00:00 PDT,+1.5,+280,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-05-26 05:00:00 PDT,+2.1,+300,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-26 06:00:00 PDT,+2.1,+350,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-26 07:00:00 PDT,+1.5,+340,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-26 08:00:00 PDT,+1.5,+340,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-05-26 09:00:00 PDT,+2.6,+270,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-05-26 10:00:00 PDT,+2.1,+320,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-26 11:00:00 PDT,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-05-26 12:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-26 13:00:00 PDT,+4.6,+260,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-05-26 14:00:00 PDT,+4.6,+290,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-26 15:00:00 PDT,+6.7,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-26 16:00:00 PDT,+7.2,+250,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-05-26 17:00:00 PDT,+6.7,+270,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-05-26 18:00:00 PDT,+7.2,+280,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-26 19:00:00 PDT,+5.7,+270,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-05-26 20:00:00 PDT,+4.1,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-05-26 21:00:00 PDT,+2.6,+290,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-05-26 22:00:00 PDT,+2.1,+250,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-26 23:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-05-27 00:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-27 01:00:00 PDT,+1.5,+300,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-27 02:00:00 PDT,+1.5,+300,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-27 03:00:00 PDT,+2.6,+310,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-27 04:00:00 PDT,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-05-27 05:00:00 PDT,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-27 06:00:00 PDT,+2.1,+210,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-05-27 07:00:00 PDT,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-05-27 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-27 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-27 10:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-27 11:00:00 PDT,+2.1,+280,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-05-27 12:00:00 PDT,+3.6,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-05-27 13:00:00 PDT,+5.1,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-27 14:00:00 PDT,+4.6,+260,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-05-27 15:00:00 PDT,+6.2,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-05-27 16:00:00 PDT,+5.7,+250,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-05-27 17:00:00 PDT,+6.7,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-05-27 18:00:00 PDT,+6.7,+280,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-05-27 19:00:00 PDT,+5.7,+260,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-05-27 20:00:00 PDT,+5.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-27 21:00:00 PDT,+3.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-27 22:00:00 PDT,+3.1,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-05-27 23:00:00 PDT,+2.1,+290,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-05-28 00:00:00 PDT,+2.6,+270,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-28 01:00:00 PDT,+3.6,+280,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-28 02:00:00 PDT,+3.6,+260,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-28 03:00:00 PDT,+0,+0,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-28 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-28 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-28 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-28 07:00:00 PDT,+2.1,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-28 08:00:00 PDT,+2.1,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-05-28 09:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-05-28 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-28 11:00:00 PDT,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-28 12:00:00 PDT,+3.6,+270,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-05-28 13:00:00 PDT,+4.6,+250,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-28 14:00:00 PDT,+4.1,+280,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-05-28 15:00:00 PDT,+4.6,+270,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-28 16:00:00 PDT,+5.7,+250,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-28 17:00:00 PDT,+6.7,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-05-28 18:00:00 PDT,+7.2,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-28 19:00:00 PDT,+6.2,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-05-28 20:00:00 PDT,+5.1,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-28 21:00:00 PDT,+4.1,+280,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-28 22:00:00 PDT,+2.1,+300,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-28 23:00:00 PDT,+3.6,+300,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-29 00:00:00 PDT,+3.1,+290,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-05-29 01:00:00 PDT,+3.6,+280,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-05-29 02:00:00 PDT,+2.6,+270,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-29 03:00:00 PDT,+1.5,+280,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-05-29 04:00:00 PDT,+1.5,+300,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-29 05:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-29 06:00:00 PDT,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-29 07:00:00 PDT,+2.1,+250,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-29 08:00:00 PDT,+1.5,+280,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-05-29 09:00:00 PDT,+2.6,+280,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-29 10:00:00 PDT,+2.1,+260,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-05-29 11:00:00 PDT,+5.1,+260,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-05-29 12:00:00 PDT,+3.1,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-29 13:00:00 PDT,+5.1,+240,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-05-29 14:00:00 PDT,+3.6,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-05-29 15:00:00 PDT,+3.6,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-29 16:00:00 PDT,+3.6,+300,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-29 17:00:00 PDT,+5.7,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-05-29 18:00:00 PDT,+7.2,+240,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-29 19:00:00 PDT,+4.6,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-29 20:00:00 PDT,+4.1,+260,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-05-29 21:00:00 PDT,+5.1,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-05-29 22:00:00 PDT,+4.1,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-05-29 23:00:00 PDT,+5.1,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-30 00:00:00 PDT,+2.6,+280,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-05-30 01:00:00 PDT,+2.1,+290,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-05-30 02:00:00 PDT,+2.6,+290,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-30 03:00:00 PDT,+3.1,+280,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-30 04:00:00 PDT,+1.5,+280,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-05-30 05:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-05-30 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-30 07:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-30 08:00:00 PDT,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-05-30 09:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-30 10:00:00 PDT,+1.5,+180,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-05-30 11:00:00 PDT,+2.1,+340,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-05-30 12:00:00 PDT,+2.1,+30,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-05-30 13:00:00 PDT,+2.6,+350,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-05-30 14:00:00 PDT,+2.6,+310,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-05-30 15:00:00 PDT,+4.1,+270,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-05-30 16:00:00 PDT,+6.2,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-05-30 17:00:00 PDT,+7.7,+240,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-05-30 18:00:00 PDT,+7.2,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-05-30 19:00:00 PDT,+7.2,+260,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-30 20:00:00 PDT,+6.7,+270,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-30 21:00:00 PDT,+5.7,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-05-30 22:00:00 PDT,+3.6,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-05-30 23:00:00 PDT,+2.6,+340,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-05-31 00:00:00 PDT,+1.5,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-05-31 01:00:00 PDT,+1.5,+190,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-05-31 02:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-05-31 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-31 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-31 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-31 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-31 07:00:00 PDT,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-05-31 08:00:00 PDT,+2.6,+290,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-05-31 09:00:00 PDT,+2.6,+310,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-31 10:00:00 PDT,+1.5,+360,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-05-31 11:00:00 PDT,+1.5,+350,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-31 12:00:00 PDT,+2.6,+340,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-05-31 13:00:00 PDT,+3.1,+330,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-05-31 14:00:00 PDT,+4.6,+270,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-05-31 15:00:00 PDT,+5.7,+270,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-05-31 16:00:00 PDT,+7.2,+240,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-05-31 17:00:00 PDT,+7,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-05-31 18:00:00 PDT,+6.7,+260,+5,+270,+0.0588709,+3633.65,+61722.3,+237.583,OK,OK,+8,+180,+0.0249135,+1537.72,+61722.3,+1610.61,OK,OK
+2020-05-31 19:00:00 PDT,+6.2,+270,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-05-31 20:00:00 PDT,+5.7,+280,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-05-31 21:00:00 PDT,+4.1,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-05-31 22:00:00 PDT,+4.1,+280,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-05-31 23:00:00 PDT,+3.8,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-06-01 00:00:00 PDT,+3.5,+290,+5,+270,+0.0413302,+2550.99,+61722.3,+196.625,OK,OK,+8,+180,+0.0450186,+2778.65,+61722.3,+325.983,OK,OK
+2020-06-01 01:00:00 PDT,+3.2,+0,+5,+270,+0.0403017,+2487.51,+61722.3,+195.892,OK,OK,+8,+180,+0.0469119,+2895.51,+61722.3,+296.762,OK,OK
+2020-06-01 02:00:00 PDT,+3,+0,+5,+270,+0.0361666,+2232.28,+61722.3,-401.898,OK,OK,+8,+180,+0.0551972,+3406.89,+61722.3,-429.729,OK,OK
+2020-06-01 03:00:00 PDT,+2.7,+270,+5,+270,+0.036148,+2231.14,+61722.3,-380.266,OK,OK,+8,+180,+0.0554908,+3425.02,+61722.3,-402.871,OK,OK
+2020-06-01 04:00:00 PDT,+2.4,+250,+5,+270,+0.0383249,+2365.5,+61722.3,+300.175,OK,OK,+8,+180,+0.0514462,+3175.38,+61722.3,+374.545,OK,OK
+2020-06-01 05:00:00 PDT,+2.1,+280,+5,+270,+0.0375998,+2320.75,+61722.3,+366.574,OK,OK,+8,+180,+0.0534969,+3301.95,+61722.3,+422.869,OK,OK
+2020-06-01 06:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-06-01 07:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-01 08:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-06-01 09:00:00 PDT,+2.6,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-01 10:00:00 PDT,+3.1,+90,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-06-01 11:00:00 PDT,+0,+0,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-06-01 12:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-01 13:00:00 PDT,+4.6,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-06-01 14:00:00 PDT,+5.1,+270,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-06-01 15:00:00 PDT,+6.2,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-06-01 16:00:00 PDT,+6.7,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-06-01 17:00:00 PDT,+8.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-01 18:00:00 PDT,+8.7,+270,+5,+270,+0.0810847,+5004.73,+61722.3,-116.539,OK,OK,+8,+180,+0.0178553,+1102.07,+61722.3,+1132.66,OK,OK
+2020-06-01 19:00:00 PDT,+8.2,+250,+5,+270,+0.0810847,+5004.73,+61722.3,-116.539,OK,OK,+8,+180,+0.0178553,+1102.07,+61722.3,+1132.66,OK,OK
+2020-06-01 20:00:00 PDT,+8.2,+260,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-06-01 21:00:00 PDT,+6.7,+270,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-06-01 22:00:00 PDT,+4.1,+280,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-06-01 23:00:00 PDT,+2.6,+300,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-06-02 00:00:00 PDT,+2.1,+330,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-02 01:00:00 PDT,+2.6,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-06-02 02:00:00 PDT,+2.1,+290,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-02 03:00:00 PDT,+2.1,+290,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-06-02 04:00:00 PDT,+1.5,+290,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-06-02 05:00:00 PDT,+1.5,+260,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-06-02 06:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-06-02 07:00:00 PDT,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-02 08:00:00 PDT,+1.5,+200,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-06-02 09:00:00 PDT,+2.1,+210,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-06-02 10:00:00 PDT,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-06-02 11:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-02 12:00:00 PDT,+1.5,+330,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-06-02 13:00:00 PDT,+2.1,+310,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-06-02 14:00:00 PDT,+2.6,+300,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-06-02 15:00:00 PDT,+5.1,+280,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-02 16:00:00 PDT,+7.2,+240,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-06-02 17:00:00 PDT,+6.7,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-06-02 18:00:00 PDT,+7.7,+250,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-06-02 19:00:00 PDT,+7.2,+260,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-06-02 20:00:00 PDT,+6.7,+270,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-06-02 21:00:00 PDT,+5.7,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-06-02 22:00:00 PDT,+5.7,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-02 23:00:00 PDT,+3.6,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-03 00:00:00 PDT,+2.1,+320,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-03 01:00:00 PDT,+1.5,+310,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-06-03 02:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-03 03:00:00 PDT,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-03 04:00:00 PDT,+2.6,+280,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-06-03 05:00:00 PDT,+2.1,+280,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-06-03 06:00:00 PDT,+4.1,+270,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-06-03 07:00:00 PDT,+3.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-06-03 08:00:00 PDT,+3.1,+260,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-03 09:00:00 PDT,+3.1,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-03 10:00:00 PDT,+2.6,+290,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-03 11:00:00 PDT,+3.1,+260,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-03 12:00:00 PDT,+3.1,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-03 13:00:00 PDT,+3.1,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-03 14:00:00 PDT,+5.7,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-03 15:00:00 PDT,+1.5,+290,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-06-03 16:00:00 PDT,+3.6,+280,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-06-03 17:00:00 PDT,+5.7,+250,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-03 18:00:00 PDT,+6.2,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-03 19:00:00 PDT,+5.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-03 20:00:00 PDT,+5.1,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-03 21:00:00 PDT,+3.1,+280,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-06-03 22:00:00 PDT,+2.6,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-06-03 23:00:00 PDT,+2.6,+280,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-04 00:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-04 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 06:00:00 PDT,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 07:00:00 PDT,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-06-04 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 11:00:00 PDT,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-04 12:00:00 PDT,+3.1,+230,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-06-04 13:00:00 PDT,+3.6,+290,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-06-04 14:00:00 PDT,+7.2,+270,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-06-04 15:00:00 PDT,+7.2,+260,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-06-04 16:00:00 PDT,+8.2,+270,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-06-04 17:00:00 PDT,+7.7,+270,+5,+270,+0.0775948,+4789.33,+61722.3,-79.064,OK,OK,+8,+180,+0.0159255,+982.955,+61722.3,+1128.13,OK,OK
+2020-06-04 18:00:00 PDT,+8.2,+270,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-06-04 19:00:00 PDT,+5.7,+260,+5,+270,+0.0775948,+4789.33,+61722.3,-79.064,OK,OK,+8,+180,+0.0159255,+982.955,+61722.3,+1128.13,OK,OK
+2020-06-04 20:00:00 PDT,+3.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-04 21:00:00 PDT,+4.1,+300,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-06-04 22:00:00 PDT,+2.1,+230,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-06-04 23:00:00 PDT,+0,+0,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-06-05 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 11:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-05 12:00:00 PDT,+2.1,+330,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-06-05 13:00:00 PDT,+5.1,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-06-05 14:00:00 PDT,+5.1,+290,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-06-05 15:00:00 PDT,+6.2,+300,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-06-05 16:00:00 PDT,+7.7,+250,+5,+270,+0.0550171,+3395.78,+61722.3,+60.7793,OK,OK,+8,+180,+0.0259636,+1602.53,+61722.3,+382.888,OK,OK
+2020-06-05 17:00:00 PDT,+7.2,+270,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-06-05 18:00:00 PDT,+5.7,+250,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-06-05 19:00:00 PDT,+6.2,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-05 20:00:00 PDT,+4.1,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-06-05 21:00:00 PDT,+4.1,+310,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-05 22:00:00 PDT,+4.1,+290,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-05 23:00:00 PDT,+1.5,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-06 00:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-06-06 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 03:00:00 PDT,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 04:00:00 PDT,+2.1,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-06-06 05:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-06-06 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 10:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-06 11:00:00 PDT,+1.5,+240,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-06-06 12:00:00 PDT,+3.6,+250,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-06-06 13:00:00 PDT,+7.7,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-06-06 14:00:00 PDT,+9.3,+250,+5,+270,+0.0724013,+4468.77,+61722.3,-29.1645,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+1089.11,OK,OK
+2020-06-06 15:00:00 PDT,+8.2,+290,+5,+270,+0.0835419,+5156.4,+61722.3,-139.015,OK,OK,+8,+180,+0.019773,+1220.43,+61722.3,+1189.87,OK,OK
+2020-06-06 16:00:00 PDT,+10.3,+270,+5,+270,+0.078446,+4841.86,+61722.3,-71.5433,OK,OK,+8,+180,+0.0150457,+928.654,+61722.3,+584.455,OK,OK
+2020-06-06 17:00:00 PDT,+7.2,+280,+5,+270,+0.109546,+6761.44,+61722.3,-375.55,OK,OK,+8,+180,+0.0412106,+2543.61,+61722.3,-253.443,OK,OK
+2020-06-06 18:00:00 PDT,+6.2,+250,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-06-06 19:00:00 PDT,+5.7,+280,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-06 20:00:00 PDT,+3.6,+270,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-06-06 21:00:00 PDT,+2.6,+250,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-06 22:00:00 PDT,+3.1,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-06 23:00:00 PDT,+2.6,+290,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-07 00:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-07 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-07 02:00:00 PDT,+1.5,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-07 03:00:00 PDT,+1.5,+130,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-06-07 04:00:00 PDT,+0,+0,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-06-07 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-07 06:00:00 PDT,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-07 07:00:00 PDT,+3.1,+290,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-06-07 08:00:00 PDT,+1.5,+280,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-07 09:00:00 PDT,+2.1,+290,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-06-07 10:00:00 PDT,+4.6,+290,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-06-07 11:00:00 PDT,+4.6,+300,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-06-07 12:00:00 PDT,+5.7,+280,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-06-07 13:00:00 PDT,+4.1,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-06-07 14:00:00 PDT,+6.2,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-06-07 15:00:00 PDT,+5.1,+290,+5,+270,+0.0561468,+3465.51,+61722.3,+94.4559,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,+636.726,OK,OK
+2020-06-07 16:00:00 PDT,+6.7,+280,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-06-07 17:00:00 PDT,+6.7,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-06-07 18:00:00 PDT,+7.2,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-06-07 19:00:00 PDT,+6.2,+250,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-06-07 20:00:00 PDT,+4.6,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-07 21:00:00 PDT,+4.1,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-06-07 22:00:00 PDT,+2.1,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-06-07 23:00:00 PDT,+2.1,+280,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-08 00:00:00 PDT,+2.6,+290,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-08 01:00:00 PDT,+2.1,+300,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-08 02:00:00 PDT,+1.5,+250,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-06-08 03:00:00 PDT,+1.5,+200,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-06-08 04:00:00 PDT,+2.6,+250,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-06-08 05:00:00 PDT,+2.6,+230,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-08 06:00:00 PDT,+1.5,+270,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-08 07:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-06-08 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-08 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-08 10:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-08 11:00:00 PDT,+2.6,+310,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-06-08 12:00:00 PDT,+4.6,+280,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-06-08 13:00:00 PDT,+4.1,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-06-08 14:00:00 PDT,+5.1,+280,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-06-08 15:00:00 PDT,+6.7,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-06-08 16:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-08 17:00:00 PDT,+7.7,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-08 18:00:00 PDT,+8.2,+260,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-06-08 19:00:00 PDT,+8.7,+260,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-06-08 20:00:00 PDT,+6.2,+250,+5,+270,+0.0810847,+5004.73,+61722.3,-116.539,OK,OK,+8,+180,+0.0178553,+1102.07,+61722.3,+1132.66,OK,OK
+2020-06-08 21:00:00 PDT,+5.1,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-08 22:00:00 PDT,+5.7,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-06-08 23:00:00 PDT,+4.6,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-09 00:00:00 PDT,+3.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-06-09 01:00:00 PDT,+3.1,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-06-09 02:00:00 PDT,+3.6,+270,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-06-09 03:00:00 PDT,+3.6,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-09 04:00:00 PDT,+2.6,+330,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-09 05:00:00 PDT,+2.1,+320,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-06-09 06:00:00 PDT,+1.5,+350,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-06-09 07:00:00 PDT,+2.6,+250,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-06-09 08:00:00 PDT,+1.5,+290,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-09 09:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-06-09 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-09 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-09 12:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-09 13:00:00 PDT,+1.5,+290,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-09 14:00:00 PDT,+1.5,+270,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-09 15:00:00 PDT,+4.1,+250,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-09 16:00:00 PDT,+4.6,+250,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-06-09 17:00:00 PDT,+6.2,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-06-09 18:00:00 PDT,+7.2,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-09 19:00:00 PDT,+6.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-06-09 20:00:00 PDT,+5.1,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-09 21:00:00 PDT,+5.7,+250,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-06-09 22:00:00 PDT,+3.1,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-09 23:00:00 PDT,+2.1,+240,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-06-10 00:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-10 01:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-10 02:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-06-10 03:00:00 PDT,+1.5,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-10 04:00:00 PDT,+2.6,+230,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-06-10 05:00:00 PDT,+2.1,+240,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-06-10 06:00:00 PDT,+2.1,+240,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-10 07:00:00 PDT,+2.1,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-10 08:00:00 PDT,+2.1,+250,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-10 09:00:00 PDT,+2.1,+230,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-10 10:00:00 PDT,+2.9,+250,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-10 11:00:00 PDT,+3.8,+270,+5,+270,+0.0384431,+2372.79,+61722.3,+415.914,OK,OK,+8,+180,+0.0516107,+3185.53,+61722.3,+516.922,OK,OK
+2020-06-10 12:00:00 PDT,+4.6,+290,+5,+270,+0.0413976,+2555.15,+61722.3,+336.274,OK,OK,+8,+180,+0.0454608,+2805.94,+61722.3,+547.237,OK,OK
+2020-06-10 13:00:00 PDT,+5.1,+280,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-06-10 14:00:00 PDT,+5.7,+280,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-06-10 15:00:00 PDT,+7.7,+260,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-06-10 16:00:00 PDT,+7.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-06-10 17:00:00 PDT,+8.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-06-10 18:00:00 PDT,+8.2,+250,+5,+270,+0.0810847,+5004.73,+61722.3,-116.539,OK,OK,+8,+180,+0.0178553,+1102.07,+61722.3,+1132.66,OK,OK
+2020-06-10 19:00:00 PDT,+7.2,+260,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-06-10 20:00:00 PDT,+4.6,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-06-10 21:00:00 PDT,+4.6,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-06-10 22:00:00 PDT,+3.1,+290,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-06-10 23:00:00 PDT,+2.1,+270,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-11 00:00:00 PDT,+2.1,+270,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-11 01:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-11 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 07:00:00 PDT,+3.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 08:00:00 PDT,+0,+0,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-06-11 09:00:00 PDT,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 10:00:00 PDT,+1.5,+310,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-06-11 11:00:00 PDT,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-06-11 12:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-11 13:00:00 PDT,+2.1,+350,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-06-11 14:00:00 PDT,+1.5,+330,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-06-11 15:00:00 PDT,+3.1,+310,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-06-11 16:00:00 PDT,+4.1,+270,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-06-11 17:00:00 PDT,+6.7,+250,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-06-11 18:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-11 19:00:00 PDT,+6.2,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-11 20:00:00 PDT,+5.1,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-11 21:00:00 PDT,+4.1,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-06-11 22:00:00 PDT,+3.1,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-11 23:00:00 PDT,+2.1,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-12 00:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-06-12 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 11:00:00 PDT,+3.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-12 12:00:00 PDT,+3.6,+260,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-06-12 13:00:00 PDT,+6.2,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-06-12 14:00:00 PDT,+3.6,+280,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-06-12 15:00:00 PDT,+5.7,+260,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-12 16:00:00 PDT,+5.7,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-12 17:00:00 PDT,+6.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-12 18:00:00 PDT,+8.2,+240,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-12 19:00:00 PDT,+8.2,+240,+5,+270,+0.0651421,+4020.72,+61722.3,+185.74,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,+2121.37,OK,OK
+2020-06-12 20:00:00 PDT,+5.7,+270,+5,+270,+0.0651421,+4020.72,+61722.3,+185.74,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,+2121.37,OK,OK
+2020-06-12 21:00:00 PDT,+4.1,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-06-12 22:00:00 PDT,+4.6,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-12 23:00:00 PDT,+3.6,+300,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-06-13 00:00:00 PDT,+2.6,+280,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-06-13 01:00:00 PDT,+1.5,+280,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-06-13 02:00:00 PDT,+1.5,+340,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-06-13 03:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-06-13 04:00:00 PDT,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-13 05:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-06-13 06:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-13 07:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-06-13 08:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-13 09:00:00 PDT,+2.1,+350,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-06-13 10:00:00 PDT,+2.1,+340,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-06-13 11:00:00 PDT,+1.5,+300,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-06-13 12:00:00 PDT,+3.1,+250,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-06-13 13:00:00 PDT,+3.6,+260,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-06-13 14:00:00 PDT,+5.7,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-06-13 15:00:00 PDT,+6,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-13 16:00:00 PDT,+6.2,+240,+5,+270,+0.0512208,+3161.47,+61722.3,+365.943,OK,OK,+8,+180,+0.0327405,+2020.82,+61722.3,+1254,OK,OK
+2020-06-13 17:00:00 PDT,+5.9,+250,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-06-13 18:00:00 PDT,+5.6,+260,+5,+270,+0.0505585,+3120.58,+61722.3,+376.586,OK,OK,+8,+180,+0.0335083,+2068.21,+61722.3,+1222.74,OK,OK
+2020-06-13 19:00:00 PDT,+5.2,+260,+5,+270,+0.0501668,+3096.41,+61722.3,+318.599,OK,OK,+8,+180,+0.0334358,+2063.74,+61722.3,+1040.63,OK,OK
+2020-06-13 20:00:00 PDT,+4.9,+270,+5,+270,+0.0476224,+2939.36,+61722.3,+353.577,OK,OK,+8,+180,+0.0366166,+2260.06,+61722.3,+936.174,OK,OK
+2020-06-13 21:00:00 PDT,+4.6,+280,+5,+270,+0.0465609,+2873.84,+61722.3,+301.383,OK,OK,+8,+180,+0.0376191,+2321.94,+61722.3,+749.905,OK,OK
+2020-06-13 22:00:00 PDT,+2.6,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-06-13 23:00:00 PDT,+2.6,+320,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-06-14 00:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-06-14 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 02:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 03:00:00 PDT,+0.8,+320,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-06-14 04:00:00 PDT,+0,+0,+5,+270,+0.0361856,+2233.46,+61722.3,-13.1341,OK,OK,+8,+180,+0.0571556,+3527.77,+61722.3,-13.2643,OK,OK
+2020-06-14 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 11:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-14 12:00:00 PDT,+2.1,+320,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-06-14 13:00:00 PDT,+3.1,+290,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-06-14 14:00:00 PDT,+5.7,+270,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-14 15:00:00 PDT,+6.2,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-06-14 16:00:00 PDT,+6.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-14 17:00:00 PDT,+6.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-14 18:00:00 PDT,+5.7,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-14 19:00:00 PDT,+5.7,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-14 20:00:00 PDT,+4.6,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-14 21:00:00 PDT,+2.1,+240,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-06-14 22:00:00 PDT,+2.1,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-14 23:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-15 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 12:00:00 PDT,+1.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-15 13:00:00 PDT,+2.1,+310,+5,+270,+0.0361885,+2233.64,+61722.3,-87.1829,OK,OK,+8,+180,+0.0570004,+3518.19,+61722.3,-88.4395,OK,OK
+2020-06-15 14:00:00 PDT,+5.1,+290,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-06-15 15:00:00 PDT,+7.2,+260,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-06-15 16:00:00 PDT,+6.7,+270,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-06-15 17:00:00 PDT,+7.7,+280,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-06-15 18:00:00 PDT,+7.7,+280,+5,+270,+0.0724013,+4468.77,+61722.3,-29.1645,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+1089.11,OK,OK
+2020-06-15 19:00:00 PDT,+6.7,+280,+5,+270,+0.0724013,+4468.77,+61722.3,-29.1645,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+1089.11,OK,OK
+2020-06-15 20:00:00 PDT,+4.6,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-06-15 21:00:00 PDT,+4.1,+280,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-06-15 22:00:00 PDT,+2.6,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-06-15 23:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-16 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 13:00:00 PDT,+2.6,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-16 14:00:00 PDT,+4.1,+320,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-06-16 15:00:00 PDT,+5.7,+290,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-06-16 16:00:00 PDT,+5.7,+270,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-06-16 17:00:00 PDT,+6.2,+270,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-06-16 18:00:00 PDT,+6.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-16 19:00:00 PDT,+5.1,+240,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-16 20:00:00 PDT,+4.1,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-06-16 21:00:00 PDT,+4.1,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-16 22:00:00 PDT,+4.1,+300,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-16 23:00:00 PDT,+3.1,+290,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-17 00:00:00 PDT,+2.6,+310,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-17 01:00:00 PDT,+1.5,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-06-17 02:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-06-17 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 06:00:00 PDT,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 07:00:00 PDT,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-06-17 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 12:00:00 PDT,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-17 13:00:00 PDT,+3.6,+280,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-06-17 14:00:00 PDT,+3.6,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-17 15:00:00 PDT,+6.7,+250,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-17 16:00:00 PDT,+6.7,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-17 17:00:00 PDT,+6.7,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-17 18:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-17 19:00:00 PDT,+5.7,+280,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-17 20:00:00 PDT,+4.6,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-06-17 21:00:00 PDT,+4.1,+280,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-06-17 22:00:00 PDT,+1.5,+320,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-06-17 23:00:00 PDT,+1.5,+240,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-06-18 00:00:00 PDT,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-06-18 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 10:00:00 PDT,+2,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 11:00:00 PDT,+0,+0,+5,+270,+0.0370892,+2289.23,+61722.3,+317.904,OK,OK,+8,+180,+0.0547538,+3379.53,+61722.3,+349.793,OK,OK
+2020-06-18 12:00:00 PDT,+3.4,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-18 13:00:00 PDT,+4.8,+250,+5,+270,+0.0400673,+2473.04,+61722.3,+331.286,OK,OK,+8,+180,+0.0478615,+2954.12,+61722.3,+481.951,OK,OK
+2020-06-18 14:00:00 PDT,+5.9,+230,+5,+270,+0.0444606,+2744.21,+61722.3,+458.445,OK,OK,+8,+180,+0.0413798,+2554.05,+61722.3,+922.17,OK,OK
+2020-06-18 15:00:00 PDT,+5.8,+260,+5,+270,+0.0458859,+2832.18,+61722.3,+608.255,OK,OK,+8,+180,+0.040717,+2513.14,+61722.3,+1275.82,OK,OK
+2020-06-18 16:00:00 PDT,+6.3,+250,+5,+270,+0.051561,+3182.46,+61722.3,+298.259,OK,OK,+8,+180,+0.0317921,+1962.28,+61722.3,+1097.03,OK,OK
+2020-06-18 17:00:00 PDT,+6.7,+250,+5,+270,+0.0533193,+3290.99,+61722.3,+331.358,OK,OK,+8,+180,+0.030404,+1876.6,+61722.3,+1352.57,OK,OK
+2020-06-18 18:00:00 PDT,+6.7,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-18 19:00:00 PDT,+5.1,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-18 20:00:00 PDT,+4.1,+290,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-06-18 21:00:00 PDT,+4.1,+310,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-06-18 22:00:00 PDT,+3.6,+300,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-06-18 23:00:00 PDT,+4.1,+250,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-06-19 00:00:00 PDT,+2.6,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-06-19 01:00:00 PDT,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-06-19 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 11:00:00 PDT,+0.9,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-19 12:00:00 PDT,+3,+170,+5,+270,+0.0360194,+2223.2,+61722.3,+72.4793,OK,OK,+8,+180,+0.0575662,+3553.11,+61722.3,+72.1531,OK,OK
+2020-06-19 13:00:00 PDT,+2.7,+210,+5,+270,+0.0357227,+2204.88,+61722.3,+335.355,OK,OK,+8,+180,+0.0583914,+3604.05,+61722.3,+324.715,OK,OK
+2020-06-19 14:00:00 PDT,+3.4,+200,+5,+270,+0.0369848,+2282.79,+61722.3,+475.418,OK,OK,+8,+180,+0.056021,+3457.74,+61722.3,+502.871,OK,OK
+2020-06-19 15:00:00 PDT,+4,+210,+5,+270,+0.0370312,+2285.65,+61722.3,+575.114,OK,OK,+8,+180,+0.0568365,+3508.07,+61722.3,+594.773,OK,OK
+2020-06-19 16:00:00 PDT,+5.7,+210,+5,+270,+0.0381485,+2354.61,+61722.3,+665.288,OK,OK,+8,+180,+0.054127,+3340.84,+61722.3,+759.005,OK,OK
+2020-06-19 17:00:00 PDT,+7.9,+210,+5,+270,+0.0405869,+2505.12,+61722.3,+846.575,OK,OK,+8,+180,+0.0506043,+3123.41,+61722.3,+1122.08,OK,OK
+2020-06-19 18:00:00 PDT,+7.6,+270,+5,+270,+0.0456517,+2817.72,+61722.3,+943.65,OK,OK,+8,+180,+0.0444787,+2745.32,+61722.3,+1669.81,OK,OK
+2020-06-19 19:00:00 PDT,+7.7,+260,+5,+270,+0.0701676,+4330.9,+61722.3,+4.75623,OK,OK,+8,+180,+0.0160827,+992.659,+61722.3,+1404.93,OK,OK
+2020-06-19 20:00:00 PDT,+6.1,+270,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-06-19 21:00:00 PDT,+4.6,+270,+5,+270,+0.0550596,+3398.4,+61722.3,+195.09,OK,OK,+8,+180,+0.0274074,+1691.65,+61722.3,+1039.02,OK,OK
+2020-06-19 22:00:00 PDT,+3.6,+270,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-06-19 23:00:00 PDT,+2.5,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-20 00:00:00 PDT,+1.5,+270,+5,+270,+0.0379459,+2342.11,+61722.3,+286.441,OK,OK,+8,+180,+0.0523233,+3229.51,+61722.3,+345.087,OK,OK
+2020-06-20 01:00:00 PDT,+3.1,+280,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-06-20 02:00:00 PDT,+1.5,+330,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-06-20 03:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-06-20 04:00:00 PDT,+2.1,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-20 05:00:00 PDT,+2.1,+230,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-06-20 06:00:00 PDT,+1.5,+230,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-06-20 07:00:00 PDT,+1.5,+240,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-06-20 08:00:00 PDT,+1.5,+250,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-06-20 09:00:00 PDT,+0,+0,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-06-20 10:00:00 PDT,+2.6,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-20 11:00:00 PDT,+2.6,+250,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-20 12:00:00 PDT,+2.6,+320,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-20 13:00:00 PDT,+3.6,+290,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-20 14:00:00 PDT,+8.2,+280,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-06-20 15:00:00 PDT,+5.7,+260,+5,+270,+0.0788506,+4866.84,+61722.3,-87.4254,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+804.068,OK,OK
+2020-06-20 16:00:00 PDT,+9.3,+240,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-20 17:00:00 PDT,+9.3,+240,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-06-20 18:00:00 PDT,+8.2,+250,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-06-20 19:00:00 PDT,+8.2,+270,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-06-20 20:00:00 PDT,+6.7,+260,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-06-20 21:00:00 PDT,+6.2,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-20 22:00:00 PDT,+4.1,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-20 23:00:00 PDT,+3.6,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-21 00:00:00 PDT,+3.5,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-06-21 01:00:00 PDT,+3.4,+250,+5,+270,+0.0401652,+2479.08,+61722.3,+396.726,OK,OK,+8,+180,+0.0479431,+2959.16,+61722.3,+575.966,OK,OK
+2020-06-21 02:00:00 PDT,+3.2,+250,+5,+270,+0.0395546,+2441.4,+61722.3,+450.472,OK,OK,+8,+180,+0.0493796,+3047.82,+61722.3,+614.901,OK,OK
+2020-06-21 03:00:00 PDT,+3.1,+240,+5,+270,+0.0390749,+2411.79,+61722.3,+438.539,OK,OK,+8,+180,+0.050313,+3105.43,+61722.3,+575.166,OK,OK
+2020-06-21 04:00:00 PDT,+2.1,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-06-21 05:00:00 PDT,+2.3,+250,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-06-21 06:00:00 PDT,+2.4,+250,+5,+270,+0.0374595,+2312.09,+61722.3,+355.115,OK,OK,+8,+180,+0.0538322,+3322.65,+61722.3,+404.441,OK,OK
+2020-06-21 07:00:00 PDT,+2.6,+260,+5,+270,+0.0375998,+2320.75,+61722.3,+366.574,OK,OK,+8,+180,+0.0534969,+3301.95,+61722.3,+422.869,OK,OK
+2020-06-21 08:00:00 PDT,+3.1,+250,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-06-21 09:00:00 PDT,+3.6,+240,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-06-21 10:00:00 PDT,+2.6,+270,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-06-21 11:00:00 PDT,+3.1,+300,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-06-21 12:00:00 PDT,+3.1,+320,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-06-21 13:00:00 PDT,+4.1,+310,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-06-21 14:00:00 PDT,+4.9,+300,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-06-21 15:00:00 PDT,+5.7,+290,+5,+270,+0.0459192,+2834.24,+61722.3,+107.351,OK,OK,+8,+180,+0.0374078,+2308.89,+61722.3,+270.457,OK,OK
+2020-06-21 16:00:00 PDT,+5.1,+270,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-06-21 17:00:00 PDT,+6.2,+270,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-06-21 18:00:00 PDT,+7.2,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-21 19:00:00 PDT,+7.2,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-06-21 20:00:00 PDT,+5.1,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-06-21 21:00:00 PDT,+4.6,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-06-21 22:00:00 PDT,+3.6,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-06-21 23:00:00 PDT,+2.6,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-22 00:00:00 PDT,+0,+0,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-06-22 01:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 02:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-06-22 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 08:00:00 PDT,+1.5,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 09:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-06-22 10:00:00 PDT,+3.1,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-22 11:00:00 PDT,+2.6,+220,+5,+270,+0.0368704,+2275.72,+61722.3,+526.343,OK,OK,+8,+180,+0.0569678,+3516.18,+61722.3,+540.816,OK,OK
+2020-06-22 12:00:00 PDT,+2.1,+250,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-06-22 13:00:00 PDT,+4.6,+270,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-06-22 14:00:00 PDT,+5.1,+290,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-06-22 15:00:00 PDT,+5.7,+240,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-06-22 16:00:00 PDT,+7.7,+250,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-06-22 17:00:00 PDT,+8.7,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-06-22 18:00:00 PDT,+7.7,+250,+5,+270,+0.0761704,+4701.41,+61722.3,-35.798,OK,OK,+8,+180,+0.0171451,+1058.23,+61722.3,+1751.85,OK,OK
+2020-06-22 19:00:00 PDT,+5.7,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-06-22 20:00:00 PDT,+7.7,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-22 21:00:00 PDT,+3.1,+260,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-06-22 22:00:00 PDT,+2.1,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-06-22 23:00:00 PDT,+4.1,+320,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-06-23 00:00:00 PDT,+1.5,+310,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-06-23 01:00:00 PDT,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-23 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 10:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 11:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-06-23 12:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-23 13:00:00 PDT,+3.6,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-06-23 14:00:00 PDT,+3.6,+270,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-23 15:00:00 PDT,+5.7,+260,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-23 16:00:00 PDT,+6.7,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-06-23 17:00:00 PDT,+5.7,+270,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-23 18:00:00 PDT,+6.7,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-06-23 19:00:00 PDT,+6.7,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-06-23 20:00:00 PDT,+4.1,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-06-23 21:00:00 PDT,+5.1,+290,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-06-23 22:00:00 PDT,+4.1,+300,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-06-23 23:00:00 PDT,+2.6,+300,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-06-24 00:00:00 PDT,+2.1,+310,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-24 01:00:00 PDT,+2.6,+300,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-06-24 02:00:00 PDT,+2.6,+290,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-24 03:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-24 04:00:00 PDT,+3.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 05:00:00 PDT,+2.6,+280,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-06-24 06:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-06-24 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 10:00:00 PDT,+2.1,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 11:00:00 PDT,+0,+0,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-06-24 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 13:00:00 PDT,+3.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-24 14:00:00 PDT,+4.6,+270,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-06-24 15:00:00 PDT,+7.2,+250,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-06-24 16:00:00 PDT,+8.2,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-06-24 17:00:00 PDT,+6.2,+270,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-06-24 18:00:00 PDT,+6.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-24 19:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-06-24 20:00:00 PDT,+5.7,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-24 21:00:00 PDT,+4.6,+290,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-06-24 22:00:00 PDT,+3.6,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-06-24 23:00:00 PDT,+2.6,+300,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-06-25 00:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-25 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 12:00:00 PDT,+3.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-25 13:00:00 PDT,+4.6,+290,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-06-25 14:00:00 PDT,+6.2,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-06-25 15:00:00 PDT,+7.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-25 16:00:00 PDT,+5.7,+270,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-06-25 17:00:00 PDT,+6.2,+250,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-06-25 18:00:00 PDT,+6.2,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-25 19:00:00 PDT,+5.7,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-25 20:00:00 PDT,+5.1,+250,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-06-25 21:00:00 PDT,+3.6,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-06-25 22:00:00 PDT,+2.6,+300,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-06-25 23:00:00 PDT,+2.1,+260,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-26 00:00:00 PDT,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-06-26 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 09:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-26 10:00:00 PDT,+1.5,+280,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-26 11:00:00 PDT,+1.5,+240,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-26 12:00:00 PDT,+2.1,+250,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-06-26 13:00:00 PDT,+4.1,+310,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-06-26 14:00:00 PDT,+5.7,+280,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-06-26 15:00:00 PDT,+6.2,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-06-26 16:00:00 PDT,+6.7,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-06-26 17:00:00 PDT,+7.7,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-06-26 18:00:00 PDT,+6.2,+250,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-06-26 19:00:00 PDT,+7.2,+270,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-26 20:00:00 PDT,+6.7,+280,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-06-26 21:00:00 PDT,+4.1,+300,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-06-26 22:00:00 PDT,+3.1,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-06-26 23:00:00 PDT,+1.5,+270,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-27 00:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-06-27 01:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-27 02:00:00 PDT,+3.1,+290,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-06-27 03:00:00 PDT,+1.5,+260,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-27 04:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-06-27 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-27 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-27 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-27 08:00:00 PDT,+3.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-27 09:00:00 PDT,+2.6,+290,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-06-27 10:00:00 PDT,+4.1,+270,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-27 11:00:00 PDT,+3.1,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-06-27 12:00:00 PDT,+2.6,+300,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-06-27 13:00:00 PDT,+5.1,+300,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-27 14:00:00 PDT,+6.2,+250,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-06-27 15:00:00 PDT,+6.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-27 16:00:00 PDT,+6.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-27 17:00:00 PDT,+6.7,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-27 18:00:00 PDT,+6.7,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-27 19:00:00 PDT,+5.9,+270,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-27 20:00:00 PDT,+5.1,+290,+5,+270,+0.0534236,+3297.42,+61722.3,+216.618,OK,OK,+8,+180,+0.0291834,+1801.26,+61722.3,+983.825,OK,OK
+2020-06-27 21:00:00 PDT,+2.6,+250,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-06-27 22:00:00 PDT,+2.6,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-27 23:00:00 PDT,+2.1,+310,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-28 00:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-06-28 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 04:00:00 PDT,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 05:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-06-28 06:00:00 PDT,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 07:00:00 PDT,+3.1,+240,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-28 08:00:00 PDT,+2.6,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-06-28 09:00:00 PDT,+1.5,+240,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-06-28 10:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-06-28 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 12:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-28 13:00:00 PDT,+3.6,+270,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-06-28 14:00:00 PDT,+3.6,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-28 15:00:00 PDT,+5.1,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-06-28 16:00:00 PDT,+6.2,+250,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-06-28 17:00:00 PDT,+6.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-06-28 18:00:00 PDT,+6.2,+240,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-28 19:00:00 PDT,+6.7,+260,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-06-28 20:00:00 PDT,+6.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-28 21:00:00 PDT,+4.1,+290,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-28 22:00:00 PDT,+2.6,+300,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-06-28 23:00:00 PDT,+2.6,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-29 00:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-06-29 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 09:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 10:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-06-29 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 13:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-29 14:00:00 PDT,+3.1,+300,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-06-29 15:00:00 PDT,+5.1,+270,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-06-29 16:00:00 PDT,+6.2,+270,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-06-29 17:00:00 PDT,+7.2,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-29 18:00:00 PDT,+7.2,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-06-29 19:00:00 PDT,+6.7,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-06-29 20:00:00 PDT,+4.1,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-06-29 21:00:00 PDT,+3.6,+290,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-06-29 22:00:00 PDT,+3.6,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-06-29 23:00:00 PDT,+3.1,+270,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-06-30 00:00:00 PDT,+0,+0,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-06-30 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 07:00:00 PDT,+2.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 08:00:00 PDT,+2.1,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-06-30 09:00:00 PDT,+2.1,+260,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-30 10:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-06-30 11:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-06-30 12:00:00 PDT,+2.6,+290,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-06-30 13:00:00 PDT,+5.7,+310,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-06-30 14:00:00 PDT,+5.7,+270,+5,+270,+0.0495216,+3056.59,+61722.3,+30.1077,OK,OK,+8,+180,+0.032041,+1977.64,+61722.3,+110.091,OK,OK
+2020-06-30 15:00:00 PDT,+4.6,+280,+5,+270,+0.0495216,+3056.59,+61722.3,+30.1077,OK,OK,+8,+180,+0.032041,+1977.64,+61722.3,+110.091,OK,OK
+2020-06-30 16:00:00 PDT,+5.7,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-06-30 17:00:00 PDT,+5.1,+240,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-06-30 18:00:00 PDT,+6.2,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-06-30 19:00:00 PDT,+5.1,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-06-30 20:00:00 PDT,+3.6,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-06-30 21:00:00 PDT,+4.1,+300,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-06-30 22:00:00 PDT,+3.6,+300,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-06-30 23:00:00 PDT,+3.1,+270,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-07-01 00:00:00 PDT,+2.6,+190,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-07-01 01:00:00 PDT,+2.1,+0,+5,+270,+0.0363678,+2244.7,+61722.3,+412.843,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+406.408,OK,OK
+2020-07-01 02:00:00 PDT,+1.5,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-07-01 03:00:00 PDT,+1,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-01 04:00:00 PDT,+0.5,+0,+5,+270,+0.0360858,+2227.3,+61722.3,-134.067,OK,OK,+8,+180,+0.0573849,+3541.93,+61722.3,-134.29,OK,OK
+2020-07-01 05:00:00 PDT,+0,+0,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-07-01 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-01 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-01 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-01 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-01 10:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-01 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-01 12:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-01 13:00:00 PDT,+3.1,+290,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-07-01 14:00:00 PDT,+6.2,+250,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-07-01 15:00:00 PDT,+7.7,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-01 16:00:00 PDT,+5.1,+290,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-01 17:00:00 PDT,+6.7,+280,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-07-01 18:00:00 PDT,+8.2,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-07-01 19:00:00 PDT,+5.1,+260,+5,+270,+0.0775948,+4789.33,+61722.3,-79.064,OK,OK,+8,+180,+0.0159255,+982.955,+61722.3,+1128.13,OK,OK
+2020-07-01 20:00:00 PDT,+4.6,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-07-01 21:00:00 PDT,+4.1,+290,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-01 22:00:00 PDT,+2.1,+250,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-01 23:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-02 00:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 01:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-07-02 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 09:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-02 10:00:00 PDT,+2.6,+270,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-07-02 11:00:00 PDT,+2.6,+290,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-07-02 12:00:00 PDT,+3.6,+300,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-07-02 13:00:00 PDT,+5.1,+300,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-07-02 14:00:00 PDT,+5.1,+280,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-07-02 15:00:00 PDT,+5.1,+280,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-07-02 16:00:00 PDT,+5.7,+280,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-07-02 17:00:00 PDT,+6.7,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-02 18:00:00 PDT,+5.1,+250,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-07-02 19:00:00 PDT,+7.2,+270,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-07-02 20:00:00 PDT,+7.2,+280,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-07-02 21:00:00 PDT,+5.1,+280,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-07-02 22:00:00 PDT,+4.6,+290,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-02 23:00:00 PDT,+0,+0,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-07-03 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-03 01:00:00 PDT,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-03 02:00:00 PDT,+2.1,+260,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-03 03:00:00 PDT,+2.6,+310,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-03 04:00:00 PDT,+3.1,+310,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-07-03 05:00:00 PDT,+1.5,+260,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-07-03 06:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-07-03 07:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-03 08:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-07-03 09:00:00 PDT,+2.1,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-03 10:00:00 PDT,+2.1,+320,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-07-03 11:00:00 PDT,+3.6,+250,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-07-03 12:00:00 PDT,+5.7,+270,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-07-03 13:00:00 PDT,+6.2,+280,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-07-03 14:00:00 PDT,+7.2,+280,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-03 15:00:00 PDT,+6.7,+280,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-07-03 16:00:00 PDT,+7.2,+250,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-07-03 17:00:00 PDT,+7.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-03 18:00:00 PDT,+7.7,+250,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-03 19:00:00 PDT,+7.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-03 20:00:00 PDT,+4.6,+280,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-03 21:00:00 PDT,+4.6,+250,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-07-03 22:00:00 PDT,+2.1,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-07-03 23:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-07-04 00:00:00 PDT,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-04 01:00:00 PDT,+2.1,+300,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-07-04 02:00:00 PDT,+1.5,+240,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-07-04 03:00:00 PDT,+2.1,+290,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-07-04 04:00:00 PDT,+3.1,+300,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-04 05:00:00 PDT,+2.1,+250,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-07-04 06:00:00 PDT,+1.5,+170,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-04 07:00:00 PDT,+1.5,+80,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-07-04 08:00:00 PDT,+1.5,+140,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-07-04 09:00:00 PDT,+1.5,+110,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-07-04 10:00:00 PDT,+3.1,+70,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-07-04 11:00:00 PDT,+2.1,+40,+5,+270,+0.0349948,+2159.96,+61722.3,-389.711,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,-509.887,OK,OK
+2020-07-04 12:00:00 PDT,+0,+0,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-07-04 13:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-04 14:00:00 PDT,+3.1,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-07-04 15:00:00 PDT,+3.1,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-07-04 16:00:00 PDT,+5.1,+260,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-07-04 17:00:00 PDT,+7.2,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-07-04 18:00:00 PDT,+7.2,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-07-04 19:00:00 PDT,+5.4,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-07-04 20:00:00 PDT,+3.6,+250,+5,+270,+0.0475206,+2933.08,+61722.3,+422.31,OK,OK,+8,+180,+0.0372317,+2298.03,+61722.3,+1077.2,OK,OK
+2020-07-04 21:00:00 PDT,+4.6,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-07-04 22:00:00 PDT,+3.6,+290,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-04 23:00:00 PDT,+3.1,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-07-05 00:00:00 PDT,+2.1,+250,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-07-05 01:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-05 02:00:00 PDT,+1.5,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-05 03:00:00 PDT,+0,+0,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-07-05 04:00:00 PDT,+1.5,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-05 05:00:00 PDT,+2.1,+240,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-07-05 06:00:00 PDT,+2.1,+270,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-05 07:00:00 PDT,+2.1,+240,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-05 08:00:00 PDT,+1.5,+300,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-05 09:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-05 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-05 11:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-05 12:00:00 PDT,+3.1,+260,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-05 13:00:00 PDT,+4.1,+290,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-07-05 14:00:00 PDT,+3.1,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-05 15:00:00 PDT,+5.7,+260,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-05 16:00:00 PDT,+8.2,+240,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-07-05 17:00:00 PDT,+8.2,+250,+5,+270,+0.0651421,+4020.72,+61722.3,+185.74,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,+2121.37,OK,OK
+2020-07-05 18:00:00 PDT,+6.7,+270,+5,+270,+0.0651421,+4020.72,+61722.3,+185.74,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,+2121.37,OK,OK
+2020-07-05 19:00:00 PDT,+8.2,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-07-05 20:00:00 PDT,+4.6,+260,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-07-05 21:00:00 PDT,+4.1,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-05 22:00:00 PDT,+3.1,+280,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-07-05 23:00:00 PDT,+2.6,+280,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-06 00:00:00 PDT,+1.5,+240,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-07-06 01:00:00 PDT,+2.1,+260,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-07-06 02:00:00 PDT,+2.6,+230,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-07-06 03:00:00 PDT,+2.1,+220,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-07-06 04:00:00 PDT,+2.1,+210,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-07-06 05:00:00 PDT,+1.5,+210,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-07-06 06:00:00 PDT,+2.1,+200,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-07-06 07:00:00 PDT,+0,+0,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-07-06 08:00:00 PDT,+1.5,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-06 09:00:00 PDT,+0,+0,+5,+270,+0.0362678,+2238.53,+61722.3,+258.333,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+259,OK,OK
+2020-07-06 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-06 11:00:00 PDT,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-06 12:00:00 PDT,+2.6,+230,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-06 13:00:00 PDT,+3.6,+290,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-07-06 14:00:00 PDT,+4.1,+250,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-07-06 15:00:00 PDT,+5.7,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-07-06 16:00:00 PDT,+8.7,+240,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-07-06 17:00:00 PDT,+8.2,+260,+5,+270,+0.0699163,+4315.39,+61722.3,+102.655,OK,OK,+8,+180,+0.0189048,+1166.84,+61722.3,+2221.49,OK,OK
+2020-07-06 18:00:00 PDT,+6.2,+250,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-07-06 19:00:00 PDT,+5.7,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-06 20:00:00 PDT,+4.6,+260,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-07-06 21:00:00 PDT,+3.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-06 22:00:00 PDT,+2.1,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-07-06 23:00:00 PDT,+2.1,+250,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-07 00:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-07 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 03:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 04:00:00 PDT,+3.1,+290,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-07-07 05:00:00 PDT,+2.1,+310,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-07-07 06:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-07 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 10:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-07 11:00:00 PDT,+2.1,+350,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-07-07 12:00:00 PDT,+2.6,+340,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-07-07 13:00:00 PDT,+3.6,+330,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-07-07 14:00:00 PDT,+2.6,+240,+5,+270,+0.0385064,+2376.7,+61722.3,-135.833,OK,OK,+8,+180,+0.049473,+3053.59,+61722.3,-182.356,OK,OK
+2020-07-07 15:00:00 PDT,+7.7,+250,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-07-07 16:00:00 PDT,+7.2,+240,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-07 17:00:00 PDT,+6.2,+250,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-07-07 18:00:00 PDT,+7.7,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-07 19:00:00 PDT,+5.1,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-07-07 20:00:00 PDT,+5.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-07-07 21:00:00 PDT,+4.6,+290,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-07-07 22:00:00 PDT,+0,+0,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-07-07 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 09:00:00 PDT,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 10:00:00 PDT,+1.5,+10,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-07-08 11:00:00 PDT,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-07-08 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 13:00:00 PDT,+5.7,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-08 14:00:00 PDT,+6.2,+270,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-07-08 15:00:00 PDT,+5.7,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-07-08 16:00:00 PDT,+4.1,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-07-08 17:00:00 PDT,+5.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-07-08 18:00:00 PDT,+7.2,+280,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-07-08 19:00:00 PDT,+4.6,+250,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-07-08 20:00:00 PDT,+3.6,+260,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-07-08 21:00:00 PDT,+3.6,+320,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-07-08 22:00:00 PDT,+3.1,+310,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-07-08 23:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-07-09 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 09:00:00 PDT,+0.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 10:00:00 PDT,+0.5,+360,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-07-09 11:00:00 PDT,+0,+0,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-07-09 12:00:00 PDT,+4.1,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-09 13:00:00 PDT,+5.7,+300,+5,+270,+0.0382613,+2361.58,+61722.3,+678.242,OK,OK,+8,+180,+0.0539519,+3330.04,+61722.3,+779.351,OK,OK
+2020-07-09 14:00:00 PDT,+6.2,+280,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-07-09 15:00:00 PDT,+7.7,+250,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-09 16:00:00 PDT,+7.7,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-09 17:00:00 PDT,+7.2,+260,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-09 18:00:00 PDT,+5.7,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-07-09 19:00:00 PDT,+6.2,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-07-09 20:00:00 PDT,+4.1,+290,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-09 21:00:00 PDT,+2.6,+310,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-09 22:00:00 PDT,+2.1,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-07-09 23:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-10 00:00:00 PDT,+1.5,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 01:00:00 PDT,+0,+0,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-07-10 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 03:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 04:00:00 PDT,+1.5,+360,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-10 05:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-10 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 10:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-10 11:00:00 PDT,+3.6,+200,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-10 12:00:00 PDT,+4.6,+250,+5,+270,+0.037147,+2292.79,+61722.3,+607.306,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+630.993,OK,OK
+2020-07-10 13:00:00 PDT,+7.2,+300,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-07-10 14:00:00 PDT,+7.7,+270,+5,+270,+0.0645848,+3986.32,+61722.3,+11.8144,OK,OK,+8,+180,+0.0170066,+1049.68,+61722.3,+497.463,OK,OK
+2020-07-10 15:00:00 PDT,+8.2,+290,+5,+270,+0.0713514,+4403.97,+61722.3,-9.05669,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+1390.98,OK,OK
+2020-07-10 16:00:00 PDT,+7.7,+280,+5,+270,+0.078446,+4841.86,+61722.3,-71.5433,OK,OK,+8,+180,+0.0150457,+928.654,+61722.3,+584.455,OK,OK
+2020-07-10 17:00:00 PDT,+6.7,+260,+5,+270,+0.0724013,+4468.77,+61722.3,-29.1645,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+1089.11,OK,OK
+2020-07-10 18:00:00 PDT,+7.2,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-10 19:00:00 PDT,+6.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-10 20:00:00 PDT,+4.6,+280,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-10 21:00:00 PDT,+3.6,+310,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-07-10 22:00:00 PDT,+0,+0,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-07-10 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 00:00:00 PDT,+2.6,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 01:00:00 PDT,+2.6,+140,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-07-11 02:00:00 PDT,+0,+0,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-07-11 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 11:00:00 PDT,+2.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-11 12:00:00 PDT,+2.6,+270,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-07-11 13:00:00 PDT,+2.1,+270,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-07-11 14:00:00 PDT,+4.1,+280,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-07-11 15:00:00 PDT,+6.7,+240,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-07-11 16:00:00 PDT,+5.1,+260,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-07-11 17:00:00 PDT,+4.6,+280,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-07-11 18:00:00 PDT,+5.1,+290,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-07-11 19:00:00 PDT,+4.1,+270,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-07-11 20:00:00 PDT,+4.1,+250,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-07-11 21:00:00 PDT,+2.1,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-07-11 22:00:00 PDT,+3.1,+320,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-07-11 23:00:00 PDT,+1.5,+300,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-07-12 00:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-12 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 11:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 12:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-12 13:00:00 PDT,+4.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-12 14:00:00 PDT,+6.2,+260,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-07-12 15:00:00 PDT,+6.7,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-12 16:00:00 PDT,+8.2,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-12 17:00:00 PDT,+7.7,+260,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-07-12 18:00:00 PDT,+6.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-12 19:00:00 PDT,+5.7,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-12 20:00:00 PDT,+5.1,+290,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-07-12 21:00:00 PDT,+4.1,+290,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-07-12 22:00:00 PDT,+2.6,+300,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-12 23:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-07-13 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 01:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 02:00:00 PDT,+2.1,+300,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-07-13 03:00:00 PDT,+0,+0,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-07-13 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 08:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 09:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-13 10:00:00 PDT,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-13 11:00:00 PDT,+2.6,+280,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-07-13 12:00:00 PDT,+4.1,+310,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-07-13 13:00:00 PDT,+4.1,+260,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-07-13 14:00:00 PDT,+4.6,+290,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-07-13 15:00:00 PDT,+7.2,+250,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-07-13 16:00:00 PDT,+6.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-13 17:00:00 PDT,+6.7,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-13 18:00:00 PDT,+7.7,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-13 19:00:00 PDT,+6.2,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-13 20:00:00 PDT,+5.1,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-13 21:00:00 PDT,+3.6,+330,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-07-13 22:00:00 PDT,+3.1,+280,+5,+270,+0.0385064,+2376.7,+61722.3,-135.833,OK,OK,+8,+180,+0.049473,+3053.59,+61722.3,-182.356,OK,OK
+2020-07-13 23:00:00 PDT,+3.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-14 00:00:00 PDT,+0,+0,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-14 01:00:00 PDT,+3.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 02:00:00 PDT,+4.1,+300,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-07-14 03:00:00 PDT,+0,+0,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-07-14 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 10:00:00 PDT,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-14 11:00:00 PDT,+3.6,+310,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-07-14 12:00:00 PDT,+3.1,+310,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-07-14 13:00:00 PDT,+2.6,+310,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-07-14 14:00:00 PDT,+3.6,+300,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-07-14 15:00:00 PDT,+6.7,+270,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-07-14 16:00:00 PDT,+7.2,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-07-14 17:00:00 PDT,+7.7,+250,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-07-14 18:00:00 PDT,+5.7,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-14 19:00:00 PDT,+5.7,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-07-14 20:00:00 PDT,+5.7,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-07-14 21:00:00 PDT,+3.9,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-07-14 22:00:00 PDT,+2.1,+280,+5,+270,+0.0418563,+2583.46,+61722.3,+267.092,OK,OK,+8,+180,+0.0443899,+2739.84,+61722.3,+457.415,OK,OK
+2020-07-14 23:00:00 PDT,+1.9,+300,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-07-15 00:00:00 PDT,+1.7,+310,+5,+270,+0.0369568,+2281.06,+61722.3,+85.6389,OK,OK,+8,+180,+0.0545386,+3366.24,+61722.3,+94.651,OK,OK
+2020-07-15 01:00:00 PDT,+1.5,+330,+5,+270,+0.0366843,+2264.24,+61722.3,+26.4203,OK,OK,+8,+180,+0.0553002,+3413.25,+61722.3,+28.4042,OK,OK
+2020-07-15 02:00:00 PDT,+1.5,+170,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-07-15 03:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-07-15 04:00:00 PDT,+0.7,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-15 05:00:00 PDT,+1.4,+330,+5,+270,+0.0361057,+2228.52,+61722.3,-76.2314,OK,OK,+8,+180,+0.057435,+3545.02,+61722.3,-76.2784,OK,OK
+2020-07-15 06:00:00 PDT,+2.1,+320,+5,+270,+0.0363386,+2242.9,+61722.3,-66.7535,OK,OK,+8,+180,+0.0563862,+3480.28,+61722.3,-69.0978,OK,OK
+2020-07-15 07:00:00 PDT,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-07-15 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-15 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-15 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-15 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-15 12:00:00 PDT,+2.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-15 13:00:00 PDT,+5.1,+240,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-07-15 14:00:00 PDT,+6.2,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-07-15 15:00:00 PDT,+7.2,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-15 16:00:00 PDT,+7.2,+280,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-07-15 17:00:00 PDT,+7.7,+290,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-07-15 18:00:00 PDT,+7.2,+280,+5,+270,+0.0720212,+4445.31,+61722.3,-27.7303,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+806.133,OK,OK
+2020-07-15 19:00:00 PDT,+6.7,+250,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-07-15 20:00:00 PDT,+5.7,+280,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-15 21:00:00 PDT,+4.1,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-15 22:00:00 PDT,+3.6,+290,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-15 23:00:00 PDT,+1.5,+300,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-07-16 00:00:00 PDT,+1.5,+240,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-16 01:00:00 PDT,+2.1,+310,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-16 02:00:00 PDT,+2.1,+280,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-16 03:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-16 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 11:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-16 12:00:00 PDT,+6.2,+260,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-07-16 13:00:00 PDT,+5.7,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-16 14:00:00 PDT,+5.7,+290,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-07-16 15:00:00 PDT,+7.2,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-07-16 16:00:00 PDT,+8.2,+250,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-07-16 17:00:00 PDT,+8.2,+280,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-07-16 18:00:00 PDT,+8.2,+280,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-07-16 19:00:00 PDT,+6.2,+260,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-07-16 20:00:00 PDT,+4.6,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-16 21:00:00 PDT,+3.1,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-16 22:00:00 PDT,+2.6,+290,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-16 23:00:00 PDT,+3.1,+300,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-17 00:00:00 PDT,+1.5,+270,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-07-17 01:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-07-17 02:00:00 PDT,+2.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 03:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-07-17 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 08:00:00 PDT,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 09:00:00 PDT,+2.6,+300,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-07-17 10:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-07-17 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 12:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-17 13:00:00 PDT,+4.6,+290,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-07-17 14:00:00 PDT,+5.7,+300,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-07-17 15:00:00 PDT,+5.1,+280,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-07-17 16:00:00 PDT,+6.7,+260,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-17 17:00:00 PDT,+6.7,+270,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-17 18:00:00 PDT,+9.3,+240,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-17 19:00:00 PDT,+7.7,+240,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-07-17 20:00:00 PDT,+5.7,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-07-17 21:00:00 PDT,+5.1,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-07-17 22:00:00 PDT,+2.6,+290,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-07-17 23:00:00 PDT,+3.6,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-18 00:00:00 PDT,+2.1,+270,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-07-18 01:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-07-18 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 03:00:00 PDT,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 04:00:00 PDT,+2.1,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-18 05:00:00 PDT,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-18 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 08:00:00 PDT,+2.6,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 09:00:00 PDT,+0,+0,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-07-18 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 11:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-18 12:00:00 PDT,+4.6,+270,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-07-18 13:00:00 PDT,+3.6,+310,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-07-18 14:00:00 PDT,+5.1,+270,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-07-18 15:00:00 PDT,+5.7,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-18 16:00:00 PDT,+6.2,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-07-18 17:00:00 PDT,+7.7,+250,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-18 18:00:00 PDT,+8.2,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-18 19:00:00 PDT,+6.7,+250,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-07-18 20:00:00 PDT,+5.1,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-18 21:00:00 PDT,+4.1,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-07-18 22:00:00 PDT,+4.1,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-07-18 23:00:00 PDT,+2.1,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-07-19 00:00:00 PDT,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-19 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 08:00:00 PDT,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 09:00:00 PDT,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-07-19 10:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 11:00:00 PDT,+2.6,+320,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-07-19 12:00:00 PDT,+0,+0,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-07-19 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 14:00:00 PDT,+4.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-19 15:00:00 PDT,+6.2,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-19 16:00:00 PDT,+5.1,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-19 17:00:00 PDT,+6.7,+270,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-19 18:00:00 PDT,+7.2,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-07-19 19:00:00 PDT,+5.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-19 20:00:00 PDT,+3.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-07-19 21:00:00 PDT,+3.1,+280,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-07-19 22:00:00 PDT,+2.6,+260,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-19 23:00:00 PDT,+1.5,+260,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-07-20 00:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-07-20 01:00:00 PDT,+4.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-20 02:00:00 PDT,+3.6,+250,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-20 03:00:00 PDT,+2.1,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-07-20 04:00:00 PDT,+2.1,+230,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-20 05:00:00 PDT,+2.1,+200,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-20 06:00:00 PDT,+2.1,+210,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-20 07:00:00 PDT,+2.6,+230,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-07-20 08:00:00 PDT,+3.1,+220,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-07-20 09:00:00 PDT,+2.6,+290,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-07-20 10:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-20 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-20 12:00:00 PDT,+2.6,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-20 13:00:00 PDT,+4.1,+240,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-07-20 14:00:00 PDT,+4.6,+300,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-07-20 15:00:00 PDT,+5.7,+280,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-07-20 16:00:00 PDT,+5.1,+270,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-20 17:00:00 PDT,+9.3,+240,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-20 18:00:00 PDT,+6.7,+250,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-07-20 19:00:00 PDT,+7.2,+270,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-20 20:00:00 PDT,+4.6,+260,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-07-20 21:00:00 PDT,+3.1,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-20 22:00:00 PDT,+3.1,+260,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-07-20 23:00:00 PDT,+0,+0,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-07-21 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 02:00:00 PDT,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 03:00:00 PDT,+2.6,+250,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-21 04:00:00 PDT,+2.4,+240,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-21 05:00:00 PDT,+2.1,+230,+5,+270,+0.0374399,+2310.88,+61722.3,+398.01,OK,OK,+8,+180,+0.054071,+3337.39,+61722.3,+449.778,OK,OK
+2020-07-21 06:00:00 PDT,+2.6,+220,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-07-21 07:00:00 PDT,+2.1,+210,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-07-21 08:00:00 PDT,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-07-21 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 13:00:00 PDT,+5.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-21 14:00:00 PDT,+6.2,+270,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-21 15:00:00 PDT,+4.1,+290,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-07-21 16:00:00 PDT,+5.1,+270,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-21 17:00:00 PDT,+7.7,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-21 18:00:00 PDT,+8.2,+250,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-21 19:00:00 PDT,+6.2,+250,+5,+270,+0.0705265,+4353.06,+61722.3,+48.6472,OK,OK,+8,+180,+0.0176107,+1086.97,+61722.3,+1943.61,OK,OK
+2020-07-21 20:00:00 PDT,+5.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-21 21:00:00 PDT,+3.6,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-07-21 22:00:00 PDT,+3.6,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-07-21 23:00:00 PDT,+2.6,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-07-22 00:00:00 PDT,+2.6,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-22 01:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-22 02:00:00 PDT,+2.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-22 03:00:00 PDT,+2.6,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-07-22 04:00:00 PDT,+3.1,+280,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-07-22 05:00:00 PDT,+2.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-22 06:00:00 PDT,+0,+0,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-07-22 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-22 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-22 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-22 10:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-22 11:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-07-22 12:00:00 PDT,+3.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-22 13:00:00 PDT,+5.1,+310,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-07-22 14:00:00 PDT,+4.1,+250,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-07-22 15:00:00 PDT,+3.1,+290,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-07-22 16:00:00 PDT,+5.1,+270,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-07-22 17:00:00 PDT,+5.1,+250,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-22 18:00:00 PDT,+6.7,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-22 19:00:00 PDT,+5.7,+280,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-22 20:00:00 PDT,+5.1,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-22 21:00:00 PDT,+4.6,+280,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-22 22:00:00 PDT,+3.6,+310,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-07-22 23:00:00 PDT,+3.1,+290,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-07-23 00:00:00 PDT,+0,+0,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-07-23 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 12:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-23 13:00:00 PDT,+4.1,+300,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-07-23 14:00:00 PDT,+5.7,+250,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-07-23 15:00:00 PDT,+6.2,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-07-23 16:00:00 PDT,+6.7,+280,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-23 17:00:00 PDT,+7.2,+260,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-07-23 18:00:00 PDT,+6.2,+250,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-07-23 19:00:00 PDT,+6.7,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-23 20:00:00 PDT,+6.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-23 21:00:00 PDT,+3.1,+280,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-07-23 22:00:00 PDT,+3.1,+310,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-23 23:00:00 PDT,+3.1,+310,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-24 00:00:00 PDT,+2.1,+310,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-07-24 01:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-24 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 12:00:00 PDT,+3.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-24 13:00:00 PDT,+4.6,+300,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-07-24 14:00:00 PDT,+6.7,+280,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-07-24 15:00:00 PDT,+6.2,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-07-24 16:00:00 PDT,+8.2,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-07-24 17:00:00 PDT,+9.3,+250,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-07-24 18:00:00 PDT,+9.3,+250,+5,+270,+0.0835419,+5156.4,+61722.3,-139.015,OK,OK,+8,+180,+0.019773,+1220.43,+61722.3,+1189.87,OK,OK
+2020-07-24 19:00:00 PDT,+7.6,+260,+5,+270,+0.0835419,+5156.4,+61722.3,-139.015,OK,OK,+8,+180,+0.019773,+1220.43,+61722.3,+1189.87,OK,OK
+2020-07-24 20:00:00 PDT,+5.8,+270,+5,+270,+0.0678464,+4187.63,+61722.3,+56.8557,OK,OK,+8,+180,+0.0177649,+1096.49,+61722.3,+1667.36,OK,OK
+2020-07-24 21:00:00 PDT,+4.1,+280,+5,+270,+0.0526389,+3248.99,+61722.3,+226.892,OK,OK,+8,+180,+0.0300654,+1855.7,+61722.3,+957.399,OK,OK
+2020-07-24 22:00:00 PDT,+2.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-07-24 23:00:00 PDT,+2.1,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-25 00:00:00 PDT,+1.5,+170,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-25 01:00:00 PDT,+0,+0,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-07-25 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 03:00:00 PDT,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 04:00:00 PDT,+0,+0,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-07-25 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 12:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-25 13:00:00 PDT,+2.6,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-07-25 14:00:00 PDT,+4.1,+290,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-07-25 15:00:00 PDT,+4.6,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-25 16:00:00 PDT,+7.2,+250,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-07-25 17:00:00 PDT,+7.2,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-25 18:00:00 PDT,+7.2,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-25 19:00:00 PDT,+7.2,+250,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-25 20:00:00 PDT,+5.1,+280,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-07-25 21:00:00 PDT,+5.1,+290,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-25 22:00:00 PDT,+2.6,+270,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-25 23:00:00 PDT,+2.6,+280,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-07-26 00:00:00 PDT,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-07-26 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 13:00:00 PDT,+3.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-26 14:00:00 PDT,+4.6,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-07-26 15:00:00 PDT,+6.7,+270,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-07-26 16:00:00 PDT,+6.7,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-07-26 17:00:00 PDT,+6.7,+290,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-07-26 18:00:00 PDT,+6.4,+280,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-07-26 19:00:00 PDT,+7.9,+280,+5,+270,+0.0582737,+3596.78,+61722.3,+113.32,OK,OK,+8,+180,+0.0236235,+1458.09,+61722.3,+919.498,OK,OK
+2020-07-26 20:00:00 PDT,+5.7,+280,+5,+270,+0.0749144,+4623.89,+61722.3,-52.3611,OK,OK,+8,+180,+0.0148093,+914.065,+61722.3,+1005.21,OK,OK
+2020-07-26 21:00:00 PDT,+4.1,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-26 22:00:00 PDT,+2.2,+270,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-26 23:00:00 PDT,+2.4,+270,+5,+270,+0.0374623,+2312.26,+61722.3,+262.24,OK,OK,+8,+180,+0.0535147,+3303.05,+61722.3,+301.698,OK,OK
+2020-07-27 00:00:00 PDT,+0,+0,+5,+270,+0.0377739,+2331.49,+61722.3,+278.837,OK,OK,+8,+180,+0.0527371,+3255.05,+61722.3,+330.524,OK,OK
+2020-07-27 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 06:00:00 PDT,+2.1,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 07:00:00 PDT,+2.1,+210,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-27 08:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-07-27 09:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 10:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-27 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 13:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-27 14:00:00 PDT,+3.1,+290,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-07-27 15:00:00 PDT,+5.7,+260,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-07-27 16:00:00 PDT,+6.2,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-07-27 17:00:00 PDT,+8.7,+250,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-27 18:00:00 PDT,+7.7,+250,+5,+270,+0.0761704,+4701.41,+61722.3,-35.798,OK,OK,+8,+180,+0.0171451,+1058.23,+61722.3,+1751.85,OK,OK
+2020-07-27 19:00:00 PDT,+10.3,+250,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-27 20:00:00 PDT,+7.7,+240,+5,+270,+0.0972487,+6002.41,+61722.3,-312.05,OK,OK,+8,+180,+0.0300729,+1856.16,+61722.3,+293.027,OK,OK
+2020-07-27 21:00:00 PDT,+4.1,+260,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-07-27 22:00:00 PDT,+2.6,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-07-27 23:00:00 PDT,+2.6,+250,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-07-28 00:00:00 PDT,+0,+0,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-07-28 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 03:00:00 PDT,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 04:00:00 PDT,+1.5,+260,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-07-28 05:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-07-28 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 10:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-28 12:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-28 13:00:00 PDT,+4.1,+290,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-28 14:00:00 PDT,+5.7,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-07-28 15:00:00 PDT,+5.1,+270,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-28 16:00:00 PDT,+6.7,+250,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-28 17:00:00 PDT,+7.7,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-28 18:00:00 PDT,+7.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-28 19:00:00 PDT,+8.2,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-07-28 20:00:00 PDT,+6.2,+260,+5,+270,+0.0747641,+4614.61,+61722.3,-36.7502,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+1553,OK,OK
+2020-07-28 21:00:00 PDT,+4.6,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-28 22:00:00 PDT,+2.3,+310,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-07-28 23:00:00 PDT,+0,+0,+5,+270,+0.0372917,+2301.73,+61722.3,+33.62,OK,OK,+8,+180,+0.0533763,+3294.51,+61722.3,+38.7483,OK,OK
+2020-07-29 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 01:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 02:00:00 PDT,+2.6,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-07-29 03:00:00 PDT,+2.1,+280,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-07-29 04:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-07-29 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 08:00:00 PDT,+0.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 09:00:00 PDT,+0.5,+360,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-07-29 10:00:00 PDT,+1.5,+360,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-07-29 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-29 12:00:00 PDT,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-29 13:00:00 PDT,+4.6,+300,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-07-29 14:00:00 PDT,+4.9,+300,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-07-29 15:00:00 PDT,+5.1,+290,+5,+270,+0.0459192,+2834.24,+61722.3,+107.351,OK,OK,+8,+180,+0.0374078,+2308.89,+61722.3,+270.457,OK,OK
+2020-07-29 16:00:00 PDT,+6.2,+260,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-07-29 17:00:00 PDT,+6.2,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-29 18:00:00 PDT,+6.7,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-07-29 19:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-29 20:00:00 PDT,+5.7,+280,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-29 21:00:00 PDT,+5.1,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-07-29 22:00:00 PDT,+1.5,+300,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-29 23:00:00 PDT,+2.1,+290,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-30 00:00:00 PDT,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-07-30 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 12:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-30 13:00:00 PDT,+5.7,+290,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-07-30 14:00:00 PDT,+5.1,+310,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-07-30 15:00:00 PDT,+5.1,+240,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-07-30 16:00:00 PDT,+6.7,+250,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-07-30 17:00:00 PDT,+7.7,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-30 18:00:00 PDT,+7.7,+260,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-30 19:00:00 PDT,+7.2,+270,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-07-30 20:00:00 PDT,+5.1,+280,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-07-30 21:00:00 PDT,+3.1,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-07-30 22:00:00 PDT,+0,+0,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-07-30 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 00:00:00 PDT,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 01:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-07-31 02:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 03:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-07-31 04:00:00 PDT,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 05:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-07-31 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 10:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-07-31 11:00:00 PDT,+1.5,+350,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-31 12:00:00 PDT,+1.5,+350,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-31 13:00:00 PDT,+2.1,+340,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-07-31 14:00:00 PDT,+3.6,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-07-31 15:00:00 PDT,+6.7,+250,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-07-31 16:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-07-31 17:00:00 PDT,+6.7,+290,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-07-31 18:00:00 PDT,+6.2,+280,+5,+270,+0.0608639,+3756.66,+61722.3,+56.2004,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,+730.707,OK,OK
+2020-07-31 19:00:00 PDT,+6.2,+280,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-31 20:00:00 PDT,+6.2,+250,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-31 21:00:00 PDT,+5.1,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-07-31 22:00:00 PDT,+4.1,+290,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-07-31 23:00:00 PDT,+3.7,+290,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-01 00:00:00 PDT,+3.4,+270,+5,+270,+0.0409699,+2528.76,+61722.3,+196.755,OK,OK,+8,+180,+0.0456661,+2818.61,+61722.3,+316.115,OK,OK
+2020-08-01 01:00:00 PDT,+3,+0,+5,+270,+0.0400673,+2473.04,+61722.3,+331.286,OK,OK,+8,+180,+0.0478615,+2954.12,+61722.3,+481.951,OK,OK
+2020-08-01 02:00:00 PDT,+2.6,+280,+5,+270,+0.036148,+2231.14,+61722.3,-380.266,OK,OK,+8,+180,+0.0554908,+3425.02,+61722.3,-402.871,OK,OK
+2020-08-01 03:00:00 PDT,+2.2,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-01 04:00:00 PDT,+1.9,+270,+5,+270,+0.0361033,+2228.37,+61722.3,-287.318,OK,OK,+8,+180,+0.0564757,+3485.81,+61722.3,-295.439,OK,OK
+2020-08-01 05:00:00 PDT,+1.5,+300,+5,+270,+0.0370699,+2288.04,+61722.3,+234.145,OK,OK,+8,+180,+0.054556,+3367.32,+61722.3,+259.118,OK,OK
+2020-08-01 06:00:00 PDT,+1.5,+260,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-08-01 07:00:00 PDT,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-08-01 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-01 09:00:00 PDT,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-01 10:00:00 PDT,+1.5,+240,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-01 11:00:00 PDT,+2.6,+220,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-08-01 12:00:00 PDT,+1.5,+260,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-08-01 13:00:00 PDT,+4.1,+300,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-01 14:00:00 PDT,+5.7,+270,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-08-01 15:00:00 PDT,+6.2,+270,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-01 16:00:00 PDT,+6.2,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-01 17:00:00 PDT,+6.2,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-01 18:00:00 PDT,+6.2,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-01 19:00:00 PDT,+5.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-01 20:00:00 PDT,+4.6,+280,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-08-01 21:00:00 PDT,+4.6,+290,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-08-01 22:00:00 PDT,+3.6,+280,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-08-01 23:00:00 PDT,+3.6,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-02 00:00:00 PDT,+2.6,+300,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-02 01:00:00 PDT,+1.5,+190,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-08-02 02:00:00 PDT,+4.1,+290,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-08-02 03:00:00 PDT,+2.1,+240,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-02 04:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-08-02 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-02 06:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-02 07:00:00 PDT,+1.5,+230,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-08-02 08:00:00 PDT,+2.1,+270,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-08-02 09:00:00 PDT,+2.6,+270,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-02 10:00:00 PDT,+1.5,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-02 11:00:00 PDT,+1.5,+270,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-02 12:00:00 PDT,+3.6,+270,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-02 13:00:00 PDT,+5.7,+280,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-08-02 14:00:00 PDT,+4.6,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-02 15:00:00 PDT,+5.7,+280,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-02 16:00:00 PDT,+6.2,+270,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-02 17:00:00 PDT,+6.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-02 18:00:00 PDT,+6.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-02 19:00:00 PDT,+5.7,+280,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-02 20:00:00 PDT,+6.7,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-02 21:00:00 PDT,+4.1,+270,+5,+270,+0.0608639,+3756.66,+61722.3,+56.2004,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,+730.707,OK,OK
+2020-08-02 22:00:00 PDT,+2.6,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-02 23:00:00 PDT,+2.1,+250,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-03 00:00:00 PDT,+2.1,+290,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-03 01:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-03 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 06:00:00 PDT,+2.1,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 07:00:00 PDT,+0,+0,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-08-03 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 10:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-03 11:00:00 PDT,+2.1,+330,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-08-03 12:00:00 PDT,+3.1,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-03 13:00:00 PDT,+5.1,+290,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-08-03 14:00:00 PDT,+3.6,+280,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-03 15:00:00 PDT,+6.2,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-03 16:00:00 PDT,+6.2,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-03 17:00:00 PDT,+6.7,+260,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-03 18:00:00 PDT,+7.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-03 19:00:00 PDT,+6.2,+280,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-08-03 20:00:00 PDT,+4.6,+290,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-03 21:00:00 PDT,+4.1,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-03 22:00:00 PDT,+1.5,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-03 23:00:00 PDT,+1.5,+230,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-04 00:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-04 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 07:00:00 PDT,+1.5,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 08:00:00 PDT,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-08-04 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 11:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-04 12:00:00 PDT,+4.1,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-08-04 13:00:00 PDT,+5.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-08-04 14:00:00 PDT,+4.6,+270,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-04 15:00:00 PDT,+5.7,+290,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-08-04 16:00:00 PDT,+5.7,+260,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-04 17:00:00 PDT,+5.7,+290,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-04 18:00:00 PDT,+6.7,+270,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-04 19:00:00 PDT,+5.7,+290,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-04 20:00:00 PDT,+5.1,+290,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-04 21:00:00 PDT,+5.1,+300,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-04 22:00:00 PDT,+0,+0,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-04 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 01:00:00 PDT,+2.1,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 02:00:00 PDT,+0,+0,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-08-05 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 11:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-05 12:00:00 PDT,+2.1,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-08-05 13:00:00 PDT,+6.2,+290,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-08-05 14:00:00 PDT,+5.1,+290,+5,+270,+0.0561468,+3465.51,+61722.3,+94.4559,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,+636.726,OK,OK
+2020-08-05 15:00:00 PDT,+6.7,+280,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-05 16:00:00 PDT,+7.2,+270,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-08-05 17:00:00 PDT,+6.7,+270,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-08-05 18:00:00 PDT,+6.2,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-05 19:00:00 PDT,+5.1,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-05 20:00:00 PDT,+4.1,+300,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-08-05 21:00:00 PDT,+3.1,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-08-05 22:00:00 PDT,+0,+0,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-08-05 23:00:00 PDT,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 00:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-06 01:00:00 PDT,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 02:00:00 PDT,+2.1,+240,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-06 03:00:00 PDT,+1.5,+140,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-08-06 04:00:00 PDT,+0,+0,+5,+270,+0.0357518,+2206.68,+61722.3,+24.3657,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+24.6782,OK,OK
+2020-08-06 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 10:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-06 11:00:00 PDT,+1.5,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-06 12:00:00 PDT,+4.1,+280,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-08-06 13:00:00 PDT,+4.1,+300,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-08-06 14:00:00 PDT,+6.2,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-08-06 15:00:00 PDT,+6.7,+280,+5,+270,+0.0561468,+3465.51,+61722.3,+94.4559,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,+636.726,OK,OK
+2020-08-06 16:00:00 PDT,+5.7,+250,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-08-06 17:00:00 PDT,+4.1,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-08-06 18:00:00 PDT,+5.1,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-06 19:00:00 PDT,+6.2,+280,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-08-06 20:00:00 PDT,+3.6,+230,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-06 21:00:00 PDT,+4.6,+290,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-08-06 22:00:00 PDT,+2.1,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-06 23:00:00 PDT,+3.6,+320,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-08-07 00:00:00 PDT,+2.1,+240,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-08-07 01:00:00 PDT,+1.5,+260,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-08-07 02:00:00 PDT,+3.1,+320,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-07 03:00:00 PDT,+0,+0,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-08-07 04:00:00 PDT,+2.1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 05:00:00 PDT,+0,+0,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-08-07 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 11:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-07 12:00:00 PDT,+4.6,+310,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-08-07 13:00:00 PDT,+4.1,+260,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-08-07 14:00:00 PDT,+4.6,+280,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-08-07 15:00:00 PDT,+7.2,+260,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-08-07 16:00:00 PDT,+6.7,+250,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-08-07 17:00:00 PDT,+6.2,+250,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-08-07 18:00:00 PDT,+5.7,+250,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-08-07 19:00:00 PDT,+6.2,+270,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-08-07 20:00:00 PDT,+4.6,+290,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-07 21:00:00 PDT,+4.1,+320,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-07 22:00:00 PDT,+3.1,+290,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-08-07 23:00:00 PDT,+1.5,+240,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-08-08 00:00:00 PDT,+2.1,+300,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-08-08 01:00:00 PDT,+1.5,+280,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-08-08 02:00:00 PDT,+2.1,+160,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-08 03:00:00 PDT,+1.5,+200,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-08-08 04:00:00 PDT,+2.1,+240,+5,+270,+0.0362678,+2238.53,+61722.3,+258.333,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+259,OK,OK
+2020-08-08 05:00:00 PDT,+0,+0,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-08-08 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-08 07:00:00 PDT,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-08 08:00:00 PDT,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-08-08 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-08 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-08 11:00:00 PDT,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-08 12:00:00 PDT,+2.6,+180,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-08-08 13:00:00 PDT,+1.5,+110,+5,+270,+0.0361206,+2229.44,+61722.3,+366.11,OK,OK,+8,+180,+0.0592223,+3655.33,+61722.3,+349.155,OK,OK
+2020-08-08 14:00:00 PDT,+2.1,+220,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-08-08 15:00:00 PDT,+5.1,+250,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-08-08 16:00:00 PDT,+5.7,+230,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-08-08 17:00:00 PDT,+5.7,+260,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-08-08 18:00:00 PDT,+6.2,+260,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-08-08 19:00:00 PDT,+5.7,+280,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-08 20:00:00 PDT,+6.2,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-08 21:00:00 PDT,+4.6,+290,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-08 22:00:00 PDT,+4.1,+290,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-08 23:00:00 PDT,+2.6,+320,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-09 00:00:00 PDT,+2.6,+270,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-08-09 01:00:00 PDT,+1.5,+280,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-08-09 02:00:00 PDT,+1.5,+270,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-09 03:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-09 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 12:00:00 PDT,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-09 13:00:00 PDT,+4.1,+300,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-08-09 14:00:00 PDT,+5.1,+280,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-08-09 15:00:00 PDT,+6.2,+260,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-08-09 16:00:00 PDT,+7.2,+290,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-09 17:00:00 PDT,+6.2,+260,+5,+270,+0.0661575,+4083.39,+61722.3,+15.1217,OK,OK,+8,+180,+0.0166184,+1025.73,+61722.3,+817.114,OK,OK
+2020-08-09 18:00:00 PDT,+6.7,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-09 19:00:00 PDT,+6.7,+290,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-09 20:00:00 PDT,+5.1,+300,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-09 21:00:00 PDT,+4.6,+300,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-08-09 22:00:00 PDT,+2.6,+280,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-08-09 23:00:00 PDT,+3.1,+260,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-10 00:00:00 PDT,+3.1,+290,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-08-10 01:00:00 PDT,+0,+0,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-08-10 02:00:00 PDT,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-10 03:00:00 PDT,+1.5,+230,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-10 04:00:00 PDT,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-10 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-10 06:00:00 PDT,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-10 07:00:00 PDT,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-08-10 08:00:00 PDT,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-10 09:00:00 PDT,+2.1,+240,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-10 10:00:00 PDT,+2.6,+290,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-10 11:00:00 PDT,+2.6,+260,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-10 12:00:00 PDT,+2.6,+230,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-10 13:00:00 PDT,+4.1,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-10 14:00:00 PDT,+5.7,+240,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-10 15:00:00 PDT,+7.7,+260,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-08-10 16:00:00 PDT,+7.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-08-10 17:00:00 PDT,+7.2,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-08-10 18:00:00 PDT,+6.7,+260,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-08-10 19:00:00 PDT,+5.1,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-10 20:00:00 PDT,+5.1,+310,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-08-10 21:00:00 PDT,+4.6,+290,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-08-10 22:00:00 PDT,+2.6,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-10 23:00:00 PDT,+1.5,+240,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-11 00:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-08-11 01:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-11 02:00:00 PDT,+1.5,+260,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-11 03:00:00 PDT,+1.5,+260,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-11 04:00:00 PDT,+3.1,+310,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-11 05:00:00 PDT,+0,+0,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-08-11 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-11 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-11 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-11 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-11 10:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-11 11:00:00 PDT,+1.5,+290,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-08-11 12:00:00 PDT,+3.1,+250,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-11 13:00:00 PDT,+3.1,+270,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-08-11 14:00:00 PDT,+5.1,+250,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-08-11 15:00:00 PDT,+5.1,+280,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-08-11 16:00:00 PDT,+6.7,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-08-11 17:00:00 PDT,+6.7,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-08-11 18:00:00 PDT,+6.7,+270,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-08-11 19:00:00 PDT,+5.7,+290,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-08-11 20:00:00 PDT,+5.1,+290,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-11 21:00:00 PDT,+3.6,+270,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-11 22:00:00 PDT,+2.6,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-08-11 23:00:00 PDT,+1.5,+250,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-12 00:00:00 PDT,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-12 01:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-12 02:00:00 PDT,+2.1,+270,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-08-12 03:00:00 PDT,+1.5,+270,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-12 04:00:00 PDT,+1.5,+330,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-12 05:00:00 PDT,+2.1,+350,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-12 06:00:00 PDT,+0,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-08-12 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-12 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-12 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-12 10:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-12 11:00:00 PDT,+3.6,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-12 12:00:00 PDT,+2.1,+250,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-08-12 13:00:00 PDT,+3.1,+280,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-12 14:00:00 PDT,+4.1,+270,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-08-12 15:00:00 PDT,+6.7,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-12 16:00:00 PDT,+5.7,+280,+5,+270,+0.0608639,+3756.66,+61722.3,+56.2004,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,+730.707,OK,OK
+2020-08-12 17:00:00 PDT,+5.7,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-12 18:00:00 PDT,+7.2,+250,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-12 19:00:00 PDT,+5.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-08-12 20:00:00 PDT,+4.6,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-08-12 21:00:00 PDT,+4.1,+270,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-08-12 22:00:00 PDT,+2.6,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-12 23:00:00 PDT,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-13 00:00:00 PDT,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-13 01:00:00 PDT,+3.6,+320,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-08-13 02:00:00 PDT,+3.1,+280,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-08-13 03:00:00 PDT,+0,+0,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-08-13 04:00:00 PDT,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-13 05:00:00 PDT,+2.6,+180,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-13 06:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-13 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-13 08:00:00 PDT,+1.5,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-13 09:00:00 PDT,+1.5,+300,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-08-13 10:00:00 PDT,+0,+0,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-08-13 11:00:00 PDT,+3.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-13 12:00:00 PDT,+3.1,+320,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-08-13 13:00:00 PDT,+3.6,+290,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-08-13 14:00:00 PDT,+6.2,+280,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-08-13 15:00:00 PDT,+5.1,+280,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-13 16:00:00 PDT,+5.1,+270,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-08-13 17:00:00 PDT,+7.2,+250,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-08-13 18:00:00 PDT,+6.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-08-13 19:00:00 PDT,+5.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-13 20:00:00 PDT,+4.1,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-08-13 21:00:00 PDT,+3.6,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-08-13 22:00:00 PDT,+2.6,+270,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-08-13 23:00:00 PDT,+3.1,+300,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-14 00:00:00 PDT,+3.6,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-08-14 01:00:00 PDT,+3.1,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-14 02:00:00 PDT,+3.6,+230,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-08-14 03:00:00 PDT,+2.6,+230,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-08-14 04:00:00 PDT,+2.6,+240,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-08-14 05:00:00 PDT,+2.6,+230,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-08-14 06:00:00 PDT,+1.5,+220,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-08-14 07:00:00 PDT,+0,+0,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-08-14 08:00:00 PDT,+1.5,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-14 09:00:00 PDT,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-08-14 10:00:00 PDT,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-14 11:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-14 12:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-14 13:00:00 PDT,+3.1,+300,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-14 14:00:00 PDT,+3.6,+310,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-08-14 15:00:00 PDT,+4.1,+270,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-08-14 16:00:00 PDT,+4.1,+280,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-14 17:00:00 PDT,+6.2,+250,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-14 18:00:00 PDT,+6.2,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-08-14 19:00:00 PDT,+6.2,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-08-14 20:00:00 PDT,+5.1,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-08-14 21:00:00 PDT,+3.1,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-08-14 22:00:00 PDT,+2.1,+280,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-08-14 23:00:00 PDT,+3.1,+290,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-15 00:00:00 PDT,+3.6,+290,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-08-15 01:00:00 PDT,+2.6,+310,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-08-15 02:00:00 PDT,+3.1,+310,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-08-15 03:00:00 PDT,+2.1,+290,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-08-15 04:00:00 PDT,+2.6,+300,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-08-15 05:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-08-15 06:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-15 07:00:00 PDT,+1.5,+280,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-08-15 08:00:00 PDT,+2.6,+280,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-08-15 09:00:00 PDT,+4.1,+300,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-15 10:00:00 PDT,+3.1,+270,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-08-15 11:00:00 PDT,+2.6,+270,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-08-15 12:00:00 PDT,+2.6,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-15 13:00:00 PDT,+3.6,+250,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-15 14:00:00 PDT,+2.1,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-08-15 15:00:00 PDT,+4.1,+260,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-15 16:00:00 PDT,+5.7,+270,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-08-15 17:00:00 PDT,+7.2,+240,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-15 18:00:00 PDT,+5.1,+270,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-08-15 19:00:00 PDT,+4.6,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-08-15 20:00:00 PDT,+4.6,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-08-15 21:00:00 PDT,+3.6,+280,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-08-15 22:00:00 PDT,+2.6,+280,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-15 23:00:00 PDT,+2.1,+260,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-16 00:00:00 PDT,+2.1,+280,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-16 01:00:00 PDT,+1.5,+280,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-16 02:00:00 PDT,+2.1,+280,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-16 03:00:00 PDT,+2.1,+260,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-16 04:00:00 PDT,+2.1,+310,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-16 05:00:00 PDT,+2.6,+320,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-16 06:00:00 PDT,+0,+0,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-08-16 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-16 08:00:00 PDT,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-16 09:00:00 PDT,+1.5,+40,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-16 10:00:00 PDT,+1.5,+100,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-16 11:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-16 12:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-16 13:00:00 PDT,+3.1,+280,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-08-16 14:00:00 PDT,+4.1,+310,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-08-16 15:00:00 PDT,+3.6,+290,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-08-16 16:00:00 PDT,+4.6,+270,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-08-16 17:00:00 PDT,+6.2,+280,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-08-16 18:00:00 PDT,+6.7,+260,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-16 19:00:00 PDT,+6.2,+250,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-16 20:00:00 PDT,+3.6,+260,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-08-16 21:00:00 PDT,+3.6,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-08-16 22:00:00 PDT,+2.1,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-08-16 23:00:00 PDT,+2.1,+320,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-17 00:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-17 01:00:00 PDT,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 02:00:00 PDT,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-17 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 09:00:00 PDT,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-17 10:00:00 PDT,+2.1,+270,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-17 11:00:00 PDT,+2.1,+290,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-17 12:00:00 PDT,+3.6,+310,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-17 13:00:00 PDT,+4.6,+270,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-08-17 14:00:00 PDT,+5.1,+280,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-08-17 15:00:00 PDT,+6.7,+290,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-08-17 16:00:00 PDT,+5.7,+270,+5,+270,+0.0608639,+3756.66,+61722.3,+56.2004,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,+730.707,OK,OK
+2020-08-17 17:00:00 PDT,+6.7,+250,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-17 18:00:00 PDT,+6.2,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-08-17 19:00:00 PDT,+6.2,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-17 20:00:00 PDT,+4.1,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-17 21:00:00 PDT,+4.1,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-08-17 22:00:00 PDT,+0,+0,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-08-17 23:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-18 00:00:00 PDT,+2.1,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-08-18 01:00:00 PDT,+1.5,+260,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-08-18 02:00:00 PDT,+2.6,+310,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-18 03:00:00 PDT,+2.1,+270,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-08-18 04:00:00 PDT,+1.5,+260,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-18 05:00:00 PDT,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-18 06:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-18 07:00:00 PDT,+2.6,+290,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-08-18 08:00:00 PDT,+2.1,+300,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-18 09:00:00 PDT,+2.6,+300,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-08-18 10:00:00 PDT,+1.5,+290,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-08-18 11:00:00 PDT,+1.5,+270,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-18 12:00:00 PDT,+3.1,+260,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-18 13:00:00 PDT,+3.1,+280,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-08-18 14:00:00 PDT,+3.6,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-08-18 15:00:00 PDT,+6.2,+260,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-08-18 16:00:00 PDT,+6.7,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-18 17:00:00 PDT,+7.2,+250,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-18 18:00:00 PDT,+6.7,+280,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-08-18 19:00:00 PDT,+6.2,+280,+5,+270,+0.0611906,+3776.82,+61722.3,+82.3168,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,+996.84,OK,OK
+2020-08-18 20:00:00 PDT,+4.6,+280,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-18 21:00:00 PDT,+4.1,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-08-18 22:00:00 PDT,+3.1,+280,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-08-18 23:00:00 PDT,+2.1,+280,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-08-19 00:00:00 PDT,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-19 01:00:00 PDT,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 02:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-19 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 04:00:00 PDT,+1.5,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 05:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-08-19 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 10:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-19 11:00:00 PDT,+1.5,+300,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-08-19 12:00:00 PDT,+4.1,+280,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-08-19 13:00:00 PDT,+4.6,+310,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-08-19 14:00:00 PDT,+5.1,+260,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-08-19 15:00:00 PDT,+5.7,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-08-19 16:00:00 PDT,+4.6,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-19 17:00:00 PDT,+6.2,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-08-19 18:00:00 PDT,+6.7,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-08-19 19:00:00 PDT,+5.7,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-19 20:00:00 PDT,+3.6,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-19 21:00:00 PDT,+3.1,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-08-19 22:00:00 PDT,+2.1,+250,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-08-19 23:00:00 PDT,+0,+0,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-08-20 00:00:00 PDT,+1.5,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 01:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-08-20 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 04:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 05:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-20 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 11:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-20 12:00:00 PDT,+2.1,+330,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-08-20 13:00:00 PDT,+5.7,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-20 14:00:00 PDT,+5.1,+280,+5,+270,+0.0495216,+3056.59,+61722.3,+30.1077,OK,OK,+8,+180,+0.032041,+1977.64,+61722.3,+110.091,OK,OK
+2020-08-20 15:00:00 PDT,+6.2,+280,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-08-20 16:00:00 PDT,+6.7,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-20 17:00:00 PDT,+6.2,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-20 18:00:00 PDT,+5.7,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-20 19:00:00 PDT,+6.2,+270,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-08-20 20:00:00 PDT,+3.6,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-20 21:00:00 PDT,+3.1,+290,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-08-20 22:00:00 PDT,+2.6,+300,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-08-20 23:00:00 PDT,+3.1,+300,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-08-21 00:00:00 PDT,+2.6,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-08-21 01:00:00 PDT,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-21 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 07:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 08:00:00 PDT,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-08-21 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 10:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 11:00:00 PDT,+1.5,+340,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-08-21 12:00:00 PDT,+1.5,+330,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-08-21 13:00:00 PDT,+4.1,+320,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-08-21 14:00:00 PDT,+5.1,+300,+5,+270,+0.0405581,+2503.33,+61722.3,-44.2965,OK,OK,+8,+180,+0.0454486,+2805.19,+61722.3,-71.5766,OK,OK
+2020-08-21 15:00:00 PDT,+5.1,+280,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-08-21 16:00:00 PDT,+6.2,+270,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-08-21 17:00:00 PDT,+6.2,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-21 18:00:00 PDT,+6.7,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-21 19:00:00 PDT,+5.7,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-21 20:00:00 PDT,+0,+0,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-21 21:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 22:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-21 23:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 00:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-22 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 04:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 05:00:00 PDT,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-22 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 10:00:00 PDT,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-22 11:00:00 PDT,+1.5,+330,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-08-22 12:00:00 PDT,+2.1,+320,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-08-22 13:00:00 PDT,+2.6,+300,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-08-22 14:00:00 PDT,+5.7,+290,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-08-22 15:00:00 PDT,+5.7,+280,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-22 16:00:00 PDT,+6.7,+250,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-22 17:00:00 PDT,+7.2,+280,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-08-22 18:00:00 PDT,+5.7,+280,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-08-22 19:00:00 PDT,+6.2,+280,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-22 20:00:00 PDT,+3.6,+290,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-22 21:00:00 PDT,+1.5,+300,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-08-22 22:00:00 PDT,+3.1,+310,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-08-22 23:00:00 PDT,+2.6,+300,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-08-23 00:00:00 PDT,+2.1,+330,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-08-23 01:00:00 PDT,+1.5,+250,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-23 02:00:00 PDT,+1.5,+300,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-23 03:00:00 PDT,+2.1,+280,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-23 04:00:00 PDT,+1.5,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-23 05:00:00 PDT,+1.5,+240,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-23 06:00:00 PDT,+1.5,+280,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-23 07:00:00 PDT,+2.1,+260,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-23 08:00:00 PDT,+2.1,+290,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-23 09:00:00 PDT,+2.1,+260,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-23 10:00:00 PDT,+1.5,+290,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-23 11:00:00 PDT,+2.6,+320,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-23 12:00:00 PDT,+4.1,+300,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-08-23 13:00:00 PDT,+4.1,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-08-23 14:00:00 PDT,+5.1,+280,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-08-23 15:00:00 PDT,+6.2,+270,+5,+270,+0.0480244,+2964.18,+61722.3,+222.695,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,+642.786,OK,OK
+2020-08-23 16:00:00 PDT,+7.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-23 17:00:00 PDT,+7.2,+270,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-08-23 18:00:00 PDT,+6.7,+270,+5,+270,+0.0656515,+4052.16,+61722.3,+59.0621,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,+1365.84,OK,OK
+2020-08-23 19:00:00 PDT,+4.1,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-23 20:00:00 PDT,+2.6,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-08-23 21:00:00 PDT,+1.5,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-08-23 22:00:00 PDT,+2.1,+280,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-08-23 23:00:00 PDT,+2.6,+290,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-08-24 00:00:00 PDT,+1.5,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-08-24 01:00:00 PDT,+1.5,+300,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-24 02:00:00 PDT,+2.1,+310,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-08-24 03:00:00 PDT,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-08-24 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 10:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-24 11:00:00 PDT,+2.6,+330,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-08-24 12:00:00 PDT,+5.1,+310,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-08-24 13:00:00 PDT,+4.1,+290,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-08-24 14:00:00 PDT,+5.7,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-24 15:00:00 PDT,+4.6,+290,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-24 16:00:00 PDT,+5.1,+300,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-24 17:00:00 PDT,+5.7,+270,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-08-24 18:00:00 PDT,+5.7,+290,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-24 19:00:00 PDT,+5.1,+290,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-24 20:00:00 PDT,+5.7,+290,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-24 21:00:00 PDT,+3.6,+280,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-08-24 22:00:00 PDT,+1.5,+250,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-24 23:00:00 PDT,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-25 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 01:00:00 PDT,+1.5,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 02:00:00 PDT,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-08-25 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 07:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 08:00:00 PDT,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-08-25 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 12:00:00 PDT,+3.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-25 13:00:00 PDT,+3.6,+230,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-25 14:00:00 PDT,+3.6,+330,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-25 15:00:00 PDT,+5.1,+290,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-08-25 16:00:00 PDT,+5.1,+260,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-25 17:00:00 PDT,+6.2,+270,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-25 18:00:00 PDT,+6.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-25 19:00:00 PDT,+4.6,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-25 20:00:00 PDT,+4.6,+260,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-08-25 21:00:00 PDT,+5.1,+270,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-08-25 22:00:00 PDT,+0,+0,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-08-25 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 00:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 01:00:00 PDT,+2.6,+310,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-08-26 02:00:00 PDT,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-08-26 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 05:00:00 PDT,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 06:00:00 PDT,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-08-26 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 11:00:00 PDT,+2.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-26 12:00:00 PDT,+4.1,+290,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-08-26 13:00:00 PDT,+3.1,+320,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-26 14:00:00 PDT,+4.1,+290,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-08-26 15:00:00 PDT,+5.7,+270,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-26 16:00:00 PDT,+7.2,+250,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-26 17:00:00 PDT,+6.2,+270,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-08-26 18:00:00 PDT,+7.2,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-26 19:00:00 PDT,+5.1,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-08-26 20:00:00 PDT,+2.6,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-08-26 21:00:00 PDT,+2.1,+260,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-08-26 22:00:00 PDT,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-08-26 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 04:00:00 PDT,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 05:00:00 PDT,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-08-27 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 10:00:00 PDT,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 11:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-08-27 12:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-27 13:00:00 PDT,+3.1,+320,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-08-27 14:00:00 PDT,+3.6,+300,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-08-27 15:00:00 PDT,+5.7,+250,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-08-27 16:00:00 PDT,+6.7,+240,+5,+270,+0.0492888,+3042.22,+61722.3,+396.428,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,+1162.47,OK,OK
+2020-08-27 17:00:00 PDT,+6.7,+260,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-08-27 18:00:00 PDT,+5.7,+260,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-08-27 19:00:00 PDT,+6.2,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-08-27 20:00:00 PDT,+4.1,+280,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-08-27 21:00:00 PDT,+2.6,+280,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-08-27 22:00:00 PDT,+2.1,+270,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-08-27 23:00:00 PDT,+1.5,+330,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-28 00:00:00 PDT,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-08-28 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 08:00:00 PDT,+1.5,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 09:00:00 PDT,+0,+0,+5,+270,+0.0362678,+2238.53,+61722.3,+258.333,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+259,OK,OK
+2020-08-28 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 11:00:00 PDT,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-28 12:00:00 PDT,+2.1,+330,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-08-28 13:00:00 PDT,+3.1,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-08-28 14:00:00 PDT,+4.1,+290,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-08-28 15:00:00 PDT,+5.7,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-28 16:00:00 PDT,+6.2,+270,+5,+270,+0.0522748,+3226.52,+61722.3,+178.313,OK,OK,+8,+180,+0.0300256,+1853.25,+61722.3,+757.48,OK,OK
+2020-08-28 17:00:00 PDT,+6.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-28 18:00:00 PDT,+6.2,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-28 19:00:00 PDT,+4.1,+290,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-28 20:00:00 PDT,+4.1,+310,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-28 21:00:00 PDT,+3.1,+300,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-08-28 22:00:00 PDT,+2.1,+270,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-08-28 23:00:00 PDT,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-08-29 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 06:00:00 PDT,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 07:00:00 PDT,+0,+0,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-08-29 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 10:00:00 PDT,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-29 11:00:00 PDT,+2.1,+220,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-08-29 12:00:00 PDT,+2.1,+250,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-08-29 13:00:00 PDT,+4.1,+280,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-08-29 14:00:00 PDT,+5.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-08-29 15:00:00 PDT,+5.1,+300,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-29 16:00:00 PDT,+6.7,+270,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-29 17:00:00 PDT,+5.7,+260,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-08-29 18:00:00 PDT,+5.1,+260,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-08-29 19:00:00 PDT,+4.6,+290,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-08-29 20:00:00 PDT,+4.1,+310,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-08-29 21:00:00 PDT,+3.1,+300,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-08-29 22:00:00 PDT,+1.5,+270,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-08-29 23:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-30 00:00:00 PDT,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 01:00:00 PDT,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-08-30 02:00:00 PDT,+2.1,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 03:00:00 PDT,+0,+0,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-08-30 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 11:00:00 PDT,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-30 12:00:00 PDT,+1.5,+250,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-08-30 13:00:00 PDT,+3.1,+250,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-08-30 14:00:00 PDT,+5.1,+300,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-08-30 15:00:00 PDT,+5.7,+270,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-08-30 16:00:00 PDT,+6.7,+260,+5,+270,+0.0518763,+3201.92,+61722.3,+236.815,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,+931.729,OK,OK
+2020-08-30 17:00:00 PDT,+7.2,+280,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-30 18:00:00 PDT,+7.2,+280,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-08-30 19:00:00 PDT,+6.2,+280,+5,+270,+0.0665117,+4105.25,+61722.3,+27.7769,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+1109.17,OK,OK
+2020-08-30 20:00:00 PDT,+4.6,+270,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-08-30 21:00:00 PDT,+2.1,+290,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-08-30 22:00:00 PDT,+1.5,+250,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-08-30 23:00:00 PDT,+2.1,+290,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-08-31 00:00:00 PDT,+3.1,+270,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-08-31 01:00:00 PDT,+0,+0,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-08-31 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-31 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-31 04:00:00 PDT,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-31 05:00:00 PDT,+1.5,+240,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-31 06:00:00 PDT,+1.5,+240,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-31 07:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-08-31 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-31 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-31 10:00:00 PDT,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-08-31 11:00:00 PDT,+2.1,+340,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-08-31 12:00:00 PDT,+1.5,+330,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-08-31 13:00:00 PDT,+3.1,+320,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-08-31 14:00:00 PDT,+5.1,+290,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-08-31 15:00:00 PDT,+5.6,+280,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-08-31 16:00:00 PDT,+6.2,+270,+5,+270,+0.0515098,+3179.3,+61722.3,+186.54,OK,OK,+8,+180,+0.0309247,+1908.74,+61722.3,+736.956,OK,OK
+2020-08-31 17:00:00 PDT,+6.7,+260,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-08-31 18:00:00 PDT,+6.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-31 19:00:00 PDT,+5.7,+260,+5,+270,+0.05886,+3632.97,+61722.3,+187.991,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,+1390.4,OK,OK
+2020-08-31 20:00:00 PDT,+3.1,+250,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-08-31 21:00:00 PDT,+2.6,+250,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-08-31 22:00:00 PDT,+1.5,+230,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-08-31 23:00:00 PDT,+1.3,+260,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-09-01 00:00:00 PDT,+1.1,+0,+5,+270,+0.0365048,+2253.16,+61722.3,+195.557,OK,OK,+8,+180,+0.0562761,+3473.49,+61722.3,+203.652,OK,OK
+2020-09-01 01:00:00 PDT,+0.9,+0,+5,+270,+0.0360862,+2227.32,+61722.3,-147.267,OK,OK,+8,+180,+0.0573352,+3538.86,+61722.3,-147.719,OK,OK
+2020-09-01 02:00:00 PDT,+0.8,+20,+5,+270,+0.0360855,+2227.28,+61722.3,-120.813,OK,OK,+8,+180,+0.0574299,+3544.7,+61722.3,-120.861,OK,OK
+2020-09-01 03:00:00 PDT,+0.6,+360,+5,+270,+0.0360346,+2224.14,+61722.3,-137.107,OK,OK,+8,+180,+0.057293,+3536.26,+61722.3,-137.573,OK,OK
+2020-09-01 04:00:00 PDT,+0.4,+360,+5,+270,+0.0360851,+2227.25,+61722.3,-80.7821,OK,OK,+8,+180,+0.0575365,+3551.28,+61722.3,-80.5742,OK,OK
+2020-09-01 05:00:00 PDT,+0.2,+10,+5,+270,+0.036085,+2227.25,+61722.3,-53.9258,OK,OK,+8,+180,+0.0575838,+3554.2,+61722.3,-53.7161,OK,OK
+2020-09-01 06:00:00 PDT,+0.1,+360,+5,+270,+0.0360834,+2227.15,+61722.3,-31.255,OK,OK,+8,+180,+0.0576065,+3555.6,+61722.3,-31.113,OK,OK
+2020-09-01 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,-13.4948,OK,OK,+8,+180,+0.0576193,+3556.4,+61722.3,-13.429,OK,OK
+2020-09-01 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-01 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-01 10:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-01 11:00:00 PDT,+2.6,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-09-01 12:00:00 PDT,+3.1,+290,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-09-01 13:00:00 PDT,+3.1,+260,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-09-01 14:00:00 PDT,+5.1,+240,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-09-01 15:00:00 PDT,+5.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-01 16:00:00 PDT,+5.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-01 17:00:00 PDT,+9.3,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-01 18:00:00 PDT,+8.3,+230,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-09-01 19:00:00 PDT,+7.2,+220,+5,+270,+0.0597046,+3685.1,+61722.3,+367.691,OK,OK,+8,+180,+0.0263439,+1626,+61722.3,+2127.23,OK,OK
+2020-09-01 20:00:00 PDT,+6.7,+230,+5,+270,+0.0479589,+2960.13,+61722.3,+709.883,OK,OK,+8,+180,+0.0394611,+2435.63,+61722.3,+1607.03,OK,OK
+2020-09-01 21:00:00 PDT,+4.1,+260,+5,+270,+0.0496767,+3066.16,+61722.3,+554.82,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,+1520.72,OK,OK
+2020-09-01 22:00:00 PDT,+2.7,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-09-01 23:00:00 PDT,+1.8,+270,+5,+270,+0.0378551,+2336.5,+61722.3,+434.449,OK,OK,+8,+180,+0.0531326,+3279.46,+61722.3,+509.037,OK,OK
+2020-09-02 00:00:00 PDT,+1.4,+250,+5,+270,+0.0369574,+2281.09,+61722.3,+224.003,OK,OK,+8,+180,+0.0548696,+3386.67,+61722.3,+245.079,OK,OK
+2020-09-02 01:00:00 PDT,+0,+0,+5,+270,+0.0365492,+2255.9,+61722.3,+232.588,OK,OK,+8,+180,+0.0562146,+3469.69,+61722.3,+242.832,OK,OK
+2020-09-02 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-02 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-02 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-02 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-02 06:00:00 PDT,+1.3,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-02 07:00:00 PDT,+1.4,+250,+5,+270,+0.0365048,+2253.16,+61722.3,+195.557,OK,OK,+8,+180,+0.0562761,+3473.49,+61722.3,+203.652,OK,OK
+2020-09-02 08:00:00 PDT,+0,+0,+5,+270,+0.0365492,+2255.9,+61722.3,+232.588,OK,OK,+8,+180,+0.0562146,+3469.69,+61722.3,+242.832,OK,OK
+2020-09-02 09:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-02 10:00:00 PDT,+2.4,+300,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-09-02 11:00:00 PDT,+2.1,+260,+5,+270,+0.0375954,+2320.47,+61722.3,+101.899,OK,OK,+8,+180,+0.0527076,+3253.23,+61722.3,+120.583,OK,OK
+2020-09-02 12:00:00 PDT,+3.1,+230,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-09-02 13:00:00 PDT,+3.1,+290,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-09-02 14:00:00 PDT,+4.6,+250,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-09-02 15:00:00 PDT,+6.2,+240,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-09-02 16:00:00 PDT,+7.7,+230,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-09-02 17:00:00 PDT,+9.3,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-02 18:00:00 PDT,+7.7,+230,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-09-02 19:00:00 PDT,+5.1,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-02 20:00:00 PDT,+4.6,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-02 21:00:00 PDT,+4.1,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-09-02 22:00:00 PDT,+3,+220,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-02 23:00:00 PDT,+2.5,+190,+5,+270,+0.0376032,+2320.96,+61722.3,+517.828,OK,OK,+8,+180,+0.0543478,+3354.47,+61722.3,+581.702,OK,OK
+2020-09-03 00:00:00 PDT,+1.4,+170,+5,+270,+0.0363462,+2243.37,+61722.3,+396.51,OK,OK,+8,+180,+0.0581559,+3589.52,+61722.3,+390.638,OK,OK
+2020-09-03 01:00:00 PDT,+0,+0,+5,+270,+0.0360047,+2222.29,+61722.3,+153.966,OK,OK,+8,+180,+0.0577891,+3566.88,+61722.3,+152.29,OK,OK
+2020-09-03 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 11:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-03 12:00:00 PDT,+2.6,+320,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-09-03 13:00:00 PDT,+3.1,+300,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-09-03 14:00:00 PDT,+3.1,+290,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-09-03 15:00:00 PDT,+4.5,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-09-03 16:00:00 PDT,+5.9,+260,+5,+270,+0.0445688,+2750.89,+61722.3,+253.169,OK,OK,+8,+180,+0.0400954,+2474.78,+61722.3,+544.505,OK,OK
+2020-09-03 17:00:00 PDT,+7.3,+250,+5,+270,+0.0522889,+3227.39,+61722.3,+287.444,OK,OK,+8,+180,+0.0309596,+1910.9,+61722.3,+1126.39,OK,OK
+2020-09-03 18:00:00 PDT,+8.7,+240,+5,+270,+0.0615322,+3797.91,+61722.3,+192.971,OK,OK,+8,+180,+0.0226663,+1399.02,+61722.3,+1728.14,OK,OK
+2020-09-03 19:00:00 PDT,+8.2,+240,+5,+270,+0.0699163,+4315.39,+61722.3,+102.655,OK,OK,+8,+180,+0.0189048,+1166.84,+61722.3,+2221.49,OK,OK
+2020-09-03 20:00:00 PDT,+7.7,+240,+5,+270,+0.0651421,+4020.72,+61722.3,+185.74,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,+2121.37,OK,OK
+2020-09-03 21:00:00 PDT,+3.9,+300,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-03 22:00:00 PDT,+0,+0,+5,+270,+0.0413323,+2551.12,+61722.3,+121.778,OK,OK,+8,+180,+0.0447192,+2760.17,+61722.3,+204.602,OK,OK
+2020-09-03 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 11:00:00 PDT,+3.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 12:00:00 PDT,+0,+0,+5,+270,+0.0361569,+2231.68,+61722.3,-391.172,OK,OK,+8,+180,+0.0553463,+3416.1,+61722.3,-416.3,OK,OK
+2020-09-04 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 14:00:00 PDT,+4.1,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-04 15:00:00 PDT,+7.2,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-04 16:00:00 PDT,+6.2,+220,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-04 17:00:00 PDT,+7.7,+210,+5,+270,+0.0442731,+2732.63,+61722.3,+739.368,OK,OK,+8,+180,+0.0439556,+2713.04,+61722.3,+1318.68,OK,OK
+2020-09-04 18:00:00 PDT,+8.2,+230,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-09-04 19:00:00 PDT,+7.2,+260,+5,+270,+0.0589802,+3640.39,+61722.3,+381.761,OK,OK,+8,+180,+0.0269359,+1662.54,+61722.3,+2085.67,OK,OK
+2020-09-04 20:00:00 PDT,+7.2,+240,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-09-04 21:00:00 PDT,+2.6,+250,+5,+270,+0.0636449,+3928.31,+61722.3,+116.947,OK,OK,+8,+180,+0.0202954,+1252.68,+61722.3,+1566.89,OK,OK
+2020-09-04 22:00:00 PDT,+4.1,+240,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-09-04 23:00:00 PDT,+2.9,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-05 00:00:00 PDT,+1.2,+180,+5,+270,+0.0378499,+2336.18,+61722.3,+486.235,OK,OK,+8,+180,+0.0534404,+3298.46,+61722.3,+564.096,OK,OK
+2020-09-05 01:00:00 PDT,+1.1,+160,+5,+270,+0.0360866,+2227.35,+61722.3,+163.473,OK,OK,+8,+180,+0.0579627,+3577.59,+61722.3,+161.148,OK,OK
+2020-09-05 02:00:00 PDT,+2.4,+200,+5,+270,+0.035987,+2221.2,+61722.3,+88.5165,OK,OK,+8,+180,+0.0575388,+3551.42,+61722.3,+88.1373,OK,OK
+2020-09-05 03:00:00 PDT,+0.8,+120,+5,+270,+0.0365543,+2256.21,+61722.3,+410.533,OK,OK,+8,+180,+0.0572285,+3532.27,+61722.3,+416.445,OK,OK
+2020-09-05 04:00:00 PDT,+0.6,+90,+5,+270,+0.0359558,+2219.27,+61722.3,-39.0774,OK,OK,+8,+180,+0.0572259,+3532.11,+61722.3,-39.2327,OK,OK
+2020-09-05 05:00:00 PDT,+0.4,+70,+5,+270,+0.036001,+2222.06,+61722.3,-80.2776,OK,OK,+8,+180,+0.0573154,+3537.63,+61722.3,-80.4543,OK,OK
+2020-09-05 06:00:00 PDT,+0.3,+50,+5,+270,+0.0360496,+2225.07,+61722.3,-68.9177,OK,OK,+8,+180,+0.0574808,+3547.84,+61722.3,-68.806,OK,OK
+2020-09-05 07:00:00 PDT,+0.1,+20,+5,+270,+0.0360687,+2226.24,+61722.3,-56.9241,OK,OK,+8,+180,+0.0575493,+3552.08,+61722.3,-56.7417,OK,OK
+2020-09-05 08:00:00 PDT,+0,+0,+5,+270,+0.0360842,+2227.2,+61722.3,-17.2951,OK,OK,+8,+180,+0.0576166,+3556.23,+61722.3,-17.2119,OK,OK
+2020-09-05 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-05 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-05 11:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-05 12:00:00 PDT,+3.6,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-09-05 13:00:00 PDT,+4.1,+240,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-09-05 14:00:00 PDT,+5.1,+270,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-05 15:00:00 PDT,+7.7,+240,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-09-05 16:00:00 PDT,+8.2,+210,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-05 17:00:00 PDT,+7.7,+260,+5,+270,+0.0465325,+2872.09,+61722.3,+944.588,OK,OK,+8,+180,+0.0435298,+2686.76,+61722.3,+1753.96,OK,OK
+2020-09-05 18:00:00 PDT,+7.5,+250,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-05 19:00:00 PDT,+7.2,+240,+5,+270,+0.0634004,+3913.21,+61722.3,+162.09,OK,OK,+8,+180,+0.0212635,+1312.43,+61722.3,+1803.43,OK,OK
+2020-09-05 20:00:00 PDT,+6.2,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-05 21:00:00 PDT,+7.7,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-09-05 22:00:00 PDT,+7.7,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-05 23:00:00 PDT,+7.2,+170,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-06 00:00:00 PDT,+7,+110,+5,+270,+0.0342343,+2113.02,+61722.3,+882.878,OK,OK,+8,+180,+0.0620847,+3832.01,+61722.3,+756.915,OK,OK
+2020-09-06 01:00:00 PDT,+6.2,+90,+5,+270,+0.0434759,+2683.43,+61722.3,+133.515,OK,OK,+8,+180,+0.0249135,+1537.72,+61722.3,-259.324,OK,OK
+2020-09-06 02:00:00 PDT,+5.7,+90,+5,+270,+0.0425518,+2626.39,+61722.3,+116.798,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,-496.241,OK,OK
+2020-09-06 03:00:00 PDT,+5.1,+80,+5,+270,+0.0397413,+2452.92,+61722.3,-10.9389,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,-551.111,OK,OK
+2020-09-06 04:00:00 PDT,+4.6,+70,+5,+270,+0.037813,+2333.9,+61722.3,-147.829,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,-645.188,OK,OK
+2020-09-06 05:00:00 PDT,+4.1,+60,+5,+270,+0.0365422,+2255.46,+61722.3,-275.035,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,-691.123,OK,OK
+2020-09-06 06:00:00 PDT,+3.6,+200,+5,+270,+0.0356926,+2203.02,+61722.3,-384.927,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,-689.978,OK,OK
+2020-09-06 07:00:00 PDT,+3.1,+40,+5,+270,+0.037147,+2292.79,+61722.3,+607.306,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+630.993,OK,OK
+2020-09-06 08:00:00 PDT,+2.6,+30,+5,+270,+0.0353279,+2180.52,+61722.3,-460.249,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-569.314,OK,OK
+2020-09-06 09:00:00 PDT,+3.1,+20,+5,+270,+0.0355426,+2193.77,+61722.3,-418.086,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-469.748,OK,OK
+2020-09-06 10:00:00 PDT,+2.9,+20,+5,+270,+0.0356518,+2200.51,+61722.3,-456.494,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-525.638,OK,OK
+2020-09-06 11:00:00 PDT,+2.6,+10,+5,+270,+0.0356677,+2201.49,+61722.3,-436.923,OK,OK,+8,+180,+0.0533068,+3290.22,+61722.3,-492.735,OK,OK
+2020-09-06 12:00:00 PDT,+2.6,+360,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-09-06 13:00:00 PDT,+3.1,+280,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-09-06 14:00:00 PDT,+5.1,+240,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-09-06 15:00:00 PDT,+5.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-06 16:00:00 PDT,+7.7,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-06 17:00:00 PDT,+7.7,+240,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-06 18:00:00 PDT,+7.7,+240,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-06 19:00:00 PDT,+7.7,+230,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-06 20:00:00 PDT,+7.7,+230,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-06 21:00:00 PDT,+7.7,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-06 22:00:00 PDT,+5.1,+240,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-06 23:00:00 PDT,+2.8,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-07 00:00:00 PDT,+2.4,+280,+5,+270,+0.0385328,+2378.33,+61722.3,+306.274,OK,OK,+8,+180,+0.050983,+3146.79,+61722.3,+389.454,OK,OK
+2020-09-07 01:00:00 PDT,+2.2,+290,+5,+270,+0.0377748,+2331.55,+61722.3,+224.903,OK,OK,+8,+180,+0.0525743,+3245,+61722.3,+268.028,OK,OK
+2020-09-07 02:00:00 PDT,+3.9,+320,+5,+270,+0.0374096,+2309.01,+61722.3,+155.95,OK,OK,+8,+180,+0.0533698,+3294.1,+61722.3,+180.103,OK,OK
+2020-09-07 03:00:00 PDT,+1.6,+310,+5,+270,+0.039984,+2467.9,+61722.3,-44.2451,OK,OK,+8,+180,+0.0465996,+2876.23,+61722.3,-67.6807,OK,OK
+2020-09-07 04:00:00 PDT,+1.2,+320,+5,+270,+0.0366085,+2259.56,+61722.3,+25.068,OK,OK,+8,+180,+0.055565,+3429.6,+61722.3,+26.7039,OK,OK
+2020-09-07 05:00:00 PDT,+0.9,+330,+5,+270,+0.0363197,+2241.74,+61722.3,-19.3735,OK,OK,+8,+180,+0.0565732,+3491.82,+61722.3,-19.9394,OK,OK
+2020-09-07 06:00:00 PDT,+2.1,+120,+5,+270,+0.0361847,+2233.4,+61722.3,-43.8229,OK,OK,+8,+180,+0.057111,+3525.02,+61722.3,-44.3125,OK,OK
+2020-09-07 07:00:00 PDT,+0.3,+350,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-09-07 08:00:00 PDT,+0,+0,+5,+270,+0.0360887,+2227.48,+61722.3,-32.8101,OK,OK,+8,+180,+0.0575874,+3554.43,+61722.3,-32.6814,OK,OK
+2020-09-07 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-07 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-07 11:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-07 12:00:00 PDT,+3.6,+250,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-09-07 13:00:00 PDT,+4.1,+240,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-09-07 14:00:00 PDT,+5.1,+270,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-07 15:00:00 PDT,+7.7,+240,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-09-07 16:00:00 PDT,+7.7,+260,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-07 17:00:00 PDT,+7.7,+230,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-07 18:00:00 PDT,+7.7,+230,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-07 19:00:00 PDT,+10.3,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-07 20:00:00 PDT,+7.7,+240,+5,+270,+0.0878413,+5421.76,+61722.3,-177.708,OK,OK,+8,+180,+0.023183,+1430.91,+61722.3,+1119.85,OK,OK
+2020-09-07 21:00:00 PDT,+7.7,+230,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-07 22:00:00 PDT,+5.1,+270,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-07 23:00:00 PDT,+2.7,+280,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-09-08 00:00:00 PDT,+4.5,+310,+5,+270,+0.038333,+2366,+61722.3,+241.653,OK,OK,+8,+180,+0.05124,+3162.65,+61722.3,+303.709,OK,OK
+2020-09-08 01:00:00 PDT,+2,+220,+5,+270,+0.0429995,+2654.02,+61722.3,+40.7271,OK,OK,+8,+180,+0.0415002,+2561.49,+61722.3,+80.7848,OK,OK
+2020-09-08 02:00:00 PDT,+1.7,+180,+5,+270,+0.0367242,+2266.7,+61722.3,+364.683,OK,OK,+8,+180,+0.0561622,+3466.46,+61722.3,+382.464,OK,OK
+2020-09-08 03:00:00 PDT,+1.4,+140,+5,+270,+0.0360915,+2227.65,+61722.3,+233.74,OK,OK,+8,+180,+0.058306,+3598.78,+61722.3,+228.294,OK,OK
+2020-09-08 04:00:00 PDT,+1.1,+110,+5,+270,+0.0357936,+2209.26,+61722.3,+22.8131,OK,OK,+8,+180,+0.0569057,+3512.35,+61722.3,+23.0513,OK,OK
+2020-09-08 05:00:00 PDT,+2.3,+190,+5,+270,+0.0358261,+2211.27,+61722.3,-86.5313,OK,OK,+8,+180,+0.0567526,+3502.9,+61722.3,-87.868,OK,OK
+2020-09-08 06:00:00 PDT,+0.4,+50,+5,+270,+0.0363056,+2240.86,+61722.3,+364,OK,OK,+8,+180,+0.0580738,+3584.45,+61722.3,+359.147,OK,OK
+2020-09-08 07:00:00 PDT,+0.1,+10,+5,+270,+0.0360562,+2225.47,+61722.3,-75.7791,OK,OK,+8,+180,+0.0574931,+3548.6,+61722.3,-75.6388,OK,OK
+2020-09-08 08:00:00 PDT,+0,+0,+5,+270,+0.0360846,+2227.22,+61722.3,-15.6325,OK,OK,+8,+180,+0.0576179,+3556.31,+61722.3,-15.5568,OK,OK
+2020-09-08 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-08 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-08 11:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-08 12:00:00 PDT,+2.1,+290,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-09-08 13:00:00 PDT,+4.6,+260,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-09-08 14:00:00 PDT,+4.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-09-08 15:00:00 PDT,+7.7,+230,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-09-08 16:00:00 PDT,+7.7,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-08 17:00:00 PDT,+7.7,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-08 18:00:00 PDT,+7.7,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-08 19:00:00 PDT,+7.2,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-08 20:00:00 PDT,+4.1,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-08 21:00:00 PDT,+5.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-08 22:00:00 PDT,+3.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-08 23:00:00 PDT,+2.8,+210,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-09-09 00:00:00 PDT,+4,+150,+5,+270,+0.0370555,+2287.15,+61722.3,+491.287,OK,OK,+8,+180,+0.0559008,+3450.32,+61722.3,+522.101,OK,OK
+2020-09-09 01:00:00 PDT,+3.7,+140,+5,+270,+0.0343737,+2121.62,+61722.3,+176.035,OK,OK,+8,+180,+0.054127,+3340.84,+61722.3,+189.614,OK,OK
+2020-09-09 02:00:00 PDT,+1.9,+140,+5,+270,+0.0343715,+2121.49,+61722.3,+51.8405,OK,OK,+8,+180,+0.0526566,+3250.09,+61722.3,+58.7719,OK,OK
+2020-09-09 03:00:00 PDT,+1.6,+120,+5,+270,+0.0355598,+2194.83,+61722.3,+30.3999,OK,OK,+8,+180,+0.0563042,+3475.23,+61722.3,+31.1408,OK,OK
+2020-09-09 04:00:00 PDT,+1.2,+90,+5,+270,+0.0355952,+2197.01,+61722.3,-75.4157,OK,OK,+8,+180,+0.0560404,+3458.94,+61722.3,-77.9058,OK,OK
+2020-09-09 05:00:00 PDT,+0.9,+70,+5,+270,+0.0357649,+2207.49,+61722.3,-156.269,OK,OK,+8,+180,+0.0563972,+3480.96,+61722.3,-160.171,OK,OK
+2020-09-09 06:00:00 PDT,+0.6,+50,+5,+270,+0.0359117,+2216.55,+61722.3,-152.537,OK,OK,+8,+180,+0.0569086,+3512.53,+61722.3,-154.418,OK,OK
+2020-09-09 07:00:00 PDT,+0.3,+30,+5,+270,+0.0360208,+2223.29,+61722.3,-113.153,OK,OK,+8,+180,+0.0573322,+3538.68,+61722.3,-113.386,OK,OK
+2020-09-09 08:00:00 PDT,+0,+0,+5,+270,+0.0360744,+2226.59,+61722.3,-55.2187,OK,OK,+8,+180,+0.057565,+3553.04,+61722.3,-55.023,OK,OK
+2020-09-09 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-09 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-09 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-09 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-09 13:00:00 PDT,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-09 14:00:00 PDT,+4.1,+240,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-09-09 15:00:00 PDT,+5.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-09 16:00:00 PDT,+7.2,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-09 17:00:00 PDT,+7.7,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-09 18:00:00 PDT,+7.7,+230,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-09 19:00:00 PDT,+7.2,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-09 20:00:00 PDT,+5.1,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-09 21:00:00 PDT,+3.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-09 22:00:00 PDT,+0,+0,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-09-09 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 06:00:00 PDT,+0.7,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 07:00:00 PDT,+1.1,+210,+5,+270,+0.0361959,+2234.09,+61722.3,+119.891,OK,OK,+8,+180,+0.0572696,+3534.81,+61722.3,+120.714,OK,OK
+2020-09-10 08:00:00 PDT,+0,+0,+5,+270,+0.0362294,+2236.16,+61722.3,+201.275,OK,OK,+8,+180,+0.0573551,+3540.09,+61722.3,+202.292,OK,OK
+2020-09-10 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 13:00:00 PDT,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-10 14:00:00 PDT,+5.1,+290,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-09-10 15:00:00 PDT,+7.7,+250,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-09-10 16:00:00 PDT,+7.2,+240,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-09-10 17:00:00 PDT,+7.2,+230,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-10 18:00:00 PDT,+5.1,+230,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-10 19:00:00 PDT,+5.6,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-09-10 20:00:00 PDT,+6.2,+240,+5,+270,+0.0467962,+2888.37,+61722.3,+507.15,OK,OK,+8,+180,+0.0387572,+2392.18,+61722.3,+1183.49,OK,OK
+2020-09-10 21:00:00 PDT,+5.1,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-09-10 22:00:00 PDT,+1.5,+280,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-10 23:00:00 PDT,+1.7,+340,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-09-11 00:00:00 PDT,+1.9,+0,+5,+270,+0.0363499,+2243.6,+61722.3,-131.385,OK,OK,+8,+180,+0.0561379,+3464.96,+61722.3,-137.012,OK,OK
+2020-09-11 01:00:00 PDT,+0.6,+30,+5,+270,+0.0360952,+2227.87,+61722.3,-250.265,OK,OK,+8,+180,+0.056767,+3503.79,+61722.3,-255.152,OK,OK
+2020-09-11 02:00:00 PDT,+0.9,+60,+5,+270,+0.0360431,+2224.66,+61722.3,-109.91,OK,OK,+8,+180,+0.0573947,+3542.53,+61722.3,-109.985,OK,OK
+2020-09-11 03:00:00 PDT,+1,+90,+5,+270,+0.0359255,+2217.4,+61722.3,-162.67,OK,OK,+8,+180,+0.056929,+3513.79,+61722.3,-164.617,OK,OK
+2020-09-11 04:00:00 PDT,+1.2,+120,+5,+270,+0.0358582,+2213.25,+61722.3,-131.696,OK,OK,+8,+180,+0.0567711,+3504.04,+61722.3,-133.729,OK,OK
+2020-09-11 05:00:00 PDT,+1.4,+150,+5,+270,+0.0358006,+2209.69,+61722.3,-57.7731,OK,OK,+8,+180,+0.0567316,+3501.6,+61722.3,-58.6766,OK,OK
+2020-09-11 06:00:00 PDT,+1.6,+180,+5,+270,+0.0358553,+2213.07,+61722.3,+68.3092,OK,OK,+8,+180,+0.05719,+3529.9,+61722.3,+68.5354,OK,OK
+2020-09-11 07:00:00 PDT,+1.9,+200,+5,+270,+0.0360901,+2227.56,+61722.3,+219.531,OK,OK,+8,+180,+0.0582278,+3593.95,+61722.3,+214.865,OK,OK
+2020-09-11 08:00:00 PDT,+2.2,+230,+5,+270,+0.0363786,+2245.37,+61722.3,+326.361,OK,OK,+8,+180,+0.0573748,+3541.3,+61722.3,+328.693,OK,OK
+2020-09-11 09:00:00 PDT,+2.6,+260,+5,+270,+0.0370442,+2286.45,+61722.3,+389.866,OK,OK,+8,+180,+0.0552098,+3407.67,+61722.3,+422.789,OK,OK
+2020-09-11 10:00:00 PDT,+2.6,+290,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-09-11 11:00:00 PDT,+3.1,+310,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-09-11 12:00:00 PDT,+3.8,+290,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-09-11 13:00:00 PDT,+4.4,+260,+5,+270,+0.0413302,+2550.99,+61722.3,+196.625,OK,OK,+8,+180,+0.0450186,+2778.65,+61722.3,+325.983,OK,OK
+2020-09-11 14:00:00 PDT,+5.1,+240,+5,+270,+0.0434724,+2683.22,+61722.3,+396.833,OK,OK,+8,+180,+0.0424318,+2618.99,+61722.3,+753.445,OK,OK
+2020-09-11 15:00:00 PDT,+6.2,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-11 16:00:00 PDT,+6.2,+260,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-09-11 17:00:00 PDT,+8.7,+240,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-09-11 18:00:00 PDT,+7.7,+240,+5,+270,+0.0699163,+4315.39,+61722.3,+102.655,OK,OK,+8,+180,+0.0189048,+1166.84,+61722.3,+2221.49,OK,OK
+2020-09-11 19:00:00 PDT,+7.7,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-11 20:00:00 PDT,+7.7,+250,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-11 21:00:00 PDT,+5.1,+260,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-11 22:00:00 PDT,+5.1,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-09-11 23:00:00 PDT,+5.1,+230,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-09-12 00:00:00 PDT,+2.9,+270,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-09-12 01:00:00 PDT,+2.9,+250,+5,+270,+0.0387536,+2391.96,+61722.3,+311.841,OK,OK,+8,+180,+0.0505033,+3117.18,+61722.3,+404.494,OK,OK
+2020-09-12 02:00:00 PDT,+2.8,+260,+5,+270,+0.0387536,+2391.96,+61722.3,+311.841,OK,OK,+8,+180,+0.0505033,+3117.18,+61722.3,+404.494,OK,OK
+2020-09-12 03:00:00 PDT,+2.8,+240,+5,+270,+0.0384333,+2372.19,+61722.3,+360.24,OK,OK,+8,+180,+0.0514054,+3172.86,+61722.3,+450.81,OK,OK
+2020-09-12 04:00:00 PDT,+2.8,+320,+5,+270,+0.0384333,+2372.19,+61722.3,+360.24,OK,OK,+8,+180,+0.0514054,+3172.86,+61722.3,+450.81,OK,OK
+2020-09-12 05:00:00 PDT,+2.7,+320,+5,+270,+0.0384333,+2372.19,+61722.3,+360.24,OK,OK,+8,+180,+0.0514054,+3172.86,+61722.3,+450.81,OK,OK
+2020-09-12 06:00:00 PDT,+2.7,+330,+5,+270,+0.0375767,+2319.32,+61722.3,-38.0799,OK,OK,+8,+180,+0.0523231,+3229.5,+61722.3,-45.6286,OK,OK
+2020-09-12 07:00:00 PDT,+2.6,+330,+5,+270,+0.0375767,+2319.32,+61722.3,-38.0799,OK,OK,+8,+180,+0.0523231,+3229.5,+61722.3,-45.6286,OK,OK
+2020-09-12 08:00:00 PDT,+2.6,+340,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-09-12 09:00:00 PDT,+2.1,+340,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-09-12 10:00:00 PDT,+3.1,+340,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-09-12 11:00:00 PDT,+3.1,+350,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-12 12:00:00 PDT,+3.1,+350,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-12 13:00:00 PDT,+1.5,+310,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-12 14:00:00 PDT,+2.6,+270,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-09-12 15:00:00 PDT,+3.6,+270,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-09-12 16:00:00 PDT,+4.1,+240,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-09-12 17:00:00 PDT,+7.7,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-12 18:00:00 PDT,+7.7,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-12 19:00:00 PDT,+7.7,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-12 20:00:00 PDT,+6.2,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-12 21:00:00 PDT,+5.1,+240,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-09-12 22:00:00 PDT,+4.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-12 23:00:00 PDT,+5.4,+220,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-13 00:00:00 PDT,+5.1,+210,+5,+270,+0.0419307,+2588.06,+61722.3,+729.099,OK,OK,+8,+180,+0.0471674,+2911.28,+61722.3,+1113.23,OK,OK
+2020-09-13 01:00:00 PDT,+3.4,+300,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-09-13 02:00:00 PDT,+3.1,+180,+5,+270,+0.0397226,+2451.77,+61722.3,+120.571,OK,OK,+8,+180,+0.0477915,+2949.8,+61722.3,+175.206,OK,OK
+2020-09-13 03:00:00 PDT,+2.9,+160,+5,+270,+0.0361569,+2231.68,+61722.3,+443.895,OK,OK,+8,+180,+0.0598971,+3696.98,+61722.3,+416.3,OK,OK
+2020-09-13 04:00:00 PDT,+2.5,+200,+5,+270,+0.035408,+2185.46,+61722.3,+229.989,OK,OK,+8,+180,+0.0570489,+3521.19,+61722.3,+229.964,OK,OK
+2020-09-13 05:00:00 PDT,+2.3,+70,+5,+270,+0.0365944,+2258.69,+61722.3,+427.234,OK,OK,+8,+180,+0.0571952,+3530.22,+61722.3,+434.095,OK,OK
+2020-09-13 06:00:00 PDT,+2,+120,+5,+270,+0.0352195,+2173.83,+61722.3,-341.386,OK,OK,+8,+180,+0.0529757,+3269.78,+61722.3,-386.987,OK,OK
+2020-09-13 07:00:00 PDT,+1.8,+100,+5,+270,+0.0353517,+2181.99,+61722.3,-91.5857,OK,OK,+8,+180,+0.0551531,+3404.17,+61722.3,-96.8345,OK,OK
+2020-09-13 08:00:00 PDT,+1.5,+90,+5,+270,+0.035424,+2186.45,+61722.3,-182.063,OK,OK,+8,+180,+0.0550445,+3397.47,+61722.3,-193.366,OK,OK
+2020-09-13 09:00:00 PDT,+2.1,+70,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-09-13 10:00:00 PDT,+3.1,+60,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-09-13 11:00:00 PDT,+2.6,+360,+5,+270,+0.0350989,+2166.38,+61722.3,-420.858,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,-545.559,OK,OK
+2020-09-13 12:00:00 PDT,+2.6,+300,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-09-13 13:00:00 PDT,+2.6,+300,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-09-13 14:00:00 PDT,+2.6,+270,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-09-13 15:00:00 PDT,+5.1,+240,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-09-13 16:00:00 PDT,+4.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-13 17:00:00 PDT,+5.1,+240,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-09-13 18:00:00 PDT,+6.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-13 19:00:00 PDT,+6.7,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-09-13 20:00:00 PDT,+6.2,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-09-13 21:00:00 PDT,+5.1,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-09-13 22:00:00 PDT,+3.6,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-13 23:00:00 PDT,+1.8,+210,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-09-14 00:00:00 PDT,+1.6,+190,+5,+270,+0.0364762,+2251.39,+61722.3,+325.206,OK,OK,+8,+180,+0.0569086,+3512.53,+61722.3,+332.417,OK,OK
+2020-09-14 01:00:00 PDT,+0,+0,+5,+270,+0.0361911,+2233.79,+61722.3,+251.642,OK,OK,+8,+180,+0.0578404,+3570.04,+61722.3,+249.364,OK,OK
+2020-09-14 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-14 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-14 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-14 05:00:00 PDT,+0.6,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-14 06:00:00 PDT,+1,+60,+5,+270,+0.036001,+2222.06,+61722.3,-80.2776,OK,OK,+8,+180,+0.0573154,+3537.63,+61722.3,-80.4543,OK,OK
+2020-09-14 07:00:00 PDT,+0.8,+40,+5,+270,+0.03589,+2215.21,+61722.3,-179.883,OK,OK,+8,+180,+0.0567666,+3503.76,+61722.3,-182.78,OK,OK
+2020-09-14 08:00:00 PDT,+0,+0,+5,+270,+0.0359905,+2221.42,+61722.3,-150.112,OK,OK,+8,+180,+0.0571556,+3527.77,+61722.3,-151.096,OK,OK
+2020-09-14 09:00:00 PDT,+2.6,+140,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-14 10:00:00 PDT,+2.6,+160,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-09-14 11:00:00 PDT,+2.6,+180,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-09-14 12:00:00 PDT,+2.6,+200,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-09-14 13:00:00 PDT,+2.6,+190,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-09-14 14:00:00 PDT,+2.6,+160,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-09-14 15:00:00 PDT,+3.1,+180,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-09-14 16:00:00 PDT,+5.1,+200,+5,+270,+0.0361569,+2231.68,+61722.3,+443.895,OK,OK,+8,+180,+0.0598971,+3696.98,+61722.3,+416.3,OK,OK
+2020-09-14 17:00:00 PDT,+5.1,+230,+5,+270,+0.0382375,+2360.1,+61722.3,+839.135,OK,OK,+8,+180,+0.0558772,+3448.87,+61722.3,+910.286,OK,OK
+2020-09-14 18:00:00 PDT,+5.1,+240,+5,+270,+0.0382375,+2360.1,+61722.3,+839.135,OK,OK,+8,+180,+0.0558772,+3448.87,+61722.3,+910.286,OK,OK
+2020-09-14 19:00:00 PDT,+4.1,+240,+5,+270,+0.0382375,+2360.1,+61722.3,+839.135,OK,OK,+8,+180,+0.0558772,+3448.87,+61722.3,+910.286,OK,OK
+2020-09-14 20:00:00 PDT,+3.1,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-14 21:00:00 PDT,+2.6,+220,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-09-14 22:00:00 PDT,+2.1,+220,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-09-14 23:00:00 PDT,+1.8,+220,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-09-15 00:00:00 PDT,+1,+200,+5,+270,+0.0365983,+2258.93,+61722.3,+330.882,OK,OK,+8,+180,+0.056439,+3483.54,+61722.3,+343.509,OK,OK
+2020-09-15 01:00:00 PDT,+0,+0,+5,+270,+0.0361662,+2232.26,+61722.3,+172.64,OK,OK,+8,+180,+0.0575532,+3552.31,+61722.3,+172.364,OK,OK
+2020-09-15 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-15 03:00:00 PDT,+1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-15 04:00:00 PDT,+1.2,+210,+5,+270,+0.0362393,+2236.77,+61722.3,+188.187,OK,OK,+8,+180,+0.0572562,+3533.98,+61722.3,+189.695,OK,OK
+2020-09-15 05:00:00 PDT,+0,+0,+5,+270,+0.0362571,+2237.87,+61722.3,+219.259,OK,OK,+8,+180,+0.0573045,+3536.96,+61722.3,+220.787,OK,OK
+2020-09-15 06:00:00 PDT,+0.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-15 07:00:00 PDT,+0.3,+300,+5,+270,+0.0360871,+2227.38,+61722.3,+4.93857,OK,OK,+8,+180,+0.0576132,+3556.01,+61722.3,+4.91554,OK,OK
+2020-09-15 08:00:00 PDT,+2.6,+280,+5,+270,+0.0361036,+2228.39,+61722.3,+14.7874,OK,OK,+8,+180,+0.0575447,+3551.79,+61722.3,+14.7508,OK,OK
+2020-09-15 09:00:00 PDT,+3.1,+190,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-09-15 10:00:00 PDT,+2.6,+220,+5,+270,+0.0364897,+2252.23,+61722.3,+495.36,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+485.515,OK,OK
+2020-09-15 11:00:00 PDT,+2.1,+250,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-09-15 12:00:00 PDT,+2.6,+310,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-09-15 13:00:00 PDT,+2.1,+270,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-09-15 14:00:00 PDT,+2.6,+230,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-09-15 15:00:00 PDT,+3.1,+250,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-09-15 16:00:00 PDT,+2.6,+240,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-09-15 17:00:00 PDT,+4.6,+230,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-09-15 18:00:00 PDT,+5.7,+230,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-09-15 19:00:00 PDT,+5.1,+270,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-09-15 20:00:00 PDT,+3.6,+260,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-09-15 21:00:00 PDT,+4.1,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-09-15 22:00:00 PDT,+6.2,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-09-15 23:00:00 PDT,+5,+160,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-09-16 00:00:00 PDT,+3,+260,+5,+270,+0.0341029,+2104.91,+61722.3,+382.055,OK,OK,+8,+180,+0.0559435,+3452.96,+61722.3,+386.523,OK,OK
+2020-09-16 01:00:00 PDT,+5,+160,+5,+270,+0.0388625,+2398.68,+61722.3,+373.749,OK,OK,+8,+180,+0.050492,+3116.48,+61722.3,+485.703,OK,OK
+2020-09-16 02:00:00 PDT,+1.9,+210,+5,+270,+0.0341029,+2104.91,+61722.3,+382.055,OK,OK,+8,+180,+0.0559435,+3452.96,+61722.3,+386.523,OK,OK
+2020-09-16 03:00:00 PDT,+1.3,+190,+5,+270,+0.0365218,+2254.21,+61722.3,+342.474,OK,OK,+8,+180,+0.0568273,+3507.51,+61722.3,+351.155,OK,OK
+2020-09-16 04:00:00 PDT,+0.7,+170,+5,+270,+0.0361549,+2231.56,+61722.3,+204.047,OK,OK,+8,+180,+0.0577661,+3565.45,+61722.3,+202.483,OK,OK
+2020-09-16 05:00:00 PDT,+0.2,+150,+5,+270,+0.0360649,+2226,+61722.3,+76.7181,OK,OK,+8,+180,+0.0576636,+3559.12,+61722.3,+76.225,OK,OK
+2020-09-16 06:00:00 PDT,+0,+0,+5,+270,+0.0360803,+2226.96,+61722.3,+9.87706,OK,OK,+8,+180,+0.0576129,+3556,+61722.3,+9.82993,OK,OK
+2020-09-16 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-16 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-16 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-16 10:00:00 PDT,+2.6,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-16 11:00:00 PDT,+2.6,+120,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-09-16 12:00:00 PDT,+3.1,+170,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-09-16 13:00:00 PDT,+3.1,+200,+5,+270,+0.0356987,+2203.4,+61722.3,+347.019,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+335.395,OK,OK
+2020-09-16 14:00:00 PDT,+2.6,+220,+5,+270,+0.0356987,+2203.4,+61722.3,+347.019,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+335.395,OK,OK
+2020-09-16 15:00:00 PDT,+2.6,+220,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-09-16 16:00:00 PDT,+2.6,+260,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-09-16 17:00:00 PDT,+3.1,+240,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-09-16 18:00:00 PDT,+5.1,+220,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-09-16 19:00:00 PDT,+5.1,+240,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-09-16 20:00:00 PDT,+4.1,+240,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-09-16 21:00:00 PDT,+4.6,+280,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-16 22:00:00 PDT,+4.6,+340,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-09-16 23:00:00 PDT,+4.1,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-09-17 00:00:00 PDT,+2,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-09-17 01:00:00 PDT,+4.1,+350,+5,+270,+0.0371454,+2292.7,+61722.3,+145.199,OK,OK,+8,+180,+0.0541061,+3339.55,+61722.3,+163.142,OK,OK
+2020-09-17 02:00:00 PDT,+2,+140,+5,+270,+0.0373339,+2304.33,+61722.3,-364.909,OK,OK,+8,+180,+0.0512224,+3161.56,+61722.3,-452.602,OK,OK
+2020-09-17 03:00:00 PDT,+2.1,+350,+5,+270,+0.0355061,+2191.52,+61722.3,+31.8579,OK,OK,+8,+180,+0.0561622,+3466.46,+61722.3,+32.7436,OK,OK
+2020-09-17 04:00:00 PDT,+2.1,+350,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-09-17 05:00:00 PDT,+2.1,+280,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-09-17 06:00:00 PDT,+3.6,+320,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-09-17 07:00:00 PDT,+2.1,+260,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-09-17 08:00:00 PDT,+2.1,+360,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-09-17 09:00:00 PDT,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-09-17 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-17 11:00:00 PDT,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-17 12:00:00 PDT,+2.1,+310,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-09-17 13:00:00 PDT,+4.1,+280,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-09-17 14:00:00 PDT,+4.6,+260,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-09-17 15:00:00 PDT,+5.1,+240,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-09-17 16:00:00 PDT,+5.7,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-17 17:00:00 PDT,+5.1,+210,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-09-17 18:00:00 PDT,+6.2,+230,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-09-17 19:00:00 PDT,+5.1,+240,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-09-17 20:00:00 PDT,+7.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-17 21:00:00 PDT,+6.2,+250,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-17 22:00:00 PDT,+4.1,+240,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-09-17 23:00:00 PDT,+3.7,+220,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-18 00:00:00 PDT,+3.3,+190,+5,+270,+0.0385035,+2376.53,+61722.3,+605.183,OK,OK,+8,+180,+0.0526566,+3250.09,+61722.3,+727.163,OK,OK
+2020-09-18 01:00:00 PDT,+2.9,+170,+5,+270,+0.036545,+2255.64,+61722.3,+528.798,OK,OK,+8,+180,+0.0585533,+3614.04,+61722.3,+517.29,OK,OK
+2020-09-18 02:00:00 PDT,+2.5,+140,+5,+270,+0.0357459,+2206.32,+61722.3,+323.737,OK,OK,+8,+180,+0.0583408,+3600.93,+61722.3,+314.022,OK,OK
+2020-09-18 03:00:00 PDT,+2.1,+120,+5,+270,+0.0352081,+2173.12,+61722.3,+38.7745,OK,OK,+8,+180,+0.0553443,+3415.98,+61722.3,+40.6632,OK,OK
+2020-09-18 04:00:00 PDT,+1.6,+100,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-09-18 05:00:00 PDT,+1.2,+70,+5,+270,+0.0355467,+2194.02,+61722.3,-164.745,OK,OK,+8,+180,+0.0555845,+3430.8,+61722.3,-172.408,OK,OK
+2020-09-18 06:00:00 PDT,+2.3,+170,+5,+270,+0.0357869,+2208.85,+61722.3,-200.042,OK,OK,+8,+180,+0.0563544,+3478.32,+61722.3,-205.368,OK,OK
+2020-09-18 07:00:00 PDT,+0.4,+20,+5,+270,+0.03587,+2213.98,+61722.3,+254.913,OK,OK,+8,+180,+0.0580738,+3584.45,+61722.3,+249.601,OK,OK
+2020-09-18 08:00:00 PDT,+0,+0,+5,+270,+0.0360721,+2226.45,+61722.3,-69.0317,OK,OK,+8,+180,+0.0575395,+3551.47,+61722.3,-68.8332,OK,OK
+2020-09-18 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-18 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-18 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-18 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-18 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-18 14:00:00 PDT,+1.9,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-18 15:00:00 PDT,+3.8,+280,+5,+270,+0.0367303,+2267.08,+61722.3,-29.2496,OK,OK,+8,+180,+0.0549948,+3394.4,+61722.3,-31.7618,OK,OK
+2020-09-18 16:00:00 PDT,+5.7,+240,+5,+270,+0.0414714,+2559.71,+61722.3,+267.686,OK,OK,+8,+180,+0.045051,+2780.65,+61722.3,+443.717,OK,OK
+2020-09-18 17:00:00 PDT,+7.2,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-09-18 18:00:00 PDT,+8.7,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-18 19:00:00 PDT,+9.3,+240,+5,+270,+0.0699163,+4315.39,+61722.3,+102.655,OK,OK,+8,+180,+0.0189048,+1166.84,+61722.3,+2221.49,OK,OK
+2020-09-18 20:00:00 PDT,+5.7,+240,+5,+270,+0.0761698,+4701.37,+61722.3,-0.796922,OK,OK,+8,+180,+0.0182054,+1123.68,+61722.3,+2047.3,OK,OK
+2020-09-18 21:00:00 PDT,+4.6,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-09-18 22:00:00 PDT,+4.6,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-09-18 23:00:00 PDT,+4.1,+220,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-09-19 00:00:00 PDT,+3.7,+190,+5,+270,+0.0391406,+2415.84,+61722.3,+646.25,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+813.239,OK,OK
+2020-09-19 01:00:00 PDT,+3.2,+170,+5,+270,+0.036667,+2263.17,+61722.3,+596.486,OK,OK,+8,+180,+0.0587933,+3628.86,+61722.3,+581.091,OK,OK
+2020-09-19 02:00:00 PDT,+2.8,+140,+5,+270,+0.035674,+2201.88,+61722.3,+358.731,OK,OK,+8,+180,+0.0584976,+3610.6,+61722.3,+346.061,OK,OK
+2020-09-19 03:00:00 PDT,+2.3,+120,+5,+270,+0.0350098,+2160.89,+61722.3,+42.5711,OK,OK,+8,+180,+0.0547677,+3380.39,+61722.3,+45.3254,OK,OK
+2020-09-19 04:00:00 PDT,+1.8,+100,+5,+270,+0.0351537,+2169.77,+61722.3,-102.464,OK,OK,+8,+180,+0.0543597,+3355.21,+61722.3,-110.775,OK,OK
+2020-09-19 05:00:00 PDT,+1.4,+70,+5,+270,+0.035424,+2186.45,+61722.3,-182.063,OK,OK,+8,+180,+0.0550445,+3397.47,+61722.3,-193.366,OK,OK
+2020-09-19 06:00:00 PDT,+0.9,+50,+5,+270,+0.0356906,+2202.9,+61722.3,-230.101,OK,OK,+8,+180,+0.0558972,+3450.1,+61722.3,-239.083,OK,OK
+2020-09-19 07:00:00 PDT,+0.5,+20,+5,+270,+0.0359439,+2218.54,+61722.3,-167.973,OK,OK,+8,+180,+0.0569705,+3516.35,+61722.3,-169.834,OK,OK
+2020-09-19 08:00:00 PDT,+0,+0,+5,+270,+0.036065,+2226.01,+61722.3,-86.178,OK,OK,+8,+180,+0.0574933,+3548.62,+61722.3,-86.0305,OK,OK
+2020-09-19 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-19 10:00:00 PDT,+2.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-19 11:00:00 PDT,+2.6,+260,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-09-19 12:00:00 PDT,+3.6,+250,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-09-19 13:00:00 PDT,+2.6,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-09-19 14:00:00 PDT,+5.1,+240,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-09-19 15:00:00 PDT,+7.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-19 16:00:00 PDT,+7.7,+230,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-19 17:00:00 PDT,+7.7,+220,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-19 18:00:00 PDT,+7.7,+210,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-19 19:00:00 PDT,+8.2,+220,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-19 20:00:00 PDT,+7.8,+230,+5,+270,+0.0525485,+3243.41,+61722.3,+639.016,OK,OK,+8,+180,+0.0345815,+2134.45,+61722.3,+1940.99,OK,OK
+2020-09-19 21:00:00 PDT,+7.3,+240,+5,+270,+0.0562134,+3469.62,+61722.3,+435.359,OK,OK,+8,+180,+0.0293674,+1812.62,+61722.3,+1922.07,OK,OK
+2020-09-19 22:00:00 PDT,+6.9,+250,+5,+270,+0.0575626,+3552.89,+61722.3,+323.333,OK,OK,+8,+180,+0.0269656,+1664.38,+61722.3,+1766.92,OK,OK
+2020-09-19 23:00:00 PDT,+6.5,+260,+5,+270,+0.0580214,+3581.21,+61722.3,+251.934,OK,OK,+8,+180,+0.0256865,+1585.43,+61722.3,+1571.72,OK,OK
+2020-09-20 00:00:00 PDT,+6,+270,+5,+270,+0.0570921,+3523.85,+61722.3,+214.742,OK,OK,+8,+180,+0.025894,+1598.23,+61722.3,+1319.88,OK,OK
+2020-09-20 01:00:00 PDT,+5.6,+280,+5,+270,+0.0542305,+3347.23,+61722.3,+206.011,OK,OK,+8,+180,+0.0282969,+1746.55,+61722.3,+1011.03,OK,OK
+2020-09-20 02:00:00 PDT,+5.2,+290,+5,+270,+0.0515098,+3179.3,+61722.3,+186.54,OK,OK,+8,+180,+0.0309247,+1908.74,+61722.3,+736.956,OK,OK
+2020-09-20 03:00:00 PDT,+4.8,+300,+5,+270,+0.0484421,+2989.96,+61722.3,+157.249,OK,OK,+8,+180,+0.0343376,+2119.39,+61722.3,+484.029,OK,OK
+2020-09-20 04:00:00 PDT,+4.3,+310,+5,+270,+0.0453709,+2800.39,+61722.3,+109.75,OK,OK,+8,+180,+0.0382054,+2358.12,+61722.3,+263.302,OK,OK
+2020-09-20 05:00:00 PDT,+3.9,+320,+5,+270,+0.0421793,+2603.4,+61722.3,+41.544,OK,OK,+8,+180,+0.042884,+2646.9,+61722.3,+76.5226,OK,OK
+2020-09-20 06:00:00 PDT,+3.5,+330,+5,+270,+0.039984,+2467.9,+61722.3,-44.2451,OK,OK,+8,+180,+0.0465996,+2876.23,+61722.3,-67.6807,OK,OK
+2020-09-20 07:00:00 PDT,+3,+340,+5,+270,+0.0383306,+2365.85,+61722.3,-134.314,OK,OK,+8,+180,+0.049918,+3081.05,+61722.3,-176.963,OK,OK
+2020-09-20 08:00:00 PDT,+2.6,+350,+5,+270,+0.0371061,+2290.27,+61722.3,-209.818,OK,OK,+8,+180,+0.0530045,+3271.56,+61722.3,-244.073,OK,OK
+2020-09-20 09:00:00 PDT,+0,+0,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-09-20 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-20 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-20 12:00:00 PDT,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-20 13:00:00 PDT,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-09-20 14:00:00 PDT,+4.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-20 15:00:00 PDT,+4.6,+250,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-09-20 16:00:00 PDT,+4.1,+270,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-09-20 17:00:00 PDT,+10.3,+230,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-09-20 18:00:00 PDT,+7.7,+230,+5,+270,+0.0769218,+4747.79,+61722.3,+49.3211,OK,OK,+8,+180,+0.0197847,+1221.15,+61722.3,+2348.38,OK,OK
+2020-09-20 19:00:00 PDT,+5.1,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-20 20:00:00 PDT,+5.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-20 21:00:00 PDT,+4.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-20 22:00:00 PDT,+4.1,+230,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-09-20 23:00:00 PDT,+3.7,+220,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-09-21 00:00:00 PDT,+1.3,+200,+5,+270,+0.0385035,+2376.53,+61722.3,+605.183,OK,OK,+8,+180,+0.0526566,+3250.09,+61722.3,+727.163,OK,OK
+2020-09-21 01:00:00 PDT,+0.8,+170,+5,+270,+0.0362222,+2235.72,+61722.3,+224.132,OK,OK,+8,+180,+0.0575059,+3549.4,+61722.3,+224.29,OK,OK
+2020-09-21 02:00:00 PDT,+1.5,+150,+5,+270,+0.0360587,+2225.62,+61722.3,+87.7087,OK,OK,+8,+180,+0.0576764,+3559.92,+61722.3,+87.105,OK,OK
+2020-09-21 03:00:00 PDT,+2.6,+130,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-09-21 04:00:00 PDT,+1.7,+100,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-09-21 05:00:00 PDT,+1.2,+70,+5,+270,+0.0354861,+2190.28,+61722.3,-173.548,OK,OK,+8,+180,+0.0553224,+3414.62,+61722.3,-182.913,OK,OK
+2020-09-21 06:00:00 PDT,+1.9,+60,+5,+270,+0.0357869,+2208.85,+61722.3,-200.042,OK,OK,+8,+180,+0.0563544,+3478.32,+61722.3,-205.368,OK,OK
+2020-09-21 07:00:00 PDT,+2.5,+40,+5,+270,+0.0354799,+2189.9,+61722.3,-318.279,OK,OK,+8,+180,+0.0545386,+3366.24,+61722.3,-343.781,OK,OK
+2020-09-21 08:00:00 PDT,+2.6,+20,+5,+270,+0.0354292,+2186.77,+61722.3,-409.973,OK,OK,+8,+180,+0.0530774,+3276.06,+61722.3,-464.429,OK,OK
+2020-09-21 09:00:00 PDT,+0,+0,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-09-21 10:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-21 11:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-09-21 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-21 13:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-21 14:00:00 PDT,+2.6,+290,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-09-21 15:00:00 PDT,+3.6,+250,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-09-21 16:00:00 PDT,+7.2,+240,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-09-21 17:00:00 PDT,+7.7,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-21 18:00:00 PDT,+7.7,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-21 19:00:00 PDT,+8.2,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-21 20:00:00 PDT,+7.7,+260,+5,+270,+0.0651421,+4020.72,+61722.3,+185.74,OK,OK,+8,+180,+0.0211376,+1304.66,+61722.3,+2121.37,OK,OK
+2020-09-21 21:00:00 PDT,+4.1,+240,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-21 22:00:00 PDT,+2.6,+220,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-21 23:00:00 PDT,+3.6,+210,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-09-22 00:00:00 PDT,+3.1,+180,+5,+270,+0.0377319,+2328.9,+61722.3,+610.945,OK,OK,+8,+180,+0.0547856,+3381.49,+61722.3,+678.634,OK,OK
+2020-09-22 01:00:00 PDT,+2,+170,+5,+270,+0.0361569,+2231.68,+61722.3,+443.895,OK,OK,+8,+180,+0.0598971,+3696.98,+61722.3,+416.3,OK,OK
+2020-09-22 02:00:00 PDT,+2,+140,+5,+270,+0.0359219,+2217.18,+61722.3,+221,OK,OK,+8,+180,+0.0579635,+3577.64,+61722.3,+217.243,OK,OK
+2020-09-22 03:00:00 PDT,+2,+90,+5,+270,+0.0359219,+2217.18,+61722.3,+221,OK,OK,+8,+180,+0.0579635,+3577.64,+61722.3,+217.243,OK,OK
+2020-09-22 04:00:00 PDT,+2.1,+350,+5,+270,+0.0359219,+2217.18,+61722.3,+221,OK,OK,+8,+180,+0.0579635,+3577.64,+61722.3,+217.243,OK,OK
+2020-09-22 05:00:00 PDT,+0.6,+10,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-09-22 06:00:00 PDT,+0.6,+10,+5,+270,+0.0360705,+2226.35,+61722.3,-93.4462,OK,OK,+8,+180,+0.0574846,+3548.08,+61722.3,-93.3176,OK,OK
+2020-09-22 07:00:00 PDT,+0.6,+0,+5,+270,+0.0360705,+2226.35,+61722.3,-93.4462,OK,OK,+8,+180,+0.0574846,+3548.08,+61722.3,-93.3176,OK,OK
+2020-09-22 08:00:00 PDT,+2.1,+0,+5,+270,+0.0360705,+2226.35,+61722.3,-93.4462,OK,OK,+8,+180,+0.0574846,+3548.08,+61722.3,-93.3176,OK,OK
+2020-09-22 09:00:00 PDT,+2.1,+360,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-09-22 10:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-09-22 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-22 12:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-22 13:00:00 PDT,+2.6,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-09-22 14:00:00 PDT,+2.6,+230,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-09-22 15:00:00 PDT,+6.2,+190,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-09-22 16:00:00 PDT,+7,+220,+5,+270,+0.0378083,+2333.61,+61722.3,+1049.28,OK,OK,+8,+180,+0.0609244,+3760.39,+61722.3,+989.227,OK,OK
+2020-09-22 17:00:00 PDT,+7.7,+250,+5,+270,+0.0471512,+2910.28,+61722.3,+719.33,OK,OK,+8,+180,+0.0403972,+2493.41,+61722.3,+1546.07,OK,OK
+2020-09-22 18:00:00 PDT,+7.7,+230,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-09-22 19:00:00 PDT,+7.7,+240,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-09-22 20:00:00 PDT,+4.1,+230,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-09-22 21:00:00 PDT,+2.6,+230,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-09-22 22:00:00 PDT,+3.1,+210,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-09-22 23:00:00 PDT,+2.6,+210,+5,+270,+0.0372857,+2301.36,+61722.3,+537.74,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+580.211,OK,OK
+2020-09-23 00:00:00 PDT,+2.1,+190,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-09-23 01:00:00 PDT,+1.5,+160,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-09-23 02:00:00 PDT,+2.5,+140,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-09-23 03:00:00 PDT,+2.6,+120,+5,+270,+0.0352081,+2173.12,+61722.3,+38.7745,OK,OK,+8,+180,+0.0553443,+3415.98,+61722.3,+40.6632,OK,OK
+2020-09-23 04:00:00 PDT,+0,+0,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-09-23 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-23 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-23 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-23 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-23 09:00:00 PDT,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-23 10:00:00 PDT,+1.5,+50,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-09-23 11:00:00 PDT,+2.6,+80,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-09-23 12:00:00 PDT,+6.2,+100,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-09-23 13:00:00 PDT,+2.6,+110,+5,+270,+0.0410537,+2533.93,+61722.3,+61.4815,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,-428.032,OK,OK
+2020-09-23 14:00:00 PDT,+5.1,+120,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-09-23 15:00:00 PDT,+7.7,+200,+5,+270,+0.034753,+2145.03,+61722.3,-105.418,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,-216.711,OK,OK
+2020-09-23 16:00:00 PDT,+7.7,+200,+5,+270,+0.0411029,+2536.96,+61722.3,+1190.5,OK,OK,+8,+180,+0.0537694,+3318.77,+61722.3,+1438.39,OK,OK
+2020-09-23 17:00:00 PDT,+6.2,+230,+5,+270,+0.0411029,+2536.96,+61722.3,+1190.5,OK,OK,+8,+180,+0.0537694,+3318.77,+61722.3,+1438.39,OK,OK
+2020-09-23 18:00:00 PDT,+2.6,+240,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-09-23 19:00:00 PDT,+3.1,+250,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-09-23 20:00:00 PDT,+3.6,+260,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-09-23 21:00:00 PDT,+2.6,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-09-23 22:00:00 PDT,+0,+0,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-09-23 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 00:00:00 PDT,+1.2,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 01:00:00 PDT,+0,+0,+5,+270,+0.0357675,+2207.65,+61722.3,-127.055,OK,OK,+8,+180,+0.056475,+3485.76,+61722.3,-129.938,OK,OK
+2020-09-24 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 07:00:00 PDT,+0.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 08:00:00 PDT,+0,+0,+5,+270,+0.0360858,+2227.3,+61722.3,-8.06482,OK,OK,+8,+180,+0.0576166,+3556.23,+61722.3,-8.02628,OK,OK
+2020-09-24 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 12:00:00 PDT,+4.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 13:00:00 PDT,+2.1,+50,+5,+270,+0.0348718,+2152.37,+61722.3,-240.411,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,-405.442,OK,OK
+2020-09-24 14:00:00 PDT,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-09-24 15:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 16:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 17:00:00 PDT,+7.7,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-24 18:00:00 PDT,+5.1,+210,+5,+270,+0.0388525,+2398.06,+61722.3,+1349.49,OK,OK,+8,+180,+0.0627316,+3871.93,+61722.3,+1243.53,OK,OK
+2020-09-24 19:00:00 PDT,+4.1,+200,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-09-24 20:00:00 PDT,+5.1,+120,+5,+270,+0.0374665,+2312.52,+61722.3,+686.558,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+722.501,OK,OK
+2020-09-24 21:00:00 PDT,+5.1,+120,+5,+270,+0.034753,+2145.03,+61722.3,-105.418,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,-216.711,OK,OK
+2020-09-24 22:00:00 PDT,+3.1,+120,+5,+270,+0.034753,+2145.03,+61722.3,-105.418,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,-216.711,OK,OK
+2020-09-24 23:00:00 PDT,+3.8,+120,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-09-25 00:00:00 PDT,+3.9,+130,+5,+270,+0.0343201,+2118.31,+61722.3,-131.95,OK,OK,+8,+180,+0.048778,+3010.69,+61722.3,-175.101,OK,OK
+2020-09-25 01:00:00 PDT,+3.2,+130,+5,+270,+0.0341914,+2110.37,+61722.3,-48.6956,OK,OK,+8,+180,+0.0500961,+3092.05,+61722.3,-60.9007,OK,OK
+2020-09-25 02:00:00 PDT,+2.2,+30,+5,+270,+0.0346115,+2136.3,+61722.3,-44.7069,OK,OK,+8,+180,+0.0525368,+3242.69,+61722.3,-51.0614,OK,OK
+2020-09-25 03:00:00 PDT,+1.6,+130,+5,+270,+0.0356434,+2199.99,+61722.3,-369.192,OK,OK,+8,+180,+0.0545726,+3368.35,+61722.3,-399.317,OK,OK
+2020-09-25 04:00:00 PDT,+2,+130,+5,+270,+0.0356434,+2199.99,+61722.3,-25.635,OK,OK,+8,+180,+0.0563442,+3477.69,+61722.3,-26.2644,OK,OK
+2020-09-25 05:00:00 PDT,+2.4,+130,+5,+270,+0.0354159,+2185.95,+61722.3,-31.3229,OK,OK,+8,+180,+0.0556273,+3433.44,+61722.3,-32.6698,OK,OK
+2020-09-25 06:00:00 PDT,+2.8,+140,+5,+270,+0.0351588,+2170.08,+61722.3,-36.4933,OK,OK,+8,+180,+0.054753,+3379.48,+61722.3,-38.9601,OK,OK
+2020-09-25 07:00:00 PDT,+3.6,+140,+5,+270,+0.0350098,+2160.89,+61722.3,+42.5711,OK,OK,+8,+180,+0.0547677,+3380.39,+61722.3,+45.3254,OK,OK
+2020-09-25 08:00:00 PDT,+3.7,+140,+5,+270,+0.0344432,+2125.91,+61722.3,+50.9958,OK,OK,+8,+180,+0.0529191,+3266.29,+61722.3,+57.3255,OK,OK
+2020-09-25 09:00:00 PDT,+4.1,+140,+5,+270,+0.0343715,+2121.49,+61722.3,+51.8405,OK,OK,+8,+180,+0.0526566,+3250.09,+61722.3,+58.7719,OK,OK
+2020-09-25 10:00:00 PDT,+3.1,+150,+5,+270,+0.0340916,+2104.21,+61722.3,+54.6639,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+64.4116,OK,OK
+2020-09-25 11:00:00 PDT,+3.1,+140,+5,+270,+0.0350114,+2160.98,+61722.3,+143.482,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+149.222,OK,OK
+2020-09-25 12:00:00 PDT,+2.1,+200,+5,+270,+0.0350114,+2160.98,+61722.3,+143.482,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+149.222,OK,OK
+2020-09-25 13:00:00 PDT,+2.1,+250,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-09-25 14:00:00 PDT,+2.1,+250,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-09-25 15:00:00 PDT,+3.1,+250,+5,+270,+0.0364439,+2249.4,+61722.3,+360.156,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+363.7,OK,OK
+2020-09-25 16:00:00 PDT,+2.6,+260,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-09-25 17:00:00 PDT,+3.1,+260,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-09-25 18:00:00 PDT,+3.4,+260,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-09-25 19:00:00 PDT,+3.6,+260,+5,+270,+0.0398767,+2461.28,+61722.3,+393.408,OK,OK,+8,+180,+0.0484829,+2992.47,+61722.3,+557.525,OK,OK
+2020-09-25 20:00:00 PDT,+4.1,+230,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-09-25 21:00:00 PDT,+3.1,+260,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-09-25 22:00:00 PDT,+3,+300,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-09-25 23:00:00 PDT,+2.9,+10,+5,+270,+0.0387144,+2389.54,+61722.3,+115.573,OK,OK,+8,+180,+0.0499568,+3083.44,+61722.3,+152.808,OK,OK
+2020-09-26 00:00:00 PDT,+2.9,+60,+5,+270,+0.035883,+2214.78,+61722.3,-410.959,OK,OK,+8,+180,+0.0544189,+3358.86,+61722.3,-448.276,OK,OK
+2020-09-26 01:00:00 PDT,+2.8,+80,+5,+270,+0.035883,+2214.78,+61722.3,-410.959,OK,OK,+8,+180,+0.0544189,+3358.86,+61722.3,-448.276,OK,OK
+2020-09-26 02:00:00 PDT,+2.7,+110,+5,+270,+0.0349492,+2157.14,+61722.3,-342.213,OK,OK,+8,+180,+0.0507611,+3133.09,+61722.3,-419.625,OK,OK
+2020-09-26 03:00:00 PDT,+4.1,+130,+5,+270,+0.0348622,+2151.77,+61722.3,-182.328,OK,OK,+8,+180,+0.0524069,+3234.67,+61722.3,-209.896,OK,OK
+2020-09-26 04:00:00 PDT,+4,+150,+5,+270,+0.0340992,+2104.68,+61722.3,-49.1388,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,-63.5384,OK,OK
+2020-09-26 05:00:00 PDT,+3.9,+180,+5,+270,+0.0343737,+2121.62,+61722.3,+176.035,OK,OK,+8,+180,+0.054127,+3340.84,+61722.3,+189.614,OK,OK
+2020-09-26 06:00:00 PDT,+2.4,+320,+5,+270,+0.0362647,+2238.34,+61722.3,+576.056,OK,OK,+8,+180,+0.061223,+3778.82,+61722.3,+523.732,OK,OK
+2020-09-26 07:00:00 PDT,+2.3,+230,+5,+270,+0.0372024,+2296.22,+61722.3,-35.1409,OK,OK,+8,+180,+0.0534331,+3298.01,+61722.3,-40.3717,OK,OK
+2020-09-26 08:00:00 PDT,+2.2,+100,+5,+270,+0.0371413,+2292.45,+61722.3,+404.816,OK,OK,+8,+180,+0.0549863,+3393.88,+61722.3,+442.67,OK,OK
+2020-09-26 09:00:00 PDT,+2.1,+280,+5,+270,+0.0351699,+2170.76,+61722.3,-212.784,OK,OK,+8,+180,+0.0537759,+3319.17,+61722.3,-234.566,OK,OK
+2020-09-26 10:00:00 PDT,+2.6,+300,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-09-26 11:00:00 PDT,+2.6,+280,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-09-26 12:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-09-26 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-26 14:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-26 15:00:00 PDT,+3.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-26 16:00:00 PDT,+4.1,+240,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-09-26 17:00:00 PDT,+3.6,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-26 18:00:00 PDT,+5.1,+260,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-09-26 19:00:00 PDT,+5.7,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-09-26 20:00:00 PDT,+3.6,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-09-26 21:00:00 PDT,+2.6,+270,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-09-26 22:00:00 PDT,+3.6,+250,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-09-26 23:00:00 PDT,+3,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-09-27 00:00:00 PDT,+2.9,+230,+5,+270,+0.0390069,+2407.59,+61722.3,+254.494,OK,OK,+8,+180,+0.0497525,+3070.84,+61722.3,+340.286,OK,OK
+2020-09-27 01:00:00 PDT,+2.2,+250,+5,+270,+0.0378499,+2336.18,+61722.3,+486.235,OK,OK,+8,+180,+0.0534404,+3298.46,+61722.3,+564.096,OK,OK
+2020-09-27 02:00:00 PDT,+0.6,+330,+5,+270,+0.0373278,+2303.96,+61722.3,+343.171,OK,OK,+8,+180,+0.0541535,+3342.48,+61722.3,+386.123,OK,OK
+2020-09-27 03:00:00 PDT,+0.5,+330,+5,+270,+0.0361284,+2229.93,+61722.3,-29.4508,OK,OK,+8,+180,+0.0573947,+3542.53,+61722.3,-29.5141,OK,OK
+2020-09-27 04:00:00 PDT,+0.4,+340,+5,+270,+0.036115,+2229.1,+61722.3,-24.5902,OK,OK,+8,+180,+0.0574641,+3546.81,+61722.3,-24.5895,OK,OK
+2020-09-27 05:00:00 PDT,+2.9,+250,+5,+270,+0.0360981,+2228.05,+61722.3,-32.1901,OK,OK,+8,+180,+0.0575395,+3551.47,+61722.3,-32.1119,OK,OK
+2020-09-27 06:00:00 PDT,+2.3,+260,+5,+270,+0.0384431,+2372.79,+61722.3,+415.914,OK,OK,+8,+180,+0.0516107,+3185.53,+61722.3,+516.922,OK,OK
+2020-09-27 07:00:00 PDT,+3.2,+300,+5,+270,+0.0375605,+2318.32,+61722.3,+316.667,OK,OK,+8,+180,+0.0534196,+3297.18,+61722.3,+365.976,OK,OK
+2020-09-27 08:00:00 PDT,+0,+0,+5,+270,+0.0391897,+2418.88,+61722.3,+118.508,OK,OK,+8,+180,+0.048907,+3018.65,+61722.3,+163.9,OK,OK
+2020-09-27 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-27 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-27 11:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-27 12:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-09-27 13:00:00 PDT,+3.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-27 14:00:00 PDT,+3.1,+320,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-09-27 15:00:00 PDT,+0,+0,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-09-27 16:00:00 PDT,+6.2,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-27 17:00:00 PDT,+5.1,+240,+5,+270,+0.0564444,+3483.88,+61722.3,+133.059,OK,OK,+8,+180,+0.0254529,+1571.01,+61722.3,+869.942,OK,OK
+2020-09-27 18:00:00 PDT,+6.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-27 19:00:00 PDT,+5.1,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-09-27 20:00:00 PDT,+4.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-27 21:00:00 PDT,+3.6,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-09-27 22:00:00 PDT,+2.6,+210,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-09-27 23:00:00 PDT,+2.4,+280,+5,+270,+0.0369171,+2278.6,+61722.3,+459.368,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+483.706,OK,OK
+2020-09-28 00:00:00 PDT,+2.1,+180,+5,+270,+0.0377748,+2331.55,+61722.3,+224.903,OK,OK,+8,+180,+0.0525743,+3245,+61722.3,+268.028,OK,OK
+2020-09-28 01:00:00 PDT,+1.8,+150,+5,+270,+0.0361002,+2228.18,+61722.3,+291.497,OK,OK,+8,+180,+0.0586659,+3620.99,+61722.3,+282.01,OK,OK
+2020-09-28 02:00:00 PDT,+1.5,+0,+5,+270,+0.0357082,+2203.99,+61722.3,+87.1,OK,OK,+8,+180,+0.0569086,+3512.53,+61722.3,+87.8783,OK,OK
+2020-09-28 03:00:00 PDT,+1.3,+20,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-09-28 04:00:00 PDT,+1,+210,+5,+270,+0.0359585,+2219.44,+61722.3,-219.353,OK,OK,+8,+180,+0.0567539,+3502.98,+61722.3,-223.218,OK,OK
+2020-09-28 05:00:00 PDT,+2.3,+200,+5,+270,+0.0362042,+2234.61,+61722.3,+183.216,OK,OK,+8,+180,+0.0574013,+3542.94,+61722.3,+183.822,OK,OK
+2020-09-28 06:00:00 PDT,+0.5,+70,+5,+270,+0.0365158,+2253.84,+61722.3,+393.785,OK,OK,+8,+180,+0.0572604,+3534.24,+61722.3,+398.831,OK,OK
+2020-09-28 07:00:00 PDT,+0.2,+20,+5,+270,+0.03603,+2223.85,+61722.3,-85.9546,OK,OK,+8,+180,+0.0574016,+3542.95,+61722.3,-85.9774,OK,OK
+2020-09-28 08:00:00 PDT,+0,+0,+5,+270,+0.0360818,+2227.05,+61722.3,-34.5753,OK,OK,+8,+180,+0.0576012,+3555.27,+61722.3,-34.4224,OK,OK
+2020-09-28 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-28 10:00:00 PDT,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-28 11:00:00 PDT,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-09-28 12:00:00 PDT,+3.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-28 13:00:00 PDT,+3.1,+310,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-28 14:00:00 PDT,+3.1,+290,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-28 15:00:00 PDT,+3.1,+260,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-28 16:00:00 PDT,+7.2,+240,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-09-28 17:00:00 PDT,+5.1,+240,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-09-28 18:00:00 PDT,+2.1,+210,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-28 19:00:00 PDT,+5.1,+230,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-09-28 20:00:00 PDT,+3.6,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-09-28 21:00:00 PDT,+7.7,+260,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-09-28 22:00:00 PDT,+5.1,+240,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-09-28 23:00:00 PDT,+3,+350,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-29 00:00:00 PDT,+3,+30,+5,+270,+0.0366174,+2260.11,+61722.3,-296.115,OK,OK,+8,+180,+0.0541943,+3344.99,+61722.3,-329.016,OK,OK
+2020-09-29 01:00:00 PDT,+3,+70,+5,+270,+0.0366174,+2260.11,+61722.3,-296.115,OK,OK,+8,+180,+0.0541943,+3344.99,+61722.3,-329.016,OK,OK
+2020-09-29 02:00:00 PDT,+3.1,+90,+5,+270,+0.0366174,+2260.11,+61722.3,-296.115,OK,OK,+8,+180,+0.0541943,+3344.99,+61722.3,-329.016,OK,OK
+2020-09-29 03:00:00 PDT,+3.2,+130,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-09-29 04:00:00 PDT,+3.2,+160,+5,+270,+0.0346115,+2136.3,+61722.3,-44.7069,OK,OK,+8,+180,+0.0525368,+3242.69,+61722.3,-51.0614,OK,OK
+2020-09-29 05:00:00 PDT,+3.2,+200,+5,+270,+0.0346115,+2136.3,+61722.3,-44.7069,OK,OK,+8,+180,+0.0525368,+3242.69,+61722.3,-51.0614,OK,OK
+2020-09-29 06:00:00 PDT,+3.3,+220,+5,+270,+0.0346115,+2136.3,+61722.3,-44.7069,OK,OK,+8,+180,+0.0525368,+3242.69,+61722.3,-51.0614,OK,OK
+2020-09-29 07:00:00 PDT,+3.3,+260,+5,+270,+0.0379575,+2342.82,+61722.3,+557.536,OK,OK,+8,+180,+0.0536649,+3312.32,+61722.3,+643.32,OK,OK
+2020-09-29 08:00:00 PDT,+0,+0,+5,+270,+0.0379575,+2342.82,+61722.3,+557.536,OK,OK,+8,+180,+0.0536649,+3312.32,+61722.3,+643.32,OK,OK
+2020-09-29 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-29 10:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-09-29 11:00:00 PDT,+2.6,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-09-29 12:00:00 PDT,+2.6,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-09-29 13:00:00 PDT,+2.6,+260,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-09-29 14:00:00 PDT,+5.1,+240,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-09-29 15:00:00 PDT,+5.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-29 16:00:00 PDT,+6.4,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-29 17:00:00 PDT,+7.7,+230,+5,+270,+0.0481624,+2972.69,+61722.3,+578.602,OK,OK,+8,+180,+0.0378864,+2338.43,+61722.3,+1424.76,OK,OK
+2020-09-29 18:00:00 PDT,+6.4,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-09-29 19:00:00 PDT,+5.1,+240,+5,+270,+0.0512914,+3165.82,+61722.3,+436.579,OK,OK,+8,+180,+0.0333554,+2058.77,+61722.3,+1431.84,OK,OK
+2020-09-29 20:00:00 PDT,+6.7,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-29 21:00:00 PDT,+7.7,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-09-29 22:00:00 PDT,+5.1,+240,+5,+270,+0.0607697,+3750.84,+61722.3,+264.519,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,+1930.78,OK,OK
+2020-09-29 23:00:00 PDT,+5.7,+290,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-09-30 00:00:00 PDT,+2.5,+360,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-09-30 01:00:00 PDT,+4.1,+350,+5,+270,+0.0361154,+2229.13,+61722.3,-323.265,OK,OK,+8,+180,+0.0561419,+3465.2,+61722.3,-335.726,OK,OK
+2020-09-30 02:00:00 PDT,+2.5,+40,+5,+270,+0.0373339,+2304.33,+61722.3,-364.909,OK,OK,+8,+180,+0.0512224,+3161.56,+61722.3,-452.602,OK,OK
+2020-09-30 03:00:00 PDT,+2.6,+60,+5,+270,+0.0354292,+2186.77,+61722.3,-409.973,OK,OK,+8,+180,+0.0530774,+3276.06,+61722.3,-464.429,OK,OK
+2020-09-30 04:00:00 PDT,+4.1,+80,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-09-30 05:00:00 PDT,+2.6,+100,+5,+270,+0.0354299,+2186.81,+61722.3,-312.893,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,-577.067,OK,OK
+2020-09-30 06:00:00 PDT,+4.1,+290,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-09-30 07:00:00 PDT,+2.6,+150,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-09-30 08:00:00 PDT,+2.6,+170,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-09-30 09:00:00 PDT,+1.5,+190,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-09-30 10:00:00 PDT,+2.1,+210,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-09-30 11:00:00 PDT,+2.6,+230,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-09-30 12:00:00 PDT,+2.1,+280,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-09-30 13:00:00 PDT,+2.6,+290,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-09-30 14:00:00 PDT,+4.1,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-09-30 15:00:00 PDT,+4.6,+280,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-09-30 16:00:00 PDT,+5.1,+260,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-09-30 17:00:00 PDT,+6.7,+210,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-09-30 18:00:00 PDT,+5.7,+240,+5,+270,+0.0425967,+2629.16,+61722.3,+910.665,OK,OK,+8,+180,+0.0480188,+2963.83,+61722.3,+1357.55,OK,OK
+2020-09-30 19:00:00 PDT,+5.7,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-09-30 20:00:00 PDT,+4.6,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-09-30 21:00:00 PDT,+3.1,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-09-30 22:00:00 PDT,+3.1,+270,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-09-30 23:00:00 PDT,+3.2,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-01 00:00:00 PDT,+3.2,+260,+5,+270,+0.0390749,+2411.79,+61722.3,+438.539,OK,OK,+8,+180,+0.050313,+3105.43,+61722.3,+575.166,OK,OK
+2020-10-01 01:00:00 PDT,+3.3,+260,+5,+270,+0.0390749,+2411.79,+61722.3,+438.539,OK,OK,+8,+180,+0.050313,+3105.43,+61722.3,+575.166,OK,OK
+2020-10-01 02:00:00 PDT,+3.3,+260,+5,+270,+0.0396026,+2444.36,+61722.3,+389.442,OK,OK,+8,+180,+0.0490077,+3024.87,+61722.3,+539.29,OK,OK
+2020-10-01 03:00:00 PDT,+3.4,+170,+5,+270,+0.0396026,+2444.36,+61722.3,+389.442,OK,OK,+8,+180,+0.0490077,+3024.87,+61722.3,+539.29,OK,OK
+2020-10-01 04:00:00 PDT,+3.4,+230,+5,+270,+0.0356226,+2198.71,+61722.3,+382.303,OK,OK,+8,+180,+0.0586107,+3617.58,+61722.3,+367.35,OK,OK
+2020-10-01 05:00:00 PDT,+3.5,+300,+5,+270,+0.0356226,+2198.71,+61722.3,+382.303,OK,OK,+8,+180,+0.0586107,+3617.58,+61722.3,+367.35,OK,OK
+2020-10-01 06:00:00 PDT,+3.3,+170,+5,+270,+0.040012,+2469.63,+61722.3,+121.268,OK,OK,+8,+180,+0.0472093,+2913.87,+61722.3,+180.948,OK,OK
+2020-10-01 07:00:00 PDT,+3.8,+350,+5,+270,+0.0356487,+2200.32,+61722.3,+370.492,OK,OK,+8,+180,+0.0585533,+3614.04,+61722.3,+356.713,OK,OK
+2020-10-01 08:00:00 PDT,+1.5,+360,+5,+270,+0.0370922,+2289.42,+61722.3,-349.475,OK,OK,+8,+180,+0.052124,+3217.21,+61722.3,-418.625,OK,OK
+2020-10-01 09:00:00 PDT,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-10-01 10:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-01 11:00:00 PDT,+2.6,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-10-01 12:00:00 PDT,+2.6,+310,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-10-01 13:00:00 PDT,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-10-01 14:00:00 PDT,+2.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-01 15:00:00 PDT,+3.6,+230,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-10-01 16:00:00 PDT,+6.7,+240,+5,+270,+0.0389886,+2406.46,+61722.3,+560.264,OK,OK,+8,+180,+0.0511986,+3160.09,+61722.3,+711.646,OK,OK
+2020-10-01 17:00:00 PDT,+6.7,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-10-01 18:00:00 PDT,+6.2,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-10-01 19:00:00 PDT,+6.7,+220,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-01 20:00:00 PDT,+6.7,+240,+5,+270,+0.0460065,+2839.63,+61722.3,+730.251,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+1457.86,OK,OK
+2020-10-01 21:00:00 PDT,+6.2,+260,+5,+270,+0.0460065,+2839.63,+61722.3,+730.251,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+1457.86,OK,OK
+2020-10-01 22:00:00 PDT,+4.1,+270,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-10-01 23:00:00 PDT,+4,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-10-02 00:00:00 PDT,+3.9,+260,+5,+270,+0.0421655,+2602.55,+61722.3,+335.162,OK,OK,+8,+180,+0.0441671,+2726.09,+61722.3,+581.256,OK,OK
+2020-10-02 01:00:00 PDT,+3.8,+260,+5,+270,+0.0414708,+2559.67,+61722.3,+403.405,OK,OK,+8,+180,+0.0456367,+2816.8,+61722.3,+652.037,OK,OK
+2020-10-02 02:00:00 PDT,+3.7,+260,+5,+270,+0.0411208,+2538.07,+61722.3,+402.732,OK,OK,+8,+180,+0.0462352,+2853.74,+61722.3,+632.645,OK,OK
+2020-10-02 03:00:00 PDT,+3.6,+260,+5,+270,+0.0407868,+2517.46,+61722.3,+401.392,OK,OK,+8,+180,+0.0468191,+2889.78,+61722.3,+613.513,OK,OK
+2020-10-02 04:00:00 PDT,+3.5,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-02 05:00:00 PDT,+4.5,+330,+5,+270,+0.039813,+2457.35,+61722.3,+455.458,OK,OK,+8,+180,+0.0488927,+3017.77,+61722.3,+635.072,OK,OK
+2020-10-02 06:00:00 PDT,+3.3,+250,+5,+270,+0.0405665,+2503.86,+61722.3,-140.601,OK,OK,+8,+180,+0.0449162,+2772.33,+61722.3,-232.682,OK,OK
+2020-10-02 07:00:00 PDT,+3.2,+240,+5,+270,+0.0393087,+2426.22,+61722.3,+444.829,OK,OK,+8,+180,+0.0498531,+3077.05,+61722.3,+594.936,OK,OK
+2020-10-02 08:00:00 PDT,+3.1,+240,+5,+270,+0.0387165,+2389.67,+61722.3,+484.674,OK,OK,+8,+180,+0.0513294,+3168.17,+61722.3,+610.543,OK,OK
+2020-10-02 09:00:00 PDT,+2.6,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-02 10:00:00 PDT,+2.1,+250,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-02 11:00:00 PDT,+2.6,+240,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-10-02 12:00:00 PDT,+0,+0,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-02 13:00:00 PDT,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-02 14:00:00 PDT,+4.6,+260,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-02 15:00:00 PDT,+5.1,+240,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-10-02 16:00:00 PDT,+4.1,+270,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-02 17:00:00 PDT,+6.2,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-10-02 18:00:00 PDT,+5.1,+240,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-10-02 19:00:00 PDT,+7.7,+210,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-02 20:00:00 PDT,+5.7,+230,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-10-02 21:00:00 PDT,+3.6,+250,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-10-02 22:00:00 PDT,+4.1,+220,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-10-02 23:00:00 PDT,+4.2,+200,+5,+270,+0.0391406,+2415.84,+61722.3,+646.25,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+813.239,OK,OK
+2020-10-03 00:00:00 PDT,+0.9,+240,+5,+270,+0.0375357,+2316.79,+61722.3,+702.185,OK,OK,+8,+180,+0.0564298,+3482.97,+61722.3,+740.98,OK,OK
+2020-10-03 01:00:00 PDT,+2,+200,+5,+270,+0.0362548,+2237.73,+61722.3,+163.593,OK,OK,+8,+180,+0.0571208,+3525.63,+61722.3,+165.579,OK,OK
+2020-10-03 02:00:00 PDT,+2.8,+140,+5,+270,+0.0364104,+2247.33,+61722.3,+343.278,OK,OK,+8,+180,+0.0573482,+3539.66,+61722.3,+346.182,OK,OK
+2020-10-03 03:00:00 PDT,+2.5,+100,+5,+270,+0.0350098,+2160.89,+61722.3,+42.5711,OK,OK,+8,+180,+0.0547677,+3380.39,+61722.3,+45.3254,OK,OK
+2020-10-03 04:00:00 PDT,+2.2,+50,+5,+270,+0.0349867,+2159.46,+61722.3,-231.645,OK,OK,+8,+180,+0.0526604,+3250.32,+61722.3,-264.686,OK,OK
+2020-10-03 05:00:00 PDT,+0.3,+330,+5,+270,+0.0354227,+2186.37,+61722.3,-369.535,OK,OK,+8,+180,+0.0537367,+3316.75,+61722.3,-409.368,OK,OK
+2020-10-03 06:00:00 PDT,+0.2,+330,+5,+270,+0.0360957,+2227.91,+61722.3,-14.7958,OK,OK,+8,+180,+0.057565,+3553.04,+61722.3,-14.7488,OK,OK
+2020-10-03 07:00:00 PDT,+0.2,+320,+5,+270,+0.0360898,+2227.54,+61722.3,-9.87256,OK,OK,+8,+180,+0.0575965,+3554.99,+61722.3,-9.83155,OK,OK
+2020-10-03 08:00:00 PDT,+2.6,+250,+5,+270,+0.0360898,+2227.54,+61722.3,-9.87256,OK,OK,+8,+180,+0.0575965,+3554.99,+61722.3,-9.83155,OK,OK
+2020-10-03 09:00:00 PDT,+0,+0,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-10-03 10:00:00 PDT,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-03 11:00:00 PDT,+2.6,+280,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-10-03 12:00:00 PDT,+3.6,+240,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-10-03 13:00:00 PDT,+2.6,+240,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-10-03 14:00:00 PDT,+2.6,+270,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-03 15:00:00 PDT,+6.7,+290,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-03 16:00:00 PDT,+5.1,+250,+5,+270,+0.0608639,+3756.66,+61722.3,+56.2004,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,+730.707,OK,OK
+2020-10-03 17:00:00 PDT,+6.2,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-03 18:00:00 PDT,+7.7,+220,+5,+270,+0.0526012,+3246.66,+61722.3,+343.311,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,+1318.89,OK,OK
+2020-10-03 19:00:00 PDT,+7.7,+230,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-03 20:00:00 PDT,+5.1,+240,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-03 21:00:00 PDT,+5.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-03 22:00:00 PDT,+2.6,+200,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-03 23:00:00 PDT,+2.5,+150,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-10-04 00:00:00 PDT,+4.1,+110,+5,+270,+0.0353716,+2183.21,+61722.3,+118.537,OK,OK,+8,+180,+0.0562485,+3471.78,+61722.3,+121.257,OK,OK
+2020-10-04 01:00:00 PDT,+2.5,+60,+5,+270,+0.0345512,+2132.58,+61722.3,-193.14,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,-301.033,OK,OK
+2020-10-04 02:00:00 PDT,+2.4,+20,+5,+270,+0.0352144,+2173.52,+61722.3,-385.136,OK,OK,+8,+180,+0.0522909,+3227.51,+61722.3,-447.233,OK,OK
+2020-10-04 03:00:00 PDT,+2.4,+340,+5,+270,+0.0357416,+2206.05,+61722.3,-379.21,OK,OK,+8,+180,+0.0546655,+3374.08,+61722.3,-409.552,OK,OK
+2020-10-04 04:00:00 PDT,+2.3,+300,+5,+270,+0.0357416,+2206.05,+61722.3,-379.21,OK,OK,+8,+180,+0.0546655,+3374.08,+61722.3,-409.552,OK,OK
+2020-10-04 05:00:00 PDT,+3.7,+260,+5,+270,+0.0374485,+2311.41,+61722.3,+98.9702,OK,OK,+8,+180,+0.0531075,+3277.91,+61722.3,+115.339,OK,OK
+2020-10-04 06:00:00 PDT,+4.8,+270,+5,+270,+0.0407868,+2517.46,+61722.3,+401.392,OK,OK,+8,+180,+0.0468191,+2889.78,+61722.3,+613.513,OK,OK
+2020-10-04 07:00:00 PDT,+3.7,+170,+5,+270,+0.0459924,+2838.76,+61722.3,+307.34,OK,OK,+8,+180,+0.0384021,+2370.26,+61722.3,+729.625,OK,OK
+2020-10-04 08:00:00 PDT,+2.1,+130,+5,+270,+0.0355404,+2193.63,+61722.3,+418.058,OK,OK,+8,+180,+0.0587933,+3628.86,+61722.3,+399.167,OK,OK
+2020-10-04 09:00:00 PDT,+2.6,+60,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-10-04 10:00:00 PDT,+0,+0,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-10-04 11:00:00 PDT,+3.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-04 12:00:00 PDT,+0,+0,+5,+270,+0.0361569,+2231.68,+61722.3,-391.172,OK,OK,+8,+180,+0.0553463,+3416.1,+61722.3,-416.3,OK,OK
+2020-10-04 13:00:00 PDT,+3.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-04 14:00:00 PDT,+3.6,+260,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-10-04 15:00:00 PDT,+5.7,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-04 16:00:00 PDT,+6.7,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-10-04 17:00:00 PDT,+6.2,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-10-04 18:00:00 PDT,+6.2,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-04 19:00:00 PDT,+6.2,+230,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-04 20:00:00 PDT,+5.1,+240,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-04 21:00:00 PDT,+4.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-04 22:00:00 PDT,+3.6,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-10-04 23:00:00 PDT,+3.8,+180,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-05 00:00:00 PDT,+4,+180,+5,+270,+0.036247,+2237.25,+61722.3,+558.977,OK,OK,+8,+180,+0.0610407,+3767.57,+61722.3,+510.303,OK,OK
+2020-10-05 01:00:00 PDT,+3.6,+200,+5,+270,+0.0362838,+2239.52,+61722.3,+593.302,OK,OK,+8,+180,+0.0614101,+3790.37,+61722.3,+537.161,OK,OK
+2020-10-05 02:00:00 PDT,+3.2,+160,+5,+270,+0.037147,+2292.79,+61722.3,+607.306,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+630.993,OK,OK
+2020-10-05 03:00:00 PDT,+3.1,+250,+5,+270,+0.035262,+2176.45,+61722.3,+252.807,OK,OK,+8,+180,+0.0569253,+3513.56,+61722.3,+253.069,OK,OK
+2020-10-05 04:00:00 PDT,+3,+230,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-10-05 05:00:00 PDT,+2.9,+340,+5,+270,+0.0379907,+2344.87,+61722.3,+498.287,OK,OK,+8,+180,+0.0531488,+3280.46,+61722.3,+584.742,OK,OK
+2020-10-05 06:00:00 PDT,+2.8,+200,+5,+270,+0.0370218,+2285.07,+61722.3,-204.906,OK,OK,+8,+180,+0.0533068,+3290.22,+61722.3,-235.714,OK,OK
+2020-10-05 07:00:00 PDT,+2.7,+180,+5,+270,+0.0367248,+2266.74,+61722.3,+477.034,OK,OK,+8,+180,+0.0570874,+3523.57,+61722.3,+487.271,OK,OK
+2020-10-05 08:00:00 PDT,+2.6,+160,+5,+270,+0.0361264,+2229.8,+61722.3,+381.397,OK,OK,+8,+180,+0.0593478,+3663.08,+61722.3,+362.584,OK,OK
+2020-10-05 09:00:00 PDT,+3.1,+150,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-10-05 10:00:00 PDT,+0,+0,+5,+270,+0.0350114,+2160.98,+61722.3,+143.482,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+149.222,OK,OK
+2020-10-05 11:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-05 12:00:00 PDT,+3.6,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-10-05 13:00:00 PDT,+4.6,+300,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-10-05 14:00:00 PDT,+3.1,+280,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-10-05 15:00:00 PDT,+4.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-10-05 16:00:00 PDT,+4.1,+290,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-10-05 17:00:00 PDT,+5.1,+230,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-10-05 18:00:00 PDT,+5.1,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-05 19:00:00 PDT,+7.7,+230,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-05 20:00:00 PDT,+5.1,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-05 21:00:00 PDT,+2.6,+110,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-05 22:00:00 PDT,+4.7,+110,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-10-05 23:00:00 PDT,+1.8,+20,+5,+270,+0.0350227,+2161.68,+61722.3,-164.343,OK,OK,+8,+180,+0.0420322,+2594.32,+61722.3,-330.532,OK,OK
+2020-10-06 00:00:00 PDT,+1.3,+330,+5,+270,+0.0358612,+2213.44,+61722.3,-296.513,OK,OK,+8,+180,+0.0559583,+3453.87,+61722.3,-308.363,OK,OK
+2020-10-06 01:00:00 PDT,+0.9,+280,+5,+270,+0.0363011,+2240.59,+61722.3,-62.2952,OK,OK,+8,+180,+0.0565564,+3490.79,+61722.3,-64.1254,OK,OK
+2020-10-06 02:00:00 PDT,+0.6,+250,+5,+270,+0.0362812,+2239.36,+61722.3,+96.5597,OK,OK,+8,+180,+0.0569098,+3512.6,+61722.3,+98.3626,OK,OK
+2020-10-06 03:00:00 PDT,+1.6,+140,+5,+270,+0.0361662,+2232.26,+61722.3,+103.035,OK,OK,+8,+180,+0.057363,+3540.57,+61722.3,+103.417,OK,OK
+2020-10-06 04:00:00 PDT,+0,+0,+5,+270,+0.0357074,+2203.94,+61722.3,+25.902,OK,OK,+8,+180,+0.0566869,+3498.84,+61722.3,+26.3009,OK,OK
+2020-10-06 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 12:00:00 PDT,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-06 13:00:00 PDT,+3.1,+250,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-10-06 14:00:00 PDT,+3.1,+240,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-10-06 15:00:00 PDT,+5.1,+260,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-10-06 16:00:00 PDT,+7.7,+210,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-10-06 17:00:00 PDT,+7.7,+220,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-10-06 18:00:00 PDT,+10.3,+210,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-10-06 19:00:00 PDT,+7.7,+210,+5,+270,+0.0540967,+3338.97,+61722.3,+878.439,OK,OK,+8,+180,+0.036461,+2250.46,+61722.3,+2424.69,OK,OK
+2020-10-06 20:00:00 PDT,+5.1,+210,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-10-06 21:00:00 PDT,+4.1,+260,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-10-06 22:00:00 PDT,+4.1,+240,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-10-06 23:00:00 PDT,+3.5,+250,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-10-07 00:00:00 PDT,+2.9,+340,+5,+270,+0.039813,+2457.35,+61722.3,+455.458,OK,OK,+8,+180,+0.0488927,+3017.77,+61722.3,+635.072,OK,OK
+2020-10-07 01:00:00 PDT,+3.3,+280,+5,+270,+0.0370218,+2285.07,+61722.3,-204.906,OK,OK,+8,+180,+0.0533068,+3290.22,+61722.3,-235.714,OK,OK
+2020-10-07 02:00:00 PDT,+3.2,+340,+5,+270,+0.03981,+2457.16,+61722.3,+263.133,OK,OK,+8,+180,+0.0481135,+2969.67,+61722.3,+377.943,OK,OK
+2020-10-07 03:00:00 PDT,+3.6,+200,+5,+270,+0.037291,+2301.68,+61722.3,-218.966,OK,OK,+8,+180,+0.0523692,+3232.34,+61722.3,-260.872,OK,OK
+2020-10-07 04:00:00 PDT,+3,+10,+5,+270,+0.037147,+2292.79,+61722.3,+607.306,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+630.993,OK,OK
+2020-10-07 05:00:00 PDT,+2.4,+140,+5,+270,+0.0358797,+2214.58,+61722.3,-421.904,OK,OK,+8,+180,+0.0541943,+3344.99,+61722.3,-463.511,OK,OK
+2020-10-07 06:00:00 PDT,+2.3,+170,+5,+270,+0.0352713,+2177.02,+61722.3,+37.4459,OK,OK,+8,+180,+0.0555223,+3426.96,+61722.3,+39.0931,OK,OK
+2020-10-07 07:00:00 PDT,+2.2,+30,+5,+270,+0.03587,+2213.98,+61722.3,+254.913,OK,OK,+8,+180,+0.0580738,+3584.45,+61722.3,+249.601,OK,OK
+2020-10-07 08:00:00 PDT,+2.6,+110,+5,+270,+0.0356434,+2199.99,+61722.3,-369.192,OK,OK,+8,+180,+0.0545726,+3368.35,+61722.3,-399.317,OK,OK
+2020-10-07 09:00:00 PDT,+4.1,+190,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-10-07 10:00:00 PDT,+6.2,+210,+5,+270,+0.0368047,+2271.67,+61722.3,+665.344,OK,OK,+8,+180,+0.0590611,+3645.38,+61722.3,+645.255,OK,OK
+2020-10-07 11:00:00 PDT,+6.2,+200,+5,+270,+0.041534,+2563.57,+61722.3,+882.77,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+1237.38,OK,OK
+2020-10-07 12:00:00 PDT,+5.1,+190,+5,+270,+0.041534,+2563.57,+61722.3,+882.77,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+1237.38,OK,OK
+2020-10-07 13:00:00 PDT,+3.1,+220,+5,+270,+0.0372212,+2297.38,+61722.3,+843.186,OK,OK,+8,+180,+0.0598521,+3694.21,+61722.3,+807.454,OK,OK
+2020-10-07 14:00:00 PDT,+5.1,+240,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-10-07 15:00:00 PDT,+5.1,+190,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-07 16:00:00 PDT,+4.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-07 17:00:00 PDT,+7.7,+210,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-07 18:00:00 PDT,+7.7,+190,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-10-07 19:00:00 PDT,+5.9,+210,+5,+270,+0.0450911,+2783.12,+61722.3,+941.434,OK,OK,+8,+180,+0.0450982,+2783.57,+61722.3,+1615.15,OK,OK
+2020-10-07 20:00:00 PDT,+4.1,+230,+5,+270,+0.0409522,+2527.67,+61722.3,+862.039,OK,OK,+8,+180,+0.0501161,+3093.28,+61722.3,+1167.65,OK,OK
+2020-10-07 21:00:00 PDT,+3.1,+240,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-10-07 22:00:00 PDT,+1.5,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-07 23:00:00 PDT,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-10-08 00:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 12:00:00 PDT,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 13:00:00 PDT,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-10-08 14:00:00 PDT,+2.6,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-08 15:00:00 PDT,+3.1,+90,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-10-08 16:00:00 PDT,+3.1,+140,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-10-08 17:00:00 PDT,+5.1,+180,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-10-08 18:00:00 PDT,+5.1,+220,+5,+270,+0.0366081,+2259.53,+61722.3,+794.378,OK,OK,+8,+180,+0.0637802,+3936.66,+61722.3,+684.881,OK,OK
+2020-10-08 19:00:00 PDT,+5.7,+240,+5,+270,+0.0366081,+2259.53,+61722.3,+794.378,OK,OK,+8,+180,+0.0637802,+3936.66,+61722.3,+684.881,OK,OK
+2020-10-08 20:00:00 PDT,+4.1,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-10-08 21:00:00 PDT,+4.1,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-08 22:00:00 PDT,+3.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-08 23:00:00 PDT,+2.8,+220,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-09 00:00:00 PDT,+2.5,+190,+5,+270,+0.0373917,+2307.9,+61722.3,+489.614,OK,OK,+8,+180,+0.0547677,+3380.39,+61722.3,+541.155,OK,OK
+2020-10-09 01:00:00 PDT,+2.2,+170,+5,+270,+0.0363462,+2243.37,+61722.3,+396.51,OK,OK,+8,+180,+0.0581559,+3589.52,+61722.3,+390.638,OK,OK
+2020-10-09 02:00:00 PDT,+1.9,+140,+5,+270,+0.0358881,+2215.1,+61722.3,+243.575,OK,OK,+8,+180,+0.0580353,+3582.07,+61722.3,+238.825,OK,OK
+2020-10-09 03:00:00 PDT,+1.6,+120,+5,+270,+0.0355598,+2194.83,+61722.3,+30.3999,OK,OK,+8,+180,+0.0563042,+3475.23,+61722.3,+31.1408,OK,OK
+2020-10-09 04:00:00 PDT,+1.2,+100,+5,+270,+0.0355952,+2197.01,+61722.3,-75.4157,OK,OK,+8,+180,+0.0560404,+3458.94,+61722.3,-77.9058,OK,OK
+2020-10-09 05:00:00 PDT,+0.9,+70,+5,+270,+0.0357675,+2207.65,+61722.3,-127.055,OK,OK,+8,+180,+0.056475,+3485.76,+61722.3,-129.938,OK,OK
+2020-10-09 06:00:00 PDT,+0.6,+50,+5,+270,+0.0359117,+2216.55,+61722.3,-152.537,OK,OK,+8,+180,+0.0569086,+3512.53,+61722.3,-154.418,OK,OK
+2020-10-09 07:00:00 PDT,+0.3,+20,+5,+270,+0.0360208,+2223.29,+61722.3,-113.153,OK,OK,+8,+180,+0.0573322,+3538.68,+61722.3,-113.386,OK,OK
+2020-10-09 08:00:00 PDT,+0,+0,+5,+270,+0.0360777,+2226.8,+61722.3,-51.8258,OK,OK,+8,+180,+0.0575755,+3553.69,+61722.3,-51.63,OK,OK
+2020-10-09 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-09 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-09 11:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-09 12:00:00 PDT,+2.1,+360,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-10-09 13:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-10-09 14:00:00 PDT,+3.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-09 15:00:00 PDT,+3.6,+260,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-10-09 16:00:00 PDT,+4.1,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-09 17:00:00 PDT,+4.1,+250,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-09 18:00:00 PDT,+6.2,+220,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-09 19:00:00 PDT,+5.1,+240,+5,+270,+0.0442731,+2732.63,+61722.3,+739.368,OK,OK,+8,+180,+0.0439556,+2713.04,+61722.3,+1318.68,OK,OK
+2020-10-09 20:00:00 PDT,+5.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-09 21:00:00 PDT,+3.1,+300,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-09 22:00:00 PDT,+0,+0,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-10-09 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-10 00:00:00 PDT,+0.8,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-10 01:00:00 PDT,+1.2,+220,+5,+270,+0.0361369,+2230.45,+61722.3,+138.209,OK,OK,+8,+180,+0.0575778,+3553.83,+61722.3,+137.821,OK,OK
+2020-10-10 02:00:00 PDT,+0.1,+160,+5,+270,+0.0363083,+2241.03,+61722.3,+224.796,OK,OK,+8,+180,+0.0570955,+3524.07,+61722.3,+227.901,OK,OK
+2020-10-10 03:00:00 PDT,+2.1,+210,+5,+270,+0.0360842,+2227.2,+61722.3,+8.06582,OK,OK,+8,+180,+0.057621,+3556.5,+61722.3,+8.02605,OK,OK
+2020-10-10 04:00:00 PDT,+1,+220,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-10-10 05:00:00 PDT,+1.4,+250,+5,+270,+0.0362393,+2236.77,+61722.3,+188.187,OK,OK,+8,+180,+0.0572562,+3533.98,+61722.3,+189.695,OK,OK
+2020-10-10 06:00:00 PDT,+1.8,+280,+5,+270,+0.0365492,+2255.9,+61722.3,+232.588,OK,OK,+8,+180,+0.0562146,+3469.69,+61722.3,+242.832,OK,OK
+2020-10-10 07:00:00 PDT,+3.7,+10,+5,+270,+0.0369527,+2280.81,+61722.3,+181.176,OK,OK,+8,+180,+0.0547781,+3381.03,+61722.3,+198.761,OK,OK
+2020-10-10 08:00:00 PDT,+2.6,+330,+5,+270,+0.0359046,+2216.11,+61722.3,-488.002,OK,OK,+8,+180,+0.0524093,+3234.82,+61722.3,-569.392,OK,OK
+2020-10-10 09:00:00 PDT,+0,+0,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-10-10 10:00:00 PDT,+2.6,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-10 11:00:00 PDT,+4.4,+290,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-10-10 12:00:00 PDT,+6.2,+260,+5,+270,+0.0438859,+2708.74,+61722.3,+188.039,OK,OK,+8,+180,+0.0407986,+2518.18,+61722.3,+388.463,OK,OK
+2020-10-10 13:00:00 PDT,+5.1,+250,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-10-10 14:00:00 PDT,+6.2,+230,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-10 15:00:00 PDT,+5.7,+230,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-10-10 16:00:00 PDT,+8.7,+210,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-10-10 17:00:00 PDT,+7.2,+200,+5,+270,+0.048109,+2969.39,+61722.3,+939.978,OK,OK,+8,+180,+0.0419019,+2586.28,+61722.3,+1900.34,OK,OK
+2020-10-10 18:00:00 PDT,+8.7,+220,+5,+270,+0.0404518,+2496.77,+61722.3,+1128.58,OK,OK,+8,+180,+0.0542284,+3347.1,+61722.3,+1331.49,OK,OK
+2020-10-10 19:00:00 PDT,+7.7,+230,+5,+270,+0.0551954,+3406.79,+61722.3,+590.681,OK,OK,+8,+180,+0.0320821,+1980.18,+61722.3,+2127.22,OK,OK
+2020-10-10 20:00:00 PDT,+6.2,+240,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-10 21:00:00 PDT,+4.1,+260,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-10 22:00:00 PDT,+3.9,+210,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-10-10 23:00:00 PDT,+3.6,+160,+5,+270,+0.0380392,+2347.86,+61722.3,+652.077,OK,OK,+8,+180,+0.0542979,+3351.39,+61722.3,+738.764,OK,OK
+2020-10-11 00:00:00 PDT,+3.4,+120,+5,+270,+0.0350459,+2163.11,+61722.3,+282.755,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+283.548,OK,OK
+2020-10-11 01:00:00 PDT,+3.2,+70,+5,+270,+0.0344721,+2127.7,+61722.3,-129.161,OK,OK,+8,+180,+0.0505254,+3118.54,+61722.3,-159.098,OK,OK
+2020-10-11 02:00:00 PDT,+2.9,+50,+5,+270,+0.0349991,+2160.23,+61722.3,-391.19,OK,OK,+8,+180,+0.0486563,+3003.18,+61722.3,-524.394,OK,OK
+2020-10-11 03:00:00 PDT,+2.7,+270,+5,+270,+0.0352199,+2173.85,+61722.3,-434.596,OK,OK,+8,+180,+0.0508816,+3140.52,+61722.3,-531.963,OK,OK
+2020-10-11 04:00:00 PDT,+2.4,+320,+5,+270,+0.0383249,+2365.5,+61722.3,+300.175,OK,OK,+8,+180,+0.0514462,+3175.38,+61722.3,+374.545,OK,OK
+2020-10-11 05:00:00 PDT,+2.2,+360,+5,+270,+0.0372024,+2296.22,+61722.3,-35.1409,OK,OK,+8,+180,+0.0534331,+3298.01,+61722.3,-40.3717,OK,OK
+2020-10-11 06:00:00 PDT,+2,+190,+5,+270,+0.0361033,+2228.37,+61722.3,-287.318,OK,OK,+8,+180,+0.0564757,+3485.81,+61722.3,-295.439,OK,OK
+2020-10-11 07:00:00 PDT,+1.7,+260,+5,+270,+0.0362513,+2237.51,+61722.3,+315.594,OK,OK,+8,+180,+0.0579635,+3577.64,+61722.3,+312.02,OK,OK
+2020-10-11 08:00:00 PDT,+1.5,+40,+5,+270,+0.0368327,+2273.4,+61722.3,+248.528,OK,OK,+8,+180,+0.0553224,+3414.62,+61722.3,+267.67,OK,OK
+2020-10-11 09:00:00 PDT,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-10-11 10:00:00 PDT,+3.1,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-11 11:00:00 PDT,+4.9,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-11 12:00:00 PDT,+6.7,+240,+5,+270,+0.0436566,+2694.58,+61722.3,+539.184,OK,OK,+8,+180,+0.0430497,+2657.13,+61722.3,+995.776,OK,OK
+2020-10-11 13:00:00 PDT,+2.6,+250,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-10-11 14:00:00 PDT,+2.6,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-10-11 15:00:00 PDT,+3.6,+270,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-10-11 16:00:00 PDT,+3.1,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-10-11 17:00:00 PDT,+4.6,+240,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-10-11 18:00:00 PDT,+9.3,+220,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-10-11 19:00:00 PDT,+7.7,+220,+5,+270,+0.0586867,+3622.28,+61722.3,+523.455,OK,OK,+8,+180,+0.0291361,+1798.35,+61722.3,+2364.6,OK,OK
+2020-10-11 20:00:00 PDT,+6.2,+210,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-11 21:00:00 PDT,+4.1,+180,+5,+270,+0.041534,+2563.57,+61722.3,+882.77,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+1237.38,OK,OK
+2020-10-11 22:00:00 PDT,+3.1,+170,+5,+270,+0.0363044,+2240.79,+61722.3,+610.717,OK,OK,+8,+180,+0.0616019,+3802.21,+61722.3,+550.59,OK,OK
+2020-10-11 23:00:00 PDT,+1.1,+150,+5,+270,+0.0356987,+2203.4,+61722.3,+347.019,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+335.395,OK,OK
+2020-10-12 00:00:00 PDT,+3.1,+290,+5,+270,+0.0359426,+2218.46,+61722.3,+53.9282,OK,OK,+8,+180,+0.0573551,+3540.09,+61722.3,+53.9338,OK,OK
+2020-10-12 01:00:00 PDT,+3.7,+130,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-10-12 02:00:00 PDT,+2.8,+110,+5,+270,+0.0342985,+2116.98,+61722.3,-47.9227,OK,OK,+8,+180,+0.0508404,+3137.99,+61722.3,-58.1789,OK,OK
+2020-10-12 03:00:00 PDT,+5,+100,+5,+270,+0.0348037,+2148.16,+61722.3,-186.022,OK,OK,+8,+180,+0.0520157,+3210.53,+61722.3,-217.07,OK,OK
+2020-10-12 04:00:00 PDT,+7,+80,+5,+270,+0.03629,+2239.9,+61722.3,-153.815,OK,OK,+8,+180,+0.0381437,+2354.32,+61722.3,-455.019,OK,OK
+2020-10-12 05:00:00 PDT,+7.6,+120,+5,+270,+0.0498507,+3076.9,+61722.3,+410.261,OK,OK,+8,+180,+0.0184899,+1141.24,+61722.3,-183.27,OK,OK
+2020-10-12 06:00:00 PDT,+6.6,+360,+5,+270,+0.0433766,+2677.3,+61722.3,+101.736,OK,OK,+8,+180,+0.0248859,+1536.02,+61722.3,-150.76,OK,OK
+2020-10-12 07:00:00 PDT,+7.7,+40,+5,+270,+0.0375336,+2316.66,+61722.3,-611.266,OK,OK,+8,+180,+0.0473079,+2919.95,+61722.3,-886.316,OK,OK
+2020-10-12 08:00:00 PDT,+6.2,+30,+5,+270,+0.0511374,+3156.32,+61722.3,+468.013,OK,OK,+8,+180,+0.0170209,+1050.57,+61722.3,-462.903,OK,OK
+2020-10-12 09:00:00 PDT,+3.1,+230,+5,+270,+0.0398355,+2458.74,+61722.3,-206.027,OK,OK,+8,+180,+0.0336904,+2079.45,+61722.3,-973.301,OK,OK
+2020-10-12 10:00:00 PDT,+5.1,+50,+5,+270,+0.0381384,+2353.99,+61722.3,+509.868,OK,OK,+8,+180,+0.0528476,+3261.87,+61722.3,+605.522,OK,OK
+2020-10-12 11:00:00 PDT,+2.6,+10,+5,+270,+0.0377557,+2330.37,+61722.3,-265.519,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,-834.008,OK,OK
+2020-10-12 12:00:00 PDT,+2.6,+330,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-10-12 13:00:00 PDT,+2.6,+290,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-10-12 14:00:00 PDT,+3.6,+250,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-10-12 15:00:00 PDT,+4.4,+310,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-10-12 16:00:00 PDT,+5.1,+10,+5,+270,+0.0425805,+2628.16,+61722.3,+41.1725,OK,OK,+8,+180,+0.0421994,+2604.64,+61722.3,+78.6374,OK,OK
+2020-10-12 17:00:00 PDT,+7.7,+40,+5,+270,+0.0363977,+2246.55,+61722.3,-549.292,OK,OK,+8,+180,+0.0477248,+2945.68,+61722.3,-775.427,OK,OK
+2020-10-12 18:00:00 PDT,+7.7,+40,+5,+270,+0.0511374,+3156.32,+61722.3,+468.013,OK,OK,+8,+180,+0.0170209,+1050.57,+61722.3,-462.903,OK,OK
+2020-10-12 19:00:00 PDT,+10.3,+30,+5,+270,+0.0511374,+3156.32,+61722.3,+468.013,OK,OK,+8,+180,+0.0170209,+1050.57,+61722.3,-462.903,OK,OK
+2020-10-12 20:00:00 PDT,+4.1,+270,+5,+270,+0.0711915,+4394.1,+61722.3,+1165.27,OK,OK,+8,+180,+0.0156149,+963.788,+61722.3,+2642.45,OK,OK
+2020-10-12 21:00:00 PDT,+4.1,+270,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-10-12 22:00:00 PDT,+2.7,+300,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-10-12 23:00:00 PDT,+2.8,+310,+5,+270,+0.0381011,+2351.69,+61722.3,+109.609,OK,OK,+8,+180,+0.0514072,+3172.97,+61722.3,+136.518,OK,OK
+2020-10-13 00:00:00 PDT,+2.7,+320,+5,+270,+0.0380403,+2347.94,+61722.3,+38.1666,OK,OK,+8,+180,+0.0513368,+3168.62,+61722.3,+47.6122,OK,OK
+2020-10-13 01:00:00 PDT,+2.7,+320,+5,+270,+0.0375767,+2319.32,+61722.3,-38.0799,OK,OK,+8,+180,+0.0523231,+3229.5,+61722.3,-45.6286,OK,OK
+2020-10-13 02:00:00 PDT,+2.7,+330,+5,+270,+0.0375767,+2319.32,+61722.3,-38.0799,OK,OK,+8,+180,+0.0523231,+3229.5,+61722.3,-45.6286,OK,OK
+2020-10-13 03:00:00 PDT,+3.6,+340,+5,+270,+0.0375767,+2319.32,+61722.3,-38.0799,OK,OK,+8,+180,+0.0523231,+3229.5,+61722.3,-45.6286,OK,OK
+2020-10-13 04:00:00 PDT,+4.3,+340,+5,+270,+0.0377323,+2328.92,+61722.3,-234.361,OK,OK,+8,+180,+0.0509765,+3146.38,+61722.3,-294.829,OK,OK
+2020-10-13 05:00:00 PDT,+2.8,+360,+5,+270,+0.0387746,+2393.25,+61722.3,-250.912,OK,OK,+8,+180,+0.0481489,+2971.86,+61722.3,-355.691,OK,OK
+2020-10-13 06:00:00 PDT,+2.8,+10,+5,+270,+0.0361328,+2230.2,+61722.3,-357.94,OK,OK,+8,+180,+0.0557654,+3441.97,+61722.3,-376.013,OK,OK
+2020-10-13 07:00:00 PDT,+2.8,+20,+5,+270,+0.0361328,+2230.2,+61722.3,-357.94,OK,OK,+8,+180,+0.0557654,+3441.97,+61722.3,-376.013,OK,OK
+2020-10-13 08:00:00 PDT,+3.1,+20,+5,+270,+0.0361328,+2230.2,+61722.3,-357.94,OK,OK,+8,+180,+0.0557654,+3441.97,+61722.3,-376.013,OK,OK
+2020-10-13 09:00:00 PDT,+3.1,+30,+5,+270,+0.0356518,+2200.51,+61722.3,-456.494,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-525.638,OK,OK
+2020-10-13 10:00:00 PDT,+3.1,+40,+5,+270,+0.0356518,+2200.51,+61722.3,-456.494,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-525.638,OK,OK
+2020-10-13 11:00:00 PDT,+7.7,+50,+5,+270,+0.0356518,+2200.51,+61722.3,-456.494,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-525.638,OK,OK
+2020-10-13 12:00:00 PDT,+9,+70,+5,+270,+0.0541984,+3345.25,+61722.3,+610.591,OK,OK,+8,+180,+0.014646,+903.983,+61722.3,+80.683,OK,OK
+2020-10-13 13:00:00 PDT,+10.3,+80,+5,+270,+0.0739697,+4565.58,+61722.3,+1130.1,OK,OK,+8,+180,+0.0226492,+1397.96,+61722.3,+2170.89,OK,OK
+2020-10-13 14:00:00 PDT,+10.3,+50,+5,+270,+0.0944998,+5832.74,+61722.3,+1405.9,OK,OK,+8,+180,+0.0434006,+2678.78,+61722.3,+2229.91,OK,OK
+2020-10-13 15:00:00 PDT,+7.7,+50,+5,+270,+0.0944998,+5832.74,+61722.3,+1405.9,OK,OK,+8,+180,+0.0434006,+2678.78,+61722.3,+2229.91,OK,OK
+2020-10-13 16:00:00 PDT,+7.7,+70,+5,+270,+0.0541984,+3345.25,+61722.3,+610.591,OK,OK,+8,+180,+0.014646,+903.983,+61722.3,+80.683,OK,OK
+2020-10-13 17:00:00 PDT,+7.7,+70,+5,+270,+0.0541984,+3345.25,+61722.3,+610.591,OK,OK,+8,+180,+0.014646,+903.983,+61722.3,+80.683,OK,OK
+2020-10-13 18:00:00 PDT,+5.1,+70,+5,+270,+0.0541984,+3345.25,+61722.3,+610.591,OK,OK,+8,+180,+0.014646,+903.983,+61722.3,+80.683,OK,OK
+2020-10-13 19:00:00 PDT,+6.7,+70,+5,+270,+0.0380545,+2348.81,+61722.3,-168.192,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,-721.523,OK,OK
+2020-10-13 20:00:00 PDT,+5.1,+70,+5,+270,+0.0475494,+2934.86,+61722.3,+333.218,OK,OK,+8,+180,+0.0206598,+1275.17,+61722.3,-451.995,OK,OK
+2020-10-13 21:00:00 PDT,+7.2,+80,+5,+270,+0.0380545,+2348.81,+61722.3,-168.192,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,-721.523,OK,OK
+2020-10-13 22:00:00 PDT,+8.2,+80,+5,+270,+0.051738,+3193.39,+61722.3,+475.659,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+3.12502,OK,OK
+2020-10-13 23:00:00 PDT,+7.6,+100,+5,+270,+0.0628607,+3879.9,+61722.3,+796.943,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+1391.41,OK,OK
+2020-10-14 00:00:00 PDT,+7.1,+50,+5,+270,+0.0515427,+3181.33,+61722.3,+382.948,OK,OK,+8,+180,+0.0177649,+1096.49,+61722.3,+87.7826,OK,OK
+2020-10-14 01:00:00 PDT,+6.5,+60,+5,+270,+0.04884,+3014.51,+61722.3,+381.828,OK,OK,+8,+180,+0.0193766,+1195.97,+61722.3,-550.466,OK,OK
+2020-10-14 02:00:00 PDT,+5.9,+160,+5,+270,+0.0455149,+2809.28,+61722.3,+234.973,OK,OK,+8,+180,+0.0231603,+1429.51,+61722.3,-659.797,OK,OK
+2020-10-14 03:00:00 PDT,+5.3,+160,+5,+270,+0.0333517,+2058.54,+61722.3,+439.823,OK,OK,+8,+180,+0.0553058,+3413.6,+61722.3,+448.792,OK,OK
+2020-10-14 04:00:00 PDT,+4.6,+160,+5,+270,+0.0338646,+2090.2,+61722.3,+401.933,OK,OK,+8,+180,+0.0557413,+3440.48,+61722.3,+407.673,OK,OK
+2020-10-14 05:00:00 PDT,+4.2,+170,+5,+270,+0.0344012,+2123.32,+61722.3,+354.702,OK,OK,+8,+180,+0.0561963,+3468.57,+61722.3,+357.774,OK,OK
+2020-10-14 06:00:00 PDT,+3.8,+170,+5,+270,+0.0353904,+2184.38,+61722.3,+478.802,OK,OK,+8,+180,+0.0591324,+3649.78,+61722.3,+451.864,OK,OK
+2020-10-14 07:00:00 PDT,+3.5,+60,+5,+270,+0.0355117,+2191.86,+61722.3,+430.087,OK,OK,+8,+180,+0.0588577,+3632.83,+61722.3,+409.741,OK,OK
+2020-10-14 08:00:00 PDT,+3.1,+180,+5,+270,+0.0351842,+2171.65,+61722.3,-422.432,OK,OK,+8,+180,+0.0472093,+2913.87,+61722.3,-606.983,OK,OK
+2020-10-14 09:00:00 PDT,+2.6,+190,+5,+270,+0.0361569,+2231.68,+61722.3,+443.895,OK,OK,+8,+180,+0.0598971,+3696.98,+61722.3,+416.3,OK,OK
+2020-10-14 10:00:00 PDT,+9.3,+100,+5,+270,+0.0363678,+2244.7,+61722.3,+412.843,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+406.408,OK,OK
+2020-10-14 11:00:00 PDT,+7.7,+110,+5,+270,+0.0711627,+4392.32,+61722.3,+765.015,OK,OK,+8,+180,+0.0231244,+1427.29,+61722.3,+1379.19,OK,OK
+2020-10-14 12:00:00 PDT,+7.7,+110,+5,+270,+0.0486132,+3000.52,+61722.3,+255.744,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,-56.1,OK,OK
+2020-10-14 13:00:00 PDT,+11.3,+100,+5,+270,+0.0486132,+3000.52,+61722.3,+255.744,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,-56.1,OK,OK
+2020-10-14 14:00:00 PDT,+10.3,+80,+5,+270,+0.1026,+6332.71,+61722.3,+1159.08,OK,OK,+8,+180,+0.0532537,+3286.94,+61722.3,+1708.76,OK,OK
+2020-10-14 15:00:00 PDT,+10.3,+100,+5,+270,+0.0944998,+5832.74,+61722.3,+1405.9,OK,OK,+8,+180,+0.0434006,+2678.78,+61722.3,+2229.91,OK,OK
+2020-10-14 16:00:00 PDT,+9.3,+180,+5,+270,+0.0944998,+5832.74,+61722.3,+1405.9,OK,OK,+8,+180,+0.0434006,+2678.78,+61722.3,+2229.91,OK,OK
+2020-10-14 17:00:00 PDT,+7.2,+110,+5,+270,+0.0415038,+2561.71,+61722.3,+1711.3,OK,OK,+8,+180,+0.0781001,+4820.52,+61722.3,+1248.9,OK,OK
+2020-10-14 18:00:00 PDT,+7.2,+90,+5,+270,+0.0448174,+2766.23,+61722.3,+168.042,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,-217.967,OK,OK
+2020-10-14 19:00:00 PDT,+5.1,+90,+5,+270,+0.0448174,+2766.23,+61722.3,+168.042,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,-217.967,OK,OK
+2020-10-14 20:00:00 PDT,+4.6,+120,+5,+270,+0.0372968,+2302.04,+61722.3,-141.163,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,-557.683,OK,OK
+2020-10-14 21:00:00 PDT,+7.2,+130,+5,+270,+0.0343688,+2121.32,+61722.3,-122.704,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,-203.114,OK,OK
+2020-10-14 22:00:00 PDT,+5.1,+120,+5,+270,+0.0373169,+2303.28,+61722.3,-1.82853,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,-80.3829,OK,OK
+2020-10-14 23:00:00 PDT,+4.9,+120,+5,+270,+0.034753,+2145.03,+61722.3,-105.418,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,-216.711,OK,OK
+2020-10-15 00:00:00 PDT,+4.6,+120,+5,+270,+0.0345596,+2133.1,+61722.3,-113.452,OK,OK,+8,+180,+0.0430497,+2657.13,+61722.3,-211.728,OK,OK
+2020-10-15 01:00:00 PDT,+4.4,+130,+5,+270,+0.0343688,+2121.32,+61722.3,-122.704,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,-203.114,OK,OK
+2020-10-15 02:00:00 PDT,+4.1,+130,+5,+270,+0.0339964,+2098.34,+61722.3,-49.1326,OK,OK,+8,+180,+0.0480744,+2967.26,+61722.3,-67.3155,OK,OK
+2020-10-15 03:00:00 PDT,+6.5,+70,+5,+270,+0.0340992,+2104.68,+61722.3,-49.1388,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,-63.5384,OK,OK
+2020-10-15 04:00:00 PDT,+5.1,+70,+5,+270,+0.0459514,+2836.23,+61722.3,+262.915,OK,OK,+8,+180,+0.0224711,+1386.97,+61722.3,-548.168,OK,OK
+2020-10-15 05:00:00 PDT,+3.4,+140,+5,+270,+0.0380545,+2348.81,+61722.3,-168.192,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,-721.523,OK,OK
+2020-10-15 06:00:00 PDT,+3.1,+140,+5,+270,+0.0345871,+2134.79,+61722.3,+49.1554,OK,OK,+8,+180,+0.0534233,+3297.41,+61722.3,+54.3936,OK,OK
+2020-10-15 07:00:00 PDT,+2.9,+140,+5,+270,+0.0348014,+2148.02,+61722.3,+46.0478,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+49.9066,OK,OK
+2020-10-15 08:00:00 PDT,+2.6,+130,+5,+270,+0.0349413,+2156.66,+61722.3,+43.7679,OK,OK,+8,+180,+0.0545613,+3367.64,+61722.3,+46.8621,OK,OK
+2020-10-15 09:00:00 PDT,+2.6,+120,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-10-15 10:00:00 PDT,+2.6,+130,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-10-15 11:00:00 PDT,+4.6,+130,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-10-15 12:00:00 PDT,+8.7,+70,+5,+270,+0.0339567,+2095.89,+61722.3,-48.6472,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,-69.6972,OK,OK
+2020-10-15 13:00:00 PDT,+7.7,+90,+5,+270,+0.0697353,+4304.22,+61722.3,+1031.75,OK,OK,+8,+180,+0.0191142,+1179.77,+61722.3,+2027.67,OK,OK
+2020-10-15 14:00:00 PDT,+7.2,+70,+5,+270,+0.0553367,+3415.51,+61722.3,+539.596,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+451.271,OK,OK
+2020-10-15 15:00:00 PDT,+5.1,+60,+5,+270,+0.0520563,+3213.03,+61722.3,+511.384,OK,OK,+8,+180,+0.0166184,+1025.73,+61722.3,-32.0669,OK,OK
+2020-10-15 16:00:00 PDT,+5.1,+90,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-10-15 17:00:00 PDT,+5.1,+60,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-10-15 18:00:00 PDT,+5.1,+60,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-10-15 19:00:00 PDT,+5.1,+60,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-10-15 20:00:00 PDT,+2.1,+60,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-10-15 21:00:00 PDT,+2.6,+50,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-10-15 22:00:00 PDT,+3.1,+50,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-10-15 23:00:00 PDT,+2.6,+40,+5,+270,+0.0352073,+2173.07,+61722.3,-444.849,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,-565.663,OK,OK
+2020-10-16 00:00:00 PDT,+2.1,+40,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-10-16 01:00:00 PDT,+1.6,+30,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-10-16 02:00:00 PDT,+1,+30,+5,+270,+0.0358183,+2210.79,+61722.3,-281.311,OK,OK,+8,+180,+0.0560082,+3456.95,+61722.3,-291.918,OK,OK
+2020-10-16 03:00:00 PDT,+2.1,+20,+5,+270,+0.0359721,+2220.28,+61722.3,-181.079,OK,OK,+8,+180,+0.0569912,+3517.63,+61722.3,-183.063,OK,OK
+2020-10-16 04:00:00 PDT,+0.2,+20,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-10-16 05:00:00 PDT,+0.1,+10,+5,+270,+0.0360818,+2227.05,+61722.3,-34.5753,OK,OK,+8,+180,+0.0576012,+3555.27,+61722.3,-34.4224,OK,OK
+2020-10-16 06:00:00 PDT,+0.1,+10,+5,+270,+0.0360846,+2227.22,+61722.3,-15.6325,OK,OK,+8,+180,+0.0576179,+3556.31,+61722.3,-15.5568,OK,OK
+2020-10-16 07:00:00 PDT,+0,+0,+5,+270,+0.0360846,+2227.22,+61722.3,-15.6325,OK,OK,+8,+180,+0.0576179,+3556.31,+61722.3,-15.5568,OK,OK
+2020-10-16 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-16 09:00:00 PDT,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-16 10:00:00 PDT,+2.1,+360,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-10-16 11:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-10-16 12:00:00 PDT,+2.1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-16 13:00:00 PDT,+0,+0,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-10-16 14:00:00 PDT,+6.2,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-16 15:00:00 PDT,+3.1,+60,+5,+270,+0.0391257,+2414.93,+61722.3,+3.68706,OK,OK,+8,+180,+0.0311874,+1924.96,+61722.3,-342.08,OK,OK
+2020-10-16 16:00:00 PDT,+2.6,+60,+5,+270,+0.0350989,+2166.38,+61722.3,-420.858,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,-545.559,OK,OK
+2020-10-16 17:00:00 PDT,+4.1,+250,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-10-16 18:00:00 PDT,+4.1,+240,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-10-16 19:00:00 PDT,+4.6,+220,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-10-16 20:00:00 PDT,+3.1,+240,+5,+270,+0.0400764,+2473.61,+61722.3,+687.592,OK,OK,+8,+180,+0.0499875,+3085.34,+61722.3,+924.546,OK,OK
+2020-10-16 21:00:00 PDT,+3.1,+300,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-16 22:00:00 PDT,+0,+0,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-16 23:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 00:00:00 PDT,+0.3,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 01:00:00 PDT,+0,+0,+5,+270,+0.0360666,+2226.11,+61722.3,-55.1874,OK,OK,+8,+180,+0.0575447,+3551.79,+61722.3,-55.0156,OK,OK
+2020-10-17 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 03:00:00 PDT,+0.8,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 04:00:00 PDT,+0.9,+270,+5,+270,+0.0362049,+2234.65,+61722.3,+13.116,OK,OK,+8,+180,+0.0571072,+3524.78,+61722.3,+13.2687,OK,OK
+2020-10-17 05:00:00 PDT,+0,+0,+5,+270,+0.0362837,+2239.51,+61722.3,+119.117,OK,OK,+8,+180,+0.0569327,+3514.01,+61722.3,+121.268,OK,OK
+2020-10-17 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 14:00:00 PDT,+3.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-17 15:00:00 PDT,+2.1,+260,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-10-17 16:00:00 PDT,+4.1,+210,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-10-17 17:00:00 PDT,+6.2,+210,+5,+270,+0.0382613,+2361.58,+61722.3,+678.242,OK,OK,+8,+180,+0.0539519,+3330.04,+61722.3,+779.351,OK,OK
+2020-10-17 18:00:00 PDT,+6.7,+220,+5,+270,+0.041534,+2563.57,+61722.3,+882.77,OK,OK,+8,+180,+0.0493562,+3046.38,+61722.3,+1237.38,OK,OK
+2020-10-17 19:00:00 PDT,+6.7,+250,+5,+270,+0.0460065,+2839.63,+61722.3,+730.251,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+1457.86,OK,OK
+2020-10-17 20:00:00 PDT,+3.1,+250,+5,+270,+0.0460065,+2839.63,+61722.3,+730.251,OK,OK,+8,+180,+0.0417684,+2578.04,+61722.3,+1457.86,OK,OK
+2020-10-17 21:00:00 PDT,+4.1,+230,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-10-17 22:00:00 PDT,+3.1,+240,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-10-17 23:00:00 PDT,+3,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-18 00:00:00 PDT,+2.8,+270,+5,+270,+0.0386425,+2385.1,+61722.3,+424.069,OK,OK,+8,+180,+0.0511919,+3159.68,+61722.3,+536.168,OK,OK
+2020-10-18 01:00:00 PDT,+2.7,+280,+5,+270,+0.0385328,+2378.33,+61722.3,+306.274,OK,OK,+8,+180,+0.050983,+3146.79,+61722.3,+389.454,OK,OK
+2020-10-18 02:00:00 PDT,+2.6,+290,+5,+270,+0.038333,+2366,+61722.3,+241.653,OK,OK,+8,+180,+0.05124,+3162.65,+61722.3,+303.709,OK,OK
+2020-10-18 03:00:00 PDT,+2.4,+300,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-18 04:00:00 PDT,+2.3,+320,+5,+270,+0.0375954,+2320.47,+61722.3,+101.899,OK,OK,+8,+180,+0.0527076,+3253.23,+61722.3,+120.583,OK,OK
+2020-10-18 05:00:00 PDT,+2.2,+340,+5,+270,+0.0370938,+2289.51,+61722.3,-34.0562,OK,OK,+8,+180,+0.0537743,+3319.07,+61722.3,-38.6358,OK,OK
+2020-10-18 06:00:00 PDT,+2.1,+350,+5,+270,+0.0365627,+2256.73,+61722.3,-164.926,OK,OK,+8,+180,+0.0551374,+3403.2,+61722.3,-177.826,OK,OK
+2020-10-18 07:00:00 PDT,+1.9,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-10-18 08:00:00 PDT,+2.1,+360,+5,+270,+0.0360952,+2227.87,+61722.3,-250.265,OK,OK,+8,+180,+0.056767,+3503.79,+61722.3,-255.152,OK,OK
+2020-10-18 09:00:00 PDT,+2.6,+360,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-10-18 10:00:00 PDT,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-10-18 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-18 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-18 13:00:00 PDT,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-18 14:00:00 PDT,+2.1,+280,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-10-18 15:00:00 PDT,+5.1,+240,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-10-18 16:00:00 PDT,+7.2,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-18 17:00:00 PDT,+7.7,+220,+5,+270,+0.0524544,+3237.6,+61722.3,+506.271,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,+1693.21,OK,OK
+2020-10-18 18:00:00 PDT,+6.2,+220,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-18 19:00:00 PDT,+5.1,+230,+5,+270,+0.0442731,+2732.63,+61722.3,+739.368,OK,OK,+8,+180,+0.0439556,+2713.04,+61722.3,+1318.68,OK,OK
+2020-10-18 20:00:00 PDT,+4.1,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-18 21:00:00 PDT,+3.1,+250,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-18 22:00:00 PDT,+2.6,+260,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-10-18 23:00:00 PDT,+2.3,+270,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-10-19 00:00:00 PDT,+2,+280,+5,+270,+0.0376128,+2321.55,+61722.3,+270.764,OK,OK,+8,+180,+0.0531342,+3279.56,+61722.3,+316.063,OK,OK
+2020-10-19 01:00:00 PDT,+1.8,+290,+5,+270,+0.0371875,+2295.3,+61722.3,+197.123,OK,OK,+8,+180,+0.0541127,+3339.96,+61722.3,+221.585,OK,OK
+2020-10-19 02:00:00 PDT,+1.5,+300,+5,+270,+0.0369185,+2278.69,+61722.3,+133.464,OK,OK,+8,+180,+0.0547729,+3380.7,+61722.3,+146.36,OK,OK
+2020-10-19 03:00:00 PDT,+1.1,+310,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-10-19 04:00:00 PDT,+0.8,+320,+5,+270,+0.0363179,+2241.62,+61722.3,+17.7984,OK,OK,+8,+180,+0.0566491,+3496.51,+61722.3,+18.2778,OK,OK
+2020-10-19 05:00:00 PDT,+0.5,+330,+5,+270,+0.0361856,+2233.46,+61722.3,-13.1341,OK,OK,+8,+180,+0.0571556,+3527.77,+61722.3,-13.2643,OK,OK
+2020-10-19 06:00:00 PDT,+0.3,+340,+5,+270,+0.036115,+2229.1,+61722.3,-24.5902,OK,OK,+8,+180,+0.0574641,+3546.81,+61722.3,-24.5895,OK,OK
+2020-10-19 07:00:00 PDT,+0,+0,+5,+270,+0.0360923,+2227.7,+61722.3,-24.1668,OK,OK,+8,+180,+0.0575755,+3553.69,+61722.3,-24.0815,OK,OK
+2020-10-19 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-19 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-19 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-19 11:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-19 12:00:00 PDT,+2.1,+320,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-10-19 13:00:00 PDT,+2.1,+290,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-10-19 14:00:00 PDT,+3.1,+270,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-10-19 15:00:00 PDT,+5.1,+250,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-10-19 16:00:00 PDT,+5.1,+240,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-19 17:00:00 PDT,+7.2,+230,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-19 18:00:00 PDT,+7.7,+260,+5,+270,+0.0524544,+3237.6,+61722.3,+506.271,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,+1693.21,OK,OK
+2020-10-19 19:00:00 PDT,+6.2,+240,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-10-19 20:00:00 PDT,+7.2,+230,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-19 21:00:00 PDT,+5.1,+230,+5,+270,+0.0524544,+3237.6,+61722.3,+506.271,OK,OK,+8,+180,+0.0330778,+2041.64,+61722.3,+1693.21,OK,OK
+2020-10-19 22:00:00 PDT,+5.1,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-19 23:00:00 PDT,+6.7,+230,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-20 00:00:00 PDT,+4.1,+190,+5,+270,+0.0496767,+3066.16,+61722.3,+554.82,OK,OK,+8,+180,+0.0361165,+2229.19,+61722.3,+1520.72,OK,OK
+2020-10-20 01:00:00 PDT,+3.6,+170,+5,+270,+0.0368047,+2271.67,+61722.3,+665.344,OK,OK,+8,+180,+0.0590611,+3645.38,+61722.3,+645.255,OK,OK
+2020-10-20 02:00:00 PDT,+3.1,+140,+5,+270,+0.0355685,+2195.37,+61722.3,+406.085,OK,OK,+8,+180,+0.0587307,+3624.99,+61722.3,+388.577,OK,OK
+2020-10-20 03:00:00 PDT,+2.6,+120,+5,+270,+0.0348014,+2148.02,+61722.3,+46.0478,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+49.9066,OK,OK
+2020-10-20 04:00:00 PDT,+2,+100,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-10-20 05:00:00 PDT,+1.5,+70,+5,+270,+0.0352972,+2178.62,+61722.3,-198.137,OK,OK,+8,+180,+0.0544415,+3360.25,+61722.3,-214.097,OK,OK
+2020-10-20 06:00:00 PDT,+1,+50,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-10-20 07:00:00 PDT,+0.5,+20,+5,+270,+0.0359125,+2216.6,+61722.3,-185.804,OK,OK,+8,+180,+0.0568178,+3506.93,+61722.3,-188.588,OK,OK
+2020-10-20 08:00:00 PDT,+0,+0,+5,+270,+0.036065,+2226.01,+61722.3,-86.178,OK,OK,+8,+180,+0.0574933,+3548.62,+61722.3,-86.0305,OK,OK
+2020-10-20 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-20 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-20 11:00:00 PDT,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-20 12:00:00 PDT,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-10-20 13:00:00 PDT,+2.6,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-20 14:00:00 PDT,+3.1,+40,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-10-20 15:00:00 PDT,+4.6,+310,+5,+270,+0.0353279,+2180.52,+61722.3,-460.249,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-569.314,OK,OK
+2020-10-20 16:00:00 PDT,+3.6,+260,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-10-20 17:00:00 PDT,+5.1,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-20 18:00:00 PDT,+6.7,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-20 19:00:00 PDT,+5.7,+240,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-10-20 20:00:00 PDT,+4.1,+240,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-10-20 21:00:00 PDT,+4.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-20 22:00:00 PDT,+5.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-20 23:00:00 PDT,+4.5,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-21 00:00:00 PDT,+4,+260,+5,+270,+0.0431588,+2663.86,+61722.3,+467.95,OK,OK,+8,+180,+0.0433014,+2672.66,+61722.3,+850.935,OK,OK
+2020-10-21 01:00:00 PDT,+3.5,+280,+5,+270,+0.0418371,+2582.28,+61722.3,+403.413,OK,OK,+8,+180,+0.0450239,+2778.97,+61722.3,+671.701,OK,OK
+2020-10-21 02:00:00 PDT,+2.9,+300,+5,+270,+0.0404237,+2495.04,+61722.3,+266.454,OK,OK,+8,+180,+0.0469376,+2897.1,+61722.3,+403.753,OK,OK
+2020-10-21 03:00:00 PDT,+2.3,+310,+5,+270,+0.0384972,+2376.14,+61722.3,+113.788,OK,OK,+8,+180,+0.0504569,+3114.31,+61722.3,+147.334,OK,OK
+2020-10-21 04:00:00 PDT,+1.7,+320,+5,+270,+0.0372917,+2301.73,+61722.3,+33.62,OK,OK,+8,+180,+0.0533763,+3294.51,+61722.3,+38.7483,OK,OK
+2020-10-21 05:00:00 PDT,+1.1,+330,+5,+270,+0.0365866,+2258.21,+61722.3,-26.596,OK,OK,+8,+180,+0.0555182,+3426.71,+61722.3,-28.3608,OK,OK
+2020-10-21 06:00:00 PDT,+0.6,+350,+5,+270,+0.0362365,+2236.6,+61722.3,-53.1758,OK,OK,+8,+180,+0.0568589,+3509.46,+61722.3,-54.2051,OK,OK
+2020-10-21 07:00:00 PDT,+0,+0,+5,+270,+0.0361001,+2228.18,+61722.3,-65.4319,OK,OK,+8,+180,+0.0574846,+3548.08,+61722.3,-65.3754,OK,OK
+2020-10-21 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-21 09:00:00 PDT,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-21 10:00:00 PDT,+2.6,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-10-21 11:00:00 PDT,+2.6,+290,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-10-21 12:00:00 PDT,+2.6,+260,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-10-21 13:00:00 PDT,+4.1,+240,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-10-21 14:00:00 PDT,+4.1,+280,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-21 15:00:00 PDT,+5.1,+260,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-21 16:00:00 PDT,+6.2,+240,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-10-21 17:00:00 PDT,+7.7,+250,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-10-21 18:00:00 PDT,+6.7,+240,+5,+270,+0.0653433,+4033.14,+61722.3,+130.439,OK,OK,+8,+180,+0.0199794,+1233.17,+61722.3,+1870.44,OK,OK
+2020-10-21 19:00:00 PDT,+5.1,+240,+5,+270,+0.0532371,+3285.92,+61722.3,+402.26,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,+1536.68,OK,OK
+2020-10-21 20:00:00 PDT,+2.6,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-21 21:00:00 PDT,+5.1,+230,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-10-21 22:00:00 PDT,+4.1,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-21 23:00:00 PDT,+3.6,+300,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-22 00:00:00 PDT,+3.5,+260,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-10-22 01:00:00 PDT,+2.4,+220,+5,+270,+0.0401652,+2479.08,+61722.3,+396.726,OK,OK,+8,+180,+0.0479431,+2959.16,+61722.3,+575.966,OK,OK
+2020-10-22 02:00:00 PDT,+0.8,+170,+5,+270,+0.0370237,+2285.19,+61722.3,+429.386,OK,OK,+8,+180,+0.0555223,+3426.96,+61722.3,+461.175,OK,OK
+2020-10-22 03:00:00 PDT,+0.8,+140,+5,+270,+0.0360587,+2225.62,+61722.3,+87.7087,OK,OK,+8,+180,+0.0576764,+3559.92,+61722.3,+87.105,OK,OK
+2020-10-22 04:00:00 PDT,+0.8,+90,+5,+270,+0.0360587,+2225.62,+61722.3,+87.7087,OK,OK,+8,+180,+0.0576764,+3559.92,+61722.3,+87.105,OK,OK
+2020-10-22 05:00:00 PDT,+0.7,+70,+5,+270,+0.0360587,+2225.62,+61722.3,+87.7087,OK,OK,+8,+180,+0.0576764,+3559.92,+61722.3,+87.105,OK,OK
+2020-10-22 06:00:00 PDT,+0.7,+70,+5,+270,+0.0359785,+2220.67,+61722.3,-119.614,OK,OK,+8,+180,+0.0571903,+3529.91,+61722.3,-120.255,OK,OK
+2020-10-22 07:00:00 PDT,+0.6,+40,+5,+270,+0.0359785,+2220.67,+61722.3,-119.614,OK,OK,+8,+180,+0.0571903,+3529.91,+61722.3,-120.255,OK,OK
+2020-10-22 08:00:00 PDT,+2.1,+30,+5,+270,+0.0360311,+2223.92,+61722.3,-113.241,OK,OK,+8,+180,+0.0573595,+3540.36,+61722.3,-113.407,OK,OK
+2020-10-22 09:00:00 PDT,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-10-22 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-22 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-22 12:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-22 13:00:00 PDT,+2.6,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-10-22 14:00:00 PDT,+5.1,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-10-22 15:00:00 PDT,+5.1,+240,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-10-22 16:00:00 PDT,+7.7,+230,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-10-22 17:00:00 PDT,+7.7,+220,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-22 18:00:00 PDT,+7.7,+220,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-22 19:00:00 PDT,+5.1,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-22 20:00:00 PDT,+4.6,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-22 21:00:00 PDT,+4.1,+250,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-10-22 22:00:00 PDT,+3.6,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-10-22 23:00:00 PDT,+5.9,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-23 00:00:00 PDT,+3,+220,+5,+270,+0.0505585,+3120.58,+61722.3,+376.586,OK,OK,+8,+180,+0.0335083,+2068.21,+61722.3,+1222.74,OK,OK
+2020-10-23 01:00:00 PDT,+2.7,+200,+5,+270,+0.0376032,+2320.96,+61722.3,+517.828,OK,OK,+8,+180,+0.0543478,+3354.47,+61722.3,+581.702,OK,OK
+2020-10-23 02:00:00 PDT,+2.4,+180,+5,+270,+0.0366797,+2263.95,+61722.3,+460.486,OK,OK,+8,+180,+0.0571247,+3525.87,+61722.3,+469.506,OK,OK
+2020-10-23 03:00:00 PDT,+2.1,+160,+5,+270,+0.0361108,+2228.84,+61722.3,+335.912,OK,OK,+8,+180,+0.0589855,+3640.72,+61722.3,+322.297,OK,OK
+2020-10-23 04:00:00 PDT,+1.8,+130,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-10-23 05:00:00 PDT,+1.5,+110,+5,+270,+0.0355341,+2193.24,+61722.3,-28.5356,OK,OK,+8,+180,+0.0560055,+3456.79,+61722.3,-29.4797,OK,OK
+2020-10-23 06:00:00 PDT,+1.2,+90,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-10-23 07:00:00 PDT,+0.9,+70,+5,+270,+0.0357649,+2207.49,+61722.3,-156.269,OK,OK,+8,+180,+0.0563972,+3480.96,+61722.3,-160.171,OK,OK
+2020-10-23 08:00:00 PDT,+2.1,+30,+5,+270,+0.0359117,+2216.55,+61722.3,-152.537,OK,OK,+8,+180,+0.0569086,+3512.53,+61722.3,-154.418,OK,OK
+2020-10-23 09:00:00 PDT,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-10-23 10:00:00 PDT,+1.3,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-23 11:00:00 PDT,+2.6,+300,+5,+270,+0.0363011,+2240.59,+61722.3,-62.2952,OK,OK,+8,+180,+0.0565564,+3490.79,+61722.3,-64.1254,OK,OK
+2020-10-23 12:00:00 PDT,+2.6,+270,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-10-23 13:00:00 PDT,+3.9,+240,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-10-23 14:00:00 PDT,+5.1,+210,+5,+270,+0.0403364,+2489.65,+61722.3,+529.978,OK,OK,+8,+180,+0.0483124,+2981.95,+61722.3,+760.124,OK,OK
+2020-10-23 15:00:00 PDT,+7.7,+220,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-10-23 16:00:00 PDT,+7.7,+220,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-23 17:00:00 PDT,+7.7,+210,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-23 18:00:00 PDT,+6.7,+210,+5,+270,+0.0501376,+3094.61,+61722.3,+679.127,OK,OK,+8,+180,+0.0370554,+2287.14,+61722.3,+1767.68,OK,OK
+2020-10-23 19:00:00 PDT,+7.7,+230,+5,+270,+0.0425967,+2629.16,+61722.3,+910.665,OK,OK,+8,+180,+0.0480188,+2963.83,+61722.3,+1357.55,OK,OK
+2020-10-23 20:00:00 PDT,+5.1,+220,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-23 21:00:00 PDT,+5.7,+230,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-10-23 22:00:00 PDT,+7.7,+260,+5,+270,+0.0450597,+2781.18,+61722.3,+616.371,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,+1219.66,OK,OK
+2020-10-23 23:00:00 PDT,+6.9,+270,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-10-24 00:00:00 PDT,+6.1,+280,+5,+270,+0.0624958,+3857.38,+61722.3,+98.4801,OK,OK,+8,+180,+0.0204825,+1264.23,+61722.3,+1283.61,OK,OK
+2020-10-24 01:00:00 PDT,+5.3,+290,+5,+270,+0.0555644,+3429.56,+61722.3,+142.608,OK,OK,+8,+180,+0.0263721,+1627.75,+61722.3,+846.101,OK,OK
+2020-10-24 02:00:00 PDT,+4.5,+300,+5,+270,+0.0491101,+3031.18,+61722.3,+152.034,OK,OK,+8,+180,+0.0334704,+2065.87,+61722.3,+497.336,OK,OK
+2020-10-24 03:00:00 PDT,+3.7,+320,+5,+270,+0.0438493,+2706.47,+61722.3,+115.721,OK,OK,+8,+180,+0.0405122,+2500.5,+61722.3,+242.698,OK,OK
+2020-10-24 04:00:00 PDT,+2.9,+330,+5,+270,+0.0394645,+2435.84,+61722.3,-43.9025,OK,OK,+8,+180,+0.0476948,+2943.83,+61722.3,-63.8601,OK,OK
+2020-10-24 05:00:00 PDT,+2.1,+330,+5,+270,+0.0374626,+2312.27,+61722.3,-121.428,OK,OK,+8,+180,+0.0523279,+3229.8,+61722.3,-145.232,OK,OK
+2020-10-24 06:00:00 PDT,+1.3,+340,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-10-24 07:00:00 PDT,+0.5,+360,+5,+270,+0.0362325,+2236.35,+61722.3,-102.306,OK,OK,+8,+180,+0.0567539,+3502.98,+61722.3,-104.591,OK,OK
+2020-10-24 08:00:00 PDT,+0,+0,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-10-24 09:00:00 PDT,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-24 10:00:00 PDT,+2.1,+280,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-10-24 11:00:00 PDT,+2.6,+240,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-10-24 12:00:00 PDT,+2.6,+250,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-24 13:00:00 PDT,+2.6,+250,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-24 14:00:00 PDT,+5.1,+250,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-24 15:00:00 PDT,+3.1,+240,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-24 16:00:00 PDT,+4.1,+230,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-24 17:00:00 PDT,+7.7,+230,+5,+270,+0.0400425,+2471.52,+61722.3,+597.159,OK,OK,+8,+180,+0.0493148,+3043.82,+61722.3,+822.164,OK,OK
+2020-10-24 18:00:00 PDT,+7.7,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-24 19:00:00 PDT,+5.1,+230,+5,+270,+0.0555544,+3428.94,+61722.3,+448.023,OK,OK,+8,+180,+0.0299847,+1850.72,+61722.3,+1882.34,OK,OK
+2020-10-24 20:00:00 PDT,+3.6,+240,+5,+270,+0.0428584,+2645.32,+61722.3,+627.005,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,+1060.98,OK,OK
+2020-10-24 21:00:00 PDT,+2.6,+300,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-10-24 22:00:00 PDT,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-10-24 23:00:00 PDT,+0.1,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-25 00:00:00 PDT,+3.3,+40,+5,+270,+0.0360835,+2227.15,+61722.3,-19.0092,OK,OK,+8,+180,+0.0576144,+3556.09,+61722.3,-18.9188,OK,OK
+2020-10-25 01:00:00 PDT,+3.9,+110,+5,+270,+0.0353363,+2181.03,+61722.3,-469.728,OK,OK,+8,+180,+0.0497166,+3068.62,+61722.3,-603.175,OK,OK
+2020-10-25 02:00:00 PDT,+4.5,+110,+5,+270,+0.0344986,+2129.33,+61722.3,-197.804,OK,OK,+8,+180,+0.0468115,+2889.31,+61722.3,-289.572,OK,OK
+2020-10-25 03:00:00 PDT,+6.1,+200,+5,+270,+0.034807,+2148.37,+61722.3,-176.48,OK,OK,+8,+180,+0.0433014,+2672.66,+61722.3,-321.637,OK,OK
+2020-10-25 04:00:00 PDT,+6.8,+250,+5,+270,+0.0391889,+2418.83,+61722.3,+982.628,OK,OK,+8,+180,+0.0551516,+3404.08,+61722.3,+1105.74,OK,OK
+2020-10-25 05:00:00 PDT,+6.4,+260,+5,+270,+0.0571907,+3529.94,+61722.3,+265.997,OK,OK,+8,+180,+0.0264667,+1633.59,+61722.3,+1533.35,OK,OK
+2020-10-25 06:00:00 PDT,+5.4,+350,+5,+270,+0.0562395,+3471.23,+61722.3,+227.693,OK,OK,+8,+180,+0.0267388,+1650.38,+61722.3,+1285.6,OK,OK
+2020-10-25 07:00:00 PDT,+8.7,+280,+5,+270,+0.038915,+2401.92,+61722.3,-397.115,OK,OK,+8,+180,+0.0465282,+2871.83,+61722.3,-603.189,OK,OK
+2020-10-25 08:00:00 PDT,+7.7,+60,+5,+270,+0.0858497,+5298.84,+61722.3,-146.208,OK,OK,+8,+180,+0.0197798,+1220.86,+61722.3,+417.727,OK,OK
+2020-10-25 09:00:00 PDT,+7.7,+30,+5,+270,+0.0563185,+3476.11,+61722.3,+682.511,OK,OK,+8,+180,+0.0139801,+862.882,+61722.3,+530.992,OK,OK
+2020-10-25 10:00:00 PDT,+10.3,+40,+5,+270,+0.0563185,+3476.11,+61722.3,+682.511,OK,OK,+8,+180,+0.0139801,+862.882,+61722.3,+530.992,OK,OK
+2020-10-25 11:00:00 PDT,+12.9,+30,+5,+270,+0.0801667,+4948.07,+61722.3,+1410.37,OK,OK,+8,+180,+0.0254399,+1570.21,+61722.3,+2742.69,OK,OK
+2020-10-25 12:00:00 PDT,+12.9,+30,+5,+270,+0.106667,+6583.7,+61722.3,+1985.3,OK,OK,+8,+180,+0.0512531,+3163.45,+61722.3,+3094.23,OK,OK
+2020-10-25 13:00:00 PDT,+12.9,+40,+5,+270,+0.106667,+6583.7,+61722.3,+1985.3,OK,OK,+8,+180,+0.0512531,+3163.45,+61722.3,+3094.23,OK,OK
+2020-10-25 14:00:00 PDT,+12.9,+40,+5,+270,+0.106667,+6583.7,+61722.3,+1985.3,OK,OK,+8,+180,+0.0512531,+3163.45,+61722.3,+3094.23,OK,OK
+2020-10-25 15:00:00 PDT,+12.9,+40,+5,+270,+0.106667,+6583.7,+61722.3,+1985.3,OK,OK,+8,+180,+0.0512531,+3163.45,+61722.3,+3094.23,OK,OK
+2020-10-25 16:00:00 PDT,+10.3,+30,+5,+270,+0.106667,+6583.7,+61722.3,+1985.3,OK,OK,+8,+180,+0.0512531,+3163.45,+61722.3,+3094.23,OK,OK
+2020-10-25 17:00:00 PDT,+12.9,+30,+5,+270,+0.0711915,+4394.1,+61722.3,+1165.27,OK,OK,+8,+180,+0.0156149,+963.788,+61722.3,+2642.45,OK,OK
+2020-10-25 18:00:00 PDT,+15.4,+30,+5,+270,+0.106667,+6583.7,+61722.3,+1985.3,OK,OK,+8,+180,+0.0512531,+3163.45,+61722.3,+3094.23,OK,OK
+2020-10-25 19:00:00 PDT,+7.7,+50,+5,+270,+0.150429,+9284.84,+61722.3,+2684.59,OK,OK,+8,+180,+0.096122,+5932.87,+61722.3,+3527.01,OK,OK
+2020-10-25 20:00:00 PDT,+7,+50,+5,+270,+0.0541984,+3345.25,+61722.3,+610.591,OK,OK,+8,+180,+0.014646,+903.983,+61722.3,+80.683,OK,OK
+2020-10-25 21:00:00 PDT,+6.2,+50,+5,+270,+0.0480378,+2965,+61722.3,+344.067,OK,OK,+8,+180,+0.0202699,+1251.1,+61722.3,-609.587,OK,OK
+2020-10-25 22:00:00 PDT,+7.7,+70,+5,+270,+0.0425718,+2627.63,+61722.3,+54.4283,OK,OK,+8,+180,+0.0276046,+1703.82,+61722.3,-838.697,OK,OK
+2020-10-25 23:00:00 PDT,+7.7,+70,+5,+270,+0.057276,+3535.21,+61722.3,+689.082,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+724.177,OK,OK
+2020-10-26 00:00:00 PDT,+8.5,+340,+5,+270,+0.057276,+3535.21,+61722.3,+689.082,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+724.177,OK,OK
+2020-10-26 01:00:00 PDT,+9.5,+30,+5,+270,+0.0560982,+3462.51,+61722.3,-57.327,OK,OK,+8,+180,+0.0213334,+1316.75,+61722.3,-843.171,OK,OK
+2020-10-26 02:00:00 PDT,+5.7,+20,+5,+270,+0.0625484,+3860.63,+61722.3,+889.777,OK,OK,+8,+180,+0.0107079,+660.919,+61722.3,+1623.24,OK,OK
+2020-10-26 03:00:00 PDT,+5,+360,+5,+270,+0.0374109,+2309.08,+61722.3,-440.086,OK,OK,+8,+180,+0.0410199,+2531.84,+61722.3,-916.145,OK,OK
+2020-10-26 04:00:00 PDT,+6.5,+90,+5,+270,+0.0365685,+2257.09,+61722.3,-556.495,OK,OK,+8,+180,+0.0517024,+3191.19,+61722.3,-671.452,OK,OK
+2020-10-26 05:00:00 PDT,+5.2,+350,+5,+270,+0.0445882,+2752.08,+61722.3,+198.804,OK,OK,+8,+180,+0.0238615,+1472.78,+61722.3,-426.526,OK,OK
+2020-10-26 06:00:00 PDT,+3,+300,+5,+270,+0.0386067,+2382.9,+61722.3,-396.119,OK,OK,+8,+180,+0.0473335,+2921.53,+61722.3,-579.589,OK,OK
+2020-10-26 07:00:00 PDT,+4.4,+10,+5,+270,+0.0387144,+2389.54,+61722.3,+115.573,OK,OK,+8,+180,+0.0499568,+3083.44,+61722.3,+152.808,OK,OK
+2020-10-26 08:00:00 PDT,+1.7,+270,+5,+270,+0.0360552,+2225.41,+61722.3,-532.109,OK,OK,+8,+180,+0.0502525,+3101.7,+61722.3,-673.577,OK,OK
+2020-10-26 09:00:00 PDT,+3.6,+30,+5,+270,+0.0368533,+2274.67,+61722.3,+213.504,OK,OK,+8,+180,+0.0551663,+3404.99,+61722.3,+231.108,OK,OK
+2020-10-26 10:00:00 PDT,+7.2,+120,+5,+270,+0.0355106,+2191.8,+61722.3,-492.278,OK,OK,+8,+180,+0.049473,+3053.59,+61722.3,-639.6,OK,OK
+2020-10-26 11:00:00 PDT,+0,+0,+5,+270,+0.0411111,+2537.47,+61722.3,+59.2738,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,-190.809,OK,OK
+2020-10-26 12:00:00 PDT,+5.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-26 13:00:00 PDT,+5.1,+70,+5,+270,+0.0372968,+2302.04,+61722.3,-141.163,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,-557.683,OK,OK
+2020-10-26 14:00:00 PDT,+5.1,+50,+5,+270,+0.0372968,+2302.04,+61722.3,-141.163,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,-557.683,OK,OK
+2020-10-26 15:00:00 PDT,+3.6,+80,+5,+270,+0.0372968,+2302.04,+61722.3,-141.163,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,-557.683,OK,OK
+2020-10-26 16:00:00 PDT,+4.1,+110,+5,+270,+0.0349895,+2159.63,+61722.3,-347.419,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,-522.323,OK,OK
+2020-10-26 17:00:00 PDT,+2.1,+160,+5,+270,+0.0345512,+2132.58,+61722.3,-193.14,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,-301.033,OK,OK
+2020-10-26 18:00:00 PDT,+5.1,+210,+5,+270,+0.0357288,+2205.26,+61722.3,+167.915,OK,OK,+8,+180,+0.0573203,+3537.94,+61722.3,+167.496,OK,OK
+2020-10-26 19:00:00 PDT,+2.6,+200,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-10-26 20:00:00 PDT,+5.1,+240,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-10-26 21:00:00 PDT,+4.1,+250,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-26 22:00:00 PDT,+4.1,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-10-26 23:00:00 PDT,+2.6,+240,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-10-27 00:00:00 PDT,+2.4,+180,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-27 01:00:00 PDT,+2.1,+190,+5,+270,+0.0361108,+2228.84,+61722.3,+335.912,OK,OK,+8,+180,+0.0589855,+3640.72,+61722.3,+322.297,OK,OK
+2020-10-27 02:00:00 PDT,+1.9,+160,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-10-27 03:00:00 PDT,+1.6,+100,+5,+270,+0.0357932,+2209.24,+61722.3,+152.167,OK,OK,+8,+180,+0.0573748,+3541.3,+61722.3,+151.718,OK,OK
+2020-10-27 04:00:00 PDT,+1.4,+110,+5,+270,+0.0355467,+2194.02,+61722.3,-164.745,OK,OK,+8,+180,+0.0555845,+3430.8,+61722.3,-172.408,OK,OK
+2020-10-27 05:00:00 PDT,+1,+130,+5,+270,+0.0356766,+2202.04,+61722.3,-108.346,OK,OK,+8,+180,+0.0562146,+3469.69,+61722.3,-111.491,OK,OK
+2020-10-27 06:00:00 PDT,+0.8,+60,+5,+270,+0.0359069,+2216.26,+61722.3,-16.3994,OK,OK,+8,+180,+0.0571222,+3525.71,+61722.3,-16.4996,OK,OK
+2020-10-27 07:00:00 PDT,+0.5,+40,+5,+270,+0.0359578,+2219.4,+61722.3,-145.208,OK,OK,+8,+180,+0.0570744,+3522.76,+61722.3,-146.417,OK,OK
+2020-10-27 08:00:00 PDT,+0.3,+10,+5,+270,+0.0360474,+2224.93,+61722.3,-94.5817,OK,OK,+8,+180,+0.0574396,+3545.3,+61722.3,-94.5336,OK,OK
+2020-10-27 09:00:00 PDT,+0,+0,+5,+270,+0.0360813,+2227.02,+61722.3,-46.8576,OK,OK,+8,+180,+0.0575874,+3554.43,+61722.3,-46.6678,OK,OK
+2020-10-27 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-27 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-27 12:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-27 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-27 14:00:00 PDT,+2.6,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-27 15:00:00 PDT,+4.1,+240,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-10-27 16:00:00 PDT,+5.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-27 17:00:00 PDT,+5.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-27 18:00:00 PDT,+5.1,+213,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-27 19:00:00 PDT,+5.1,+230,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-27 20:00:00 PDT,+4.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-27 21:00:00 PDT,+5.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-27 22:00:00 PDT,+5.1,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-27 23:00:00 PDT,+2.6,+240,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-10-28 00:00:00 PDT,+2.2,+210,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-10-28 01:00:00 PDT,+1.8,+170,+5,+270,+0.0366746,+2263.64,+61722.3,+393.479,OK,OK,+8,+180,+0.0565574,+3490.85,+61722.3,+407.645,OK,OK
+2020-10-28 02:00:00 PDT,+1.4,+220,+5,+270,+0.0359527,+2219.08,+61722.3,+198.548,OK,OK,+8,+180,+0.0578985,+3573.63,+61722.3,+195.624,OK,OK
+2020-10-28 03:00:00 PDT,+1,+200,+5,+270,+0.0363909,+2246.13,+61722.3,+260.844,OK,OK,+8,+180,+0.0569057,+3512.35,+61722.3,+266.254,OK,OK
+2020-10-28 04:00:00 PDT,+0.5,+180,+5,+270,+0.0361662,+2232.26,+61722.3,+172.64,OK,OK,+8,+180,+0.0575532,+3552.31,+61722.3,+172.364,OK,OK
+2020-10-28 05:00:00 PDT,+0.1,+160,+5,+270,+0.0360851,+2227.25,+61722.3,+67.589,OK,OK,+8,+180,+0.0576809,+3560.2,+61722.3,+67.1452,OK,OK
+2020-10-28 06:00:00 PDT,+0,+0,+5,+270,+0.0360842,+2227.2,+61722.3,+8.06582,OK,OK,+8,+180,+0.057621,+3556.5,+61722.3,+8.02605,OK,OK
+2020-10-28 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-28 08:00:00 PDT,+1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-28 09:00:00 PDT,+0,+0,+5,+270,+0.0358695,+2213.95,+61722.3,-79.0165,OK,OK,+8,+180,+0.0569034,+3512.2,+61722.3,-79.9472,OK,OK
+2020-10-28 10:00:00 PDT,+2.6,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-28 11:00:00 PDT,+2.6,+340,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-10-28 12:00:00 PDT,+2.6,+330,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-10-28 13:00:00 PDT,+2.6,+320,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-10-28 14:00:00 PDT,+3.9,+310,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-10-28 15:00:00 PDT,+5.1,+300,+5,+270,+0.0407461,+2514.94,+61722.3,+42.2773,OK,OK,+8,+180,+0.0454741,+2806.77,+61722.3,+68.3509,OK,OK
+2020-10-28 16:00:00 PDT,+2.6,+290,+5,+270,+0.0470788,+2905.81,+61722.3,+101.974,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,+285.258,OK,OK
+2020-10-28 17:00:00 PDT,+5.1,+270,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-28 18:00:00 PDT,+5.1,+240,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-10-28 19:00:00 PDT,+5.1,+230,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-10-28 20:00:00 PDT,+3.6,+250,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-10-28 21:00:00 PDT,+3.6,+260,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-10-28 22:00:00 PDT,+1.5,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-10-28 23:00:00 PDT,+1.5,+60,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-10-29 00:00:00 PDT,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-10-29 01:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 02:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 03:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 04:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 05:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 06:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 07:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 08:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 09:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 12:00:00 PDT,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 13:00:00 PDT,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-10-29 14:00:00 PDT,+2.6,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-29 15:00:00 PDT,+5.1,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-10-29 16:00:00 PDT,+5.1,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-29 17:00:00 PDT,+4.1,+240,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-29 18:00:00 PDT,+5.1,+250,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-29 19:00:00 PDT,+5.1,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-29 20:00:00 PDT,+4.6,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-10-29 21:00:00 PDT,+2.6,+280,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-10-29 22:00:00 PDT,+2.6,+270,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-10-29 23:00:00 PDT,+2.6,+250,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-10-30 00:00:00 PDT,+4.9,+230,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-10-30 01:00:00 PDT,+2.1,+190,+5,+270,+0.0422134,+2605.51,+61722.3,+625.829,OK,OK,+8,+180,+0.0458294,+2828.7,+61722.3,+1010.94,OK,OK
+2020-10-30 02:00:00 PDT,+1.8,+170,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-10-30 03:00:00 PDT,+3.1,+150,+5,+270,+0.0359527,+2219.08,+61722.3,+198.548,OK,OK,+8,+180,+0.0578985,+3573.63,+61722.3,+195.624,OK,OK
+2020-10-30 04:00:00 PDT,+1.3,+130,+5,+270,+0.0350114,+2160.98,+61722.3,+143.482,OK,OK,+8,+180,+0.0555144,+3426.48,+61722.3,+149.222,OK,OK
+2020-10-30 05:00:00 PDT,+3.1,+110,+5,+270,+0.0357882,+2208.93,+61722.3,-21.1043,OK,OK,+8,+180,+0.0567779,+3504.46,+61722.3,-21.4014,OK,OK
+2020-10-30 06:00:00 PDT,+0.8,+80,+5,+270,+0.0346488,+2138.6,+61722.3,-194.787,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,-238.109,OK,OK
+2020-10-30 07:00:00 PDT,+0.5,+50,+5,+270,+0.03594,+2218.3,+61722.3,-123.088,OK,OK,+8,+180,+0.0570592,+3521.82,+61722.3,-124.13,OK,OK
+2020-10-30 08:00:00 PDT,+0.3,+30,+5,+270,+0.0360402,+2224.48,+61722.3,-94.531,OK,OK,+8,+180,+0.0574207,+3544.13,+61722.3,-94.5216,OK,OK
+2020-10-30 09:00:00 PDT,+0,+0,+5,+270,+0.0360744,+2226.59,+61722.3,-55.2187,OK,OK,+8,+180,+0.057565,+3553.04,+61722.3,-55.023,OK,OK
+2020-10-30 10:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-30 11:00:00 PDT,+2.6,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-30 12:00:00 PDT,+0,+0,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-10-30 13:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-30 14:00:00 PDT,+2.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-30 15:00:00 PDT,+2.1,+310,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-10-30 16:00:00 PDT,+2.6,+290,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-10-30 17:00:00 PDT,+2.6,+260,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-30 18:00:00 PDT,+4.6,+240,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-30 19:00:00 PDT,+4.1,+240,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-10-30 20:00:00 PDT,+3.6,+260,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-30 21:00:00 PDT,+2.6,+290,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-10-30 22:00:00 PDT,+2.6,+310,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-30 23:00:00 PDT,+2.6,+200,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-31 00:00:00 PDT,+0.2,+250,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-10-31 01:00:00 PDT,+2.5,+220,+5,+270,+0.0360939,+2227.8,+61722.3,+34.5673,OK,OK,+8,+180,+0.057593,+3554.77,+61722.3,+34.4297,OK,OK
+2020-10-31 02:00:00 PDT,+0.6,+150,+5,+270,+0.0371091,+2290.46,+61722.3,+444.891,OK,OK,+8,+180,+0.0553443,+3415.98,+61722.3,+481.041,OK,OK
+2020-10-31 03:00:00 PDT,+2.3,+160,+5,+270,+0.0360424,+2224.62,+61722.3,+29.5725,OK,OK,+8,+180,+0.0575424,+3551.64,+61722.3,+29.4704,OK,OK
+2020-10-31 04:00:00 PDT,+1.1,+110,+5,+270,+0.035658,+2200.89,+61722.3,+183.579,OK,OK,+8,+180,+0.0572604,+3534.24,+61722.3,+183.216,OK,OK
+2020-10-31 05:00:00 PDT,+2.8,+130,+5,+270,+0.0358261,+2211.27,+61722.3,-86.5313,OK,OK,+8,+180,+0.0567526,+3502.9,+61722.3,-87.868,OK,OK
+2020-10-31 06:00:00 PDT,+1.5,+60,+5,+270,+0.0348852,+2153.2,+61722.3,-41.0068,OK,OK,+8,+180,+0.0537223,+3315.86,+61722.3,-45.1032,OK,OK
+2020-10-31 07:00:00 PDT,+1.7,+60,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-10-31 08:00:00 PDT,+1.9,+40,+5,+270,+0.0355786,+2195.99,+61722.3,-290.743,OK,OK,+8,+180,+0.0551526,+3404.15,+61722.3,-308.486,OK,OK
+2020-10-31 09:00:00 PDT,+2.1,+20,+5,+270,+0.035633,+2199.35,+61722.3,-333.466,OK,OK,+8,+180,+0.0549948,+3394.4,+61722.3,-355.857,OK,OK
+2020-10-31 10:00:00 PDT,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-10-31 11:00:00 PDT,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-31 12:00:00 PDT,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-10-31 13:00:00 PDT,+2.1,+280,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-10-31 14:00:00 PDT,+3.1,+240,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-10-31 15:00:00 PDT,+3.1,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-31 16:00:00 PDT,+3.6,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-10-31 17:00:00 PDT,+4.1,+240,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-10-31 18:00:00 PDT,+4.1,+220,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-31 19:00:00 PDT,+3.6,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-10-31 20:00:00 PDT,+1.5,+300,+5,+270,+0.039578,+2442.84,+61722.3,+514.341,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,+694.782,OK,OK
+2020-10-31 21:00:00 PDT,+2.1,+330,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-10-31 22:00:00 PDT,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-10-31 23:00:00 PDT,+0.2,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 00:00:00 PDT,+0.4,+0,+5,+270,+0.036085,+2227.25,+61722.3,-26.9842,OK,OK,+8,+180,+0.0576122,+3555.96,+61722.3,-26.8581,OK,OK
+2020-11-01 01:00:00 PDT,+0.6,+0,+5,+270,+0.036085,+2227.25,+61722.3,-53.9258,OK,OK,+8,+180,+0.0575838,+3554.2,+61722.3,-53.7161,OK,OK
+2020-11-01 02:00:00 PDT,+0.9,+80,+5,+270,+0.0360851,+2227.25,+61722.3,-80.7821,OK,OK,+8,+180,+0.0575365,+3551.28,+61722.3,-80.5742,OK,OK
+2020-11-01 02:00:00 PST,+1.1,+10,+5,+270,+0.035903,+2216.02,+61722.3,-137.872,OK,OK,+8,+180,+0.0569098,+3512.6,+61722.3,-139.547,OK,OK
+2020-11-01 03:00:00 PST,+1.3,+0,+5,+270,+0.0360382,+2224.36,+61722.3,-169.754,OK,OK,+8,+180,+0.0571608,+3528.09,+61722.3,-170.977,OK,OK
+2020-11-01 04:00:00 PST,+1.5,+350,+5,+270,+0.0360872,+2227.39,+61722.3,-173.485,OK,OK,+8,+180,+0.0572216,+3531.84,+61722.3,-174.577,OK,OK
+2020-11-01 05:00:00 PST,+1.5,+90,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-01 06:00:00 PST,+1.5,+70,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-01 07:00:00 PST,+1.5,+30,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-01 08:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-01 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 14:00:00 PST,+4.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 15:00:00 PST,+4.6,+240,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-11-01 16:00:00 PST,+3.6,+250,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-11-01 17:00:00 PST,+3.6,+290,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-11-01 18:00:00 PST,+2.6,+320,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-11-01 19:00:00 PST,+3.1,+320,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-11-01 20:00:00 PST,+0,+0,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-11-01 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 22:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-01 23:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-11-02 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 11:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 12:00:00 PST,+3.6,+280,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-02 13:00:00 PST,+5.7,+240,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-11-02 14:00:00 PST,+5.7,+270,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-11-02 15:00:00 PST,+3.6,+250,+5,+270,+0.047304,+2919.71,+61722.3,+500.181,OK,OK,+8,+180,+0.0381077,+2352.1,+61722.3,+1212.33,OK,OK
+2020-11-02 16:00:00 PST,+4.1,+250,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-11-02 17:00:00 PST,+4.6,+240,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-11-02 18:00:00 PST,+2.1,+280,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-11-02 19:00:00 PST,+3.6,+320,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-02 20:00:00 PST,+1.5,+40,+5,+270,+0.0392243,+2421.01,+61722.3,-43.6235,OK,OK,+8,+180,+0.0482214,+2976.33,+61722.3,-61.9754,OK,OK
+2020-11-02 21:00:00 PST,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-11-02 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-02 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 05:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 06:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-11-03 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 13:00:00 PST,+3.6,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 14:00:00 PST,+4.6,+290,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-11-03 15:00:00 PST,+3.6,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-11-03 16:00:00 PST,+3.1,+240,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-11-03 17:00:00 PST,+2.6,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-11-03 18:00:00 PST,+1.5,+310,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-11-03 19:00:00 PST,+0.8,+340,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-11-03 20:00:00 PST,+0,+0,+5,+270,+0.0361384,+2230.54,+61722.3,-63.9359,OK,OK,+8,+180,+0.057293,+3536.26,+61722.3,-64.2674,OK,OK
+2020-11-03 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-03 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 10:00:00 PST,+2.1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 11:00:00 PST,+0,+0,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-11-04 12:00:00 PST,+2.6,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 13:00:00 PST,+5.1,+310,+5,+270,+0.0367986,+2271.29,+61722.3,-188.909,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-210.779,OK,OK
+2020-11-04 14:00:00 PST,+5.7,+290,+5,+270,+0.0459054,+2833.39,+61722.3,+36.5649,OK,OK,+8,+180,+0.0370073,+2284.17,+61722.3,+94.4888,OK,OK
+2020-11-04 15:00:00 PST,+5.7,+290,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-11-04 16:00:00 PST,+4.6,+260,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-11-04 17:00:00 PST,+3.6,+260,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-11-04 18:00:00 PST,+4.1,+250,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-11-04 19:00:00 PST,+3.1,+290,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-11-04 20:00:00 PST,+2.1,+320,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-11-04 21:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-11-04 22:00:00 PST,+2.6,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-04 23:00:00 PST,+2.1,+260,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-11-05 00:00:00 PST,+0,+0,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-11-05 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-05 02:00:00 PST,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-05 03:00:00 PST,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-11-05 04:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-05 05:00:00 PST,+1.5,+120,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-11-05 06:00:00 PST,+2.1,+150,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-11-05 07:00:00 PST,+2.1,+120,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-11-05 08:00:00 PST,+1.8,+40,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-11-05 09:00:00 PST,+1.5,+310,+5,+270,+0.0356702,+2201.65,+61722.3,-318.725,OK,OK,+8,+180,+0.0552637,+3411,+61722.3,-337.494,OK,OK
+2020-11-05 10:00:00 PST,+2.5,+290,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-11-05 11:00:00 PST,+3.6,+260,+5,+270,+0.0378839,+2338.28,+61722.3,+170.022,OK,OK,+8,+180,+0.0521356,+3217.93,+61722.3,+205.935,OK,OK
+2020-11-05 12:00:00 PST,+4.6,+240,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-11-05 13:00:00 PST,+4.1,+300,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-11-05 14:00:00 PST,+4.1,+270,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-11-05 15:00:00 PST,+4.1,+260,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-11-05 16:00:00 PST,+3.6,+280,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-11-05 17:00:00 PST,+3.1,+240,+5,+270,+0.0407555,+2515.52,+61722.3,+267.367,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,+416.897,OK,OK
+2020-11-05 18:00:00 PST,+1.5,+260,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-11-05 19:00:00 PST,+1.5,+320,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-11-05 20:00:00 PST,+1.8,+310,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-11-05 21:00:00 PST,+2.1,+290,+5,+270,+0.0367668,+2269.33,+61722.3,+27.7331,OK,OK,+8,+180,+0.0550194,+3395.92,+61722.3,+30.1105,OK,OK
+2020-11-05 22:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-11-05 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 00:00:00 PST,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 01:00:00 PST,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-11-06 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 03:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 04:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-06 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 11:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 12:00:00 PST,+3.1,+290,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-06 13:00:00 PST,+4.6,+250,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-11-06 14:00:00 PST,+6.7,+270,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-11-06 15:00:00 PST,+4.6,+270,+5,+270,+0.060503,+3734.38,+61722.3,+123.942,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,+1221.27,OK,OK
+2020-11-06 16:00:00 PST,+4.1,+270,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-11-06 17:00:00 PST,+4.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-11-06 18:00:00 PST,+3.1,+290,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-11-06 19:00:00 PST,+1.5,+320,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-11-06 20:00:00 PST,+1.5,+290,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-06 21:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-06 22:00:00 PST,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-06 23:00:00 PST,+2.1,+290,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-11-07 00:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-11-07 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 10:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 11:00:00 PST,+2.1,+130,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-11-07 12:00:00 PST,+2.6,+190,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-11-07 13:00:00 PST,+0,+0,+5,+270,+0.0363678,+2244.7,+61722.3,+412.843,OK,OK,+8,+180,+0.0581996,+3592.21,+61722.3,+406.408,OK,OK
+2020-11-07 14:00:00 PST,+3.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-07 15:00:00 PST,+4.4,+280,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-11-07 16:00:00 PST,+5.1,+250,+5,+270,+0.0440669,+2719.91,+61722.3,+256.694,OK,OK,+8,+180,+0.0408492,+2521.3,+61722.3,+529.328,OK,OK
+2020-11-07 17:00:00 PST,+2.6,+250,+5,+270,+0.0459127,+2833.84,+61722.3,+443.12,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,+997.362,OK,OK
+2020-11-07 18:00:00 PST,+4.1,+260,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-11-07 19:00:00 PST,+3.1,+300,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-11-07 20:00:00 PST,+3.6,+270,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-11-07 21:00:00 PST,+2.1,+270,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-11-07 22:00:00 PST,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-11-07 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 01:00:00 PST,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 02:00:00 PST,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-11-08 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 10:00:00 PST,+2.1,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 11:00:00 PST,+1.8,+200,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-11-08 12:00:00 PST,+1.5,+270,+5,+270,+0.0363484,+2243.51,+61722.3,+309.405,OK,OK,+8,+180,+0.0574001,+3542.86,+61722.3,+311.232,OK,OK
+2020-11-08 13:00:00 PST,+1.5,+300,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-11-08 14:00:00 PST,+2.1,+270,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-11-08 15:00:00 PST,+3.6,+220,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-11-08 16:00:00 PST,+3.1,+260,+5,+270,+0.0383588,+2367.59,+61722.3,+593.867,OK,OK,+8,+180,+0.0529191,+3266.29,+61722.3,+706.006,OK,OK
+2020-11-08 17:00:00 PST,+2.6,+240,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-11-08 18:00:00 PST,+1.5,+280,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-11-08 19:00:00 PST,+1.5,+260,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-11-08 20:00:00 PST,+3.1,+270,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-11-08 21:00:00 PST,+0,+0,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-11-08 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-08 23:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 00:00:00 PST,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-11-09 01:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 02:00:00 PST,+1.5,+330,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-09 03:00:00 PST,+1.5,+100,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-09 04:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-09 05:00:00 PST,+1.5,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 06:00:00 PST,+0,+0,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-11-09 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 10:00:00 PST,+1.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 11:00:00 PST,+2.1,+20,+5,+270,+0.0360382,+2224.36,+61722.3,-169.754,OK,OK,+8,+180,+0.0571608,+3528.09,+61722.3,-170.977,OK,OK
+2020-11-09 12:00:00 PST,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-11-09 13:00:00 PST,+0.8,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 14:00:00 PST,+1.5,+220,+5,+270,+0.036232,+2236.32,+61722.3,+63.5105,OK,OK,+8,+180,+0.0570582,+3521.76,+61722.3,+64.3694,OK,OK
+2020-11-09 15:00:00 PST,+0,+0,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-11-09 16:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 17:00:00 PST,+3.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 18:00:00 PST,+3.6,+290,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-11-09 19:00:00 PST,+4.1,+260,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-11-09 20:00:00 PST,+0,+0,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-11-09 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-09 23:00:00 PST,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 00:00:00 PST,+0,+0,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-11-10 01:00:00 PST,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 02:00:00 PST,+2.6,+270,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-11-10 03:00:00 PST,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-11-10 04:00:00 PST,+1.5,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 05:00:00 PST,+0,+0,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-11-10 06:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 07:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-10 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 13:00:00 PST,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 14:00:00 PST,+3.1,+300,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-11-10 15:00:00 PST,+4.1,+280,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-11-10 16:00:00 PST,+4.6,+260,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-11-10 17:00:00 PST,+2.6,+250,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-11-10 18:00:00 PST,+2.1,+280,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-11-10 19:00:00 PST,+1.1,+320,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-10 20:00:00 PST,+0,+0,+5,+270,+0.0362802,+2239.3,+61722.3,-17.8456,OK,OK,+8,+180,+0.0567406,+3502.16,+61722.3,-18.2664,OK,OK
+2020-11-10 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-10 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 00:00:00 PST,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 01:00:00 PST,+0,+0,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-11-11 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 04:00:00 PST,+2.1,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 05:00:00 PST,+1.5,+270,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-11-11 06:00:00 PST,+0,+0,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-11-11 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 13:00:00 PST,+1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 14:00:00 PST,+2.1,+310,+5,+270,+0.0362091,+2234.91,+61722.3,-48.5258,OK,OK,+8,+180,+0.0569912,+3517.63,+61722.3,-49.2557,OK,OK
+2020-11-11 15:00:00 PST,+3.1,+280,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-11-11 16:00:00 PST,+5.1,+240,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-11-11 17:00:00 PST,+2.6,+300,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-11-11 18:00:00 PST,+0,+0,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-11-11 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 20:00:00 PST,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 21:00:00 PST,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-11-11 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-11 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 06:00:00 PST,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 07:00:00 PST,+0,+0,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-11-12 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 11:00:00 PST,+1.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 12:00:00 PST,+2.1,+260,+5,+270,+0.0363179,+2241.62,+61722.3,+17.7984,OK,OK,+8,+180,+0.0566491,+3496.51,+61722.3,+18.2778,OK,OK
+2020-11-12 13:00:00 PST,+5.7,+300,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-11-12 14:00:00 PST,+5.7,+280,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-11-12 15:00:00 PST,+4.6,+270,+5,+270,+0.0510763,+3152.54,+61722.3,+81.6634,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,+334.511,OK,OK
+2020-11-12 16:00:00 PST,+3.6,+260,+5,+270,+0.0449172,+2772.39,+61722.3,+317.671,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,+690.365,OK,OK
+2020-11-12 17:00:00 PST,+2.6,+270,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-11-12 18:00:00 PST,+1.5,+320,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-11-12 19:00:00 PST,+1.5,+90,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-12 20:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-12 21:00:00 PST,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-12 22:00:00 PST,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-11-12 23:00:00 PST,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 00:00:00 PST,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-11-13 01:00:00 PST,+2.6,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 02:00:00 PST,+0,+0,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-11-13 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 07:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 08:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-11-13 09:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 10:00:00 PST,+1.5,+330,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-13 11:00:00 PST,+1.8,+330,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-13 12:00:00 PST,+2.1,+320,+5,+270,+0.0365268,+2254.51,+61722.3,-83.7794,OK,OK,+8,+180,+0.0555799,+3430.52,+61722.3,-89.0851,OK,OK
+2020-11-13 13:00:00 PST,+2.1,+320,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-11-13 14:00:00 PST,+4.6,+310,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-11-13 15:00:00 PST,+6.2,+270,+5,+270,+0.0434366,+2681.01,+61722.3,+40.2085,OK,OK,+8,+180,+0.0407865,+2517.44,+61722.3,+82.967,OK,OK
+2020-11-13 16:00:00 PST,+4.1,+270,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-11-13 17:00:00 PST,+4.6,+300,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-11-13 18:00:00 PST,+2.1,+300,+5,+270,+0.0443362,+2736.53,+61722.3,+113.939,OK,OK,+8,+180,+0.0397579,+2453.94,+61722.3,+249.432,OK,OK
+2020-11-13 19:00:00 PST,+0,+0,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-11-13 20:00:00 PST,+3.6,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-13 21:00:00 PST,+2.6,+310,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-11-13 22:00:00 PST,+0,+0,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-11-13 23:00:00 PST,+1.5,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 00:00:00 PST,+2.1,+360,+5,+270,+0.0356506,+2200.44,+61722.3,-71.1258,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,-73.1231,OK,OK
+2020-11-14 01:00:00 PST,+2.1,+10,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-11-14 02:00:00 PST,+2.1,+110,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-11-14 03:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-11-14 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 11:00:00 PST,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 12:00:00 PST,+1.5,+320,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-11-14 13:00:00 PST,+2.6,+250,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-14 14:00:00 PST,+6.2,+290,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-11-14 15:00:00 PST,+8.2,+280,+5,+270,+0.0561468,+3465.51,+61722.3,+94.4559,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,+636.726,OK,OK
+2020-11-14 16:00:00 PST,+7.7,+260,+5,+270,+0.0788506,+4866.84,+61722.3,-87.4254,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+804.068,OK,OK
+2020-11-14 17:00:00 PST,+3.6,+260,+5,+270,+0.0689483,+4255.64,+61722.3,+41.4956,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+1677,OK,OK
+2020-11-14 18:00:00 PST,+1.8,+310,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-11-14 19:00:00 PST,+0,+0,+5,+270,+0.0367668,+2269.33,+61722.3,+27.7331,OK,OK,+8,+180,+0.0550194,+3395.92,+61722.3,+30.1105,OK,OK
+2020-11-14 20:00:00 PST,+2.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-14 21:00:00 PST,+3.1,+320,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-11-14 22:00:00 PST,+2.1,+290,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-11-14 23:00:00 PST,+1.5,+10,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-11-15 00:00:00 PST,+2.1,+270,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-11-15 01:00:00 PST,+1.5,+280,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-11-15 02:00:00 PST,+1.5,+120,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-11-15 03:00:00 PST,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-11-15 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-15 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-15 06:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-15 07:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-15 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-15 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-15 10:00:00 PST,+0.8,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-15 11:00:00 PST,+1.5,+290,+5,+270,+0.0361631,+2232.07,+61722.3,-39.0725,OK,OK,+8,+180,+0.0572182,+3531.64,+61722.3,-39.375,OK,OK
+2020-11-15 12:00:00 PST,+3.1,+340,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-15 13:00:00 PST,+3.1,+330,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-11-15 14:00:00 PST,+4.1,+270,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-11-15 15:00:00 PST,+5.1,+260,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-11-15 16:00:00 PST,+5.7,+260,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-11-15 17:00:00 PST,+4.6,+280,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-11-15 18:00:00 PST,+3.1,+270,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-11-15 19:00:00 PST,+1.5,+280,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-11-15 20:00:00 PST,+2.6,+230,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-11-15 21:00:00 PST,+1.5,+10,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-11-15 22:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-11-15 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 11:00:00 PST,+2.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-16 12:00:00 PST,+3.1,+300,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-11-16 13:00:00 PST,+6.2,+270,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-11-16 14:00:00 PST,+6.7,+250,+5,+270,+0.0559111,+3450.96,+61722.3,+183.873,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,+1067.8,OK,OK
+2020-11-16 15:00:00 PST,+6.7,+270,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-11-16 16:00:00 PST,+6.2,+260,+5,+270,+0.0563789,+3479.83,+61722.3,+279.753,OK,OK,+8,+180,+0.0272519,+1682.05,+61722.3,+1495.62,OK,OK
+2020-11-16 17:00:00 PST,+5.7,+260,+5,+270,+0.0545968,+3369.84,+61722.3,+252.65,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,+1219.41,OK,OK
+2020-11-16 18:00:00 PST,+5.1,+240,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-11-16 19:00:00 PST,+4.1,+260,+5,+270,+0.0444811,+2745.48,+61722.3,+533.134,OK,OK,+8,+180,+0.041871,+2584.37,+61722.3,+1047.11,OK,OK
+2020-11-16 20:00:00 PST,+4.6,+230,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-11-16 21:00:00 PST,+4.1,+250,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-11-16 22:00:00 PST,+3.6,+260,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-11-16 23:00:00 PST,+2.6,+260,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-11-17 00:00:00 PST,+0,+0,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-11-17 01:00:00 PST,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-17 02:00:00 PST,+2.1,+240,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-11-17 03:00:00 PST,+2.6,+250,+5,+270,+0.0370923,+2289.42,+61722.3,+357.407,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,+391.525,OK,OK
+2020-11-17 04:00:00 PST,+2.6,+220,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-11-17 05:00:00 PST,+2.1,+250,+5,+270,+0.0379078,+2339.75,+61722.3,+387.956,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,+460.086,OK,OK
+2020-11-17 06:00:00 PST,+2.6,+270,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-11-17 07:00:00 PST,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-11-17 08:00:00 PST,+1.5,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-17 09:00:00 PST,+4.1,+240,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-11-17 10:00:00 PST,+4.1,+240,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-11-17 11:00:00 PST,+4.1,+250,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-11-17 12:00:00 PST,+4.6,+230,+5,+270,+0.0408996,+2524.41,+61722.3,+537.136,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,+804.879,OK,OK
+2020-11-17 13:00:00 PST,+5.1,+260,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-11-17 14:00:00 PST,+4.6,+230,+5,+270,+0.0470363,+2903.19,+61722.3,+361.025,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,+911.604,OK,OK
+2020-11-17 15:00:00 PST,+7.2,+240,+5,+270,+0.0413248,+2550.66,+61722.3,+619.561,OK,OK,+8,+180,+0.0472027,+2913.46,+61722.3,+938.166,OK,OK
+2020-11-17 16:00:00 PST,+7.2,+230,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-11-17 17:00:00 PST,+5.1,+270,+5,+270,+0.0568013,+3505.9,+61722.3,+337.328,OK,OK,+8,+180,+0.0276725,+1708.01,+61722.3,+1726.82,OK,OK
+2020-11-17 18:00:00 PST,+4.6,+280,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-11-17 19:00:00 PST,+3.6,+290,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-11-17 20:00:00 PST,+3.1,+310,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-11-17 21:00:00 PST,+2.1,+270,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-11-17 22:00:00 PST,+0,+0,+5,+270,+0.037322,+2303.6,+61722.3,+253.283,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,+287.422,OK,OK
+2020-11-17 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 00:00:00 PST,+2.6,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 01:00:00 PST,+0,+0,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-11-18 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 06:00:00 PST,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 07:00:00 PST,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-11-18 08:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 09:00:00 PST,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-11-18 10:00:00 PST,+0.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 11:00:00 PST,+1,+10,+5,+270,+0.0360851,+2227.25,+61722.3,-67.3673,OK,OK,+8,+180,+0.0575625,+3552.89,+61722.3,-67.1452,OK,OK
+2020-11-18 12:00:00 PST,+1.5,+10,+5,+270,+0.0360459,+2224.83,+61722.3,-154.675,OK,OK,+8,+180,+0.0572408,+3533.03,+61722.3,-155.458,OK,OK
+2020-11-18 13:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-11-18 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 15:00:00 PST,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 16:00:00 PST,+6.2,+240,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-11-18 17:00:00 PST,+4.6,+260,+5,+270,+0.0500739,+3090.67,+61722.3,+457.242,OK,OK,+8,+180,+0.0347456,+2144.58,+61722.3,+1365.71,OK,OK
+2020-11-18 18:00:00 PST,+3.6,+270,+5,+270,+0.0443968,+2740.27,+61722.3,+389.657,OK,OK,+8,+180,+0.0410539,+2533.94,+61722.3,+796.438,OK,OK
+2020-11-18 19:00:00 PST,+2.1,+290,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-11-18 20:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-11-18 21:00:00 PST,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-18 22:00:00 PST,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-11-18 23:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 00:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-19 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 02:00:00 PST,+2.1,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 03:00:00 PST,+0,+0,+5,+270,+0.0352717,+2177.05,+61722.3,-290.002,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,-320.386,OK,OK
+2020-11-19 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 07:00:00 PST,+1.5,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 08:00:00 PST,+0,+0,+5,+270,+0.0358218,+2211,+61722.3,+73.0522,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+73.3859,OK,OK
+2020-11-19 09:00:00 PST,+2.6,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 10:00:00 PST,+0,+0,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-11-19 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 14:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 15:00:00 PST,+3.6,+300,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-19 16:00:00 PST,+2.6,+300,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-11-19 17:00:00 PST,+4.1,+260,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-11-19 18:00:00 PST,+3.6,+260,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-11-19 19:00:00 PST,+2.6,+270,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-11-19 20:00:00 PST,+0,+0,+5,+270,+0.0381295,+2353.44,+61722.3,+293.559,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,+359.758,OK,OK
+2020-11-19 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-19 23:00:00 PST,+1.5,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 00:00:00 PST,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-11-20 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 03:00:00 PST,+1.5,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 04:00:00 PST,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-11-20 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 07:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 08:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-11-20 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 11:00:00 PST,+2.1,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 12:00:00 PST,+3.6,+290,+5,+270,+0.0372045,+2296.35,+61722.3,+330.76,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,+367.909,OK,OK
+2020-11-20 13:00:00 PST,+2.6,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-11-20 14:00:00 PST,+4.6,+290,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-11-20 15:00:00 PST,+3.6,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-11-20 16:00:00 PST,+3.6,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-11-20 17:00:00 PST,+2.6,+260,+5,+270,+0.0406993,+2512.05,+61722.3,+334.98,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,+514.172,OK,OK
+2020-11-20 18:00:00 PST,+2.1,+280,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-11-20 19:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-20 20:00:00 PST,+2.6,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-20 21:00:00 PST,+2.1,+280,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-11-20 22:00:00 PST,+2.1,+280,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-20 23:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-21 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 05:00:00 PST,+2.1,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 06:00:00 PST,+0,+0,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-11-21 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 08:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 09:00:00 PST,+1.5,+150,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-11-21 10:00:00 PST,+1.5,+130,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-11-21 11:00:00 PST,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-11-21 12:00:00 PST,+3.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-21 13:00:00 PST,+5.1,+290,+5,+270,+0.0391619,+2417.16,+61722.3,+189.727,OK,OK,+8,+180,+0.0492043,+3037,+61722.3,+259.388,OK,OK
+2020-11-21 14:00:00 PST,+4.6,+290,+5,+270,+0.0477966,+2950.11,+61722.3,+162.184,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,+471.073,OK,OK
+2020-11-21 15:00:00 PST,+6.2,+230,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-11-21 16:00:00 PST,+8.7,+270,+5,+270,+0.0472151,+2914.22,+61722.3,+592.017,OK,OK,+8,+180,+0.0390379,+2409.51,+61722.3,+1363.63,OK,OK
+2020-11-21 17:00:00 PST,+4.1,+260,+5,+270,+0.0843727,+5207.68,+61722.3,-149.947,OK,OK,+8,+180,+0.019167,+1183.03,+61722.3,+678.074,OK,OK
+2020-11-21 18:00:00 PST,+4.6,+210,+5,+270,+0.04222,+2605.92,+61722.3,+402.756,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,+691.657,OK,OK
+2020-11-21 19:00:00 PST,+4.1,+140,+5,+270,+0.0388801,+2399.77,+61722.3,+738.953,OK,OK,+8,+180,+0.0530153,+3272.22,+61722.3,+882.773,OK,OK
+2020-11-21 20:00:00 PST,+3.6,+220,+5,+270,+0.0340916,+2104.21,+61722.3,+54.6639,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+64.4116,OK,OK
+2020-11-21 21:00:00 PST,+1.5,+330,+5,+270,+0.0383588,+2367.59,+61722.3,+593.867,OK,OK,+8,+180,+0.0529191,+3266.29,+61722.3,+706.006,OK,OK
+2020-11-21 22:00:00 PST,+2.6,+50,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-11-21 23:00:00 PST,+0,+0,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-11-22 00:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-22 01:00:00 PST,+5.1,+360,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-22 02:00:00 PST,+2.6,+360,+5,+270,+0.0366081,+2259.53,+61722.3,-562.509,OK,OK,+8,+180,+0.0514633,+3176.43,+61722.3,-684.881,OK,OK
+2020-11-22 03:00:00 PST,+3.1,+360,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-11-22 04:00:00 PST,+5.1,+60,+5,+270,+0.0361569,+2231.68,+61722.3,-391.172,OK,OK,+8,+180,+0.0553463,+3416.1,+61722.3,-416.3,OK,OK
+2020-11-22 05:00:00 PST,+6.2,+70,+5,+270,+0.0380212,+2346.76,+61722.3,-207.123,OK,OK,+8,+180,+0.0357713,+2207.88,+61722.3,-785.618,OK,OK
+2020-11-22 06:00:00 PST,+6.2,+70,+5,+270,+0.0437767,+2702,+61722.3,+159.782,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,-642.765,OK,OK
+2020-11-22 07:00:00 PST,+5.7,+40,+5,+270,+0.0437767,+2702,+61722.3,+159.782,OK,OK,+8,+180,+0.0252581,+1558.98,+61722.3,-642.765,OK,OK
+2020-11-22 08:00:00 PST,+5.7,+60,+5,+270,+0.0391773,+2418.11,+61722.3,-203.397,OK,OK,+8,+180,+0.0343126,+2117.85,+61722.3,-911.733,OK,OK
+2020-11-22 09:00:00 PST,+6.2,+50,+5,+270,+0.0391773,+2418.11,+61722.3,-203.397,OK,OK,+8,+180,+0.0343126,+2117.85,+61722.3,-911.733,OK,OK
+2020-11-22 10:00:00 PST,+6.2,+70,+5,+270,+0.0425718,+2627.63,+61722.3,+54.4283,OK,OK,+8,+180,+0.0276046,+1703.82,+61722.3,-838.697,OK,OK
+2020-11-22 11:00:00 PST,+4.1,+20,+5,+270,+0.0425718,+2627.63,+61722.3,+54.4283,OK,OK,+8,+180,+0.0276046,+1703.82,+61722.3,-838.697,OK,OK
+2020-11-22 12:00:00 PST,+2.1,+330,+5,+270,+0.0357874,+2208.88,+61722.3,-516.324,OK,OK,+8,+180,+0.0490073,+3024.84,+61722.3,-685.824,OK,OK
+2020-11-22 13:00:00 PST,+1.1,+350,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-11-22 14:00:00 PST,+0,+0,+5,+270,+0.0361378,+2230.51,+61722.3,-118.868,OK,OK,+8,+180,+0.0571608,+3528.09,+61722.3,-119.928,OK,OK
+2020-11-22 15:00:00 PST,+3.6,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-22 16:00:00 PST,+3.1,+100,+5,+270,+0.0346547,+2138.96,+61722.3,-257.751,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,-366.346,OK,OK
+2020-11-22 17:00:00 PST,+2.9,+70,+5,+270,+0.0347079,+2142.25,+61722.3,-255.529,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,-322.217,OK,OK
+2020-11-22 18:00:00 PST,+2.6,+40,+5,+270,+0.0350128,+2161.07,+61722.3,-383.438,OK,OK,+8,+180,+0.0502495,+3101.51,+61722.3,-480.219,OK,OK
+2020-11-22 19:00:00 PST,+0,+0,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-11-22 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-22 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-22 22:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-22 23:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-11-23 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 01:00:00 PST,+2.1,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 02:00:00 PST,+0,+0,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-11-23 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 04:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 05:00:00 PST,+2.1,+330,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-11-23 06:00:00 PST,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-11-23 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 10:00:00 PST,+0.8,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 11:00:00 PST,+1.5,+330,+5,+270,+0.0361122,+2228.93,+61722.3,-86.9818,OK,OK,+8,+180,+0.0573779,+3541.49,+61722.3,-87.1847,OK,OK
+2020-11-23 12:00:00 PST,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-11-23 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 15:00:00 PST,+3.6,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-23 16:00:00 PST,+2.6,+230,+5,+270,+0.0377319,+2328.9,+61722.3,+610.945,OK,OK,+8,+180,+0.0547856,+3381.49,+61722.3,+678.634,OK,OK
+2020-11-23 17:00:00 PST,+1.5,+290,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-11-23 18:00:00 PST,+4.1,+310,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-23 19:00:00 PST,+3.1,+320,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-11-23 20:00:00 PST,+2.1,+340,+5,+270,+0.0382026,+2357.95,+61722.3,-41.19,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-52.7723,OK,OK
+2020-11-23 21:00:00 PST,+1,+350,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-11-23 22:00:00 PST,+0,+0,+5,+270,+0.0361282,+2229.91,+61722.3,-108.307,OK,OK,+8,+180,+0.0572408,+3533.03,+61722.3,-109.009,OK,OK
+2020-11-23 23:00:00 PST,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 00:00:00 PST,+0,+0,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-11-24 01:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 02:00:00 PST,+2.1,+50,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-11-24 03:00:00 PST,+1.5,+30,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-11-24 04:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-11-24 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 06:00:00 PST,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 07:00:00 PST,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-11-24 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 10:00:00 PST,+1.5,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 11:00:00 PST,+4.1,+80,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-11-24 12:00:00 PST,+4.1,+10,+5,+270,+0.0354299,+2186.81,+61722.3,-312.893,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,-577.067,OK,OK
+2020-11-24 13:00:00 PST,+3.1,+310,+5,+270,+0.0354299,+2186.81,+61722.3,-312.893,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,-577.067,OK,OK
+2020-11-24 14:00:00 PST,+9.3,+40,+5,+270,+0.0386195,+2383.68,+61722.3,+40.1412,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,+53.072,OK,OK
+2020-11-24 15:00:00 PST,+7,+30,+5,+270,+0.0673228,+4155.31,+61722.3,+1061.14,OK,OK,+8,+180,+0.0142209,+877.746,+61722.3,+2294.48,OK,OK
+2020-11-24 16:00:00 PST,+4.7,+20,+5,+270,+0.0433585,+2676.18,+61722.3,+22.6219,OK,OK,+8,+180,+0.027345,+1687.79,+61722.3,-982.473,OK,OK
+2020-11-24 17:00:00 PST,+2.3,+10,+5,+270,+0.0361358,+2230.38,+61722.3,-515.297,OK,OK,+8,+180,+0.0463112,+2858.43,+61722.3,-777.12,OK,OK
+2020-11-24 18:00:00 PST,+0,+0,+5,+270,+0.0359242,+2217.32,+61722.3,-338.78,OK,OK,+8,+180,+0.0556068,+3432.18,+61722.3,-356.408,OK,OK
+2020-11-24 19:00:00 PST,+2.6,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 20:00:00 PST,+1.5,+330,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-11-24 21:00:00 PST,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-11-24 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-24 23:00:00 PST,+2.6,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 00:00:00 PST,+2.1,+320,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-11-25 01:00:00 PST,+2.1,+330,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-11-25 02:00:00 PST,+1.1,+350,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-11-25 03:00:00 PST,+0,+0,+5,+270,+0.0361378,+2230.51,+61722.3,-118.868,OK,OK,+8,+180,+0.0571608,+3528.09,+61722.3,-119.928,OK,OK
+2020-11-25 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 05:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 06:00:00 PST,+2.1,+340,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-25 07:00:00 PST,+0,+0,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-11-25 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 09:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 10:00:00 PST,+1.5,+230,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-25 11:00:00 PST,+2.6,+200,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-11-25 12:00:00 PST,+2.1,+320,+5,+270,+0.0366362,+2261.27,+61722.3,+443.885,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+451.782,OK,OK
+2020-11-25 13:00:00 PST,+3.1,+330,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-11-25 14:00:00 PST,+2.6,+330,+5,+270,+0.0377186,+2328.07,+61722.3,-126.413,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-155.701,OK,OK
+2020-11-25 15:00:00 PST,+3.6,+310,+5,+270,+0.037134,+2291.99,+61722.3,-112.768,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-129.702,OK,OK
+2020-11-25 16:00:00 PST,+4.1,+310,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-11-25 17:00:00 PST,+2.1,+280,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-11-25 18:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-25 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 21:00:00 PST,+2.1,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-25 22:00:00 PST,+0,+0,+5,+270,+0.0363057,+2240.87,+61722.3,-218.971,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-229.495,OK,OK
+2020-11-25 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 05:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 06:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-11-26 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 15:00:00 PST,+4.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 16:00:00 PST,+5.1,+270,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-11-26 17:00:00 PST,+3.6,+300,+5,+270,+0.0477608,+2947.9,+61722.3,+287.96,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,+791.905,OK,OK
+2020-11-26 18:00:00 PST,+4.1,+310,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-11-26 19:00:00 PST,+4.1,+320,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-11-26 20:00:00 PST,+2.1,+310,+5,+270,+0.0414292,+2557.1,+61722.3,+42.062,OK,OK,+8,+180,+0.044209,+2728.68,+61722.3,+72.3828,OK,OK
+2020-11-26 21:00:00 PST,+0,+0,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-11-26 22:00:00 PST,+1.5,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-26 23:00:00 PST,+1.5,+360,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-11-27 00:00:00 PST,+0,+0,+5,+270,+0.035621,+2198.61,+61722.3,-115.334,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,-119.312,OK,OK
+2020-11-27 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 03:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 04:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-11-27 05:00:00 PST,+2.1,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 06:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-11-27 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 09:00:00 PST,+1.5,+200,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 10:00:00 PST,+0,+0,+5,+270,+0.0362678,+2238.53,+61722.3,+258.333,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+259,OK,OK
+2020-11-27 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 13:00:00 PST,+2.1,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 14:00:00 PST,+4.1,+250,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-11-27 15:00:00 PST,+4.6,+280,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-11-27 16:00:00 PST,+5.7,+290,+5,+270,+0.0450915,+2783.15,+61722.3,+249.181,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,+559.989,OK,OK
+2020-11-27 17:00:00 PST,+2.6,+260,+5,+270,+0.0520081,+3210.06,+61722.3,+128.615,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,+554.543,OK,OK
+2020-11-27 18:00:00 PST,+2.6,+320,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-11-27 19:00:00 PST,+1.5,+130,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-11-27 20:00:00 PST,+1.5,+90,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-11-27 21:00:00 PST,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-11-27 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-27 23:00:00 PST,+2.1,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 00:00:00 PST,+0,+0,+5,+270,+0.0352717,+2177.05,+61722.3,-290.002,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,-320.386,OK,OK
+2020-11-28 01:00:00 PST,+2.1,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 02:00:00 PST,+0,+0,+5,+270,+0.0367142,+2266.08,+61722.3,-95.5417,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-104.201,OK,OK
+2020-11-28 03:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 04:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-11-28 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 09:00:00 PST,+1.5,+310,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 10:00:00 PST,+0,+0,+5,+270,+0.0365389,+2255.26,+61722.3,+23.6787,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,+25.0092,OK,OK
+2020-11-28 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 12:00:00 PST,+2.1,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 13:00:00 PST,+2.1,+290,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-11-28 14:00:00 PST,+2.1,+290,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-11-28 15:00:00 PST,+3.1,+220,+5,+270,+0.0366209,+2260.33,+61722.3,+376.618,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+388.766,OK,OK
+2020-11-28 16:00:00 PST,+4.1,+300,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-11-28 17:00:00 PST,+2.1,+280,+5,+270,+0.0420965,+2598.29,+61722.3,+120.659,OK,OK,+8,+180,+0.0433788,+2677.44,+61722.3,+216.907,OK,OK
+2020-11-28 18:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-11-28 19:00:00 PST,+2.1,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 20:00:00 PST,+0,+0,+5,+270,+0.0352717,+2177.05,+61722.3,-290.002,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,-320.386,OK,OK
+2020-11-28 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-28 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 04:00:00 PST,+1.5,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 05:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-11-29 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 13:00:00 PST,+1.5,+180,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 14:00:00 PST,+3.1,+240,+5,+270,+0.036089,+2227.49,+61722.3,+205.405,OK,OK,+8,+180,+0.0581544,+3589.42,+61722.3,+201.436,OK,OK
+2020-11-29 15:00:00 PST,+5.7,+260,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-11-29 16:00:00 PST,+4.6,+290,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-11-29 17:00:00 PST,+4.1,+270,+5,+270,+0.044897,+2771.15,+61722.3,+182.299,OK,OK,+8,+180,+0.0392685,+2423.74,+61722.3,+410.805,OK,OK
+2020-11-29 18:00:00 PST,+3.6,+300,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-11-29 19:00:00 PST,+0,+0,+5,+270,+0.0403171,+2488.46,+61722.3,+121.739,OK,OK,+8,+180,+0.0466109,+2876.93,+61722.3,+186.754,OK,OK
+2020-11-29 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-29 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 01:00:00 PST,+1.5,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 02:00:00 PST,+1.5,+20,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-11-30 03:00:00 PST,+2.1,+70,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-11-30 04:00:00 PST,+0,+0,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-11-30 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 12:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-11-30 13:00:00 PST,+2.8,+280,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-11-30 14:00:00 PST,+4.1,+270,+5,+270,+0.0385441,+2379.03,+61722.3,+246.384,OK,OK,+8,+180,+0.0507611,+3133.09,+61722.3,+315.793,OK,OK
+2020-11-30 15:00:00 PST,+4.6,+250,+5,+270,+0.0425766,+2627.92,+61722.3,+333.707,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,+598.661,OK,OK
+2020-11-30 16:00:00 PST,+4.6,+270,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-11-30 17:00:00 PST,+4.1,+250,+5,+270,+0.0435764,+2689.64,+61722.3,+465.445,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,+874.279,OK,OK
+2020-11-30 18:00:00 PST,+3.4,+270,+5,+270,+0.0416452,+2570.43,+61722.3,+471.182,OK,OK,+8,+180,+0.0456923,+2820.23,+61722.3,+761.095,OK,OK
+2020-11-30 19:00:00 PST,+2.8,+290,+5,+270,+0.0400673,+2473.04,+61722.3,+331.286,OK,OK,+8,+180,+0.0478615,+2954.12,+61722.3,+481.951,OK,OK
+2020-11-30 20:00:00 PST,+2.1,+310,+5,+270,+0.0384635,+2374.05,+61722.3,+181.367,OK,OK,+8,+180,+0.0507467,+3132.2,+61722.3,+232.325,OK,OK
+2020-11-30 21:00:00 PST,+1.1,+340,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-11-30 22:00:00 PST,+1.2,+0,+5,+270,+0.0361885,+2233.64,+61722.3,-87.1829,OK,OK,+8,+180,+0.0570004,+3518.19,+61722.3,-88.4395,OK,OK
+2020-11-30 23:00:00 PST,+1.4,+0,+5,+270,+0.0360866,+2227.35,+61722.3,-160.408,OK,OK,+8,+180,+0.0572808,+3535.5,+61722.3,-161.148,OK,OK
+2020-12-01 00:00:00 PST,+1.5,+320,+5,+270,+0.036088,+2227.43,+61722.3,-186.491,OK,OK,+8,+180,+0.0571576,+3527.9,+61722.3,-188.007,OK,OK
+2020-12-01 01:00:00 PST,+1.7,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-12-01 02:00:00 PST,+1.8,+40,+5,+270,+0.0360915,+2227.65,+61722.3,-225.029,OK,OK,+8,+180,+0.0569374,+3514.31,+61722.3,-228.294,OK,OK
+2020-12-01 03:00:00 PST,+2,+0,+5,+270,+0.0356702,+2201.65,+61722.3,-318.725,OK,OK,+8,+180,+0.0552637,+3411,+61722.3,-337.494,OK,OK
+2020-12-01 04:00:00 PST,+2.1,+40,+5,+270,+0.0360975,+2228.02,+61722.3,-262.729,OK,OK,+8,+180,+0.0566746,+3498.09,+61722.3,-268.581,OK,OK
+2020-12-01 05:00:00 PST,+0,+0,+5,+270,+0.0355598,+2194.83,+61722.3,-361.383,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-392.374,OK,OK
+2020-12-01 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 10:00:00 PST,+2.6,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 11:00:00 PST,+1.5,+70,+5,+270,+0.03493,+2155.96,+61722.3,-236.999,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,-274.549,OK,OK
+2020-12-01 12:00:00 PST,+1.5,+30,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-12-01 13:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-12-01 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 15:00:00 PST,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 16:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-01 17:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 19:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 20:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-12-01 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-01 23:00:00 PST,+1.5,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 00:00:00 PST,+0,+0,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-12-02 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 03:00:00 PST,+1.5,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 04:00:00 PST,+0,+0,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-12-02 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 07:00:00 PST,+2.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 08:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-02 09:00:00 PST,+1.1,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-02 10:00:00 PST,+2.1,+120,+5,+270,+0.0358517,+2212.85,+61722.3,-196.818,OK,OK,+8,+180,+0.0565872,+3492.69,+61722.3,-200.902,OK,OK
+2020-12-02 11:00:00 PST,+7.7,+90,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-12-02 12:00:00 PST,+6.7,+80,+5,+270,+0.0553367,+3415.51,+61722.3,+539.596,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+451.271,OK,OK
+2020-12-02 13:00:00 PST,+7.7,+90,+5,+270,+0.047239,+2915.7,+61722.3,+312.515,OK,OK,+8,+180,+0.020953,+1293.26,+61722.3,-382.24,OK,OK
+2020-12-02 14:00:00 PST,+6.2,+90,+5,+270,+0.0553367,+3415.51,+61722.3,+539.596,OK,OK,+8,+180,+0.015759,+972.684,+61722.3,+451.271,OK,OK
+2020-12-02 15:00:00 PST,+4.6,+90,+5,+270,+0.0425518,+2626.39,+61722.3,+116.798,OK,OK,+8,+180,+0.0265168,+1636.68,+61722.3,-496.241,OK,OK
+2020-12-02 16:00:00 PST,+3.1,+80,+5,+270,+0.0359649,+2219.83,+61722.3,-223.563,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,-535.341,OK,OK
+2020-12-02 17:00:00 PST,+3.6,+70,+5,+270,+0.0348921,+2153.62,+61722.3,-352.016,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,-459.811,OK,OK
+2020-12-02 18:00:00 PST,+2.6,+80,+5,+270,+0.035126,+2168.06,+61722.3,-385.052,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,-579.842,OK,OK
+2020-12-02 19:00:00 PST,+5.7,+90,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-12-02 20:00:00 PST,+5.1,+90,+5,+270,+0.0397413,+2452.92,+61722.3,-10.9389,OK,OK,+8,+180,+0.0309414,+1909.77,+61722.3,-551.111,OK,OK
+2020-12-02 21:00:00 PST,+4.1,+100,+5,+270,+0.0372968,+2302.04,+61722.3,-141.163,OK,OK,+8,+180,+0.0360154,+2222.95,+61722.3,-557.683,OK,OK
+2020-12-02 22:00:00 PST,+5.1,+70,+5,+270,+0.0348718,+2152.37,+61722.3,-240.411,OK,OK,+8,+180,+0.0443968,+2740.27,+61722.3,-405.442,OK,OK
+2020-12-02 23:00:00 PST,+4.6,+80,+5,+270,+0.0380545,+2348.81,+61722.3,-168.192,OK,OK,+8,+180,+0.0351927,+2172.17,+61722.3,-721.523,OK,OK
+2020-12-03 00:00:00 PST,+2.6,+90,+5,+270,+0.036334,+2242.62,+61722.3,-246.071,OK,OK,+8,+180,+0.039327,+2427.35,+61722.3,-620.183,OK,OK
+2020-12-03 01:00:00 PST,+6.7,+90,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-12-03 02:00:00 PST,+4.1,+90,+5,+270,+0.0460924,+2844.92,+61722.3,+254.853,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,-357.2,OK,OK
+2020-12-03 03:00:00 PST,+1.5,+300,+5,+270,+0.0351787,+2171.31,+61722.3,-278.518,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,-497.9,OK,OK
+2020-12-03 04:00:00 PST,+2.1,+20,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-12-03 05:00:00 PST,+2.1,+40,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-12-03 06:00:00 PST,+1.5,+290,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-12-03 07:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-03 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-03 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-03 10:00:00 PST,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-03 11:00:00 PST,+7.7,+120,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-12-03 12:00:00 PST,+7.2,+110,+5,+270,+0.0439989,+2715.71,+61722.3,+112.572,OK,OK,+8,+180,+0.0242136,+1494.52,+61722.3,-137.285,OK,OK
+2020-12-03 13:00:00 PST,+5.1,+130,+5,+270,+0.0448174,+2766.23,+61722.3,+168.042,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,-217.967,OK,OK
+2020-12-03 14:00:00 PST,+5.1,+130,+5,+270,+0.0339857,+2097.68,+61722.3,-45.5948,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,-75.0731,OK,OK
+2020-12-03 15:00:00 PST,+4.1,+120,+5,+270,+0.0339857,+2097.68,+61722.3,-45.5948,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,-75.0731,OK,OK
+2020-12-03 16:00:00 PST,+2.6,+130,+5,+270,+0.0342726,+2115.38,+61722.3,-130.964,OK,OK,+8,+180,+0.0473474,+2922.39,+61722.3,-186.324,OK,OK
+2020-12-03 17:00:00 PST,+3.6,+110,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-12-03 18:00:00 PST,+3.1,+180,+5,+270,+0.0344965,+2129.2,+61722.3,-200.52,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,-271.212,OK,OK
+2020-12-03 19:00:00 PST,+2.6,+150,+5,+270,+0.0361569,+2231.68,+61722.3,+443.895,OK,OK,+8,+180,+0.0598971,+3696.98,+61722.3,+416.3,OK,OK
+2020-12-03 20:00:00 PST,+0,+0,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-12-03 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-03 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-03 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 00:00:00 PST,+2.6,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 01:00:00 PST,+2.1,+10,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-12-04 02:00:00 PST,+1.5,+60,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-12-04 03:00:00 PST,+1.5,+120,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-04 04:00:00 PST,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-04 05:00:00 PST,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 06:00:00 PST,+1.5,+50,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-04 07:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-04 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 09:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 10:00:00 PST,+1.5,+160,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-12-04 11:00:00 PST,+2.6,+150,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-12-04 12:00:00 PST,+2.6,+200,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-12-04 13:00:00 PST,+2.6,+200,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-12-04 14:00:00 PST,+2.6,+220,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-12-04 15:00:00 PST,+3.6,+260,+5,+270,+0.0353158,+2179.77,+61722.3,+122.84,OK,OK,+8,+180,+0.0561369,+3464.9,+61722.3,+125.965,OK,OK
+2020-12-04 16:00:00 PST,+1.5,+290,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-12-04 17:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-04 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 19:00:00 PST,+3.1,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 20:00:00 PST,+0,+0,+5,+270,+0.0364897,+2252.23,+61722.3,+495.36,OK,OK,+8,+180,+0.0584436,+3607.27,+61722.3,+485.515,OK,OK
+2020-12-04 21:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-04 22:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-12-04 23:00:00 PST,+2.1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 00:00:00 PST,+2.1,+180,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-12-05 01:00:00 PST,+0,+0,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-12-05 02:00:00 PST,+2.6,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 03:00:00 PST,+0,+0,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-12-05 04:00:00 PST,+3.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 05:00:00 PST,+2.1,+90,+5,+270,+0.0352073,+2173.07,+61722.3,-444.849,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,-565.663,OK,OK
+2020-12-05 06:00:00 PST,+3.6,+90,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-12-05 07:00:00 PST,+4.6,+90,+5,+270,+0.0348274,+2149.63,+61722.3,-305.734,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,-450.629,OK,OK
+2020-12-05 08:00:00 PST,+3.6,+80,+5,+270,+0.0359649,+2219.83,+61722.3,-223.563,OK,OK,+8,+180,+0.0399283,+2464.46,+61722.3,-535.341,OK,OK
+2020-12-05 09:00:00 PST,+1.5,+100,+5,+270,+0.0349895,+2159.63,+61722.3,-347.419,OK,OK,+8,+180,+0.046325,+2859.28,+61722.3,-522.323,OK,OK
+2020-12-05 10:00:00 PST,+2.6,+110,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-12-05 11:00:00 PST,+3.1,+100,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-12-05 12:00:00 PST,+4.6,+110,+5,+270,+0.0347079,+2142.25,+61722.3,-255.529,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,-322.217,OK,OK
+2020-12-05 13:00:00 PST,+5.7,+110,+5,+270,+0.0349069,+2154.53,+61722.3,-170.733,OK,OK,+8,+180,+0.0426728,+2633.86,+61722.3,-326.217,OK,OK
+2020-12-05 14:00:00 PST,+3.6,+120,+5,+270,+0.0372109,+2296.74,+61722.3,-65.9992,OK,OK,+8,+180,+0.0350227,+2161.68,+61722.3,-353.212,OK,OK
+2020-12-05 15:00:00 PST,+1.5,+250,+5,+270,+0.0343854,+2122.34,+61722.3,-131.107,OK,OK,+8,+180,+0.0496748,+3066.04,+61722.3,-167.233,OK,OK
+2020-12-05 16:00:00 PST,+2.6,+160,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-12-05 17:00:00 PST,+3.1,+160,+5,+270,+0.03554,+2193.61,+61722.3,+206.902,OK,OK,+8,+180,+0.0571606,+3528.08,+61722.3,+206.672,OK,OK
+2020-12-05 18:00:00 PST,+0,+0,+5,+270,+0.0353122,+2179.55,+61722.3,+245.233,OK,OK,+8,+180,+0.0569678,+3516.18,+61722.3,+245.389,OK,OK
+2020-12-05 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-05 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 03:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 04:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-12-06 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 07:00:00 PST,+1.5,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 08:00:00 PST,+0,+0,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-12-06 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 13:00:00 PST,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 14:00:00 PST,+1.5,+230,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-12-06 15:00:00 PST,+1.5,+210,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-12-06 16:00:00 PST,+1.5,+200,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-12-06 17:00:00 PST,+0,+0,+5,+270,+0.0365112,+2253.55,+61722.3,+276.21,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,+285.831,OK,OK
+2020-12-06 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 19:00:00 PST,+1.5,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 20:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-06 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 22:00:00 PST,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-06 23:00:00 PST,+1.5,+290,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-12-07 00:00:00 PST,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-12-07 01:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 02:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-12-07 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 11:00:00 PST,+2.1,+150,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 12:00:00 PST,+2.1,+120,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-12-07 13:00:00 PST,+0,+0,+5,+270,+0.0355758,+2195.82,+61722.3,+100.83,OK,OK,+8,+180,+0.0566517,+3496.67,+61722.3,+102.267,OK,OK
+2020-12-07 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 15:00:00 PST,+1.5,+190,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 16:00:00 PST,+1.5,+230,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-12-07 17:00:00 PST,+0,+0,+5,+270,+0.0361781,+2233,+61722.3,+235.745,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+233.727,OK,OK
+2020-12-07 18:00:00 PST,+1.5,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 19:00:00 PST,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-12-07 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 21:00:00 PST,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-07 22:00:00 PST,+0,+0,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-12-07 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 05:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 06:00:00 PST,+2.1,+100,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-12-08 07:00:00 PST,+0,+0,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-12-08 08:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 09:00:00 PST,+2.1,+120,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-08 10:00:00 PST,+2.6,+140,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-12-08 11:00:00 PST,+0,+0,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-12-08 12:00:00 PST,+1.5,+170,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 13:00:00 PST,+1.5,+100,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-12-08 14:00:00 PST,+1.5,+110,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-12-08 15:00:00 PST,+3.1,+250,+5,+270,+0.0359929,+2221.56,+61722.3,+165.075,OK,OK,+8,+180,+0.0578139,+3568.4,+61722.3,+163.135,OK,OK
+2020-12-08 16:00:00 PST,+2.1,+260,+5,+270,+0.038853,+2398.1,+61722.3,+431.615,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,+555.58,OK,OK
+2020-12-08 17:00:00 PST,+2.6,+260,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-12-08 18:00:00 PST,+2.1,+220,+5,+270,+0.0380515,+2348.62,+61722.3,+344.424,OK,OK,+8,+180,+0.0522575,+3225.45,+61722.3,+416.497,OK,OK
+2020-12-08 19:00:00 PST,+0,+0,+5,+270,+0.036793,+2270.95,+61722.3,+381.238,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+402.037,OK,OK
+2020-12-08 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-08 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 04:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 05:00:00 PST,+1.5,+210,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-12-09 06:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-12-09 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 08:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 09:00:00 PST,+2.6,+130,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-12-09 10:00:00 PST,+2.6,+170,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-12-09 11:00:00 PST,+0,+0,+5,+270,+0.0350231,+2161.71,+61722.3,-38.8415,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,-42.0522,OK,OK
+2020-12-09 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 15:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 16:00:00 PST,+3.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 17:00:00 PST,+1.5,+340,+5,+270,+0.0390959,+2413.09,+61722.3,+379.602,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,+503.389,OK,OK
+2020-12-09 18:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-09 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 20:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-09 21:00:00 PST,+1.5,+40,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-09 22:00:00 PST,+1.5,+60,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-09 23:00:00 PST,+2.1,+30,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-10 00:00:00 PST,+3.1,+40,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-12-10 01:00:00 PST,+2.6,+50,+5,+270,+0.0353279,+2180.52,+61722.3,-460.249,OK,OK,+8,+180,+0.0506425,+3125.77,+61722.3,-569.314,OK,OK
+2020-12-10 02:00:00 PST,+2.2,+40,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-12-10 03:00:00 PST,+1.9,+40,+5,+270,+0.0355245,+2192.65,+61722.3,-374.49,OK,OK,+8,+180,+0.054101,+3339.24,+61722.3,-410.518,OK,OK
+2020-12-10 04:00:00 PST,+1.5,+30,+5,+270,+0.035633,+2199.35,+61722.3,-333.466,OK,OK,+8,+180,+0.0549948,+3394.4,+61722.3,-355.857,OK,OK
+2020-12-10 05:00:00 PST,+0,+0,+5,+270,+0.0358466,+2212.54,+61722.3,-265.318,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-273.859,OK,OK
+2020-12-10 06:00:00 PST,+2.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-10 07:00:00 PST,+1.5,+20,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-12-10 08:00:00 PST,+0,+0,+5,+270,+0.0359213,+2217.14,+61722.3,-250.948,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-257.348,OK,OK
+2020-12-10 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-10 10:00:00 PST,+1.5,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-10 11:00:00 PST,+0,+0,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-12-10 12:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-10 13:00:00 PST,+3.1,+100,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-12-10 14:00:00 PST,+2.1,+120,+5,+270,+0.0347079,+2142.25,+61722.3,-255.529,OK,OK,+8,+180,+0.0500124,+3086.88,+61722.3,-322.217,OK,OK
+2020-12-10 15:00:00 PST,+3.6,+160,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-12-10 16:00:00 PST,+3.1,+140,+5,+270,+0.0350459,+2163.11,+61722.3,+282.755,OK,OK,+8,+180,+0.0567424,+3502.27,+61722.3,+283.548,OK,OK
+2020-12-10 17:00:00 PST,+1.5,+140,+5,+270,+0.0348014,+2148.02,+61722.3,+46.0478,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+49.9066,OK,OK
+2020-12-10 18:00:00 PST,+3.1,+120,+5,+270,+0.0357518,+2206.68,+61722.3,+24.3657,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+24.6782,OK,OK
+2020-12-10 19:00:00 PST,+2.1,+100,+5,+270,+0.0346333,+2137.64,+61722.3,-124.358,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,-146.46,OK,OK
+2020-12-10 20:00:00 PST,+0,+0,+5,+270,+0.0352334,+2174.68,+61722.3,-205.651,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,-224.367,OK,OK
+2020-12-10 21:00:00 PST,+1.5,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-10 22:00:00 PST,+2.1,+60,+5,+270,+0.0356037,+2197.54,+61722.3,-191.185,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,-199.5,OK,OK
+2020-12-10 23:00:00 PST,+2.1,+60,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-12-11 00:00:00 PST,+2.6,+40,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-12-11 01:00:00 PST,+0,+0,+5,+270,+0.0354023,+2185.11,+61722.3,-420.397,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-482.205,OK,OK
+2020-12-11 02:00:00 PST,+2.6,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 03:00:00 PST,+2.6,+60,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-12-11 04:00:00 PST,+2.1,+50,+5,+270,+0.0350935,+2166.05,+61722.3,-366.419,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,-434.305,OK,OK
+2020-12-11 05:00:00 PST,+1.5,+360,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-11 06:00:00 PST,+1.5,+20,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-11 07:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-11 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 09:00:00 PST,+1.5,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 10:00:00 PST,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-12-11 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 15:00:00 PST,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 16:00:00 PST,+2.1,+270,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-12-11 17:00:00 PST,+1.5,+260,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-12-11 18:00:00 PST,+0,+0,+5,+270,+0.0366548,+2262.42,+61722.3,+222.682,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,+235.537,OK,OK
+2020-12-11 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 20:00:00 PST,+1.5,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 21:00:00 PST,+0,+0,+5,+270,+0.0356944,+2203.14,+61722.3,-24.147,OK,OK,+8,+180,+0.0564987,+3487.23,+61722.3,-24.6483,OK,OK
+2020-12-11 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-11 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 01:00:00 PST,+2.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 02:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-12 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 13:00:00 PST,+2.1,+230,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 14:00:00 PST,+2.6,+290,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-12-12 15:00:00 PST,+2.6,+310,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-12 16:00:00 PST,+3.6,+260,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-12 17:00:00 PST,+3.1,+270,+5,+270,+0.0404684,+2497.8,+61722.3,+399.389,OK,OK,+8,+180,+0.0473885,+2924.92,+61722.3,+594.624,OK,OK
+2020-12-12 18:00:00 PST,+2.6,+290,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-12-12 19:00:00 PST,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-12 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 22:00:00 PST,+2.1,+260,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-12 23:00:00 PST,+1.5,+270,+5,+270,+0.0372828,+2301.18,+61722.3,+295.69,OK,OK,+8,+180,+0.0541165,+3340.19,+61722.3,+332.845,OK,OK
+2020-12-13 00:00:00 PST,+2.1,+280,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-12-13 01:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-12-13 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 05:00:00 PST,+2.1,+130,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 06:00:00 PST,+0,+0,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-12-13 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 08:00:00 PST,+2.6,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 09:00:00 PST,+1.5,+60,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-12-13 10:00:00 PST,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-13 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 12:00:00 PST,+1.5,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 13:00:00 PST,+2.1,+290,+5,+270,+0.0366691,+2263.3,+61722.3,+191.52,OK,OK,+8,+180,+0.0557093,+3438.5,+61722.3,+203.353,OK,OK
+2020-12-13 14:00:00 PST,+2.1,+270,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-12-13 15:00:00 PST,+2.1,+280,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-12-13 16:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-12-13 17:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 21:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-13 22:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-12-13 23:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 00:00:00 PST,+1.5,+10,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-14 01:00:00 PST,+2.6,+350,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-14 02:00:00 PST,+1.5,+10,+5,+270,+0.036455,+2250.08,+61722.3,-263.74,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-284.647,OK,OK
+2020-12-14 03:00:00 PST,+1.5,+10,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-14 04:00:00 PST,+1.5,+10,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-14 05:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-14 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 07:00:00 PST,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 08:00:00 PST,+2.1,+60,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-12-14 09:00:00 PST,+0,+0,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-12-14 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 11:00:00 PST,+2.1,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 12:00:00 PST,+0,+0,+5,+270,+0.0368985,+2277.46,+61722.3,-31.7422,OK,OK,+8,+180,+0.0544134,+3358.52,+61722.3,-35.1857,OK,OK
+2020-12-14 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 15:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 16:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 17:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 20:00:00 PST,+1.5,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 21:00:00 PST,+0,+0,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-12-14 22:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-14 23:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-15 00:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 01:00:00 PST,+1.1,+360,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-12-15 02:00:00 PST,+0,+0,+5,+270,+0.0360862,+2227.32,+61722.3,-147.267,OK,OK,+8,+180,+0.0573352,+3538.86,+61722.3,-147.719,OK,OK
+2020-12-15 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 04:00:00 PST,+2.1,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 05:00:00 PST,+0,+0,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-12-15 06:00:00 PST,+1.5,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 07:00:00 PST,+1.5,+80,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-15 08:00:00 PST,+2.6,+20,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-15 09:00:00 PST,+0,+0,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-15 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 11:00:00 PST,+1.5,+330,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 12:00:00 PST,+2.6,+290,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-12-15 13:00:00 PST,+0,+0,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-15 14:00:00 PST,+3.1,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 15:00:00 PST,+2.1,+290,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-12-15 16:00:00 PST,+1.5,+330,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-12-15 17:00:00 PST,+0,+0,+5,+270,+0.0363796,+2245.43,+61722.3,-71.1367,OK,OK,+8,+180,+0.0562035,+3469.01,+61722.3,-74.0791,OK,OK
+2020-12-15 18:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 19:00:00 PST,+3.1,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-15 20:00:00 PST,+2.6,+20,+5,+270,+0.0371957,+2295.81,+61722.3,-214.507,OK,OK,+8,+180,+0.0526919,+3252.27,+61722.3,-252.459,OK,OK
+2020-12-15 21:00:00 PST,+9.3,+60,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-15 22:00:00 PST,+8.2,+80,+5,+270,+0.0766071,+4728.36,+61722.3,+1254.53,OK,OK,+8,+180,+0.0241325,+1489.51,+61722.3,+2410.75,OK,OK
+2020-12-15 23:00:00 PST,+8.2,+50,+5,+270,+0.0628607,+3879.9,+61722.3,+796.943,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+1391.41,OK,OK
+2020-12-16 00:00:00 PST,+7.7,+60,+5,+270,+0.0628607,+3879.9,+61722.3,+796.943,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+1391.41,OK,OK
+2020-12-16 01:00:00 PST,+9.3,+50,+5,+270,+0.0563185,+3476.11,+61722.3,+682.511,OK,OK,+8,+180,+0.0139801,+862.882,+61722.3,+530.992,OK,OK
+2020-12-16 02:00:00 PST,+8.2,+70,+5,+270,+0.072816,+4494.37,+61722.3,+1202.73,OK,OK,+8,+180,+0.0197087,+1216.46,+61722.3,+2465.59,OK,OK
+2020-12-16 03:00:00 PST,+12.3,+90,+5,+270,+0.0631793,+3899.57,+61722.3,+863.09,OK,OK,+8,+180,+0.0150457,+928.654,+61722.3,+1553.43,OK,OK
+2020-12-16 04:00:00 PST,+7.2,+80,+5,+270,+0.129532,+7995,+61722.3,+1657.17,OK,OK,+8,+180,+0.0796491,+4916.12,+61722.3,+2218.16,OK,OK
+2020-12-16 05:00:00 PST,+10.8,+90,+5,+270,+0.051738,+3193.39,+61722.3,+475.659,OK,OK,+8,+180,+0.0170611,+1053.05,+61722.3,+3.12502,OK,OK
+2020-12-16 06:00:00 PST,+11.3,+80,+5,+270,+0.10022,+6185.83,+61722.3,+1329.72,OK,OK,+8,+180,+0.0499736,+3084.48,+61722.3,+2010.25,OK,OK
+2020-12-16 07:00:00 PST,+9.3,+70,+5,+270,+0.113096,+6980.52,+61722.3,+1665.95,OK,OK,+8,+180,+0.0622367,+3841.39,+61722.3,+2384.71,OK,OK
+2020-12-16 08:00:00 PST,+11.3,+50,+5,+270,+0.0784226,+4840.42,+61722.3,+1226.28,OK,OK,+8,+180,+0.026731,+1649.9,+61722.3,+2263.4,OK,OK
+2020-12-16 09:00:00 PST,+11.8,+60,+5,+270,+0.104009,+6419.7,+61722.3,+1865.53,OK,OK,+8,+180,+0.0506655,+3127.19,+61722.3,+2878.7,OK,OK
+2020-12-16 10:00:00 PST,+9.3,+90,+5,+270,+0.119983,+7405.59,+61722.3,+2035.19,OK,OK,+8,+180,+0.0677963,+4184.54,+61722.3,+2874.93,OK,OK
+2020-12-16 11:00:00 PST,+9.8,+70,+5,+270,+0.0756725,+4670.68,+61722.3,+969.788,OK,OK,+8,+180,+0.025981,+1603.6,+61722.3,+1752.98,OK,OK
+2020-12-16 12:00:00 PST,+9.3,+70,+5,+270,+0.0863152,+5327.57,+61722.3,+1381.94,OK,OK,+8,+180,+0.0344049,+2123.55,+61722.3,+2369.65,OK,OK
+2020-12-16 13:00:00 PST,+9.3,+90,+5,+270,+0.0784226,+4840.42,+61722.3,+1226.28,OK,OK,+8,+180,+0.026731,+1649.9,+61722.3,+2263.4,OK,OK
+2020-12-16 14:00:00 PST,+4.1,+70,+5,+270,+0.0784226,+4840.42,+61722.3,+1226.28,OK,OK,+8,+180,+0.026731,+1649.9,+61722.3,+2263.4,OK,OK
+2020-12-16 15:00:00 PST,+7.7,+80,+5,+270,+0.0356023,+2197.45,+61722.3,-347.658,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,-641.611,OK,OK
+2020-12-16 16:00:00 PST,+7.2,+90,+5,+270,+0.0569553,+3515.41,+61722.3,+638.111,OK,OK,+8,+180,+0.014875,+918.118,+61722.3,+671.246,OK,OK
+2020-12-16 17:00:00 PST,+7.2,+90,+5,+270,+0.0503606,+3108.37,+61722.3,+397.264,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,-65.0208,OK,OK
+2020-12-16 18:00:00 PST,+6.7,+90,+5,+270,+0.0503606,+3108.37,+61722.3,+397.264,OK,OK,+8,+180,+0.0182467,+1126.23,+61722.3,-65.0208,OK,OK
+2020-12-16 19:00:00 PST,+6.7,+70,+5,+270,+0.0460924,+2844.92,+61722.3,+254.853,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,-357.2,OK,OK
+2020-12-16 20:00:00 PST,+6.7,+60,+5,+270,+0.0460924,+2844.92,+61722.3,+254.853,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,-357.2,OK,OK
+2020-12-16 21:00:00 PST,+8.2,+50,+5,+270,+0.0460924,+2844.92,+61722.3,+254.853,OK,OK,+8,+180,+0.0221352,+1366.23,+61722.3,-357.2,OK,OK
+2020-12-16 22:00:00 PST,+6.7,+50,+5,+270,+0.0593599,+3663.83,+61722.3,+800.39,OK,OK,+8,+180,+0.0127019,+783.991,+61722.3,+1056.03,OK,OK
+2020-12-16 23:00:00 PST,+5.7,+60,+5,+270,+0.0457895,+2826.23,+61722.3,+232.308,OK,OK,+8,+180,+0.0230113,+1420.31,+61722.3,-737.081,OK,OK
+2020-12-17 00:00:00 PST,+6.7,+60,+5,+270,+0.0405703,+2504.09,+61722.3,-38.1424,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,-792.562,OK,OK
+2020-12-17 01:00:00 PST,+6.7,+70,+5,+270,+0.0470355,+2903.14,+61722.3,+308.229,OK,OK,+8,+180,+0.021311,+1315.36,+61722.3,-577.647,OK,OK
+2020-12-17 02:00:00 PST,+6.7,+60,+5,+270,+0.0470355,+2903.14,+61722.3,+308.229,OK,OK,+8,+180,+0.021311,+1315.36,+61722.3,-577.647,OK,OK
+2020-12-17 03:00:00 PST,+5.7,+70,+5,+270,+0.0470355,+2903.14,+61722.3,+308.229,OK,OK,+8,+180,+0.021311,+1315.36,+61722.3,-577.647,OK,OK
+2020-12-17 04:00:00 PST,+5.1,+80,+5,+270,+0.0407443,+2514.83,+61722.3,-1.76195,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,-714.731,OK,OK
+2020-12-17 05:00:00 PST,+5.7,+100,+5,+270,+0.037813,+2333.9,+61722.3,-147.829,OK,OK,+8,+180,+0.0352771,+2177.38,+61722.3,-645.188,OK,OK
+2020-12-17 06:00:00 PST,+6.7,+120,+5,+270,+0.038616,+2383.47,+61722.3,-39.4642,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,-459.714,OK,OK
+2020-12-17 07:00:00 PST,+5.1,+110,+5,+270,+0.03878,+2393.59,+61722.3,+9.34635,OK,OK,+8,+180,+0.0312363,+1927.97,+61722.3,-217.659,OK,OK
+2020-12-17 08:00:00 PST,+5.1,+90,+5,+270,+0.0356596,+2200.99,+61722.3,-132.354,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,-344.692,OK,OK
+2020-12-17 09:00:00 PST,+6.2,+140,+5,+270,+0.0356596,+2200.99,+61722.3,-132.354,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,-344.692,OK,OK
+2020-12-17 10:00:00 PST,+9.3,+130,+5,+270,+0.0333855,+2060.63,+61722.3,+49.5904,OK,OK,+8,+180,+0.0439556,+2713.04,+61722.3,+88.0518,OK,OK
+2020-12-17 11:00:00 PST,+9.3,+90,+5,+270,+0.0480784,+2967.51,+61722.3,+74.5488,OK,OK,+8,+180,+0.0212918,+1314.18,+61722.3,+9.33644,OK,OK
+2020-12-17 12:00:00 PST,+9.8,+100,+5,+270,+0.0480784,+2967.51,+61722.3,+74.5488,OK,OK,+8,+180,+0.0212918,+1314.18,+61722.3,+9.33644,OK,OK
+2020-12-17 13:00:00 PST,+8.2,+100,+5,+270,+0.078227,+4828.35,+61722.3,+868.963,OK,OK,+8,+180,+0.0293207,+1809.74,+61722.3,+1504.42,OK,OK
+2020-12-17 14:00:00 PST,+8.2,+90,+5,+270,+0.0576517,+3558.39,+61722.3,+522.243,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+642.841,OK,OK
+2020-12-17 15:00:00 PST,+8.2,+120,+5,+270,+0.0576517,+3558.39,+61722.3,+522.243,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+642.841,OK,OK
+2020-12-17 16:00:00 PST,+1.5,+80,+5,+270,+0.0576517,+3558.39,+61722.3,+522.243,OK,OK,+8,+180,+0.016188,+999.159,+61722.3,+642.841,OK,OK
+2020-12-17 17:00:00 PST,+2.1,+30,+5,+270,+0.0356153,+2198.26,+61722.3,-221.044,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,-231.144,OK,OK
+2020-12-17 18:00:00 PST,+1.5,+100,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-12-17 19:00:00 PST,+1.5,+310,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-12-17 20:00:00 PST,+2.6,+10,+5,+270,+0.0356055,+2197.65,+61722.3,-155.674,OK,OK,+8,+180,+0.0558308,+3446,+61722.3,-161.854,OK,OK
+2020-12-17 21:00:00 PST,+2.1,+340,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-12-17 22:00:00 PST,+0,+0,+5,+270,+0.0365135,+2253.69,+61722.3,-158.508,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-169.633,OK,OK
+2020-12-17 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 00:00:00 PST,+2.6,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 01:00:00 PST,+0,+0,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-18 02:00:00 PST,+3.6,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 03:00:00 PST,+0,+0,+5,+270,+0.0358948,+2215.51,+61722.3,-479.788,OK,OK,+8,+180,+0.0526871,+3251.97,+61722.3,-554.357,OK,OK
+2020-12-18 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 06:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 07:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-12-18 08:00:00 PST,+1.5,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 09:00:00 PST,+3.1,+90,+5,+270,+0.0364373,+2248.99,+61722.3,+278.629,OK,OK,+8,+180,+0.0567999,+3505.82,+61722.3,+285.495,OK,OK
+2020-12-18 10:00:00 PST,+6.7,+100,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-12-18 11:00:00 PST,+4.1,+80,+5,+270,+0.0441785,+2726.79,+61722.3,+172.623,OK,OK,+8,+180,+0.024221,+1494.97,+61722.3,-342.763,OK,OK
+2020-12-18 12:00:00 PST,+0,+0,+5,+270,+0.0354299,+2186.81,+61722.3,-312.893,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,-577.067,OK,OK
+2020-12-18 13:00:00 PST,+6.7,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 14:00:00 PST,+4.1,+360,+5,+270,+0.0457895,+2826.23,+61722.3,+232.308,OK,OK,+8,+180,+0.0230113,+1420.31,+61722.3,-737.081,OK,OK
+2020-12-18 15:00:00 PST,+2.6,+280,+5,+270,+0.0363044,+2240.79,+61722.3,-489.238,OK,OK,+8,+180,+0.0536416,+3310.88,+61722.3,-550.59,OK,OK
+2020-12-18 16:00:00 PST,+0,+0,+5,+270,+0.0381348,+2353.76,+61722.3,+236.487,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,+291.723,OK,OK
+2020-12-18 17:00:00 PST,+2.1,+60,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 18:00:00 PST,+5.1,+110,+5,+270,+0.0353834,+2183.95,+61722.3,-343.416,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,-378.71,OK,OK
+2020-12-18 19:00:00 PST,+1.5,+210,+5,+270,+0.0356596,+2200.99,+61722.3,-132.354,OK,OK,+8,+180,+0.0393541,+2429.02,+61722.3,-344.692,OK,OK
+2020-12-18 20:00:00 PST,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-12-18 21:00:00 PST,+3.1,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-18 22:00:00 PST,+2.1,+30,+5,+270,+0.035472,+2189.41,+61722.3,-464.951,OK,OK,+8,+180,+0.0515742,+3183.28,+61722.3,-555.994,OK,OK
+2020-12-18 23:00:00 PST,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-12-19 00:00:00 PST,+2.1,+30,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 01:00:00 PST,+0,+0,+5,+270,+0.0356718,+2201.74,+61722.3,-355.639,OK,OK,+8,+180,+0.0548433,+3385.05,+61722.3,-381.548,OK,OK
+2020-12-19 02:00:00 PST,+2.1,+90,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 03:00:00 PST,+3.1,+110,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-12-19 04:00:00 PST,+2.6,+10,+5,+270,+0.0346488,+2138.6,+61722.3,-194.787,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,-238.109,OK,OK
+2020-12-19 05:00:00 PST,+2.1,+10,+5,+270,+0.0358998,+2215.82,+61722.3,-376.183,OK,OK,+8,+180,+0.0550471,+3397.63,+61722.3,-402.433,OK,OK
+2020-12-19 06:00:00 PST,+2.1,+50,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-12-19 07:00:00 PST,+2.6,+50,+5,+270,+0.035943,+2218.48,+61722.3,-312.561,OK,OK,+8,+180,+0.055942,+3452.86,+61722.3,-325.635,OK,OK
+2020-12-19 08:00:00 PST,+2.6,+50,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-12-19 09:00:00 PST,+0,+0,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-12-19 10:00:00 PST,+3.1,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 11:00:00 PST,+5.7,+130,+5,+270,+0.0346488,+2138.6,+61722.3,-194.787,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,-238.109,OK,OK
+2020-12-19 12:00:00 PST,+4.6,+150,+5,+270,+0.0343321,+2119.06,+61722.3,-38.1843,OK,OK,+8,+180,+0.0418014,+2580.08,+61722.3,-80.1046,OK,OK
+2020-12-19 13:00:00 PST,+6.7,+160,+5,+270,+0.0339061,+2092.76,+61722.3,+193.43,OK,OK,+8,+180,+0.0530153,+3272.22,+61722.3,+215.171,OK,OK
+2020-12-19 14:00:00 PST,+5.1,+130,+5,+270,+0.0325972,+2011.97,+61722.3,+485.764,OK,OK,+8,+180,+0.0546634,+3373.95,+61722.3,+500.801,OK,OK
+2020-12-19 15:00:00 PST,+4.1,+150,+5,+270,+0.0339857,+2097.68,+61722.3,-45.5948,OK,OK,+8,+180,+0.0448712,+2769.55,+61722.3,-75.0731,OK,OK
+2020-12-19 16:00:00 PST,+2.6,+140,+5,+270,+0.0342975,+2116.92,+61722.3,+179.205,OK,OK,+8,+180,+0.0539519,+3330.04,+61722.3,+193.959,OK,OK
+2020-12-19 17:00:00 PST,+2.1,+230,+5,+270,+0.0351434,+2169.13,+61722.3,+40.0727,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+42.2255,OK,OK
+2020-12-19 18:00:00 PST,+0,+0,+5,+270,+0.0369527,+2280.8,+61722.3,+374.562,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,+402.997,OK,OK
+2020-12-19 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 22:00:00 PST,+1.5,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-19 23:00:00 PST,+0,+0,+5,+270,+0.0357227,+2204.89,+61722.3,-270.308,OK,OK,+8,+180,+0.0558138,+3444.96,+61722.3,-281.706,OK,OK
+2020-12-20 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 06:00:00 PST,+2.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 07:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-12-20 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 13:00:00 PST,+2.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-20 14:00:00 PST,+3.6,+250,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-20 15:00:00 PST,+3.6,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-12-20 16:00:00 PST,+4.1,+280,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-12-20 17:00:00 PST,+4.1,+270,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-12-20 18:00:00 PST,+2.1,+290,+5,+270,+0.0426822,+2634.44,+61722.3,+264.405,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,+485.452,OK,OK
+2020-12-20 19:00:00 PST,+3.1,+300,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-12-20 20:00:00 PST,+3.1,+320,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-12-20 21:00:00 PST,+2.6,+290,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-12-20 22:00:00 PST,+2.6,+280,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-20 23:00:00 PST,+1.5,+320,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-21 00:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-12-21 01:00:00 PST,+1.5,+160,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 02:00:00 PST,+0,+0,+5,+270,+0.0359029,+2216.01,+61722.3,+120.457,OK,OK,+8,+180,+0.0574677,+3547.03,+61722.3,+120.01,OK,OK
+2020-12-21 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 04:00:00 PST,+1.5,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 05:00:00 PST,+0,+0,+5,+270,+0.0365738,+2257.42,+61722.3,+265.73,OK,OK,+8,+180,+0.0562316,+3470.74,+61722.3,+277.414,OK,OK
+2020-12-21 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 09:00:00 PST,+1.1,+70,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 10:00:00 PST,+2.1,+140,+5,+270,+0.0358315,+2211.6,+61722.3,-184.497,OK,OK,+8,+180,+0.0565567,+3490.8,+61722.3,-188.43,OK,OK
+2020-12-21 11:00:00 PST,+0,+0,+5,+270,+0.0354503,+2188.07,+61722.3,+33.2929,OK,OK,+8,+180,+0.056013,+3457.25,+61722.3,+34.3406,OK,OK
+2020-12-21 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 13:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 14:00:00 PST,+3.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 15:00:00 PST,+7.2,+250,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-12-21 16:00:00 PST,+5.7,+260,+5,+270,+0.0606263,+3741.99,+61722.3,+208.085,OK,OK,+8,+180,+0.0234002,+1444.31,+61722.3,+1689.12,OK,OK
+2020-12-21 17:00:00 PST,+3.6,+290,+5,+270,+0.0508536,+3138.8,+61722.3,+308.651,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,+1068.45,OK,OK
+2020-12-21 18:00:00 PST,+3.6,+280,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-12-21 19:00:00 PST,+0,+0,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-12-21 20:00:00 PST,+2.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-21 21:00:00 PST,+2.1,+140,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-21 22:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-21 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 01:00:00 PST,+1.5,+40,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 02:00:00 PST,+2.6,+120,+5,+270,+0.0357801,+2208.43,+61722.3,-271.767,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-282.048,OK,OK
+2020-12-22 03:00:00 PST,+0,+0,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-12-22 04:00:00 PST,+2.6,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 05:00:00 PST,+0,+0,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-12-22 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 07:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 08:00:00 PST,+0,+0,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-22 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 10:00:00 PST,+1.5,+320,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 11:00:00 PST,+0,+0,+5,+270,+0.0364651,+2250.71,+61722.3,-23.7991,OK,OK,+8,+180,+0.0559838,+3455.44,+61722.3,-24.9797,OK,OK
+2020-12-22 12:00:00 PST,+3.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 13:00:00 PST,+7.7,+100,+5,+270,+0.0352073,+2173.07,+61722.3,-444.849,OK,OK,+8,+180,+0.0499241,+3081.43,+61722.3,-565.663,OK,OK
+2020-12-22 14:00:00 PST,+2.6,+360,+5,+270,+0.0524959,+3240.17,+61722.3,+406.38,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+167.953,OK,OK
+2020-12-22 15:00:00 PST,+1.5,+290,+5,+270,+0.0361206,+2229.44,+61722.3,-334.973,OK,OK,+8,+180,+0.0560211,+3457.75,+61722.3,-349.155,OK,OK
+2020-12-22 16:00:00 PST,+2.6,+90,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-22 17:00:00 PST,+2.1,+50,+5,+270,+0.0349647,+2158.1,+61722.3,-287.963,OK,OK,+8,+180,+0.051893,+3202.96,+61722.3,-338.22,OK,OK
+2020-12-22 18:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-22 19:00:00 PST,+3.1,+220,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 20:00:00 PST,+0,+0,+5,+270,+0.0377163,+2327.93,+61722.3,+531.423,OK,OK,+8,+180,+0.0541272,+3340.85,+61722.3,+602.131,OK,OK
+2020-12-22 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 22:00:00 PST,+2.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-22 23:00:00 PST,+1.5,+60,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-23 00:00:00 PST,+0,+0,+5,+270,+0.0356756,+2201.98,+61722.3,-261.125,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,-272.877,OK,OK
+2020-12-23 01:00:00 PST,+2.6,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-23 02:00:00 PST,+2.6,+310,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-23 03:00:00 PST,+2.6,+10,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-23 04:00:00 PST,+1.5,+340,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-23 05:00:00 PST,+0,+0,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-23 06:00:00 PST,+4.1,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-23 07:00:00 PST,+5.7,+50,+5,+270,+0.0354299,+2186.81,+61722.3,-312.893,OK,OK,+8,+180,+0.0430201,+2655.3,+61722.3,-577.067,OK,OK
+2020-12-23 08:00:00 PST,+4.6,+30,+5,+270,+0.0400089,+2469.44,+61722.3,-106.294,OK,OK,+8,+180,+0.032041,+1977.64,+61722.3,-861.663,OK,OK
+2020-12-23 09:00:00 PST,+3.1,+350,+5,+270,+0.0361529,+2231.44,+61722.3,-473.214,OK,OK,+8,+180,+0.0443491,+2737.33,+61722.3,-794.831,OK,OK
+2020-12-23 10:00:00 PST,+2.6,+30,+5,+270,+0.036665,+2263.05,+61722.3,-303.663,OK,OK,+8,+180,+0.0539621,+3330.66,+61722.3,-340.149,OK,OK
+2020-12-23 11:00:00 PST,+5.7,+70,+5,+270,+0.0355426,+2193.77,+61722.3,-418.086,OK,OK,+8,+180,+0.0533649,+3293.8,+61722.3,-469.748,OK,OK
+2020-12-23 12:00:00 PST,+8.2,+60,+5,+270,+0.0407443,+2514.83,+61722.3,-1.76195,OK,OK,+8,+180,+0.0298936,+1845.1,+61722.3,-714.731,OK,OK
+2020-12-23 13:00:00 PST,+9.3,+80,+5,+270,+0.0619708,+3824.98,+61722.3,+867.136,OK,OK,+8,+180,+0.013788,+851.025,+61722.3,+1493.15,OK,OK
+2020-12-23 14:00:00 PST,+5.1,+100,+5,+270,+0.0781202,+4821.76,+61722.3,+1127.79,OK,OK,+8,+180,+0.0273178,+1686.11,+61722.3,+2044,OK,OK
+2020-12-23 15:00:00 PST,+9.3,+90,+5,+270,+0.0365498,+2255.94,+61722.3,-139.801,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,-458.066,OK,OK
+2020-12-23 16:00:00 PST,+8.2,+90,+5,+270,+0.0756725,+4670.68,+61722.3,+969.788,OK,OK,+8,+180,+0.025981,+1603.6,+61722.3,+1752.98,OK,OK
+2020-12-23 17:00:00 PST,+7.7,+70,+5,+270,+0.0609922,+3764.58,+61722.3,+679.049,OK,OK,+8,+180,+0.0159255,+982.955,+61722.3,+1073.56,OK,OK
+2020-12-23 18:00:00 PST,+9.3,+90,+5,+270,+0.057276,+3535.21,+61722.3,+689.082,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+724.177,OK,OK
+2020-12-23 19:00:00 PST,+10.3,+70,+5,+270,+0.0756725,+4670.68,+61722.3,+969.788,OK,OK,+8,+180,+0.025981,+1603.6,+61722.3,+1752.98,OK,OK
+2020-12-23 20:00:00 PST,+10.3,+50,+5,+270,+0.094778,+5849.91,+61722.3,+1532.16,OK,OK,+8,+180,+0.0428948,+2647.56,+61722.3,+2455.87,OK,OK
+2020-12-23 21:00:00 PST,+7.7,+60,+5,+270,+0.094778,+5849.91,+61722.3,+1532.16,OK,OK,+8,+180,+0.0428948,+2647.56,+61722.3,+2455.87,OK,OK
+2020-12-23 22:00:00 PST,+7.7,+70,+5,+270,+0.0563185,+3476.11,+61722.3,+682.511,OK,OK,+8,+180,+0.0139801,+862.882,+61722.3,+530.992,OK,OK
+2020-12-23 23:00:00 PST,+6.7,+50,+5,+270,+0.0563185,+3476.11,+61722.3,+682.511,OK,OK,+8,+180,+0.0139801,+862.882,+61722.3,+530.992,OK,OK
+2020-12-24 00:00:00 PST,+7.7,+70,+5,+270,+0.0457895,+2826.23,+61722.3,+232.308,OK,OK,+8,+180,+0.0230113,+1420.31,+61722.3,-737.081,OK,OK
+2020-12-24 01:00:00 PST,+5.7,+60,+5,+270,+0.057276,+3535.21,+61722.3,+689.082,OK,OK,+8,+180,+0.014255,+879.853,+61722.3,+724.177,OK,OK
+2020-12-24 02:00:00 PST,+6.7,+50,+5,+270,+0.0405703,+2504.09,+61722.3,-38.1424,OK,OK,+8,+180,+0.0305631,+1886.42,+61722.3,-792.562,OK,OK
+2020-12-24 03:00:00 PST,+8.2,+90,+5,+270,+0.0457895,+2826.23,+61722.3,+232.308,OK,OK,+8,+180,+0.0230113,+1420.31,+61722.3,-737.081,OK,OK
+2020-12-24 04:00:00 PST,+4.6,+40,+5,+270,+0.0609922,+3764.58,+61722.3,+679.049,OK,OK,+8,+180,+0.0159255,+982.955,+61722.3,+1073.56,OK,OK
+2020-12-24 05:00:00 PST,+3.6,+360,+5,+270,+0.0363276,+2242.22,+61722.3,-418.247,OK,OK,+8,+180,+0.0423305,+2612.73,+61722.3,-801.554,OK,OK
+2020-12-24 06:00:00 PST,+3.1,+300,+5,+270,+0.0362156,+2235.31,+61722.3,-442.873,OK,OK,+8,+180,+0.0545531,+3367.14,+61722.3,-483.445,OK,OK
+2020-12-24 07:00:00 PST,+1.5,+290,+5,+270,+0.0389451,+2403.78,+61722.3,+117.147,OK,OK,+8,+180,+0.0494401,+3051.56,+61722.3,+158.329,OK,OK
+2020-12-24 08:00:00 PST,+2.1,+280,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-24 09:00:00 PST,+0,+0,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-12-24 10:00:00 PST,+3.6,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-24 11:00:00 PST,+4.1,+290,+5,+270,+0.0406272,+2507.6,+61722.3,+196.511,OK,OK,+8,+180,+0.0462972,+2857.57,+61722.3,+306.377,OK,OK
+2020-12-24 12:00:00 PST,+3.6,+310,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-12-24 13:00:00 PST,+4.6,+320,+5,+270,+0.0398404,+2459.04,+61722.3,+42.0316,OK,OK,+8,+180,+0.0472582,+2916.88,+61722.3,+62.4781,OK,OK
+2020-12-24 14:00:00 PST,+4.1,+290,+5,+270,+0.0422507,+2607.81,+61722.3,-43.1416,OK,OK,+8,+180,+0.0423305,+2612.73,+61722.3,-81.7121,OK,OK
+2020-12-24 15:00:00 PST,+2.6,+320,+5,+270,+0.0425213,+2624.51,+61722.3,+193.987,OK,OK,+8,+180,+0.0429795,+2652.79,+61722.3,+356.461,OK,OK
+2020-12-24 16:00:00 PST,+3.1,+280,+5,+270,+0.0374435,+2311.1,+61722.3,-37.1547,OK,OK,+8,+180,+0.0527075,+3253.22,+61722.3,-43.8676,OK,OK
+2020-12-24 17:00:00 PST,+2.1,+300,+5,+270,+0.0392596,+2423.19,+61722.3,+257.853,OK,OK,+8,+180,+0.0492229,+3038.15,+61722.3,+352.708,OK,OK
+2020-12-24 18:00:00 PST,+0,+0,+5,+270,+0.0371844,+2295.1,+61722.3,+92.6132,OK,OK,+8,+180,+0.0538568,+3324.16,+61722.3,+104.941,OK,OK
+2020-12-24 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-24 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-24 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-24 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-24 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 00:00:00 PST,+2.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 01:00:00 PST,+0,+0,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-25 02:00:00 PST,+1.5,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 03:00:00 PST,+1.5,+70,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-25 04:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-25 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 06:00:00 PST,+2.1,+290,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 07:00:00 PST,+0,+0,+5,+270,+0.0372727,+2300.55,+61722.3,+150.704,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,+171.598,OK,OK
+2020-12-25 08:00:00 PST,+1.5,+350,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 09:00:00 PST,+0,+0,+5,+270,+0.0361879,+2233.6,+61722.3,-160.259,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-163.662,OK,OK
+2020-12-25 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 12:00:00 PST,+1.5,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 13:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-25 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 15:00:00 PST,+2.6,+240,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-25 16:00:00 PST,+4.6,+240,+5,+270,+0.0377088,+2327.47,+61722.3,+422.795,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,+489.162,OK,OK
+2020-12-25 17:00:00 PST,+2.6,+300,+5,+270,+0.042524,+2624.67,+61722.3,+543.391,OK,OK,+8,+180,+0.0447414,+2761.54,+61722.3,+921.698,OK,OK
+2020-12-25 18:00:00 PST,+2.1,+310,+5,+270,+0.0379212,+2340.58,+61722.3,+107.225,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,+131.17,OK,OK
+2020-12-25 19:00:00 PST,+2.1,+320,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-12-25 20:00:00 PST,+2.1,+300,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-12-25 21:00:00 PST,+1.5,+290,+5,+270,+0.0370577,+2287.29,+61722.3,+31.4101,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,+35.2699,OK,OK
+2020-12-25 22:00:00 PST,+0,+0,+5,+270,+0.0366405,+2261.53,+61722.3,+114.231,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,+121.471,OK,OK
+2020-12-25 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 01:00:00 PST,+1.5,+300,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 02:00:00 PST,+1.5,+360,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-12-26 03:00:00 PST,+0,+0,+5,+270,+0.0365982,+2258.92,+61722.3,+70.075,OK,OK,+8,+180,+0.0556989,+3437.86,+61722.3,+74.3387,OK,OK
+2020-12-26 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 10:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 11:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 12:00:00 PST,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 13:00:00 PST,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-12-26 14:00:00 PST,+2.6,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 15:00:00 PST,+2.1,+190,+5,+270,+0.0349517,+2157.3,+61722.3,-112.024,OK,OK,+8,+180,+0.0534574,+3299.51,+61722.3,-124.443,OK,OK
+2020-12-26 16:00:00 PST,+0,+0,+5,+270,+0.0362685,+2238.57,+61722.3,+331.684,OK,OK,+8,+180,+0.0579985,+3579.8,+61722.3,+327.716,OK,OK
+2020-12-26 17:00:00 PST,+2.1,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-26 18:00:00 PST,+1.5,+340,+5,+270,+0.037319,+2303.41,+61722.3,+204.607,OK,OK,+8,+180,+0.053754,+3317.82,+61722.3,+233.089,OK,OK
+2020-12-26 19:00:00 PST,+2.6,+290,+5,+270,+0.036286,+2239.65,+61722.3,-117.06,OK,OK,+8,+180,+0.0564664,+3485.24,+61722.3,-120.78,OK,OK
+2020-12-26 20:00:00 PST,+1.5,+10,+5,+270,+0.0380647,+2349.44,+61722.3,+174.121,OK,OK,+8,+180,+0.0516898,+3190.41,+61722.3,+214.664,OK,OK
+2020-12-26 21:00:00 PST,+1.5,+90,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-26 22:00:00 PST,+3.1,+160,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-26 23:00:00 PST,+0,+0,+5,+270,+0.0353122,+2179.55,+61722.3,+245.233,OK,OK,+8,+180,+0.0569678,+3516.18,+61722.3,+245.389,OK,OK
+2020-12-27 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 02:00:00 PST,+1.5,+250,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 03:00:00 PST,+0,+0,+5,+270,+0.0366225,+2260.42,+61722.3,+247.674,OK,OK,+8,+180,+0.0560067,+3456.86,+61722.3,+260.48,OK,OK
+2020-12-27 04:00:00 PST,+1.5,+210,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 05:00:00 PST,+0,+0,+5,+270,+0.0363552,+2243.92,+61722.3,+272.692,OK,OK,+8,+180,+0.0571262,+3525.96,+61722.3,+276.446,OK,OK
+2020-12-27 06:00:00 PST,+2.1,+120,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 07:00:00 PST,+0,+0,+5,+270,+0.0352867,+2177.97,+61722.3,-95.3439,OK,OK,+8,+180,+0.0549008,+3388.6,+61722.3,-101.509,OK,OK
+2020-12-27 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 09:00:00 PST,+2.1,+50,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 10:00:00 PST,+3.6,+90,+5,+270,+0.0354637,+2188.9,+61722.3,-357.122,OK,OK,+8,+180,+0.0540813,+3338.02,+61722.3,-391.385,OK,OK
+2020-12-27 11:00:00 PST,+3.1,+110,+5,+270,+0.0348274,+2149.63,+61722.3,-305.734,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,-450.629,OK,OK
+2020-12-27 12:00:00 PST,+0,+0,+5,+270,+0.0346488,+2138.6,+61722.3,-194.787,OK,OK,+8,+180,+0.0507593,+3132.98,+61722.3,-238.109,OK,OK
+2020-12-27 13:00:00 PST,+2.6,+80,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 14:00:00 PST,+0,+0,+5,+270,+0.0350208,+2161.56,+61722.3,-331.132,OK,OK,+8,+180,+0.0517019,+3191.16,+61722.3,-391.961,OK,OK
+2020-12-27 15:00:00 PST,+3.1,+270,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 16:00:00 PST,+3.1,+340,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-12-27 17:00:00 PST,+1.5,+360,+5,+270,+0.0392357,+2421.72,+61722.3,+321.33,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,+434.998,OK,OK
+2020-12-27 18:00:00 PST,+0,+0,+5,+270,+0.036089,+2227.49,+61722.3,-199.42,OK,OK,+8,+180,+0.057089,+3523.66,+61722.3,-201.436,OK,OK
+2020-12-27 19:00:00 PST,+5.7,+100,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-27 20:00:00 PST,+5.7,+100,+5,+270,+0.038616,+2383.47,+61722.3,-39.4642,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,-459.714,OK,OK
+2020-12-27 21:00:00 PST,+4.1,+90,+5,+270,+0.038616,+2383.47,+61722.3,-39.4642,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,-459.714,OK,OK
+2020-12-27 22:00:00 PST,+3.1,+90,+5,+270,+0.0351787,+2171.31,+61722.3,-278.518,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,-497.9,OK,OK
+2020-12-27 23:00:00 PST,+3.1,+110,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-12-28 00:00:00 PST,+2.1,+90,+5,+270,+0.0347936,+2147.54,+61722.3,-307.565,OK,OK,+8,+180,+0.0494951,+3054.95,+61722.3,-396.722,OK,OK
+2020-12-28 01:00:00 PST,+3.6,+90,+5,+270,+0.0352424,+2175.24,+61722.3,-251.414,OK,OK,+8,+180,+0.0538785,+3325.5,+61722.3,-276.491,OK,OK
+2020-12-28 02:00:00 PST,+6.2,+100,+5,+270,+0.0348274,+2149.63,+61722.3,-305.734,OK,OK,+8,+180,+0.0466926,+2881.97,+61722.3,-450.629,OK,OK
+2020-12-28 03:00:00 PST,+7.7,+100,+5,+270,+0.0410537,+2533.93,+61722.3,+61.4815,OK,OK,+8,+180,+0.0284331,+1754.96,+61722.3,-428.032,OK,OK
+2020-12-28 04:00:00 PST,+2.1,+70,+5,+270,+0.0524959,+3240.17,+61722.3,+406.38,OK,OK,+8,+180,+0.017279,+1066.5,+61722.3,+167.953,OK,OK
+2020-12-28 05:00:00 PST,+5.1,+100,+5,+270,+0.0353192,+2179.98,+61722.3,-320.852,OK,OK,+8,+180,+0.0537466,+3317.36,+61722.3,-354.797,OK,OK
+2020-12-28 06:00:00 PST,+5.7,+100,+5,+270,+0.0365498,+2255.94,+61722.3,-139.801,OK,OK,+8,+180,+0.0373858,+2307.54,+61722.3,-458.066,OK,OK
+2020-12-28 07:00:00 PST,+4.1,+90,+5,+270,+0.038616,+2383.47,+61722.3,-39.4642,OK,OK,+8,+180,+0.0326178,+2013.24,+61722.3,-459.714,OK,OK
+2020-12-28 08:00:00 PST,+4.1,+90,+5,+270,+0.0351787,+2171.31,+61722.3,-278.518,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,-497.9,OK,OK
+2020-12-28 09:00:00 PST,+2.6,+60,+5,+270,+0.0351787,+2171.31,+61722.3,-278.518,OK,OK,+8,+180,+0.0434974,+2684.76,+61722.3,-497.9,OK,OK
+2020-12-28 10:00:00 PST,+0,+0,+5,+270,+0.0351808,+2171.44,+61722.3,-393.522,OK,OK,+8,+180,+0.0518574,+3200.76,+61722.3,-464.035,OK,OK
+2020-12-28 11:00:00 PST,+8.2,+280,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-28 12:00:00 PST,+4.6,+10,+5,+270,+0.0788506,+4866.84,+61722.3,-87.4254,OK,OK,+8,+180,+0.0157503,+972.147,+61722.3,+804.068,OK,OK
+2020-12-28 13:00:00 PST,+0,+0,+5,+270,+0.0361304,+2230.05,+61722.3,-539.971,OK,OK,+8,+180,+0.0495681,+3059.46,+61722.3,-702.949,OK,OK
+2020-12-28 14:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-28 15:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-28 16:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-28 17:00:00 PST,+2.6,+110,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-28 18:00:00 PST,+2.1,+110,+5,+270,+0.0349232,+2155.54,+61722.3,-178.28,OK,OK,+8,+180,+0.0527842,+3257.96,+61722.3,-202.649,OK,OK
+2020-12-28 19:00:00 PST,+1.5,+70,+5,+270,+0.0352473,+2175.54,+61722.3,-153.358,OK,OK,+8,+180,+0.0544607,+3361.44,+61722.3,-165.485,OK,OK
+2020-12-28 20:00:00 PST,+2.6,+20,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-12-28 21:00:00 PST,+0,+0,+5,+270,+0.0357074,+2203.94,+61722.3,-403.688,OK,OK,+8,+180,+0.0541527,+3342.42,+61722.3,-442.97,OK,OK
+2020-12-28 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-28 23:00:00 PST,+2.1,+20,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-29 00:00:00 PST,+2.6,+50,+5,+270,+0.0357997,+2209.64,+61722.3,-339.443,OK,OK,+8,+180,+0.055358,+3416.82,+61722.3,-359.116,OK,OK
+2020-12-29 01:00:00 PST,+1.5,+70,+5,+270,+0.035283,+2177.74,+61722.3,-411.825,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,-480.211,OK,OK
+2020-12-29 02:00:00 PST,+3.2,+100,+5,+270,+0.0356395,+2199.75,+61722.3,-244.55,OK,OK,+8,+180,+0.0556423,+3434.37,+61722.3,-255.849,OK,OK
+2020-12-29 03:00:00 PST,+4.4,+120,+5,+270,+0.0346807,+2140.57,+61722.3,-257.39,OK,OK,+8,+180,+0.0495176,+3056.34,+61722.3,-331.365,OK,OK
+2020-12-29 04:00:00 PST,+2.1,+130,+5,+270,+0.0343003,+2117.09,+61722.3,-127.051,OK,OK,+8,+180,+0.0458164,+2827.89,+61722.3,-196.724,OK,OK
+2020-12-29 05:00:00 PST,+4.1,+160,+5,+270,+0.0353539,+2182.12,+61722.3,-32.6692,OK,OK,+8,+180,+0.0554235,+3420.86,+61722.3,-34.2544,OK,OK
+2020-12-29 06:00:00 PST,+4.8,+190,+5,+270,+0.034742,+2144.35,+61722.3,+319.305,OK,OK,+8,+180,+0.056485,+3486.38,+61722.3,+321.047,OK,OK
+2020-12-29 07:00:00 PST,+4.5,+20,+5,+270,+0.037085,+2288.97,+61722.3,+788.93,OK,OK,+8,+180,+0.0595965,+3678.43,+61722.3,+758.508,OK,OK
+2020-12-29 08:00:00 PST,+5,+40,+5,+270,+0.0359908,+2221.44,+61722.3,-519.101,OK,OK,+8,+180,+0.0472501,+2916.38,+61722.3,-747.199,OK,OK
+2020-12-29 09:00:00 PST,+5.4,+220,+5,+270,+0.0371018,+2290.01,+61722.3,-358.118,OK,OK,+8,+180,+0.0395938,+2443.82,+61722.3,-850.68,OK,OK
+2020-12-29 10:00:00 PST,+5.1,+210,+5,+270,+0.0419307,+2588.06,+61722.3,+729.099,OK,OK,+8,+180,+0.0471674,+2911.28,+61722.3,+1113.23,OK,OK
+2020-12-29 11:00:00 PST,+8.7,+210,+5,+270,+0.0395945,+2443.86,+61722.3,+792.488,OK,OK,+8,+180,+0.051978,+3208.2,+61722.3,+989.345,OK,OK
+2020-12-29 12:00:00 PST,+7.7,+200,+5,+270,+0.048109,+2969.39,+61722.3,+939.978,OK,OK,+8,+180,+0.0419019,+2586.28,+61722.3,+1900.34,OK,OK
+2020-12-29 13:00:00 PST,+7.7,+230,+5,+270,+0.0411029,+2536.96,+61722.3,+1190.5,OK,OK,+8,+180,+0.0537694,+3318.77,+61722.3,+1438.39,OK,OK
+2020-12-29 14:00:00 PST,+7.7,+230,+5,+270,+0.0411029,+2536.96,+61722.3,+1190.5,OK,OK,+8,+180,+0.0537694,+3318.77,+61722.3,+1438.39,OK,OK
+2020-12-29 15:00:00 PST,+5.1,+220,+5,+270,+0.0411029,+2536.96,+61722.3,+1190.5,OK,OK,+8,+180,+0.0537694,+3318.77,+61722.3,+1438.39,OK,OK
+2020-12-29 16:00:00 PST,+5.1,+210,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-12-29 17:00:00 PST,+2.6,+220,+5,+270,+0.041181,+2541.79,+61722.3,+717.176,OK,OK,+8,+180,+0.0482727,+2979.5,+61722.3,+1040.76,OK,OK
+2020-12-29 18:00:00 PST,+2.4,+230,+5,+270,+0.0371988,+2295.99,+61722.3,+460.104,OK,OK,+8,+180,+0.0551592,+3404.55,+61722.3,+500.99,OK,OK
+2020-12-29 19:00:00 PST,+2.2,+240,+5,+270,+0.0372442,+2298.79,+61722.3,+419.397,OK,OK,+8,+180,+0.054753,+3379.48,+61722.3,+462.643,OK,OK
+2020-12-29 20:00:00 PST,+2,+250,+5,+270,+0.0372011,+2296.14,+61722.3,+371.374,OK,OK,+8,+180,+0.0546363,+3372.28,+61722.3,+410.841,OK,OK
+2020-12-29 21:00:00 PST,+1.9,+260,+5,+270,+0.0370892,+2289.23,+61722.3,+317.904,OK,OK,+8,+180,+0.0547538,+3379.53,+61722.3,+349.793,OK,OK
+2020-12-29 22:00:00 PST,+1.7,+270,+5,+270,+0.0370412,+2286.26,+61722.3,+272.921,OK,OK,+8,+180,+0.0547509,+3379.35,+61722.3,+300.091,OK,OK
+2020-12-29 23:00:00 PST,+1.5,+280,+5,+270,+0.0368533,+2274.67,+61722.3,+213.504,OK,OK,+8,+180,+0.0551663,+3404.99,+61722.3,+231.108,OK,OK
+2020-12-30 00:00:00 PST,+1.3,+290,+5,+270,+0.0366644,+2263.01,+61722.3,+155.053,OK,OK,+8,+180,+0.0556458,+3434.59,+61722.3,+164.93,OK,OK
+2020-12-30 01:00:00 PST,+1.1,+300,+5,+270,+0.0364922,+2252.38,+61722.3,+100.469,OK,OK,+8,+180,+0.0561345,+3464.75,+61722.3,+105.037,OK,OK
+2020-12-30 02:00:00 PST,+0.9,+310,+5,+270,+0.0363483,+2243.5,+61722.3,+52.7593,OK,OK,+8,+180,+0.0565872,+3492.69,+61722.3,+54.3056,OK,OK
+2020-12-30 03:00:00 PST,+0.7,+320,+5,+270,+0.036238,+2236.69,+61722.3,+14.698,OK,OK,+8,+180,+0.0569705,+3516.35,+61722.3,+14.9354,OK,OK
+2020-12-30 04:00:00 PST,+0.6,+330,+5,+270,+0.0361615,+2231.97,+61722.3,-11.528,OK,OK,+8,+180,+0.0572648,+3534.51,+61722.3,-11.6016,OK,OK
+2020-12-30 05:00:00 PST,+0.4,+340,+5,+270,+0.0361284,+2229.93,+61722.3,-29.4508,OK,OK,+8,+180,+0.0573947,+3542.53,+61722.3,-29.5141,OK,OK
+2020-12-30 06:00:00 PST,+0.2,+350,+5,+270,+0.0360981,+2228.05,+61722.3,-32.1901,OK,OK,+8,+180,+0.0575395,+3551.47,+61722.3,-32.1119,OK,OK
+2020-12-30 07:00:00 PST,+0,+0,+5,+270,+0.0360867,+2227.35,+61722.3,-21.885,OK,OK,+8,+180,+0.0576065,+3555.6,+61722.3,-21.7868,OK,OK
+2020-12-30 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 09:00:00 PST,+1.1,+360,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 10:00:00 PST,+2.1,+360,+5,+270,+0.0360862,+2227.32,+61722.3,-147.267,OK,OK,+8,+180,+0.0573352,+3538.86,+61722.3,-147.719,OK,OK
+2020-12-30 11:00:00 PST,+0,+0,+5,+270,+0.0361002,+2228.18,+61722.3,-275.082,OK,OK,+8,+180,+0.0565775,+3492.09,+61722.3,-282.01,OK,OK
+2020-12-30 12:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 13:00:00 PST,+1.5,+10,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 14:00:00 PST,+1.6,+260,+5,+270,+0.0360027,+2222.17,+61722.3,-228.844,OK,OK,+8,+180,+0.0567646,+3503.64,+61722.3,-232.974,OK,OK
+2020-12-30 15:00:00 PST,+0.6,+330,+5,+270,+0.0367401,+2267.68,+61722.3,+235.776,OK,OK,+8,+180,+0.0555845,+3430.8,+61722.3,+251.57,OK,OK
+2020-12-30 16:00:00 PST,+1.3,+350,+5,+270,+0.0361284,+2229.93,+61722.3,-29.4508,OK,OK,+8,+180,+0.0573947,+3542.53,+61722.3,-29.5141,OK,OK
+2020-12-30 17:00:00 PST,+0.9,+20,+5,+270,+0.0361604,+2231.9,+61722.3,-139.748,OK,OK,+8,+180,+0.0569779,+3516.81,+61722.3,-141.783,OK,OK
+2020-12-30 18:00:00 PST,+0,+0,+5,+270,+0.0360218,+2223.34,+61722.3,-153.862,OK,OK,+8,+180,+0.0572057,+3530.87,+61722.3,-154.732,OK,OK
+2020-12-30 19:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 20:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 21:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 22:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-30 23:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 00:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 01:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 02:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 03:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 04:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 05:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 06:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 07:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 08:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 09:00:00 PST,+0,+0,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 10:00:00 PST,+0.9,+340,+5,+270,+0.036085,+2227.25,+61722.3,+0,OK,OK,+8,+180,+0.0576217,+3556.54,+61722.3,+0,OK,OK
+2020-12-31 11:00:00 PST,+1.7,+320,+5,+270,+0.0361531,+2231.45,+61722.3,-71.7503,OK,OK,+8,+180,+0.0572057,+3530.87,+61722.3,-72.3183,OK,OK
+2020-12-31 12:00:00 PST,+2.6,+310,+5,+270,+0.0365866,+2258.21,+61722.3,-26.596,OK,OK,+8,+180,+0.0555182,+3426.71,+61722.3,-28.3608,OK,OK
+2020-12-31 13:00:00 PST,+2.6,+290,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-12-31 14:00:00 PST,+2.6,+270,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-12-31 15:00:00 PST,+2.6,+250,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-12-31 16:00:00 PST,+4.1,+220,+5,+270,+0.0377106,+2327.58,+61722.3,+36.5265,OK,OK,+8,+180,+0.0522,+3221.9,+61722.3,+44.0347,OK,OK
+2020-12-31 17:00:00 PST,+2.6,+230,+5,+270,+0.0391406,+2415.84,+61722.3,+646.25,OK,OK,+8,+180,+0.051538,+3181.04,+61722.3,+813.239,OK,OK
+2020-12-31 18:00:00 PST,+3.1,+240,+5,+270,+0.0374676,+2312.58,+61722.3,+447.391,OK,OK,+8,+180,+0.0542571,+3348.87,+61722.3,+502.891,OK,OK
+2020-12-31 19:00:00 PST,+3.1,+240,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-12-31 20:00:00 PST,+3.6,+250,+5,+270,+0.038526,+2377.91,+61722.3,+475.753,OK,OK,+8,+180,+0.0517138,+3191.89,+61722.3,+589.933,OK,OK
+2020-12-31 21:00:00 PST,+3,+230,+5,+270,+0.0400842,+2474.09,+61722.3,+459.778,OK,OK,+8,+180,+0.0483923,+2986.88,+61722.3,+655.459,OK,OK
+2020-12-31 22:00:00 PST,+3,+200,+5,+270,+0.0379907,+2344.87,+61722.3,+498.287,OK,OK,+8,+180,+0.0531488,+3280.46,+61722.3,+584.742,OK,OK
+2020-12-31 23:00:00 PST,+3,+190,+5,+270,+0.0379907,+2344.87,+61722.3,+498.287,OK,OK,+8,+180,+0.0531488,+3280.46,+61722.3,+584.742,OK,OK
diff --git a/module/powerflow/autotest/test_pole.glm b/module/powerflow/autotest/test_pole.glm
index d96902635..06899a515 100644
--- a/module/powerflow/autotest/test_pole.glm
+++ b/module/powerflow/autotest/test_pole.glm
@@ -192,5 +192,5 @@ object multi_recorder {
}
#ifexist "../test_pole.csv"
-#on_exit 0 diff -q test_pole.csv ../test_pole.csv
+#on_exit 0 diff -q test_pole.csv ../test_pole.csv > gridlabd.diff
#endif
diff --git a/module/powerflow/pole.cpp b/module/powerflow/pole.cpp
index a55eae17b..c02524c1c 100644
--- a/module/powerflow/pole.cpp
+++ b/module/powerflow/pole.cpp
@@ -127,7 +127,7 @@ pole::pole(MODULE *mod)
PT_OUTPUT,
PT_DESCRIPTION, "the moment of the pole",
- PT_double, "pole_moment_nowind[ft*lb]", get_pole_moment_nowind_offset(),
+ PT_double, "pole_moment_per_wind[ft*lb]", get_pole_moment_per_wind_offset(),
PT_OUTPUT,
PT_DESCRIPTION, "the moment of the pole without wind",
@@ -159,7 +159,6 @@ pole::pole(MODULE *mod)
PT_OUTPUT,
PT_DESCRIPTION, "wire moment in y-axis due to tension and wind load",
-
PT_double, "equipment_moment_x[ft*lb]", get_wire_moment_x_offset(),
PT_OUTPUT,
PT_DESCRIPTION, "equipment moment in x-axis due to wind load",
@@ -201,6 +200,39 @@ double wind_gust_cdf(double wind_ratio)
return w;
}
+// Effective pole height:
+// height above the ground minus guy wire height (how far it extends without support, a.k.a. from where it would snap)
+double pole::calc_height() {
+ return config->pole_length - config->pole_depth - guy_height;
+}
+
+// Diameter at effective pole height, using linear interpolation from pole top diameter and ground diameter
+// diameter = top diameter + height difference from top * (change in diameter / change in height)
+double pole::calc_diameter() {
+ return config->top_diameter
+ + height*(config->ground_diameter-config->top_diameter)
+ /(config->pole_length - config->pole_depth);
+}
+
+// Pole moment per unit of wind pressure
+// Equation comes from Pole Loading Model, pdf linked in docs.
+// moment = force * radius
+// Pole moment = wind pressure * cross-sectional area * height from supported point
+// Calculated by approximating the pole's cross sectional area as a very tall trapezoid (diameter at the bottom
+// is larger than that at the top). Integrating to sum up the contribution to moment from every slice
+// of area at a given height gives:
+// pole moment = 1/6 W H^2 (D_base + 2*D_top)
+// where W = wind pressure, dropped from the equation to be multiplied in later
+// H = pole height
+// D = diameter at the supported base and at the top
+// * 1/12 to convert diameter from inches to feet
+// * Overload capacity factor increases the modeled force on the pole.
+// For reliability, the National Electrical Safety Code requires that these overload factors
+// be used when calculating the maximum force a pole must withstand.
+double pole::calc_pole_moment_per_wind() {
+ return height * height * (diameter + 2*config->top_diameter)/72.0 * config->overload_factor_transverse_general;
+}
+
void pole::reset_commit_accumulators()
{
equipment_moment_nowind = 0.0;
@@ -236,7 +268,7 @@ int pole::create(void)
pole_stress = 0.0;
critical_wind_speed = 0.0;
susceptibility = 0.0;
- pole_moment_nowind = 0.0;
+ pole_moment_per_wind = 0.0;
reset_commit_accumulators();
reset_sync_accumulators();
wind_speed_ref = NULL;
@@ -341,23 +373,23 @@ int pole::init(OBJECT *parent)
verbose("tilt_direction = %g deg",tilt_direction);
// effective pole height
- height = config->pole_length - config->pole_depth - guy_height;
+ // height above the ground minus guy wire height (how far it extends without support, a.k.a. from where it would snap)
+ height = calc_height();
verbose("height = %g ft",height);
- // calculation resisting moment
- double diameter = config->top_diameter
- + height/(config->pole_length - config->pole_depth)
- *(config->ground_diameter-config->top_diameter);
-
- resisting_moment = 0.008186
+ // diameter at effective pole height
+ diameter = calc_diameter();
+
+ // calculation resisting moment
+ resisting_moment = 0.008186
* config->strength_factor_250b_wood
* config->fiber_strength
* ( diameter * diameter * diameter);
- verbose("resisting_moment = %.0f ft*lb (not aged)",resisting_moment);
+ verbose("resisting_moment = %.0f ft*lb (not aged)",resisting_moment);
// pole moment per unit of wind pressure
- pole_moment_nowind = height * height * (diameter+2*config->top_diameter)/72 * config->overload_factor_transverse_general * cos(tilt_angle/180*PI);
- verbose("pole_moment_nowind = %g ft*lb (wind load is 1 lb/sf)",pole_moment_nowind);
+ pole_moment_per_wind = calc_pole_moment_per_wind();
+ verbose("pole_moment_per_wind = %g ft*lb (wind load is 1 lb/sf)",pole_moment_per_wind);
// check install year
if ( install_year > gl_globalclock )
@@ -383,9 +415,7 @@ TIMESTAMP pole::precommit(TIMESTAMP t0)
{
wind_gusts = wind_gusts_ref->get_double();
}
- height = config->pole_length - config->pole_depth - guy_height;
- double diameter = config->top_diameter
- + height*(config->ground_diameter-config->top_diameter)/(config->pole_length-config->pole_depth);
+ height = calc_height(); // effective pole height (length of unsupported pole)
double t0_year = 1970 + (int)(t0/86400/365.24);
double age = t0_year - install_year;
if ( age > 0 && config->degradation_rate > 0 )
@@ -428,6 +458,7 @@ TIMESTAMP pole::precommit(TIMESTAMP t0)
resisting_moment = 0.0;
}
verbose("wind speed change requires update of pole analysis");
+ verbose("wind speed = %g m/s", wind_speed);
wind_pressure = 0.00256 * (2.24*wind_speed) * (2.24*wind_speed); // 2.24 account for m/s to mph conversion
verbose("wind_pressure = %g psf",wind_pressure); // unit: pounds per square foot
@@ -441,14 +472,13 @@ TIMESTAMP pole::precommit(TIMESTAMP t0)
verbose("pole_moment = %g ft*lb (tilt moment)",pole_moment);
// TODO: this needs to be moved to commit in order to consider equipment and wire wind susceptibility
- pole_moment_nowind = height * height * (diameter+2*config->top_diameter)/72
- * config->overload_factor_transverse_general * cos(tilt_angle/180*PI);
- verbose("pole_moment_nowind = %g ft*lb (wind load is 1 lb/sf)",pole_moment_nowind);
+ pole_moment_per_wind = calc_pole_moment_per_wind();
+ verbose("pole_moment_per_wind = %g ft*lb (wind load is 1 lb/sf)",pole_moment_per_wind);
last_wind_speed = wind_speed;
if ( wind_pressure > 0.0 )
{
- pole_moment_wind = wind_pressure * pole_moment_nowind;
+ pole_moment_wind = wind_pressure * pole_moment_per_wind;
verbose("pole_moment_wind = %g ft*lb",pole_moment_wind);
}
@@ -486,8 +516,8 @@ TIMESTAMP pole::postsync(TIMESTAMP t0) ////
verbose("equipment_moment_x = %g ft*lb (moment in x-axis)", equipment_moment_x);
verbose("equipment_moment_y = %g ft*lb (moment in y-axis)", equipment_moment_y);
- double pole_moment_x = pole_moment_wind*cos(wind_direction*PI/180)+pole_moment*cos(tilt_angle/180*PI);
- double pole_moment_y = pole_moment_wind*sin(wind_direction*PI/180)+pole_moment*sin(tilt_angle/180*PI);
+ double pole_moment_x = pole_moment_wind*cos(wind_direction*PI/180)+pole_moment*cos(tilt_direction*PI/180);
+ double pole_moment_y = pole_moment_wind*sin(wind_direction*PI/180)+pole_moment*sin(tilt_direction*PI/180);
verbose("pole_moment_x = %g ft*lb (moment in x-axis)", pole_moment_x);
verbose("pole_moment_y = %g ft*lb (moment in y-axis)", pole_moment_y);
@@ -508,21 +538,21 @@ TIMESTAMP pole::postsync(TIMESTAMP t0) ////
verbose("name is %s ################################\n", my()->name);
verbose("pole_stress = %g %%\n",pole_stress*100);
if ( wind_speed > 0.0 )
- // d(total_moment)/d(wind_speed)
- // susceptibility = 2*(pole_moment+equipment_moment+wire_wind)/resisting_moment/(wind_speed)/(0.00256)/(2.24);
- susceptibility = (cos(wind_direction*PI/180) + sin(wind_direction*PI/180)) * (pole_moment_nowind+equipment_moment_nowind+wire_moment_nowind) * (
+ susceptibility = (cos(wind_direction*PI/180) + sin(wind_direction*PI/180)) * (pole_moment_per_wind+equipment_moment_nowind+wire_moment_nowind) * (
(wire_moment_x+equipment_moment_x+pole_moment_x) + (wire_moment_y+equipment_moment_y+pole_moment_y)
) * (0.00256*2*2.24*wind_speed*2.24) / total_moment;
else
susceptibility = 0.0;
verbose("susceptibility = %g ft*lb.s/m\n",susceptibility);
+ verbose("wind_speed = %g m/s", wind_speed);
+ verbose("pole moment no wind %g ", pole_moment_per_wind);
double effective_moment = resisting_moment * (1+config->wind_overdesign);
double wind_pressure_failure = sqrt( effective_moment*effective_moment -
(wire_weight+equipment_weight+pole_moment)*(wire_weight+equipment_weight+pole_moment))
- / (pole_moment_nowind+equipment_moment_nowind+wire_moment_nowind); // ignore wiree_tension
+ / (pole_moment_per_wind+equipment_moment_nowind+wire_moment_nowind); // ignore wiree_tension
critical_wind_speed = sqrt(wind_pressure_failure / (0.00256 * 2.24 * 2.24));
- verbose("wind_pressure_failure = %g psf (overdesighn facter = %g)",wind_pressure_failure,config->wind_overdesign); // unit: pounds per square foot
+ verbose("wind_pressure_failure = %g psf (overdesign factor = %g)",wind_pressure_failure,config->wind_overdesign); // unit: pounds per square foot
verbose("critical_wind_speed = %g m/s",critical_wind_speed);
if ( wind_gusts > 0.0 )
{
@@ -534,14 +564,21 @@ TIMESTAMP pole::postsync(TIMESTAMP t0) ////
verbose("pole_status = %d",pole_status);
if ( pole_status == PS_FAILED )
{
- verbose("pole failed at %.0f%% stress, time to repair is %g h",pole_stress*100,repair_time);
+ if ( stop_on_pole_failure )
+ {
+ verbose("pole failed at %.0f%% stress, time to repair is %g h",pole_stress*100,repair_time);
+ }
+ else
+ {
+ warning("pole failed at %.0f%% stress, time to repair is %g h",pole_stress*100,repair_time);
+ }
down_time = gl_globalclock;
verbose("down_time = %lld", down_time);
}
// // M = a * V^2 + b * V + c
// // TODO
- // pole_stress_polynomial_a = pole_moment_nowind + equipment_moment_nowind + wire_moment_nowind;
+ // pole_stress_polynomial_a = pole_moment_per_wind + equipment_moment_nowind + wire_moment_nowind;
// pole_stress_polynomial_b = 0.0;
// pole_stress_polynomial_c = wire_tension;
diff --git a/module/powerflow/pole.h b/module/powerflow/pole.h
index 538e8c7af..f8415489b 100644
--- a/module/powerflow/pole.h
+++ b/module/powerflow/pole.h
@@ -36,7 +36,7 @@ class pole : public gld_object
GL_ATOMIC(double, wind_direction);
GL_ATOMIC(double, wind_gusts);
GL_ATOMIC(double, pole_moment); // (see Section D)
- GL_ATOMIC(double, pole_moment_nowind); // wire moment without the wind component for wind speed at failure calc
+ GL_ATOMIC(double, pole_moment_per_wind); // wire moment without the wind component for wind speed at failure calc
GL_ATOMIC(double, pole_moment_wind);
GL_ATOMIC(double, resisting_moment); // (see Section B)
GL_ATOMIC(double, equipment_moment); // (see Section E)
@@ -69,11 +69,15 @@ class pole : public gld_object
private:
void reset_commit_accumulators();
void reset_sync_accumulators();
+ double calc_height();
+ double calc_diameter();
+ double calc_pole_moment_per_wind();
private:
class pole_configuration *config;
double last_wind_speed;
TIMESTAMP down_time;
public:
+ double diameter; // calculated pole diameter
double height; // effective pole height for moment calculations
bool recalc; // flag for recalculation
public:
diff --git a/module/reliability/reliability.vcproj b/module/reliability/reliability.vcproj
deleted file mode 100644
index 12b65f05a..000000000
--- a/module/reliability/reliability.vcproj
+++ /dev/null
@@ -1,553 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/residential/residential.vcproj b/module/residential/residential.vcproj
deleted file mode 100644
index 5b271ba7b..000000000
--- a/module/residential/residential.vcproj
+++ /dev/null
@@ -1,1458 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/tape/recorder.cpp b/module/tape/recorder.cpp
index 221f1cb9b..d84629ebe 100644
--- a/module/tape/recorder.cpp
+++ b/module/tape/recorder.cpp
@@ -34,14 +34,14 @@ inline char* strtok_t(char *str, const char *delim, char **nextp)
{
char *ret;
- if (str == NULL)
+ if ( str == NULL )
{
str = *nextp;
}
str += strspn(str, delim);
- if (*str == '\0')
+ if ( *str == '\0' )
{
return NULL;
}
@@ -50,7 +50,7 @@ inline char* strtok_t(char *str, const char *delim, char **nextp)
str += strcspn(str, delim);
- if (*str)
+ if ( *str != '\0' )
{
*str++ = '\0';
}
@@ -68,7 +68,7 @@ static OBJECT *last_recorder = NULL;
EXPORT int create_recorder(OBJECT **obj, OBJECT *parent)
{
*obj = gl_create_object(recorder_class);
- if (*obj!=NULL)
+ if ( *obj != NULL )
{
struct recorder *my = OBJECTDATA(*obj,struct recorder);
last_recorder = *obj;
@@ -121,14 +121,14 @@ static int recorder_open(OBJECT *obj)
my->interval = minimum_timestep;
}
- /* if no filename given */
- if (strcmp(my->file,"")==0)
+ // if no filename given
+ if ( strcmp(my->file,"") == 0 )
{
- /* use object name-id as default file name */
+ // use object name-id as default file name
snprintf(my->file,sizeof(my->file)-1,"%s-%d.%s",obj->parent->oclass->name,obj->parent->id, (char*)my->filetype);
}
- /* open multiple-run input file & temp output file */
+ // open multiple-run input file & temp output file
if ( my->type == FT_FILE && my->multifile[0] != 0 )
{
if ( my->interval < 1 )
@@ -141,9 +141,12 @@ static int recorder_open(OBJECT *obj)
gl_warning("recorder: filename '%s' truncated due to buffer overrun",(const char*)(my->file));
}
my->multifp = fopen(my->multitempfile, "w");
- if(my->multifp == NULL){
+ if ( my->multifp == NULL )
+ {
gl_error("unable to open \'%s\' for multi-run output", (char*)my->multitempfile);
- } else {
+ }
+ else
+ {
time_t now=time(NULL);
my->inputfp = fopen(my->multifile, "r");
@@ -166,86 +169,120 @@ static int recorder_open(OBJECT *obj)
fprintf(my->multifp,"# property.. %s\n", my->property);
//fprintf(my->multifp,"# timestamp,%s\n", my->property);
}
- if(my->inputfp != NULL){
- char1024 inbuffer;
+ if ( my->inputfp != NULL )
+ {
+ char1024 inbuffer = "";
char *data;
int get_col = 0;
- do{
- if(0 != fgets(inbuffer, 1024, my->inputfp)){
+ do {
+ if ( fgets(inbuffer, sizeof(inbuffer)-1, my->inputfp) != NULL )
+ {
char *end = strchr(inbuffer, '\n');
data = inbuffer+strlen("# file...... ");
- if(end != 0){
+ if ( end != NULL )
+ {
*end = 0; // trim the trailing newline
}
// "# columns... "
- if(strncmp(inbuffer, "# file", strlen("# file")) == 0){
+ if ( strncmp(inbuffer, "# file", strlen("# file")) == 0 )
+ {
; // ignore
- } else if(strncmp(inbuffer, "# date", strlen("# date")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# date", strlen("# date")) == 0 )
+ {
; // ignore
- } else if(strncmp(inbuffer, "# user", strlen("# user")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# user", strlen("# user")) == 0 )
+ {
; // ignore
- } else if(strncmp(inbuffer, "# host", strlen("# host")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# host", strlen("# host")) == 0 )
+ {
; // ignore
- } else if(strncmp(inbuffer, "# target", strlen("# target")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# target", strlen("# target")) == 0 )
+ {
// verify same target
char256 target;
snprintf(target,sizeof(target)-1, "%s %d", obj->parent->oclass->name, obj->parent->id);
- if(0 != strncmp(target, data, strlen(data))){
+ if ( strncmp(target, data, strlen(data)) != 0 )
+ {
gl_error("recorder:%i: re-recording target mismatch: was %s, now %s", obj->id, data, (char*)target);
}
- } else if(strncmp(inbuffer, "# trigger", strlen("# trigger")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# trigger", strlen("# trigger")) == 0 )
+ {
// verify same trigger, or absence thereof
;
- } else if(strncmp(inbuffer, "# interval", strlen("# interval")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# interval", strlen("# interval")) == 0 )
+ {
// verify same interval
int interval = atoi(data);
- if(interval != my->interval){
+ if ( interval != my->interval )
+ {
gl_error("recorder:%i: re-recording interval mismatch: was %i, now %i", obj->id, interval, my->interval);
}
- } else if(strncmp(inbuffer, "# limit", strlen("# limit")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# limit", strlen("# limit")) == 0 )
+ {
// verify same limit
int limit = atoi(data);
- if(limit != my->limit){
+ if ( limit != my->limit )
+ {
gl_error("recorder:%i: re-recording limit mismatch: was %i, now %i", obj->id, limit, my->limit);
}
- } else if(strncmp(inbuffer, "# property", strlen("# property")) == 0){
+ }
+ else if ( strncmp(inbuffer, "# property", strlen("# property")) == 0 )
+ {
// verify same columns
- if(0 != strncmp(my->property, data, strlen(my->property))){
+ if ( strncmp(my->property, data, strlen(my->property)) != 0 )
+ {
gl_error("recorder:%i: re-recording property mismatch: was %s, now %s", obj->id, data, my->property);
}
// next line is full header column list
get_col = 1;
}
- } else {
+ }
+ else
+ {
gl_error("error reading multi-read input file \'%s\'", (char*)my->multifile);
break;
}
- } while(inbuffer[0] == '#' && get_col == 0);
+ } while ( inbuffer[0] == '#' && get_col == 0 );
+
// get full column list
- if(0 != fgets(inbuffer, 1024, my->inputfp)){
+ if ( fgets(inbuffer, sizeof(inbuffer)-1, my->inputfp) != NULL )
+ {
int rep=0;
int replen = (int)strlen("# repetition");
char1024 propstr, shortstr;
int len, lenmax = sizeof(propstr), i = 0;
PROPERTY *tprop = my->target;
gl_verbose("read last buffer");
- if(strncmp(inbuffer, "# repetition", replen) == 0){
+ if ( strncmp(inbuffer, "# repetition", replen) == 0 )
+ {
char *trim;
rep = atoi(inbuffer + replen + 1); // skip intermediate space
++rep;
fprintf(my->multifp, "# repetition %i\n", rep);
- fgets(inbuffer, 1024, my->inputfp);
+ fgets(inbuffer, sizeof(inbuffer)-1, my->inputfp);
trim = strchr(inbuffer, '\n');
- if(trim) *trim = 0;
- } else { // invalid input file or somesuch, we could error ... or we can trample onwards with our output file.
+ if ( trim) *trim = 0;
+ }
+ else // invalid input file or somesuch, we could error ... or we can trample onwards with our output file.
+ {
rep = 0;
fprintf(my->multifp, "# repetition %i\n", rep);
}
+
// following block matches below
- while(tprop != NULL){
+ while ( tprop != NULL )
+ {
snprintf(shortstr,sizeof(shortstr)-1, ",%s(%i)", tprop->name, rep);
len = (int)strlen(shortstr);
- if(len > lenmax){
+ if ( len > lenmax )
+ {
gl_error("multi-run recorder output full property list is larger than the buffer, please start a new file!");
break; // will still print everything up to this one
}
@@ -256,21 +293,28 @@ static int recorder_open(OBJECT *obj)
}
fprintf(my->multifp, "%s%s\n", (char*)inbuffer, (char*)propstr);
}
- } else { /* new file, so write repetition & properties with (0) */
+ }
+ else
+ {
+ // new file, so write repetition & properties with (0)
char1024 propstr, shortstr;
int len, lenmax = sizeof(propstr), i = 0;
PROPERTY *tprop = my->target;
fprintf(my->multifp, "# repetition 0\n");
+
// no string from previous runs to append new props to
snprintf(propstr,sizeof(propstr)-1, "# timestamp");
len = (int)strlen(propstr);
lenmax-=len;
i = len;
+
// following block matches above
- while(tprop != NULL){
+ while ( tprop != NULL )
+ {
snprintf(shortstr,sizeof(shortstr)-1, ",%s(0)", tprop->name);
len = (int)strlen(shortstr);
- if(len > lenmax){
+ if ( len > lenmax )
+ {
gl_error("multi-run recorder output full property list is larger than the buffer, please start a new file!");
break; // will still print everything up to this one
}
@@ -283,7 +327,7 @@ static int recorder_open(OBJECT *obj)
}
}
- /* if type is file or file is stdin */
+ // if type is file or file is stdin
f = get_ftable(my->mode);
if ( f != 0 )
{
@@ -310,10 +354,14 @@ static int recorder_open(OBJECT *obj)
char *last_token;
switch ( my->header_units )
{
+
case HU_DEFAULT:
+
strcpy(my->out_property, my->property);
break;
+
case HU_ALL:
+
strcpy(unit_buffer, my->property);
for ( token = strtok_s(unit_buffer,",",&last_token) ; token != NULL ; token = strtok_s(NULL, ",",&last_token) )
{
@@ -359,7 +407,9 @@ static int recorder_open(OBJECT *obj)
first = 0;
}
break;
+
case HU_NONE:
+
strcpy(unit_buffer, my->property);
for ( token = strtok_s(unit_buffer, ",", &last_token) ; token != NULL ; token = strtok_s(NULL, ",", &last_token) )
{
@@ -374,22 +424,24 @@ static int recorder_open(OBJECT *obj)
first = 0;
}
break;
+
default:
+
gl_error("invalid property header unit specification");
return 0;
break;
}
- /* set up the delta_mode recorder if enabled */
+ // set up the delta_mode recorder if enabled
if ( (obj->flags)&OF_DELTAMODE )
{
extern int delta_add_tape_device(OBJECT *obj, DELTATAPEOBJ tape_type);
retvalue = delta_add_tape_device(obj,RECORDER);
- /* Make sure it worked */
- if (retvalue == 0)
+ // Make sure it worked
+ if ( retvalue == 0 )
{
- /* Error message is inside the delta_add_tape_device function, just fail us */
+ // Error message is inside the delta_add_tape_device function, just fail us
return 0;
}
}
@@ -407,25 +459,31 @@ static int write_recorder(struct recorder *my, char *ts, char *value)
static void close_recorder(struct recorder *my)
{
- if (my->ops){
+ if (my->ops )
+ {
my->ops->close(my);
}
- if(my->multifp){
- if(0 != fclose(my->multifp)){
+ if ( my->multifp )
+ {
+ if ( 0 != fclose(my->multifp) )
+ {
gl_error("unable to close multi-run temp file \'%s\'", (char*)my->multitempfile);
perror("fclose(): ");
}
my->multifp = 0; // since it's closed
- if(my->inputfp != NULL){
+ if ( my->inputfp != NULL )
+ {
fclose(my->inputfp);
- if(0 != remove(my->multifile)){ // old file
+ if ( 0 != remove(my->multifile) )
+ { // old file
gl_error("unable to remove out-of-data multi-run file \'%s\'", (char*)my->multifile);
perror("remove(): ");
}
}
- if(0 != rename(my->multitempfile, my->multifile)){
+ if ( 0 != rename(my->multitempfile, my->multifile) )
+ {
gl_error("unable to rename multi-run file \'%s\' to \'%s\'", (char*)my->multitempfile, (char*)my->multifile);
perror("rename(): ");
}
@@ -436,10 +494,10 @@ static void close_recorder(struct recorder *my)
static TIMESTAMP recorder_write(OBJECT *obj)
{
struct recorder *my = OBJECTDATA(obj,struct recorder);
- char ts[64]="0"; /* 0 = INIT */
- if (my->format==0)
+ char ts[64]="0"; // 0 = INIT
+ if ( my->format == 0 )
{
- if (my->last.ts>TS_ZERO)
+ if ( my->last.ts > TS_ZERO )
{
time_t t = (time_t)(my->last.ts);
if ( my->strftime_format[0]==0 || strftime(ts,sizeof(ts),(char*)(my->strftime_format),localtime(&t))==0 )
@@ -449,65 +507,78 @@ static TIMESTAMP recorder_write(OBJECT *obj)
gl_strtime(&dt,ts,sizeof(ts));
}
}
- /* else leave INIT in the buffer */
+ // else leave INIT in the buffer
}
else
+ {
snprintf(ts,sizeof(ts)-1,"%" FMT_INT64 "d", my->last.ts);
- if ((my->limit>0 && my->samples > my->limit) /* limit reached */
- || write_recorder(my, ts, my->last.value)==0) /* write failed */
+ }
+ if ((my->limit>0 && my->samples > my->limit) // limit reached
+ || write_recorder(my, ts, my->last.value)==0) // write failed
{
close_recorder(my);
my->status = TS_DONE;
}
else
+ {
my->samples++;
+ }
- /* at this point we've written the sample to the normal recorder output */
+ // at this point we've written the sample to the normal recorder output
// if file based
- if(my->multifp != NULL){
- char1024 inbuffer;
+ if ( my->multifp != NULL )
+ {
+ char1024 inbuffer = "";
char outbuffer[5100];
char *lasts = 0;
char *in_ts = 0;
char *in_tok = 0;
-
- memset((void*)inbuffer, 0, sizeof(inbuffer));
- if(my->inputfp != NULL){
+ if ( my->inputfp != NULL )
+ {
// read line
- do{
- if(0 == fgets(inbuffer, 1024, my->inputfp)){
- if(feof(my->inputfp)){
+ do {
+ if ( 0 == fgets(inbuffer, sizeof(inbuffer)-1, my->inputfp) )
+ {
+ if ( feof(my->inputfp) )
+ {
// if there is no more data to append rows to, we're done with the aggregate
//fclose(my->multifp); // happens in close()
//fclose(my->inputfp); // one-over read never happens
return TS_NEVER;
- } else {
+ }
+ else
+ {
gl_error("error reading past recordings file");
my->status = TS_ERROR;
return TS_NEVER;
}
}
// if first char == '#', re-read
- } while(inbuffer[0] == '#');
+ } while ( inbuffer[0] == '#');
// NOTE: this is not thread safe!
// split on first comma
in_ts = strtok_s(inbuffer, ",\n", &lasts);
in_tok = strtok_s(NULL, "\n", &lasts);
- if(in_ts == NULL){
+ if ( in_ts == NULL )
+ {
gl_error("unable to indentify a timestamp within the line read from ");
}
// compare timestamps if my->format == 0
// warn if timestamps mismatch
- if(strcmp(in_ts, ts) != 0){
+ if ( strcmp(in_ts, ts) != 0 )
+ {
gl_warning("timestamp mismatch between current input line and simulation time");
}
snprintf(outbuffer,sizeof(outbuffer)-1,"%s,%s", in_tok, (char*)my->last.value);
- } else { // no input file ~ write normal output
+ }
+ else
+ {
+ // no input file ~ write normal output
strcpy(outbuffer, my->last.value);
}
// fprintf
@@ -637,17 +708,23 @@ PROPERTY *link_properties(struct recorder *rec, OBJECT *obj, char *property_list
return NULL;
}
- /* branch: test to see if we're trying to split up a complex property */
- /* must occur w/ *cpart=0 before gl_get_property in order to properly reformat the property name string */
+ // branch: test to see if we're trying to split up a complex property
+ // must occur w/ *cpart=0 before gl_get_property in order to properly reformat the property name string
cpart = strchr(item, '.');
- if(cpart != NULL){
- if(strcmp("imag", cpart+1) == 0){
+ if ( cpart != NULL )
+ {
+ if ( strcmp("imag", cpart+1) == 0 )
+ {
cid = (int)((int64)&(oblig.Im()) - (int64)&oblig);
*cpart = 0;
- } else if(strcmp("real", cpart+1) == 0){
+ }
+ else if ( strcmp("real", cpart+1) == 0 )
+ {
cid = (int)((int64)&(oblig.Re()) - (int64)&oblig);
*cpart = 0;
- } else {
+ }
+ else
+ {
;
}
}
@@ -671,24 +748,34 @@ PROPERTY *link_properties(struct recorder *rec, OBJECT *obj, char *property_list
return NULL;
}
- if(unit != NULL && target->unit == NULL){
+ if ( unit != NULL && target->unit == NULL )
+ {
gl_error("recorder:%d: property '%s' is unitless, ignoring unit conversion", obj->id, item);
}
- else if(unit != NULL && 0 == gl_convert_ex(target->unit, unit, &scale))
+ else if ( unit != NULL && 0 == gl_convert_ex(target->unit, unit, &scale) )
{
gl_error("recorder:%d: unable to convert property '%s' units to '%s'", obj->id, item, (char*)ustr);
free(list);
return NULL;
}
- if (first==NULL) first=prop; else last->next=prop;
+ if ( first == NULL )
+ {
+ first=prop;
+ }
+ else
+ {
+ last->next=prop;
+ }
last=prop;
memcpy((void*)prop,target,sizeof(PROPERTY));
prop->unit = unit;
- if(unit == NULL && rec->line_units == LU_ALL){
+ if ( unit == NULL && rec->line_units == LU_ALL )
+ {
prop->unit = target->unit;
}
prop->next = NULL;
- if(cid >= 0){ /* doing the complex part thing */
+ if ( cid >= 0 ) // doing the complex part thing
+ {
prop->ptype = PT_double;
(prop->addr) = (PROPERTYADDR)((int64)(prop->addr) + cid);
}
@@ -755,46 +842,63 @@ CDECL int read_properties(struct recorder *my, OBJECT *obj, PROPERTY *prop, char
{
case 'i':
case 'j':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%%+.%c%c%c%s%s",prec,type,prec,type,part,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Re(),value.Im());
sz = strlen(tmp);
break;
+
case 'r':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%%+.%c%c%c%s%s",prec,type,prec,type,part,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Mag(),value.Arg());
sz = strlen(tmp);
break;
+
case 'd':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%%+.%c%c%c%s%s",prec,type,prec,type,part,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Mag(),value.Ang());
sz = strlen(tmp);
break;
+
case 'M':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%s%s",prec,type,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Mag());
sz = strlen(tmp);
break;
+
case 'D':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%s%s",prec,type,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Ang());
sz = strlen(tmp);
break;
+
case 'R':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%s%s",prec,type,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Arg());
sz = strlen(tmp);
break;
+
case 'X':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%s%s",prec,type,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Re());
sz = strlen(tmp);
break;
+
case 'Y':
+
snprintf(fmt,sizeof(fmt)-1,"%%.%c%c%s%s",prec,type,unit_name?" ":"",unit_name?unit_name:"");
snprintf(tmp,sizeof(tmp)-1,fmt,value.Im());
sz = strlen(tmp);
break;
+
default:
+
gl_error("output format '%s' is not valid for a complex value",(const char*)my->output_format[fmt_count]);
return 0;
}
@@ -808,46 +912,54 @@ CDECL int read_properties(struct recorder *my, OBJECT *obj, PROPERTY *prop, char
else if ( p->ptype == PT_double )
{
double value;
- switch(my->line_units)
+ switch ( my->line_units )
{
- case LU_ALL:
- // cascade into 'default', as prop->unit should've been set, if there's a unit available.
- case LU_DEFAULT:
- sz = gl_get_value(obj,addr,tmp,sizeof(tmp)-1,p); /* pointer => int64 */
- break;
- case LU_NONE:
- // copy value into local value, use fake PROP, feed into gl_get_vaule
- value = *gl_get_double(obj, p);
- p2 = gl_get_property(obj, p->name,NULL);
- if ( p2 == 0 )
+ case LU_ALL:
+
+ // cascade into 'default', as prop->unit should've been set, if there's a unit available.
+
+ case LU_DEFAULT:
+
+ gl_get_value(obj,addr,tmp,sizeof(tmp)-1,p); // pointer => int64
+ sz = strlen(tmp); // not sure why the return value is wrong
+ break;
+
+ case LU_NONE:
+
+ // copy value into local value, use fake PROP, feed into gl_get_vaule
+ value = *gl_get_double(obj, p);
+ p2 = gl_get_property(obj, p->name,NULL);
+ if ( p2 == 0 )
+ {
+ gl_error("unable to locate %s.%s for LU_NONE", obj, p->name);
+ return 0;
+ }
+ if ( p->unit != 0 && p2->unit != 0 )
+ {
+ if ( gl_convert_ex(p2->unit, p->unit, &value) == 0 )
{
- gl_error("unable to locate %s.%s for LU_NONE", obj, p->name);
+ gl_error("unable to convert %s to %s for LU_NONE", p->unit, p2->unit);
return 0;
- }
- if ( p->unit != 0 && p2->unit != 0 )
- {
- if ( gl_convert_ex(p2->unit, p->unit, &value) == 0 )
- {
- gl_error("unable to convert %s to %s for LU_NONE", p->unit, p2->unit);
- return 0;
- }
- else
- { // converted
- sz = gl_get_value(obj,&value,tmp,sizeof(tmp)-1,&fake); /* pointer => int64 */;
- }
}
else
- {
- sz = gl_get_value(obj,addr,tmp,sizeof(tmp)-1,p); /* pointer => int64 */;
+ { // converted
+ sz = gl_get_value(obj,&value,tmp,sizeof(tmp)-1,&fake); // pointer => int64
}
- break;
- default:
- break;
+ }
+ else
+ {
+ sz = gl_get_value(obj,addr,tmp,sizeof(tmp)-1,p); // pointer => int64
+ }
+ break;
+
+ default:
+
+ break;
}
}
else
{
- sz = gl_get_value(obj,addr,tmp,sizeof(tmp)-1,p); /* pointer => int64 */
+ sz = gl_get_value(obj,addr,tmp,sizeof(tmp)-1,p); // pointer => int64
}
if ( count + sz >= size )
{
@@ -878,13 +990,14 @@ EXPORT TIMESTAMP sync_recorder(OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass)
COMPAREOP comparison;
char1024 buffer = "";
- if (my->status==TS_DONE)
+ if ( my->status == TS_DONE )
{
- close_recorder(my); /* note: potentially called every sync pass for multiple timesteps, catch fp==NULL in tape ops */
+ close_recorder(my); // note: potentially called every sync pass for multiple timesteps, catch fp==NULL in tape ops
return TS_NEVER;
}
- if(obj->parent == NULL){
+ if ( obj->parent == NULL )
+ {
char tb[32];
snprintf(buffer,sizeof(buffer)-1, "'%s' lacks a parent object", obj->name ? obj->name : (snprintf(tb,sizeof(tb)-1, "recorder:%i", obj->id),tb));
close_recorder(my);
@@ -892,17 +1005,18 @@ EXPORT TIMESTAMP sync_recorder(OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass)
goto Error;
}
- if(my->last.ts < 1 && my->interval != -1)
+ if ( my->last.ts < 1 && my->interval != -1 )
{
my->last.ts = t0;
my->last.ns = 0;
}
- /* connect to property */
- if (my->target==NULL){
+ // connect to property
+ if ( my->target == NULL )
+ {
my->target = link_properties(my, obj->parent, my->property);
}
- if (my->target==NULL)
+ if ( my->target == NULL )
{
snprintf(buffer,sizeof(buffer)-1,"'%s' contains a property of %s %d that is not found", my->property, obj->parent->oclass->name, obj->parent->id);
close_recorder(my);
@@ -915,21 +1029,24 @@ EXPORT TIMESTAMP sync_recorder(OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass)
{
obj->clock = t0;
// if the recorder is clock-based, write the value
- if((my->interval > 0) && (my->last.ts < t0) && (my->last.value[0] != 0)){
- if (my->last.ns == 0)
+ if ( (my->interval > 0) && (my->last.ts < t0) && (my->last.value[0] != 0) )
+ {
+ if ( my->last.ns == 0 )
{
recorder_write(obj);
my->last.value[0] = 0; // once it's been finalized, dump it
}
else //Just dump it, we already recorded this "timestamp"
+ {
my->last.value[0] = 0;
+ }
}
}
- /* update property value */
+ // update property value
if ( ( my->target != NULL ) && ( my->interval <= 0 ) )
{
- if(read_properties(my, obj->parent,my->target,buffer,sizeof(buffer))==0)
+ if ( read_properties(my, obj->parent,my->target,buffer,sizeof(buffer)) == 0 )
{
snprintf(buffer,sizeof(buffer)-1,"unable to read property '%s' of %s %d", my->property, obj->parent->oclass->name, obj->parent->id);
close_recorder(my);
@@ -938,8 +1055,9 @@ EXPORT TIMESTAMP sync_recorder(OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass)
}
else if ( ( my->target != NULL ) && ( my->interval > 0 ) )
{
- if((t0 >=my->last.ts + my->interval) || ((t0 == my->last.ts) && (my->last.ns == 0))){
- if(read_properties(my, obj->parent,my->target,buffer,sizeof(buffer))==0)
+ if ( (t0 >=my->last.ts + my->interval) || ((t0 == my->last.ts) && (my->last.ns == 0)) )
+ {
+ if ( read_properties(my, obj->parent,my->target,buffer,sizeof(buffer)) == 0 )
{
snprintf(buffer,sizeof(buffer)-1,"unable to read property '%s' of %s %d", my->property, obj->parent->oclass->name, obj->parent->id);
close_recorder(my);
@@ -950,55 +1068,58 @@ EXPORT TIMESTAMP sync_recorder(OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass)
}
}
- /* check trigger, if any */
+ // check trigger, if any
comparison = (COMPAREOP)my->trigger[0];
- if (comparison!=NONE)
+ if ( comparison != NONE )
{
int desired = comparison==LT ? -1 : (comparison==EQ ? 0 : (comparison==GT ? 1 : -2));
- /* if not trigger or can't get access */
+ // if not trigger or can't get access
int actual = strcmp(buffer,my->trigger+1);
- if (actual!=desired || (my->status==TS_INIT && !recorder_open(obj)))
+ if ( actual != desired
+ || ( my->status == TS_INIT && ! recorder_open(obj) ) )
{
- /* better luck next time */
- return (my->interval==0 || my->interval==-1) ? TS_NEVER : t0+my->interval;
+ // better luck next time
+ return ( my->interval == 0 || my->interval == -1 ) ? TS_NEVER : t0+my->interval;
}
}
- else if (my->status==TS_INIT && !recorder_open(obj))
+ else if ( my->status == TS_INIT && ! recorder_open(obj) )
{
close_recorder(my);
return TS_NEVER;
}
- if(my->last.ts < 1 && my->interval != -1)
+ if ( my->last.ts < 1 && my->interval != -1 )
{
my->last.ts = t0;
my->last.ns = 0;
}
- /* write tape */
- if (my->status==TS_OPEN)
+ // write tape
+ if ( my->status == TS_OPEN )
{
- if (my->interval==0 /* sample on every pass */
- || ((my->interval==-1) && my->last.ts!=t0 && strcmp(buffer,my->last.value)!=0) /* sample only when value changes */
+ if ( my->interval==0 // sample on every pass
+ || ( my->interval == -1 && my->last.ts != t0 && strcmp(buffer,my->last.value) != 0 ) // sample only when value changes
)
{
strncpy(my->last.value,buffer,sizeof(my->last.value));
- /* Deltamode-related check -- if we're ahead, don't overwrite this */
- if (my->last.ts < t0)
+ // Deltamode-related check -- if we're ahead, don't overwrite this
+ if ( my->last.ts < t0 )
{
my->last.ts = t0;
my->last.ns = 0;
recorder_write(obj);
}
- } else if ((my->interval > 0) && (my->last.ts == t0) && (my->last.ns == 0)){
+ }
+ else if ( my->interval > 0 && my->last.ts == t0 && my->last.ns == 0 )
+ {
strncpy(my->last.value,buffer,sizeof(my->last.value));
}
}
Error:
- if (my->status==TS_ERROR)
+ if ( my->status == TS_ERROR )
{
gl_error("recorder %d %s\n",obj->id, (char*)buffer);
close_recorder(my);
@@ -1014,4 +1135,4 @@ EXPORT TIMESTAMP sync_recorder(OBJECT *obj, TIMESTAMP t0, PASSCONFIG pass)
return my->last.ts+my->interval;
}
-/**@}*/
+/** @} */
diff --git a/module/tape/tape.vcproj b/module/tape/tape.vcproj
deleted file mode 100644
index 68941379c..000000000
--- a/module/tape/tape.vcproj
+++ /dev/null
@@ -1,616 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/tape_file/tape_file.vcproj b/module/tape_file/tape_file.vcproj
deleted file mode 100644
index 6f019f729..000000000
--- a/module/tape_file/tape_file.vcproj
+++ /dev/null
@@ -1,496 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/tape_memory/tape_memory.vcproj b/module/tape_memory/tape_memory.vcproj
deleted file mode 100644
index 0b9e8e5c4..000000000
--- a/module/tape_memory/tape_memory.vcproj
+++ /dev/null
@@ -1,496 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/module/tape_plot/tape_plot.vcproj b/module/tape_plot/tape_plot.vcproj
deleted file mode 100644
index 665acf0f5..000000000
--- a/module/tape_plot/tape_plot.vcproj
+++ /dev/null
@@ -1,500 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/python/Makefile.mk b/python/Makefile.mk
index b4dbcd9d9..918140fe3 100644
--- a/python/Makefile.mk
+++ b/python/Makefile.mk
@@ -1,7 +1,7 @@
PYTHONVERSION=$(shell python$(PYVER) $(top_srcdir)/python/setup.py --version)
PYPKG=$(PYENV)/lib/python$(PYVER)/site-packages/gridlabd
-$(top_srcdir)/python/dist/gridlabd-$(PYTHONVERSION).tar.gz: $(top_srcdir)/source/build.h | $(PYENV)
+$(top_srcdir)/python/dist/gridlabd-$(PYTHONVERSION).tar.gz: $(top_srcdir)/source/build.h $(wildcard $(top_srcdir)/source/*.cpp) | $(PYENV)
@echo "building gridlabd-$(PYTHONVERSION)..."
@rm -f $(PYPKG)-$(PYTHONVERSION)*.{whl,tar.gz}
@$(ENVPYTHON) -m pip install build
@@ -12,6 +12,8 @@ $(PYPKG)-$(PYTHONVERSION).tar.gz: $(top_srcdir)/python/dist/gridlabd-$(PYTHONVER
@cp $(top_srcdir)/python/dist/gridlabd-$(PYTHONVERSION)*.{tar.gz,whl} $(PYENV)/lib/python$(PYVER)/site-packages
python-install: $(PYPKG)-$(PYTHONVERSION).dist-info
+ @mkdir -p $(datadir)/$(PACKAGE)/
+ @cp $(PYPKG)-$(PYTHONVERSION)-*.whl $(datadir)/$(PACKAGE)/
$(PYPKG)-$(PYTHONVERSION).dist-info: $(PYPKG)-$(PYTHONVERSION).tar.gz
@echo "installing gridlabd-$(PYTHONVERSION)..."
@@ -27,3 +29,5 @@ python-uninstall:
@rm -rf $(PYPKG)*
BUILT_SOURCES += python-install
+
+pkginclude_HEADERS += $(wildcard $(top_srcdir)/python/*.h)
diff --git a/python/autotest/test_fast_accessor.glm b/python/autotest/test_fast_accessor.glm
index 4240f80c9..e292e7903 100644
--- a/python/autotest/test_fast_accessor.glm
+++ b/python/autotest/test_fast_accessor.glm
@@ -45,11 +45,10 @@ object test
value 6;
relation "==";
};
-// removed due to problem with set_bool()
-// object assert
-// {
-// target b;
-// value TRUE;
-// relation "==";
-// };
+ object assert
+ {
+ target b;
+ value TRUE;
+ relation "==";
+ };
}
diff --git a/python/autotest/test_fast_accessor.py b/python/autotest/test_fast_accessor.py
index 63302d7dc..56cd22896 100644
--- a/python/autotest/test_fast_accessor.py
+++ b/python/autotest/test_fast_accessor.py
@@ -16,8 +16,7 @@ def test_init(obj,t):
k = gridlabd.get_property(obj,"k")
gridlabd.set_int16(k,gridlabd.get_int16(k)+6)
- # TODO: this fails on linux because PyArg_ParseArgs("K") doesn't work if followed by "p"
- # b = gridlabd.get_property(obj,"b")
- # gridlabd.set_bool(b,True)
+ b = gridlabd.get_property(obj,"b")
+ gridlabd.set_bool(b,True)
return 0
diff --git a/python/python.cpp b/python/python.cpp
index 41272cc77..c0a9fc321 100644
--- a/python/python.cpp
+++ b/python/python.cpp
@@ -1672,14 +1672,14 @@ static PyObject *gridlabd_set_int16(PyObject *self, PyObject *args)
static PyObject *gridlabd_set_bool(PyObject *self, PyObject *args)
{
- bool *addr;
- bool value;
+ int *addr;
+ int value;
restore_environ();
if ( ! PyArg_ParseTuple(args, "Kp", &addr, &value) )
{
return NULL;
}
- bool old = *addr;
+ int old = *addr;
*addr = value;
if ( old )
Py_RETURN_TRUE;
diff --git a/python/requirements.csv b/python/requirements.csv
index 0b4680c31..222fe06b7 100644
--- a/python/requirements.csv
+++ b/python/requirements.csv
@@ -15,6 +15,7 @@ geopandas,,,0.12.2
geopy,,,2.1.0
github,,,
haversine,,,2.3.0
+imageio,,,2.31.5
ipinfo,,,4.2.1
ipykernel,,,5.5.5
ipyplot,,,1.1.1
@@ -47,4 +48,3 @@ timezonefinder,,,5.2.0
xlrd,2,,2.0.1
xlrd,,,2.0.1
wheel,3,,0.40.0
-
diff --git a/python/setup.py b/python/setup.py
index c2c66a8f5..8a1b98645 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -48,7 +48,7 @@
compile_options=['-Wall','-O3','-g']
compile_options.extend(['-I%s/source'%srcdir,'-I%s/python'%srcdir,'-I%s/runtime'%srcdir,'-I%s/source'%blddir,"-fPIC","-DHAVE_CONFIG_H","-DHAVE_PYTHON"])
-from distutils.core import setup, Extension
+from setuptools import setup, Extension
gridlabd = Extension('gridlabd',
include_dirs = list(map(lambda x: srcdir+'/'+x,['python','source'])),
extra_compile_args = compile_options,
@@ -108,6 +108,7 @@
'source/test.cpp',
'source/threadpool.cpp',
'source/timestamp.cpp',
+ 'source/tmpfile.cpp',
'source/transform.cpp',
'source/unit.cpp',
'source/validate.cpp',
@@ -162,8 +163,8 @@ def get_version(path=None):
setup (
name = 'gridlabd',
version = get_version(),
- description = 'HiPAS GridLAB-D',
+ description = 'Arras Energy',
author = 'SLAC Gismo',
author_email = 'gridlabd@gmail.com',
ext_modules = [gridlabd],
- url = "https://www.gridlabd.us/")
+ url = "https://arras.energy/")
diff --git a/runtime/gridlabd.h b/runtime/gridlabd.h
index 301cccd1b..bc1039519 100644
--- a/runtime/gridlabd.h
+++ b/runtime/gridlabd.h
@@ -1215,7 +1215,7 @@ typedef struct s_callbacks {
int (*set_dependent)(OBJECT*,OBJECT*);
int (*set_parent)(OBJECT*,OBJECT*);
int (*set_rank)(OBJECT*,unsigned int);
- const char *(*get_header_string)(OBJECT*,const char*,char*,size_t);
+ const char *(*get_header_string)(OBJECT*,const char*,char*,size_t,bool);
} object;
struct {
PROPERTY *(*get_property)(OBJECT*,PROPERTYNAME,PROPERTYSTRUCT*);
diff --git a/setup.sh b/setup.sh
index 145edefef..f3fadb1c9 100755
--- a/setup.sh
+++ b/setup.sh
@@ -25,11 +25,12 @@
##
STDOUT=/dev/stdout
STDERR=/dev/stderr
+DEFAULT_ORIGIN="https://github.com/arras-energy/gridlabd/master"
error () { echo "ERROR [setup.sh]: $*" > $STDERR ; exit 1; }
if [ -d $(dirname $0)/.git ]; then
- DEFAULT_ORIGIN=$(git remote get-url origin | sed -e 's|https://github.com/||' | sed -e 's|.git$||')/$(git rev-parse --abbrev-ref HEAD)
+ export GRIDLABD_ORIGIN="."
else
- DEFAULT_ORIGIN=arras-energy/gridlabd/master
+ export GRIDLABD_ORIGIN="$DEFAULT_ORIGIN"
fi
while [ $# -gt 0 ]; do
case "$1" in
@@ -49,6 +50,9 @@ while [ $# -gt 0 ]; do
--local)
export GRIDLABD_ORIGIN="."
;;
+ --remote)
+ export GRIDLABD_ORIGIN="$DEFAULT_ORIGIN"
+ ;;
*)
export GRIDLABD_ORIGIN="$1"
;;
@@ -57,12 +61,9 @@ while [ $# -gt 0 ]; do
done
export SYSTEMNAME=$(uname -s)
if [ "$GRIDLABD_ORIGIN" = "." ]; then
- sh setup/$SYSTEMNAME.sh 1>$STDOUT 2>$STDERR || error "setup failed"
+ sh $(dirname $0)/setup/$SYSTEMNAME.sh 1>$STDOUT 2>$STDERR || error "setup failed"
else
curl --version 1>/dev/null 2>&1 || error "you must install curl first"
- if [ -z "$GRIDLABD_ORIGIN" ] ; then
- export GRIDLABD_ORIGIN=$DEFAULT_ORIGIN
- fi
test "$(echo $GRIDLABD_ORIGIN | cut -c-8)" != "https://" && GRIDLABD_ORIGIN=https://raw.githubusercontent.com/$GRIDLABD_ORIGIN
echo GRIDLABD_ORIGIN=$GRIDLABD_ORIGIN
if curl -H 'Cache-Control: no-cache' -fsL $GRIDLABD_ORIGIN/setup/$SYSTEMNAME.sh > /tmp/setup_$$.sh ; then
@@ -71,4 +72,4 @@ else
else
error "unable to find $GRIDLABD_ORIGIN/setup/$SYSTEMNAME.sh. Manual setup required."
fi
-fi
\ No newline at end of file
+fi
diff --git a/setup/darwin_20.sh b/setup/darwin_20.sh
index 1ccf74cdb..3be1535ce 100644
--- a/setup/darwin_20.sh
+++ b/setup/darwin_20.sh
@@ -23,10 +23,6 @@ if ! python$PYTHON_VERSION -m venv -h 1>/dev/null 2>&1 ; then
INSTALL brew install python$PYTHON_VERSION-venv
python$PYTHON_VERSION -m venv -h >/dev/null || error "unable to install python$PYTHON_VERSION-venv"
fi
-if ! python$PYTHON_VERSION -m distutils.core 1>/dev/null 2>&1 ; then
- INSTALL brew install python$PYTHON_VERSION-distutils
- python$PYTHON_VERSION -m distutils.core >/dev/null || error "unable to install python$PYTHON_VERSION-distutils"
-fi
# create python venv for setup if not already done
if [ ! -x "$PYTHON_EXEC" ] ; then
@@ -62,6 +58,15 @@ clang -v >/dev/null || error "you have not installed clang. Use 'xcode-select --
# # update library paths
# INSTALL ldconfig
+# install mysql
+if ! mysql_config --libs >/dev/null 2>&1 ; then
+ printf "Installing MySQL... "
+ brew install mysql
+ if ! mysql_config --libs >/dev/null 2>&1 ; then
+ error "Failed to install MySQL with Homebrew."
+ fi
+fi
+
# install autoconf 2.71 as required
if [ "$(autoconf --version | head -n 1 | cut -f4 -d' ')" != "2.71" ] ; then
(cd /tmp ; curl -sL https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.gz | tar xz )
diff --git a/setup/darwin_21.sh b/setup/darwin_21.sh
index 2f3280761..300a552d9 100644
--- a/setup/darwin_21.sh
+++ b/setup/darwin_21.sh
@@ -23,10 +23,6 @@ if ! python$PYTHON_VERSION -m venv -h 1>/dev/null 2>&1 ; then
INSTALL brew install python$PYTHON_VERSION-venv
python$PYTHON_VERSION -m venv -h >/dev/null || error "unable to install python$PYTHON_VERSION-venv"
fi
-if ! python$PYTHON_VERSION -m distutils.core 1>/dev/null 2>&1 ; then
- INSTALL brew install python$PYTHON_VERSION-distutils
- python$PYTHON_VERSION -m distutils.core >/dev/null || error "unable to install python$PYTHON_VERSION-distutils"
-fi
# create python venv for setup if not already done
if [ ! -x "$PYTHON_EXEC" ] ; then
@@ -62,6 +58,15 @@ clang -v >/dev/null || error "you have not installed clang. Use 'xcode-select --
# # update library paths
# INSTALL ldconfig
+# install mysql
+if ! mysql_config --libs >/dev/null 2>&1 ; then
+ printf "Installing MySQL... "
+ brew install mysql
+ if ! mysql_config --libs >/dev/null 2>&1 ; then
+ error "Failed to install MySQL with Homebrew."
+ fi
+fi
+
# install autoconf 2.71 as required
if [ "$(autoconf --version | head -n 1 | cut -f4 -d' ')" != "2.71" ] ; then
(cd /tmp ; curl -sL https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.gz | tar xz )
diff --git a/setup/darwin_22.sh b/setup/darwin_22.sh
index 44cc6e8d7..c2c7ea6c1 100644
--- a/setup/darwin_22.sh
+++ b/setup/darwin_22.sh
@@ -23,10 +23,6 @@ if ! python$PYTHON_VERSION -m venv -h 1>/dev/null 2>&1 ; then
INSTALL brew install python$PYTHON_VERSION-venv
python$PYTHON_VERSION -m venv -h >/dev/null || error "unable to install python$PYTHON_VERSION-venv"
fi
-if ! python$PYTHON_VERSION -m distutils.core 1>/dev/null 2>&1 ; then
- INSTALL brew install python$PYTHON_VERSION-distutils
- python$PYTHON_VERSION -m distutils.core >/dev/null || error "unable to install python$PYTHON_VERSION-distutils"
-fi
# create python venv for setup if not already done
if [ ! -x "$PYTHON_EXEC" ] ; then
@@ -62,6 +58,15 @@ clang -v >/dev/null || error "you have not installed clang. Use 'xcode-select --
# # update library paths
# INSTALL ldconfig
+# install mysql
+if ! mysql_config --libs >/dev/null 2>&1 ; then
+ printf "Installing MySQL... "
+ brew install mysql
+ if ! mysql_config --libs >/dev/null 2>&1 ; then
+ error "Failed to install MySQL with Homebrew."
+ fi
+fi
+
# install autoconf 2.71 as required
if [ "$(autoconf --version | head -n 1 | cut -f4 -d' ')" != "2.71" ] ; then
(cd /tmp ; curl -sL https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.gz | tar xz )
diff --git a/setup/ubuntu_20.sh b/setup/ubuntu_20.sh
index 2f1929472..9f8b384a0 100644
--- a/setup/ubuntu_20.sh
+++ b/setup/ubuntu_20.sh
@@ -26,7 +26,7 @@ if ! python$PYTHON_VERSION --version 1>/dev/null 2>&1 ; then
python$PYTHON_VERSION --version || error "python$PYTHON_VERSION installation failed"
fi
INSTALL apt-get install python$PYTHON_VERSION-venv -y
-apt-get install python$PYTHON_VERSION-distutils -y
+apt-get install python$PYTHON_VERSION-setuptools -y
# create python venv for setup if not already done
if [ ! -x "$PYTHON_EXEC" ] ; then
@@ -57,14 +57,18 @@ fi
INSTALL "$PYTHON_EXEC" -m pip install --upgrade pip || error "pip update failed"
# install required libraries
-INSTALL apt-get install build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5-dev liblzma-dev libbz2-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev -y
+INSTALL apt-get install build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5-dev liblzma-dev libbz2-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libmysqlclient-dev mysql-server -y
# install required tools
-INSTALL apt-get install git unzip libtool g++ cmake flex bison subversion util-linux xz-utils wget -y
+INSTALL apt-get install git unzip libtool libtool-bin mdbtools g++ cmake flex bison subversion util-linux xz-utils wget -y
# update library paths
INSTALL ldconfig
+# symlink mysql files
+ln -s /usr/include/mysql /usr/local/include/mysql
+ln -s /usr/lib/aarch64-linux-gnu/libmysqlclient.a /usr/local/lib/libmysqlclient.a
+
# install autoconf 2.71 as required
if [ "$(autoconf --version | head -n 1 | cut -f4 -d' ')" != "2.71" ] ; then
(cd /tmp ; curl -sL https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.gz | tar xz )
diff --git a/setup/ubuntu_22.sh b/setup/ubuntu_22.sh
index d472c7b2d..5d8146160 100644
--- a/setup/ubuntu_22.sh
+++ b/setup/ubuntu_22.sh
@@ -26,7 +26,7 @@ if ! python$PYTHON_VERSION --version 1>/dev/null 2>&1 ; then
python$PYTHON_VERSION --version || error "python$PYTHON_VERSION installation failed"
fi
INSTALL apt-get install python$PYTHON_VERSION-venv -y
-apt-get install python$PYTHON_VERSION-distutils -y
+python$PYTHON_VERSION -m pip install setuptools
# create python venv for setup if not already done
if [ ! -x "$PYTHON_EXEC" ] ; then
@@ -57,14 +57,18 @@ fi
INSTALL "$PYTHON_EXEC" -m pip install --upgrade pip || error "pip update failed"
# install required libraries
-INSTALL apt-get install build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5-dev liblzma-dev libbz2-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev -y
+INSTALL apt-get install build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5-dev liblzma-dev libbz2-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libmysqlclient-dev mysql-server -y
# install required tools
-INSTALL apt-get install git unzip libtool g++ cmake flex bison subversion util-linux xz-utils wget -y
+INSTALL apt-get install git unzip libtool libtool-bin mdbtools g++ cmake flex bison subversion util-linux xz-utils wget -y
# update library paths
INSTALL ldconfig
+# symlink mysql files
+ln -s /usr/include/mysql /usr/local/include/mysql
+ln -s /usr/lib/aarch64-linux-gnu/libmysqlclient.a /usr/local/lib/libmysqlclient.a
+
# install autoconf 2.71 as required
if [ "$(autoconf --version | head -n 1 | cut -f4 -d' ')" != "2.71" ] ; then
(cd /tmp ; curl -sL https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.gz | tar xz )
diff --git a/source/Makefile.mk b/source/Makefile.mk
index 5e53956b0..e2aa8fe60 100644
--- a/source/Makefile.mk
+++ b/source/Makefile.mk
@@ -33,8 +33,8 @@ gridlabd_bin_SOURCES += source/json.cpp source/json.h
gridlabd_bin_SOURCES += source/kill.cpp source/kill.h
gridlabd_bin_SOURCES += source/kml.cpp source/kml.h
gridlabd_bin_SOURCES += source/legal.cpp source/legal.h
-gridlabd_bin_SOURCES += source/linkage.cpp source/linkage.h
gridlabd_bin_SOURCES += source/link.cpp source/link.h
+gridlabd_bin_SOURCES += source/linkage.cpp source/linkage.h
gridlabd_bin_SOURCES += source/list.cpp source/list.h
gridlabd_bin_SOURCES += source/load.cpp source/load.h
gridlabd_bin_SOURCES += source/loadshape.cpp source/loadshape.h
@@ -62,6 +62,7 @@ gridlabd_bin_SOURCES += source/stream_type.h
gridlabd_bin_SOURCES += source/test.cpp source/test.h
gridlabd_bin_SOURCES += source/threadpool.cpp source/threadpool.h
gridlabd_bin_SOURCES += source/timestamp.cpp source/timestamp.h
+gridlabd_bin_SOURCES += source/tmpfile.cpp source/tmpfile.h
gridlabd_bin_SOURCES += source/transform.cpp source/transform.h
gridlabd_bin_SOURCES += source/unit.cpp source/unit.h
gridlabd_bin_SOURCES += source/validate.cpp source/validate.h
@@ -94,21 +95,7 @@ gridlabd_bin_SOURCES += $(top_srcdir)/source/build.h
BUILT_SOURCES += $(top_srcdir)/source/build.h
CLEANFILES += $(top_srcdir)/source/build.h origin.txt
-pkginclude_HEADERS =
-pkginclude_HEADERS += $(top_srcdir)/source/build.h
-pkginclude_HEADERS += source/class.h
-pkginclude_HEADERS += source/complex.h
-pkginclude_HEADERS += source/debug.h
-pkginclude_HEADERS += source/enduse.h
-pkginclude_HEADERS += source/exception.h
-pkginclude_HEADERS += source/loadshape.h
-pkginclude_HEADERS += source/lock.h
-pkginclude_HEADERS += source/module.h
-pkginclude_HEADERS += source/object.h
-pkginclude_HEADERS += source/property.h
-pkginclude_HEADERS += source/schedule.h
-pkginclude_HEADERS += source/test.h
-pkginclude_HEADERS += source/version.h
+pkginclude_HEADERS += $(wildcard $(top_srcdir)/source/*.h)
gridlabddir = $(prefix)/share/gridlabd
gridlabd_DATA = origin.txt
diff --git a/source/autotest/test_include_subcommand.glm b/source/autotest/test_include_subcommand.glm
new file mode 100644
index 000000000..8000a96c5
--- /dev/null
+++ b/source/autotest/test_include_subcommand.glm
@@ -0,0 +1,21 @@
+#ifexist ../test_include_subcommand.txt
+#define DIR=..
+#endif
+
+#option verbose
+
+#include (cat ${DIR:-.}/test_include_subcommand.txt)
+
+module assert;
+
+object test
+{
+ x 12;
+ z 12+2j;
+ object assert {
+ status TRUE;
+ target x;
+ relation ==;
+ value 12;
+ };
+}
diff --git a/source/autotest/test_include_subcommand.txt b/source/autotest/test_include_subcommand.txt
new file mode 100644
index 000000000..8062d33c5
--- /dev/null
+++ b/source/autotest/test_include_subcommand.txt
@@ -0,0 +1,5 @@
+class test
+{
+ double x;
+ complex z;
+}
diff --git a/source/autotest/test_inline_global_replacement.glm b/source/autotest/test_inline_global_replacement.glm
new file mode 100644
index 000000000..978b14a49
--- /dev/null
+++ b/source/autotest/test_inline_global_replacement.glm
@@ -0,0 +1,4 @@
+// verify that issue #32 is fixed
+#if "${modelname/.csv/.json}" != "${modelname}"
+#error Global replacement failed
+#endif
diff --git a/source/cmdarg.cpp b/source/cmdarg.cpp
index 873cbfb54..4ae9ab997 100644
--- a/source/cmdarg.cpp
+++ b/source/cmdarg.cpp
@@ -1730,7 +1730,7 @@ int GldCmdarg::info(int argc, const char *argv[])
snprintf(cmd,sizeof(cmd)-1,"%s \"%s%s\" & ps -p $! >/dev/null", global_browser, global_infourl, argv[1]);
#endif
IN_MYCONTEXT output_verbose("Starting browser using command [%s]", cmd);
- if (my_instance->subcommand(cmd)!=0)
+ if (my_instance->subcommand("%s",cmd)!=0)
{
output_error("unable to start browser");
return CMDERR;
@@ -2080,7 +2080,7 @@ DEPRECATED static int printenv(void *main, int argc, const char *argv[])
}
int GldCmdarg::printenv(int argc, const char *argv[])
{
- return my_instance->subcommand("printenv") == 0 ? 0 : CMDERR;
+ return my_instance->subcommand("%s","printenv") == 0 ? 0 : CMDERR;
}
DEPRECATED static int formats(void *main, int argc, const char *argv[])
@@ -2357,6 +2357,24 @@ DEPRECATED static int csvloadshape(void *main, int argc, const char *argv[])
return argc;
}
+DEPRECATED static int module(void *main, int argc, const char *argv[])
+{
+ if ( argc < 2 )
+ {
+ output_error("missing module name");
+ return CMDERR;
+ }
+ else if ( module_load(argv[1],0,NULL) == NULL )
+ {
+ output_error("module '%s' load failed",argv[0]);
+ return CMDERR;
+ }
+ else
+ {
+ return 1;
+ }
+}
+
/*********************************************/
/* ADD NEW CMDARG PROCESSORS ABOVE THIS HERE */
/* Then make the appropriate entry in the */
@@ -2383,6 +2401,7 @@ DEPRECATED static CMDARG main_commands[] = {
{"warn", "w", warn, NULL, "Toggles display of warning messages" },
{"workdir", "W", workdir, NULL, "Sets the working directory" },
{"rusage", NULL, rusage, NULL, "Collect resource usage statistics" },
+ {"module", "M", module, "", "Load a module" },
{NULL,NULL,NULL,NULL, "Global, environment and module information"},
{"define", "D", define, "=[:]", "Defines or sets a global (or module) variable" },
diff --git a/source/convert.cpp b/source/convert.cpp
index 66d369fef..fc25caf60 100644
--- a/source/convert.cpp
+++ b/source/convert.cpp
@@ -93,8 +93,7 @@ int convert_from_double(char *buffer, /**< pointer to the string buffer */
int count = strlen(temp);
if ( prop->unit )
{
- snprintf(temp+count,sizeof(temp)-count-1," %s",prop->unit->name);
- count += strlen(temp);
+ count += snprintf(temp+count,sizeof(temp)-count-1," %s",prop->unit->name);
}
if ( size == 0 )
diff --git a/source/gldcore.h b/source/gldcore.h
index ae9f564ee..db4d0bba2 100644
--- a/source/gldcore.h
+++ b/source/gldcore.h
@@ -11,7 +11,9 @@
#include
#include
#include
+#include
#include
+#include
#include
#include
#include
@@ -25,6 +27,8 @@
#include
#include
#include
+#include
+#include
#include
#include
#include
@@ -32,12 +36,8 @@
#include
#include
#include
-#include
-#include
-
-#include
-#include
#include
+#include
#include "gld_sock.h"
@@ -134,6 +134,7 @@ typedef enum e_status {FAILED=FALSE, SUCCESS=TRUE} STATUS;
#include "test.h"
#include "threadpool.h"
#include "timestamp.h"
+#include "tmpfile.h"
#include "transform.h"
#include "ufile.h"
#include "unit.h"
diff --git a/source/globals.cpp b/source/globals.cpp
index c9309339e..f1095fdaf 100644
--- a/source/globals.cpp
+++ b/source/globals.cpp
@@ -333,12 +333,26 @@ void pythonpath_init(const char *name,const char *value)
const char * pythonpath = getenv("PYTHONPATH");
if ( pythonpath != NULL )
{
- int len = snprintf(global_pythonpath,sizeof(global_pythonpath)-1,"%.*s",(int)sizeof(global_pythonpath)-2,value);
- snprintf(global_pythonpath+len,sizeof(global_pythonpath)-1-len,":%.*s",(int)(sizeof(global_pythonpath)-2),pythonpath);
+ if ( value != NULL )
+ {
+ int len = snprintf(global_pythonpath,sizeof(global_pythonpath)-1,"%.*s",(int)sizeof(global_pythonpath)-2,value);
+ snprintf(global_pythonpath+len,sizeof(global_pythonpath)-1-len,":%.*s",(int)(sizeof(global_pythonpath)-2),pythonpath);
+ }
+ else
+ {
+ snprintf(global_pythonpath,sizeof(global_pythonpath)-1,"%.*s",(int)sizeof(global_pythonpath)-2,pythonpath);
+ }
}
else
{
- snprintf(global_pythonpath,sizeof(global_pythonpath)-1,"%.*s",(int)sizeof(global_pythonpath)-2,value);
+ if ( value != NULL )
+ {
+ snprintf(global_pythonpath,sizeof(global_pythonpath)-1,"%.*s",(int)sizeof(global_pythonpath)-2,value);
+ }
+ else
+ {
+ snprintf(global_pythonpath,sizeof(global_pythonpath)-1,"%s","");
+ }
}
}
/* Add more derivative directories here */
@@ -515,6 +529,7 @@ DEPRECATED static struct s_varmap {
{"organization",PT_char32, &global_organization,PA_PUBLIC,"organization name"},
{"profile_output_format",PT_set,&global_profile_output_format,PA_PUBLIC,"profiler output data format"},
{"maximum_runtime",PT_int64,&global_maximum_runtime,PA_PUBLIC,"maximum wall clock runtime allowed"},
+ {"flush_output",PT_int32,&global_flush_output,PA_PUBLIC,"flush output buffers continuously"},
/* add new global variables here */
};
@@ -1005,13 +1020,13 @@ DEPRECATED const char *global_run(char *buffer, int size)
else
return NULL;
}
-DEPRECATED const char *global_now(char *buffer, int size)
+DEPRECATED const char *global_now(char *buffer, int size,const char *format="%Y%m%d-%H%M%S")
{
if ( size>32 )
{
time_t now = time(NULL);
struct tm *tmbuf = gmtime(&now);
- strftime(buffer,size,"%Y%m%d-%H%M%S",tmbuf);
+ strftime(buffer,size,format,tmbuf);
return buffer;
}
else
@@ -1263,11 +1278,11 @@ bool GldGlobals::parameter_expansion(char *buffer, size_t size, const char *spec
size_t start;
if ( global_getvar(name,temp,sizeof(temp)-1)==NULL )
return 0;
- strcpy(buffer,"");
+ strcpy(buffer,temp);
while ( true )
{
ptr = strstr(temp,pattern);
- if ( ptr==NULL )
+ if ( ptr == NULL )
break;
start = ptr - temp;
strncpy(buffer,temp,size);
@@ -1285,9 +1300,9 @@ bool GldGlobals::parameter_expansion(char *buffer, size_t size, const char *spec
size_t start;
if ( global_getvar(name,temp,sizeof(temp)-1)==NULL )
return 0;
- strcpy(buffer,"");
+ strcpy(buffer,temp);
ptr = strstr(temp,pattern);
- if ( ptr!=NULL )
+ if ( ptr != NULL )
{
start = ptr - temp;
strncpy(buffer,temp,size);
@@ -1764,6 +1779,12 @@ DEPRECATED const char *global_geocode(char *buffer, int size, const char *spec)
return buffer;
}
+DEPRECATED const char *global_pid(char *buffer, int size)
+{
+ snprintf(buffer,size-1,"%d",getpid());
+ return buffer;
+}
+
/** Get the value of a global variable in a safer fashion
@return a \e char * pointer to the buffer holding the buffer where we wrote the data,
\p NULL if insufficient buffer space or if the \p name was not found.
@@ -1780,7 +1801,6 @@ const char *GldGlobals::getvar(const char *name, char *buffer, size_t size)
const char *(*call)(char *buffer,int size);
} map[] = {
{"GUID",global_guid},
- {"NOW",global_now},
{"TODAY",global_today},
{"RUN",global_run},
{"URAND",global_urand},
@@ -1801,6 +1821,7 @@ const char *GldGlobals::getvar(const char *name, char *buffer, size_t size)
{"MYSQL",global_true},
#endif
{"PYTHON",global_true},
+ {"PID",global_pid},
};
size_t i;
if(buffer == NULL){
@@ -1855,15 +1876,43 @@ const char *GldGlobals::getvar(const char *name, char *buffer, size_t size)
if ( strncmp(name,"FILETYPE ",9) == 0 )
return global_filetype(buffer,size,name+9);
- if ( strncmp(name,"FIND ",5) == 0 )
- {
- return global_findobj(buffer,size,name+5);
- }
- if ( strncmp(name,"GEOCODE ",8) == 0 )
- {
- return global_geocode(buffer,size,name+8);
- }
- /* expansions */
+ if ( strncmp(name,"FIND ",5) == 0 )
+ {
+ return global_findobj(buffer,size,name+5);
+ }
+ if ( strncmp(name,"GEOCODE ",8) == 0 )
+ {
+ return global_geocode(buffer,size,name+8);
+ }
+ if ( strncmp(name,"TMPFILE",7) == 0 )
+ {
+ if ( strcmp(name,"TMPFILE") == 0 )
+ {
+ char tag[64];
+ snprintf(tag,sizeof(tag)-1,"%x%x%x%x",rand(),rand(),rand(),rand());
+ tmpfile_get(buffer,size,tag);
+ return buffer;
+ }
+ else if ( strncmp(name,"TMPFILE ",8) == 0 )
+ {
+ while ( isspace(name[8]) ) name++;
+ tmpfile_get(buffer,size,name+8);
+ return buffer;
+ }
+ }
+ if ( strncmp(name,"NOW",3) == 0 )
+ {
+ if ( strcmp(name,"NOW") == 0 )
+ {
+ return global_now(buffer,size);
+ }
+ else if ( strncmp(name,"NOW ",4) == 0 )
+ {
+ return global_now(buffer,size,name+4);
+ }
+ }
+
+ /* expansions */
if ( parameter_expansion(buffer,size,name) )
return buffer;
diff --git a/source/globals.h b/source/globals.h
index 2b5e62a13..7b7e2bb48 100644
--- a/source/globals.h
+++ b/source/globals.h
@@ -856,8 +856,12 @@ GLOBAL int64 global_rusage_rate INIT(0);
/* Variable: global_rusage_file */
GLOBAL char1024 global_rusage_file INIT("gridlabd-rusage.csv");
+/* Variable: global_rusage_data */
GLOBAL char1024 global_rusage_data INIT("{}");
+/* Variable: global_flush_output */
+GLOBAL int32 global_flush_output INIT(0);
+
/* Type: PROFILEOUTPUTFORMAT */
typedef enum
{
diff --git a/source/gridlabd.h b/source/gridlabd.h
index a3bb96547..35d057117 100644
--- a/source/gridlabd.h
+++ b/source/gridlabd.h
@@ -2831,7 +2831,7 @@ class gld_object
inline uint64 get_flags(uint64 mask=0xffffffffffffffff) { return (my()->flags)&mask; };
// Method: get_header_string
- inline const char *get_header_string(const char *item, char *buffer=NULL, size_t len=0) { return callback->object.get_header_string(my(),item,buffer,len); };
+ inline const char *get_header_string(const char *item, char *buffer=NULL, size_t len=0, bool quiet=false) { return callback->object.get_header_string(my(),item,buffer,len,quiet); };
protected:
diff --git a/source/gridlabd.in b/source/gridlabd.in
index 18cfecd59..086d7bb57 100644
--- a/source/gridlabd.in
+++ b/source/gridlabd.in
@@ -265,7 +265,7 @@ as_nop=as_fn_nop
## -------------------- ##
-REALPATH=$(python3 -c 'import os, sys; print(os.path.realpath(sys.argv[1]))' $0);
+REALPATH=$(python3 -c 'import os, sys; print(os.path.realpath(sys.argv[1]))' $0);
export GLD_BIN=$(dirname $REALPATH)
PREFIX=$(dirname $GLD_BIN)
export GLD_ETC=$PREFIX/share/gridlabd
@@ -390,6 +390,11 @@ then :
. ${GLD_ETC}/gridlabd.rc
fi
+if test "x$1" = "xshell"
+then :
+ shift 1; $SHELL $@; exit $?
+fi
+
if test -f "${GLD_ETC}/$1.py"
then :
export PYTHONPATH=$GLD_ETC; python3 -m "$@" ; exit $?
diff --git a/source/gridlabd.m4sh b/source/gridlabd.m4sh
index ccc737a6b..d634b763c 100644
--- a/source/gridlabd.m4sh
+++ b/source/gridlabd.m4sh
@@ -1,7 +1,7 @@
dnl run "autom4te -l m4sh gridlabd.m4sh > gridlabd.in"
AS_INIT
-REALPATH=$(python3 -c 'import os, sys; print(os.path.realpath(sys.argv[1]))' $0);
+REALPATH=$(python3 -c 'import os, sys; print(os.path.realpath(sys.argv[[1]]))' $0);
export GLD_BIN=$(dirname $REALPATH)
PREFIX=$(dirname $GLD_BIN)
export GLD_ETC=$PREFIX/share/gridlabd
@@ -78,10 +78,12 @@ fi
###############################################################################
# Python Configuration Data and Flags
###############################################################################
+PY_OS="$(uname -s)"
+
. $GLD_BIN/activate
export PYTHON_VER=$(python3 --version | cut -f2 -d' ' | cut -f1-2 -d.)
-export PYTHON_CONFIG="$GLD_BIN/activate/python$PYTHON_VER-config"
+export PYTHON_CONFIG="python$PYTHON_VER-config"
export PYCCFLAGS="$($PYTHON_CONFIG --cflags)"
export INCLUDE="-I$GLD_ETC -I$GLD_VER/include -I/usr/include"
export CFLAGS="${INCLUDE} ${PYCCFLAGS} ${CFLAGS}"
@@ -120,6 +122,10 @@ AS_IF([test -f "${GLD_ETC}/gridlabd.rc"],
[. ${GLD_ETC}/gridlabd.rc],
[])
+AS_IF([test "x$1" = "xshell"],
+ [shift 1; $SHELL $@; exit $?],
+ [])
+
AS_IF([test -f "${GLD_ETC}/$1.py"],
[export PYTHONPATH=$GLD_ETC; python3 -m "$@" ; exit $?],
[])
diff --git a/source/load.cpp b/source/load.cpp
index 3a19ffa63..5154023b3 100755
--- a/source/load.cpp
+++ b/source/load.cpp
@@ -312,7 +312,7 @@ STATUS GldLoader::exec(const char *format,...)
vsnprintf(cmd,sizeof(cmd)-1,format,ptr);
va_end(ptr);
IN_MYCONTEXT output_debug("Running '%s' in '%s'", cmd, getcwd(NULL,0));
- int rc = my_instance->subcommand(cmd);
+ int rc = my_instance->subcommand("%s",cmd);
if ( rc != 0 )
{
output_error("command [%s] failed, rc=%d",cmd,rc);
@@ -6732,7 +6732,15 @@ bool GldLoader::for_capture(const char *line)
{
IN_MYCONTEXT output_verbose("capturing forloop body line %d as '%s'", forbuffer.size(), line);
}
- forbuffer.push_back(std::string(line));
+ const char *comment = strstr(line,"//");
+ if ( comment == NULL )
+ {
+ forbuffer.push_back(std::string(line));
+ }
+ else if ( comment > line )
+ {
+ forbuffer.push_back(std::string(line).substr(0,(size_t)(comment-line)));
+ }
forbufferline = forbuffer.end();
return true;
}
@@ -7341,11 +7349,11 @@ int writefile(char *fname, char *specs)
case CSV:
if ( obj->name )
{
- fprintf(fp,"%d,%s,\"%s\"",obj->id,obj->oclass->name,obj->name);
+ fprintf(fp,"%d,\"%s\",\"%s\"",obj->id,obj->oclass->name,obj->name);
}
else
{
- fprintf(fp,"%d,%s,\"%s:%d\"",obj->id,obj->oclass->name,obj->oclass->name,obj->id);
+ fprintf(fp,"%d,\"%s\",\"%s:%d\"",obj->id,obj->oclass->name,obj->oclass->name,obj->id);
}
break;
case JSON:
@@ -7370,7 +7378,8 @@ int writefile(char *fname, char *specs)
for ( size_t n = 0 ; n < n_props ; n++ )
{
char value[1024] = "";
- if ( object_get_value_by_name(obj,proplist[n],value,sizeof(value)-1) < 0 )
+ bool is_header_value = ( object_get_header_string(obj,proplist[n],value,sizeof(value)-1,true) != NULL );
+ if ( ! is_header_value && object_get_value_by_name(obj,proplist[n],value,sizeof(value)-1) < 0 )
{
output_warning("writefile(char *fname='%s', char *specs='%s'): unable to get value for property '%s' object '%s:%d'",fname,specs,proplist[n],obj->oclass->name,obj->id);
}
@@ -7383,16 +7392,20 @@ int writefile(char *fname, char *specs)
fprintf(fp,",%s%s%s",quote,value,quote);
break;
case JSON:
- if ( object_get_property(obj,proplist[n],NULL) )
+ if ( is_header_value || object_get_property(obj,proplist[n],NULL) )
{
// only output properties that exist
fprintf(fp,",\n\t\t\"%s\" : \"%s\"",proplist[n],value);
+ }
+ else
+ {
+ output_warning("property '%s' does not exist in class '%s'",proplist[n],obj->oclass->name);
}
break;
case GLM:
- if ( ! object_get_property(obj,proplist[n],NULL) )
+ if ( ! is_header_value || ! object_get_property(obj,proplist[n],NULL) )
{
- // output nothing
+ output_warning("property '%s' does not exist in class '%s'",proplist[n],obj->oclass->name);
}
else if ( obj->name == NULL )
{
@@ -7785,10 +7798,16 @@ int GldLoader::process_macro(char *line, int size, char *_filename, int linenum)
else if (sscanf(term, "(%[^)])", value) == 1)
{
/* C include file */
- IN_MYCONTEXT output_verbose("executing include shell \"%s\"", value);
- my_instance->subcommand("%s",value);
- // TODO: insert stdout here
- strcpy(line,"\n");
+ IN_MYCONTEXT output_verbose("%s(%d): executing include shell command [%s]", filename, linenum, value);
+ FILE *out = NULL, *err = NULL;
+ struct s_pipes *pipes = popens(value, NULL, &out, &err);
+ if ( pipes == NULL )
+ {
+ output_error("process_macro(char *line, int size=%d, char *_filename='%s', int linenum=%d): unable to create pipes",size,_filename,linenum);
+ return FALSE;
+ }
+ ppolls(pipes,line,size-1,output_get_stream("error"));
+ pcloses(pipes);
return TRUE;
}
else
@@ -8032,7 +8051,7 @@ int GldLoader::process_macro(char *line, int size, char *_filename, int linenum)
}
strcpy(value, strip_right_white(term+1));
IN_MYCONTEXT output_debug("%s(%d): executing system(char *cmd='%s')", filename, linenum, value);
- int rc = my_instance->subcommand(value);
+ int rc = my_instance->subcommand("%s",value);
if( rc == 127 || rc == -1 )
{
syntax_error(filename,linenum,"#system %s -- system('%s') failed with status %d", value, value, global_return_code);
@@ -8341,7 +8360,7 @@ int GldLoader::process_macro(char *line, int size, char *_filename, int linenum)
strcpy(line,"\n");
return TRUE;
}
- int rc = my_instance->subcommand("%s/" PACKAGE "-%s",global_execdir,strchr(line,'#')+1);
+ int rc = my_instance->subcommand("%s/" PACKAGE "-%s",getenv("GLD_BIN"),strchr(line,'#')+1);
if ( rc != 127 )
{
strcpy(line,"\n");
@@ -8546,10 +8565,14 @@ bool GldLoader::load_import(const char *from, char *to, int len)
}
strcpy(to,from);
char *glmext = strrchr(to,'.');
- if ( glmext == NULL )
+ if ( glmext == NULL || (unsigned long long)glmext < (unsigned long long)strrchr(to,'/') )
+ {
strcat(to,".glm");
+ }
else
+ {
strcpy(glmext,".glm");
+ }
char load_options[1024] = "";
char load_options_var[64];
snprintf(load_options_var,sizeof(load_options_var)-1,"%s_load_options",ext);
@@ -8577,7 +8600,7 @@ bool GldLoader::load_import(const char *from, char *to, int len)
}
IN_MYCONTEXT output_verbose("changing output to '%s'", to);
}
- int rc = my_instance->subcommand("%s %s -i %s -o %s %s",(const char*)global_pythonexec,converter_path,from,to,unquoted);
+ int rc = my_instance->subcommand("%s %s -i '%s' -o '%s' %s",(const char*)global_pythonexec,converter_path,from,to,unquoted);
if ( rc != 0 )
{
output_error("%s: return code %d",converter_path,rc);
@@ -8589,12 +8612,8 @@ bool GldLoader::load_import(const char *from, char *to, int len)
STATUS GldLoader::load_python(const char *filename)
{
- extern PyObject *gridlabd_module;
- if ( gridlabd_module == NULL )
- {
- python_embed_init(0,NULL);
- }
- return python_embed_import(filename,global_pythonpath) == NULL ? FAILED : SUCCESS;
+ python_embed_init(0,NULL);
+ return python_embed_run_file(filename) ? FAILED : SUCCESS;
}
/** Load a file
@@ -8629,7 +8648,7 @@ STATUS GldLoader::loadall(const char *fname)
if ( ext != NULL && ( strcmp(ext,".py") == 0 || strncmp(ext,".py ",4) == 0 || strncmp(ext,".py\t",4) == 0 ) )
{
- return load_python(fname);
+ return load_python(fname) ? SUCCESS : FAILED;
}
// non-glm file
@@ -8822,7 +8841,7 @@ void GldLoader::sublime_syntax(void)
output_message("%%YAML 1.2");
output_message("---");
output_message("# See http://www.sublimetext.com/docs/3/syntax.html");
- output_message("name: HiPAS GridLAB-D");
+ output_message("name: Arras Energy");
output_message("file_extensions:");
output_message(" - glm");
output_message("scope: source");
diff --git a/source/main.cpp b/source/main.cpp
index 6fb8156f5..7bb1d517b 100644
--- a/source/main.cpp
+++ b/source/main.cpp
@@ -78,6 +78,7 @@ int main
int stat;
wait(&stat);
}
+ tmpfile_term();
return return_code;
}
unsigned int GldMain::next_id = 0;
diff --git a/source/object.cpp b/source/object.cpp
index 4251aaa73..fff0c9282 100644
--- a/source/object.cpp
+++ b/source/object.cpp
@@ -1283,7 +1283,7 @@ static int set_header_value(OBJECT *obj, const char *name, const char *value,boo
}
}
-const char *object_get_header_string(OBJECT *obj, const char *item, char *buffer, size_t len)
+const char *object_get_header_string(OBJECT *obj, const char *item, char *buffer, size_t len, bool quiet)
{
if ( strcmp(item,"name") == 0 )
{
@@ -1401,7 +1401,10 @@ const char *object_get_header_string(OBJECT *obj, const char *item, char *buffer
}
else
{
- output_error("object_get_header_string(obj=<%s:%d>,item='%s',...): invalid header item name",obj->oclass->name,obj->id,item);
+ if ( ! quiet )
+ {
+ output_error("object_get_header_string(obj=<%s:%d>,item='%s',...): invalid header item name",obj->oclass->name,obj->id,item);
+ }
return NULL;
}
return buffer;
diff --git a/source/object.h b/source/object.h
index 32d920abf..8755b1d17 100644
--- a/source/object.h
+++ b/source/object.h
@@ -164,7 +164,7 @@ typedef struct s_callbacks {
int (*set_dependent)(OBJECT*,OBJECT*);
int (*set_parent)(OBJECT*,OBJECT*);
OBJECTRANK (*set_rank)(OBJECT*,OBJECTRANK);
- const char *(*get_header_string)(OBJECT *obj, const char *item, char *buffer, size_t len);
+ const char *(*get_header_string)(OBJECT *obj, const char *item, char *buffer, size_t len, bool quiet);
} object;
struct {
PROPERTY *(*get_property)(OBJECT*,PROPERTYNAME,PROPERTYSTRUCT*);
@@ -505,7 +505,7 @@ const char *object_property_to_initial(OBJECT *obj, const char *name, char *buff
}
#endif
-const char* object_get_header_string(OBJECT *obj, const char *item, char *buffer, size_t len);
+const char* object_get_header_string(OBJECT *obj, const char *item, char *buffer, size_t len, bool quiet=false);
#define object_size(X) ((X)?(X)->size:-1) /**< get the size of the object X */
#define object_id(X) ((X)?(X)->id:-1) /**< get the id of the object X */
diff --git a/source/output.cpp b/source/output.cpp
index 12ac1f21e..3e3a86704 100644
--- a/source/output.cpp
+++ b/source/output.cpp
@@ -38,7 +38,7 @@ static LOCKVAR output_lock = 0;
static char buffer[65536];
#define CHECK 0xcdcd
int overflow=CHECK;
-int flush = 0;
+int &flush = global_flush_output;
bool output_enable_flush(bool enable)
{
diff --git a/source/python_embed.cpp b/source/python_embed.cpp
index 3328d6f14..5cd9b70c3 100644
--- a/source/python_embed.cpp
+++ b/source/python_embed.cpp
@@ -8,17 +8,20 @@ PyObject *gridlabd_module = NULL;
void python_embed_init(int argc, const char *argv[])
{
- program = Py_DecodeLocale(argv[0],NULL);
- Py_SetProgramName(program);
- Py_Initialize();
- main_module = PyModule_GetDict(PyImport_AddModule("__main__"));
- if ( main_module == NULL )
+ if ( gridlabd_module == NULL )
{
- throw_exception("python_embed_init(argc=%d,argv=(%s,...)): unable to load module __main__ module",argc,argv?argv[0]:"NULL");
+ program = Py_DecodeLocale(argv[0],NULL);
+ Py_SetProgramName(program);
+ Py_Initialize();
+ main_module = PyModule_GetDict(PyImport_AddModule("__main__"));
+ if ( main_module == NULL )
+ {
+ throw_exception("python_embed_init(argc=%d,argv=(%s,...)): unable to load module __main__ module",argc,argv?argv[0]:"NULL");
+ }
+ gridlabd_module = PyInit_gridlabd();
+ Py_INCREF(gridlabd_module);
+ Py_INCREF(main_module);
}
- gridlabd_module = PyInit_gridlabd();
- Py_INCREF(gridlabd_module);
- Py_INCREF(main_module);
}
void *python_loader_init(int argc, const char **argv)
@@ -53,6 +56,12 @@ void python_reset_stream(PyObject *pModule, const char *stream_name)
if ( pStringIO ) Py_DECREF(pStringIO);
}
+int python_embed_run_file(const char *filename)
+{
+ FILE *fp = fopen(filename,"rb");
+ return fp ? PyRun_SimpleFile(fp,filename) : -1;
+}
+
PyObject *python_embed_import(const char *module, const char *path)
{
// fix module search path
diff --git a/source/python_embed.h b/source/python_embed.h
index 6cc2da451..108a4f766 100644
--- a/source/python_embed.h
+++ b/source/python_embed.h
@@ -28,6 +28,7 @@ void python_embed_init(int argc, const char *argv[]);
void *python_loader_init(int argc, const char **argv);
void python_embed_term();
PyObject *python_embed_import(const char *module, const char *path=NULL);
+int python_embed_run_file(const char *filename);
bool python_embed_call(PyObject *pModule, const char *name, const char *vargsfmt, va_list varargs, void *result);
std::string python_eval(const char *command);
bool python_parser(const char *line=NULL, void *context = NULL);
diff --git a/source/tmpfile.cpp b/source/tmpfile.cpp
new file mode 100644
index 000000000..e457aa85c
--- /dev/null
+++ b/source/tmpfile.cpp
@@ -0,0 +1,71 @@
+// source/tmpfile.h
+
+#include "gldcore.h"
+
+#include
+
+static std::map tmpfiles;
+
+// Get a temporary file
+void tmpfile_get(
+ char *buffer, // buffer into which filename is copied
+ size_t len, // length of buffer
+ const char *tag // tag to use to refer to filename
+ )
+{
+ if ( tmpfiles.find(std::string(tag)) == tmpfiles.end() )
+ {
+ const char *ext = "tmp";
+ const char *name = tag;
+
+ char label[strlen(tag)+1];
+ strcpy(label,tag);
+ char *delim = strchr(label,':');
+ if ( delim != NULL )
+ {
+ *delim = '\0';
+ ext = label;
+ name = delim+1;
+ }
+
+ char tmpname[4096];
+ const char *tmp = getenv("TMPDIR");
+ if ( tmp == NULL )
+ {
+ tmp = getenv("TMP");
+ if ( tmp == NULL )
+ {
+ tmp = "/tmp";
+ }
+ }
+ snprintf(tmpname,sizeof(tmpname)-1,"%s%sgridlabd_tmp_%s_%u_%s.%s",
+ tmp,
+ tmp[strlen(tmp)-1] == '/' ? "" : "/",
+ global_hostname,
+ getpid(),
+ name,
+ ext);
+
+ int fd = open((const char*)tmpname,O_EXCL|O_CREAT,O_RDWR);
+ if ( fd < 0 )
+ {
+ output_warning("unable to create temporary file '%s'",tmpname);
+ }
+ else
+ {
+ close(fd);
+ }
+
+ tmpfiles[std::string(tag)] = std::string(tmpname);
+ }
+ snprintf(buffer,len-1,"%s",tmpfiles[std::string(tag)].c_str());
+}
+
+// Terminate temporary file manager
+void tmpfile_term(void)
+{
+ for ( std::map::iterator item = tmpfiles.begin() ; item != tmpfiles.end() ; item++ )
+ {
+ unlink(item->second.c_str());
+ }
+}
diff --git a/source/tmpfile.h b/source/tmpfile.h
new file mode 100644
index 000000000..d0ca7fa8e
--- /dev/null
+++ b/source/tmpfile.h
@@ -0,0 +1,9 @@
+// source/tmpfile.h
+
+#ifndef _TMPFILE_H
+#define _TMPFILE_H
+
+void tmpfile_get(char *buffer,size_t len,const char *tag);
+void tmpfile_term(void);
+
+#endif // _TMPFILE_H
diff --git a/source/version.h b/source/version.h
index 27552ba76..863af9c9b 100644
--- a/source/version.h
+++ b/source/version.h
@@ -11,7 +11,7 @@
#define REV_MAJOR 4
#define REV_MINOR 3
-#define REV_PATCH 2
+#define REV_PATCH 3
#ifdef HAVE_CONFIG_H
#include "config.h"
diff --git a/subcommands/autotest/test_geodata_address.glm b/subcommands/autotest/test_geodata_address.glm
index a877a9c8c..c2f758313 100644
--- a/subcommands/autotest/test_geodata_address.glm
+++ b/subcommands/autotest/test_geodata_address.glm
@@ -9,6 +9,6 @@
#setenv REQ=38.8977,-77.036553
#define RES=${SHELL gridlabd geodata merge -D address "$REQ" -f RAW:address}
#define ANS=White House, 1600, Pennsylvania Avenue Northwest, Washington, District of Columbia, 20500, United States
-#if ${RES} != ${ANS}
- #error "geodata -D address location ${REQ}" is incorrect: expected ${ANS} but got ${RES} instead
+#if "${RES:1:11}" != "${ANS:1:11}"
+ #error "geodata -D address location ${REQ}" is incorrect: expected '${ANS:1:11}...' but got '${RES:1:11}...' instead
#endif
diff --git a/subcommands/gridlabd-contributors b/subcommands/gridlabd-contributors
index 1b23174cf..08bb569ef 100755
--- a/subcommands/gridlabd-contributors
+++ b/subcommands/gridlabd-contributors
@@ -2,8 +2,49 @@
exec "$GLD_BIN/python3" "$0" "$@"
:' '''
# Syntax: contributors []
+## GridLAB-D contributors
+##
+## SYNTAX
+##
+## gridlabd contributions [OPTIONS ...]
+##
+## OPTIONS
+##
+## -c|--csv Output result as CSV file
+## -h|--help|help Get this help text
+##
+## -k|--known Limit result to users with known full names only
+## (default False)
+##
+## -l|--login Display only github login id (usually faster, default is
+## False)
+##
+## -q|--quotes "None"|STRING
+## Place quotes around full names (default is None)
+##
+## -s|--separate "SPACE"|"NEWLINE"|STRING
+## Separate output using the STRING delimiter (default is NEWLINE)
+##
+## -t|--token TOKEN
+## Use TOKEN as the github access token (default is content
+## of ~/.github/access-token)
+##
+## DESCRIPTION
+##
+## Processes all repositories that contributed source code and extracts all the people
+## from whom contributions were received.
+
import sys, os, github
+#
+# Update this to reflect all contributing projects
+#
+REPOSITORIES = [
+ "gridlab-d/gridlab-d",
+ "arras-energy/gridlabd-old",
+ "arras-energy/gridlabd",
+ ]
+
E_NONE = None
E_OK = 0
E_INVALID = 1
@@ -15,6 +56,7 @@ quotes = ""
login = False
known = False
token = None
+tocsv = False
def error(msg,code=E_NONE):
if type(msg) is Exception:
@@ -43,15 +85,9 @@ while n < len(sys.argv):
else:
value = None
if tag in ["-h","--help","help"]:
- print(f"Syntax: gridlabd contributors []")
- print("Options:")
- print(" -h|--help get this help list")
- print(" -k|--known print known users only")
- print(" -l|--login print only login ids")
- print(" -q|--quotes quote names with ")
- print(" -s|--separate separate names with ")
- print(" -t|--token use github access token ")
- exit(0)
+ with open(sys.argv[0],"r") as fh:
+ print("".join([line[3:] for line in fh.readlines() if line.startswith("##")]))
+ exit(E_OK)
elif tag in ["-t","--token"]:
if value == "None":
token = None
@@ -74,10 +110,10 @@ while n < len(sys.argv):
n += 1
elif tag in ["-k","--known"]:
known = True
- n += 1
elif tag in ["-l","--login"]:
login = True
- n += 1
+ elif tag in ["-c","--csv"]:
+ tocsv = True
else:
error(f"'{tag}' is not valid",code=E_INVALID)
n += 1
@@ -94,13 +130,24 @@ if not token:
try:
git = github.Github(token)
- repo = git.get_repo("arras-energy/gridlabd")
- for user in repo.get_contributors():
- if login:
- output(user.login)
- elif user.name:
- output(user.name)
- elif not known:
- output(f"")
+ result = {}
+ for repository in REPOSITORIES:
+ repo = git.get_repo(repository)
+ for user in repo.get_contributors():
+ if login:
+ result[user.login] = user.login
+ elif user.name:
+ result[user.login] = quotes + user.name + quotes
+ elif not known:
+ result[user.login] = f""
+
+ if tocsv:
+ output("id,name")
+ for id in result:
+ if tocsv:
+ output(f"{id},{result[id]}")
+ else:
+ output(result[id])
+
except Exception as exc:
error(exc)
diff --git a/subcommands/gridlabd-convert b/subcommands/gridlabd-convert
index 52e70748c..0b80703ef 100755
--- a/subcommands/gridlabd-convert
+++ b/subcommands/gridlabd-convert
@@ -1,8 +1,22 @@
''':'
exec "$GLD_BIN/python3" "$0" "$@"
:' '''
-# Syntax: convert [[-i|--input] FILE1] [[-o|--output] FILE2] [-v|--verbose] [-d|--debug] [-f|--from TYPE1] [-t|--to TYPE2] [OPTIONS]
-__doc__="""General GridLAB-D file format converter for command line and macro usage.
+# Syntax: convert [[-i|--input] INPUTS] [[-o|--output] OUTPUTS] [-v|--verbose] [-d|--debug] [-f|--from TYPE1] [-t|--to TYPE2] [OPTIONS]
+__doc__="""Syntax: onvert [[-i|--input] INPUTS] [[-o|--output] OUTPUTS] [-v|--verbose] [-d|--debug] [-f|--from TYPE1] [-t|--to TYPE2] [OPTIONS]
+
+The convert subcommand is the general GridLAB-D file format converter for command line and macro usage. It can be used as the shell command, e.g., `gridlabd convert ...` or as a GLM macro, e.g., `#convert ...`.
+
+OPTIONS
+
+ -d|--debug enable debugging traceback output on error
+ -f|--from ITYPE specify the input file type and semantics
+ -i|--input INPUTS specify the output files
+ -o|--output OUTPUTS specify the output files
+ -r|--read OPTION specify a converter read option
+ -t|--to OTYPE specify the output file type and semantics
+ -v|--verbose enable verbose message output
+ -w|--write OPTION specify a converter write option
+ OPTION=VALUE specify a converter option
"""
import sys, os
import importlib
@@ -80,6 +94,20 @@ while n < len(sys.argv):
OUTPUTFILE = sys.argv[n]
except:
error("missing output file name",E_MISSING)
+ elif sys.argv[n] in ['-r','--read']:
+ n +=1
+ specs = sys.argv[n].split('=')
+ if len(specs) == 1:
+ OPTIONS[specs[0]] = None
+ else:
+ OPTIONS[specs[0]] = 'read.' + '='.join(specs[1:])
+ elif sys.argv[n] in ['-w','--write']:
+ n +=1
+ specs = sys.argv[n].split('=')
+ if len(specs) == 1:
+ OPTIONS[specs[0]] = None
+ else:
+ OPTIONS[specs[0]] = 'write.' + '='.join(specs[1:])
elif not INPUTFILE:
INPUTFILE = sys.argv[n]
elif not OUTPUTFILE:
@@ -87,19 +115,41 @@ while n < len(sys.argv):
else:
specs = sys.argv[n].split('=')
if len(specs) == 1:
- OPTIONS[specs[0]] = None
+ OPTIONS[specs[0]] = True
else:
OPTIONS[specs[0]] = '='.join(specs[1:])
n += 1
+
if not INPUTFILE:
- INPUTFILE = "/dev/stdin"
-elif not INPUTTYPE:
- INPUTTYPE = os.path.splitext(INPUTFILE)[1][1:]
+ if not INPUTTYPE:
+ error("input type must be specified when using stdin",E_MISSING)
+ else:
+ INPUTFILE = "/dev/stdin"
+else:
+ # convert input files spec to dict if possible
+ try:
+ INPUTFILE = dict([x.split(":") for x in INPUTFILE.split(",")])
+ except:
+ if not INPUTTYPE:
+ INPUTTYPE = os.path.splitext(INPUTFILE)[1][1:]
+ if type(INPUTFILE) is dict and not INPUTTYPE:
+ error("input type must be specified when using multiple input files",E_MISSING)
+
if not OUTPUTFILE:
- OUTPUTFILE = "/dev/stdout"
-elif not OUTPUTTYPE:
- OUTPUTTYPE = os.path.splitext(OUTPUTFILE)[1][1:]
+ if not OUTPUTTYPE:
+ error("output type must be specified when using stdout",E_MISSING)
+ else:
+ OUTPUTFILE = "/dev/stdout"
+else:
+ # convert output files spec to dict if it possible
+ try:
+ OUTPUTFILE = dict([x.split(":") for x in OUTPUTFILE.split(",")])
+ except:
+ if not OUTPUTTYPE:
+ OUTPUTTYPE = os.path.splitext(OUTPUTFILE)[1][1:]
+ if type(OUTPUTFILE) is dict and not OUTPUTTYPE:
+ error("input type must be specified when using multiple input files",E_MISSING)
modname = f'{MODPATH}/{INPUTTYPE}2{OUTPUTTYPE}.py'
if os.path.exists(modname):
diff --git a/subcommands/gridlabd-version b/subcommands/gridlabd-version
index b1af8829f..3aef50207 100755
--- a/subcommands/gridlabd-version
+++ b/subcommands/gridlabd-version
@@ -68,7 +68,7 @@ function version-check()
# Using curl command to check the version
version_check_response=$(curl -sL "https://version.gridlabd.us/?v=${submitversion}&b=${branch}")
if [[ $version_check_response != '"ok"' ]]; then
- warning "Your version is behind. The latest version information is: $version_check_response"
+ warning "Your version is outdated. The latest version information is: $version_check_response"
exit 0
fi
diff --git a/third_party/superLU_MT/dclock.c b/third_party/superLU_MT/dclock.c
index 6b4fb41bc..f0497b518 100644
--- a/third_party/superLU_MT/dclock.c
+++ b/third_party/superLU_MT/dclock.c
@@ -66,8 +66,7 @@ int gettimeofday(struct timeval *tv, struct timezone *tz)
#endif /* WIN32 */
-double extract(tv)
-struct timeval *tv;
+double extract(struct timeval *tv)
{
double tmp;
@@ -77,7 +76,7 @@ struct timeval *tv;
return(tmp);
}
-double dclock()
+double dclock(void)
{
struct timeval tp;
struct timezone tzp;
diff --git a/third_party/superLU_MT/dgstrs.c b/third_party/superLU_MT/dgstrs.c
index b3b44f3c6..d21c17f6d 100644
--- a/third_party/superLU_MT/dgstrs.c
+++ b/third_party/superLU_MT/dgstrs.c
@@ -86,7 +86,7 @@ dgstrs(trans_t trans, SuperMatrix *L, SuperMatrix *U,
double *Lval, *Uval, *Bmat;
double *work, *rhs_work, *soln;
flops_t solve_ops;
- void dprint_soln();
+ void dprint_soln(int n, int nrhs, double *soln);
/* Test input parameters ... */
*info = 0;
diff --git a/third_party/superLU_MT/dmatgen.c b/third_party/superLU_MT/dmatgen.c
index 6d688f098..4bfd2e600 100644
--- a/third_party/superLU_MT/dmatgen.c
+++ b/third_party/superLU_MT/dmatgen.c
@@ -22,7 +22,7 @@ dband(int n, int b, int nonz, double **nzval, int **rowind, int **colptr)
int *asub, *xa;
double *val;
int *row;
- extern double dlaran_();
+ extern double dlaran_(int*);
printf("A banded matrix.");
dallocateA(n, nonz, nzval, rowind, colptr); /* Allocate storage */
@@ -63,7 +63,7 @@ dblockdiag(int nb, /* number of blocks */
int *asub, *xa;
double *val;
int *row;
- extern double dlaran_();
+ extern double dlaran_(int*);
n = bs * nb;
printf("A block diagonal matrix: nb %d, bs %d, n %d\n", nb, bs, n);
diff --git a/third_party/superLU_MT/dmyblas2.c b/third_party/superLU_MT/dmyblas2.c
index 7d5065c02..f9ee58892 100644
--- a/third_party/superLU_MT/dmyblas2.c
+++ b/third_party/superLU_MT/dmyblas2.c
@@ -117,11 +117,11 @@ void dlsolve ( int ldm, int ncol, double *M, double *rhs )
* in the rhs vector.
*/
void
-dusolve ( ldm, ncol, M, rhs )
-int ldm; /* in */
-int ncol; /* in */
-double *M; /* in */
-double *rhs; /* modified */
+dusolve (
+ int ldm, /* in */
+ int ncol, /* in */
+ double *M, /* in */
+ double *rhs) /* modified */
{
double xj;
int jcol, j, irow;
@@ -146,14 +146,13 @@ double *rhs; /* modified */
* Performs a dense matrix-vector multiply: Mxvec = Mxvec + M * vec.
* The input matrix is M(1:nrow,1:ncol); The product is returned in Mxvec[].
*/
-void dmatvec ( ldm, nrow, ncol, M, vec, Mxvec )
-
-int ldm; /* in -- leading dimension of M */
-int nrow; /* in */
-int ncol; /* in */
-double *M; /* in */
-double *vec; /* in */
-double *Mxvec; /* in/out */
+void dmatvec (
+ int ldm, /* in -- leading dimension of M */
+ int nrow, /* in */
+ int ncol, /* in */
+ double *M, /* in */
+ double *vec, /* in */
+ double *Mxvec) /* in/out */
{
double vi0, vi1, vi2, vi3, vi4, vi5, vi6, vi7;
diff --git a/third_party/superLU_MT/heap_relax_snode.c b/third_party/superLU_MT/heap_relax_snode.c
index 759ed26a7..6ca1bec37 100644
--- a/third_party/superLU_MT/heap_relax_snode.c
+++ b/third_party/superLU_MT/heap_relax_snode.c
@@ -26,7 +26,10 @@ heap_relax_snode (
register int i, j, k, l, parent;
register int snode_start; /* beginning of a snode */
int *et_save, *post, *inv_post, *iwork;
- int nsuper_et = 0, nsuper_et_post = 0;
+ int nsuper_et = 0;
+#if ( PRNTlevel>=1 )
+ int nsuper_et_post = 0;
+#endif
int *desc; /* no of descendants of each etree node. */
int *et = superlumt_options->etree; /* column elimination tree */
@@ -70,7 +73,9 @@ heap_relax_snode (
parent = et[j];
}
/* Found a supernode in postordered etree; j is the last column. */
+#if ( PRNTlevel>=1 )
++nsuper_et_post;
+#endif
k = n;
for (i = snode_start; i <= j; ++i) k = SUPERLU_MIN(k, inv_post[i]);
l = inv_post[j];
diff --git a/third_party/superLU_MT/pcmemory.c b/third_party/superLU_MT/pcmemory.c
index b8672e236..219829cfa 100644
--- a/third_party/superLU_MT/pcmemory.c
+++ b/third_party/superLU_MT/pcmemory.c
@@ -774,7 +774,7 @@ cPresetMap(
int *map_in_sup; /* memory mapping function; values irrelevant on entry. */
int *colcnt; /* column count of Lc or H */
int *super_bnd; /* supernodes partition in H */
- char *snode_env, *getenv();
+ char *snode_env, *getenv(const char*);
snode_env = getenv("SuperLU_DYNAMIC_SNODE_STORE");
if ( snode_env != NULL ) {
diff --git a/third_party/superLU_MT/pcsp_defs.h b/third_party/superLU_MT/pcsp_defs.h
index 0f9aaf25f..e0ecf02b1 100644
--- a/third_party/superLU_MT/pcsp_defs.h
+++ b/third_party/superLU_MT/pcsp_defs.h
@@ -265,7 +265,7 @@ extern void pxgstrf_scheduler (const int, const int, const int *,
int *, int *, pxgstrf_shared_t *);
extern int cParallelInit (int, pxgstrf_relax_t *, superlumt_options_t *,
pxgstrf_shared_t *);
-extern int ParallelFinalize ();
+extern int ParallelFinalize (pxgstrf_shared_t *);
extern int queue_init (queue_t *, int);
extern int queue_destroy (queue_t *);
extern int EnqueueRelaxSnode (queue_t *, int, pxgstrf_relax_t *,
@@ -434,7 +434,7 @@ extern int *intMalloc (int);
extern int *intCalloc (int);
extern complex *complexMalloc(int);
extern complex *complexCalloc(int);
-extern int memory_usage ();
+extern int memory_usage (void);
extern int superlu_cQuerySpace (int, SuperMatrix *, SuperMatrix *, int,
superlu_memusage_t *);
extern int Glu_alloc (const int, const int, const int, const MemType,
@@ -443,9 +443,9 @@ extern int Glu_alloc (const int, const int, const int, const MemType,
/* -------------------
Auxiliary routines
-------------------*/
-extern double SuperLU_timer_();
+extern double SuperLU_timer_(void);
extern int sp_ienv(int);
-extern double slamch_();
+extern double slamch_(char *);
extern int lsame_(char *, char *);
extern int xerbla_(char *, int *);
extern void superlu_abort_and_exit(const char *);
diff --git a/third_party/superLU_MT/pdmemory.c b/third_party/superLU_MT/pdmemory.c
index 8f789c6df..a9db0f6f0 100644
--- a/third_party/superLU_MT/pdmemory.c
+++ b/third_party/superLU_MT/pdmemory.c
@@ -774,7 +774,7 @@ dPresetMap(
int *map_in_sup; /* memory mapping function; values irrelevant on entry. */
int *colcnt; /* column count of Lc or H */
int *super_bnd; /* supernodes partition in H */
- char *snode_env, *getenv();
+ char *snode_env, *getenv(const char*);
snode_env = getenv("SuperLU_DYNAMIC_SNODE_STORE");
if ( snode_env != NULL ) {
diff --git a/third_party/superLU_MT/pdsp_defs.h b/third_party/superLU_MT/pdsp_defs.h
index ebda2099c..676759f33 100644
--- a/third_party/superLU_MT/pdsp_defs.h
+++ b/third_party/superLU_MT/pdsp_defs.h
@@ -264,7 +264,7 @@ extern void pxgstrf_scheduler (const int, const int, const int *,
int *, int *, pxgstrf_shared_t *);
extern int dParallelInit (int, pxgstrf_relax_t *, superlumt_options_t *,
pxgstrf_shared_t *);
-extern int ParallelFinalize ();
+extern int ParallelFinalize (pxgstrf_shared_t *);
extern int queue_init (queue_t *, int);
extern int queue_destroy (queue_t *);
extern int EnqueueRelaxSnode (queue_t *, int, pxgstrf_relax_t *,
@@ -433,7 +433,7 @@ extern int *intMalloc (int);
extern int *intCalloc (int);
extern double *doubleMalloc(int);
extern double *doubleCalloc(int);
-extern int memory_usage ();
+extern int memory_usage (void);
extern int superlu_dQuerySpace (int, SuperMatrix *, SuperMatrix *, int,
superlu_memusage_t *);
extern int Glu_alloc (const int, const int, const int, const MemType,
@@ -442,9 +442,9 @@ extern int Glu_alloc (const int, const int, const int, const MemType,
/* -------------------
Auxiliary routines
-------------------*/
-extern double SuperLU_timer_();
+extern double SuperLU_timer_(void);
extern int sp_ienv(int);
-extern double dlamch_();
+extern double dlamch_(char *);
extern int lsame_(char *, char *);
extern int xerbla_(char *, int *);
extern void superlu_abort_and_exit(const char *);
diff --git a/third_party/superLU_MT/pssp_defs.h b/third_party/superLU_MT/pssp_defs.h
index 9949799cf..6e5e5a751 100644
--- a/third_party/superLU_MT/pssp_defs.h
+++ b/third_party/superLU_MT/pssp_defs.h
@@ -264,7 +264,7 @@ extern void pxgstrf_scheduler (const int, const int, const int *,
int *, int *, pxgstrf_shared_t *);
extern int sParallelInit (int, pxgstrf_relax_t *, superlumt_options_t *,
pxgstrf_shared_t *);
-extern int ParallelFinalize ();
+extern int ParallelFinalize (pxgstrf_shared_t *);
extern int queue_init (queue_t *, int);
extern int queue_destroy (queue_t *);
extern int EnqueueRelaxSnode (queue_t *, int, pxgstrf_relax_t *,
@@ -433,7 +433,7 @@ extern int *intMalloc (int);
extern int *intCalloc (int);
extern float *floatMalloc(int);
extern float *floatCalloc(int);
-extern int memory_usage ();
+extern int memory_usage (void);
extern int superlu_sQuerySpace (int, SuperMatrix *, SuperMatrix *, int,
superlu_memusage_t *);
extern int Glu_alloc (const int, const int, const int, const MemType,
@@ -442,9 +442,9 @@ extern int Glu_alloc (const int, const int, const int, const MemType,
/* -------------------
Auxiliary routines
-------------------*/
-extern double SuperLU_timer_();
+extern double SuperLU_timer_(void);
extern int sp_ienv(int);
-extern double slamch_();
+extern double slamch_(char *);
extern int lsame_(char *, char *);
extern int xerbla_(char *, int *);
extern void superlu_abort_and_exit(char *);
diff --git a/third_party/superLU_MT/pzsp_defs.h b/third_party/superLU_MT/pzsp_defs.h
index b16b10c39..a9231698f 100644
--- a/third_party/superLU_MT/pzsp_defs.h
+++ b/third_party/superLU_MT/pzsp_defs.h
@@ -265,7 +265,7 @@ extern void pxgstrf_scheduler (const int, const int, const int *,
int *, int *, pxgstrf_shared_t *);
extern int zParallelInit (int, pxgstrf_relax_t *, superlumt_options_t *,
pxgstrf_shared_t *);
-extern int ParallelFinalize ();
+extern int ParallelFinalize (pxgstrf_shared_t *);
extern int queue_init (queue_t *, int);
extern int queue_destroy (queue_t *);
extern int EnqueueRelaxSnode (queue_t *, int, pxgstrf_relax_t *,
@@ -434,7 +434,7 @@ extern int *intMalloc (int);
extern int *intCalloc (int);
extern doublecomplex *doublecomplexMalloc(int);
extern doublecomplex *doublecomplexCalloc(int);
-extern int memory_usage ();
+extern int memory_usage (void);
extern int superlu_zQuerySpace (int, SuperMatrix *, SuperMatrix *, int,
superlu_memusage_t *);
extern int Glu_alloc (const int, const int, const int, const MemType,
@@ -443,9 +443,9 @@ extern int Glu_alloc (const int, const int, const int, const MemType,
/* -------------------
Auxiliary routines
-------------------*/
-extern double SuperLU_timer_();
+extern double SuperLU_timer_(void);
extern int sp_ienv(int);
-extern double dlamch_();
+extern double dlamch_(char *);
extern int lsame_(char *, char *);
extern int xerbla_(char *, int *);
extern void superlu_abort_and_exit(char *);
diff --git a/third_party/superLU_MT/qrnzcnt.c b/third_party/superLU_MT/qrnzcnt.c
index f5d8425e2..b5a2f3a00 100644
--- a/third_party/superLU_MT/qrnzcnt.c
+++ b/third_party/superLU_MT/qrnzcnt.c
@@ -136,7 +136,7 @@ qrnzcnt(int neqns, int adjlen, int *xadj, int *adjncy, int *zfdperm,
int *rowcnt; /* row colunts for Lc */
int *colcnt; /* column colunts for Lc */
int *rowcnt_h; /* row colunts for H */
- int nsuper; /* total number of fundamental supernodes in Lc */
+ // int nsuper; /* total number of fundamental supernodes in Lc */
int nhnz;
set = intMalloc(neqns);
@@ -276,7 +276,7 @@ qrnzcnt(int neqns, int adjlen, int *xadj, int *adjncy, int *zfdperm,
}
xsup = 0; /* BUG FIX */
- nsuper = 0;
+ // nsuper = 0;
/* ------------------------------------
FOR EACH ``LOW NEIGHBOR'' LOWNBR ...
@@ -360,14 +360,14 @@ qrnzcnt(int neqns, int adjlen, int *xadj, int *adjncy, int *zfdperm,
if (lflag == 1 || nchild[lownbr] >= 2) {
/* lownbr is detected as the beginning of the new supernode */
if ( lownbr != 0 ) part_super_ata[xsup] = lownbr - xsup;
- ++nsuper;
+ // ++nsuper;
xsup = lownbr;
} else {
if ( parent == ROOT && ifdesc == lownbr ) {
/* lownbr is a singleton, and begins a new supernode
but is not detected as doing so -- BUG FIX */
part_super_ata[lownbr] = 1;
- ++nsuper;
+ // ++nsuper;
xsup = lownbr;
}
}
diff --git a/tools/Makefile.mk b/tools/Makefile.mk
index dfa7366d0..ce50f2058 100644
--- a/tools/Makefile.mk
+++ b/tools/Makefile.mk
@@ -1,26 +1,29 @@
+dist_pkgdata_DATA += tools/create_childs.py
dist_pkgdata_DATA += tools/create_ductbank.py
dist_pkgdata_DATA += tools/create_filter.py
-dist_pkgdata_DATA += tools/create_player.py
dist_pkgdata_DATA += tools/create_meters.py
+dist_pkgdata_DATA += tools/create_player.py
dist_pkgdata_DATA += tools/create_poles.py
dist_pkgdata_DATA += tools/create_schedule.py
dist_pkgdata_DATA += tools/eia_recs.py
dist_pkgdata_DATA += tools/find_location.py
-dist_pkgdata_DATA += tools/fire_report.py
dist_pkgdata_DATA += tools/fire_danger.py
+dist_pkgdata_DATA += tools/fire_report.py
dist_pkgdata_DATA += tools/fit_filter.py
+dist_pkgdata_DATA += tools/gldserver.py
dist_pkgdata_DATA += tools/gridlabd-editor.png
dist_pkgdata_DATA += tools/gridlabd-editor.py
+dist_pkgdata_DATA += tools/group.py
dist_pkgdata_DATA += tools/insights.py
dist_pkgdata_DATA += tools/install.py
+dist_pkgdata_DATA += tools/isone.py
dist_pkgdata_DATA += tools/market_data.py
-dist_pkgdata_DATA += tools/mdb_info.py
dist_pkgdata_DATA += tools/market_model.py
-dist_pkgdata_DATA += tools/meteostat_weather.py
+dist_pkgdata_DATA += tools/mdb_info.py
dist_pkgdata_DATA += tools/metar2glm.py
-dist_pkgdata_DATA += tools/read_dlp.py
-dist_pkgdata_DATA += tools/gldserver.py
+dist_pkgdata_DATA += tools/meteostat_weather.py
dist_pkgdata_DATA += tools/noaa_forecast.py
dist_pkgdata_DATA += tools/nsrdb_weather.py
-dist_pkgdata_DATA += tools/ucar_weather.py
dist_pkgdata_DATA += tools/pole_analysis.py
+dist_pkgdata_DATA += tools/read_dlp.py
+dist_pkgdata_DATA += tools/ucar_weather.py
diff --git a/tools/autotest/test_group.glm b/tools/autotest/test_group.glm
new file mode 100644
index 000000000..75ecbe6d0
--- /dev/null
+++ b/tools/autotest/test_group.glm
@@ -0,0 +1,16 @@
+#ifexist ../test_group_network_opt.glm
+#define DIR=..
+#endif
+
+#include "${DIR:-.}/test_group_network_opt.glm"
+#include "${DIR:-.}/test_group_assets_opt.glm"
+
+#resolve now
+#write test_group.json
+
+#python -m group -i=test_group.json --modify --force -o=test_group_modify_opt.glm
+#include "test_group_modify_opt.glm"
+
+#ifexist ../test_group_modify_opt.glm
+#on_exit 0 diff -I '^[#/].*' ../test_group_modify_opt.glm test_group_modify_opt.glm > gridlabd.diff
+#endif
diff --git a/tools/autotest/test_group_assets_opt.glm b/tools/autotest/test_group_assets_opt.glm
new file mode 100644
index 000000000..59735b82e
--- /dev/null
+++ b/tools/autotest/test_group_assets_opt.glm
@@ -0,0 +1,9756 @@
+// automatically generated model from command `/usr/local/opt/gridlabd/4.3.3-230727-develop_add_group_tool-darwin_22-x86_64/share/gridlabd/create_poles.py 123.glm --spacing=100 --pole_type=WOOD-EC-45/4 --weather=example --ignore_location --output=IEEE123_poles.glm` on 2023-07-27 15:54:55
+clock
+{
+ starttime "2000-01-01 00:00:00";
+ stoptime "2000-02-01 00:00:00";
+}
+class weather
+{
+ double temperature[degF];
+ double wind_speed[mph];
+ double wind_dir[deg];
+}
+
+object weather
+{
+ name "example";
+}
+
+#system curl -sL https://library.gridlabd.us/US/CA/SLAC/pole_configuration.glm > pole_configuration.glm
+#include "pole_configuration.glm"
+
+object pole
+{
+ name "pole_node_6101";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_trans6101to610";
+ equipment "trans6101to610";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_150";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_reg150to15001";
+ equipment "reg150to15001";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_9";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_reg9to901";
+ equipment "reg9to901";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line8to9_load_9";
+ equipment "line8to9";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_25";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_reg25to2501";
+ equipment "reg25to2501";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line23to25_node_25";
+ equipment "line23to25";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line25to28_node_25";
+ equipment "line25to28";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_160";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_reg160to16001";
+ equipment "reg160to16001";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_13";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw13to152";
+ equipment "sw13to152";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line8to13_node_13";
+ equipment "line8to13";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line13to34_node_13";
+ equipment "line13to34";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line13to18_node_13";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_18";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw18to135";
+ equipment "sw18to135";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line13to18_node_18";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line18to19_node_18";
+ equipment "line18to19";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line18to21_node_18";
+ equipment "line18to21";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_54";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw54to94";
+ equipment "sw54to94";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line53to54_node_54";
+ equipment "line53to54";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line54to55_node_54";
+ equipment "line54to55";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line54to57_node_54";
+ equipment "line54to57";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_60";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw60to160";
+ equipment "sw60to160";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line57to60_load_60";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line60to61_load_60";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_61";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw61to6101";
+ equipment "sw61to6101";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line60to61_node_61";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_97";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw97to197";
+ equipment "sw97to197";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line67to97_node_97";
+ equipment "line67to97";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line97to98_node_97";
+ equipment "line97to98";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_151";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw151to300";
+ equipment "sw151to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line51to151_node_151";
+ equipment "line51to151";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_15001";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_sw15001to149";
+ equipment "sw15001to149";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+
+object pole
+{
+ name "pole_load_1";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to2_load_1";
+ equipment "line1to2";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line1to3_load_1";
+ equipment "line1to3";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line1to7_load_1";
+ equipment "line1to7";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line149to1_load_1";
+ equipment "line149to1";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line1to2_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to2_100";
+ equipment "line1to2";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_2";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to2_load_2";
+ equipment "line1to2";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line1to3_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to3_100";
+ equipment "line1to3";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line1to3_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to3_200";
+ equipment "line1to3";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_3";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to3_node_3";
+ equipment "line1to3";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line3to4_node_3";
+ equipment "line3to4";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line3to5_node_3";
+ equipment "line3to5";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line1to7_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to7_100";
+ equipment "line1to7";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line1to7_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to7_200";
+ equipment "line1to7";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_7";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line1to7_load_7";
+ equipment "line1to7";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line7to8_load_7";
+ equipment "line7to8";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line3to4_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line3to4_100";
+ equipment "line3to4";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_4";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line3to4_load_4";
+ equipment "line3to4";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line3to5_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line3to5_100";
+ equipment "line3to5";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line3to5_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line3to5_200";
+ equipment "line3to5";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line3to5_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line3to5_300";
+ equipment "line3to5";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_5";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line3to5_load_5";
+ equipment "line3to5";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line5to6_load_5";
+ equipment "line5to6";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line5to6_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line5to6_100";
+ equipment "line5to6";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line5to6_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line5to6_200";
+ equipment "line5to6";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_6";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line5to6_load_6";
+ equipment "line5to6";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line7to8_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line7to8_100";
+ equipment "line7to8";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_8";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line7to8_node_8";
+ equipment "line7to8";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line8to12_node_8";
+ equipment "line8to12";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line8to9_node_8";
+ equipment "line8to9";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line8to13_node_8";
+ equipment "line8to13";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line8to12_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to12_100";
+ equipment "line8to12";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line8to12_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to12_200";
+ equipment "line8to12";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_12";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to12_load_12";
+ equipment "line8to12";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line8to9_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to9_100";
+ equipment "line8to9";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line8to9_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to9_200";
+ equipment "line8to9";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line8to13_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to13_100";
+ equipment "line8to13";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line8to13_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line8to13_200";
+ equipment "line8to13";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_901";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line901to14_node_901";
+ equipment "line901to14";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line901to14_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line901to14_100";
+ equipment "line901to14";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line901to14_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line901to14_200";
+ equipment "line901to14";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line901to14_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line901to14_300";
+ equipment "line901to14";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line901to14_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line901to14_400";
+ equipment "line901to14";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_14";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line901to14_node_14";
+ equipment "line901to14";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line14to11_node_14";
+ equipment "line14to11";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line14to10_node_14";
+ equipment "line14to10";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to34_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to34_100";
+ equipment "line13to34";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_34";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to34_load_34";
+ equipment "line13to34";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line34to15_load_34";
+ equipment "line34to15";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_100";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_200";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_300";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_400";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_500";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_600";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_700";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_700";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line13to18_800";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line13to18_800";
+ equipment "line13to18";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line14to11_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line14to11_100";
+ equipment "line14to11";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line14to11_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line14to11_200";
+ equipment "line14to11";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_11";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line14to11_load_11";
+ equipment "line14to11";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line14to10_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line14to10_100";
+ equipment "line14to10";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line14to10_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line14to10_200";
+ equipment "line14to10";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_10";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line14to10_load_10";
+ equipment "line14to10";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_15";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to16_node_15";
+ equipment "line15to16";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line15to17_node_15";
+ equipment "line15to17";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line34to15_node_15";
+ equipment "line34to15";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line15to16_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to16_100";
+ equipment "line15to16";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line15to16_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to16_200";
+ equipment "line15to16";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line15to16_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to16_300";
+ equipment "line15to16";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_16";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to16_load_16";
+ equipment "line15to16";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line15to17_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to17_100";
+ equipment "line15to17";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line15to17_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to17_200";
+ equipment "line15to17";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line15to17_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to17_300";
+ equipment "line15to17";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_17";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line15to17_load_17";
+ equipment "line15to17";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line18to19_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line18to19_100";
+ equipment "line18to19";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line18to19_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line18to19_200";
+ equipment "line18to19";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_19";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line18to19_load_19";
+ equipment "line18to19";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line19to20_load_19";
+ equipment "line19to20";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line18to21_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line18to21_100";
+ equipment "line18to21";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line18to21_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line18to21_200";
+ equipment "line18to21";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_21";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line18to21_node_21";
+ equipment "line18to21";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line21to22_node_21";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line21to23_node_21";
+ equipment "line21to23";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line19to20_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line19to20_100";
+ equipment "line19to20";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line19to20_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line19to20_200";
+ equipment "line19to20";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line19to20_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line19to20_300";
+ equipment "line19to20";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_20";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line19to20_load_20";
+ equipment "line19to20";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to22_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to22_100";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to22_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to22_200";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to22_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to22_300";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to22_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to22_400";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to22_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to22_500";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_22";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to22_load_22";
+ equipment "line21to22";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to23_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to23_100";
+ equipment "line21to23";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line21to23_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to23_200";
+ equipment "line21to23";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_23";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line21to23_node_23";
+ equipment "line21to23";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line23to24_node_23";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line23to25_node_23";
+ equipment "line23to25";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to24_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to24_100";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to24_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to24_200";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to24_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to24_300";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to24_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to24_400";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to24_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to24_500";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_24";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to24_load_24";
+ equipment "line23to24";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to25_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to25_100";
+ equipment "line23to25";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line23to25_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line23to25_200";
+ equipment "line23to25";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_2501";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line2501to26_node_2501";
+ equipment "line2501to26";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line2501to26_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line2501to26_100";
+ equipment "line2501to26";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line2501to26_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line2501to26_200";
+ equipment "line2501to26";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line2501to26_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line2501to26_300";
+ equipment "line2501to26";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_26";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line2501to26_node_26";
+ equipment "line2501to26";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line26to27_node_26";
+ equipment "line26to27";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line26to31_node_26";
+ equipment "line26to31";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line25to28_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line25to28_100";
+ equipment "line25to28";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_28";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line25to28_load_28";
+ equipment "line25to28";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line28to29_load_28";
+ equipment "line28to29";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line26to27_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line26to27_100";
+ equipment "line26to27";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line26to27_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line26to27_200";
+ equipment "line26to27";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_27";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line26to27_node_27";
+ equipment "line26to27";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line27to33_node_27";
+ equipment "line27to33";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line26to31_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line26to31_100";
+ equipment "line26to31";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line26to31_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line26to31_200";
+ equipment "line26to31";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_31";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line26to31_load_31";
+ equipment "line26to31";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line31to32_load_31";
+ equipment "line31to32";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line27to33_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line27to33_100";
+ equipment "line27to33";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line27to33_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line27to33_200";
+ equipment "line27to33";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line27to33_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line27to33_300";
+ equipment "line27to33";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line27to33_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line27to33_400";
+ equipment "line27to33";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_33";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line27to33_load_33";
+ equipment "line27to33";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line28to29_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line28to29_100";
+ equipment "line28to29";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line28to29_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line28to29_200";
+ equipment "line28to29";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_29";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line28to29_load_29";
+ equipment "line28to29";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line29to30_load_29";
+ equipment "line29to30";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line29to30_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line29to30_100";
+ equipment "line29to30";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line29to30_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line29to30_200";
+ equipment "line29to30";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line29to30_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line29to30_300";
+ equipment "line29to30";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_30";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line29to30_load_30";
+ equipment "line29to30";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line30to250_load_30";
+ equipment "line30to250";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line30to250_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line30to250_100";
+ equipment "line30to250";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line31to32_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line31to32_100";
+ equipment "line31to32";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line31to32_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line31to32_200";
+ equipment "line31to32";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_32";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line31to32_load_32";
+ equipment "line31to32";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_35";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_load_35";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line35to40_load_35";
+ equipment "line35to40";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line135to35_load_35";
+ equipment "line135to35";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to36_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_100";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to36_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_200";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to36_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_300";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to36_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_400";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to36_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_500";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to36_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_600";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_36";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to36_node_36";
+ equipment "line35to36";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line36to37_node_36";
+ equipment "line36to37";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line36to38_node_36";
+ equipment "line36to38";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to40_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to40_100";
+ equipment "line35to40";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line35to40_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to40_200";
+ equipment "line35to40";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_40";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line35to40_node_40";
+ equipment "line35to40";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line40to41_node_40";
+ equipment "line40to41";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line40to42_node_40";
+ equipment "line40to42";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line36to37_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line36to37_100";
+ equipment "line36to37";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line36to37_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line36to37_200";
+ equipment "line36to37";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_37";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line36to37_load_37";
+ equipment "line36to37";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line36to38_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line36to38_100";
+ equipment "line36to38";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line36to38_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line36to38_200";
+ equipment "line36to38";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_38";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line36to38_load_38";
+ equipment "line36to38";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line38to39_load_38";
+ equipment "line38to39";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line38to39_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line38to39_100";
+ equipment "line38to39";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line38to39_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line38to39_200";
+ equipment "line38to39";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line38to39_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line38to39_300";
+ equipment "line38to39";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_39";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line38to39_load_39";
+ equipment "line38to39";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line40to41_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to41_100";
+ equipment "line40to41";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line40to41_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to41_200";
+ equipment "line40to41";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line40to41_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to41_300";
+ equipment "line40to41";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_41";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to41_load_41";
+ equipment "line40to41";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line40to42_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to42_100";
+ equipment "line40to42";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line40to42_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to42_200";
+ equipment "line40to42";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_42";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line40to42_load_42";
+ equipment "line40to42";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line42to43_load_42";
+ equipment "line42to43";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line42to44_load_42";
+ equipment "line42to44";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line42to43_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to43_100";
+ equipment "line42to43";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line42to43_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to43_200";
+ equipment "line42to43";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line42to43_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to43_300";
+ equipment "line42to43";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line42to43_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to43_400";
+ equipment "line42to43";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_43";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to43_load_43";
+ equipment "line42to43";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line42to44_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to44_100";
+ equipment "line42to44";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_44";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line42to44_node_44";
+ equipment "line42to44";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line44to45_node_44";
+ equipment "line44to45";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line44to47_node_44";
+ equipment "line44to47";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line44to45_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line44to45_100";
+ equipment "line44to45";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_45";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line44to45_load_45";
+ equipment "line44to45";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line45to46_load_45";
+ equipment "line45to46";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line44to47_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line44to47_100";
+ equipment "line44to47";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line44to47_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line44to47_200";
+ equipment "line44to47";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_47";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line44to47_load_47";
+ equipment "line44to47";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line47to48_load_47";
+ equipment "line47to48";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line47to49_load_47";
+ equipment "line47to49";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line45to46_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line45to46_100";
+ equipment "line45to46";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line45to46_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line45to46_200";
+ equipment "line45to46";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_46";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line45to46_load_46";
+ equipment "line45to46";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line47to48_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line47to48_100";
+ equipment "line47to48";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_48";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line47to48_load_48";
+ equipment "line47to48";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line47to49_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line47to49_100";
+ equipment "line47to49";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line47to49_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line47to49_200";
+ equipment "line47to49";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_49";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line47to49_load_49";
+ equipment "line47to49";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line49to50_load_49";
+ equipment "line49to50";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line49to50_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line49to50_100";
+ equipment "line49to50";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line49to50_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line49to50_200";
+ equipment "line49to50";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_50";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line49to50_load_50";
+ equipment "line49to50";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line50to51_load_50";
+ equipment "line50to51";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line50to51_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line50to51_100";
+ equipment "line50to51";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line50to51_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line50to51_200";
+ equipment "line50to51";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_51";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line50to51_load_51";
+ equipment "line50to51";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line51to151_load_51";
+ equipment "line51to151";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line51to151_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line51to151_100";
+ equipment "line51to151";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line51to151_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line51to151_200";
+ equipment "line51to151";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line51to151_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line51to151_300";
+ equipment "line51to151";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line51to151_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line51to151_400";
+ equipment "line51to151";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_52";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line52to53_load_52";
+ equipment "line52to53";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line152to52_load_52";
+ equipment "line152to52";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line52to53_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line52to53_100";
+ equipment "line52to53";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_53";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line52to53_load_53";
+ equipment "line52to53";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line53to54_load_53";
+ equipment "line53to54";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line53to54_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line53to54_100";
+ equipment "line53to54";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line54to55_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to55_100";
+ equipment "line54to55";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line54to55_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to55_200";
+ equipment "line54to55";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_55";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to55_load_55";
+ equipment "line54to55";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line55to56_load_55";
+ equipment "line55to56";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line54to57_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to57_100";
+ equipment "line54to57";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line54to57_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to57_200";
+ equipment "line54to57";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line54to57_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to57_300";
+ equipment "line54to57";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_57";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line54to57_node_57";
+ equipment "line54to57";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line57to58_node_57";
+ equipment "line57to58";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line57to60_node_57";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line55to56_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line55to56_100";
+ equipment "line55to56";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line55to56_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line55to56_200";
+ equipment "line55to56";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_56";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line55to56_load_56";
+ equipment "line55to56";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to58_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to58_100";
+ equipment "line57to58";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to58_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to58_200";
+ equipment "line57to58";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_58";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to58_load_58";
+ equipment "line57to58";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line58to59_load_58";
+ equipment "line58to59";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_100";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_200";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_300";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_400";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_500";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_600";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line57to60_700";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line57to60_700";
+ equipment "line57to60";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line58to59_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line58to59_100";
+ equipment "line58to59";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line58to59_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line58to59_200";
+ equipment "line58to59";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_59";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line58to59_load_59";
+ equipment "line58to59";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line60to61_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line60to61_100";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line60to61_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line60to61_200";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line60to61_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line60to61_300";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line60to61_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line60to61_400";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line60to61_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line60to61_500";
+ equipment "line60to61";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_67";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to68_node_67";
+ equipment "line67to68";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line67to72_node_67";
+ equipment "line67to72";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line67to97_node_67";
+ equipment "line67to97";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line16001to67_node_67";
+ equipment "line16001to67";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line67to68_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to68_100";
+ equipment "line67to68";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_68";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to68_load_68";
+ equipment "line67to68";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line68to69_load_68";
+ equipment "line68to69";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line67to72_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to72_100";
+ equipment "line67to72";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line67to72_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to72_200";
+ equipment "line67to72";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_72";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to72_node_72";
+ equipment "line67to72";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line72to73_node_72";
+ equipment "line72to73";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line72to76_node_72";
+ equipment "line72to76";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line67to97_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to97_100";
+ equipment "line67to97";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line67to97_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line67to97_200";
+ equipment "line67to97";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line68to69_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line68to69_100";
+ equipment "line68to69";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line68to69_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line68to69_200";
+ equipment "line68to69";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_69";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line68to69_load_69";
+ equipment "line68to69";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line69to70_load_69";
+ equipment "line69to70";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line69to70_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line69to70_100";
+ equipment "line69to70";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line69to70_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line69to70_200";
+ equipment "line69to70";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line69to70_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line69to70_300";
+ equipment "line69to70";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_70";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line69to70_load_70";
+ equipment "line69to70";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line70to71_load_70";
+ equipment "line70to71";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line70to71_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line70to71_100";
+ equipment "line70to71";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line70to71_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line70to71_200";
+ equipment "line70to71";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_71";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line70to71_load_71";
+ equipment "line70to71";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line72to73_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line72to73_100";
+ equipment "line72to73";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line72to73_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line72to73_200";
+ equipment "line72to73";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_73";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line72to73_load_73";
+ equipment "line72to73";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line73to74_load_73";
+ equipment "line73to74";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line72to76_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line72to76_100";
+ equipment "line72to76";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_76";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line72to76_load_76";
+ equipment "line72to76";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line76to77_load_76";
+ equipment "line76to77";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line76to86_load_76";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line73to74_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line73to74_100";
+ equipment "line73to74";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line73to74_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line73to74_200";
+ equipment "line73to74";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line73to74_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line73to74_300";
+ equipment "line73to74";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_74";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line73to74_load_74";
+ equipment "line73to74";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line74to75_load_74";
+ equipment "line74to75";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line74to75_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line74to75_100";
+ equipment "line74to75";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line74to75_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line74to75_200";
+ equipment "line74to75";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line74to75_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line74to75_300";
+ equipment "line74to75";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_75";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line74to75_load_75";
+ equipment "line74to75";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to77_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to77_100";
+ equipment "line76to77";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to77_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to77_200";
+ equipment "line76to77";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to77_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to77_300";
+ equipment "line76to77";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_77";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to77_load_77";
+ equipment "line76to77";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line77to78_load_77";
+ equipment "line77to78";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to86_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_100";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to86_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_200";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to86_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_300";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to86_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_400";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to86_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_500";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line76to86_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_600";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_86";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line76to86_load_86";
+ equipment "line76to86";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line86to87_load_86";
+ equipment "line86to87";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_78";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line77to78_node_78";
+ equipment "line77to78";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line78to79_node_78";
+ equipment "line78to79";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line78to80_node_78";
+ equipment "line78to80";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line78to79_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to79_100";
+ equipment "line78to79";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line78to79_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to79_200";
+ equipment "line78to79";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_79";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to79_load_79";
+ equipment "line78to79";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line78to80_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to80_100";
+ equipment "line78to80";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line78to80_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to80_200";
+ equipment "line78to80";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line78to80_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to80_300";
+ equipment "line78to80";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line78to80_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to80_400";
+ equipment "line78to80";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_80";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line78to80_load_80";
+ equipment "line78to80";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line80to81_load_80";
+ equipment "line80to81";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line80to81_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line80to81_100";
+ equipment "line80to81";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line80to81_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line80to81_200";
+ equipment "line80to81";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line80to81_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line80to81_300";
+ equipment "line80to81";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line80to81_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line80to81_400";
+ equipment "line80to81";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_81";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line80to81_node_81";
+ equipment "line80to81";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line81to82_node_81";
+ equipment "line81to82";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line81to84_node_81";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to82_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to82_100";
+ equipment "line81to82";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to82_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to82_200";
+ equipment "line81to82";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_82";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to82_load_82";
+ equipment "line81to82";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line82to83_load_82";
+ equipment "line82to83";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to84_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_100";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to84_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_200";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to84_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_300";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to84_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_400";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to84_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_500";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line81to84_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_600";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_84";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line81to84_load_84";
+ equipment "line81to84";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line84to85_load_84";
+ equipment "line84to85";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line82to83_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line82to83_100";
+ equipment "line82to83";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line82to83_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line82to83_200";
+ equipment "line82to83";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_83";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line82to83_load_83";
+ equipment "line82to83";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line84to85_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line84to85_100";
+ equipment "line84to85";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line84to85_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line84to85_200";
+ equipment "line84to85";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line84to85_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line84to85_300";
+ equipment "line84to85";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line84to85_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line84to85_400";
+ equipment "line84to85";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_85";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line84to85_load_85";
+ equipment "line84to85";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line86to87_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line86to87_100";
+ equipment "line86to87";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line86to87_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line86to87_200";
+ equipment "line86to87";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line86to87_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line86to87_300";
+ equipment "line86to87";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line86to87_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line86to87_400";
+ equipment "line86to87";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_87";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line86to87_load_87";
+ equipment "line86to87";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line87to88_load_87";
+ equipment "line87to88";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line87to89_load_87";
+ equipment "line87to89";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line87to88_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line87to88_100";
+ equipment "line87to88";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_88";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line87to88_load_88";
+ equipment "line87to88";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line87to89_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line87to89_100";
+ equipment "line87to89";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line87to89_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line87to89_200";
+ equipment "line87to89";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_89";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line87to89_node_89";
+ equipment "line87to89";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line89to90_node_89";
+ equipment "line89to90";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line89to91_node_89";
+ equipment "line89to91";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line89to90_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line89to90_100";
+ equipment "line89to90";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line89to90_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line89to90_200";
+ equipment "line89to90";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_90";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line89to90_load_90";
+ equipment "line89to90";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line89to91_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line89to91_100";
+ equipment "line89to91";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line89to91_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line89to91_200";
+ equipment "line89to91";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_91";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line89to91_node_91";
+ equipment "line89to91";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line91to92_node_91";
+ equipment "line91to92";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line91to93_node_91";
+ equipment "line91to93";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line91to92_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line91to92_100";
+ equipment "line91to92";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line91to92_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line91to92_200";
+ equipment "line91to92";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_92";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line91to92_load_92";
+ equipment "line91to92";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line91to93_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line91to93_100";
+ equipment "line91to93";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line91to93_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line91to93_200";
+ equipment "line91to93";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_93";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line91to93_node_93";
+ equipment "line91to93";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line93to94_node_93";
+ equipment "line93to94";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line93to95_node_93";
+ equipment "line93to95";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line93to94_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line93to94_100";
+ equipment "line93to94";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line93to94_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line93to94_200";
+ equipment "line93to94";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_94";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line93to94_load_94";
+ equipment "line93to94";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line93to95_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line93to95_100";
+ equipment "line93to95";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line93to95_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line93to95_200";
+ equipment "line93to95";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line95to96_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line95to96_100";
+ equipment "line95to96";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_96";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line95to96_load_96";
+ equipment "line95to96";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line97to98_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line97to98_100";
+ equipment "line97to98";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line97to98_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line97to98_200";
+ equipment "line97to98";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_98";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line97to98_load_98";
+ equipment "line97to98";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line98to99_load_98";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line98to99_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line98to99_100";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line98to99_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line98to99_200";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line98to99_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line98to99_300";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line98to99_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line98to99_400";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line98to99_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line98to99_500";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_99";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line98to99_load_99";
+ equipment "line98to99";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line99to100_load_99";
+ equipment "line99to100";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line99to100_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line99to100_100";
+ equipment "line99to100";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line99to100_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line99to100_200";
+ equipment "line99to100";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line99to100_load_100";
+ equipment "line99to100";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line100to450_load_100";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_100";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_200";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_300";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_400";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_500";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_600";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line100to450_700";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line100to450_700";
+ equipment "line100to450";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_101";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to102_node_101";
+ equipment "line101to102";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line101to105_node_101";
+ equipment "line101to105";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line197to101_node_101";
+ equipment "line197to101";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line101to102_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to102_100";
+ equipment "line101to102";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line101to102_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to102_200";
+ equipment "line101to102";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_102";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to102_load_102";
+ equipment "line101to102";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line102to103_load_102";
+ equipment "line102to103";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line101to105_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to105_100";
+ equipment "line101to105";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line101to105_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to105_200";
+ equipment "line101to105";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_105";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line101to105_node_105";
+ equipment "line101to105";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line105to106_node_105";
+ equipment "line105to106";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line105to108_node_105";
+ equipment "line105to108";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line102to103_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line102to103_100";
+ equipment "line102to103";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line102to103_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line102to103_200";
+ equipment "line102to103";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line102to103_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line102to103_300";
+ equipment "line102to103";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_103";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line102to103_load_103";
+ equipment "line102to103";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line103to104_load_103";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line103to104_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_100";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line103to104_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_200";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line103to104_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_300";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line103to104_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_400";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line103to104_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_500";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line103to104_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_600";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_104";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line103to104_load_104";
+ equipment "line103to104";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line105to106_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to106_100";
+ equipment "line105to106";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line105to106_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to106_200";
+ equipment "line105to106";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_106";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to106_load_106";
+ equipment "line105to106";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line106to107_load_106";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line105to108_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to108_100";
+ equipment "line105to108";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line105to108_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to108_200";
+ equipment "line105to108";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line105to108_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to108_300";
+ equipment "line105to108";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_108";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line105to108_node_108";
+ equipment "line105to108";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line108to109_node_108";
+ equipment "line108to109";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line108to300_node_108";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line106to107_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line106to107_100";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line106to107_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line106to107_200";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line106to107_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line106to107_300";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line106to107_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line106to107_400";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line106to107_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line106to107_500";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_107";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line106to107_load_107";
+ equipment "line106to107";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to109_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to109_100";
+ equipment "line108to109";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to109_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to109_200";
+ equipment "line108to109";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to109_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to109_300";
+ equipment "line108to109";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to109_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to109_400";
+ equipment "line108to109";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_109";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to109_load_109";
+ equipment "line108to109";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line109to110_load_109";
+ equipment "line109to110";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_100";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_200";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_300";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_400";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_500";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_600";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_600";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_700";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_700";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_800";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_800";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line108to300_900";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line108to300_900";
+ equipment "line108to300";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line109to110_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line109to110_100";
+ equipment "line109to110";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line109to110_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line109to110_200";
+ equipment "line109to110";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_110";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line109to110_node_110";
+ equipment "line109to110";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line110to111_node_110";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line110to112_node_110";
+ equipment "line110to112";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line110to111_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to111_100";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line110to111_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to111_200";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line110to111_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to111_300";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line110to111_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to111_400";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line110to111_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to111_500";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_111";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to111_load_111";
+ equipment "line110to111";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line110to112_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to112_100";
+ equipment "line110to112";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_112";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line110to112_load_112";
+ equipment "line110to112";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line112to113_load_112";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line112to113_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line112to113_100";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line112to113_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line112to113_200";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line112to113_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line112to113_300";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line112to113_400";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line112to113_400";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line112to113_500";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line112to113_500";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_113";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line112to113_load_113";
+ equipment "line112to113";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+ object pole_mount
+ {
+ name "mount_line113to114_load_113";
+ equipment "line113to114";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line113to114_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line113to114_100";
+ equipment "line113to114";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line113to114_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line113to114_200";
+ equipment "line113to114";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line113to114_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line113to114_300";
+ equipment "line113to114";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_load_114";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line113to114_load_114";
+ equipment "line113to114";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_135";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line135to35_node_135";
+ equipment "line135to35";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line135to35_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line135to35_100";
+ equipment "line135to35";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line135to35_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line135to35_200";
+ equipment "line135to35";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line135to35_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line135to35_300";
+ equipment "line135to35";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_149";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line149to1_node_149";
+ equipment "line149to1";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line149to1_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line149to1_100";
+ equipment "line149to1";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line149to1_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line149to1_200";
+ equipment "line149to1";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line149to1_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line149to1_300";
+ equipment "line149to1";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_152";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line152to52_node_152";
+ equipment "line152to52";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line152to52_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line152to52_100";
+ equipment "line152to52";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line152to52_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line152to52_200";
+ equipment "line152to52";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line152to52_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line152to52_300";
+ equipment "line152to52";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_16001";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line16001to67_node_16001";
+ equipment "line16001to67";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line16001to67_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line16001to67_100";
+ equipment "line16001to67";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line16001to67_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line16001to67_200";
+ equipment "line16001to67";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line16001to67_300";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line16001to67_300";
+ equipment "line16001to67";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_node_197";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line197to101_node_197";
+ equipment "line197to101";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line197to101_100";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line197to101_100";
+ equipment "line197to101";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
+object pole
+{
+ name "pole_line197to101_200";
+ configuration "WOOD-EC-45/4";
+ weather "example";
+ install_year "2000";
+ tilt_angle "0 deg";
+ tilt_direction "0 deg";
+ object pole_mount
+ {
+ name "mount_line197to101_200";
+ equipment "line197to101";
+ pole_spacing "100.0 ft";
+ height "40 ft";
+ offset "0 ft";
+ area "0 sf";
+ direction "0 deg";
+ weight "0 lb";
+ };
+}
diff --git a/tools/autotest/test_group_modify_opt.glm b/tools/autotest/test_group_modify_opt.glm
new file mode 100644
index 000000000..26c55b505
--- /dev/null
+++ b/tools/autotest/test_group_modify_opt.glm
@@ -0,0 +1,1244 @@
+// generated by /usr/local/opt/gridlabd/4.3.3-230729-develop_add_group_tool-darwin_22-x86_64/share/gridlabd/group.py -i=test_group.json --modify --force -o=test_group_modify_opt.glm at 2023-07-29 10:35:54.839295
+#begin python
+groups = {'island_1': ['node_3', 'node_8', 'node_13', 'node_14', 'node_15', 'node_18', 'node_21', 'node_23', 'node_25', 'node_26', 'node_27', 'node_149', 'node_250', 'node_901', 'node_2501', 'load_1', 'load_2', 'load_4', 'load_5', 'load_6', 'load_7', 'load_9', 'load_10', 'load_11', 'load_12', 'load_16', 'load_17', 'load_19', 'load_20', 'load_22', 'load_24', 'load_28', 'load_29', 'load_30', 'load_31', 'load_32', 'load_33', 'load_34', 'line1to2', 'line1to3', 'line1to7', 'line3to4', 'line3to5', 'line5to6', 'line7to8', 'line8to12', 'line8to9', 'line8to13', 'line901to14', 'line13to34', 'line13to18', 'line14to11', 'line14to10', 'line15to16', 'line15to17', 'line18to19', 'line18to21', 'line19to20', 'line21to22', 'line21to23', 'line23to24', 'line23to25', 'line2501to26', 'line25to28', 'line26to27', 'line26to31', 'line27to33', 'line28to29', 'line29to30', 'line30to250', 'line31to32', 'line34to15', 'line149to1', 'reg9to901', 'reg25to2501', 'pole_load_9', 'mount_reg9to901', 'mount_line8to9_load_9', 'pole_node_25', 'mount_reg25to2501', 'mount_line23to25_node_25', 'mount_line25to28_node_25', 'mount_line8to13_node_13', 'mount_line13to34_node_13', 'mount_line13to18_node_13', 'mount_line13to18_node_18', 'mount_line18to19_node_18', 'mount_line18to21_node_18', 'pole_load_1', 'mount_line1to2_load_1', 'mount_line1to3_load_1', 'mount_line1to7_load_1', 'mount_line149to1_load_1', 'pole_line1to2_100', 'mount_line1to2_100', 'pole_load_2', 'mount_line1to2_load_2', 'pole_line1to3_100', 'mount_line1to3_100', 'pole_line1to3_200', 'mount_line1to3_200', 'pole_node_3', 'mount_line1to3_node_3', 'mount_line3to4_node_3', 'mount_line3to5_node_3', 'pole_line1to7_100', 'mount_line1to7_100', 'pole_line1to7_200', 'mount_line1to7_200', 'pole_load_7', 'mount_line1to7_load_7', 'mount_line7to8_load_7', 'pole_line3to4_100', 'mount_line3to4_100', 'pole_load_4', 'mount_line3to4_load_4', 'pole_line3to5_100', 'mount_line3to5_100', 'pole_line3to5_200', 'mount_line3to5_200', 'pole_line3to5_300', 'mount_line3to5_300', 'pole_load_5', 'mount_line3to5_load_5', 'mount_line5to6_load_5', 'pole_line5to6_100', 'mount_line5to6_100', 'pole_line5to6_200', 'mount_line5to6_200', 'pole_load_6', 'mount_line5to6_load_6', 'pole_line7to8_100', 'mount_line7to8_100', 'pole_node_8', 'mount_line7to8_node_8', 'mount_line8to12_node_8', 'mount_line8to9_node_8', 'mount_line8to13_node_8', 'pole_line8to12_100', 'mount_line8to12_100', 'pole_line8to12_200', 'mount_line8to12_200', 'pole_load_12', 'mount_line8to12_load_12', 'pole_line8to9_100', 'mount_line8to9_100', 'pole_line8to9_200', 'mount_line8to9_200', 'pole_line8to13_100', 'mount_line8to13_100', 'pole_line8to13_200', 'mount_line8to13_200', 'pole_node_901', 'mount_line901to14_node_901', 'pole_line901to14_100', 'mount_line901to14_100', 'pole_line901to14_200', 'mount_line901to14_200', 'pole_line901to14_300', 'mount_line901to14_300', 'pole_line901to14_400', 'mount_line901to14_400', 'pole_node_14', 'mount_line901to14_node_14', 'mount_line14to11_node_14', 'mount_line14to10_node_14', 'pole_line13to34_100', 'mount_line13to34_100', 'pole_load_34', 'mount_line13to34_load_34', 'mount_line34to15_load_34', 'pole_line13to18_100', 'mount_line13to18_100', 'pole_line13to18_200', 'mount_line13to18_200', 'pole_line13to18_300', 'mount_line13to18_300', 'pole_line13to18_400', 'mount_line13to18_400', 'pole_line13to18_500', 'mount_line13to18_500', 'pole_line13to18_600', 'mount_line13to18_600', 'pole_line13to18_700', 'mount_line13to18_700', 'pole_line13to18_800', 'mount_line13to18_800', 'pole_line14to11_100', 'mount_line14to11_100', 'pole_line14to11_200', 'mount_line14to11_200', 'pole_load_11', 'mount_line14to11_load_11', 'pole_line14to10_100', 'mount_line14to10_100', 'pole_line14to10_200', 'mount_line14to10_200', 'pole_load_10', 'mount_line14to10_load_10', 'pole_node_15', 'mount_line15to16_node_15', 'mount_line15to17_node_15', 'mount_line34to15_node_15', 'pole_line15to16_100', 'mount_line15to16_100', 'pole_line15to16_200', 'mount_line15to16_200', 'pole_line15to16_300', 'mount_line15to16_300', 'pole_load_16', 'mount_line15to16_load_16', 'pole_line15to17_100', 'mount_line15to17_100', 'pole_line15to17_200', 'mount_line15to17_200', 'pole_line15to17_300', 'mount_line15to17_300', 'pole_load_17', 'mount_line15to17_load_17', 'pole_line18to19_100', 'mount_line18to19_100', 'pole_line18to19_200', 'mount_line18to19_200', 'pole_load_19', 'mount_line18to19_load_19', 'mount_line19to20_load_19', 'pole_line18to21_100', 'mount_line18to21_100', 'pole_line18to21_200', 'mount_line18to21_200', 'pole_node_21', 'mount_line18to21_node_21', 'mount_line21to22_node_21', 'mount_line21to23_node_21', 'pole_line19to20_100', 'mount_line19to20_100', 'pole_line19to20_200', 'mount_line19to20_200', 'pole_line19to20_300', 'mount_line19to20_300', 'pole_load_20', 'mount_line19to20_load_20', 'pole_line21to22_100', 'mount_line21to22_100', 'pole_line21to22_200', 'mount_line21to22_200', 'pole_line21to22_300', 'mount_line21to22_300', 'pole_line21to22_400', 'mount_line21to22_400', 'pole_line21to22_500', 'mount_line21to22_500', 'pole_load_22', 'mount_line21to22_load_22', 'pole_line21to23_100', 'mount_line21to23_100', 'pole_line21to23_200', 'mount_line21to23_200', 'pole_node_23', 'mount_line21to23_node_23', 'mount_line23to24_node_23', 'mount_line23to25_node_23', 'pole_line23to24_100', 'mount_line23to24_100', 'pole_line23to24_200', 'mount_line23to24_200', 'pole_line23to24_300', 'mount_line23to24_300', 'pole_line23to24_400', 'mount_line23to24_400', 'pole_line23to24_500', 'mount_line23to24_500', 'pole_load_24', 'mount_line23to24_load_24', 'pole_line23to25_100', 'mount_line23to25_100', 'pole_line23to25_200', 'mount_line23to25_200', 'pole_node_2501', 'mount_line2501to26_node_2501', 'pole_line2501to26_100', 'mount_line2501to26_100', 'pole_line2501to26_200', 'mount_line2501to26_200', 'pole_line2501to26_300', 'mount_line2501to26_300', 'pole_node_26', 'mount_line2501to26_node_26', 'mount_line26to27_node_26', 'mount_line26to31_node_26', 'pole_line25to28_100', 'mount_line25to28_100', 'pole_load_28', 'mount_line25to28_load_28', 'mount_line28to29_load_28', 'pole_line26to27_100', 'mount_line26to27_100', 'pole_line26to27_200', 'mount_line26to27_200', 'pole_node_27', 'mount_line26to27_node_27', 'mount_line27to33_node_27', 'pole_line26to31_100', 'mount_line26to31_100', 'pole_line26to31_200', 'mount_line26to31_200', 'pole_load_31', 'mount_line26to31_load_31', 'mount_line31to32_load_31', 'pole_line27to33_100', 'mount_line27to33_100', 'pole_line27to33_200', 'mount_line27to33_200', 'pole_line27to33_300', 'mount_line27to33_300', 'pole_line27to33_400', 'mount_line27to33_400', 'pole_load_33', 'mount_line27to33_load_33', 'pole_line28to29_100', 'mount_line28to29_100', 'pole_line28to29_200', 'mount_line28to29_200', 'pole_load_29', 'mount_line28to29_load_29', 'mount_line29to30_load_29', 'pole_line29to30_100', 'mount_line29to30_100', 'pole_line29to30_200', 'mount_line29to30_200', 'pole_line29to30_300', 'mount_line29to30_300', 'pole_load_30', 'mount_line29to30_load_30', 'mount_line30to250_load_30', 'pole_line30to250_100', 'mount_line30to250_100', 'pole_line31to32_100', 'mount_line31to32_100', 'pole_line31to32_200', 'mount_line31to32_200', 'pole_load_32', 'mount_line31to32_load_32', 'pole_node_149', 'mount_line149to1_node_149', 'pole_line149to1_100', 'mount_line149to1_100', 'pole_line149to1_200', 'mount_line149to1_200', 'pole_line149to1_300', 'mount_line149to1_300'], 'island_7': ['substation_meter'], 'island_8': ['node_36', 'node_40', 'node_44', 'node_135', 'node_151', 'load_35', 'load_37', 'load_38', 'load_39', 'load_41', 'load_42', 'load_43', 'load_45', 'load_46', 'load_47', 'load_48', 'load_49', 'load_50', 'load_51', 'line35to36', 'line35to40', 'line36to37', 'line36to38', 'line38to39', 'line40to41', 'line40to42', 'line42to43', 'line42to44', 'line44to45', 'line44to47', 'line45to46', 'line47to48', 'line47to49', 'line49to50', 'line50to51', 'line51to151', 'line135to35', 'mount_line51to151_node_151', 'pole_load_35', 'mount_line35to36_load_35', 'mount_line35to40_load_35', 'mount_line135to35_load_35', 'pole_line35to36_100', 'mount_line35to36_100', 'pole_line35to36_200', 'mount_line35to36_200', 'pole_line35to36_300', 'mount_line35to36_300', 'pole_line35to36_400', 'mount_line35to36_400', 'pole_line35to36_500', 'mount_line35to36_500', 'pole_line35to36_600', 'mount_line35to36_600', 'pole_node_36', 'mount_line35to36_node_36', 'mount_line36to37_node_36', 'mount_line36to38_node_36', 'pole_line35to40_100', 'mount_line35to40_100', 'pole_line35to40_200', 'mount_line35to40_200', 'pole_node_40', 'mount_line35to40_node_40', 'mount_line40to41_node_40', 'mount_line40to42_node_40', 'pole_line36to37_100', 'mount_line36to37_100', 'pole_line36to37_200', 'mount_line36to37_200', 'pole_load_37', 'mount_line36to37_load_37', 'pole_line36to38_100', 'mount_line36to38_100', 'pole_line36to38_200', 'mount_line36to38_200', 'pole_load_38', 'mount_line36to38_load_38', 'mount_line38to39_load_38', 'pole_line38to39_100', 'mount_line38to39_100', 'pole_line38to39_200', 'mount_line38to39_200', 'pole_line38to39_300', 'mount_line38to39_300', 'pole_load_39', 'mount_line38to39_load_39', 'pole_line40to41_100', 'mount_line40to41_100', 'pole_line40to41_200', 'mount_line40to41_200', 'pole_line40to41_300', 'mount_line40to41_300', 'pole_load_41', 'mount_line40to41_load_41', 'pole_line40to42_100', 'mount_line40to42_100', 'pole_line40to42_200', 'mount_line40to42_200', 'pole_load_42', 'mount_line40to42_load_42', 'mount_line42to43_load_42', 'mount_line42to44_load_42', 'pole_line42to43_100', 'mount_line42to43_100', 'pole_line42to43_200', 'mount_line42to43_200', 'pole_line42to43_300', 'mount_line42to43_300', 'pole_line42to43_400', 'mount_line42to43_400', 'pole_load_43', 'mount_line42to43_load_43', 'pole_line42to44_100', 'mount_line42to44_100', 'pole_node_44', 'mount_line42to44_node_44', 'mount_line44to45_node_44', 'mount_line44to47_node_44', 'pole_line44to45_100', 'mount_line44to45_100', 'pole_load_45', 'mount_line44to45_load_45', 'mount_line45to46_load_45', 'pole_line44to47_100', 'mount_line44to47_100', 'pole_line44to47_200', 'mount_line44to47_200', 'pole_load_47', 'mount_line44to47_load_47', 'mount_line47to48_load_47', 'mount_line47to49_load_47', 'pole_line45to46_100', 'mount_line45to46_100', 'pole_line45to46_200', 'mount_line45to46_200', 'pole_load_46', 'mount_line45to46_load_46', 'pole_line47to48_100', 'mount_line47to48_100', 'pole_load_48', 'mount_line47to48_load_48', 'pole_line47to49_100', 'mount_line47to49_100', 'pole_line47to49_200', 'mount_line47to49_200', 'pole_load_49', 'mount_line47to49_load_49', 'mount_line49to50_load_49', 'pole_line49to50_100', 'mount_line49to50_100', 'pole_line49to50_200', 'mount_line49to50_200', 'pole_load_50', 'mount_line49to50_load_50', 'mount_line50to51_load_50', 'pole_line50to51_100', 'mount_line50to51_100', 'pole_line50to51_200', 'mount_line50to51_200', 'pole_load_51', 'mount_line50to51_load_51', 'mount_line51to151_load_51', 'pole_line51to151_100', 'mount_line51to151_100', 'pole_line51to151_200', 'mount_line51to151_200', 'pole_line51to151_300', 'mount_line51to151_300', 'pole_line51to151_400', 'mount_line51to151_400', 'pole_node_135', 'mount_line135to35_node_135', 'pole_line135to35_100', 'mount_line135to35_100', 'pole_line135to35_200', 'mount_line135to35_200', 'pole_line135to35_300', 'mount_line135to35_300'], 'island_9': ['node_54', 'node_57', 'node_61', 'node_152', 'load_52', 'load_53', 'load_55', 'load_56', 'load_58', 'load_59', 'load_60', 'load_62', 'load_63', 'load_64', 'load_65', 'load_66', 'line52to53', 'line53to54', 'line54to55', 'line54to57', 'line55to56', 'line57to58', 'line57to60', 'line58to59', 'line60to61', 'line60to62', 'line62to63', 'line63to64', 'line64to65', 'line65to66', 'line152to52', 'mount_line53to54_node_54', 'mount_line54to55_node_54', 'mount_line54to57_node_54', 'mount_line57to60_load_60', 'mount_line60to61_load_60', 'mount_line60to61_node_61', 'pole_load_52', 'mount_line52to53_load_52', 'mount_line152to52_load_52', 'pole_line52to53_100', 'mount_line52to53_100', 'pole_load_53', 'mount_line52to53_load_53', 'mount_line53to54_load_53', 'pole_line53to54_100', 'mount_line53to54_100', 'pole_line54to55_100', 'mount_line54to55_100', 'pole_line54to55_200', 'mount_line54to55_200', 'pole_load_55', 'mount_line54to55_load_55', 'mount_line55to56_load_55', 'pole_line54to57_100', 'mount_line54to57_100', 'pole_line54to57_200', 'mount_line54to57_200', 'pole_line54to57_300', 'mount_line54to57_300', 'pole_node_57', 'mount_line54to57_node_57', 'mount_line57to58_node_57', 'mount_line57to60_node_57', 'pole_line55to56_100', 'mount_line55to56_100', 'pole_line55to56_200', 'mount_line55to56_200', 'pole_load_56', 'mount_line55to56_load_56', 'pole_line57to58_100', 'mount_line57to58_100', 'pole_line57to58_200', 'mount_line57to58_200', 'pole_load_58', 'mount_line57to58_load_58', 'mount_line58to59_load_58', 'pole_line57to60_100', 'mount_line57to60_100', 'pole_line57to60_200', 'mount_line57to60_200', 'pole_line57to60_300', 'mount_line57to60_300', 'pole_line57to60_400', 'mount_line57to60_400', 'pole_line57to60_500', 'mount_line57to60_500', 'pole_line57to60_600', 'mount_line57to60_600', 'pole_line57to60_700', 'mount_line57to60_700', 'pole_line58to59_100', 'mount_line58to59_100', 'pole_line58to59_200', 'mount_line58to59_200', 'pole_load_59', 'mount_line58to59_load_59', 'pole_line60to61_100', 'mount_line60to61_100', 'pole_line60to61_200', 'mount_line60to61_200', 'pole_line60to61_300', 'mount_line60to61_300', 'pole_line60to61_400', 'mount_line60to61_400', 'pole_line60to61_500', 'mount_line60to61_500', 'pole_node_152', 'mount_line152to52_node_152', 'pole_line152to52_100', 'mount_line152to52_100', 'pole_line152to52_200', 'mount_line152to52_200', 'pole_line152to52_300', 'mount_line152to52_300'], 'island_10': ['node_67', 'node_72', 'node_78', 'node_81', 'node_89', 'node_91', 'node_93', 'node_97', 'node_160', 'node_450', 'node_16001', 'load_68', 'load_69', 'load_70', 'load_71', 'load_73', 'load_74', 'load_75', 'load_76', 'load_77', 'load_79', 'load_80', 'load_82', 'load_83', 'load_84', 'load_85', 'load_86', 'load_87', 'load_88', 'load_90', 'load_92', 'load_94', 'load_95', 'load_96', 'load_98', 'load_99', 'load_100', 'line67to68', 'line67to72', 'line67to97', 'line68to69', 'line69to70', 'line70to71', 'line72to73', 'line72to76', 'line73to74', 'line74to75', 'line76to77', 'line76to86', 'line77to78', 'line78to79', 'line78to80', 'line80to81', 'line81to82', 'line81to84', 'line82to83', 'line84to85', 'line86to87', 'line87to88', 'line87to89', 'line89to90', 'line89to91', 'line91to92', 'line91to93', 'line93to94', 'line93to95', 'line95to96', 'line97to98', 'line98to99', 'line99to100', 'line100to450', 'line16001to67', 'reg160to16001', 'pole_node_160', 'mount_reg160to16001', 'mount_line67to97_node_97', 'mount_line97to98_node_97', 'pole_node_67', 'mount_line67to68_node_67', 'mount_line67to72_node_67', 'mount_line67to97_node_67', 'mount_line16001to67_node_67', 'pole_line67to68_100', 'mount_line67to68_100', 'pole_load_68', 'mount_line67to68_load_68', 'mount_line68to69_load_68', 'pole_line67to72_100', 'mount_line67to72_100', 'pole_line67to72_200', 'mount_line67to72_200', 'pole_node_72', 'mount_line67to72_node_72', 'mount_line72to73_node_72', 'mount_line72to76_node_72', 'pole_line67to97_100', 'mount_line67to97_100', 'pole_line67to97_200', 'mount_line67to97_200', 'pole_line68to69_100', 'mount_line68to69_100', 'pole_line68to69_200', 'mount_line68to69_200', 'pole_load_69', 'mount_line68to69_load_69', 'mount_line69to70_load_69', 'pole_line69to70_100', 'mount_line69to70_100', 'pole_line69to70_200', 'mount_line69to70_200', 'pole_line69to70_300', 'mount_line69to70_300', 'pole_load_70', 'mount_line69to70_load_70', 'mount_line70to71_load_70', 'pole_line70to71_100', 'mount_line70to71_100', 'pole_line70to71_200', 'mount_line70to71_200', 'pole_load_71', 'mount_line70to71_load_71', 'pole_line72to73_100', 'mount_line72to73_100', 'pole_line72to73_200', 'mount_line72to73_200', 'pole_load_73', 'mount_line72to73_load_73', 'mount_line73to74_load_73', 'pole_line72to76_100', 'mount_line72to76_100', 'pole_load_76', 'mount_line72to76_load_76', 'mount_line76to77_load_76', 'mount_line76to86_load_76', 'pole_line73to74_100', 'mount_line73to74_100', 'pole_line73to74_200', 'mount_line73to74_200', 'pole_line73to74_300', 'mount_line73to74_300', 'pole_load_74', 'mount_line73to74_load_74', 'mount_line74to75_load_74', 'pole_line74to75_100', 'mount_line74to75_100', 'pole_line74to75_200', 'mount_line74to75_200', 'pole_line74to75_300', 'mount_line74to75_300', 'pole_load_75', 'mount_line74to75_load_75', 'pole_line76to77_100', 'mount_line76to77_100', 'pole_line76to77_200', 'mount_line76to77_200', 'pole_line76to77_300', 'mount_line76to77_300', 'pole_load_77', 'mount_line76to77_load_77', 'mount_line77to78_load_77', 'pole_line76to86_100', 'mount_line76to86_100', 'pole_line76to86_200', 'mount_line76to86_200', 'pole_line76to86_300', 'mount_line76to86_300', 'pole_line76to86_400', 'mount_line76to86_400', 'pole_line76to86_500', 'mount_line76to86_500', 'pole_line76to86_600', 'mount_line76to86_600', 'pole_load_86', 'mount_line76to86_load_86', 'mount_line86to87_load_86', 'pole_node_78', 'mount_line77to78_node_78', 'mount_line78to79_node_78', 'mount_line78to80_node_78', 'pole_line78to79_100', 'mount_line78to79_100', 'pole_line78to79_200', 'mount_line78to79_200', 'pole_load_79', 'mount_line78to79_load_79', 'pole_line78to80_100', 'mount_line78to80_100', 'pole_line78to80_200', 'mount_line78to80_200', 'pole_line78to80_300', 'mount_line78to80_300', 'pole_line78to80_400', 'mount_line78to80_400', 'pole_load_80', 'mount_line78to80_load_80', 'mount_line80to81_load_80', 'pole_line80to81_100', 'mount_line80to81_100', 'pole_line80to81_200', 'mount_line80to81_200', 'pole_line80to81_300', 'mount_line80to81_300', 'pole_line80to81_400', 'mount_line80to81_400', 'pole_node_81', 'mount_line80to81_node_81', 'mount_line81to82_node_81', 'mount_line81to84_node_81', 'pole_line81to82_100', 'mount_line81to82_100', 'pole_line81to82_200', 'mount_line81to82_200', 'pole_load_82', 'mount_line81to82_load_82', 'mount_line82to83_load_82', 'pole_line81to84_100', 'mount_line81to84_100', 'pole_line81to84_200', 'mount_line81to84_200', 'pole_line81to84_300', 'mount_line81to84_300', 'pole_line81to84_400', 'mount_line81to84_400', 'pole_line81to84_500', 'mount_line81to84_500', 'pole_line81to84_600', 'mount_line81to84_600', 'pole_load_84', 'mount_line81to84_load_84', 'mount_line84to85_load_84', 'pole_line82to83_100', 'mount_line82to83_100', 'pole_line82to83_200', 'mount_line82to83_200', 'pole_load_83', 'mount_line82to83_load_83', 'pole_line84to85_100', 'mount_line84to85_100', 'pole_line84to85_200', 'mount_line84to85_200', 'pole_line84to85_300', 'mount_line84to85_300', 'pole_line84to85_400', 'mount_line84to85_400', 'pole_load_85', 'mount_line84to85_load_85', 'pole_line86to87_100', 'mount_line86to87_100', 'pole_line86to87_200', 'mount_line86to87_200', 'pole_line86to87_300', 'mount_line86to87_300', 'pole_line86to87_400', 'mount_line86to87_400', 'pole_load_87', 'mount_line86to87_load_87', 'mount_line87to88_load_87', 'mount_line87to89_load_87', 'pole_line87to88_100', 'mount_line87to88_100', 'pole_load_88', 'mount_line87to88_load_88', 'pole_line87to89_100', 'mount_line87to89_100', 'pole_line87to89_200', 'mount_line87to89_200', 'pole_node_89', 'mount_line87to89_node_89', 'mount_line89to90_node_89', 'mount_line89to91_node_89', 'pole_line89to90_100', 'mount_line89to90_100', 'pole_line89to90_200', 'mount_line89to90_200', 'pole_load_90', 'mount_line89to90_load_90', 'pole_line89to91_100', 'mount_line89to91_100', 'pole_line89to91_200', 'mount_line89to91_200', 'pole_node_91', 'mount_line89to91_node_91', 'mount_line91to92_node_91', 'mount_line91to93_node_91', 'pole_line91to92_100', 'mount_line91to92_100', 'pole_line91to92_200', 'mount_line91to92_200', 'pole_load_92', 'mount_line91to92_load_92', 'pole_line91to93_100', 'mount_line91to93_100', 'pole_line91to93_200', 'mount_line91to93_200', 'pole_node_93', 'mount_line91to93_node_93', 'mount_line93to94_node_93', 'mount_line93to95_node_93', 'pole_line93to94_100', 'mount_line93to94_100', 'pole_line93to94_200', 'mount_line93to94_200', 'pole_load_94', 'mount_line93to94_load_94', 'pole_line93to95_100', 'mount_line93to95_100', 'pole_line93to95_200', 'mount_line93to95_200', 'pole_line95to96_100', 'mount_line95to96_100', 'pole_load_96', 'mount_line95to96_load_96', 'pole_line97to98_100', 'mount_line97to98_100', 'pole_line97to98_200', 'mount_line97to98_200', 'pole_load_98', 'mount_line97to98_load_98', 'mount_line98to99_load_98', 'pole_line98to99_100', 'mount_line98to99_100', 'pole_line98to99_200', 'mount_line98to99_200', 'pole_line98to99_300', 'mount_line98to99_300', 'pole_line98to99_400', 'mount_line98to99_400', 'pole_line98to99_500', 'mount_line98to99_500', 'pole_load_99', 'mount_line98to99_load_99', 'mount_line99to100_load_99', 'pole_line99to100_100', 'mount_line99to100_100', 'pole_line99to100_200', 'mount_line99to100_200', 'pole_load_100', 'mount_line99to100_load_100', 'mount_line100to450_load_100', 'pole_line100to450_100', 'mount_line100to450_100', 'pole_line100to450_200', 'mount_line100to450_200', 'pole_line100to450_300', 'mount_line100to450_300', 'pole_line100to450_400', 'mount_line100to450_400', 'pole_line100to450_500', 'mount_line100to450_500', 'pole_line100to450_600', 'mount_line100to450_600', 'pole_line100to450_700', 'mount_line100to450_700', 'pole_node_16001', 'mount_line16001to67_node_16001', 'pole_line16001to67_100', 'mount_line16001to67_100', 'pole_line16001to67_200', 'mount_line16001to67_200', 'pole_line16001to67_300', 'mount_line16001to67_300'], 'island_11': ['node_101', 'node_105', 'node_108', 'node_110', 'node_197', 'node_300', 'load_102', 'load_103', 'load_104', 'load_106', 'load_107', 'load_109', 'load_111', 'load_112', 'load_113', 'load_114', 'line101to102', 'line101to105', 'line102to103', 'line103to104', 'line105to106', 'line105to108', 'line106to107', 'line108to109', 'line108to300', 'line109to110', 'line110to111', 'line110to112', 'line112to113', 'line113to114', 'line197to101', 'pole_node_101', 'mount_line101to102_node_101', 'mount_line101to105_node_101', 'mount_line197to101_node_101', 'pole_line101to102_100', 'mount_line101to102_100', 'pole_line101to102_200', 'mount_line101to102_200', 'pole_load_102', 'mount_line101to102_load_102', 'mount_line102to103_load_102', 'pole_line101to105_100', 'mount_line101to105_100', 'pole_line101to105_200', 'mount_line101to105_200', 'pole_node_105', 'mount_line101to105_node_105', 'mount_line105to106_node_105', 'mount_line105to108_node_105', 'pole_line102to103_100', 'mount_line102to103_100', 'pole_line102to103_200', 'mount_line102to103_200', 'pole_line102to103_300', 'mount_line102to103_300', 'pole_load_103', 'mount_line102to103_load_103', 'mount_line103to104_load_103', 'pole_line103to104_100', 'mount_line103to104_100', 'pole_line103to104_200', 'mount_line103to104_200', 'pole_line103to104_300', 'mount_line103to104_300', 'pole_line103to104_400', 'mount_line103to104_400', 'pole_line103to104_500', 'mount_line103to104_500', 'pole_line103to104_600', 'mount_line103to104_600', 'pole_load_104', 'mount_line103to104_load_104', 'pole_line105to106_100', 'mount_line105to106_100', 'pole_line105to106_200', 'mount_line105to106_200', 'pole_load_106', 'mount_line105to106_load_106', 'mount_line106to107_load_106', 'pole_line105to108_100', 'mount_line105to108_100', 'pole_line105to108_200', 'mount_line105to108_200', 'pole_line105to108_300', 'mount_line105to108_300', 'pole_node_108', 'mount_line105to108_node_108', 'mount_line108to109_node_108', 'mount_line108to300_node_108', 'pole_line106to107_100', 'mount_line106to107_100', 'pole_line106to107_200', 'mount_line106to107_200', 'pole_line106to107_300', 'mount_line106to107_300', 'pole_line106to107_400', 'mount_line106to107_400', 'pole_line106to107_500', 'mount_line106to107_500', 'pole_load_107', 'mount_line106to107_load_107', 'pole_line108to109_100', 'mount_line108to109_100', 'pole_line108to109_200', 'mount_line108to109_200', 'pole_line108to109_300', 'mount_line108to109_300', 'pole_line108to109_400', 'mount_line108to109_400', 'pole_load_109', 'mount_line108to109_load_109', 'mount_line109to110_load_109', 'pole_line108to300_100', 'mount_line108to300_100', 'pole_line108to300_200', 'mount_line108to300_200', 'pole_line108to300_300', 'mount_line108to300_300', 'pole_line108to300_400', 'mount_line108to300_400', 'pole_line108to300_500', 'mount_line108to300_500', 'pole_line108to300_600', 'mount_line108to300_600', 'pole_line108to300_700', 'mount_line108to300_700', 'pole_line108to300_800', 'mount_line108to300_800', 'pole_line108to300_900', 'mount_line108to300_900', 'pole_line109to110_100', 'mount_line109to110_100', 'pole_line109to110_200', 'mount_line109to110_200', 'pole_node_110', 'mount_line109to110_node_110', 'mount_line110to111_node_110', 'mount_line110to112_node_110', 'pole_line110to111_100', 'mount_line110to111_100', 'pole_line110to111_200', 'mount_line110to111_200', 'pole_line110to111_300', 'mount_line110to111_300', 'pole_line110to111_400', 'mount_line110to111_400', 'pole_line110to111_500', 'mount_line110to111_500', 'pole_load_111', 'mount_line110to111_load_111', 'pole_line110to112_100', 'mount_line110to112_100', 'pole_load_112', 'mount_line110to112_load_112', 'mount_line112to113_load_112', 'pole_line112to113_100', 'mount_line112to113_100', 'pole_line112to113_200', 'mount_line112to113_200', 'pole_line112to113_300', 'mount_line112to113_300', 'pole_line112to113_400', 'mount_line112to113_400', 'pole_line112to113_500', 'mount_line112to113_500', 'pole_load_113', 'mount_line112to113_load_113', 'mount_line113to114_load_113', 'pole_line113to114_100', 'mount_line113to114_100', 'pole_line113to114_200', 'mount_line113to114_200', 'pole_line113to114_300', 'mount_line113to114_300', 'pole_load_114', 'mount_line113to114_load_114', 'pole_node_197', 'mount_line197to101_node_197', 'pole_line197to101_100', 'mount_line197to101_100', 'pole_line197to101_200', 'mount_line197to101_200'], 'island_2': ['node_150', 'node_15001', 'reg150to15001', 'pole_node_150', 'mount_reg150to15001'], 'island_12': ['node_610', 'node_6101', 'trans6101to610', 'pole_node_6101', 'mount_trans6101to610'], 'island_13': ['cap_83'], 'island_14': ['cap_88'], 'island_15': ['cap_90'], 'island_16': ['cap_92'], 'island_3': ['node_251'], 'island_4': ['node_350'], 'island_5': ['node_451'], 'island_6': ['node_195']}
+controls = {'sw13to152': ['island_1', 'island_9'], 'sw18to135': ['island_1', 'island_8'], 'sw54to94': ['island_9', 'island_10'], 'sw60to160': ['island_9', 'island_10'], 'sw61to6101': ['island_9', 'island_12'], 'sw97to197': ['island_10', 'island_11'], 'sw151to300': ['island_8', 'island_11'], 'sw15001to149': ['island_2', 'island_1'], 'sw250to251': ['island_1', 'island_3'], 'sw300to350': ['island_11', 'island_4'], 'sw450to451': ['island_10', 'island_5'], 'sw95to195': ['island_10', 'island_6']}
+swingbus = {'island_1': ['node_14'], 'island_2': ['node_150'], 'island_3': ['node_251'], 'island_4': ['node_350'], 'island_5': ['node_451'], 'island_6': ['node_195']}
+isolated = ['island_7', 'island_8', 'island_9', 'island_10', 'island_11', 'island_12', 'island_13', 'island_14', 'island_15', 'island_16']
+#end
+
+modify node_3.groupid 'island_1';
+modify node_8.groupid 'island_1';
+modify node_13.groupid 'island_1';
+modify node_14.groupid 'island_1';
+modify substation_meter.groupid 'island_7';
+modify node_15.groupid 'island_1';
+modify node_18.groupid 'island_1';
+modify node_21.groupid 'island_1';
+modify node_23.groupid 'island_1';
+modify node_25.groupid 'island_1';
+modify node_26.groupid 'island_1';
+modify node_27.groupid 'island_1';
+modify node_36.groupid 'island_8';
+modify node_40.groupid 'island_8';
+modify node_44.groupid 'island_8';
+modify node_54.groupid 'island_9';
+modify node_57.groupid 'island_9';
+modify node_61.groupid 'island_9';
+modify node_67.groupid 'island_10';
+modify node_72.groupid 'island_10';
+modify node_78.groupid 'island_10';
+modify node_81.groupid 'island_10';
+modify node_89.groupid 'island_10';
+modify node_91.groupid 'island_10';
+modify node_93.groupid 'island_10';
+modify node_97.groupid 'island_10';
+modify node_101.groupid 'island_11';
+modify node_105.groupid 'island_11';
+modify node_108.groupid 'island_11';
+modify node_110.groupid 'island_11';
+modify node_135.groupid 'island_8';
+modify node_149.groupid 'island_1';
+modify node_150.groupid 'island_2';
+modify node_151.groupid 'island_8';
+modify node_152.groupid 'island_9';
+modify node_160.groupid 'island_10';
+modify node_197.groupid 'island_11';
+modify node_250.groupid 'island_1';
+modify node_300.groupid 'island_11';
+modify node_450.groupid 'island_10';
+modify node_610.groupid 'island_12';
+modify node_901.groupid 'island_1';
+modify node_2501.groupid 'island_1';
+modify node_6101.groupid 'island_12';
+modify node_15001.groupid 'island_2';
+modify node_16001.groupid 'island_10';
+modify load_1.groupid 'island_1';
+modify load_2.groupid 'island_1';
+modify load_4.groupid 'island_1';
+modify load_5.groupid 'island_1';
+modify load_6.groupid 'island_1';
+modify load_7.groupid 'island_1';
+modify load_9.groupid 'island_1';
+modify load_10.groupid 'island_1';
+modify load_11.groupid 'island_1';
+modify load_12.groupid 'island_1';
+modify load_16.groupid 'island_1';
+modify load_17.groupid 'island_1';
+modify load_19.groupid 'island_1';
+modify load_20.groupid 'island_1';
+modify load_22.groupid 'island_1';
+modify load_24.groupid 'island_1';
+modify load_28.groupid 'island_1';
+modify load_29.groupid 'island_1';
+modify load_30.groupid 'island_1';
+modify load_31.groupid 'island_1';
+modify load_32.groupid 'island_1';
+modify load_33.groupid 'island_1';
+modify load_34.groupid 'island_1';
+modify load_35.groupid 'island_8';
+modify load_37.groupid 'island_8';
+modify load_38.groupid 'island_8';
+modify load_39.groupid 'island_8';
+modify load_41.groupid 'island_8';
+modify load_42.groupid 'island_8';
+modify load_43.groupid 'island_8';
+modify load_45.groupid 'island_8';
+modify load_46.groupid 'island_8';
+modify load_47.groupid 'island_8';
+modify load_48.groupid 'island_8';
+modify load_49.groupid 'island_8';
+modify load_50.groupid 'island_8';
+modify load_51.groupid 'island_8';
+modify load_52.groupid 'island_9';
+modify load_53.groupid 'island_9';
+modify load_55.groupid 'island_9';
+modify load_56.groupid 'island_9';
+modify load_58.groupid 'island_9';
+modify load_59.groupid 'island_9';
+modify load_60.groupid 'island_9';
+modify load_62.groupid 'island_9';
+modify load_63.groupid 'island_9';
+modify load_64.groupid 'island_9';
+modify load_65.groupid 'island_9';
+modify load_66.groupid 'island_9';
+modify load_68.groupid 'island_10';
+modify load_69.groupid 'island_10';
+modify load_70.groupid 'island_10';
+modify load_71.groupid 'island_10';
+modify load_73.groupid 'island_10';
+modify load_74.groupid 'island_10';
+modify load_75.groupid 'island_10';
+modify load_76.groupid 'island_10';
+modify load_77.groupid 'island_10';
+modify load_79.groupid 'island_10';
+modify load_80.groupid 'island_10';
+modify load_82.groupid 'island_10';
+modify load_83.groupid 'island_10';
+modify load_84.groupid 'island_10';
+modify load_85.groupid 'island_10';
+modify load_86.groupid 'island_10';
+modify load_87.groupid 'island_10';
+modify load_88.groupid 'island_10';
+modify load_90.groupid 'island_10';
+modify load_92.groupid 'island_10';
+modify load_94.groupid 'island_10';
+modify load_95.groupid 'island_10';
+modify load_96.groupid 'island_10';
+modify load_98.groupid 'island_10';
+modify load_99.groupid 'island_10';
+modify load_100.groupid 'island_10';
+modify load_102.groupid 'island_11';
+modify load_103.groupid 'island_11';
+modify load_104.groupid 'island_11';
+modify load_106.groupid 'island_11';
+modify load_107.groupid 'island_11';
+modify load_109.groupid 'island_11';
+modify load_111.groupid 'island_11';
+modify load_112.groupid 'island_11';
+modify load_113.groupid 'island_11';
+modify load_114.groupid 'island_11';
+modify line1to2.groupid 'island_1';
+modify line1to3.groupid 'island_1';
+modify line1to7.groupid 'island_1';
+modify line3to4.groupid 'island_1';
+modify line3to5.groupid 'island_1';
+modify line5to6.groupid 'island_1';
+modify line7to8.groupid 'island_1';
+modify line8to12.groupid 'island_1';
+modify line8to9.groupid 'island_1';
+modify line8to13.groupid 'island_1';
+modify line901to14.groupid 'island_1';
+modify line13to34.groupid 'island_1';
+modify line13to18.groupid 'island_1';
+modify line14to11.groupid 'island_1';
+modify line14to10.groupid 'island_1';
+modify line15to16.groupid 'island_1';
+modify line15to17.groupid 'island_1';
+modify line18to19.groupid 'island_1';
+modify line18to21.groupid 'island_1';
+modify line19to20.groupid 'island_1';
+modify line21to22.groupid 'island_1';
+modify line21to23.groupid 'island_1';
+modify line23to24.groupid 'island_1';
+modify line23to25.groupid 'island_1';
+modify line2501to26.groupid 'island_1';
+modify line25to28.groupid 'island_1';
+modify line26to27.groupid 'island_1';
+modify line26to31.groupid 'island_1';
+modify line27to33.groupid 'island_1';
+modify line28to29.groupid 'island_1';
+modify line29to30.groupid 'island_1';
+modify line30to250.groupid 'island_1';
+modify line31to32.groupid 'island_1';
+modify line34to15.groupid 'island_1';
+modify line35to36.groupid 'island_8';
+modify line35to40.groupid 'island_8';
+modify line36to37.groupid 'island_8';
+modify line36to38.groupid 'island_8';
+modify line38to39.groupid 'island_8';
+modify line40to41.groupid 'island_8';
+modify line40to42.groupid 'island_8';
+modify line42to43.groupid 'island_8';
+modify line42to44.groupid 'island_8';
+modify line44to45.groupid 'island_8';
+modify line44to47.groupid 'island_8';
+modify line45to46.groupid 'island_8';
+modify line47to48.groupid 'island_8';
+modify line47to49.groupid 'island_8';
+modify line49to50.groupid 'island_8';
+modify line50to51.groupid 'island_8';
+modify line51to151.groupid 'island_8';
+modify line52to53.groupid 'island_9';
+modify line53to54.groupid 'island_9';
+modify line54to55.groupid 'island_9';
+modify line54to57.groupid 'island_9';
+modify line55to56.groupid 'island_9';
+modify line57to58.groupid 'island_9';
+modify line57to60.groupid 'island_9';
+modify line58to59.groupid 'island_9';
+modify line60to61.groupid 'island_9';
+modify line60to62.groupid 'island_9';
+modify line62to63.groupid 'island_9';
+modify line63to64.groupid 'island_9';
+modify line64to65.groupid 'island_9';
+modify line65to66.groupid 'island_9';
+modify line67to68.groupid 'island_10';
+modify line67to72.groupid 'island_10';
+modify line67to97.groupid 'island_10';
+modify line68to69.groupid 'island_10';
+modify line69to70.groupid 'island_10';
+modify line70to71.groupid 'island_10';
+modify line72to73.groupid 'island_10';
+modify line72to76.groupid 'island_10';
+modify line73to74.groupid 'island_10';
+modify line74to75.groupid 'island_10';
+modify line76to77.groupid 'island_10';
+modify line76to86.groupid 'island_10';
+modify line77to78.groupid 'island_10';
+modify line78to79.groupid 'island_10';
+modify line78to80.groupid 'island_10';
+modify line80to81.groupid 'island_10';
+modify line81to82.groupid 'island_10';
+modify line81to84.groupid 'island_10';
+modify line82to83.groupid 'island_10';
+modify line84to85.groupid 'island_10';
+modify line86to87.groupid 'island_10';
+modify line87to88.groupid 'island_10';
+modify line87to89.groupid 'island_10';
+modify line89to90.groupid 'island_10';
+modify line89to91.groupid 'island_10';
+modify line91to92.groupid 'island_10';
+modify line91to93.groupid 'island_10';
+modify line93to94.groupid 'island_10';
+modify line93to95.groupid 'island_10';
+modify line95to96.groupid 'island_10';
+modify line97to98.groupid 'island_10';
+modify line98to99.groupid 'island_10';
+modify line99to100.groupid 'island_10';
+modify line100to450.groupid 'island_10';
+modify line101to102.groupid 'island_11';
+modify line101to105.groupid 'island_11';
+modify line102to103.groupid 'island_11';
+modify line103to104.groupid 'island_11';
+modify line105to106.groupid 'island_11';
+modify line105to108.groupid 'island_11';
+modify line106to107.groupid 'island_11';
+modify line108to109.groupid 'island_11';
+modify line108to300.groupid 'island_11';
+modify line109to110.groupid 'island_11';
+modify line110to111.groupid 'island_11';
+modify line110to112.groupid 'island_11';
+modify line112to113.groupid 'island_11';
+modify line113to114.groupid 'island_11';
+modify line135to35.groupid 'island_8';
+modify line149to1.groupid 'island_1';
+modify line152to52.groupid 'island_9';
+modify line16001to67.groupid 'island_10';
+modify line197to101.groupid 'island_11';
+modify trans6101to610.groupid 'island_12';
+modify reg150to15001.groupid 'island_2';
+modify reg9to901.groupid 'island_1';
+modify reg25to2501.groupid 'island_1';
+modify reg160to16001.groupid 'island_10';
+modify sw13to152.groupid 'control';
+modify sw18to135.groupid 'control';
+modify sw54to94.groupid 'control';
+modify sw60to160.groupid 'control';
+modify sw61to6101.groupid 'control';
+modify sw97to197.groupid 'control';
+modify sw151to300.groupid 'control';
+modify sw15001to149.groupid 'control';
+modify cap_83.groupid 'island_13';
+modify cap_88.groupid 'island_14';
+modify cap_90.groupid 'island_15';
+modify cap_92.groupid 'island_16';
+modify node_251.groupid 'island_3';
+modify node_350.groupid 'island_4';
+modify node_451.groupid 'island_5';
+modify node_195.groupid 'island_6';
+modify sw250to251.groupid 'control';
+modify sw300to350.groupid 'control';
+modify sw450to451.groupid 'control';
+modify sw95to195.groupid 'control';
+modify pole_node_6101.groupid 'island_12';
+modify mount_trans6101to610.groupid 'island_12';
+modify pole_node_150.groupid 'island_2';
+modify mount_reg150to15001.groupid 'island_2';
+modify pole_load_9.groupid 'island_1';
+modify mount_reg9to901.groupid 'island_1';
+modify mount_line8to9_load_9.groupid 'island_1';
+modify pole_node_25.groupid 'island_1';
+modify mount_reg25to2501.groupid 'island_1';
+modify mount_line23to25_node_25.groupid 'island_1';
+modify mount_line25to28_node_25.groupid 'island_1';
+modify pole_node_160.groupid 'island_10';
+modify mount_reg160to16001.groupid 'island_10';
+modify pole_node_13.groupid 'control';
+modify mount_sw13to152.groupid 'control';
+modify mount_line8to13_node_13.groupid 'island_1';
+modify mount_line13to34_node_13.groupid 'island_1';
+modify mount_line13to18_node_13.groupid 'island_1';
+modify pole_node_18.groupid 'control';
+modify mount_sw18to135.groupid 'control';
+modify mount_line13to18_node_18.groupid 'island_1';
+modify mount_line18to19_node_18.groupid 'island_1';
+modify mount_line18to21_node_18.groupid 'island_1';
+modify pole_node_54.groupid 'control';
+modify mount_sw54to94.groupid 'control';
+modify mount_line53to54_node_54.groupid 'island_9';
+modify mount_line54to55_node_54.groupid 'island_9';
+modify mount_line54to57_node_54.groupid 'island_9';
+modify pole_load_60.groupid 'control';
+modify mount_sw60to160.groupid 'control';
+modify mount_line57to60_load_60.groupid 'island_9';
+modify mount_line60to61_load_60.groupid 'island_9';
+modify pole_node_61.groupid 'control';
+modify mount_sw61to6101.groupid 'control';
+modify mount_line60to61_node_61.groupid 'island_9';
+modify pole_node_97.groupid 'control';
+modify mount_sw97to197.groupid 'control';
+modify mount_line67to97_node_97.groupid 'island_10';
+modify mount_line97to98_node_97.groupid 'island_10';
+modify pole_node_151.groupid 'control';
+modify mount_sw151to300.groupid 'control';
+modify mount_line51to151_node_151.groupid 'island_8';
+modify pole_node_15001.groupid 'control';
+modify mount_sw15001to149.groupid 'control';
+modify pole_load_1.groupid 'island_1';
+modify mount_line1to2_load_1.groupid 'island_1';
+modify mount_line1to3_load_1.groupid 'island_1';
+modify mount_line1to7_load_1.groupid 'island_1';
+modify mount_line149to1_load_1.groupid 'island_1';
+modify pole_line1to2_100.groupid 'island_1';
+modify mount_line1to2_100.groupid 'island_1';
+modify pole_load_2.groupid 'island_1';
+modify mount_line1to2_load_2.groupid 'island_1';
+modify pole_line1to3_100.groupid 'island_1';
+modify mount_line1to3_100.groupid 'island_1';
+modify pole_line1to3_200.groupid 'island_1';
+modify mount_line1to3_200.groupid 'island_1';
+modify pole_node_3.groupid 'island_1';
+modify mount_line1to3_node_3.groupid 'island_1';
+modify mount_line3to4_node_3.groupid 'island_1';
+modify mount_line3to5_node_3.groupid 'island_1';
+modify pole_line1to7_100.groupid 'island_1';
+modify mount_line1to7_100.groupid 'island_1';
+modify pole_line1to7_200.groupid 'island_1';
+modify mount_line1to7_200.groupid 'island_1';
+modify pole_load_7.groupid 'island_1';
+modify mount_line1to7_load_7.groupid 'island_1';
+modify mount_line7to8_load_7.groupid 'island_1';
+modify pole_line3to4_100.groupid 'island_1';
+modify mount_line3to4_100.groupid 'island_1';
+modify pole_load_4.groupid 'island_1';
+modify mount_line3to4_load_4.groupid 'island_1';
+modify pole_line3to5_100.groupid 'island_1';
+modify mount_line3to5_100.groupid 'island_1';
+modify pole_line3to5_200.groupid 'island_1';
+modify mount_line3to5_200.groupid 'island_1';
+modify pole_line3to5_300.groupid 'island_1';
+modify mount_line3to5_300.groupid 'island_1';
+modify pole_load_5.groupid 'island_1';
+modify mount_line3to5_load_5.groupid 'island_1';
+modify mount_line5to6_load_5.groupid 'island_1';
+modify pole_line5to6_100.groupid 'island_1';
+modify mount_line5to6_100.groupid 'island_1';
+modify pole_line5to6_200.groupid 'island_1';
+modify mount_line5to6_200.groupid 'island_1';
+modify pole_load_6.groupid 'island_1';
+modify mount_line5to6_load_6.groupid 'island_1';
+modify pole_line7to8_100.groupid 'island_1';
+modify mount_line7to8_100.groupid 'island_1';
+modify pole_node_8.groupid 'island_1';
+modify mount_line7to8_node_8.groupid 'island_1';
+modify mount_line8to12_node_8.groupid 'island_1';
+modify mount_line8to9_node_8.groupid 'island_1';
+modify mount_line8to13_node_8.groupid 'island_1';
+modify pole_line8to12_100.groupid 'island_1';
+modify mount_line8to12_100.groupid 'island_1';
+modify pole_line8to12_200.groupid 'island_1';
+modify mount_line8to12_200.groupid 'island_1';
+modify pole_load_12.groupid 'island_1';
+modify mount_line8to12_load_12.groupid 'island_1';
+modify pole_line8to9_100.groupid 'island_1';
+modify mount_line8to9_100.groupid 'island_1';
+modify pole_line8to9_200.groupid 'island_1';
+modify mount_line8to9_200.groupid 'island_1';
+modify pole_line8to13_100.groupid 'island_1';
+modify mount_line8to13_100.groupid 'island_1';
+modify pole_line8to13_200.groupid 'island_1';
+modify mount_line8to13_200.groupid 'island_1';
+modify pole_node_901.groupid 'island_1';
+modify mount_line901to14_node_901.groupid 'island_1';
+modify pole_line901to14_100.groupid 'island_1';
+modify mount_line901to14_100.groupid 'island_1';
+modify pole_line901to14_200.groupid 'island_1';
+modify mount_line901to14_200.groupid 'island_1';
+modify pole_line901to14_300.groupid 'island_1';
+modify mount_line901to14_300.groupid 'island_1';
+modify pole_line901to14_400.groupid 'island_1';
+modify mount_line901to14_400.groupid 'island_1';
+modify pole_node_14.groupid 'island_1';
+modify mount_line901to14_node_14.groupid 'island_1';
+modify mount_line14to11_node_14.groupid 'island_1';
+modify mount_line14to10_node_14.groupid 'island_1';
+modify pole_line13to34_100.groupid 'island_1';
+modify mount_line13to34_100.groupid 'island_1';
+modify pole_load_34.groupid 'island_1';
+modify mount_line13to34_load_34.groupid 'island_1';
+modify mount_line34to15_load_34.groupid 'island_1';
+modify pole_line13to18_100.groupid 'island_1';
+modify mount_line13to18_100.groupid 'island_1';
+modify pole_line13to18_200.groupid 'island_1';
+modify mount_line13to18_200.groupid 'island_1';
+modify pole_line13to18_300.groupid 'island_1';
+modify mount_line13to18_300.groupid 'island_1';
+modify pole_line13to18_400.groupid 'island_1';
+modify mount_line13to18_400.groupid 'island_1';
+modify pole_line13to18_500.groupid 'island_1';
+modify mount_line13to18_500.groupid 'island_1';
+modify pole_line13to18_600.groupid 'island_1';
+modify mount_line13to18_600.groupid 'island_1';
+modify pole_line13to18_700.groupid 'island_1';
+modify mount_line13to18_700.groupid 'island_1';
+modify pole_line13to18_800.groupid 'island_1';
+modify mount_line13to18_800.groupid 'island_1';
+modify pole_line14to11_100.groupid 'island_1';
+modify mount_line14to11_100.groupid 'island_1';
+modify pole_line14to11_200.groupid 'island_1';
+modify mount_line14to11_200.groupid 'island_1';
+modify pole_load_11.groupid 'island_1';
+modify mount_line14to11_load_11.groupid 'island_1';
+modify pole_line14to10_100.groupid 'island_1';
+modify mount_line14to10_100.groupid 'island_1';
+modify pole_line14to10_200.groupid 'island_1';
+modify mount_line14to10_200.groupid 'island_1';
+modify pole_load_10.groupid 'island_1';
+modify mount_line14to10_load_10.groupid 'island_1';
+modify pole_node_15.groupid 'island_1';
+modify mount_line15to16_node_15.groupid 'island_1';
+modify mount_line15to17_node_15.groupid 'island_1';
+modify mount_line34to15_node_15.groupid 'island_1';
+modify pole_line15to16_100.groupid 'island_1';
+modify mount_line15to16_100.groupid 'island_1';
+modify pole_line15to16_200.groupid 'island_1';
+modify mount_line15to16_200.groupid 'island_1';
+modify pole_line15to16_300.groupid 'island_1';
+modify mount_line15to16_300.groupid 'island_1';
+modify pole_load_16.groupid 'island_1';
+modify mount_line15to16_load_16.groupid 'island_1';
+modify pole_line15to17_100.groupid 'island_1';
+modify mount_line15to17_100.groupid 'island_1';
+modify pole_line15to17_200.groupid 'island_1';
+modify mount_line15to17_200.groupid 'island_1';
+modify pole_line15to17_300.groupid 'island_1';
+modify mount_line15to17_300.groupid 'island_1';
+modify pole_load_17.groupid 'island_1';
+modify mount_line15to17_load_17.groupid 'island_1';
+modify pole_line18to19_100.groupid 'island_1';
+modify mount_line18to19_100.groupid 'island_1';
+modify pole_line18to19_200.groupid 'island_1';
+modify mount_line18to19_200.groupid 'island_1';
+modify pole_load_19.groupid 'island_1';
+modify mount_line18to19_load_19.groupid 'island_1';
+modify mount_line19to20_load_19.groupid 'island_1';
+modify pole_line18to21_100.groupid 'island_1';
+modify mount_line18to21_100.groupid 'island_1';
+modify pole_line18to21_200.groupid 'island_1';
+modify mount_line18to21_200.groupid 'island_1';
+modify pole_node_21.groupid 'island_1';
+modify mount_line18to21_node_21.groupid 'island_1';
+modify mount_line21to22_node_21.groupid 'island_1';
+modify mount_line21to23_node_21.groupid 'island_1';
+modify pole_line19to20_100.groupid 'island_1';
+modify mount_line19to20_100.groupid 'island_1';
+modify pole_line19to20_200.groupid 'island_1';
+modify mount_line19to20_200.groupid 'island_1';
+modify pole_line19to20_300.groupid 'island_1';
+modify mount_line19to20_300.groupid 'island_1';
+modify pole_load_20.groupid 'island_1';
+modify mount_line19to20_load_20.groupid 'island_1';
+modify pole_line21to22_100.groupid 'island_1';
+modify mount_line21to22_100.groupid 'island_1';
+modify pole_line21to22_200.groupid 'island_1';
+modify mount_line21to22_200.groupid 'island_1';
+modify pole_line21to22_300.groupid 'island_1';
+modify mount_line21to22_300.groupid 'island_1';
+modify pole_line21to22_400.groupid 'island_1';
+modify mount_line21to22_400.groupid 'island_1';
+modify pole_line21to22_500.groupid 'island_1';
+modify mount_line21to22_500.groupid 'island_1';
+modify pole_load_22.groupid 'island_1';
+modify mount_line21to22_load_22.groupid 'island_1';
+modify pole_line21to23_100.groupid 'island_1';
+modify mount_line21to23_100.groupid 'island_1';
+modify pole_line21to23_200.groupid 'island_1';
+modify mount_line21to23_200.groupid 'island_1';
+modify pole_node_23.groupid 'island_1';
+modify mount_line21to23_node_23.groupid 'island_1';
+modify mount_line23to24_node_23.groupid 'island_1';
+modify mount_line23to25_node_23.groupid 'island_1';
+modify pole_line23to24_100.groupid 'island_1';
+modify mount_line23to24_100.groupid 'island_1';
+modify pole_line23to24_200.groupid 'island_1';
+modify mount_line23to24_200.groupid 'island_1';
+modify pole_line23to24_300.groupid 'island_1';
+modify mount_line23to24_300.groupid 'island_1';
+modify pole_line23to24_400.groupid 'island_1';
+modify mount_line23to24_400.groupid 'island_1';
+modify pole_line23to24_500.groupid 'island_1';
+modify mount_line23to24_500.groupid 'island_1';
+modify pole_load_24.groupid 'island_1';
+modify mount_line23to24_load_24.groupid 'island_1';
+modify pole_line23to25_100.groupid 'island_1';
+modify mount_line23to25_100.groupid 'island_1';
+modify pole_line23to25_200.groupid 'island_1';
+modify mount_line23to25_200.groupid 'island_1';
+modify pole_node_2501.groupid 'island_1';
+modify mount_line2501to26_node_2501.groupid 'island_1';
+modify pole_line2501to26_100.groupid 'island_1';
+modify mount_line2501to26_100.groupid 'island_1';
+modify pole_line2501to26_200.groupid 'island_1';
+modify mount_line2501to26_200.groupid 'island_1';
+modify pole_line2501to26_300.groupid 'island_1';
+modify mount_line2501to26_300.groupid 'island_1';
+modify pole_node_26.groupid 'island_1';
+modify mount_line2501to26_node_26.groupid 'island_1';
+modify mount_line26to27_node_26.groupid 'island_1';
+modify mount_line26to31_node_26.groupid 'island_1';
+modify pole_line25to28_100.groupid 'island_1';
+modify mount_line25to28_100.groupid 'island_1';
+modify pole_load_28.groupid 'island_1';
+modify mount_line25to28_load_28.groupid 'island_1';
+modify mount_line28to29_load_28.groupid 'island_1';
+modify pole_line26to27_100.groupid 'island_1';
+modify mount_line26to27_100.groupid 'island_1';
+modify pole_line26to27_200.groupid 'island_1';
+modify mount_line26to27_200.groupid 'island_1';
+modify pole_node_27.groupid 'island_1';
+modify mount_line26to27_node_27.groupid 'island_1';
+modify mount_line27to33_node_27.groupid 'island_1';
+modify pole_line26to31_100.groupid 'island_1';
+modify mount_line26to31_100.groupid 'island_1';
+modify pole_line26to31_200.groupid 'island_1';
+modify mount_line26to31_200.groupid 'island_1';
+modify pole_load_31.groupid 'island_1';
+modify mount_line26to31_load_31.groupid 'island_1';
+modify mount_line31to32_load_31.groupid 'island_1';
+modify pole_line27to33_100.groupid 'island_1';
+modify mount_line27to33_100.groupid 'island_1';
+modify pole_line27to33_200.groupid 'island_1';
+modify mount_line27to33_200.groupid 'island_1';
+modify pole_line27to33_300.groupid 'island_1';
+modify mount_line27to33_300.groupid 'island_1';
+modify pole_line27to33_400.groupid 'island_1';
+modify mount_line27to33_400.groupid 'island_1';
+modify pole_load_33.groupid 'island_1';
+modify mount_line27to33_load_33.groupid 'island_1';
+modify pole_line28to29_100.groupid 'island_1';
+modify mount_line28to29_100.groupid 'island_1';
+modify pole_line28to29_200.groupid 'island_1';
+modify mount_line28to29_200.groupid 'island_1';
+modify pole_load_29.groupid 'island_1';
+modify mount_line28to29_load_29.groupid 'island_1';
+modify mount_line29to30_load_29.groupid 'island_1';
+modify pole_line29to30_100.groupid 'island_1';
+modify mount_line29to30_100.groupid 'island_1';
+modify pole_line29to30_200.groupid 'island_1';
+modify mount_line29to30_200.groupid 'island_1';
+modify pole_line29to30_300.groupid 'island_1';
+modify mount_line29to30_300.groupid 'island_1';
+modify pole_load_30.groupid 'island_1';
+modify mount_line29to30_load_30.groupid 'island_1';
+modify mount_line30to250_load_30.groupid 'island_1';
+modify pole_line30to250_100.groupid 'island_1';
+modify mount_line30to250_100.groupid 'island_1';
+modify pole_line31to32_100.groupid 'island_1';
+modify mount_line31to32_100.groupid 'island_1';
+modify pole_line31to32_200.groupid 'island_1';
+modify mount_line31to32_200.groupid 'island_1';
+modify pole_load_32.groupid 'island_1';
+modify mount_line31to32_load_32.groupid 'island_1';
+modify pole_load_35.groupid 'island_8';
+modify mount_line35to36_load_35.groupid 'island_8';
+modify mount_line35to40_load_35.groupid 'island_8';
+modify mount_line135to35_load_35.groupid 'island_8';
+modify pole_line35to36_100.groupid 'island_8';
+modify mount_line35to36_100.groupid 'island_8';
+modify pole_line35to36_200.groupid 'island_8';
+modify mount_line35to36_200.groupid 'island_8';
+modify pole_line35to36_300.groupid 'island_8';
+modify mount_line35to36_300.groupid 'island_8';
+modify pole_line35to36_400.groupid 'island_8';
+modify mount_line35to36_400.groupid 'island_8';
+modify pole_line35to36_500.groupid 'island_8';
+modify mount_line35to36_500.groupid 'island_8';
+modify pole_line35to36_600.groupid 'island_8';
+modify mount_line35to36_600.groupid 'island_8';
+modify pole_node_36.groupid 'island_8';
+modify mount_line35to36_node_36.groupid 'island_8';
+modify mount_line36to37_node_36.groupid 'island_8';
+modify mount_line36to38_node_36.groupid 'island_8';
+modify pole_line35to40_100.groupid 'island_8';
+modify mount_line35to40_100.groupid 'island_8';
+modify pole_line35to40_200.groupid 'island_8';
+modify mount_line35to40_200.groupid 'island_8';
+modify pole_node_40.groupid 'island_8';
+modify mount_line35to40_node_40.groupid 'island_8';
+modify mount_line40to41_node_40.groupid 'island_8';
+modify mount_line40to42_node_40.groupid 'island_8';
+modify pole_line36to37_100.groupid 'island_8';
+modify mount_line36to37_100.groupid 'island_8';
+modify pole_line36to37_200.groupid 'island_8';
+modify mount_line36to37_200.groupid 'island_8';
+modify pole_load_37.groupid 'island_8';
+modify mount_line36to37_load_37.groupid 'island_8';
+modify pole_line36to38_100.groupid 'island_8';
+modify mount_line36to38_100.groupid 'island_8';
+modify pole_line36to38_200.groupid 'island_8';
+modify mount_line36to38_200.groupid 'island_8';
+modify pole_load_38.groupid 'island_8';
+modify mount_line36to38_load_38.groupid 'island_8';
+modify mount_line38to39_load_38.groupid 'island_8';
+modify pole_line38to39_100.groupid 'island_8';
+modify mount_line38to39_100.groupid 'island_8';
+modify pole_line38to39_200.groupid 'island_8';
+modify mount_line38to39_200.groupid 'island_8';
+modify pole_line38to39_300.groupid 'island_8';
+modify mount_line38to39_300.groupid 'island_8';
+modify pole_load_39.groupid 'island_8';
+modify mount_line38to39_load_39.groupid 'island_8';
+modify pole_line40to41_100.groupid 'island_8';
+modify mount_line40to41_100.groupid 'island_8';
+modify pole_line40to41_200.groupid 'island_8';
+modify mount_line40to41_200.groupid 'island_8';
+modify pole_line40to41_300.groupid 'island_8';
+modify mount_line40to41_300.groupid 'island_8';
+modify pole_load_41.groupid 'island_8';
+modify mount_line40to41_load_41.groupid 'island_8';
+modify pole_line40to42_100.groupid 'island_8';
+modify mount_line40to42_100.groupid 'island_8';
+modify pole_line40to42_200.groupid 'island_8';
+modify mount_line40to42_200.groupid 'island_8';
+modify pole_load_42.groupid 'island_8';
+modify mount_line40to42_load_42.groupid 'island_8';
+modify mount_line42to43_load_42.groupid 'island_8';
+modify mount_line42to44_load_42.groupid 'island_8';
+modify pole_line42to43_100.groupid 'island_8';
+modify mount_line42to43_100.groupid 'island_8';
+modify pole_line42to43_200.groupid 'island_8';
+modify mount_line42to43_200.groupid 'island_8';
+modify pole_line42to43_300.groupid 'island_8';
+modify mount_line42to43_300.groupid 'island_8';
+modify pole_line42to43_400.groupid 'island_8';
+modify mount_line42to43_400.groupid 'island_8';
+modify pole_load_43.groupid 'island_8';
+modify mount_line42to43_load_43.groupid 'island_8';
+modify pole_line42to44_100.groupid 'island_8';
+modify mount_line42to44_100.groupid 'island_8';
+modify pole_node_44.groupid 'island_8';
+modify mount_line42to44_node_44.groupid 'island_8';
+modify mount_line44to45_node_44.groupid 'island_8';
+modify mount_line44to47_node_44.groupid 'island_8';
+modify pole_line44to45_100.groupid 'island_8';
+modify mount_line44to45_100.groupid 'island_8';
+modify pole_load_45.groupid 'island_8';
+modify mount_line44to45_load_45.groupid 'island_8';
+modify mount_line45to46_load_45.groupid 'island_8';
+modify pole_line44to47_100.groupid 'island_8';
+modify mount_line44to47_100.groupid 'island_8';
+modify pole_line44to47_200.groupid 'island_8';
+modify mount_line44to47_200.groupid 'island_8';
+modify pole_load_47.groupid 'island_8';
+modify mount_line44to47_load_47.groupid 'island_8';
+modify mount_line47to48_load_47.groupid 'island_8';
+modify mount_line47to49_load_47.groupid 'island_8';
+modify pole_line45to46_100.groupid 'island_8';
+modify mount_line45to46_100.groupid 'island_8';
+modify pole_line45to46_200.groupid 'island_8';
+modify mount_line45to46_200.groupid 'island_8';
+modify pole_load_46.groupid 'island_8';
+modify mount_line45to46_load_46.groupid 'island_8';
+modify pole_line47to48_100.groupid 'island_8';
+modify mount_line47to48_100.groupid 'island_8';
+modify pole_load_48.groupid 'island_8';
+modify mount_line47to48_load_48.groupid 'island_8';
+modify pole_line47to49_100.groupid 'island_8';
+modify mount_line47to49_100.groupid 'island_8';
+modify pole_line47to49_200.groupid 'island_8';
+modify mount_line47to49_200.groupid 'island_8';
+modify pole_load_49.groupid 'island_8';
+modify mount_line47to49_load_49.groupid 'island_8';
+modify mount_line49to50_load_49.groupid 'island_8';
+modify pole_line49to50_100.groupid 'island_8';
+modify mount_line49to50_100.groupid 'island_8';
+modify pole_line49to50_200.groupid 'island_8';
+modify mount_line49to50_200.groupid 'island_8';
+modify pole_load_50.groupid 'island_8';
+modify mount_line49to50_load_50.groupid 'island_8';
+modify mount_line50to51_load_50.groupid 'island_8';
+modify pole_line50to51_100.groupid 'island_8';
+modify mount_line50to51_100.groupid 'island_8';
+modify pole_line50to51_200.groupid 'island_8';
+modify mount_line50to51_200.groupid 'island_8';
+modify pole_load_51.groupid 'island_8';
+modify mount_line50to51_load_51.groupid 'island_8';
+modify mount_line51to151_load_51.groupid 'island_8';
+modify pole_line51to151_100.groupid 'island_8';
+modify mount_line51to151_100.groupid 'island_8';
+modify pole_line51to151_200.groupid 'island_8';
+modify mount_line51to151_200.groupid 'island_8';
+modify pole_line51to151_300.groupid 'island_8';
+modify mount_line51to151_300.groupid 'island_8';
+modify pole_line51to151_400.groupid 'island_8';
+modify mount_line51to151_400.groupid 'island_8';
+modify pole_load_52.groupid 'island_9';
+modify mount_line52to53_load_52.groupid 'island_9';
+modify mount_line152to52_load_52.groupid 'island_9';
+modify pole_line52to53_100.groupid 'island_9';
+modify mount_line52to53_100.groupid 'island_9';
+modify pole_load_53.groupid 'island_9';
+modify mount_line52to53_load_53.groupid 'island_9';
+modify mount_line53to54_load_53.groupid 'island_9';
+modify pole_line53to54_100.groupid 'island_9';
+modify mount_line53to54_100.groupid 'island_9';
+modify pole_line54to55_100.groupid 'island_9';
+modify mount_line54to55_100.groupid 'island_9';
+modify pole_line54to55_200.groupid 'island_9';
+modify mount_line54to55_200.groupid 'island_9';
+modify pole_load_55.groupid 'island_9';
+modify mount_line54to55_load_55.groupid 'island_9';
+modify mount_line55to56_load_55.groupid 'island_9';
+modify pole_line54to57_100.groupid 'island_9';
+modify mount_line54to57_100.groupid 'island_9';
+modify pole_line54to57_200.groupid 'island_9';
+modify mount_line54to57_200.groupid 'island_9';
+modify pole_line54to57_300.groupid 'island_9';
+modify mount_line54to57_300.groupid 'island_9';
+modify pole_node_57.groupid 'island_9';
+modify mount_line54to57_node_57.groupid 'island_9';
+modify mount_line57to58_node_57.groupid 'island_9';
+modify mount_line57to60_node_57.groupid 'island_9';
+modify pole_line55to56_100.groupid 'island_9';
+modify mount_line55to56_100.groupid 'island_9';
+modify pole_line55to56_200.groupid 'island_9';
+modify mount_line55to56_200.groupid 'island_9';
+modify pole_load_56.groupid 'island_9';
+modify mount_line55to56_load_56.groupid 'island_9';
+modify pole_line57to58_100.groupid 'island_9';
+modify mount_line57to58_100.groupid 'island_9';
+modify pole_line57to58_200.groupid 'island_9';
+modify mount_line57to58_200.groupid 'island_9';
+modify pole_load_58.groupid 'island_9';
+modify mount_line57to58_load_58.groupid 'island_9';
+modify mount_line58to59_load_58.groupid 'island_9';
+modify pole_line57to60_100.groupid 'island_9';
+modify mount_line57to60_100.groupid 'island_9';
+modify pole_line57to60_200.groupid 'island_9';
+modify mount_line57to60_200.groupid 'island_9';
+modify pole_line57to60_300.groupid 'island_9';
+modify mount_line57to60_300.groupid 'island_9';
+modify pole_line57to60_400.groupid 'island_9';
+modify mount_line57to60_400.groupid 'island_9';
+modify pole_line57to60_500.groupid 'island_9';
+modify mount_line57to60_500.groupid 'island_9';
+modify pole_line57to60_600.groupid 'island_9';
+modify mount_line57to60_600.groupid 'island_9';
+modify pole_line57to60_700.groupid 'island_9';
+modify mount_line57to60_700.groupid 'island_9';
+modify pole_line58to59_100.groupid 'island_9';
+modify mount_line58to59_100.groupid 'island_9';
+modify pole_line58to59_200.groupid 'island_9';
+modify mount_line58to59_200.groupid 'island_9';
+modify pole_load_59.groupid 'island_9';
+modify mount_line58to59_load_59.groupid 'island_9';
+modify pole_line60to61_100.groupid 'island_9';
+modify mount_line60to61_100.groupid 'island_9';
+modify pole_line60to61_200.groupid 'island_9';
+modify mount_line60to61_200.groupid 'island_9';
+modify pole_line60to61_300.groupid 'island_9';
+modify mount_line60to61_300.groupid 'island_9';
+modify pole_line60to61_400.groupid 'island_9';
+modify mount_line60to61_400.groupid 'island_9';
+modify pole_line60to61_500.groupid 'island_9';
+modify mount_line60to61_500.groupid 'island_9';
+modify pole_node_67.groupid 'island_10';
+modify mount_line67to68_node_67.groupid 'island_10';
+modify mount_line67to72_node_67.groupid 'island_10';
+modify mount_line67to97_node_67.groupid 'island_10';
+modify mount_line16001to67_node_67.groupid 'island_10';
+modify pole_line67to68_100.groupid 'island_10';
+modify mount_line67to68_100.groupid 'island_10';
+modify pole_load_68.groupid 'island_10';
+modify mount_line67to68_load_68.groupid 'island_10';
+modify mount_line68to69_load_68.groupid 'island_10';
+modify pole_line67to72_100.groupid 'island_10';
+modify mount_line67to72_100.groupid 'island_10';
+modify pole_line67to72_200.groupid 'island_10';
+modify mount_line67to72_200.groupid 'island_10';
+modify pole_node_72.groupid 'island_10';
+modify mount_line67to72_node_72.groupid 'island_10';
+modify mount_line72to73_node_72.groupid 'island_10';
+modify mount_line72to76_node_72.groupid 'island_10';
+modify pole_line67to97_100.groupid 'island_10';
+modify mount_line67to97_100.groupid 'island_10';
+modify pole_line67to97_200.groupid 'island_10';
+modify mount_line67to97_200.groupid 'island_10';
+modify pole_line68to69_100.groupid 'island_10';
+modify mount_line68to69_100.groupid 'island_10';
+modify pole_line68to69_200.groupid 'island_10';
+modify mount_line68to69_200.groupid 'island_10';
+modify pole_load_69.groupid 'island_10';
+modify mount_line68to69_load_69.groupid 'island_10';
+modify mount_line69to70_load_69.groupid 'island_10';
+modify pole_line69to70_100.groupid 'island_10';
+modify mount_line69to70_100.groupid 'island_10';
+modify pole_line69to70_200.groupid 'island_10';
+modify mount_line69to70_200.groupid 'island_10';
+modify pole_line69to70_300.groupid 'island_10';
+modify mount_line69to70_300.groupid 'island_10';
+modify pole_load_70.groupid 'island_10';
+modify mount_line69to70_load_70.groupid 'island_10';
+modify mount_line70to71_load_70.groupid 'island_10';
+modify pole_line70to71_100.groupid 'island_10';
+modify mount_line70to71_100.groupid 'island_10';
+modify pole_line70to71_200.groupid 'island_10';
+modify mount_line70to71_200.groupid 'island_10';
+modify pole_load_71.groupid 'island_10';
+modify mount_line70to71_load_71.groupid 'island_10';
+modify pole_line72to73_100.groupid 'island_10';
+modify mount_line72to73_100.groupid 'island_10';
+modify pole_line72to73_200.groupid 'island_10';
+modify mount_line72to73_200.groupid 'island_10';
+modify pole_load_73.groupid 'island_10';
+modify mount_line72to73_load_73.groupid 'island_10';
+modify mount_line73to74_load_73.groupid 'island_10';
+modify pole_line72to76_100.groupid 'island_10';
+modify mount_line72to76_100.groupid 'island_10';
+modify pole_load_76.groupid 'island_10';
+modify mount_line72to76_load_76.groupid 'island_10';
+modify mount_line76to77_load_76.groupid 'island_10';
+modify mount_line76to86_load_76.groupid 'island_10';
+modify pole_line73to74_100.groupid 'island_10';
+modify mount_line73to74_100.groupid 'island_10';
+modify pole_line73to74_200.groupid 'island_10';
+modify mount_line73to74_200.groupid 'island_10';
+modify pole_line73to74_300.groupid 'island_10';
+modify mount_line73to74_300.groupid 'island_10';
+modify pole_load_74.groupid 'island_10';
+modify mount_line73to74_load_74.groupid 'island_10';
+modify mount_line74to75_load_74.groupid 'island_10';
+modify pole_line74to75_100.groupid 'island_10';
+modify mount_line74to75_100.groupid 'island_10';
+modify pole_line74to75_200.groupid 'island_10';
+modify mount_line74to75_200.groupid 'island_10';
+modify pole_line74to75_300.groupid 'island_10';
+modify mount_line74to75_300.groupid 'island_10';
+modify pole_load_75.groupid 'island_10';
+modify mount_line74to75_load_75.groupid 'island_10';
+modify pole_line76to77_100.groupid 'island_10';
+modify mount_line76to77_100.groupid 'island_10';
+modify pole_line76to77_200.groupid 'island_10';
+modify mount_line76to77_200.groupid 'island_10';
+modify pole_line76to77_300.groupid 'island_10';
+modify mount_line76to77_300.groupid 'island_10';
+modify pole_load_77.groupid 'island_10';
+modify mount_line76to77_load_77.groupid 'island_10';
+modify mount_line77to78_load_77.groupid 'island_10';
+modify pole_line76to86_100.groupid 'island_10';
+modify mount_line76to86_100.groupid 'island_10';
+modify pole_line76to86_200.groupid 'island_10';
+modify mount_line76to86_200.groupid 'island_10';
+modify pole_line76to86_300.groupid 'island_10';
+modify mount_line76to86_300.groupid 'island_10';
+modify pole_line76to86_400.groupid 'island_10';
+modify mount_line76to86_400.groupid 'island_10';
+modify pole_line76to86_500.groupid 'island_10';
+modify mount_line76to86_500.groupid 'island_10';
+modify pole_line76to86_600.groupid 'island_10';
+modify mount_line76to86_600.groupid 'island_10';
+modify pole_load_86.groupid 'island_10';
+modify mount_line76to86_load_86.groupid 'island_10';
+modify mount_line86to87_load_86.groupid 'island_10';
+modify pole_node_78.groupid 'island_10';
+modify mount_line77to78_node_78.groupid 'island_10';
+modify mount_line78to79_node_78.groupid 'island_10';
+modify mount_line78to80_node_78.groupid 'island_10';
+modify pole_line78to79_100.groupid 'island_10';
+modify mount_line78to79_100.groupid 'island_10';
+modify pole_line78to79_200.groupid 'island_10';
+modify mount_line78to79_200.groupid 'island_10';
+modify pole_load_79.groupid 'island_10';
+modify mount_line78to79_load_79.groupid 'island_10';
+modify pole_line78to80_100.groupid 'island_10';
+modify mount_line78to80_100.groupid 'island_10';
+modify pole_line78to80_200.groupid 'island_10';
+modify mount_line78to80_200.groupid 'island_10';
+modify pole_line78to80_300.groupid 'island_10';
+modify mount_line78to80_300.groupid 'island_10';
+modify pole_line78to80_400.groupid 'island_10';
+modify mount_line78to80_400.groupid 'island_10';
+modify pole_load_80.groupid 'island_10';
+modify mount_line78to80_load_80.groupid 'island_10';
+modify mount_line80to81_load_80.groupid 'island_10';
+modify pole_line80to81_100.groupid 'island_10';
+modify mount_line80to81_100.groupid 'island_10';
+modify pole_line80to81_200.groupid 'island_10';
+modify mount_line80to81_200.groupid 'island_10';
+modify pole_line80to81_300.groupid 'island_10';
+modify mount_line80to81_300.groupid 'island_10';
+modify pole_line80to81_400.groupid 'island_10';
+modify mount_line80to81_400.groupid 'island_10';
+modify pole_node_81.groupid 'island_10';
+modify mount_line80to81_node_81.groupid 'island_10';
+modify mount_line81to82_node_81.groupid 'island_10';
+modify mount_line81to84_node_81.groupid 'island_10';
+modify pole_line81to82_100.groupid 'island_10';
+modify mount_line81to82_100.groupid 'island_10';
+modify pole_line81to82_200.groupid 'island_10';
+modify mount_line81to82_200.groupid 'island_10';
+modify pole_load_82.groupid 'island_10';
+modify mount_line81to82_load_82.groupid 'island_10';
+modify mount_line82to83_load_82.groupid 'island_10';
+modify pole_line81to84_100.groupid 'island_10';
+modify mount_line81to84_100.groupid 'island_10';
+modify pole_line81to84_200.groupid 'island_10';
+modify mount_line81to84_200.groupid 'island_10';
+modify pole_line81to84_300.groupid 'island_10';
+modify mount_line81to84_300.groupid 'island_10';
+modify pole_line81to84_400.groupid 'island_10';
+modify mount_line81to84_400.groupid 'island_10';
+modify pole_line81to84_500.groupid 'island_10';
+modify mount_line81to84_500.groupid 'island_10';
+modify pole_line81to84_600.groupid 'island_10';
+modify mount_line81to84_600.groupid 'island_10';
+modify pole_load_84.groupid 'island_10';
+modify mount_line81to84_load_84.groupid 'island_10';
+modify mount_line84to85_load_84.groupid 'island_10';
+modify pole_line82to83_100.groupid 'island_10';
+modify mount_line82to83_100.groupid 'island_10';
+modify pole_line82to83_200.groupid 'island_10';
+modify mount_line82to83_200.groupid 'island_10';
+modify pole_load_83.groupid 'island_10';
+modify mount_line82to83_load_83.groupid 'island_10';
+modify pole_line84to85_100.groupid 'island_10';
+modify mount_line84to85_100.groupid 'island_10';
+modify pole_line84to85_200.groupid 'island_10';
+modify mount_line84to85_200.groupid 'island_10';
+modify pole_line84to85_300.groupid 'island_10';
+modify mount_line84to85_300.groupid 'island_10';
+modify pole_line84to85_400.groupid 'island_10';
+modify mount_line84to85_400.groupid 'island_10';
+modify pole_load_85.groupid 'island_10';
+modify mount_line84to85_load_85.groupid 'island_10';
+modify pole_line86to87_100.groupid 'island_10';
+modify mount_line86to87_100.groupid 'island_10';
+modify pole_line86to87_200.groupid 'island_10';
+modify mount_line86to87_200.groupid 'island_10';
+modify pole_line86to87_300.groupid 'island_10';
+modify mount_line86to87_300.groupid 'island_10';
+modify pole_line86to87_400.groupid 'island_10';
+modify mount_line86to87_400.groupid 'island_10';
+modify pole_load_87.groupid 'island_10';
+modify mount_line86to87_load_87.groupid 'island_10';
+modify mount_line87to88_load_87.groupid 'island_10';
+modify mount_line87to89_load_87.groupid 'island_10';
+modify pole_line87to88_100.groupid 'island_10';
+modify mount_line87to88_100.groupid 'island_10';
+modify pole_load_88.groupid 'island_10';
+modify mount_line87to88_load_88.groupid 'island_10';
+modify pole_line87to89_100.groupid 'island_10';
+modify mount_line87to89_100.groupid 'island_10';
+modify pole_line87to89_200.groupid 'island_10';
+modify mount_line87to89_200.groupid 'island_10';
+modify pole_node_89.groupid 'island_10';
+modify mount_line87to89_node_89.groupid 'island_10';
+modify mount_line89to90_node_89.groupid 'island_10';
+modify mount_line89to91_node_89.groupid 'island_10';
+modify pole_line89to90_100.groupid 'island_10';
+modify mount_line89to90_100.groupid 'island_10';
+modify pole_line89to90_200.groupid 'island_10';
+modify mount_line89to90_200.groupid 'island_10';
+modify pole_load_90.groupid 'island_10';
+modify mount_line89to90_load_90.groupid 'island_10';
+modify pole_line89to91_100.groupid 'island_10';
+modify mount_line89to91_100.groupid 'island_10';
+modify pole_line89to91_200.groupid 'island_10';
+modify mount_line89to91_200.groupid 'island_10';
+modify pole_node_91.groupid 'island_10';
+modify mount_line89to91_node_91.groupid 'island_10';
+modify mount_line91to92_node_91.groupid 'island_10';
+modify mount_line91to93_node_91.groupid 'island_10';
+modify pole_line91to92_100.groupid 'island_10';
+modify mount_line91to92_100.groupid 'island_10';
+modify pole_line91to92_200.groupid 'island_10';
+modify mount_line91to92_200.groupid 'island_10';
+modify pole_load_92.groupid 'island_10';
+modify mount_line91to92_load_92.groupid 'island_10';
+modify pole_line91to93_100.groupid 'island_10';
+modify mount_line91to93_100.groupid 'island_10';
+modify pole_line91to93_200.groupid 'island_10';
+modify mount_line91to93_200.groupid 'island_10';
+modify pole_node_93.groupid 'island_10';
+modify mount_line91to93_node_93.groupid 'island_10';
+modify mount_line93to94_node_93.groupid 'island_10';
+modify mount_line93to95_node_93.groupid 'island_10';
+modify pole_line93to94_100.groupid 'island_10';
+modify mount_line93to94_100.groupid 'island_10';
+modify pole_line93to94_200.groupid 'island_10';
+modify mount_line93to94_200.groupid 'island_10';
+modify pole_load_94.groupid 'island_10';
+modify mount_line93to94_load_94.groupid 'island_10';
+modify pole_line93to95_100.groupid 'island_10';
+modify mount_line93to95_100.groupid 'island_10';
+modify pole_line93to95_200.groupid 'island_10';
+modify mount_line93to95_200.groupid 'island_10';
+modify pole_line95to96_100.groupid 'island_10';
+modify mount_line95to96_100.groupid 'island_10';
+modify pole_load_96.groupid 'island_10';
+modify mount_line95to96_load_96.groupid 'island_10';
+modify pole_line97to98_100.groupid 'island_10';
+modify mount_line97to98_100.groupid 'island_10';
+modify pole_line97to98_200.groupid 'island_10';
+modify mount_line97to98_200.groupid 'island_10';
+modify pole_load_98.groupid 'island_10';
+modify mount_line97to98_load_98.groupid 'island_10';
+modify mount_line98to99_load_98.groupid 'island_10';
+modify pole_line98to99_100.groupid 'island_10';
+modify mount_line98to99_100.groupid 'island_10';
+modify pole_line98to99_200.groupid 'island_10';
+modify mount_line98to99_200.groupid 'island_10';
+modify pole_line98to99_300.groupid 'island_10';
+modify mount_line98to99_300.groupid 'island_10';
+modify pole_line98to99_400.groupid 'island_10';
+modify mount_line98to99_400.groupid 'island_10';
+modify pole_line98to99_500.groupid 'island_10';
+modify mount_line98to99_500.groupid 'island_10';
+modify pole_load_99.groupid 'island_10';
+modify mount_line98to99_load_99.groupid 'island_10';
+modify mount_line99to100_load_99.groupid 'island_10';
+modify pole_line99to100_100.groupid 'island_10';
+modify mount_line99to100_100.groupid 'island_10';
+modify pole_line99to100_200.groupid 'island_10';
+modify mount_line99to100_200.groupid 'island_10';
+modify pole_load_100.groupid 'island_10';
+modify mount_line99to100_load_100.groupid 'island_10';
+modify mount_line100to450_load_100.groupid 'island_10';
+modify pole_line100to450_100.groupid 'island_10';
+modify mount_line100to450_100.groupid 'island_10';
+modify pole_line100to450_200.groupid 'island_10';
+modify mount_line100to450_200.groupid 'island_10';
+modify pole_line100to450_300.groupid 'island_10';
+modify mount_line100to450_300.groupid 'island_10';
+modify pole_line100to450_400.groupid 'island_10';
+modify mount_line100to450_400.groupid 'island_10';
+modify pole_line100to450_500.groupid 'island_10';
+modify mount_line100to450_500.groupid 'island_10';
+modify pole_line100to450_600.groupid 'island_10';
+modify mount_line100to450_600.groupid 'island_10';
+modify pole_line100to450_700.groupid 'island_10';
+modify mount_line100to450_700.groupid 'island_10';
+modify pole_node_101.groupid 'island_11';
+modify mount_line101to102_node_101.groupid 'island_11';
+modify mount_line101to105_node_101.groupid 'island_11';
+modify mount_line197to101_node_101.groupid 'island_11';
+modify pole_line101to102_100.groupid 'island_11';
+modify mount_line101to102_100.groupid 'island_11';
+modify pole_line101to102_200.groupid 'island_11';
+modify mount_line101to102_200.groupid 'island_11';
+modify pole_load_102.groupid 'island_11';
+modify mount_line101to102_load_102.groupid 'island_11';
+modify mount_line102to103_load_102.groupid 'island_11';
+modify pole_line101to105_100.groupid 'island_11';
+modify mount_line101to105_100.groupid 'island_11';
+modify pole_line101to105_200.groupid 'island_11';
+modify mount_line101to105_200.groupid 'island_11';
+modify pole_node_105.groupid 'island_11';
+modify mount_line101to105_node_105.groupid 'island_11';
+modify mount_line105to106_node_105.groupid 'island_11';
+modify mount_line105to108_node_105.groupid 'island_11';
+modify pole_line102to103_100.groupid 'island_11';
+modify mount_line102to103_100.groupid 'island_11';
+modify pole_line102to103_200.groupid 'island_11';
+modify mount_line102to103_200.groupid 'island_11';
+modify pole_line102to103_300.groupid 'island_11';
+modify mount_line102to103_300.groupid 'island_11';
+modify pole_load_103.groupid 'island_11';
+modify mount_line102to103_load_103.groupid 'island_11';
+modify mount_line103to104_load_103.groupid 'island_11';
+modify pole_line103to104_100.groupid 'island_11';
+modify mount_line103to104_100.groupid 'island_11';
+modify pole_line103to104_200.groupid 'island_11';
+modify mount_line103to104_200.groupid 'island_11';
+modify pole_line103to104_300.groupid 'island_11';
+modify mount_line103to104_300.groupid 'island_11';
+modify pole_line103to104_400.groupid 'island_11';
+modify mount_line103to104_400.groupid 'island_11';
+modify pole_line103to104_500.groupid 'island_11';
+modify mount_line103to104_500.groupid 'island_11';
+modify pole_line103to104_600.groupid 'island_11';
+modify mount_line103to104_600.groupid 'island_11';
+modify pole_load_104.groupid 'island_11';
+modify mount_line103to104_load_104.groupid 'island_11';
+modify pole_line105to106_100.groupid 'island_11';
+modify mount_line105to106_100.groupid 'island_11';
+modify pole_line105to106_200.groupid 'island_11';
+modify mount_line105to106_200.groupid 'island_11';
+modify pole_load_106.groupid 'island_11';
+modify mount_line105to106_load_106.groupid 'island_11';
+modify mount_line106to107_load_106.groupid 'island_11';
+modify pole_line105to108_100.groupid 'island_11';
+modify mount_line105to108_100.groupid 'island_11';
+modify pole_line105to108_200.groupid 'island_11';
+modify mount_line105to108_200.groupid 'island_11';
+modify pole_line105to108_300.groupid 'island_11';
+modify mount_line105to108_300.groupid 'island_11';
+modify pole_node_108.groupid 'island_11';
+modify mount_line105to108_node_108.groupid 'island_11';
+modify mount_line108to109_node_108.groupid 'island_11';
+modify mount_line108to300_node_108.groupid 'island_11';
+modify pole_line106to107_100.groupid 'island_11';
+modify mount_line106to107_100.groupid 'island_11';
+modify pole_line106to107_200.groupid 'island_11';
+modify mount_line106to107_200.groupid 'island_11';
+modify pole_line106to107_300.groupid 'island_11';
+modify mount_line106to107_300.groupid 'island_11';
+modify pole_line106to107_400.groupid 'island_11';
+modify mount_line106to107_400.groupid 'island_11';
+modify pole_line106to107_500.groupid 'island_11';
+modify mount_line106to107_500.groupid 'island_11';
+modify pole_load_107.groupid 'island_11';
+modify mount_line106to107_load_107.groupid 'island_11';
+modify pole_line108to109_100.groupid 'island_11';
+modify mount_line108to109_100.groupid 'island_11';
+modify pole_line108to109_200.groupid 'island_11';
+modify mount_line108to109_200.groupid 'island_11';
+modify pole_line108to109_300.groupid 'island_11';
+modify mount_line108to109_300.groupid 'island_11';
+modify pole_line108to109_400.groupid 'island_11';
+modify mount_line108to109_400.groupid 'island_11';
+modify pole_load_109.groupid 'island_11';
+modify mount_line108to109_load_109.groupid 'island_11';
+modify mount_line109to110_load_109.groupid 'island_11';
+modify pole_line108to300_100.groupid 'island_11';
+modify mount_line108to300_100.groupid 'island_11';
+modify pole_line108to300_200.groupid 'island_11';
+modify mount_line108to300_200.groupid 'island_11';
+modify pole_line108to300_300.groupid 'island_11';
+modify mount_line108to300_300.groupid 'island_11';
+modify pole_line108to300_400.groupid 'island_11';
+modify mount_line108to300_400.groupid 'island_11';
+modify pole_line108to300_500.groupid 'island_11';
+modify mount_line108to300_500.groupid 'island_11';
+modify pole_line108to300_600.groupid 'island_11';
+modify mount_line108to300_600.groupid 'island_11';
+modify pole_line108to300_700.groupid 'island_11';
+modify mount_line108to300_700.groupid 'island_11';
+modify pole_line108to300_800.groupid 'island_11';
+modify mount_line108to300_800.groupid 'island_11';
+modify pole_line108to300_900.groupid 'island_11';
+modify mount_line108to300_900.groupid 'island_11';
+modify pole_line109to110_100.groupid 'island_11';
+modify mount_line109to110_100.groupid 'island_11';
+modify pole_line109to110_200.groupid 'island_11';
+modify mount_line109to110_200.groupid 'island_11';
+modify pole_node_110.groupid 'island_11';
+modify mount_line109to110_node_110.groupid 'island_11';
+modify mount_line110to111_node_110.groupid 'island_11';
+modify mount_line110to112_node_110.groupid 'island_11';
+modify pole_line110to111_100.groupid 'island_11';
+modify mount_line110to111_100.groupid 'island_11';
+modify pole_line110to111_200.groupid 'island_11';
+modify mount_line110to111_200.groupid 'island_11';
+modify pole_line110to111_300.groupid 'island_11';
+modify mount_line110to111_300.groupid 'island_11';
+modify pole_line110to111_400.groupid 'island_11';
+modify mount_line110to111_400.groupid 'island_11';
+modify pole_line110to111_500.groupid 'island_11';
+modify mount_line110to111_500.groupid 'island_11';
+modify pole_load_111.groupid 'island_11';
+modify mount_line110to111_load_111.groupid 'island_11';
+modify pole_line110to112_100.groupid 'island_11';
+modify mount_line110to112_100.groupid 'island_11';
+modify pole_load_112.groupid 'island_11';
+modify mount_line110to112_load_112.groupid 'island_11';
+modify mount_line112to113_load_112.groupid 'island_11';
+modify pole_line112to113_100.groupid 'island_11';
+modify mount_line112to113_100.groupid 'island_11';
+modify pole_line112to113_200.groupid 'island_11';
+modify mount_line112to113_200.groupid 'island_11';
+modify pole_line112to113_300.groupid 'island_11';
+modify mount_line112to113_300.groupid 'island_11';
+modify pole_line112to113_400.groupid 'island_11';
+modify mount_line112to113_400.groupid 'island_11';
+modify pole_line112to113_500.groupid 'island_11';
+modify mount_line112to113_500.groupid 'island_11';
+modify pole_load_113.groupid 'island_11';
+modify mount_line112to113_load_113.groupid 'island_11';
+modify mount_line113to114_load_113.groupid 'island_11';
+modify pole_line113to114_100.groupid 'island_11';
+modify mount_line113to114_100.groupid 'island_11';
+modify pole_line113to114_200.groupid 'island_11';
+modify mount_line113to114_200.groupid 'island_11';
+modify pole_line113to114_300.groupid 'island_11';
+modify mount_line113to114_300.groupid 'island_11';
+modify pole_load_114.groupid 'island_11';
+modify mount_line113to114_load_114.groupid 'island_11';
+modify pole_node_135.groupid 'island_8';
+modify mount_line135to35_node_135.groupid 'island_8';
+modify pole_line135to35_100.groupid 'island_8';
+modify mount_line135to35_100.groupid 'island_8';
+modify pole_line135to35_200.groupid 'island_8';
+modify mount_line135to35_200.groupid 'island_8';
+modify pole_line135to35_300.groupid 'island_8';
+modify mount_line135to35_300.groupid 'island_8';
+modify pole_node_149.groupid 'island_1';
+modify mount_line149to1_node_149.groupid 'island_1';
+modify pole_line149to1_100.groupid 'island_1';
+modify mount_line149to1_100.groupid 'island_1';
+modify pole_line149to1_200.groupid 'island_1';
+modify mount_line149to1_200.groupid 'island_1';
+modify pole_line149to1_300.groupid 'island_1';
+modify mount_line149to1_300.groupid 'island_1';
+modify pole_node_152.groupid 'island_9';
+modify mount_line152to52_node_152.groupid 'island_9';
+modify pole_line152to52_100.groupid 'island_9';
+modify mount_line152to52_100.groupid 'island_9';
+modify pole_line152to52_200.groupid 'island_9';
+modify mount_line152to52_200.groupid 'island_9';
+modify pole_line152to52_300.groupid 'island_9';
+modify mount_line152to52_300.groupid 'island_9';
+modify pole_node_16001.groupid 'island_10';
+modify mount_line16001to67_node_16001.groupid 'island_10';
+modify pole_line16001to67_100.groupid 'island_10';
+modify mount_line16001to67_100.groupid 'island_10';
+modify pole_line16001to67_200.groupid 'island_10';
+modify mount_line16001to67_200.groupid 'island_10';
+modify pole_line16001to67_300.groupid 'island_10';
+modify mount_line16001to67_300.groupid 'island_10';
+modify pole_node_197.groupid 'island_11';
+modify mount_line197to101_node_197.groupid 'island_11';
+modify pole_line197to101_100.groupid 'island_11';
+modify mount_line197to101_100.groupid 'island_11';
+modify pole_line197to101_200.groupid 'island_11';
+modify mount_line197to101_200.groupid 'island_11';
diff --git a/tools/autotest/test_group_network_opt.glm b/tools/autotest/test_group_network_opt.glm
new file mode 100644
index 000000000..f36a5ab3b
--- /dev/null
+++ b/tools/autotest/test_group_network_opt.glm
@@ -0,0 +1,3087 @@
+// IEEE 123 model
+
+#set strictnames=FALSE
+
+module powerflow
+{
+ solver_method NR;
+ line_limits FALSE;
+ default_maximum_voltage_error 1e-4;
+}
+
+// Nodes
+
+object node
+{
+ name node_3;
+ groupid nodevolts;
+ phases CN;
+ latitude 35N23.076;
+ longitude 119W0.132;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_8;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+ latitude 35N23.117;
+ longitude 119W0.031;
+}
+
+object node
+{
+ name node_13;
+ groupid nodevolts;
+ nominal_voltage 2401.7771;
+ phases ABCN;
+ latitude 35N23.117;
+ longitude 118W59.971;
+}
+
+object substation
+{
+ name node_14;
+ bustype SWING;
+ groupid nodevolts;
+ phases AN;
+ nominal_voltage 2401.7771;
+ latitude 35N23.224;
+ longitude 119W0.031;
+}
+object meter
+{
+ name substation_meter;
+ parent node_14;
+ groupid nodevolts;
+ phases AN;
+ latitude 35N23.224;
+ longitude 119W0.031;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_15;
+ phases CN;
+ latitude 35N23.076;
+ longitude 118W59.971;
+ groupid nodevolts;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_18;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_21;
+ groupid nodevolts;
+ phases ABCN;
+ latitude 35N23.302;
+ longitude 118W59.971;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_23;
+ groupid nodevolts;
+ phases ABCN;
+ latitude 35N23.343;
+ longitude 118W59.971;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_25;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_26;
+ groupid nodevolts;
+ phases ACN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_27;
+ groupid nodevolts;
+ phases ACN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_36;
+ groupid nodevolts;
+ phases ABN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_40;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_44;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_54;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_57;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_61;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_67;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_72;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_78;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_81;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_89;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_91;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_93;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_97;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_101;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_105;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_108;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_110;
+ groupid nodevolts;
+ phases AN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_135;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_149;
+ groupid nodevolts;
+ phases ABCN;
+ latitude 35N23.409;
+ longitude 118W59.643;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_150;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+ bustype SWING;
+ voltage_A 2401.777120+0.000000j;
+ voltage_B -1200.888560-2080.000000j;
+ voltage_C -1200.888560+2080.000000j;
+}
+
+object node
+{
+ name node_151;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_152;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_160;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_197;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_250;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_300;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_450;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_610;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_901;
+ groupid nodevolts;
+ phases AN;
+ latitude 35N23.388;
+ longitude 118W59.971;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_2501;
+ groupid nodevolts;
+ phases ACN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_6101;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_15001;
+ groupid nodevolts;
+ phases ABCN;
+ latitude 35N23.141;
+ longitude 118W59.679;
+ nominal_voltage 2401.7771;
+}
+
+object node
+{
+ name node_16001;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+}
+
+//Pure spot loads
+
+object load
+{
+ name load_1;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_2;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_4;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_5;
+ groupid nodevolts;
+ phases CN;
+ constant_current_C -0.557814+9.293330j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_6;
+ groupid nodevolts;
+ phases CN;
+ constant_impedance_C 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_7;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_9;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_10;
+ groupid nodevolts;
+ phases AN;
+ constant_current_A 8.327167-4.163584j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_11;
+ groupid nodevolts;
+ phases AN;
+ constant_impedance_A 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_12;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_16;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_17;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_19;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_20;
+ groupid nodevolts;
+ phases AN;
+ constant_current_A 16.654335-8.327167j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_22;
+ groupid nodevolts;
+ phases BN;
+ constant_impedance_B 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_24;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_28;
+ groupid nodevolts;
+ phases ABCN;
+ constant_current_A 16.654335-8.327167j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_29;
+ groupid nodevolts;
+ phases ABCN;
+ constant_impedance_A 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_30;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_31;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_32;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_33;
+ groupid nodevolts;
+ phases AN;
+ constant_current_A 16.654335-8.327167j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_34;
+ groupid nodevolts;
+ phases CN;
+ constant_impedance_C 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_35;
+ groupid nodevolts;
+ phases ABCD;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_37;
+ groupid nodevolts;
+ phases AN;
+ constant_impedance_A 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_38;
+ groupid nodevolts;
+ phases BN;
+ constant_current_B -7.769353-5.129747j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_39;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_41;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_42;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_43;
+ groupid nodevolts;
+ phases BN;
+ constant_impedance_B 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_45;
+ groupid nodevolts;
+ phases AN;
+ constant_current_A 8.327167-4.163584j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_46;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_47;
+ groupid nodevolts;
+ phases ABCN;
+ constant_current_A 14.572543-10.408959j;
+ constant_current_B -16.300695-7.415713j;
+ constant_current_C 1.728152+17.824672j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_48;
+ groupid nodevolts;
+ phases ABCN;
+ constant_impedance_A 54.567207+38.976577j;
+ constant_impedance_B 54.567207+38.976577j;
+ constant_impedance_C 54.567207+38.976577j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_49;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 35000.000000+25000.000000j;
+ constant_power_B 70000.000000+50000.000000j;
+ constant_power_C 35000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_50;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_51;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_52;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_53;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_55;
+ groupid nodevolts;
+ phases ABCN;
+ constant_impedance_A 230.741333+115.370667j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_56;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_58;
+ groupid nodevolts;
+ phases BN;
+ constant_current_B -7.769353-5.129747j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_59;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_60;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_62;
+ groupid nodevolts;
+ phases ABCN;
+ constant_impedance_C 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_63;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_64;
+ groupid nodevolts;
+ phases ABCN;
+ constant_current_B -28.233631-19.756998j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_65;
+ groupid nodevolts;
+ phases ABCD;
+ constant_impedance_A 327.403243+233.859459j;
+ constant_impedance_B 327.403243+233.859459j;
+ constant_impedance_C 163.701622+116.929730j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_66;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_C 75000.000000+35000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_68;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_69;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_70;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_71;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_73;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_74;
+ groupid nodevolts;
+ phases CN;
+ constant_impedance_C 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_75;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_76;
+ groupid nodevolts;
+ phases ABCD;
+ constant_current_A 31.474199-4.034142j;
+ constant_current_B -12.019231-16.826923j;
+ constant_current_C -8.562927+18.822421j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_77;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_79;
+ groupid nodevolts;
+ phases ABCN;
+ constant_impedance_A 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_80;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_82;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_83;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_84;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_85;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_86;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_87;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_88;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_90;
+ groupid nodevolts;
+ phases BN;
+ constant_current_B -15.538706-10.259493j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_92;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_94;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_95;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_96;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_98;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_99;
+ groupid nodevolts;
+ phases ABCN;
+ constant_power_B 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_100;
+ groupid nodevolts;
+ phases ABCN;
+ constant_impedance_C 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_102;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_103;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_104;
+ groupid nodevolts;
+ phases CN;
+ constant_power_C 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_106;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_107;
+ groupid nodevolts;
+ phases BN;
+ constant_power_B 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_109;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 40000.000000+20000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_111;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_112;
+ groupid nodevolts;
+ phases AN;
+ constant_current_A 8.327167-4.163584j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_113;
+ groupid nodevolts;
+ phases AN;
+ constant_impedance_A 115.370667+57.685333j;
+ nominal_voltage 2401.7771;
+}
+
+object load
+{
+ name load_114;
+ groupid nodevolts;
+ phases AN;
+ constant_power_A 20000.000000+10000.000000j;
+ nominal_voltage 2401.7771;
+}
+
+//distributed loads intermediates (2/3 load at 1/4 line)
+
+//pure distributed loads (1/3 load at end of line)
+
+//combination loads (1/3 dist load and spot load)
+
+//Pure lines (no distributed loads)
+
+object overhead_line
+{
+ name line1to2;
+ phases BN;
+ from load_1;
+ to load_2;
+ length 175.00;
+ configuration lc310;
+}
+
+
+object overhead_line
+{
+ name line1to3;
+ phases CN;
+ from load_1;
+ to node_3;
+ length 250.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line1to7;
+ phases ABCN;
+ from load_1;
+ to load_7;
+ length 300.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line3to4;
+ phases CN;
+ from node_3;
+ to load_4;
+ length 200.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line3to5;
+ phases CN;
+ from node_3;
+ to load_5;
+ length 325.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line5to6;
+ phases CN;
+ from load_5;
+ to load_6;
+ length 250.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line7to8;
+ phases ABCN;
+ from load_7;
+ to node_8;
+ length 200.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line8to12;
+ phases BN;
+ from node_8;
+ to load_12;
+ length 225.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line8to9;
+ phases AN;
+ from node_8;
+ to load_9;
+ length 225.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line8to13;
+ phases ABCN;
+ from node_8;
+ to node_13;
+ length 300.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line901to14;
+ phases AN;
+ from node_901;
+ to node_14;
+ length 425.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line13to34;
+ phases CN;
+ from node_13;
+ to load_34;
+ length 150.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line13to18;
+ phases ABCN;
+ from node_13;
+ to node_18;
+ length 825.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line14to11;
+ phases AN;
+ from node_14;
+ to load_11;
+ length 250.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line14to10;
+ phases AN;
+ from node_14;
+ to load_10;
+ length 250.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line15to16;
+ phases CN;
+ from node_15;
+ to load_16;
+ length 375.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line15to17;
+ phases CN;
+ from node_15;
+ to load_17;
+ length 350.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line18to19;
+ phases AN;
+ from node_18;
+ to load_19;
+ length 250.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line18to21;
+ phases ABCN;
+ from node_18;
+ to node_21;
+ length 300.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line19to20;
+ phases AN;
+ from load_19;
+ to load_20;
+ length 325.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line21to22;
+ phases BN;
+ from node_21;
+ to load_22;
+ length 525.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line21to23;
+ phases ABCN;
+ from node_21;
+ to node_23;
+ length 250.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line23to24;
+ phases CN;
+ from node_23;
+ to load_24;
+ length 550.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line23to25;
+ phases ABCN;
+ from node_23;
+ to node_25;
+ length 275.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line2501to26;
+ phases ACN;
+ from node_2501;
+ to node_26;
+ length 350.00;
+ configuration lc307;
+}
+
+object overhead_line
+{
+ name line25to28;
+ phases ABCN;
+ from node_25;
+ to load_28;
+ length 200.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line26to27;
+ phases ACN;
+ from node_26;
+ to node_27;
+ length 275.00;
+ configuration lc307;
+}
+
+object overhead_line
+{
+ name line26to31;
+ phases CN;
+ from node_26;
+ to load_31;
+ length 225.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line27to33;
+ phases AN;
+ from node_27;
+ to load_33;
+ length 500.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line28to29;
+ phases ABCN;
+ from load_28;
+ to load_29;
+ length 300.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line29to30;
+ phases ABCN;
+ from load_29;
+ to load_30;
+ length 350.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line30to250;
+ phases ABCN;
+ from load_30;
+ to node_250;
+ length 200.00;
+ configuration lc302;
+}
+
+object overhead_line
+{
+ name line31to32;
+ phases CN;
+ from load_31;
+ to load_32;
+ length 300.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line34to15;
+ phases CN;
+ from load_34;
+ to node_15;
+ length 100.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line35to36;
+ phases ABN;
+ from load_35;
+ to node_36;
+ length 650.00;
+ configuration lc308;
+}
+
+object overhead_line
+{
+ name line35to40;
+ phases ABCN;
+ from load_35;
+ to node_40;
+ length 250.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line36to37;
+ phases AN;
+ from node_36;
+ to load_37;
+ length 300.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line36to38;
+ phases BN;
+ from node_36;
+ to load_38;
+ length 250.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line38to39;
+ phases BN;
+ from load_38;
+ to load_39;
+ length 325.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line40to41;
+ phases CN;
+ from node_40;
+ to load_41;
+ length 325.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line40to42;
+ phases ABCN;
+ from node_40;
+ to load_42;
+ length 250.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line42to43;
+ phases BN;
+ from load_42;
+ to load_43;
+ length 500.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line42to44;
+ phases ABCN;
+ from load_42;
+ to node_44;
+ length 200.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line44to45;
+ phases AN;
+ from node_44;
+ to load_45;
+ length 200.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line44to47;
+ phases ABCN;
+ from node_44;
+ to load_47;
+ length 250.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line45to46;
+ phases AN;
+ from load_45;
+ to load_46;
+ length 300.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line47to48;
+ phases ABCN;
+ from load_47;
+ to load_48;
+ length 150.00;
+ configuration lc304;
+}
+
+object overhead_line
+{
+ name line47to49;
+ phases ABCN;
+ from load_47;
+ to load_49;
+ length 250.00;
+ configuration lc304;
+}
+
+object overhead_line
+{
+ name line49to50;
+ phases ABCN;
+ from load_49;
+ to load_50;
+ length 250.00;
+ configuration lc304;
+}
+
+object overhead_line
+{
+ name line50to51;
+ phases ABCN;
+ from load_50;
+ to load_51;
+ length 250.00;
+ configuration lc304;
+}
+
+object overhead_line
+{
+ name line51to151;
+ phases ABCN;
+ from load_51;
+ to node_151;
+ length 500.00;
+ configuration lc304;
+}
+
+object overhead_line
+{
+ name line52to53;
+ phases ABCN;
+ from load_52;
+ to load_53;
+ length 200.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line53to54;
+ phases ABCN;
+ from load_53;
+ to node_54;
+ length 125.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line54to55;
+ phases ABCN;
+ from node_54;
+ to load_55;
+ length 275.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line54to57;
+ phases ABCN;
+ from node_54;
+ to node_57;
+ length 350.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line55to56;
+ phases ABCN;
+ from load_55;
+ to load_56;
+ length 275.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line57to58;
+ phases BN;
+ from node_57;
+ to load_58;
+ length 250.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line57to60;
+ phases ABCN;
+ from node_57;
+ to load_60;
+ length 750.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line58to59;
+ phases BN;
+ from load_58;
+ to load_59;
+ length 250.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line60to61;
+ phases ABCN;
+ from load_60;
+ to node_61;
+ length 550.00;
+ configuration lc305;
+}
+
+object underground_line
+{
+ name line60to62;
+ phases ABC;
+ from load_60;
+ to load_62;
+ length 250.00;
+ configuration lc312;
+}
+
+object underground_line
+{
+ name line62to63;
+ phases ABC;
+ from load_62;
+ to load_63;
+ length 175.00;
+ configuration lc312;
+}
+
+object underground_line
+{
+ name line63to64;
+ phases ABC;
+ from load_63;
+ to load_64;
+ length 350.00;
+ configuration lc312;
+}
+
+object underground_line
+{
+ name line64to65;
+ phases ABC;
+ from load_64;
+ to load_65;
+ length 425.00;
+ configuration lc312;
+}
+
+object underground_line
+{
+ name line65to66;
+ phases ABC;
+ from load_65;
+ to load_66;
+ length 325.00;
+ configuration lc312;
+}
+
+object overhead_line
+{
+ name line67to68;
+ phases AN;
+ from node_67;
+ to load_68;
+ length 200.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line67to72;
+ phases ABCN;
+ from node_67;
+ to node_72;
+ length 275.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line67to97;
+ phases ABCN;
+ from node_67;
+ to node_97;
+ length 250.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line68to69;
+ phases AN;
+ from load_68;
+ to load_69;
+ length 275.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line69to70;
+ phases AN;
+ from load_69;
+ to load_70;
+ length 325.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line70to71;
+ phases AN;
+ from load_70;
+ to load_71;
+ length 275.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line72to73;
+ phases CN;
+ from node_72;
+ to load_73;
+ length 275.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line72to76;
+ phases ABCN;
+ from node_72;
+ to load_76;
+ length 200.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line73to74;
+ phases CN;
+ from load_73;
+ to load_74;
+ length 350.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line74to75;
+ phases CN;
+ from load_74;
+ to load_75;
+ length 400.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line76to77;
+ phases ABCN;
+ from load_76;
+ to load_77;
+ length 400.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line76to86;
+ phases ABCN;
+ from load_76;
+ to load_86;
+ length 700.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line77to78;
+ phases ABCN;
+ from load_77;
+ to node_78;
+ length 100.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line78to79;
+ phases ABCN;
+ from node_78;
+ to load_79;
+ length 225.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line78to80;
+ phases ABCN;
+ from node_78;
+ to load_80;
+ length 475.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line80to81;
+ phases ABCN;
+ from load_80;
+ to node_81;
+ length 475.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line81to82;
+ phases ABCN;
+ from node_81;
+ to load_82;
+ length 250.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line81to84;
+ phases CN;
+ from node_81;
+ to load_84;
+ length 675.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line82to83;
+ phases ABCN;
+ from load_82;
+ to load_83;
+ length 250.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line84to85;
+ phases CN;
+ from load_84;
+ to load_85;
+ length 475.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line86to87;
+ phases ABCN;
+ from load_86;
+ to load_87;
+ length 450.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line87to88;
+ phases AN;
+ from load_87;
+ to load_88;
+ length 175.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line87to89;
+ phases ABCN;
+ from load_87;
+ to node_89;
+ length 275.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line89to90;
+ phases BN;
+ from node_89;
+ to load_90;
+ length 225.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line89to91;
+ phases ABCN;
+ from node_89;
+ to node_91;
+ length 225.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line91to92;
+ phases CN;
+ from node_91;
+ to load_92;
+ length 300.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line91to93;
+ phases ABCN;
+ from node_91;
+ to node_93;
+ length 225.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line93to94;
+ phases ABCN;
+ from node_93;
+ to load_94;
+ length 275.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line93to95;
+ phases ABCN;
+ from node_93;
+ to load_95;
+ length 300.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line95to96;
+ phases BN;
+ from load_95;
+ to load_96;
+ length 200.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line97to98;
+ phases ABCN;
+ from node_97;
+ to load_98;
+ length 275.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line98to99;
+ phases ABCN;
+ from load_98;
+ to load_99;
+ length 550.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line99to100;
+ phases ABCN;
+ from load_99;
+ to load_100;
+ length 300.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line100to450;
+ phases ABCN;
+ from load_100;
+ to node_450;
+ length 800.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line101to102;
+ phases CN;
+ from node_101;
+ to load_102;
+ length 225.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line101to105;
+ phases ABCN;
+ from node_101;
+ to node_105;
+ length 275.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line102to103;
+ phases CN;
+ from load_102;
+ to load_103;
+ length 325.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line103to104;
+ phases CN;
+ from load_103;
+ to load_104;
+ length 700.00;
+ configuration lc311;
+}
+
+object overhead_line
+{
+ name line105to106;
+ phases BN;
+ from node_105;
+ to load_106;
+ length 225.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line105to108;
+ phases ABCN;
+ from node_105;
+ to node_108;
+ length 325.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line106to107;
+ phases BN;
+ from load_106;
+ to load_107;
+ length 575.00;
+ configuration lc310;
+}
+
+object overhead_line
+{
+ name line108to109;
+ phases AN;
+ from node_108;
+ to load_109;
+ length 450.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line108to300;
+ phases ABCN;
+ from node_108;
+ to node_300;
+ length 1000.00;
+ configuration lc303;
+}
+
+object overhead_line
+{
+ name line109to110;
+ phases AN;
+ from load_109;
+ to node_110;
+ length 300.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line110to111;
+ phases AN;
+ from node_110;
+ to load_111;
+ length 575.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line110to112;
+ phases AN;
+ from node_110;
+ to load_112;
+ length 125.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line112to113;
+ phases AN;
+ from load_112;
+ to load_113;
+ length 525.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line113to114;
+ phases AN;
+ from load_113;
+ to load_114;
+ length 325.00;
+ configuration lc309;
+}
+
+object overhead_line
+{
+ name line135to35;
+ phases ABCN;
+ from node_135;
+ to load_35;
+ length 375.00;
+ configuration lc304;
+}
+
+object overhead_line
+{
+ name line149to1;
+ phases ABCN;
+ from node_149;
+ to load_1;
+ length 400.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line152to52;
+ phases ABCN;
+ from node_152;
+ to load_52;
+ length 400.00;
+ configuration lc301;
+}
+
+object overhead_line
+{
+ name line16001to67;
+ phases ABCN;
+ from node_16001;
+ to node_67;
+ length 350.00;
+ configuration lc306;
+}
+
+object overhead_line
+{
+ name line197to101;
+ phases ABCN;
+ from node_197;
+ to node_101;
+ length 250.00;
+ configuration lc303;
+}
+
+//Lines with distributed loads
+
+//Transformers
+
+object transformer
+{
+ name trans6101to610;
+ phases ABCN;
+ from node_6101;
+ to node_610;
+ configuration tc500;
+}
+
+//Regulators
+
+object regulator
+{
+ name reg150to15001;
+ phases ABCN;
+ from node_150;
+ to node_15001;
+ configuration rc501;
+}
+
+object regulator
+{
+ name reg9to901;
+ phases AN;
+ from load_9;
+ to node_901;
+ configuration rc502;
+}
+
+object regulator
+{
+ name reg25to2501;
+ phases ACN;
+ from node_25;
+ to node_2501;
+ configuration rc503;
+}
+
+object regulator
+{
+ name reg160to16001;
+ phases ABCN;
+ from node_160;
+ to node_16001;
+ configuration rc504;
+}
+
+//Switches
+
+object switch
+{
+ name sw13to152;
+ phases ABCN;
+ from node_13;
+ to node_152;
+ status CLOSED;
+}
+
+object switch
+{
+ name sw18to135;
+ phases ABCN;
+ from node_18;
+ to node_135;
+ status CLOSED;
+}
+
+object switch
+{
+ name sw54to94;
+ phases ABCN;
+ from node_54;
+ to load_94;
+ status OPEN;
+}
+
+object switch
+{
+ name sw60to160;
+ phases ABCN;
+ from load_60;
+ to node_160;
+ status CLOSED;
+}
+
+object switch
+{
+ name sw61to6101;
+ phases ABCN;
+ from node_61;
+ to node_6101;
+ status CLOSED;
+}
+
+object switch
+{
+ name sw97to197;
+ phases ABCN;
+ from node_97;
+ to node_197;
+ status CLOSED;
+}
+
+object switch
+{
+ name sw151to300;
+ phases ABCN;
+ from node_151;
+ to node_300;
+ status OPEN;
+}
+object switch
+{
+ name sw15001to149;
+ phases ABCN;
+ from node_15001;
+ to node_149;
+ status CLOSED;
+}
+
+//Capacitors
+
+object capacitor
+{
+ name cap_83;
+ parent load_83;
+ phases ABC;
+ phases_connected ABC;
+ nominal_voltage 2401.7771;
+ control MANUAL;
+ capacitor_A 200000.0000;
+ capacitor_B 200000.0000;
+ capacitor_C 200000.0000;
+ switchA OPEN;
+ switchB OPEN;
+ switchC OPEN;
+};
+
+object capacitor
+{
+ name cap_88;
+ parent load_88;
+ phases A;
+ phases_connected A;
+ nominal_voltage 2401.7771;
+ control MANUAL;
+ capacitor_A 50000.0000;
+ switchA OPEN;
+};
+
+object capacitor
+{
+ name cap_90;
+ parent load_90;
+ phases B;
+ phases_connected B;
+ nominal_voltage 2401.7771;
+ control MANUAL;
+ capacitor_B 50000.0000;
+ switchB OPEN;
+};
+
+object capacitor
+{
+ name cap_92;
+ parent load_92;
+ phases C;
+ phases_connected C;
+ nominal_voltage 2401.7771;
+ control MANUAL;
+ capacitor_C 50000.0000;
+ switchC OPEN;
+};
+
+// IEEE 123 realtime demo feeder topology
+// Copyright (C) 2016, Stanford University
+// by dchassin@slac.stanford.edu
+//
+
+// lateral feeds
+object node
+{
+ name node_251;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+ bustype SWING;
+ voltage_A 2401.777120+0.000000j;
+ voltage_B -1200.888560-2080.000000j;
+ voltage_C -1200.888560+2080.000000j;
+}
+
+object node
+{
+ name node_350;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+ bustype SWING;
+ voltage_A 2401.777120+0.000000j;
+ voltage_B -1200.888560-2080.000000j;
+ voltage_C -1200.888560+2080.000000j;
+}
+
+
+object node
+{
+ name node_451;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+ bustype SWING;
+ voltage_A 2401.777120+0.000000j;
+ voltage_B -1200.888560-2080.000000j;
+ voltage_C -1200.888560+2080.000000j;
+}
+
+object node
+{
+ name node_195;
+ groupid nodevolts;
+ phases ABCN;
+ nominal_voltage 2401.7771;
+ bustype SWING;
+ voltage_A 2401.777120+0.000000j;
+ voltage_B -1200.888560-2080.000000j;
+ voltage_C -1200.888560+2080.000000j;
+}
+
+// switch to laterals
+object switch
+{
+ name sw250to251;
+ phases ABCN;
+ from node_250;
+ to node_251;
+ status OPEN;
+}
+
+object switch
+{
+ name sw300to350;
+ phases ABCN;
+ from node_300;
+ to node_350;
+ status OPEN;
+}
+
+object switch
+{
+ name sw450to451;
+ phases ABCN;
+ from node_450;
+ to node_451;
+ status OPEN;
+}
+
+object switch
+{
+ name sw95to195;
+ phases ABCN;
+ from load_95;
+ to node_195;
+ status OPEN;
+}
+
+//Conductors
+
+object overhead_line_conductor
+{
+ name olc301c; //336,400 26/7 ACSR
+ geometric_mean_radius 0.0244;
+ resistance 0.306;
+ diameter 0.721;
+}
+
+object overhead_line_conductor
+{
+ name olc301n; //4/0 6/1 ACSR
+ geometric_mean_radius 0.00814;
+ resistance 0.592;
+ diameter 0.563;
+}
+
+object overhead_line_conductor
+{
+ name olc309; //1/0 ACSR
+ geometric_mean_radius 0.004460;
+ resistance 1.120000;
+ diameter 0.398;
+}
+
+object underground_line_conductor
+{
+ name ulc312; //1/0 AA, CN
+ outer_diameter 1.06;
+ conductor_gmr 0.0111;
+ conductor_diameter 0.368;
+ conductor_resistance 0.97;
+ neutral_gmr 0.00208;
+ neutral_resistance 14.8722;
+ neutral_diameter 0.0640837;
+ neutral_strands 16.0;
+}
+
+//Line spacings
+//ABCN
+object line_spacing
+{
+ name ls500301;
+ distance_AB 2.5;
+ distance_AC 7.0;
+ distance_BC 4.5;
+ distance_CN 5.0;
+ distance_AN 5.65685424949;
+ distance_BN 4.27200187266;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//CABN
+object line_spacing
+{
+ name ls500302;
+ distance_AB 4.5;
+ distance_AC 2.5;
+ distance_BC 7.0;
+ distance_AN 4.27200187266;
+ distance_CN 5.65685424949;
+ distance_BN 5.0;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//BCAN
+object line_spacing
+{
+ name ls500303;
+ distance_AB 7.0;
+ distance_AC 4.5;
+ distance_BC 2.5;
+ distance_AN 5.0;
+ distance_BN 5.65685424949;
+ distance_CN 4.27200187266;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//CBAN
+object line_spacing
+{
+ name ls500304;
+ distance_AB 4.5;
+ distance_AC 7.0;
+ distance_BC 2.5;
+ distance_AN 5.0;
+ distance_BN 4.27200187266;
+ distance_CN 5.65685424949;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//BACN
+object line_spacing
+{
+ name ls500305;
+ distance_AB 2.5;
+ distance_AC 4.5;
+ distance_BC 7.0;
+ distance_CN 5.0;
+ distance_AN 4.27200187266;
+ distance_BN 5.65685424949;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//ACBN
+object line_spacing
+{
+ name ls500306;
+ distance_AB 2.5;
+ distance_AC 7.0;
+ distance_BC 4.5;
+ distance_CN 5.0;
+ distance_BN 4.27200187266;
+ distance_AN 5.65685424949;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//ACN
+object line_spacing
+{
+ name ls505307;
+ distance_AC 7.0;
+ distance_AN 5.65685424949;
+ distance_CN 5.0;
+ distance_AE 28.0;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//ABN
+object line_spacing
+{
+ name ls505308;
+ distance_AB 7.0;
+ distance_AN 5.65685424949;
+ distance_BN 5.0;
+ distance_AE 28.0;
+ distance_BE 28.0;
+ distance_NE 24.0;
+}
+
+//AN
+object line_spacing
+{
+ name ls510309;
+ distance_AN 5.024937811;
+ distance_AE 28.0;
+ distance_NE 24.0;
+}
+
+//BN
+object line_spacing
+{
+ name ls510310;
+ distance_BN 5.024937811;
+ distance_BE 28.0;
+ distance_NE 24.0;
+}
+
+//CN
+object line_spacing
+{
+ name ls510311;
+ distance_CN 5.024937811;
+ distance_CE 28.0;
+ distance_NE 24.0;
+}
+
+//UGL - ABC
+object line_spacing
+{
+ name ls515312;
+ distance_AB 0.5;
+ distance_AC 1.0;
+ distance_BC 0.5;
+}
+
+//Line configurations
+//ABCN
+object line_configuration
+{
+ name lc301;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls500301;
+}
+
+//CABN
+object line_configuration
+{
+ name lc302;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls500302;
+}
+
+//BCAN
+object line_configuration
+{
+ name lc303;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls500303;
+}
+
+//CBAN
+object line_configuration
+{
+ name lc304;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls500304;
+}
+
+//BACN
+object line_configuration
+{
+ name lc305;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls500305;
+}
+
+//ACBN
+object line_configuration
+{
+ name lc306;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls500306;
+}
+
+//ACN
+object line_configuration
+{
+ name lc307;
+ conductor_A olc301c;
+ conductor_C olc301c;
+ conductor_N olc301n;
+ spacing ls505307;
+}
+
+//ABN
+object line_configuration
+{
+ name lc308;
+ conductor_A olc301c;
+ conductor_B olc301c;
+ conductor_N olc301n;
+ spacing ls505308;
+}
+
+//AN
+object line_configuration
+{
+ name lc309;
+ conductor_A olc309;
+ conductor_N olc309;
+ spacing ls510309;
+}
+
+//BN
+object line_configuration
+{
+ name lc310;
+ conductor_B olc309;
+ conductor_N olc309;
+ spacing ls510310;
+}
+
+//CN
+object line_configuration
+{
+ name lc311;
+ conductor_C olc309;
+ conductor_N olc309;
+ spacing ls510311;
+}
+
+//ABC
+object line_configuration
+{
+ name lc312;
+ conductor_A ulc312;
+ conductor_B ulc312;
+ conductor_C ulc312;
+ spacing ls515312;
+}
+
+//Transformer configurations
+object transformer_configuration
+{
+ name tc500;
+ connect_type DELTA_DELTA;
+ install_type PADMOUNT;
+ power_rating 150.0 kVA;
+ primary_voltage 4160.0;
+ secondary_voltage 480.0;
+ resistance 0.0127;
+ reactance 0.0272;
+}
+
+object transformer_configuration
+{
+ name tc9999;
+ connect_type DELTA_GWYE;
+ install_type PADMOUNT;
+ power_rating 5.0 MVA;
+ primary_voltage 115.0;
+ secondary_voltage 4160.0;
+ resistance 0.01;
+ reactance 0.08;
+}
+
+// Regulator configs
+object regulator_configuration
+{
+ name rc501;
+ connect_type WYE_WYE;
+ band_center 2400.000;
+ band_width 40.0;
+ time_delay 30.0;
+ raise_taps 16;
+ lower_taps 16;
+ current_transducer_ratio 700;
+ power_transducer_ratio 20;
+ compensator_r_setting_A 3.0;
+ compensator_x_setting_A 7.5;
+ CT_phase "A";
+ PT_phase "A";
+ regulation 0.10;
+ Control OUTPUT_VOLTAGE;
+ Type A;
+ tap_pos_A 0;
+ tap_pos_B 0;
+ tap_pos_C 0;
+}
+
+object regulator_configuration
+{
+ name rc502;
+ connect_type WYE_WYE;
+ band_center 2400.000;
+ band_width 40.0;
+ time_delay 30.0;
+ raise_taps 16;
+ lower_taps 16;
+ current_transducer_ratio 50;
+ power_transducer_ratio 20;
+ compensator_r_setting_A 0.4;
+ compensator_x_setting_A 0.4;
+ CT_phase "A";
+ PT_phase "A";
+ regulation 0.10;
+ Control MANUAL;
+ Type A;
+ tap_pos_A -1;
+ tap_pos_B 0;
+ tap_pos_C 0;
+}
+
+object regulator_configuration
+{
+ name rc503;
+ connect_type WYE_WYE;
+ band_center 2400.000;
+ band_width 20.0;
+ time_delay 30.0;
+ raise_taps 16;
+ lower_taps 16;
+ current_transducer_ratio 50;
+ power_transducer_ratio 20;
+ compensator_r_setting_A 0.4;
+ compensator_r_setting_C 0.4;
+ compensator_x_setting_A 0.4;
+ compensator_x_setting_C 0.4;
+ CT_phase "AC";
+ PT_phase "AC";
+ regulation 0.10;
+ Control MANUAL;
+ Type A;
+ tap_pos_A 0;
+ tap_pos_B 0;
+ tap_pos_C -1;
+}
+
+object regulator_configuration
+{
+ name rc504;
+ connect_type WYE_WYE;
+ band_center 2400.000;
+ band_width 40.0;
+ time_delay 30.0;
+ raise_taps 16;
+ lower_taps 16;
+ current_transducer_ratio 300;
+ power_transducer_ratio 20;
+ compensator_r_setting_A 0.6;
+ compensator_r_setting_B 1.4;
+ compensator_r_setting_C 0.2;
+ compensator_x_setting_A 1.3;
+ compensator_x_setting_B 2.6;
+ compensator_x_setting_C 1.4;
+ CT_phase "ABC";
+ PT_phase "ABC";
+ regulation 0.10;
+ Control MANUAL;
+ Type A;
+ tap_pos_A 8;
+ tap_pos_B 1;
+ tap_pos_C 5;
+}
diff --git a/tools/autotest/test_isone.glm b/tools/autotest/test_isone.glm
new file mode 100644
index 000000000..44f01ba43
--- /dev/null
+++ b/tools/autotest/test_isone.glm
@@ -0,0 +1,21 @@
+#python -m isone -D=smd/ME -s=2020-03-01 -e=2020-03-01 -c=test_isone.csv -g=test_isone_opt.glm
+module tape
+{
+ csv_header_type NAME;
+}
+#include "test_isone_opt.glm"
+object recorder
+{
+ parent isone;
+ file "test_isone_record.csv";
+ property "DA_Demand,RT_Demand,DA_LMP,DA_EC,DA_CC,DA_MLC,RT_LMP,RT_EC,RT_CC,RT_MLC,Dry_Bulb,Dew_Point";
+ interval 1h;
+}
+clock {
+ timezone ${ISONE_TIMEZONE};
+ starttime ${ISONE_STARTDATE};
+ stoptime ${ISONE_STOPDATE};
+}
+#ifexists "../test_isone_record.csv"
+#on_exit 0 diff ../test_isone_record.csv test_isone_record.csv > gridlabd.diff
+#endif
diff --git a/tools/autotest/test_isone_record.csv b/tools/autotest/test_isone_record.csv
new file mode 100644
index 000000000..414517050
--- /dev/null
+++ b/tools/autotest/test_isone_record.csv
@@ -0,0 +1,25 @@
+timestamp,DA_Demand,RT_Demand,DA_LMP,DA_EC,DA_CC,DA_MLC,RT_LMP,RT_EC,RT_CC,RT_MLC,Dry_Bulb,Dew_Point
+2020-03-01 00:00:00 EST,+847,+1177.36,+20.28,+20.34,-0.17,+0.11,+16.21,+16.07,+0,+0.14,+19,+5
+2020-03-01 01:00:00 EST,+840.8,+1152.96,+19.16,+19.22,-0.15,+0.09,+16.33,+16.2,+0,+0.13,+18,+6
+2020-03-01 02:00:00 EST,+855.1,+1138.74,+17.52,+17.62,-0.13,+0.03,+15.64,+15.56,+0,+0.08,+18,+5
+2020-03-01 03:00:00 EST,+838.6,+1144.65,+17.73,+17.8,-0.14,+0.07,+15.21,+15.14,+0,+0.07,+18,+5
+2020-03-01 04:00:00 EST,+852.2,+1167.67,+18.3,+18.38,-0.13,+0.05,+15.26,+15.19,+0,+0.07,+17,+5
+2020-03-01 05:00:00 EST,+914.7,+1209.67,+19.12,+19.16,-0.13,+0.09,+13.21,+13.15,+0,+0.06,+17,+5
+2020-03-01 06:00:00 EST,+912.1,+1277.46,+18.72,+18.72,-0.07,+0.07,+16.09,+15.94,+0,+0.15,+17,+5
+2020-03-01 07:00:00 EST,+1017.2,+1337.71,+18.34,+18.11,-0.04,+0.27,+14.3,+14.1,+0,+0.2,+19,+6
+2020-03-01 08:00:00 EST,+1122,+1401.55,+17.95,+17.59,+0,+0.36,+13.48,+13.28,+0,+0.2,+23,+7
+2020-03-01 09:00:00 EST,+1027,+1411.46,+16.49,+16.31,-0.02,+0.2,+13.94,+13.74,+0,+0.2,+27,+8
+2020-03-01 10:00:00 EST,+999.9,+1438.49,+14.8,+14.83,+0,-0.03,+15.96,+15.78,+0,+0.18,+28,+6
+2020-03-01 11:00:00 EST,+956.6,+1425.79,+13.67,+13.79,-0.02,-0.1,+11.46,+11.35,+0,+0.11,+30,+7
+2020-03-01 12:00:00 EST,+902.7,+1398.41,+12.82,+13.08,-0.13,-0.13,+12.5,+12.41,+0,+0.09,+32,+8
+2020-03-01 13:00:00 EST,+896.3,+1370.73,+12.75,+13.02,-0.12,-0.15,+11.81,+11.75,+0,+0.06,+32,+7
+2020-03-01 14:00:00 EST,+883.2,+1348.15,+12.66,+12.97,-0.12,-0.19,+12.61,+12.56,+0,+0.05,+34,+7
+2020-03-01 15:00:00 EST,+1013.1,+1383.17,+13.49,+13.68,-0.12,-0.07,+14.08,+13.96,+0,+0.12,+35,+8
+2020-03-01 16:00:00 EST,+1117.8,+1460.34,+16.51,+16.48,-0.11,+0.14,+21.35,+21.15,+0,+0.2,+34,+7
+2020-03-01 17:00:00 EST,+1206.7,+1531.06,+19.58,+19.61,-0.13,+0.1,+21.93,+21.74,+0,+0.19,+32,+7
+2020-03-01 18:00:00 EST,+1239,+1563.54,+25.89,+25.92,-0.18,+0.15,+30.69,+30.34,+0,+0.35,+29,+8
+2020-03-01 19:00:00 EST,+1160,+1516.67,+20.82,+20.95,-0.18,+0.05,+24.05,+23.85,+0,+0.2,+27,+8
+2020-03-01 20:00:00 EST,+1120.6,+1467.12,+17.55,+17.75,-0.13,-0.07,+21.78,+21.63,+0,+0.15,+26,+8
+2020-03-01 21:00:00 EST,+984.8,+1361.46,+16.71,+16.87,-0.14,-0.02,+16.71,+16.57,+0,+0.14,+25,+8
+2020-03-01 22:00:00 EST,+942.1,+1264.5,+16.54,+16.69,-0.16,+0.01,+18.14,+17.99,+0,+0.15,+24,+8
+2020-03-01 23:00:00 EST,+872.2,+1218.99,+16.79,+16.94,-0.14,-0.01,+25.65,+25.27,+0,+0.38,+22,+8
diff --git a/tools/autotest/test_server.glm b/tools/autotest/test_server.glm
index 3feec66e3..7c3a8f94e 100644
--- a/tools/autotest/test_server.glm
+++ b/tools/autotest/test_server.glm
@@ -1,5 +1,5 @@
#ifexist ../test_server.glm
#define DIR=..
#endif
-
+#setenv GITHUB_ACTIONS=${github_actions:-no}
#system python ${DIR:-.}/../gldserver.py 1>python.out 2>python.err
diff --git a/tools/create_childs.py b/tools/create_childs.py
new file mode 100644
index 000000000..c9f8bc9af
--- /dev/null
+++ b/tools/create_childs.py
@@ -0,0 +1,186 @@
+# Syntax: create_childs [-i|--input=INPUTFILE] [-o|--output=GLMFILE] [OPTIONS ...]
+"""Syntax: create_childs [-i|--input=INPUTFILE] [-o|--output=GLMFILE] [OPTIONS ...]
+
+Options
+-------
+ -P|--parents=NAME:VALUE,... specify parent property pattern to match (required)
+ -C|--childs=NAME:VALUE,... specify child property list to assign (required)
+ -N|--names=STRING specify object naming convention (default is '{class}_{name}')
+ -M|--modules=NAME,... specify module names to use (defaults to those found)
+
+Description
+-----------
+
+The `create_childs` tool adds child objects to all objects that match the
+parent object pattern specified.
+
+Parent patterns and child properties as specified as a comma-separate list of
+`NAME:VALUE` strings, e.g., `class:node` or `nominal_voltage:2.4kV`. Parent
+patterns use `regex` pattern matching. Child properties may include `{NAME}`
+format strings where `NAME` is a property of the parent object. This
+allows copying of values from the parent object. This formatting also can be
+applied to the naming string, e.g., `-N='{name}_L' to append '_L' to the
+parent object name.
+
+Example
+-------
+
+The following creates a GLM file containing a `triplex_load` objects attached
+to `triplex_node` objects with names starting as `N_` in the file `my-network.json`:
+
+~~~
+$ gridlabd create_childs -i=my-network.json -o=loads.glm -P='class:triplex_node,name:^N_' -C='class:triplex_load,nominal_voltage:{nominal_voltage},phases:{phases},constant_power_B:1.2+0.1jkVA'
+~~~
+"""
+
+import sys, os
+import json
+import re
+import datetime
+import subprocess
+import random
+
+EXENAME = os.path.splitext(os.path.basename(sys.argv[0]))[0]
+
+DEBUG = False
+WARNING = True
+QUIET = False
+VERBOSE = False
+
+E_OK = 0
+E_INVALID = 1
+E_FAILED = 2
+E_SYNTAX = 8
+E_EXCEPTION = 9
+EXITCODE = E_OK
+
+class GldException(Exception):
+ pass
+
+def error(msg,code=None):
+ if type(code) is int:
+ global EXITCODE
+ EXITCODE = code
+ if DEBUG:
+ raise GldException(msg)
+ print("ERROR [create_childs]:",msg,file=sys.stderr)
+ exit(code)
+
+
+def load():
+
+ if not INPUTFILE.endswith(".json"):
+ tmpfile = "."
+ while os.path.exists(tmpfile):
+ tmpfile = f"tmp{hex(random.randint(1e30,1e31))[2:]}.json"
+ try:
+ result = subprocess.run(["gridlabd","-C",INPUTFILE,"-o",tmpfile])
+ assert(result.returncode==0)
+ with open(tmpfile,"r") as fh:
+ model = json.load(fh)
+ except:
+ raise
+ finally:
+ os.remove(tmpfile)
+ pass
+ else:
+ with open(INPUTFILE,"r") as fh:
+ model = json.load(fh)
+ return model
+
+def save(fh):
+ print(f"// generated by '{' '.join(sys.argv)}' at {datetime.datetime.now()}",file=fh)
+ for name in MODULES:
+ print(f"module {name};",file=fh)
+ classname = CHILDS["class"]
+ for obj,data in OBJECTS.items():
+ print(f"object {classname} {{",file=fh)
+ for prop,value in data.items():
+ print(f" {prop} \"{value}\";",file=fh)
+ print("}",file=fh)
+
+def main():
+
+ PATTERN = {}
+ for name,pattern in PARENTS.items():
+ PATTERN[name] = re.compile(pattern)
+
+ if "class" not in CHILDS:
+ error("you must include a class name in the child properties",E_INVALID)
+ classname = CHILDS["class"]
+ model = load()
+ assert(model['application']=='gridlabd')
+ global MODULES
+ if not MODULES:
+ MODULES = list(model['modules'])
+
+ for obj,data in model['objects'].items():
+ data['name'] = obj
+ ok = True
+ for name,pattern in PATTERN.items():
+ if not pattern.match(data[name]):
+ ok = False
+ break
+ if ok:
+ name = f"{classname}_{obj}" if NAMING is None else NAMING.format(**data)
+ OBJECTS[name] = dict(parent=obj,name=name)
+ for prop,value in CHILDS.items():
+ if not prop in ["class"]:
+ OBJECTS[name][prop] = value.format(**data)
+
+ if OUTPUTFILE.endswith(".glm"):
+ with open(OUTPUTFILE,"w") as fh:
+ save(fh)
+ else:
+ error("invalid output file format")
+
+ return E_OK
+
+INPUTFILE = "/dev/stdin"
+OUTPUTFILE = "/dev/stdout"
+PARENTS = None
+CHILDS = None
+NAMING = None
+OBJECTS = {}
+MODULES = []
+
+if __name__ == "__main__":
+
+ if len(sys.argv) == 1:
+ print(__doc__.split('\n')[0],file=sys.stderr)
+ exit(E_SYNTAX)
+
+ for arg in sys.argv[1:]:
+ spec = arg.split("=")
+ if len(spec) == 1:
+ tag = arg
+ value = None
+ else:
+ tag = spec[0]
+ value = '='.join(spec[1:])
+
+ if tag in ["-h","--help","help"]:
+ print(__doc__)
+ exit(E_OK)
+ if tag in ["-i","--input"]:
+ INPUTFILE = value if value else "/dev/stdin"
+ elif tag in ["-o","--output"]:
+ OUTPUTFILE = value if value else "/dev/stdout"
+ elif tag in ["-P","--parent"]:
+ PARENTS = dict([x.split(":") for x in value.split(",")])
+ elif tag in ["-C","--childs"]:
+ CHILDS = dict([x.split(":") for x in value.split(",")])
+ elif tag in ["-N","--names"]:
+ NAMING = value
+ elif tag in ["-M","--modules"]:
+ MODULES = value.split(",")
+ else:
+ error(f"option '{arg}' is invalid",E_INVALID)
+
+ if PARENTS is None:
+ error("you must specify the parent patterns to match")
+ if CHILDS is None:
+ error("you must specify the child properties to define")
+
+ EXITCODE = main()
+ exit(EXITCODE)
diff --git a/tools/create_meters.py b/tools/create_meters.py
index e9c14b598..8c14a4828 100644
--- a/tools/create_meters.py
+++ b/tools/create_meters.py
@@ -145,7 +145,7 @@ def fix_parent(parent,name,oclass):
if pclass and pclass == oclass.replace('load','node'):
# change node to meter
- nclass = pclass.replace('load','meter')
+ nclass = pclass.replace('node','meter')
set_data(parent,'class',nclass)
else:
@@ -293,4 +293,4 @@ def main(args):
},
}
- main(arg)
\ No newline at end of file
+ main(arg)
diff --git a/tools/gldserver.py b/tools/gldserver.py
index e4fcd8d93..befc7282c 100644
--- a/tools/gldserver.py
+++ b/tools/gldserver.py
@@ -277,7 +277,8 @@ def start(self,*args,detached=False):
exception(f"server start timeout")
version = self.getversion()
verbose(f"server version {version} up")
- GldTimestamp.tz = pytz.timezone(self.get_global("timezone_locale"))
+ timezone_locale = self.get_global("timezone_locale")
+ GldTimestamp.tz = pytz.timezone(timezone_locale if timezone_locale else "UTC")
GldTimestamp.url = f"http://localhost:{self.port}"
def getstatus(self):
@@ -384,7 +385,8 @@ def test_detached(self):
"""Verify that server can be started detached"""
fh.seek(0)
sim = GridlabdServer(fh.name,detached=True)
- self.assertEqual(len(sim.get_objects("class=load")),85)
+ if "github_actions" in os.environ and os.environ["github_actions"] != "yes":
+ self.assertEqual(len(sim.get_objects("class=load")),85)
sim.stop()
def test_attached(self):
diff --git a/tools/gridlabd-editor.py b/tools/gridlabd-editor.py
index 0bfd0725a..1ea0a9a19 100644
--- a/tools/gridlabd-editor.py
+++ b/tools/gridlabd-editor.py
@@ -103,4 +103,4 @@ def TODO(msg="function not implemented yet",context=None):
except Exception as err:
print("EXCEPTION:",err)
messagebox.showinfo("Welcome",
- f"HiPAS GridLAB-D\n{version}-{build} ({branch}) {system}\n\n{copyright}\n{__doc__}")
+ f"Arras Energy\n{version}-{build} ({branch}) {system}\n\n{copyright}\n{__doc__}")
diff --git a/tools/group.py b/tools/group.py
new file mode 100644
index 000000000..758c7cd11
--- /dev/null
+++ b/tools/group.py
@@ -0,0 +1,453 @@
+# Syntax: group -i=INPUT [-o=OUTPUT] [OPTIONS ...]
+"""Set group according to powerflow islanding
+
+Syntax: group [-i=INPUT] [-o=OUTPUT] [OPTIONS ...]
+
+Options
+-------
+
+ -b|--by=GROUPER specify grouping (default is 'island')
+
+ -c|--cut=CLASSES command-separated list classes of cut objects
+ (default is 'switch')
+
+ --control=NAME set control groupid (default "control_")
+
+ --copy_from=CLASS.PROPERTY,... specify CLASS.PROPERTY from which groupid
+ is copied (default is `pole_mount.equipment`)
+
+ --copy_to=CLASS.PROPERTY,... specify CLASS.PROPERTY to which groupid is
+ copied (default is `pole_mount.parent`)
+
+ -d|--debug enable debugging output and exception handling
+
+ -f|--force force overwrite of existing groupid data
+
+ -i|--input=INPUT input JSON file name (default is stdin)
+
+ -m|--modify output GLM modify statements instead of full modify
+
+ -o|--output=OUTPUT output file name (JSON or GLM, default is stdout)
+
+ -p|--prefix=PREFIX set the groupid prefix (default "island_")
+
+ -q|--quiet disable error output
+
+ -w|--warning disable warning output
+
+The `group` tools identify groups of object based on a grouper method and a
+cut criteria. The only grouper currently supported is the `island` grouper
+with `switch` cut object criteria. Additional cut classes can be specified
+using a comma-separated list of class names, e.g.,
+`--cut=switch,relay,breaker`.
+
+The input file must a GridLAB-D JSON file. You can use the
+`gridlabd -o|--output FILENAME.json` option to generate a JSON file from a
+GLM model. The output file may be a JSON or GLM file, depending on the use
+of the `-m|--modify` option. When `modify` is not used, the output file
+format is JSON. When `modify` is used, the output file format is GLM, and
+python variables defined to provide information about the grouping. The
+variable `groups` contains a dictionary of all the groups created and which
+objects belong to each group. The variable `controls` contains a dictionary
+of control objects and which groups are connected by that object. The
+variable `swingbus` contains a dictionary of the swing buses for each island.
+The variable `isolated` contains a list of groups that do not have a swing
+bus. These groups are considered isolated when they are not connected to a
+group that has a swing bus.
+
+The `-f|--force` option is used to overwrite any existing `groupid` values
+found in the model.
+
+Example:
+
+The following example generates a GLM modify file for the IEEE 123 model based
+on switch islanding.
+
+~~~
+gridlabd model get IEEE/123
+gridlabd -C 123.glm -o 123.json
+gridlabd group -i=123.json --modify -o=groups.glm --force
+~~~
+"""
+
+import sys, os
+import json
+import datetime
+
+class GroupException(Exception):
+ pass
+
+MODIFY = False
+FORCE = False
+DEBUG = False
+WARNING = False
+QUIET = False
+GROUPER = 'island'
+PREFIX = 'island_'
+CONTROL = 'control'
+CUTOBJECTS = 'switch'
+INPUT = "/dev/stdin"
+OUTPUT = None
+COPYFROM = 'pole_mount.equipment'
+COPYTO = 'pole_mount.parent'
+
+E_OK = 0
+E_INVALID = 1
+E_FAILED = 2
+E_MISSING = 3
+E_EXCEPTION = 8
+E_SYNTAX = 9
+
+def error(msg,code=None):
+ """Output error message or raise exception
+
+ Parameters:
+ msg (str) - error message
+ code (None, int) - termination code
+
+ If code is None, only message is displayed. If code
+ is int, `exit(code)` is called.
+ """
+ if not QUIET:
+ print(f"ERROR [group]: {msg}",file=sys.stderr)
+ if DEBUG:
+ raise GroupException(msg)
+ if type(code) is int:
+ exit(code)
+ elif not code is None:
+ raise GroupException(f"{code} is an invalid error code")
+
+def warning(msg):
+ """Output warning message"""
+ if not WARNING:
+ print(f"WARNING [group]: {msg}",file=sys.stderr)
+
+def debug(msg):
+ """Output a debugging message"""
+ if DEBUG:
+ print(f"DEBUG [group]: {msg}",file=sys.stderr)
+
+def grouper_island(input=None):
+ """Group object by connectivity in powerflow solution
+
+ Parameters:
+ input (str) - input file name
+
+ Returns:
+ dict - processed gridlabd model
+ """
+ if input is None:
+ input = INPUT
+
+ #
+ # Load model
+ #
+ with open(input,"r") as fh:
+ model = json.load(fh)
+
+ #
+ # Check groupid
+ #
+ if not FORCE:
+ for obj,data in model['objects'].items():
+ if 'groupid' in data and data['groupid']:
+ error(f"{obj}.groupid='{data['groupid']}' (use --force to overwrite)",E_FAILED)
+
+ #
+ # Find swing buses and build network graph
+ #
+ swing_buses = []
+ groupid = 1
+ links = {}
+ nodes = {}
+ for obj,data in model['objects'].items():
+ model['objects'][obj]['groupid'] = None
+ if 'bustype' in data and data['bustype'] in ["SWING","SWING_PQ"]:
+ swing_buses.append(obj)
+ model['objects'][obj]['groupid'] = f"{PREFIX}{groupid}"
+ groupid += 1
+ elif 'from' in data or 'to' in data:
+ from_node = data['from']
+ to_node = data['to']
+ links[obj] = [from_node,to_node]
+ if not from_node in nodes:
+ nodes[from_node] = [obj]
+ elif obj not in nodes[from_node]:
+ nodes[from_node].append(obj)
+ if not to_node in nodes:
+ nodes[to_node] = [obj]
+ elif obj not in nodes[to_node]:
+ nodes[to_node].append(obj)
+
+ #
+ # Process each swing_bus
+ #
+ def group(bus):
+ groupid = model['objects'][bus]['groupid']
+ if not bus in nodes:
+ return
+ for link in nodes[bus]:
+ link_data = model['objects'][link]
+ if not link_data['class'] in CUTOBJECTS:
+ debug(f"tagging link '{link}' from '{bus}' as '{groupid}'")
+ model['objects'][link]['groupid'] = groupid
+ for node in links[link]:
+ if model['objects'][node]['groupid'] is None:
+ debug(f"tagging node '{node}' from '{link}' as '{groupid}'")
+ model['objects'][node]['groupid'] = groupid
+ group(node)
+ else:
+ model['objects'][link]['groupid'] = CONTROL
+ debug(f"tagging control '{link}' from '{bus}' as '{CONTROL}'")
+ for bus in swing_buses:
+ group(bus)
+
+ #
+ # Recursively tag objects
+ #
+ for obj,data in model['objects'].items():
+ if 'bustype' in data and data['groupid'] is None:
+ if 'parent' not in data:
+ model['objects'][obj]['groupid'] = f'{PREFIX}{groupid}'
+ group(obj)
+ warning(f"group '{data['groupid']}' does not have a swing bus")
+ groupid += 1
+ # del model['objects'][obj]['groupid']
+ else:
+ model['objects'][data['parent']]['groupid'] = model['objects'][obj]['groupid']
+ elif 'from' in data and 'to' in data and data['groupid'] is None:
+ if data['groupid'] == CONTROL:
+ from_node = model['objects'][obj]['from']
+ to_node = model['objects'][obj]['to']
+ from_group = model['objects'][from_node]['groupid']
+ to_group = model['objects'][to_node]['groupid']
+ groupid = model['objects'][obj] = f"control_{from_group}_{to_group}"
+ debug(f"tagging link {link} from {bus} as {groupid}")
+ else:
+ warning(f"link '{obj}' was not tagged")
+ del model['objects'][obj]['groupid']
+
+ #
+ # Process linkages and children
+ #
+ for obj,data in model['objects'].items():
+
+ # copy groupid from objects
+ for linkage in COPYFROM.split(','):
+ classname,propname = linkage.split('.')
+ if data['class'] == classname and propname in data:
+ if data['groupid'] is None:
+ ref_name = data[propname]
+ ref = model['objects'][ref_name]
+ model['objects'][obj]['groupid'] = ref['groupid']
+ # print(classname,'linkage from',ref_name,'to',obj,'as',ref['groupid'])
+ elif data['groupid'] != ref['groupid']:
+ warning(f"{classname} link from {ref_name} {ref['groupid']} differs from {obj} {data['groupid']}")
+
+ # copy groupid to objects
+ for children in COPYTO.split(','):
+ classname,propname = children.split('.')
+ if data['class'] == classname:
+ ref_name = data[propname]
+ ref = model['objects'][ref_name]
+ if ref['groupid'] is None and propname in data:
+ model['objects'][ref_name]['groupid'] = data['groupid']
+ # print(classname,'linkage from',ref_name,'to',obj,'as',ref['groupid'])
+ elif data['groupid'] != ref['groupid'] and ref['groupid'] != CONTROL:
+ warning(f"{classname} link to {ref_name} {ref['groupid']} differs from {obj} {data['groupid']}")
+
+ return model
+
+#
+# Process argument list
+#
+if len(sys.argv) == 1:
+ for line in __doc__.split('\n'):
+ if line.startswith('Syntax: '):
+ print(line)
+ exit(E_SYNTAX)
+for arg in sys.argv[1:]:
+ token,value = (arg.split('=')[0],'='.join(arg.split('=')[1:]) if '=' in arg else None)
+
+ #
+ # -h|--help|help
+ #
+ if token in ['-h','--help','help']:
+ print(__doc__)
+ exit(E_OK)
+
+ #
+ # -b|--by=GROUPER specify grouping (default is 'island')
+ #
+ elif token in ['-b','--by']:
+ GROUPER = value
+
+ #
+ # -c|--cut=CUTOBJECTS
+ #
+ elif token in ['-c','--cut']:
+ CUTOBJECTS = value.split(',') if ',' in value else [value]
+
+ #
+ # --control=NAME set control groupid (default "control_")
+ #
+ elif token in ['--control']:
+ CONTROL = value
+ #
+ # --copy_from=CLASS.PROPERTY,... specify CLASS.PROPERTY from which groupid is copied (default
+ # is `pole_mount.equipment`)
+ #
+ elif token in ['--copy_from']:
+ COPYFROM = value
+
+ #
+ # --copy_to=CLASS.PROPERTY,... specify CLASS.PROPERTY to which groupid is copied (default
+ # is `pole_mount.parent`)
+ #
+ elif token in ['--copy_to']:
+ COPYTO = value
+
+ #
+ # -d|--debug
+ #
+ elif token in ['-d','--debug']:
+ DEBUG = True
+
+ #
+ # -f|--force force overwrite of existing groupid data
+ #
+ elif token in ['-f','--force']:
+ FORCE = True
+
+ #
+ # -i|--input=INPUT input JSON file name
+ #
+ elif token in ['-i','--input']:
+ if os.path.splitext(value)[1] in [".json"]:
+ INPUT = value
+ else:
+ error("only JSON input files are supported",E_INVALID)
+
+ #
+ # -m|--modify output GLM modify statements instead of full modify
+ #
+ elif token in ['-m','--modify']:
+ MODIFY = True
+
+ #
+ # -o|--output=OUTPUT output file name (JSON or GLM)
+ #
+ elif token in ['-o','--output']:
+ OUTPUT = value
+
+ #
+ # -p|--prefix=PREFIX set the groupid prefix (default "island_")
+ #
+ elif token in ['--prefix']:
+ PREFIX = value
+
+ # -q|--quiet
+ #
+ elif token in ['-q','--quiet']:
+ QUIET = True
+
+ #
+ # -w|--warning
+ #
+ elif token in ['-w','--warning']:
+ WARNING = True
+
+ #
+ # invalid arg
+ #
+ else:
+ error(f"option {arg} is invalid",E_INVALID)
+
+#
+# Process commands
+#
+if __name__ == "__main__":
+
+ EXITCODE = E_OK
+ #
+ # check for existence of grouper function
+ #
+ if "grouper_"+GROUPER not in globals():
+ error(f"grouper '{GROUPER}' is invalid",E_INVALID)
+
+ #
+ # check for consistent use of modify and output file extension
+ #
+ if OUTPUT is None:
+ OUTPUT = "/dev/stdout"
+ elif MODIFY and os.path.splitext(OUTPUT)[1] != ".glm":
+ error(f"modify output must be GLM",E_INVALID)
+ elif not MODIFY and os.path.splitext(OUTPUT)[1] != ".json":
+ error(f"model output must be JSON",E_INVALID)
+
+ try:
+
+ #
+ # call grouper
+ #
+ model = globals()["grouper_"+GROUPER]()
+
+ #
+ # generate output
+ #
+ with open(OUTPUT,"w") as fh:
+ if MODIFY:
+ print(f"// generated by {' '.join(sys.argv)} at {datetime.datetime.now()}",file=fh)
+
+ # generate python variables
+ groups = {}
+ controls = {}
+ swingbus = {}
+ isolated = []
+ for obj,data in model['objects'].items():
+ groupid = data['groupid']
+ if groupid:
+ if groupid.startswith(PREFIX):
+ if not data['groupid'] in groups:
+ groups[groupid] = [obj]
+ else:
+ groups[groupid].append(obj)
+ if not groupid in isolated and not groupid in swingbus:
+ isolated.append(groupid)
+ if 'bustype' in data and data['bustype'] in ['SWING','SWING_PG']:
+ if not obj in swingbus:
+ swingbus[groupid] = [obj]
+ else:
+ swingbus[groupid].append(obj)
+ if groupid in isolated:
+ isolated.remove(groupid)
+ elif groupid == CONTROL and 'from' in data and 'to' in data:
+ controls[obj] = [model['objects'][data[x]]['groupid'] for x in ['from','to']]
+ print(f"""#begin python
+groups = {groups}
+controls = {controls}
+swingbus = {swingbus}
+isolated = {isolated}
+#end
+""",file=fh)
+ # output modify directives
+ for obj,data in model['objects'].items():
+ groupid = data['groupid']
+ if groupid:
+ print(f"modify {obj}.groupid '{groupid}';",file=fh)
+ else:
+ json.dump(model,fh,indent=4)
+
+ except SystemExit as err:
+
+ EXITCODE = err
+
+ except:
+
+ if DEBUG:
+ raise
+
+ e_type,e_value,e_trace = sys.exc_info()
+ error(f"{e_type.__name__} {e_value} at line {e_trace.tb_lineno}",E_EXCEPTION)
+
+ exit(EXITCODE)
diff --git a/tools/insights.py b/tools/insights.py
index 2655a8f79..bc829a7c2 100644
--- a/tools/insights.py
+++ b/tools/insights.py
@@ -45,7 +45,7 @@
CAVEAT
-Collects version usage data for HiPAS GridLAB-D by year and month. If month
+Collects version usage data for Arras Energy by year and month. If month
is not specified, then all months of the current year are returned. If year
is not specified, then all months of all years are returned.
diff --git a/tools/install.py b/tools/install.py
index c18ba4c11..35a80b462 100644
--- a/tools/install.py
+++ b/tools/install.py
@@ -1,19 +1,21 @@
# Syntax: install [OPTIONS ...] ORGANIZATION/REPOSITORY ...
"""GridLAB-D tool installer
-Syntax:
+Syntax
+------
gridlabd install [OPTIONS ...] ORGANIZATION/REPOSITORY ...
-Options:
+Options
+-------
--branch|-b=BRANCH select a branch (default is "main")
-The installer inspects the repository's install manifest file 'install.json'.
-The 'application' tag must be 'gridlabd' and the version must be the same the
-current version of 'gridlabd'. When these conditions are satisfied,
-the 'install-command' is executed in a shell, with the 'branch' variable
-inserted where specified by the '{branch}' string.
+The installer inspects the repository's install manifest file `install.json`.
+The `application` tag must be 'gridlabd' and the version must be the same the
+current version of `gridlabd`. When these conditions are satisfied,
+the `install-command` is executed in a shell, with the `BRANCH` variable
+inserted where specified by the `{BRANCH}` string.
Developer Guide:
@@ -22,15 +24,14 @@
{
"application" : "gridlabd",
"version" : 4.3,
- "tool-name" : "my_tool",
- "install-command" : "curl -sL https://raw.githubusercontent.com/dchassin/gridlabd-advisor/{branch}/install.sh | bash"
+ "tool-name" : "{NAME}",
+ "install-command" : "curl -sL https://raw.githubusercontent.com/{REPO}/{BRANCH}/install.sh | bash"
}
Example `install.sh` install command
- python3 -m pip install -qq openai
- mkdir -p $HOME/.openai
- curl -sL https://raw.githubusercontent.com/dchassin/gridlabd-advisor/main/advisor.py -o $(gridlabd --version=install)/share/gridlabd/advisor.py || echo "ERROR: install failed" > /dev/stderr
+ echo 'git clone https://github.com/${REPO} ${GLD_SRC}/module/${NAME} -b ${BRANCH:-master} --depth 1' | gridlabd shell
+ echo 'cd ${GLD_SRC}/module/${NAME}/source;make install' | gridlabd shell
"""
import sys, os
@@ -85,7 +86,10 @@
toolname = data['tool-name'] if "tool-name" in data else item.split('/')[1]
# run the install command
- if os.system(data["install-command"].format(branch=BRANCH,BRANCH=BRANCH)):
+ os.environ["REPO"] = item
+ os.environ["BRANCH"] = BRANCH
+ os.environ["NAME"] = toolname
+ if os.system(data["install-command"].format(branch=BRANCH,BRANCH=BRANCH,REPO=item,NAME=toolname)):
raise Exception(f"{' '.join(sys.argv)} failed")
else:
print(f"Install of {item} done. Run 'gridlabd {toolname} help' for more information.")
diff --git a/tools/isone.py b/tools/isone.py
new file mode 100644
index 000000000..e93f8c44c
--- /dev/null
+++ b/tools/isone.py
@@ -0,0 +1,328 @@
+# Syntax: isone [OPTIONS ...]
+"""ISO New England data access module
+
+Syntax
+------
+
+Shell:
+
+~~~
+gridlabd isone [OPTIONS ...]
+~~~
+
+GLM:
+
+~~~
+#python -m isone [OPTIONS ...]
+~~~
+
+Options
+-------
+ -d|-debug Enable traceback output on exceptions
+ -D|--dataset=DATASET/SUBSET Download data from the specified dataset
+ (and subset, default is `smd/ISO NE CA`)
+ -c|--csv=FILENAME Save CSV data to the specified file
+ (default is /dev/stdout)
+ -C|--CLASS=CLASSNAME Specify the GLM class name (default is
+ `isone`)
+ -e|--end=YEAR|STOPDATE Download data ending on the specified year
+ or date (last month default)
+ -f|--freshen Freshen the data cache
+ -g|--glm=FILENAME Save GLM data to the specified file
+ (default is /dev/null)
+ -h|--help|help Output the help documentation
+ -l|--list Output a list of available sheets in dataset
+ -N|--NAME=OBJECTNAME Specify the GLM object name (default is
+ `isone`)
+ -q|--quiet Suppress error output messages
+ -s|--start=YEAR|STARTDATE Download data starting on the specified
+ year or date (last month by default)
+ -v|--verbose Enable verbose output
+ -y|--year[=YEAR] Download data for the specified year
+ (current year by default)
+
+Currently the only supported dataset is `smd`. The valid subsets depend on the
+dataset and year. See https://www.iso-ne.com/isoexpress/web/reports/load-and-demand/-/tree/zone-info
+for more information.
+
+Example
+-------
+
+The following generates the wholesale market data New Hampshire for May 2023:
+
+~~~
+sh$ gridlabd isone -D=smd/NH -f -s=2023-05-01 -e=2023-06-01
+timestamp,DA_Demand,RT_Demand,DA_LMP,DA_EC,DA_CC,DA_MLC,RT_LMP,RT_EC,RT_CC,RT_MLC,Dry_Bulb,Dew_Point
+2023-05-01 00:00:00,801.30,924.94,24.63,24.64,-0.05,0.04,18.96,18.75,0.18,0.03,53,51
+2023-05-01 01:00:00,807.90,899.31,20.61,20.59,-0.03,0.05,18.88,18.70,0.18,0.00,54,53
+2023-05-01 02:00:00,765.20,885.84,20.56,20.57,-0.03,0.02,18.12,17.73,0.41,-0.02,54,53
+...
+2023-06-01 21:00:00,1753.00,1594.43,58.33,57.55,0.00,0.78,41.90,41.65,0.00,0.25,75,61
+2023-06-01 22:00:00,1495.20,1425.32,50.57,50.31,0.00,0.26,35.95,35.82,0.00,0.13,77,59
+2023-06-01 23:00:00,1269.60,1283.86,53.36,52.86,0.00,0.50,36.52,36.40,0.00,0.12,77,59
+~~~
+"""
+
+import sys, os
+import datetime
+import pandas
+import requests
+import traceback
+
+EXECNAME = os.path.splitext(os.path.basename(sys.argv[0]))[0]
+DATASET = "smd/ISO NE CA"
+CSVFILE = "/dev/stdout"
+GLMFILE = None
+CLASSNAME = "isone"
+OBJNAME = "isone"
+STARTDATE = None
+STOPDATE = None
+CACHEDIR = "/usr/local/opt/gridlabd/current/share/gridlabd/isone.d/" \
+ if not "GLD_ETC" in os.environ else os.path.join(os.environ['GLD_ETC'],"isone")
+DATEFORMAT = "%Y-%m-%d"
+FLOATFORMAT = "%.2f"
+FRESHEN = False
+VERBOSE = False
+QUIET = False
+DEBUG = False
+
+E_OK = 0
+E_SYNTAX = 1
+E_INVALID = 2
+E_FAILED = 3
+
+class IsoneException(Exception):
+ pass
+
+def error(msg,code=None):
+ if DEBUG:
+ raise IsoneException(msg)
+ if not QUIET:
+ print(f"ERROR [{EXECNAME}]: {msg}",flush=True,file=sys.stderr)
+ if not code is None:
+ exit(code)
+
+def verbose(msg):
+ if VERBOSE:
+ print(f"VERBOSE [{EXECNAME}]: {msg}",flush=True,file=sys.stderr)
+
+def get_year(year=None,dataset=None):
+ """Get data from a year
+ :param year: int - the starting date in DATEFORMAT
+ :return: pandas.DataFrame - the requested dataset
+ :return: list - list of available subsets (if dataset is None)
+ """
+ if year == None:
+ year = datetime.datetime.now().year
+ verbose(f"setting to default year '{year}'")
+ assert(type(year)==int)
+ if dataset == None:
+ dataset = DATASET
+ verbose(f"setting to default dataset '{dataset}'")
+ specs = dataset.split("/")
+ if len(specs) != 2:
+ error(f"dataset {dataset} is not valid",E_INVALID)
+
+ cachefile = os.path.join(CACHEDIR,f"{specs[0]}_{year}.xlsx")
+ if FRESHEN or not os.path.exists(cachefile):
+ verbose(f"creating cache directory '{CACHEDIR}'")
+ os.makedirs(CACHEDIR,exist_ok=True)
+ try:
+ url = f"https://www.iso-ne.com/static-assets/documents/{year}/02/{year}_{specs[0]}_hourly.xlsx"
+ verbose(f"downloading data from '{url}'")
+ req = requests.get(url)
+ if req.status_code == 200:
+ verbose(f"saving data to '{cachefile}'")
+ with open(cachefile,"wb") as xls:
+ xls.write(req.content)
+ else:
+ error(f"unable to download data from '{url}' (HTTP code {req.status_code})",E_FAILED)
+ except Exception as err:
+ error(f"unable to get data from '{url}' ({err})",E_FAILED)
+ verbose(f"loading '{specs[1]}' from '{cachefile}'")
+ return pandas.read_excel(cachefile,sheet_name=specs[1],index_col=[0,1],parse_dates=[0])
+
+def get_data(startdate=None,stopdate=None,dataset=None):
+ """Get data from a date range
+ :param startdate: str - the starting date in DATEFORMAT
+ :param stopdate: str - the stopping date in DATEFORMAT
+ :param dataset: str - the dataset/subset specification
+ :return: pandas.DataFrame - the requested data
+ """
+ if startdate == None:
+ startdate = datetime.datetime(year=datetime.datetime.now().year,month=1,day=1)
+ else:
+ startdate = datetime.datetime.strptime(startdate,DATEFORMAT)
+ if stopdate == None:
+ stopdate = datetime.datetime.now()
+ else:
+ stopdate = datetime.datetime.strptime(stopdate,DATEFORMAT)
+ if startdate > stopdate:
+ error("startdate is after stopdate",E_INVALID)
+ data = []
+ for year in range(startdate.year,stopdate.year+1):
+ data.append(get_year(year,dataset))
+ data = pandas.concat(data)
+ maxdate = min(data.index.get_level_values(0).max(),stopdate)
+ return data.loc[pandas.date_range(startdate,maxdate)]
+
+def fix_timestamps(df):
+ """Fix timestamp in dataframe
+ :param data: pandas.DataFrame - data to fix
+ :return: pandas.DataFrame - fixed data
+ """
+ df['timestamp'] = [x[0] + datetime.timedelta(hours = int(x[1])-1) for x in list(df.index)]
+ return df.set_index('timestamp')
+
+if __name__ == "__main__":
+ if len(sys.argv) == 1:
+ for line in __doc__.split("\n"):
+ if line.startswith("Syntax: "):
+ print(line,file=sys.stderr)
+ exit(E_SYNTAX)
+ elif sys.argv[1] in ["-h","--help","help"]:
+ print(__doc__)
+ exit(E_OK)
+ for arg in sys.argv[1:]:
+ spec = arg.split("=")
+ if len(spec) == 1:
+ token = arg
+ value = None
+ elif len(spec) == 2:
+ token = spec[0]
+ value = spec[1]
+ else:
+ token = spec[0]
+ value = "=".join(spec[1:])
+
+ if token in ["-v","--verbose"]:
+ VERBOSE = True
+ elif token in ["-q","--quiet"]:
+ QUIET = True
+ elif token in ["-d","--debug"]:
+ DEBUG = True
+
+ # -D|--dataset=DATASET/SUBSET Download data from the specified dataset
+ # (and subset, default is `smd/ISO NE CA`)
+ elif token in ["-D","--dataset"]:
+ if value:
+ DATASET = value
+ else:
+ error("dataset not specified",E_SYNTAX)
+
+ # -c|--csv=FILENAME Save CSV data to the specified file
+ # (default is /dev/stdout)
+ elif token in ["-c","--csv"]:
+ if value:
+ CSVFILE = value
+ else:
+ error("csvfile not specified",E_SYNTAX)
+
+ # -C|--CLASS=CLASSNAME Specify the GLM class name (default is
+ # `isone`)
+ elif token in ["-C","--CLASS"]:
+ if value:
+ CLASSNAME = value
+ else:
+ error("class name not specified",E_SYNTAX)
+
+ # -e|--end=YEAR|STOPDATE Download data ending on the specified year
+ # or date (last month default)
+ elif token in ["-e","--end"]:
+ if value:
+ try:
+ STOPDATE = int(value)
+ except:
+ STOPDATE = value
+
+ # -f|--freshen Freshen the data cache
+ elif token in ["-f","--freshen"]:
+ FRESHEN = True
+
+ # -g|--glm=FILENAME save GLM data to the specified file
+ # (default is /dev/null)
+ elif token in ["-g","--glm"]:
+ if value:
+ GLMFILE = value
+ else:
+ error("GLM name not specified",E_SYNTAX)
+
+ # -l|--list output a list of available datasets
+ elif token in ["-l","--list"]:
+ print("\n".join(get_year(value)),file=sys.stdout)
+ exit(E_OK)
+
+ # -N|--NAME=OBJECTNAME specify the GLM object name (default is
+ # `isone`)
+ elif token in ["-N","--NAME"]:
+ if value:
+ OBJNAME = value
+ else:
+ error("object name not specified",E_SYNTAX)
+
+ # -s|--start=YEAR|STARTDATE download data starting on the specified
+ # year or date (last month by default)
+ elif token in ["-s","--start"]:
+ if value:
+ try:
+ STARTDATE = str(int(value))
+ except:
+ STARTDATE = value
+
+ # -y|--year[=YEAR] download data for the specified year
+ # (current year by default)
+ elif token in ["-y","--year"]:
+ if value:
+ try:
+ STARTDATE = value + "-01-01"
+ STOPDATE = value + "-12-31"
+ except:
+ error(f"year '{value}' is invalid",E_INVALID)
+ else:
+ error("year not specified",E_SYNTAX)
+
+ # invalid argument
+ else:
+ error(f"argument '{arg}' is not recognized",E_SYNTAX)
+
+ try:
+ data = get_data(STARTDATE,STOPDATE)
+
+ if GLMFILE:
+ if CSVFILE.startswith("/dev/"):
+ error(f"CSV file '{CSVFILE}' must be a regular file",E_INVALID)
+
+ # classinfo = CLASSNAME.split(".")
+
+ properties = "\n ".join([f'double {x};' for x in data.columns])
+ with open(GLMFILE,"w") as glm:
+ glm.write(f"""// created by '{' '.join(sys.argv)}' at {datetime.datetime.now()}
+class {CLASSNAME}
+{{
+ {properties}
+}}
+module tape;
+object {CLASSNAME}
+{{
+ name {OBJNAME};
+ object player
+ {{
+ file "{CSVFILE}";
+ property "{','.join(data.columns)}";
+ }};
+}}
+#define ISONE_TIMEZONE=EST+5EDT
+#define ISONE_STARTDATE={data.index.get_level_values(0).min()}
+#define ISONE_STOPDATE={data.index.get_level_values(0).max()+datetime.timedelta(days=1)}
+""")
+
+ fix_timestamps(data).to_csv(CSVFILE,float_format=FLOATFORMAT,header=(GLMFILE is None))
+
+ exit(E_OK)
+ except SystemExit as err:
+ exit(err.code)
+ except:
+ e_type,e_value,e_trace = sys.exc_info()
+ if DEBUG:
+ traceback.print_tb(e_trace)
+ error(f"{e_value} ({e_type.__name__} exception)",E_FAILED)
diff --git a/tutorials/Geodata/geodata.conf b/tutorials/Geodata/geodata.conf
new file mode 100644
index 000000000..a3cea9ea5
--- /dev/null
+++ b/tutorials/Geodata/geodata.conf
@@ -0,0 +1 @@
+{"vegetation.username": "name@example.com", "vegetation.password": "password5839"}
diff --git a/tutorials/Geodata/geodata_powerline_cabletypes.csv b/tutorials/Geodata/geodata_powerline_cabletypes.csv
new file mode 100644
index 000000000..0c666e459
--- /dev/null
+++ b/tutorials/Geodata/geodata_powerline_cabletypes.csv
@@ -0,0 +1,2 @@
+id,diameter,unit_weight,rated_tensile_strength,elasticity,thermal_expansion,conductor_crosssection_area,resistivity,nominal_resistance,nomimal_temperature,voltage_rating,reflectivity,emissivity
+TACSR/AC 610mm^2,34.2e-3,21.56,7.2e4,7.18e10,2.06e-5,691.8e-6,0.0039,4.58e-5,15.0,230e3,0.5,0.6
diff --git a/tutorials/Geodata/tutorial.ipynb b/tutorials/Geodata/tutorial.ipynb
index d536fee8b..0ae5d2778 100644
--- a/tutorials/Geodata/tutorial.ipynb
+++ b/tutorials/Geodata/tutorial.ipynb
@@ -30,19 +30,7 @@
"execution_count": 1,
"id": "6aa36791",
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\r\n",
- "Usage: \r\n",
- " /usr/local/opt/python@3.9/bin/python3.9 -m pip [options]\r\n",
- "\r\n",
- "no such option: -r\r\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"!gridlabd --version='-ge 4.2.26'\n",
"!gridlabd requirements"
@@ -93,8 +81,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude\r\n",
- "0,37.415,-122.2\r\n"
+ "id,latitude,longitude\n",
+ "0,37.415,-122.2\n"
]
}
],
@@ -148,10 +136,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "latitude,longitude,configuration,pole_height\r\n",
- "37.415045141688054,-122.2056472090359,flat3,18.0\r\n",
- "37.414698020593065,-122.20848749028133,sideT,20.0\r\n",
- "37.414454093051745,-122.21044282065421,sideT,21.0\r\n"
+ "latitude,longitude,configuration,pole_height\n",
+ "37.415045141688054,-122.2056472090359,flat3,18.0\n",
+ "37.414698020593065,-122.20848749028133,sideT,20.0\n",
+ "37.414454093051745,-122.21044282065421,sideT,21.0\n"
]
}
],
@@ -177,10 +165,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude,configuration,pole_height\r\n",
- "0,37.41505,-122.20565,flat3,18.0\r\n",
- "1,37.4147,-122.20849,sideT,20.0\r\n",
- "2,37.41445,-122.21044,sideT,21.0\r\n"
+ "id,latitude,longitude,configuration,pole_height\n",
+ "0,37.41505,-122.20565,flat3,18.0\n",
+ "1,37.4147,-122.20849,sideT,20.0\n",
+ "2,37.41445,-122.21044,sideT,21.0\n"
]
}
],
@@ -243,9 +231,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,name,latitude,longitude\r\n",
- "0,obj1,37.4205,-122.2046\r\n",
- "1,obj2,37.5205,-122.3046\r\n"
+ "id,name,latitude,longitude\n",
+ "0,obj1,37.4205,-122.2046\n",
+ "1,obj2,37.5205,-122.3046\n"
]
}
],
@@ -271,9 +259,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,name,latitude,longitude\r\n",
- "0,obj1,37.4205,-122.2046\r\n",
- "1,obj2,37.5205,-122.3046\r\n"
+ "id,name,latitude,longitude\n",
+ "0,obj1,37.4205,-122.2046\n",
+ "1,obj2,37.5205,-122.3046\n"
]
}
],
@@ -323,10 +311,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude\r\n",
- "0,37.41,-122.2\r\n",
- "1,37.42,-122.2\r\n",
- "2,37.42,-122.21\r\n"
+ "id,latitude,longitude\n",
+ "0,37.41,-122.2\n",
+ "1,37.42,-122.2\n",
+ "2,37.42,-122.21\n"
]
}
],
@@ -352,10 +340,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude\r\n",
- "0,37.41,-122.2\r\n",
- "1,37.42,-122.2\r\n",
- "2,37.42,-122.21\r\n"
+ "id,latitude,longitude\n",
+ "0,37.41,-122.2\n",
+ "1,37.42,-122.2\n",
+ "2,37.42,-122.21\n"
]
}
],
@@ -381,9 +369,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "37.41,-122.2\r\n",
- "37.42,-122.2\r\n",
- "37.42,-122.21\r\n"
+ "37.41,-122.2\n",
+ "37.42,-122.2\n",
+ "37.42,-122.21\n"
]
}
],
@@ -417,7 +405,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "37.41,-122.2;37.42,-122.2;37.42,-122.21\r\n"
+ "37.41,-122.2;37.42,-122.2;37.42,-122.21\n"
]
}
],
@@ -500,7 +488,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "local_value\r\n"
+ "local_value\n"
]
}
],
@@ -526,14 +514,14 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "geodata_url='http://geodata.gridlabd.us/'\r\n",
- "output_format='CSV'\r\n",
- "path_join='outer'\r\n",
- "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\r\n",
- "uuid_type='4'\r\n",
- "vegetation.username='name@example.com'\r\n",
- "vegetation.password='password5839'\r\n",
- "name='local_value'\r\n"
+ "geodata_url='http://geodata.gridlabd.us/'\n",
+ "output_format='CSV'\n",
+ "path_join='outer'\n",
+ "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\n",
+ "uuid_type='4'\n",
+ "vegetation.username='name@example.com'\n",
+ "vegetation.password='password5839'\n",
+ "name='local_value'\n"
]
}
],
@@ -559,15 +547,15 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "geodata_url='http://geodata.gridlabd.us/'\r\n",
- "output_format='CSV'\r\n",
- "path_join='outer'\r\n",
- "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\r\n",
- "uuid_type='4'\r\n",
- "vegetation.username='name@example.com'\r\n",
- "vegetation.password='password5839'\r\n",
- "name='local_value'\r\n",
- "user.name='user_value'\r\n"
+ "geodata_url='http://geodata.gridlabd.us/'\n",
+ "output_format='CSV'\n",
+ "path_join='outer'\n",
+ "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\n",
+ "uuid_type='4'\n",
+ "vegetation.username='name@example.com'\n",
+ "vegetation.password='password5839'\n",
+ "name='local_value'\n",
+ "user.name='user_value'\n"
]
}
],
@@ -594,16 +582,16 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "geodata_url='http://geodata.gridlabd.us/'\r\n",
- "output_format='CSV'\r\n",
- "path_join='outer'\r\n",
- "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\r\n",
- "uuid_type='4'\r\n",
- "vegetation.username='name@example.com'\r\n",
- "vegetation.password='password5839'\r\n",
- "name='local_value'\r\n",
- "user.name='user_value'\r\n",
- "system.name='system_value'\r\n"
+ "geodata_url='http://geodata.gridlabd.us/'\n",
+ "output_format='CSV'\n",
+ "path_join='outer'\n",
+ "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\n",
+ "uuid_type='4'\n",
+ "vegetation.username='name@example.com'\n",
+ "vegetation.password='password5839'\n",
+ "name='local_value'\n",
+ "user.name='user_value'\n",
+ "system.name='system_value'\n"
]
}
],
@@ -630,15 +618,15 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "geodata_url='http://geodata.gridlabd.us/'\r\n",
- "output_format='CSV'\r\n",
- "path_join='outer'\r\n",
- "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\r\n",
- "uuid_type='4'\r\n",
- "vegetation.username='name@example.com'\r\n",
- "vegetation.password='password5839'\r\n",
- "user.name='user_value'\r\n",
- "system.name='system_value'\r\n"
+ "geodata_url='http://geodata.gridlabd.us/'\n",
+ "output_format='CSV'\n",
+ "path_join='outer'\n",
+ "column_names='{'ID': 'id', 'UUID': 'uuid', 'LAT': 'latitude', 'LON': 'longitude', 'DIST': 'distance', 'HEAD': 'heading', 'LOC': 'location', 'POS': 'position'}'\n",
+ "uuid_type='4'\n",
+ "vegetation.username='name@example.com'\n",
+ "vegetation.password='password5839'\n",
+ "user.name='user_value'\n",
+ "system.name='system_value'\n"
]
}
],
@@ -714,7 +702,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "{\"0\":{\"latitude\":37.41,\"longitude\":-122.2},\"1\":{\"latitude\":37.42,\"longitude\":-122.2},\"2\":{\"latitude\":37.42,\"longitude\":-122.21}}\r\n"
+ "{\"0\":{\"latitude\":37.41,\"longitude\":-122.2},\"1\":{\"latitude\":37.42,\"longitude\":-122.2},\"2\":{\"latitude\":37.42,\"longitude\":-122.21}}\n"
]
}
],
@@ -740,7 +728,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "{\"schema\":{\"fields\":[{\"name\":\"id\",\"type\":\"integer\"},{\"name\":\"latitude\",\"type\":\"number\"},{\"name\":\"longitude\",\"type\":\"number\"}],\"primaryKey\":[\"id\"],\"pandas_version\":\"0.20.0\"},\"data\":[{\"id\":0,\"latitude\":37.41,\"longitude\":-122.2},{\"id\":1,\"latitude\":37.42,\"longitude\":-122.2},{\"id\":2,\"latitude\":37.42,\"longitude\":-122.21}]}\r\n"
+ "{\"schema\":{\"fields\":[{\"name\":\"id\",\"type\":\"integer\"},{\"name\":\"latitude\",\"type\":\"number\"},{\"name\":\"longitude\",\"type\":\"number\"}],\"primaryKey\":[\"id\"],\"pandas_version\":\"1.4.0\"},\"data\":[{\"id\":0,\"latitude\":37.41,\"longitude\":-122.2},{\"id\":1,\"latitude\":37.42,\"longitude\":-122.2},{\"id\":2,\"latitude\":37.42,\"longitude\":-122.21}]}\n"
]
}
],
@@ -774,9 +762,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "37.41 -122.2\r\n",
- "37.42 -122.2\r\n",
- "37.42 -122.21\r\n"
+ "37.41 -122.2\n",
+ "37.42 -122.2\n",
+ "37.42 -122.21\n"
]
}
],
@@ -802,11 +790,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude\r\n",
- "id \r\n",
- "0 37.41 -122.20\r\n",
- "1 37.42 -122.20\r\n",
- "2 37.42 -122.21\r\n"
+ " latitude longitude\n",
+ "id \n",
+ "0 37.41 -122.20\n",
+ "1 37.42 -122.20\n",
+ "2 37.42 -122.21\n"
]
}
],
@@ -832,9 +820,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "-122.2,37.41\r\n",
- "-122.2,37.42\r\n",
- "-122.21,37.42\r\n"
+ "-122.2,37.41\n",
+ "-122.2,37.42\n",
+ "-122.21,37.42\n"
]
}
],
@@ -862,10 +850,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude\r\n",
- "0,37.41,-122.2\r\n",
- "1,37.42,-122.2\r\n",
- "2,37.42,-122.21\r\n"
+ "id,latitude,longitude\n",
+ "0,37.41,-122.2\n",
+ "1,37.42,-122.2\n",
+ "2,37.42,-122.21\n"
]
}
],
@@ -891,10 +879,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "location,latitude,longitude,id\r\n",
- "9q9hg629j97y,37.41,-122.2,0\r\n",
- "9q9hgk0em9ef,37.42,-122.2,1\r\n",
- "9q9hgh17k9e4,37.42,-122.21,2\r\n"
+ "location,latitude,longitude,id\n",
+ "9q9hg629j97y,37.41,-122.2,0\n",
+ "9q9hgk0em9ef,37.42,-122.2,1\n",
+ "9q9hgh17k9e4,37.42,-122.21,2\n"
]
}
],
@@ -920,10 +908,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "position,latitude,longitude,id,distance,heading\r\n",
- "0,37.41,-122.2,0,0.0,\r\n",
- "1112,37.42,-122.2,1,1112.0,0.0\r\n",
- "1995,37.42,-122.21,2,1995.0,270.0\r\n"
+ "position,latitude,longitude,id,distance,heading\n",
+ "0,37.41,-122.2,0,0.0,0.0\n",
+ "1112,37.42,-122.2,1,1112.0,0.0\n",
+ "1995,37.42,-122.21,2,1995.0,270.0\n"
]
}
],
@@ -949,10 +937,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "latitude,longitude,id\r\n",
- "37.41,-122.2,0\r\n",
- "37.42,-122.2,1\r\n",
- "37.42,-122.21,2\r\n"
+ "latitude,longitude,id\n",
+ "37.41,-122.2,0\n",
+ "37.42,-122.2,1\n",
+ "37.42,-122.21,2\n"
]
}
],
@@ -978,10 +966,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "uuid,latitude,longitude,id\r\n",
- "814feaf2794e4dc08a25eddc4a68f043,37.41,-122.2,0\r\n",
- "0f1c64584e604b2cac8c69eb40135b70,37.42,-122.2,1\r\n",
- "adc8ba4186874fbb9a7ff18fe1b9eaad,37.42,-122.21,2\r\n"
+ "uuid,latitude,longitude,id\n",
+ "0eac3176f9044c7bbef6e61575b332f2,37.41,-122.2,0\n",
+ "b1cc8dc0ab6840af92f8403476d69b6a,37.42,-122.2,1\n",
+ "2133bf6e2cf94e9bb943279d6441a173,37.42,-122.21,2\n"
]
}
],
@@ -1007,10 +995,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "uuid,latitude,longitude,id\r\n",
- "0705a628020d11ecbde8d0817adb129d,37.41,-122.2,0\r\n",
- "0705a6e6020d11ecbde8d0817adb129d,37.42,-122.2,1\r\n",
- "0705a718020d11ecbde8d0817adb129d,37.42,-122.21,2\r\n"
+ "uuid,latitude,longitude,id\n",
+ "33b15c2c5fac11eeab4bacde48001122,37.41,-122.2,0\n",
+ "33b15ce05fac11eeab4bacde48001122,37.42,-122.2,1\n",
+ "33b15d085fac11eeab4bacde48001122,37.42,-122.21,2\n"
]
}
],
@@ -1038,18 +1026,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance heading\r\n",
- "position \r\n",
- "0 37.41000 -122.20000 0.0 0.0 NaN\r\n",
- "250 37.41225 -122.20000 NaN 250.0 0.0\r\n",
- "500 37.41450 -122.20000 NaN 500.0 0.0\r\n",
- "750 37.41674 -122.20000 NaN 750.0 0.0\r\n",
- "1000 37.41899 -122.20000 NaN 1000.0 0.0\r\n",
- "1112 37.42000 -122.20000 1.0 1112.0 0.0\r\n",
- "1362 37.42000 -122.20283 NaN 1362.0 270.0\r\n",
- "1612 37.42000 -122.20566 NaN 1612.0 270.0\r\n",
- "1862 37.42000 -122.20849 NaN 1862.0 270.0\r\n",
- "1995 37.42000 -122.21000 2.0 1995.0 270.0\r\n"
+ " latitude longitude id distance heading\n",
+ "position \n",
+ "0 37.41000 -122.20000 0.0 0.0 0.0\n",
+ "250 37.41225 -122.20000 NaN 250.0 0.0\n",
+ "500 37.41450 -122.20000 NaN 500.0 0.0\n",
+ "750 37.41674 -122.20000 NaN 750.0 0.0\n",
+ "1000 37.41899 -122.20000 NaN 1000.0 0.0\n",
+ "1112 37.42000 -122.20000 1.0 1112.0 0.0\n",
+ "1362 37.42000 -122.20283 NaN 1362.0 270.0\n",
+ "1612 37.42000 -122.20566 NaN 1612.0 270.0\n",
+ "1862 37.42000 -122.20849 NaN 1862.0 270.0\n",
+ "1995 37.42000 -122.21000 2.0 1995.0 270.0\n"
]
}
],
@@ -1075,18 +1063,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance heading\r\n",
- "position \r\n",
- "0 37.41000 -122.20000 0.0 0.0 NaN\r\n",
- "250 37.41225 -122.20000 NaN 250.0 0.0\r\n",
- "500 37.41450 -122.20000 NaN 500.0 0.0\r\n",
- "750 37.41674 -122.20000 NaN 750.0 0.0\r\n",
- "1000 37.41899 -122.20000 NaN 1000.0 0.0\r\n",
- "1112 37.42000 -122.20000 1.0 1112.0 0.0\r\n",
- "1362 37.42000 -122.20283 NaN 1362.0 270.0\r\n",
- "1612 37.42000 -122.20566 NaN 1612.0 270.0\r\n",
- "1862 37.42000 -122.20849 NaN 1862.0 270.0\r\n",
- "1995 37.42000 -122.21000 2.0 1995.0 270.0\r\n"
+ " latitude longitude id distance heading\n",
+ "position \n",
+ "0 37.41000 -122.20000 0.0 0.0 0.0\n",
+ "250 37.41225 -122.20000 NaN 250.0 0.0\n",
+ "500 37.41450 -122.20000 NaN 500.0 0.0\n",
+ "750 37.41674 -122.20000 NaN 750.0 0.0\n",
+ "1000 37.41899 -122.20000 NaN 1000.0 0.0\n",
+ "1112 37.42000 -122.20000 1.0 1112.0 0.0\n",
+ "1362 37.42000 -122.20283 NaN 1362.0 270.0\n",
+ "1612 37.42000 -122.20566 NaN 1612.0 270.0\n",
+ "1862 37.42000 -122.20849 NaN 1862.0 270.0\n",
+ "1995 37.42000 -122.21000 2.0 1995.0 270.0\n"
]
}
],
@@ -1120,18 +1108,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance heading\r\n",
- "position \r\n",
- "0 37.41000 -122.20000 0.000 0.0 NaN\r\n",
- "250 37.41225 -122.20000 0.125 250.0 0.0\r\n",
- "500 37.41450 -122.20000 0.251 500.0 0.0\r\n",
- "750 37.41674 -122.20000 0.376 750.0 0.0\r\n",
- "1000 37.41899 -122.20000 0.501 1000.0 0.0\r\n",
- "1112 37.42000 -122.20000 0.557 1112.0 0.0\r\n",
- "1362 37.42000 -122.20283 0.683 1362.0 270.0\r\n",
- "1612 37.42000 -122.20566 0.808 1612.0 270.0\r\n",
- "1862 37.42000 -122.20849 0.933 1862.0 270.0\r\n",
- "1995 37.42000 -122.21000 1.000 1995.0 270.0\r\n"
+ " latitude longitude id distance heading\n",
+ "position \n",
+ "0 37.41000 -122.20000 0.000 0.0 0.0\n",
+ "250 37.41225 -122.20000 0.125 250.0 0.0\n",
+ "500 37.41450 -122.20000 0.251 500.0 0.0\n",
+ "750 37.41674 -122.20000 0.376 750.0 0.0\n",
+ "1000 37.41899 -122.20000 0.501 1000.0 0.0\n",
+ "1112 37.42000 -122.20000 0.557 1112.0 0.0\n",
+ "1362 37.42000 -122.20283 0.683 1362.0 270.0\n",
+ "1612 37.42000 -122.20566 0.808 1612.0 270.0\n",
+ "1862 37.42000 -122.20849 0.933 1862.0 270.0\n",
+ "1995 37.42000 -122.21000 1.000 1995.0 270.0\n"
]
}
],
@@ -1165,18 +1153,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance heading\r\n",
- "position \r\n",
- "0 37.41000 -122.20000 0.00000 0.0 NaN\r\n",
- "250 37.41225 -122.20000 0.12531 250.0 0.0\r\n",
- "500 37.41450 -122.20000 0.25063 500.0 0.0\r\n",
- "750 37.41674 -122.20000 0.37594 750.0 0.0\r\n",
- "1000 37.41899 -122.20000 0.50125 1000.0 0.0\r\n",
- "1112 37.42000 -122.20000 0.55739 1112.0 0.0\r\n",
- "1362 37.42000 -122.20283 0.68271 1362.0 270.0\r\n",
- "1612 37.42000 -122.20566 0.80802 1612.0 270.0\r\n",
- "1862 37.42000 -122.20849 0.93333 1862.0 270.0\r\n",
- "1995 37.42000 -122.21000 1.00000 1995.0 270.0\r\n"
+ " latitude longitude id distance heading\n",
+ "position \n",
+ "0 37.41000 -122.20000 0.00000 0.0 0.0\n",
+ "250 37.41225 -122.20000 0.12531 250.0 0.0\n",
+ "500 37.41450 -122.20000 0.25063 500.0 0.0\n",
+ "750 37.41674 -122.20000 0.37594 750.0 0.0\n",
+ "1000 37.41899 -122.20000 0.50125 1000.0 0.0\n",
+ "1112 37.42000 -122.20000 0.55739 1112.0 0.0\n",
+ "1362 37.42000 -122.20283 0.68271 1362.0 270.0\n",
+ "1612 37.42000 -122.20566 0.80802 1612.0 270.0\n",
+ "1862 37.42000 -122.20849 0.93333 1862.0 270.0\n",
+ "1995 37.42000 -122.21000 1.00000 1995.0 270.0\n"
]
}
],
@@ -1202,18 +1190,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " position latitude longitude id distance heading\r\n",
- "location \r\n",
- "9q9hg629j97y 0 37.41000 -122.20000 0.0 0.0 NaN\r\n",
- "9q9hg68wjsgu 250 37.41225 -122.20000 NaN 250.0 0.0\r\n",
- "9q9hg70em87c 500 37.41450 -122.20000 NaN 500.0 0.0\r\n",
- "9q9hg788m9gu 750 37.41674 -122.20000 NaN 750.0 0.0\r\n",
- "9q9hg7btmt7c 1000 37.41899 -122.20000 NaN 1000.0 0.0\r\n",
- "9q9hgk0em9ef 1112 37.42000 -122.20000 1.0 1112.0 0.0\r\n",
- "9q9hghne79td 1362 37.42000 -122.20283 NaN 1362.0 270.0\r\n",
- "9q9hghhe39x6 1612 37.42000 -122.20566 NaN 1612.0 270.0\r\n",
- "9q9hgh47rc94 1862 37.42000 -122.20849 NaN 1862.0 270.0\r\n",
- "9q9hgh17k9e4 1995 37.42000 -122.21000 2.0 1995.0 270.0\r\n"
+ " position latitude longitude id distance heading\n",
+ "location \n",
+ "9q9hg629j97y 0 37.41000 -122.20000 0.0 0.0 0.0\n",
+ "9q9hg68wjsgu 250 37.41225 -122.20000 NaN 250.0 0.0\n",
+ "9q9hg70em87c 500 37.41450 -122.20000 NaN 500.0 0.0\n",
+ "9q9hg788m9gu 750 37.41674 -122.20000 NaN 750.0 0.0\n",
+ "9q9hg7btmt7c 1000 37.41899 -122.20000 NaN 1000.0 0.0\n",
+ "9q9hgk0em9ef 1112 37.42000 -122.20000 1.0 1112.0 0.0\n",
+ "9q9hghne79td 1362 37.42000 -122.20283 NaN 1362.0 270.0\n",
+ "9q9hghhe39x6 1612 37.42000 -122.20566 NaN 1612.0 270.0\n",
+ "9q9hgh47rc94 1862 37.42000 -122.20849 NaN 1862.0 270.0\n",
+ "9q9hgh17k9e4 1995 37.42000 -122.21000 2.0 1995.0 270.0\n"
]
}
],
@@ -1241,10 +1229,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude\r\n",
- "0,37.41,-122.2\r\n",
- "1,37.42,-122.2\r\n",
- "2,37.42,-122.21\r\n"
+ "id,latitude,longitude\n",
+ "0,37.41,-122.2\n",
+ "1,37.42,-122.2\n",
+ "2,37.42,-122.21\n"
]
}
],
@@ -1282,7 +1270,7 @@
{
"cell_type": "code",
"execution_count": 40,
- "id": "appreciated-address",
+ "id": "fcfe4854-5a18-4215-a94e-4e8d02dc6633",
"metadata": {},
"outputs": [
{
@@ -1386,11 +1374,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude distance\r\n",
- "id \r\n",
- "0 37.41 -122.20 0.0\r\n",
- "1 37.42 -122.20 1112.0\r\n",
- "2 37.42 -122.21 1995.0\r\n"
+ " latitude longitude distance\n",
+ "id \n",
+ "0 37.41 -122.20 0.0\n",
+ "1 37.42 -122.20 1112.0\n",
+ "2 37.42 -122.21 1995.0\n"
]
}
],
@@ -1410,19 +1398,17 @@
"cell_type": "code",
"execution_count": 42,
"id": "signal-anime",
- "metadata": {
- "scrolled": true
- },
+ "metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude distance\r\n",
- "id \r\n",
- "0 37.41 -122.20 0.0\r\n",
- "1 37.42 -122.20 0.0\r\n",
- "2 37.42 -122.21 0.0\r\n"
+ " latitude longitude distance\n",
+ "id \n",
+ "0 37.41 -122.20 0.0\n",
+ "1 37.42 -122.20 0.0\n",
+ "2 37.42 -122.21 0.0\n"
]
}
],
@@ -1448,11 +1434,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude distance\r\n",
- "id \r\n",
- "0 37.41 -122.20 0.0\r\n",
- "1 37.42 -122.20 3648.0\r\n",
- "2 37.42 -122.21 6545.0\r\n"
+ " latitude longitude distance\n",
+ "id \n",
+ "0 37.41 -122.20 0.0\n",
+ "1 37.42 -122.20 3648.0\n",
+ "2 37.42 -122.21 6545.0\n"
]
}
],
@@ -1478,11 +1464,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude distance\r\n",
- "id \r\n",
- "0 37.41 -122.20 0.0\r\n",
- "1 37.42 -122.20 1.0\r\n",
- "2 37.42 -122.21 2.0\r\n"
+ " latitude longitude distance\n",
+ "id \n",
+ "0 37.41 -122.20 0.0\n",
+ "1 37.42 -122.20 1.0\n",
+ "2 37.42 -122.21 2.0\n"
]
}
],
@@ -1508,11 +1494,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude distance\r\n",
- "id \r\n",
- "0 37.41 -122.20 0.00\r\n",
- "1 37.42 -122.20 1.11\r\n",
- "2 37.42 -122.21 2.00\r\n"
+ " latitude longitude distance\n",
+ "id \n",
+ "0 37.41 -122.20 0.00\n",
+ "1 37.42 -122.20 1.11\n",
+ "2 37.42 -122.21 2.00\n"
]
}
],
@@ -1538,18 +1524,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance heading\r\n",
- "position \r\n",
- "0 37.41000 -122.20000 0.0 0.0 NaN\r\n",
- "250 37.41225 -122.20000 NaN 250.0 0.0\r\n",
- "500 37.41450 -122.20000 NaN 500.0 0.0\r\n",
- "750 37.41674 -122.20000 NaN 750.0 0.0\r\n",
- "1000 37.41899 -122.20000 NaN 1000.0 0.0\r\n",
- "1112 37.42000 -122.20000 1.0 0.0 0.0\r\n",
- "1362 37.42000 -122.20283 NaN 250.0 270.0\r\n",
- "1612 37.42000 -122.20566 NaN 500.0 270.0\r\n",
- "1862 37.42000 -122.20849 NaN 750.0 270.0\r\n",
- "1995 37.42000 -122.21000 2.0 0.0 270.0\r\n"
+ " latitude longitude id distance heading\n",
+ "position \n",
+ "0 37.41000 -122.20000 0.0 0.0 0.0\n",
+ "250 37.41225 -122.20000 NaN 250.0 0.0\n",
+ "500 37.41450 -122.20000 NaN 500.0 0.0\n",
+ "750 37.41674 -122.20000 NaN 750.0 0.0\n",
+ "1000 37.41899 -122.20000 NaN 1000.0 0.0\n",
+ "1112 37.42000 -122.20000 1.0 0.0 0.0\n",
+ "1362 37.42000 -122.20283 NaN 250.0 270.0\n",
+ "1612 37.42000 -122.20566 NaN 500.0 270.0\n",
+ "1862 37.42000 -122.20849 NaN 750.0 270.0\n",
+ "1995 37.42000 -122.21000 2.0 0.0 270.0\n"
]
}
],
@@ -1579,8 +1565,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,latitude,longitude,address\r\n",
- "0,37.42,-122.2,\"Stanford Linear Accelerator Center National Accelerator Laboratory, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\"\r\n"
+ "id,latitude,longitude,address\n",
+ "0,37.42,-122.2,\"Stanford Linear Accelerator Center National Accelerator Laboratory, 2575, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\"\n"
]
}
],
@@ -1606,8 +1592,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,index,address,longitude,latitude\r\n",
- "0,0,\"2575 Sand Hill Rd, Menlo Park CA 94025\",-122.20457,37.42046\r\n"
+ "id,index,address,longitude,latitude\n",
+ "0,0,\"2575 Sand Hill Rd, Menlo Park CA 94025\",-122.20493,37.41679\n"
]
}
],
@@ -1633,8 +1619,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,index,address,longitude,latitude\r\n",
- "0,0,Main St.,114.04407,22.31315\r\n"
+ "id,index,address,longitude,latitude\n",
+ "0,0,Main St.,-75.49196,40.39089\n"
]
}
],
@@ -1660,8 +1646,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "id,index,address,longitude,latitude\r\n",
- "0,0,\"54 - Stanford Research Computing Facility, 2575, Sand Hill Road, Stanford Hills, Menlo Park, San Mateo County, California, 94305, United States\",-122.20118,37.41546\r\n"
+ "id,index,address,longitude,latitude\n",
+ "0,0,\"Stanford Linear Accelerator Center National Accelerator Laboratory, 2575, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\",-122.20493,37.41679\n"
]
}
],
@@ -1688,11 +1674,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude elevation\r\n",
- "id \r\n",
- "0 37.41 -122.20 58.0\r\n",
- "1 37.42 -122.20 76.0\r\n",
- "2 37.42 -122.21 105.0\r\n"
+ " latitude longitude elevation\n",
+ "id \n",
+ "0 37.41 -122.20 58.0\n",
+ "1 37.42 -122.20 76.0\n",
+ "2 37.42 -122.21 105.0\n"
]
}
],
@@ -1718,11 +1704,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude elevation\r\n",
- "id \r\n",
- "0 37.41 -122.20 190.0\r\n",
- "1 37.42 -122.20 249.0\r\n",
- "2 37.42 -122.21 344.0\r\n"
+ " latitude longitude elevation\n",
+ "id \n",
+ "0 37.41 -122.20 190.0\n",
+ "1 37.42 -122.20 249.0\n",
+ "2 37.42 -122.21 344.0\n"
]
}
],
@@ -1750,11 +1736,11 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude elevation\r\n",
- "id \r\n",
- "0 37.41 -122.20 190.29\r\n",
- "1 37.42 -122.20 249.34\r\n",
- "2 37.42 -122.21 344.49\r\n"
+ " latitude longitude elevation\n",
+ "id \n",
+ "0 37.41 -122.20 190.29\n",
+ "1 37.42 -122.20 249.34\n",
+ "2 37.42 -122.21 344.49\n"
]
}
],
@@ -1780,18 +1766,18 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance heading elevation\r\n",
- "position \r\n",
- "0 37.41000 -122.20000 0.0 0.0 NaN 58.0\r\n",
- "250 37.41225 -122.20000 NaN 250.0 0.0 63.0\r\n",
- "500 37.41450 -122.20000 NaN 500.0 0.0 75.0\r\n",
- "750 37.41674 -122.20000 NaN 750.0 0.0 76.0\r\n",
- "1000 37.41899 -122.20000 NaN 1000.0 0.0 96.0\r\n",
- "1112 37.42000 -122.20000 1.0 1112.0 0.0 76.0\r\n",
- "1362 37.42000 -122.20283 NaN 1362.0 270.0 85.0\r\n",
- "1612 37.42000 -122.20566 NaN 1612.0 270.0 92.0\r\n",
- "1862 37.42000 -122.20849 NaN 1862.0 270.0 104.0\r\n",
- "1995 37.42000 -122.21000 2.0 1995.0 270.0 105.0\r\n"
+ " latitude longitude id distance heading elevation\n",
+ "position \n",
+ "0 37.41000 -122.20000 0.0 0.0 0.0 58.0\n",
+ "250 37.41225 -122.20000 NaN 250.0 0.0 63.0\n",
+ "500 37.41450 -122.20000 NaN 500.0 0.0 75.0\n",
+ "750 37.41674 -122.20000 NaN 750.0 0.0 76.0\n",
+ "1000 37.41899 -122.20000 NaN 1000.0 0.0 96.0\n",
+ "1112 37.42000 -122.20000 1.0 1112.0 0.0 76.0\n",
+ "1362 37.42000 -122.20283 NaN 1362.0 270.0 85.0\n",
+ "1612 37.42000 -122.20566 NaN 1612.0 270.0 92.0\n",
+ "1862 37.42000 -122.20849 NaN 1862.0 270.0 104.0\n",
+ "1995 37.42000 -122.21000 2.0 1995.0 270.0 105.0\n"
]
}
],
@@ -1837,11 +1823,12 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude base cover height\r\n",
- "id \r\n",
- "0 37.41 -122.20 2.0 0.17 11.0\r\n",
- "1 37.42 -122.20 1.0 0.18 15.0\r\n",
- "2 37.42 -122.21 2.0 0.01 0.0\r\n"
+ "WARNING [geodata/vegetation]: 'vegetation.username' not specified, only static 2020 data is available to unregistered users (see http://geodata.gridlabd.us/vegetation to register)\n",
+ " latitude longitude base cover height\n",
+ "id \n",
+ "0 37.41 -122.20 2.0 0.29 10.0\n",
+ "1 37.42 -122.20 2.0 0.22 13.0\n",
+ "2 37.42 -122.21 1.0 0.03 0.0\n"
]
}
],
@@ -1867,11 +1854,12 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude base cover height\r\n",
- "id \r\n",
- "0 37.41 -122.20 2.0 0.17 11.0\r\n",
- "1 37.42 -122.20 1.0 0.18 15.0\r\n",
- "2 37.42 -122.21 2.0 0.01 0.0\r\n"
+ "WARNING [geodata/vegetation]: 'vegetation.username' not specified, only static 2020 data is available to unregistered users (see http://geodata.gridlabd.us/vegetation to register)\n",
+ " latitude longitude base cover height\n",
+ "id \n",
+ "0 37.41 -122.20 2.0 0.29 10.0\n",
+ "1 37.42 -122.20 2.0 0.22 13.0\n",
+ "2 37.42 -122.21 1.0 0.03 0.0\n"
]
}
],
@@ -1901,9 +1889,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude NAME\r\n",
- "id \r\n",
- "0 37.42 -122.2 PACIFIC GAS ...\r\n"
+ " latitude longitude NAME\n",
+ "id \n",
+ "0 37.42 -122.2 PACIFIC GAS ...\n"
]
}
],
@@ -1931,9 +1919,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude WINTR_PEAK SUMMR_PEAK CUSTOMERS YEAR\r\n",
- "id \r\n",
- "0 37.42 -122.2 12624.0 17263.0 5471786.0 2018.0\r\n"
+ " latitude longitude WINTR_PEAK SUMMR_PEAK CUSTOMERS YEAR\n",
+ "id \n",
+ "0 37.42 -122.2 12624.0 17263.0 5471786.0 2018.0\n"
]
}
],
@@ -1956,7 +1944,7 @@
"metadata": {},
"outputs": [],
"source": [
- "!gridlabd geodata merge -D utility 37.420,-122.20 --geometry -f PLOT -o /tmp/utility.png --plot.figsize=10,5"
+ "!gridlabd geodata merge -D utility 37.420,-122.20 --geometry -f PLOT -o /tmp/utility.png --plot.figsize=10,5 2>/dev/null"
]
},
{
@@ -2020,30 +2008,29 @@
"cell_type": "code",
"execution_count": 62,
"id": "f6cc13cb",
- "metadata": {
- "scrolled": false
- },
+ "metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "WARNING [geodata/powerline]: cannot run function CONTACT and 'height' is missing or invalid\r\n",
- " linesag\r\n",
- "position \r\n",
- "0 18.0\r\n",
- "50 12.2\r\n",
- "100 9.4\r\n",
- "150 9.7\r\n",
- "200 13.0\r\n",
- "... ...\r\n",
- "8390 -16.6\r\n",
- "8440 -8.9\r\n",
- "8490 0.6\r\n",
- "8540 12.0\r\n",
- "8583 23.0\r\n",
- "\r\n",
- "[191 rows x 1 columns]\r\n"
+ "WARNING [geodata/powerline]: cannot run function CONTACT and 'wind_speed' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function LINEGALLOP and 'width' is missing or invalid\n",
+ " linesag\n",
+ "position \n",
+ "0 18.0\n",
+ "50 12.2\n",
+ "100 9.4\n",
+ "150 9.7\n",
+ "200 13.0\n",
+ "... ...\n",
+ "8390 -16.6\n",
+ "8440 -8.9\n",
+ "8490 0.6\n",
+ "8540 12.0\n",
+ "8583 23.0\n",
+ "\n",
+ "[191 rows x 1 columns]\n"
]
}
],
@@ -2087,7 +2074,7 @@
],
"source": [
"import pandas\n",
- "print(\"\\n\".join(pandas.read_csv(\"../geodata_powerline_cabletypes.csv\").columns.to_list()))"
+ "print(\"\\n\".join(pandas.read_csv(\"geodata_powerline_cabletypes.csv\").columns.to_list()))"
]
},
{
@@ -2143,19 +2130,19 @@
" \n",
" \n",
" rated_tensile_strength \n",
- " 72000 \n",
+ " 72000.0 \n",
" \n",
" \n",
" elasticity \n",
- " 7.18e+10 \n",
+ " 71800000000.0 \n",
" \n",
" \n",
" thermal_expansion \n",
- " 2.06e-05 \n",
+ " 0.000021 \n",
" \n",
" \n",
" conductor_crosssection_area \n",
- " 0.0006918 \n",
+ " 0.000692 \n",
" \n",
" \n",
" resistivity \n",
@@ -2163,15 +2150,15 @@
" \n",
" \n",
" nominal_resistance \n",
- " 4.58e-05 \n",
+ " 0.000046 \n",
" \n",
" \n",
" nomimal_temperature \n",
- " 15 \n",
+ " 15.0 \n",
" \n",
" \n",
" voltage_rating \n",
- " 230000 \n",
+ " 230000.0 \n",
" \n",
" \n",
" reflectivity \n",
@@ -2190,14 +2177,14 @@
"id TACSR/AC 610mm^2\n",
"diameter 0.0342\n",
"unit_weight 21.56\n",
- "rated_tensile_strength 72000\n",
- "elasticity 7.18e+10\n",
- "thermal_expansion 2.06e-05\n",
- "conductor_crosssection_area 0.0006918\n",
+ "rated_tensile_strength 72000.0\n",
+ "elasticity 71800000000.0\n",
+ "thermal_expansion 0.000021\n",
+ "conductor_crosssection_area 0.000692\n",
"resistivity 0.0039\n",
- "nominal_resistance 4.58e-05\n",
- "nomimal_temperature 15\n",
- "voltage_rating 230000\n",
+ "nominal_resistance 0.000046\n",
+ "nomimal_temperature 15.0\n",
+ "voltage_rating 230000.0\n",
"reflectivity 0.5\n",
"emissivity 0.6"
]
@@ -2208,7 +2195,7 @@
}
],
"source": [
- "pandas.read_csv(\"../geodata_powerline_cabletypes.csv\",nrows=1).transpose()"
+ "pandas.read_csv(\"geodata_powerline_cabletypes.csv\",nrows=1).transpose()"
]
},
{
@@ -2230,7 +2217,8 @@
"output_type": "stream",
"text": [
"WARNING [geodata/powerline]: cable_type not specified\n",
- "WARNING [geodata/powerline]: cannot run function CONTACT and 'height' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function CONTACT and 'wind_speed' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function LINEGALLOP and 'width' is missing or invalid\n",
" linesag\n",
"id \n",
"0 NaN\n",
@@ -2264,7 +2252,8 @@
"output_type": "stream",
"text": [
"WARNING [geodata/powerline]: cable_type='My cabletype' not found\n",
- "WARNING [geodata/powerline]: cannot run function CONTACT and 'height' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function CONTACT and 'wind_speed' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function LINEGALLOP and 'width' is missing or invalid\n",
" linesag\n",
"id \n",
"0 NaN\n",
@@ -2287,6 +2276,48 @@
"!gridlabd geodata merge -D powerline path_example.csv -f TABLE:linesag --cable_type=\"My cabletype\" # bad cable type"
]
},
+ {
+ "cell_type": "markdown",
+ "id": "f8c0a9d9-5bf5-42c4-9dac-044170c91a4a",
+ "metadata": {},
+ "source": [
+ "When the cable type is provided, the package can calculate the linesag. However, without additional information is cannot calculate the other possible results such as the vegetation contact or line gallop."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 67,
+ "id": "f7478994-0f58-478f-9ad2-a85c91321300",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "WARNING [geodata/powerline]: cannot run function CONTACT and 'wind_speed' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function LINEGALLOP and 'width' is missing or invalid\n",
+ " linesag\n",
+ "id \n",
+ "0 18.0\n",
+ "1 20.0\n",
+ "2 21.0\n",
+ "3 18.0\n",
+ "4 20.0\n",
+ ".. ...\n",
+ "32 17.0\n",
+ "33 21.0\n",
+ "34 23.0\n",
+ "35 16.0\n",
+ "36 23.0\n",
+ "\n",
+ "[37 rows x 1 columns]\n"
+ ]
+ }
+ ],
+ "source": [
+ "!gridlabd geodata merge -D powerline path_example.csv -f TABLE:linesag --cable_type=\"TACSR/AC 610mm^2\" "
+ ]
+ },
{
"cell_type": "markdown",
"id": "09abbe56",
@@ -2300,36 +2331,365 @@
},
{
"cell_type": "code",
- "execution_count": 67,
+ "execution_count": 68,
"id": "6627ef94",
- "metadata": {
- "scrolled": false
- },
+ "metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "Help on module __main__:\r\n",
- "\r\n",
- "NAME\r\n",
- " __main__ - Syntax: gridlabd geodata OPTIONS DIRECTIVE [ARGUMENTS]\r\n",
- "\r\n",
- "DESCRIPTION\r\n",
- " The geodata command gathers and joins geographic data. The geodata subcommand\r\n",
- " uses directives that are documented in the DIRECTIVES section below.\r\n",
- " \r\n",
- " In general geodata is used to acquire geographic information at a location or\r\n"
+ "Syntax: gridlabd geodata OPTIONS DIRECTIVE [ARGUMENTS]\n",
+ "\n",
+ "The geodata command gathers and joins geographic data. The geodata subcommand\n",
+ "uses directives that are documented in the DIRECTIVES section below.\n",
+ "\n",
+ "In general geodata is used to acquire geographic information at a location or\n",
+ "along a specified path. This information includes ground elevation, vegetation\n",
+ "characteristics, weather, census, building, and transportation data. The\n",
+ "specific data sets and their origins are described in the DATASETS section\n",
+ "below.\n",
+ "\n",
+ "OPTIONS\n",
+ "\n",
+ " [-C|--config [+]FILE] load config file (use '+' appends to current\n",
+ " configuration)\n",
+ " [--clean] clean the cache files\n",
+ " [-d|--debug] enable debug output, including error traceback\n",
+ " [-f|--format FORMAT] change output format\n",
+ " [--fieldsep STRING] set the RAW output field separator\n",
+ " [--filter=SPECS] apply dataframe functions as filter\n",
+ " [-j|--join TYPE] control how dataset joins with input path\n",
+ " [-k|--key KEY] change method for generating keys\n",
+ " [-o|--output CSVOUT] output to CSVOUT\n",
+ " [-p|--precision INT] change precision of location values\n",
+ " [-r|--resolution METERS] change the resolution at which positions are\n",
+ " merged\n",
+ " [--recordsep STRING] change the RAW output record separator\n",
+ " [-s|--silent] disable error output\n",
+ " [--select=COLUMNS] select only rows that have true values for column(s)\n",
+ " [--show_config] display the current configuration\n",
+ " [--show_options] display the current options\n",
+ " [-T|--threadcount THREADS] change maximum thread count\n",
+ " [--units UNIT] change units of distance\n",
+ " [-v|--verbose] enable verbose output\n",
+ " [-w|--warning] disable warning output\n",
+ "\n",
+ "REMARKS\n",
+ "\n",
+ "The default cache folder is /usr/local/opt/gridlabd//share/gridlabd/geodata. The default\n",
+ "config file $HOME/.gridlabd/geodata-config. The default maximum thread count\n",
+ "is 1.\n",
+ "\n",
+ "DIRECTIVES\n",
+ "\n",
+ "The following directives are available:\n",
+ "\n",
+ " config get PARAMETER\n",
+ " config set [SCOPE:]PARAMETER VALUE\n",
+ " config unset [SCOPE:]PARAMETER\n",
+ " config show\n",
+ "\n",
+ " The config directive changes values in the config file. Valid scopes are\n",
+ " \"system\", \"user\", or \"local\", which determines where the configuration\n",
+ " values are stored, e.g., \"$GLD_ETC/geodata/geodata.conf\",\n",
+ " \"$HOME/.gridlabd/geodata.conf\", or \"./geodata.conf\", respectively.\n",
+ "\n",
+ " create [ARGUMENTS]\n",
+ "\n",
+ " The create directive generates a new data from the specified\n",
+ " dataset.\n",
+ "\n",
+ " merge [-D|--dataset] NAME [ARGUMENTS]\n",
+ "\n",
+ " The merge diretive merges the results from the specified dataset with the\n",
+ " data. If a column exists, it is updated. If a column does not exist, it is\n",
+ " created.\n",
+ "\n",
+ " The -D|--dataset directive specifies the dataset from which the geographic\n",
+ " information is to be acquired. See the DATASETS section below for details.\n",
+ "\n",
+ "ARGUMENTS\n",
+ "\n",
+ "All directives support the following arguments\n",
+ "\n",
+ " =[+=[+...]]\n",
+ "\n",
+ " Specifies one or more name/value tuples from which to construct a dataframe.\n",
+ " Note that by default all fields are string. Use CSV format inputs to use\n",
+ " automatic types.\n",
+ "\n",
+ " CSVIN [...]\n",
+ "\n",
+ " Specifies one or more files from which CSV input is read. If no values or\n",
+ " CSV input files are specified, the CSV data input is read from /dev/stdin.\n",
+ "\n",
+ " [-o|--output] CSVOUT\n",
+ "\n",
+ " Normally the output is written to /dev/stdout. When CSVOUT is specified the\n",
+ " output data is written to the specified file. If the output file already\n",
+ " exists, it is overwritten with the new data.\n",
+ "\n",
+ "KEYS\n",
+ "\n",
+ "The [-k|--key KEY] options changes how row keys are generated. The default is\n",
+ "the record id in the order in which it was read. This key is only defined for\n",
+ "records actually read is. If resolution is used the \"id\" key is not defined for\n",
+ "records added, and if the key \"id\" is used at any point, the added records will\n",
+ "be lost.\n",
+ "\n",
+ " [-k|--key \"location\"]\n",
+ "\n",
+ " The \"location\" key computes geohash codes. Rows are indexed on the key named\n",
+ " \"location\".\n",
+ "\n",
+ " [-k|--key \"position\"]\n",
+ "\n",
+ " The \"position\" key performs a distance calculation with respect to the first\n",
+ " entry in the data, thus maintaining the ordering the rows. Rows are indexed\n",
+ " on the key names \"position\".\n",
+ "\n",
+ " [-k|--key \"uuid\"]\n",
+ "\n",
+ " The \"uuid\" key generates a universally unique identifier for each record.\n",
+ " Rows are indexed on the key name \"uuid\".\n",
+ "\n",
+ "If the [-r|--resolution METERS] option is used, the keys are generated at\n",
+ "the specified resolution along the path. The default resolution is None. If\n",
+ "resolution is specified without a key, then \"position\" is used.\n",
+ "\n",
+ "DATASETS\n",
+ "\n",
+ "The following datasets are available. To specify a layer, use the syntax\n",
+ "\"NAME.LAYER\". Multiple datasets and layers may be specified using a\n",
+ "comma-delimited list.\n",
+ "\n",
+ " building\n",
+ "\n",
+ " The building dataset provides build environment data from NREL. Available\n",
+ " layers are \"building_type\" and \"building_size\".\n",
+ "\n",
+ " census\n",
+ "\n",
+ " The census dataset provides economic and population data from the US Census\n",
+ " Bureau.\n",
+ "\n",
+ " distance\n",
+ "\n",
+ " The distance dataset calculates the distance between each point and the\n",
+ " point before it.\n",
+ "\n",
+ " elevation\n",
+ "\n",
+ " The elevation dataset provides 1 arcsecond resolution ground elevation data\n",
+ " from the USGS.\n",
+ "\n",
+ " powerline\n",
+ "\n",
+ " The powerline dataset provides powerline geometry calculations based on\n",
+ " the GridLAB-D cable library.\n",
+ "\n",
+ " transportation\n",
+ "\n",
+ " The transportation dataset provides mobility data from traffic data services.\n",
+ " You must subscribe to the TrafficView service to use this dataset.\n",
+ "\n",
+ " utility\n",
+ "\n",
+ " The utility data provides data about the utility servicing the locations.\n",
+ "\n",
+ " vegetation\n",
+ "\n",
+ " The vegetation dataset provides 7 layers of data about vegetation. Available\n",
+ " layers are \"canopy_cover\", \"canopy_height\", \"base_height\", \"bulk_density\",\n",
+ " \"layer_count\", \"fuel_density\", and \"surface_fuels\".. You must subscribe to the\n",
+ " Forest Observatory service to use this dataset.\n",
+ "\n",
+ " weather\n",
+ "\n",
+ " The weather dataset provides historical, current, and short term forecasts of\n",
+ " dry bulk, wet bulb, solar, and wind data from NOAA.\n",
+ "\n",
+ "FORMATS\n",
+ "\n",
+ "Output is generated by default in CSV format. Other output formats may be\n",
+ "selected as follows:\n",
+ "\n",
+ " CSV[:] fields are output in CSV format\n",
+ "\n",
+ " JSON[:] fields are output in JSON format\n",
+ "\n",
+ " RAW[:] fields are output as a raw string\n",
+ "\n",
+ " GLM[:[@]] fields are output as GLM objects. If @ included, output is\n",
+ " is GLM modify statements. Note that invalid field names do\n",
+ " not raise a KeyError exception or error message. This is\n",
+ " because CSV tables may contain multiple classes with some\n",
+ " columns that are not defined for every class.\n",
+ "\n",
+ " TABLE[:[*][]]\n",
+ " fields are output as a human readable table. Note that if\n",
+ " too many columns or rows will be output, then intermediate\n",
+ " values will be suppressed and replaced with ellipses unless\n",
+ " the field string starts with '*'.\n",
+ "\n",
+ " PLOT[:] fields are plotted to a matplotlib figure. Fields may be one\n",
+ " 'location', 'position', or 'geometry', which plot points, lines,\n",
+ " and areas, respectively.\n",
+ "\n",
+ " XLSX[:] outputs the data as an Excel spreadsheet.\n",
+ "\n",
+ " GDF[:] outputs the data as a GeoPandas file.\n",
+ "\n",
+ "DEVELOPER API\n",
+ "\n",
+ "Packages must implement the following (TODO indicates where your code goes)\n",
+ "\n",
+ " version = 1\n",
+ "\n",
+ " default_options = {\n",
+ " TODO,\n",
+ " }\n",
+ "\n",
+ " default_config = {\n",
+ " TODO,\n",
+ " }\n",
+ "\n",
+ " def apply(data, options=default_options, config=default_config):\n",
+ " result = TODO\n",
+ " return pandas.DataFrame(result)\n",
+ "\n",
+ " if __name__ == '__main__':\n",
+ " import unittest\n",
+ " class TestAddress(unittest.TestCase):\n",
+ " def test_1(self):\n",
+ " TODO\n",
+ " unittest.main()\n",
+ "\n",
+ "See geodata_distance.py for a simple example of a dataset implementation.\n",
+ "\n",
+ "EXAMPLES\n",
+ "\n",
+ "1) Creating dataset and output formats\n",
+ "\n",
+ " To create a new dataset from the command line and output as CSV:\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example\n",
+ " id,name,latitude,longitude,class\n",
+ " 0,addr1,37.4150,-122.2056,example\n",
+ " 1,addr2,37.3880,-122.2884,example\n",
+ "\n",
+ " To output a single field:\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f CSV:name\n",
+ " id,name\n",
+ " 0,addr1\n",
+ " 1,addr2\n",
+ "\n",
+ " To output multiple fields:\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f CSV:name,class\n",
+ " id,name,class\n",
+ " 0,addr1,example\n",
+ " 1,addr2,example\n",
+ "\n",
+ " Create the same data, but output JSON\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f JSON\n",
+ " [{\"name\":\"addr1\",\"latitude\":\"37.4150\",\"longitude\":\"-122.2056\",\"class\":\"example\"},{\"name\":\"addr2\",\"latitude\":\"37.3880\",\"longitude\":\"-122.2884\",\"class\":\"example\"}]\n",
+ "\n",
+ " Same data, but output as GLM\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM\n",
+ " // generated by `/usr/local/opt/gridlabd/4.2.20-210422-develop_geodata_subcommand/bin/gridlabd-geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM` at 2021-04-22 08:38:37.163874\n",
+ " object example\n",
+ " {\n",
+ " \tname \"{row['name']}\";\n",
+ " \tlatitude \"37.4150\";\n",
+ " \tlongitude \"-122.2056\";\n",
+ " }\n",
+ " object example\n",
+ " {\n",
+ " \tname \"{row['name']}\";\n",
+ " \tlatitude \"37.3880\";\n",
+ " \tlongitude \"-122.2884\";\n",
+ " }\n",
+ "\n",
+ " Same data, but output GLM modify statements\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM:@latitude,longitude\n",
+ " // generated by `/usr/local/opt/gridlabd/4.2.20-210422-develop_geodata_subcommand/bin/gridlabd-geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM:@latitude,longitude` at 2021-04-22 08:38:49.759341\n",
+ " modify addr1.longitude \"-122.2056\";\n",
+ " modify addr2.longitude \"-122.2884\";\n",
+ "\n",
+ "2) Merging a geographic dataset into an exist dataframe\n",
+ "\n",
+ "The following command uses to address dataset on locations provided on the command line:\n",
+ "\n",
+ " $ gridlabd geodata merge -D address name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example\n",
+ " id,name,latitude,longitude,class,address\n",
+ " 0,addr1,37.4150,-122.2056,example,\"Stanford Linear Accelerator Center National Accelerator Laboratory, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\"\n",
+ " 1,addr2,37.3880,-122.2884,example,\"Allen Road, San Mateo County, California, United States\"\n",
+ "\n",
+ "The following command merges addresses into an existing dataframe\n",
+ "\n",
+ " $gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example | gridlabd geodata merge -D address\n",
+ " id,name,latitude,longitude,class,address\n",
+ " 0,addr1,37.415,-122.2056,example,\"Stanford Linear Accelerator Center National Accelerator Laboratory, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\"\n",
+ " 1,addr2,37.388,-122.2884,example,\"Allen Road, San Mateo County, California, United States\"\n",
+ "\n",
+ "3) GLM usage\n",
+ "\n",
+ "The following example uses the geodata subcommand to modify GridLAB-D objects with\n",
+ "data acquired from the address dataset.\n",
+ "\n",
+ " clock {\n",
+ " starttime \"2020-01-01 00:00:00\";\n",
+ " stoptime \"2021-01-01 00:00:00\";\n",
+ " }\n",
+ " module residential;\n",
+ " class house\n",
+ " {\n",
+ " char1024 address;\n",
+ " }\n",
+ "\n",
+ " object house\n",
+ " {\n",
+ " address \"2575 Sand Hill Rd., Menlo Park, CA\";\n",
+ " }\n",
+ "\n",
+ " object house\n",
+ " {\n",
+ " address \"2000 Broadway, Redwood City, CA\";\n",
+ " }\n",
+ "\n",
+ " // write house.address to csv\n",
+ " #write /tmp/write.csv house:address\n",
+ "\n",
+ " // get lat,lon from address and write to csv\n",
+ " #geodata merge -D address /tmp/write.csv --reverse --format GLM:@latitude,longitude -o /tmp/read.glm\n",
+ "\n",
+ " // read csv as modify\n",
+ " #include \"/tmp/read.glm\"\n",
+ "\n",
+ " #set savefile=\"/tmp/final.json\"\n",
+ "\n",
+ "After this GridLAB-D model is loaded and run, the output json file can be read using the subcommand, e.g.,\n",
+ "\n",
+ " $ gridlabd json-get objects house:0 latitude /share/gridlabd/geodata. The default\n",
+ "config file $HOME/.gridlabd/geodata-config. The default maximum thread count\n",
+ "is 1.\n",
+ "\n",
+ "DIRECTIVES\n",
+ "\n",
+ "The following directives are available:\n",
+ "\n",
+ " config get PARAMETER\n",
+ " config set [SCOPE:]PARAMETER VALUE\n",
+ " config unset [SCOPE:]PARAMETER\n",
+ " config show\n",
+ "\n",
+ " The config directive changes values in the config file. Valid scopes are\n",
+ " \"system\", \"user\", or \"local\", which determines where the configuration\n",
+ " values are stored, e.g., \"$GLD_ETC/geodata/geodata.conf\",\n",
+ " \"$HOME/.gridlabd/geodata.conf\", or \"./geodata.conf\", respectively.\n",
+ "\n",
+ " create [ARGUMENTS]\n",
+ "\n",
+ " The create directive generates a new data from the specified\n",
+ " dataset.\n",
+ "\n",
+ " merge [-D|--dataset] NAME [ARGUMENTS]\n",
+ "\n",
+ " The merge diretive merges the results from the specified dataset with the\n",
+ " data. If a column exists, it is updated. If a column does not exist, it is\n",
+ " created.\n",
+ "\n",
+ " The -D|--dataset directive specifies the dataset from which the geographic\n",
+ " information is to be acquired. See the DATASETS section below for details.\n",
+ "\n",
+ "ARGUMENTS\n",
+ "\n",
+ "All directives support the following arguments\n",
+ "\n",
+ " =[+=[+...]]\n",
+ "\n",
+ " Specifies one or more name/value tuples from which to construct a dataframe.\n",
+ " Note that by default all fields are string. Use CSV format inputs to use\n",
+ " automatic types.\n",
+ "\n",
+ " CSVIN [...]\n",
+ "\n",
+ " Specifies one or more files from which CSV input is read. If no values or\n",
+ " CSV input files are specified, the CSV data input is read from /dev/stdin.\n",
+ "\n",
+ " [-o|--output] CSVOUT\n",
+ "\n",
+ " Normally the output is written to /dev/stdout. When CSVOUT is specified the\n",
+ " output data is written to the specified file. If the output file already\n",
+ " exists, it is overwritten with the new data.\n",
+ "\n",
+ "KEYS\n",
+ "\n",
+ "The [-k|--key KEY] options changes how row keys are generated. The default is\n",
+ "the record id in the order in which it was read. This key is only defined for\n",
+ "records actually read is. If resolution is used the \"id\" key is not defined for\n",
+ "records added, and if the key \"id\" is used at any point, the added records will\n",
+ "be lost.\n",
+ "\n",
+ " [-k|--key \"location\"]\n",
+ "\n",
+ " The \"location\" key computes geohash codes. Rows are indexed on the key named\n",
+ " \"location\".\n",
+ "\n",
+ " [-k|--key \"position\"]\n",
+ "\n",
+ " The \"position\" key performs a distance calculation with respect to the first\n",
+ " entry in the data, thus maintaining the ordering the rows. Rows are indexed\n",
+ " on the key names \"position\".\n",
+ "\n",
+ " [-k|--key \"uuid\"]\n",
+ "\n",
+ " The \"uuid\" key generates a universally unique identifier for each record.\n",
+ " Rows are indexed on the key name \"uuid\".\n",
+ "\n",
+ "If the [-r|--resolution METERS] option is used, the keys are generated at\n",
+ "the specified resolution along the path. The default resolution is None. If\n",
+ "resolution is specified without a key, then \"position\" is used.\n",
+ "\n",
+ "DATASETS\n",
+ "\n",
+ "The following datasets are available. To specify a layer, use the syntax\n",
+ "\"NAME.LAYER\". Multiple datasets and layers may be specified using a\n",
+ "comma-delimited list.\n",
+ "\n",
+ " building\n",
+ "\n",
+ " The building dataset provides build environment data from NREL. Available\n",
+ " layers are \"building_type\" and \"building_size\".\n",
+ "\n",
+ " census\n",
+ "\n",
+ " The census dataset provides economic and population data from the US Census\n",
+ " Bureau.\n",
+ "\n",
+ " distance\n",
+ "\n",
+ " The distance dataset calculates the distance between each point and the\n",
+ " point before it.\n",
+ "\n",
+ " elevation\n",
+ "\n",
+ " The elevation dataset provides 1 arcsecond resolution ground elevation data\n",
+ " from the USGS.\n",
+ "\n",
+ " powerline\n",
+ "\n",
+ " The powerline dataset provides powerline geometry calculations based on\n",
+ " the GridLAB-D cable library.\n",
+ "\n",
+ " transportation\n",
+ "\n",
+ " The transportation dataset provides mobility data from traffic data services.\n",
+ " You must subscribe to the TrafficView service to use this dataset.\n",
+ "\n",
+ " utility\n",
+ "\n",
+ " The utility data provides data about the utility servicing the locations.\n",
+ "\n",
+ " vegetation\n",
+ "\n",
+ " The vegetation dataset provides 7 layers of data about vegetation. Available\n",
+ " layers are \"canopy_cover\", \"canopy_height\", \"base_height\", \"bulk_density\",\n",
+ " \"layer_count\", \"fuel_density\", and \"surface_fuels\".. You must subscribe to the\n",
+ " Forest Observatory service to use this dataset.\n",
+ "\n",
+ " weather\n",
+ "\n",
+ " The weather dataset provides historical, current, and short term forecasts of\n",
+ " dry bulk, wet bulb, solar, and wind data from NOAA.\n",
+ "\n",
+ "FORMATS\n",
+ "\n",
+ "Output is generated by default in CSV format. Other output formats may be\n",
+ "selected as follows:\n",
+ "\n",
+ " CSV[:] fields are output in CSV format\n",
+ "\n",
+ " JSON[:] fields are output in JSON format\n",
+ "\n",
+ " RAW[:] fields are output as a raw string\n",
+ "\n",
+ " GLM[:[@]] fields are output as GLM objects. If @ included, output is\n",
+ " is GLM modify statements. Note that invalid field names do\n",
+ " not raise a KeyError exception or error message. This is\n",
+ " because CSV tables may contain multiple classes with some\n",
+ " columns that are not defined for every class.\n",
+ "\n",
+ " TABLE[:[*][]]\n",
+ " fields are output as a human readable table. Note that if\n",
+ " too many columns or rows will be output, then intermediate\n",
+ " values will be suppressed and replaced with ellipses unless\n",
+ " the field string starts with '*'.\n",
+ "\n",
+ " PLOT[:] fields are plotted to a matplotlib figure. Fields may be one\n",
+ " 'location', 'position', or 'geometry', which plot points, lines,\n",
+ " and areas, respectively.\n",
+ "\n",
+ " XLSX[:] outputs the data as an Excel spreadsheet.\n",
+ "\n",
+ " GDF[:] outputs the data as a GeoPandas file.\n",
+ "\n",
+ "DEVELOPER API\n",
+ "\n",
+ "Packages must implement the following (TODO indicates where your code goes)\n",
+ "\n",
+ " version = 1\n",
+ "\n",
+ " default_options = {\n",
+ " TODO,\n",
+ " }\n",
+ "\n",
+ " default_config = {\n",
+ " TODO,\n",
+ " }\n",
+ "\n",
+ " def apply(data, options=default_options, config=default_config):\n",
+ " result = TODO\n",
+ " return pandas.DataFrame(result)\n",
+ "\n",
+ " if __name__ == '__main__':\n",
+ " import unittest\n",
+ " class TestAddress(unittest.TestCase):\n",
+ " def test_1(self):\n",
+ " TODO\n",
+ " unittest.main()\n",
+ "\n",
+ "See geodata_distance.py for a simple example of a dataset implementation.\n",
+ "\n",
+ "EXAMPLES\n",
+ "\n",
+ "1) Creating dataset and output formats\n",
+ "\n",
+ " To create a new dataset from the command line and output as CSV:\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example\n",
+ " id,name,latitude,longitude,class\n",
+ " 0,addr1,37.4150,-122.2056,example\n",
+ " 1,addr2,37.3880,-122.2884,example\n",
+ "\n",
+ " To output a single field:\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f CSV:name\n",
+ " id,name\n",
+ " 0,addr1\n",
+ " 1,addr2\n",
+ "\n",
+ " To output multiple fields:\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f CSV:name,class\n",
+ " id,name,class\n",
+ " 0,addr1,example\n",
+ " 1,addr2,example\n",
+ "\n",
+ " Create the same data, but output JSON\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f JSON\n",
+ " [{\"name\":\"addr1\",\"latitude\":\"37.4150\",\"longitude\":\"-122.2056\",\"class\":\"example\"},{\"name\":\"addr2\",\"latitude\":\"37.3880\",\"longitude\":\"-122.2884\",\"class\":\"example\"}]\n",
+ "\n",
+ " Same data, but output as GLM\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM\n",
+ " // generated by `/usr/local/opt/gridlabd/4.2.20-210422-develop_geodata_subcommand/bin/gridlabd-geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM` at 2021-04-22 08:38:37.163874\n",
+ " object example\n",
+ " {\n",
+ " \tname \"{row['name']}\";\n",
+ " \tlatitude \"37.4150\";\n",
+ " \tlongitude \"-122.2056\";\n",
+ " }\n",
+ " object example\n",
+ " {\n",
+ " \tname \"{row['name']}\";\n",
+ " \tlatitude \"37.3880\";\n",
+ " \tlongitude \"-122.2884\";\n",
+ " }\n",
+ "\n",
+ " Same data, but output GLM modify statements\n",
+ "\n",
+ " $ gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM:@latitude,longitude\n",
+ " // generated by `/usr/local/opt/gridlabd/4.2.20-210422-develop_geodata_subcommand/bin/gridlabd-geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example name=addr2+latitude=37.3880+longitude=-122.2884+class=example -f GLM:@latitude,longitude` at 2021-04-22 08:38:49.759341\n",
+ " modify addr1.longitude \"-122.2056\";\n",
+ " modify addr2.longitude \"-122.2884\";\n",
+ "\n",
+ "2) Merging a geographic dataset into an exist dataframe\n",
+ "\n",
+ "The following command uses to address dataset on locations provided on the command line:\n",
+ "\n",
+ " $ gridlabd geodata merge -D address name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example\n",
+ " id,name,latitude,longitude,class,address\n",
+ " 0,addr1,37.4150,-122.2056,example,\"Stanford Linear Accelerator Center National Accelerator Laboratory, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\"\n",
+ " 1,addr2,37.3880,-122.2884,example,\"Allen Road, San Mateo County, California, United States\"\n",
+ "\n",
+ "The following command merges addresses into an existing dataframe\n",
+ "\n",
+ " $gridlabd geodata create name=addr1+latitude=37.4150+longitude=-122.2056+class=example > name=addr2+latitude=37.3880+longitude=-122.2884+class=example | gridlabd geodata merge -D address\n",
+ " id,name,latitude,longitude,class,address\n",
+ " 0,addr1,37.415,-122.2056,example,\"Stanford Linear Accelerator Center National Accelerator Laboratory, Sand Hill Road, Menlo Park, San Mateo County, California, 94028, United States\"\n",
+ " 1,addr2,37.388,-122.2884,example,\"Allen Road, San Mateo County, California, United States\"\n",
+ "\n",
+ "3) GLM usage\n",
+ "\n",
+ "The following example uses the geodata subcommand to modify GridLAB-D objects with\n",
+ "data acquired from the address dataset.\n",
+ "\n",
+ " clock {\n",
+ " starttime \"2020-01-01 00:00:00\";\n",
+ " stoptime \"2021-01-01 00:00:00\";\n",
+ " }\n",
+ " module residential;\n",
+ " class house\n",
+ " {\n",
+ " char1024 address;\n",
+ " }\n",
+ "\n",
+ " object house\n",
+ " {\n",
+ " address \"2575 Sand Hill Rd., Menlo Park, CA\";\n",
+ " }\n",
+ "\n",
+ " object house\n",
+ " {\n",
+ " address \"2000 Broadway, Redwood City, CA\";\n",
+ " }\n",
+ "\n",
+ " // write house.address to csv\n",
+ " #write /tmp/write.csv house:address\n",
+ "\n",
+ " // get lat,lon from address and write to csv\n",
+ " #geodata merge -D address /tmp/write.csv --reverse --format GLM:@latitude,longitude -o /tmp/read.glm\n",
+ "\n",
+ " // read csv as modify\n",
+ " #include \"/tmp/read.glm\"\n",
+ "\n",
+ " #set savefile=\"/tmp/final.json\"\n",
+ "\n",
+ "After this GridLAB-D model is loaded and run, the output json file can be read using the subcommand, e.g.,\n",
+ "\n",
+ " $ gridlabd json-get objects house:0 latitude append 1 rows from args\r\n",
- "VERBOSE [geodata/distance]: arg=38,-122 --> append 1 rows from args\r\n",
- "VERBOSE [geodata/distance]: arg=--units=km --> option ['units', 'km'] accepted\r\n",
- "VERBOSE [geodata/distance]: arg=--precision.distance=3 --> option ['precision.distance', '3'] accepted\r\n",
- "VERBOSE [geodata/distance]: 2 rows total received\r\n",
- "VERBOSE [geodata/distance]: creating row index\r\n",
- "VERBOSE [geodata/distance]: data = \r\n",
- "--------------------------\r\n",
- " latitude longitude id\r\n",
- "0 37.0 -122.0 0\r\n",
- "1 38.0 -122.0 1\r\n",
- "--------------------------\r\n",
- "\r\n",
- "VERBOSE [geodata/distance]: options = {\r\n",
- " \"verbose\": true,\r\n",
- " \"debug\": false,\r\n",
- " \"silent\": false,\r\n",
- " \"quiet\": false,\r\n",
- " \"warning\": true,\r\n",
- " \"key_index\": \"\",\r\n",
- " \"max_threads\": 1,\r\n",
- " \"config_file\": \"geodata.conf\",\r\n",
- " \"field_separator\": \" \",\r\n",
- " \"record_separator\": \"\\n\",\r\n",
- " \"input_delimiter\": \"+\",\r\n",
- " \"warning_as_error\": false,\r\n",
- " \"plot\": {\r\n",
- " \"figsize\": [\r\n",
- " 7.0,\r\n",
- " 5.0\r\n",
- " ],\r\n",
- " \"cmap\": \"\",\r\n",
- " \"categorical\": false,\r\n",
- " \"legend\": false,\r\n",
- " \"scheme\": \"\",\r\n",
- " \"k\": 5,\r\n",
- " \"vmin\": NaN,\r\n",
- " \"vmax\": NaN,\r\n",
- " \"aspect\": \"auto\"\r\n",
- " },\r\n",
- " \"show\": {\r\n",
- " \"block\": true\r\n",
- " },\r\n",
- " \"savefig\": {\r\n",
- " \"dpi\": 300,\r\n",
- " \"facecolor\": \"w\",\r\n",
- " \"edgecolor\": \"k\",\r\n",
- " \"orientation\": \"landscape\",\r\n",
- " \"format\": \"png\",\r\n",
- " \"transparent\": false,\r\n",
- " \"pad_inches\": 0.1\r\n",
- " },\r\n",
- " \"table\": {\r\n",
- " \"max_rows\": 10,\r\n",
- " \"max_columns\": 10,\r\n",
- " \"width\": 80,\r\n",
- " \"max_colwidth\": 16\r\n",
- " },\r\n",
- " \"precision\": {\r\n",
- " \"distance\": 3,\r\n",
- " \"heading\": 1,\r\n",
- " \"geolocation\": 5,\r\n",
- " \"id\": 0,\r\n",
- " \"resolution_id\": 3\r\n",
- " },\r\n",
- " \"resolution\": 0,\r\n",
- " \"resolution_id\": false,\r\n",
- " \"json\": {\r\n",
- " \"orient\": \"index\",\r\n",
- " \"data_format\": \"iso\",\r\n",
- " \"double_precision\": 10,\r\n",
- " \"force_ascii\": true,\r\n",
- " \"date_unit\": \"s\"\r\n",
- " },\r\n",
- " \"filter\": \"\",\r\n",
- " \"select\": \"\",\r\n",
- " \"units\": \"km\",\r\n",
- " \"relative\": false\r\n",
- "}\r\n",
- "VERBOSE [geodata/distance]: config = {\r\n",
- " \"geodata_url\": \"http://geodata.gridlabd.us/\",\r\n",
- " \"output_format\": \"CSV\",\r\n",
- " \"path_join\": \"outer\",\r\n",
- " \"column_names\": {\r\n",
- " \"ID\": \"id\",\r\n",
- " \"UUID\": \"uuid\",\r\n",
- " \"LAT\": \"latitude\",\r\n",
- " \"LON\": \"longitude\",\r\n",
- " \"DIST\": \"distance\",\r\n",
- " \"HEAD\": \"heading\",\r\n",
- " \"LOC\": \"location\",\r\n",
- " \"POS\": \"position\"\r\n",
- " },\r\n",
- " \"uuid_type\": 4,\r\n",
- " \"vegetation.username\": \"name@example.com\",\r\n",
- " \"vegetation.password\": \"password5839\",\r\n",
- " \"method\": \"haversine\"\r\n",
- "}\r\n",
- "id,latitude,longitude,distance\r\n",
- "0,37.0,-122.0,0.0\r\n",
- "1,38.0,-122.0,111.195\r\n"
+ "VERBOSE [geodata/distance]: verbose output enabled\n",
+ "VERBOSE [geodata/distance]: arg=37,-122 --> append 1 rows from args\n",
+ "VERBOSE [geodata/distance]: arg=38,-122 --> append 1 rows from args\n",
+ "VERBOSE [geodata/distance]: arg=--units=km --> option ['units', 'km'] accepted\n",
+ "VERBOSE [geodata/distance]: arg=--precision.distance=3 --> option ['precision.distance', '3'] accepted\n",
+ "VERBOSE [geodata/distance]: 2 rows total received\n",
+ "VERBOSE [geodata/distance]: creating row index\n",
+ "VERBOSE [geodata/distance]: data = \n",
+ "--------------------------\n",
+ " latitude longitude id\n",
+ "0 37.0 -122.0 0\n",
+ "1 38.0 -122.0 1\n",
+ "--------------------------\n",
+ "\n",
+ "VERBOSE [geodata/distance]: options = {\n",
+ " \"verbose\": true,\n",
+ " \"debug\": false,\n",
+ " \"silent\": false,\n",
+ " \"quiet\": false,\n",
+ " \"warning\": true,\n",
+ " \"key_index\": \"\",\n",
+ " \"max_threads\": 1,\n",
+ " \"config_file\": \"geodata.conf\",\n",
+ " \"field_separator\": \" \",\n",
+ " \"record_separator\": \"\\n\",\n",
+ " \"input_delimiter\": \"+\",\n",
+ " \"warning_as_error\": false,\n",
+ " \"plot\": {\n",
+ " \"figsize\": [\n",
+ " 7.0,\n",
+ " 5.0\n",
+ " ],\n",
+ " \"cmap\": \"\",\n",
+ " \"categorical\": false,\n",
+ " \"legend\": false,\n",
+ " \"scheme\": \"\",\n",
+ " \"k\": 5,\n",
+ " \"vmin\": NaN,\n",
+ " \"vmax\": NaN,\n",
+ " \"aspect\": \"auto\"\n",
+ " },\n",
+ " \"show\": {\n",
+ " \"block\": true\n",
+ " },\n",
+ " \"savefig\": {\n",
+ " \"dpi\": 300,\n",
+ " \"facecolor\": \"w\",\n",
+ " \"edgecolor\": \"k\",\n",
+ " \"orientation\": \"landscape\",\n",
+ " \"format\": \"png\",\n",
+ " \"transparent\": false,\n",
+ " \"pad_inches\": 0.1\n",
+ " },\n",
+ " \"table\": {\n",
+ " \"max_rows\": 10,\n",
+ " \"max_columns\": 10,\n",
+ " \"width\": 80,\n",
+ " \"max_colwidth\": 16\n",
+ " },\n",
+ " \"precision\": {\n",
+ " \"distance\": 3,\n",
+ " \"heading\": 1,\n",
+ " \"geolocation\": 5,\n",
+ " \"id\": 0,\n",
+ " \"resolution_id\": 3\n",
+ " },\n",
+ " \"resolution\": 0,\n",
+ " \"resolution_id\": false,\n",
+ " \"json\": {\n",
+ " \"orient\": \"index\",\n",
+ " \"date_format\": \"iso\",\n",
+ " \"double_precision\": 10,\n",
+ " \"force_ascii\": true,\n",
+ " \"date_unit\": \"s\",\n",
+ " \"indent\": 0\n",
+ " },\n",
+ " \"filter\": \"\",\n",
+ " \"select\": \"\",\n",
+ " \"units\": \"km\",\n",
+ " \"relative\": false\n",
+ "}\n",
+ "VERBOSE [geodata/distance]: config = {\n",
+ " \"geodata_url\": \"http://geodata.gridlabd.us/\",\n",
+ " \"output_format\": \"CSV\",\n",
+ " \"path_join\": \"outer\",\n",
+ " \"column_names\": {\n",
+ " \"ID\": \"id\",\n",
+ " \"UUID\": \"uuid\",\n",
+ " \"LAT\": \"latitude\",\n",
+ " \"LON\": \"longitude\",\n",
+ " \"DIST\": \"distance\",\n",
+ " \"HEAD\": \"heading\",\n",
+ " \"LOC\": \"location\",\n",
+ " \"POS\": \"position\"\n",
+ " },\n",
+ " \"uuid_type\": 4,\n",
+ " \"vegetation.username\": \"name@example.com\",\n",
+ " \"vegetation.password\": \"password5839\",\n",
+ " \"method\": \"haversine\"\n",
+ "}\n",
+ "id,latitude,longitude,distance\n",
+ "0,37.0,-122.0,0.0\n",
+ "1,38.0,-122.0,111.195\n"
]
}
],
@@ -2516,7 +3208,7 @@
},
{
"cell_type": "code",
- "execution_count": 70,
+ "execution_count": 71,
"id": "95682b83",
"metadata": {},
"outputs": [
@@ -2524,7 +3216,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "Exit code 4\r\n"
+ "Exit code 4\n"
]
}
],
@@ -2550,7 +3242,7 @@
},
{
"cell_type": "code",
- "execution_count": 71,
+ "execution_count": 72,
"id": "576305ee",
"metadata": {},
"outputs": [
@@ -2558,10 +3250,10 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude id distance\r\n",
- "location \r\n",
- "9q94rzdk9gyt 37.0 -122.0 0 0.0\r\n",
- "9qc0pvdq1cqt 38.0 -122.0 1 111195.0\r\n"
+ " latitude longitude id distance\n",
+ "location \n",
+ "9q94rzdk9gyt 37.0 -122.0 0 0.0\n",
+ "9qc0pvdq1cqt 38.0 -122.0 1 111195.0\n"
]
}
],
@@ -2579,7 +3271,7 @@
},
{
"cell_type": "code",
- "execution_count": 72,
+ "execution_count": 73,
"id": "occasional-opera",
"metadata": {},
"outputs": [
@@ -2587,7 +3279,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "ERROR [geodata/distance]: using index 'location' cannot be used with '--resolution=100.0' option\r\n"
+ "ERROR [geodata/distance]: using index 'location' cannot be used with '--resolution=100.0' option\n"
]
}
],
@@ -2613,7 +3305,7 @@
},
{
"cell_type": "code",
- "execution_count": 73,
+ "execution_count": 74,
"id": "19844cfd",
"metadata": {},
"outputs": [
@@ -2621,7 +3313,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "ERROR [geodata/distance]: unit 'furlongs' is not recognized\r\n"
+ "ERROR [geodata/distance]: unit 'furlongs' is not recognized\n"
]
}
],
@@ -2639,7 +3331,7 @@
},
{
"cell_type": "code",
- "execution_count": 74,
+ "execution_count": 75,
"id": "318cf241",
"metadata": {},
"outputs": [
@@ -2647,101 +3339,102 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "Traceback (most recent call last):\r\n",
- " File \"/usr/local/opt/gridlabd/4.2.26-210820-develop_add_cyme_converter/bin/gridlabd-geodata\", line 854, in merge\r\n",
- " result = MODULE.apply(data,options,config,warning)\r\n",
- " File \"/usr/local/opt/gridlabd/4.2.26-210820-develop_add_cyme_converter/share/gridlabd/geodata_distance.py\", line 119, in apply\r\n",
- " raise Exception(f\"unit '{options['units']}' is not recognized\")\r\n",
- "Exception: unit 'furlongs' is not recognized\r\n",
- "DEBUG [geodata/distance]: merge(args=['37,-122', '38,-122', '--units=furlongs']) --> data = \r\n",
- "----\r\n",
- "None\r\n",
- "----\r\n",
- "options = {\r\n",
- " \"verbose\": false,\r\n",
- " \"debug\": true,\r\n",
- " \"silent\": false,\r\n",
- " \"quiet\": false,\r\n",
- " \"warning\": true,\r\n",
- " \"key_index\": \"\",\r\n",
- " \"max_threads\": 1,\r\n",
- " \"config_file\": \"geodata.conf\",\r\n",
- " \"field_separator\": \" \",\r\n",
- " \"record_separator\": \"\\n\",\r\n",
- " \"input_delimiter\": \"+\",\r\n",
- " \"warning_as_error\": false,\r\n",
- " \"plot\": {\r\n",
- " \"figsize\": [\r\n",
- " 7.0,\r\n",
- " 5.0\r\n",
- " ],\r\n",
- " \"cmap\": \"\",\r\n",
- " \"categorical\": false,\r\n",
- " \"legend\": false,\r\n",
- " \"scheme\": \"\",\r\n",
- " \"k\": 5,\r\n",
- " \"vmin\": NaN,\r\n",
- " \"vmax\": NaN,\r\n",
- " \"aspect\": \"auto\"\r\n",
- " },\r\n",
- " \"show\": {\r\n",
- " \"block\": true\r\n",
- " },\r\n",
- " \"savefig\": {\r\n",
- " \"dpi\": 300,\r\n",
- " \"facecolor\": \"w\",\r\n",
- " \"edgecolor\": \"k\",\r\n",
- " \"orientation\": \"landscape\",\r\n",
- " \"format\": \"png\",\r\n",
- " \"transparent\": false,\r\n",
- " \"pad_inches\": 0.1\r\n",
- " },\r\n",
- " \"table\": {\r\n",
- " \"max_rows\": 10,\r\n",
- " \"max_columns\": 10,\r\n",
- " \"width\": 80,\r\n",
- " \"max_colwidth\": 16\r\n",
- " },\r\n",
- " \"precision\": {\r\n",
- " \"distance\": 0,\r\n",
- " \"heading\": 1,\r\n",
- " \"geolocation\": 5,\r\n",
- " \"id\": 0,\r\n",
- " \"resolution_id\": 3\r\n",
- " },\r\n",
- " \"resolution\": 0,\r\n",
- " \"resolution_id\": false,\r\n",
- " \"json\": {\r\n",
- " \"orient\": \"index\",\r\n",
- " \"data_format\": \"iso\",\r\n",
- " \"double_precision\": 10,\r\n",
- " \"force_ascii\": true,\r\n",
- " \"date_unit\": \"s\"\r\n",
- " },\r\n",
- " \"filter\": \"\",\r\n",
- " \"select\": \"\",\r\n",
- " \"units\": \"furlongs\",\r\n",
- " \"relative\": false\r\n",
- "}\r\n",
- "config = {\r\n",
- " \"geodata_url\": \"http://geodata.gridlabd.us/\",\r\n",
- " \"output_format\": \"CSV\",\r\n",
- " \"path_join\": \"outer\",\r\n",
- " \"column_names\": {\r\n",
- " \"ID\": \"id\",\r\n",
- " \"UUID\": \"uuid\",\r\n",
- " \"LAT\": \"latitude\",\r\n",
- " \"LON\": \"longitude\",\r\n",
- " \"DIST\": \"distance\",\r\n",
- " \"HEAD\": \"heading\",\r\n",
- " \"LOC\": \"location\",\r\n",
- " \"POS\": \"position\"\r\n",
- " },\r\n",
- " \"uuid_type\": 4,\r\n",
- " \"vegetation.username\": \"name@example.com\",\r\n",
- " \"vegetation.password\": \"password5839\",\r\n",
- " \"method\": \"haversine\"\r\n",
- "}\r\n"
+ "Traceback (most recent call last):\n",
+ " File \"/usr/local/opt/gridlabd/4.3.3-230929-develop_fix_include_subcommand-darwin_22-x86_64/bin/gridlabd-geodata\", line 859, in merge\n",
+ " result = MODULE.apply(data,options,config,warning)\n",
+ " File \"/usr/local/opt/gridlabd/4.3.3-230929-develop_fix_include_subcommand-darwin_22-x86_64/share/gridlabd/geodata_distance.py\", line 161, in apply\n",
+ " raise Exception(f\"unit '{options['units']}' is not recognized\")\n",
+ "Exception: unit 'furlongs' is not recognized\n",
+ "DEBUG [geodata/distance]: merge(args=['37,-122', '38,-122', '--units=furlongs']) --> data = \n",
+ "----\n",
+ "None\n",
+ "----\n",
+ "options = {\n",
+ " \"verbose\": false,\n",
+ " \"debug\": true,\n",
+ " \"silent\": false,\n",
+ " \"quiet\": false,\n",
+ " \"warning\": true,\n",
+ " \"key_index\": \"\",\n",
+ " \"max_threads\": 1,\n",
+ " \"config_file\": \"geodata.conf\",\n",
+ " \"field_separator\": \" \",\n",
+ " \"record_separator\": \"\\n\",\n",
+ " \"input_delimiter\": \"+\",\n",
+ " \"warning_as_error\": false,\n",
+ " \"plot\": {\n",
+ " \"figsize\": [\n",
+ " 7.0,\n",
+ " 5.0\n",
+ " ],\n",
+ " \"cmap\": \"\",\n",
+ " \"categorical\": false,\n",
+ " \"legend\": false,\n",
+ " \"scheme\": \"\",\n",
+ " \"k\": 5,\n",
+ " \"vmin\": NaN,\n",
+ " \"vmax\": NaN,\n",
+ " \"aspect\": \"auto\"\n",
+ " },\n",
+ " \"show\": {\n",
+ " \"block\": true\n",
+ " },\n",
+ " \"savefig\": {\n",
+ " \"dpi\": 300,\n",
+ " \"facecolor\": \"w\",\n",
+ " \"edgecolor\": \"k\",\n",
+ " \"orientation\": \"landscape\",\n",
+ " \"format\": \"png\",\n",
+ " \"transparent\": false,\n",
+ " \"pad_inches\": 0.1\n",
+ " },\n",
+ " \"table\": {\n",
+ " \"max_rows\": 10,\n",
+ " \"max_columns\": 10,\n",
+ " \"width\": 80,\n",
+ " \"max_colwidth\": 16\n",
+ " },\n",
+ " \"precision\": {\n",
+ " \"distance\": 0,\n",
+ " \"heading\": 1,\n",
+ " \"geolocation\": 5,\n",
+ " \"id\": 0,\n",
+ " \"resolution_id\": 3\n",
+ " },\n",
+ " \"resolution\": 0,\n",
+ " \"resolution_id\": false,\n",
+ " \"json\": {\n",
+ " \"orient\": \"index\",\n",
+ " \"date_format\": \"iso\",\n",
+ " \"double_precision\": 10,\n",
+ " \"force_ascii\": true,\n",
+ " \"date_unit\": \"s\",\n",
+ " \"indent\": 0\n",
+ " },\n",
+ " \"filter\": \"\",\n",
+ " \"select\": \"\",\n",
+ " \"units\": \"furlongs\",\n",
+ " \"relative\": false\n",
+ "}\n",
+ "config = {\n",
+ " \"geodata_url\": \"http://geodata.gridlabd.us/\",\n",
+ " \"output_format\": \"CSV\",\n",
+ " \"path_join\": \"outer\",\n",
+ " \"column_names\": {\n",
+ " \"ID\": \"id\",\n",
+ " \"UUID\": \"uuid\",\n",
+ " \"LAT\": \"latitude\",\n",
+ " \"LON\": \"longitude\",\n",
+ " \"DIST\": \"distance\",\n",
+ " \"HEAD\": \"heading\",\n",
+ " \"LOC\": \"location\",\n",
+ " \"POS\": \"position\"\n",
+ " },\n",
+ " \"uuid_type\": 4,\n",
+ " \"vegetation.username\": \"name@example.com\",\n",
+ " \"vegetation.password\": \"password5839\",\n",
+ " \"method\": \"haversine\"\n",
+ "}\n"
]
}
],
@@ -2777,7 +3470,7 @@
},
{
"cell_type": "code",
- "execution_count": 75,
+ "execution_count": 76,
"id": "a3a938c7",
"metadata": {},
"outputs": [
@@ -2785,20 +3478,20 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "--geodata_url='http://geodata.gridlabd.us/'\r\n",
- "--output_format='CSV'\r\n",
- "--path_join='outer'\r\n",
- "--column_names.ID='id'\r\n",
- "--column_names.UUID='uuid'\r\n",
- "--column_names.LAT='latitude'\r\n",
- "--column_names.LON='longitude'\r\n",
- "--column_names.DIST='distance'\r\n",
- "--column_names.HEAD='heading'\r\n",
- "--column_names.LOC='location'\r\n",
- "--column_names.POS='position'\r\n",
- "--uuid_type=4\r\n",
- "--vegetation.username='name@example.com'\r\n",
- "--vegetation.password='password5839'\r\n"
+ "--geodata_url='http://geodata.gridlabd.us/'\n",
+ "--output_format='CSV'\n",
+ "--path_join='outer'\n",
+ "--column_names.ID='id'\n",
+ "--column_names.UUID='uuid'\n",
+ "--column_names.LAT='latitude'\n",
+ "--column_names.LON='longitude'\n",
+ "--column_names.DIST='distance'\n",
+ "--column_names.HEAD='heading'\n",
+ "--column_names.LOC='location'\n",
+ "--column_names.POS='position'\n",
+ "--uuid_type=4\n",
+ "--vegetation.username='name@example.com'\n",
+ "--vegetation.password='password5839'\n"
]
}
],
@@ -2824,7 +3517,7 @@
},
{
"cell_type": "code",
- "execution_count": 76,
+ "execution_count": 77,
"id": "88c6d751",
"metadata": {},
"outputs": [
@@ -2832,53 +3525,54 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "--verbose=False\r\n",
- "--debug=False\r\n",
- "--silent=False\r\n",
- "--quiet=False\r\n",
- "--warning=True\r\n",
- "--key_index=''\r\n",
- "--max_threads=1\r\n",
- "--config_file='geodata.conf'\r\n",
- "--field_separator=' '\r\n",
- "--record_separator='\\n'\r\n",
- "--input_delimiter='+'\r\n",
- "--warning_as_error=False\r\n",
- "--plot.figsize=7.0.5.0\r\n",
- "--plot.cmap=''\r\n",
- "--plot.categorical=False\r\n",
- "--plot.legend=False\r\n",
- "--plot.scheme=''\r\n",
- "--plot.k=5\r\n",
- "--plot.vmin=nan\r\n",
- "--plot.vmax=nan\r\n",
- "--plot.aspect='auto'\r\n",
- "--show.block=True\r\n",
- "--savefig.dpi=300\r\n",
- "--savefig.facecolor='w'\r\n",
- "--savefig.edgecolor='k'\r\n",
- "--savefig.orientation='landscape'\r\n",
- "--savefig.format='png'\r\n",
- "--savefig.transparent=False\r\n",
- "--savefig.pad_inches=0.1\r\n",
- "--table.max_rows=10\r\n",
- "--table.max_columns=10\r\n",
- "--table.width=80\r\n",
- "--table.max_colwidth=16\r\n",
- "--precision.distance=0\r\n",
- "--precision.heading=1\r\n",
- "--precision.geolocation=5\r\n",
- "--precision.id=0\r\n",
- "--precision.resolution_id=3\r\n",
- "--resolution=0\r\n",
- "--resolution_id=False\r\n",
- "--json.orient='index'\r\n",
- "--json.data_format='iso'\r\n",
- "--json.double_precision=10\r\n",
- "--json.force_ascii=True\r\n",
- "--json.date_unit='s'\r\n",
- "--filter=''\r\n",
- "--select=''\r\n"
+ "--verbose=False\n",
+ "--debug=False\n",
+ "--silent=False\n",
+ "--quiet=False\n",
+ "--warning=True\n",
+ "--key_index=''\n",
+ "--max_threads=1\n",
+ "--config_file='geodata.conf'\n",
+ "--field_separator=' '\n",
+ "--record_separator='\\n'\n",
+ "--input_delimiter='+'\n",
+ "--warning_as_error=False\n",
+ "--plot.figsize=7.0.5.0\n",
+ "--plot.cmap=''\n",
+ "--plot.categorical=False\n",
+ "--plot.legend=False\n",
+ "--plot.scheme=''\n",
+ "--plot.k=5\n",
+ "--plot.vmin=nan\n",
+ "--plot.vmax=nan\n",
+ "--plot.aspect='auto'\n",
+ "--show.block=True\n",
+ "--savefig.dpi=300\n",
+ "--savefig.facecolor='w'\n",
+ "--savefig.edgecolor='k'\n",
+ "--savefig.orientation='landscape'\n",
+ "--savefig.format='png'\n",
+ "--savefig.transparent=False\n",
+ "--savefig.pad_inches=0.1\n",
+ "--table.max_rows=10\n",
+ "--table.max_columns=10\n",
+ "--table.width=80\n",
+ "--table.max_colwidth=16\n",
+ "--precision.distance=0\n",
+ "--precision.heading=1\n",
+ "--precision.geolocation=5\n",
+ "--precision.id=0\n",
+ "--precision.resolution_id=3\n",
+ "--resolution=0\n",
+ "--resolution_id=False\n",
+ "--json.orient='index'\n",
+ "--json.date_format='iso'\n",
+ "--json.double_precision=10\n",
+ "--json.force_ascii=True\n",
+ "--json.date_unit='s'\n",
+ "--json.indent=0\n",
+ "--filter=''\n",
+ "--select=''\n"
]
}
],
@@ -3067,7 +3761,7 @@
},
{
"cell_type": "code",
- "execution_count": 77,
+ "execution_count": 78,
"id": "378d2155",
"metadata": {},
"outputs": [
@@ -3075,20 +3769,20 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "module residential;\r\n",
- "class house\r\n",
- "{\r\n",
- " char1024 address;\r\n",
- "}\r\n",
- "\r\n",
- "object house\r\n",
- "{\r\n",
- " name \"Building_53\";\r\n",
- " address \"2575 Sand Hill Rd., Menlo Park, CA\";\r\n",
- "}\r\n",
- "#write /tmp/address.csv house:address\r\n",
- "#geodata merge -D address /tmp/address.csv --reverse --format GLM:@latitude,longitude -o /tmp/latlon.glm\r\n",
- "#include \"/tmp/latlon.glm\"\r\n"
+ "module residential;\n",
+ "class house\n",
+ "{\n",
+ " char1024 address;\n",
+ "}\n",
+ "\n",
+ "object house\n",
+ "{\n",
+ " name \"Building_53\";\n",
+ " address \"2575 Sand Hill Rd., Menlo Park, CA\";\n",
+ "}\n",
+ "#write /tmp/address.csv house:address\n",
+ "#geodata merge -D address /tmp/address.csv --reverse --format GLM:@latitude,longitude -o /tmp/latlon.glm\n",
+ "#include \"/tmp/latlon.glm\"\n"
]
}
],
@@ -3098,7 +3792,7 @@
},
{
"cell_type": "code",
- "execution_count": 78,
+ "execution_count": 79,
"id": "639c6e38",
"metadata": {},
"outputs": [
@@ -3106,9 +3800,9 @@
"name": "stdout",
"output_type": "stream",
"text": [
- " \"latitude\": \"37.415460\",\r\n",
- " \"longitude\": \"-122.201180\",\r\n",
- " \"address\": \"2575 Sand Hill Rd., Menlo Park, CA\",\r\n"
+ " \"latitude\": \"37.416790\",\n",
+ " \"longitude\": \"-122.204930\",\n",
+ " \"address\": \"2575 Sand Hill Rd., Menlo Park, CA\",\n"
]
}
],
@@ -3128,67 +3822,65 @@
},
{
"cell_type": "code",
- "execution_count": 79,
+ "execution_count": 80,
"id": "649f8ab3",
- "metadata": {
- "scrolled": false
- },
+ "metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- " position latitude longitude configuration pole_height distance heading elevation\r\n",
- "id \r\n",
- "0.0 0 37.41505 -122.20565 flat3 18.0 0.0 NaN 88.0\r\n",
- "NaN 250 37.41471 -122.20845 NaN NaN 250.0 263.0 100.0\r\n",
- "1.0 254 37.41470 -122.20849 sideT 20.0 0.0 263.0 100.0\r\n",
- "2.0 428 37.41445 -122.21044 sideT 21.0 0.0 262.7 111.0\r\n",
- "3.0 595 37.41422 -122.21231 sideT 18.0 0.0 263.0 110.0\r\n",
- "4.0 771 37.41398 -122.21427 sideT 20.0 0.0 263.0 98.0\r\n",
- "5.0 976 37.41370 -122.21657 sideT 18.0 0.0 263.1 91.0\r\n",
- "6.0 1128 37.41348 -122.21827 sideT 21.0 0.0 262.6 77.0\r\n",
- "7.0 1326 37.41321 -122.22048 sideT 18.0 0.0 263.0 91.0\r\n",
- "8.0 1490 37.41298 -122.22232 sideT 16.0 0.0 262.9 80.0\r\n",
- "9.0 1690 37.41271 -122.22456 sideT 21.0 0.0 263.1 79.0\r\n",
- "NaN 1940 37.41236 -122.22736 NaN NaN 250.0 262.9 96.0\r\n",
- "10.0 1941 37.41236 -122.22736 sideT 18.0 0.0 262.9 96.0\r\n",
- "11.0 2123 37.41211 -122.22940 sideT 19.0 0.0 263.0 82.0\r\n",
- "12.0 2341 37.41181 -122.23184 3pole 15.0 0.0 263.0 103.0\r\n",
- "NaN 2591 37.41058 -122.23421 NaN NaN 250.0 242.5 83.0\r\n",
- "13.0 2718 37.40995 -122.23541 3pole 16.0 0.0 242.5 129.0\r\n",
- "14.0 2941 37.40912 -122.23771 2pole 15.0 0.0 250.2 109.0\r\n",
- "NaN 3191 37.40818 -122.24028 NaN NaN 250.0 249.9 89.0\r\n",
- "15.0 3268 37.40789 -122.24107 2pole 17.0 0.0 249.9 108.0\r\n",
- "16.0 3466 37.40715 -122.24311 2pole 15.0 0.0 250.1 115.0\r\n",
- "17.0 3653 37.40644 -122.24503 3pole 17.0 0.0 249.7 124.0\r\n",
- "18.0 3759 37.40562 -122.24443 vert3 17.0 0.0 143.8 127.0\r\n",
- "19.0 3878 37.40456 -122.24418 vert3 20.0 0.0 166.7 123.0\r\n",
- "20.0 4009 37.40339 -122.24429 vert3 20.0 0.0 185.4 117.0\r\n",
- "21.0 4115 37.40249 -122.24468 vert3 20.0 0.0 203.4 110.0\r\n",
- "22.0 4267 37.40136 -122.24566 vert3 22.0 0.0 220.9 106.0\r\n",
- "NaN 4517 37.40032 -122.24817 NaN NaN 250.0 247.6 106.0\r\n",
- "23.0 4627 37.39987 -122.24927 3pole 16.0 0.0 247.6 116.0\r\n",
- "24.0 4793 37.39966 -122.25113 2pole 18.0 0.0 263.6 167.0\r\n",
- "NaN 5043 37.39950 -122.25395 NaN NaN 250.0 266.8 206.0\r\n",
- "25.0 5248 37.39937 -122.25627 2pole 22.0 0.0 266.8 267.0\r\n",
- "26.0 5397 37.39928 -122.25795 3pole 15.0 0.0 266.9 285.0\r\n",
- "NaN 5647 37.39908 -122.26077 NaN NaN 250.0 266.0 205.0\r\n",
- "NaN 5897 37.39888 -122.26359 NaN NaN 500.0 266.0 308.0\r\n",
- "27.0 5977 37.39882 -122.26449 3pole 18.0 0.0 266.0 331.0\r\n",
- "28.0 6119 37.39871 -122.26610 2pole 15.0 0.0 266.1 352.0\r\n",
- "29.0 6250 37.39861 -122.26757 3pole 18.0 0.0 266.1 341.0\r\n",
- "NaN 6500 37.39667 -122.26901 NaN NaN 250.0 216.5 343.0\r\n",
- "NaN 6750 37.39473 -122.27044 NaN NaN 500.0 216.5 439.0\r\n",
- "30.0 6783 37.39448 -122.27063 3pole 21.0 0.0 216.5 444.0\r\n",
- "31.0 6971 37.39306 -122.27180 3pole 21.0 0.0 219.5 448.0\r\n",
- "32.0 7215 37.39248 -122.27446 2pole 17.0 0.0 257.7 505.0\r\n",
- "33.0 7463 37.39190 -122.27717 2pole 21.0 0.0 257.9 578.0\r\n",
- "34.0 7593 37.39161 -122.27860 2pole 23.0 0.0 258.5 615.0\r\n",
- "35.0 7840 37.39171 -122.28139 3pole 16.0 0.0 272.1 642.0\r\n",
- "NaN 8090 37.39048 -122.28376 NaN NaN 250.0 242.6 548.0\r\n",
- "NaN 8340 37.38926 -122.28613 NaN NaN 500.0 242.6 544.0\r\n",
- "36.0 8583 37.38806 -122.28844 tower 23.0 0.0 242.6 634.0\r\n"
+ " position latitude longitude configuration pole_height distance heading elevation\n",
+ "id \n",
+ "0.0 0 37.41505 -122.20565 flat3 18.0 0.0 0.0 88.0\n",
+ "NaN 250 37.41471 -122.20845 NaN NaN 250.0 263.0 100.0\n",
+ "1.0 254 37.41470 -122.20849 sideT 20.0 0.0 263.0 100.0\n",
+ "2.0 428 37.41445 -122.21044 sideT 21.0 0.0 262.7 111.0\n",
+ "3.0 595 37.41422 -122.21231 sideT 18.0 0.0 263.0 110.0\n",
+ "4.0 771 37.41398 -122.21427 sideT 20.0 0.0 263.0 98.0\n",
+ "5.0 976 37.41370 -122.21657 sideT 18.0 0.0 263.1 91.0\n",
+ "6.0 1128 37.41348 -122.21827 sideT 21.0 0.0 262.6 77.0\n",
+ "7.0 1326 37.41321 -122.22048 sideT 18.0 0.0 263.0 91.0\n",
+ "8.0 1490 37.41298 -122.22232 sideT 16.0 0.0 262.9 80.0\n",
+ "9.0 1690 37.41271 -122.22456 sideT 21.0 0.0 263.1 79.0\n",
+ "NaN 1940 37.41236 -122.22736 NaN NaN 250.0 262.9 96.0\n",
+ "10.0 1941 37.41236 -122.22736 sideT 18.0 0.0 262.9 96.0\n",
+ "11.0 2123 37.41211 -122.22940 sideT 19.0 0.0 263.0 82.0\n",
+ "12.0 2341 37.41181 -122.23184 3pole 15.0 0.0 263.0 103.0\n",
+ "NaN 2591 37.41058 -122.23421 NaN NaN 250.0 242.5 83.0\n",
+ "13.0 2718 37.40995 -122.23541 3pole 16.0 0.0 242.5 129.0\n",
+ "14.0 2941 37.40912 -122.23771 2pole 15.0 0.0 250.2 109.0\n",
+ "NaN 3191 37.40818 -122.24028 NaN NaN 250.0 249.9 89.0\n",
+ "15.0 3268 37.40789 -122.24107 2pole 17.0 0.0 249.9 108.0\n",
+ "16.0 3466 37.40715 -122.24311 2pole 15.0 0.0 250.1 115.0\n",
+ "17.0 3653 37.40644 -122.24503 3pole 17.0 0.0 249.7 124.0\n",
+ "18.0 3759 37.40562 -122.24443 vert3 17.0 0.0 143.8 127.0\n",
+ "19.0 3878 37.40456 -122.24418 vert3 20.0 0.0 166.7 123.0\n",
+ "20.0 4009 37.40339 -122.24429 vert3 20.0 0.0 185.4 117.0\n",
+ "21.0 4115 37.40249 -122.24468 vert3 20.0 0.0 203.4 110.0\n",
+ "22.0 4267 37.40136 -122.24566 vert3 22.0 0.0 220.9 106.0\n",
+ "NaN 4517 37.40032 -122.24817 NaN NaN 250.0 247.6 106.0\n",
+ "23.0 4627 37.39987 -122.24927 3pole 16.0 0.0 247.6 116.0\n",
+ "24.0 4793 37.39966 -122.25113 2pole 18.0 0.0 263.6 167.0\n",
+ "NaN 5043 37.39950 -122.25395 NaN NaN 250.0 266.8 206.0\n",
+ "25.0 5248 37.39937 -122.25627 2pole 22.0 0.0 266.8 267.0\n",
+ "26.0 5397 37.39928 -122.25795 3pole 15.0 0.0 266.9 285.0\n",
+ "NaN 5647 37.39908 -122.26077 NaN NaN 250.0 266.0 205.0\n",
+ "NaN 5897 37.39888 -122.26359 NaN NaN 500.0 266.0 308.0\n",
+ "27.0 5977 37.39882 -122.26449 3pole 18.0 0.0 266.0 331.0\n",
+ "28.0 6119 37.39871 -122.26610 2pole 15.0 0.0 266.1 352.0\n",
+ "29.0 6250 37.39861 -122.26757 3pole 18.0 0.0 266.1 341.0\n",
+ "NaN 6500 37.39667 -122.26901 NaN NaN 250.0 216.5 343.0\n",
+ "NaN 6750 37.39473 -122.27044 NaN NaN 500.0 216.5 439.0\n",
+ "30.0 6783 37.39448 -122.27063 3pole 21.0 0.0 216.5 444.0\n",
+ "31.0 6971 37.39306 -122.27180 3pole 21.0 0.0 219.5 448.0\n",
+ "32.0 7215 37.39248 -122.27446 2pole 17.0 0.0 257.7 505.0\n",
+ "33.0 7463 37.39190 -122.27717 2pole 21.0 0.0 257.9 578.0\n",
+ "34.0 7593 37.39161 -122.27860 2pole 23.0 0.0 258.5 615.0\n",
+ "35.0 7840 37.39171 -122.28139 3pole 16.0 0.0 272.1 642.0\n",
+ "NaN 8090 37.39048 -122.28376 NaN NaN 250.0 242.6 548.0\n",
+ "NaN 8340 37.38926 -122.28613 NaN NaN 500.0 242.6 544.0\n",
+ "36.0 8583 37.38806 -122.28844 tower 23.0 0.0 242.6 634.0\n"
]
}
],
@@ -3208,336 +3900,336 @@
},
{
"cell_type": "code",
- "execution_count": 80,
+ "execution_count": 82,
"id": "3378b12e",
- "metadata": {
- "scrolled": false
- },
+ "metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- " latitude longitude pole_height elevation linesag cover height contact\r\n",
- "id \r\n",
- "0.000 37.41505 -122.20565 18.0 88.0 18.0 0.68 14.0 0.00\r\n",
- "0.003 37.41501 -122.20599 NaN 89.0 14.5 0.73 16.0 0.73\r\n",
- "0.007 37.41497 -122.20632 NaN 89.0 13.2 0.74 16.0 0.74\r\n",
- "0.010 37.41493 -122.20666 NaN 90.0 12.0 0.72 17.0 0.72\r\n",
- "0.014 37.41488 -122.20699 NaN 91.0 11.8 0.56 17.0 0.56\r\n",
- "0.017 37.41484 -122.20733 NaN 92.0 12.8 0.30 17.0 0.30\r\n",
- "0.021 37.41480 -122.20766 NaN 93.0 14.8 0.14 16.0 0.14\r\n",
- "0.024 37.41476 -122.20800 NaN 95.0 17.0 0.07 10.0 0.00\r\n",
- "0.028 37.41472 -122.20834 NaN 98.0 19.3 0.09 1.0 0.00\r\n",
- "0.030 37.41470 -122.20849 20.0 100.0 20.0 0.09 1.0 0.00\r\n",
- "0.033 37.41466 -122.20883 NaN 103.0 15.9 0.14 1.0 0.00\r\n",
- "0.037 37.41461 -122.20916 NaN 99.0 20.1 0.16 1.0 0.00\r\n",
- "0.040 37.41457 -122.20950 NaN 98.0 22.7 0.14 1.0 0.00\r\n",
- "0.044 37.41453 -122.20983 NaN 103.0 20.5 0.11 0.0 0.00\r\n",
- "0.047 37.41449 -122.21017 NaN 110.0 17.7 0.33 1.0 0.00\r\n",
- "0.050 37.41445 -122.21044 21.0 111.0 21.0 0.31 1.0 0.00\r\n",
- "0.053 37.41441 -122.21078 NaN 111.0 17.2 0.30 1.0 0.00\r\n",
- "0.057 37.41437 -122.21111 NaN 113.0 12.8 0.33 1.0 0.00\r\n",
- "0.060 37.41433 -122.21145 NaN 115.0 9.7 0.40 1.0 0.00\r\n",
- "0.064 37.41428 -122.21178 NaN 114.0 10.9 0.44 1.0 0.00\r\n",
- "0.067 37.41424 -122.21212 NaN 111.0 15.5 0.51 1.0 0.00\r\n",
- "0.069 37.41422 -122.21231 18.0 110.0 18.0 0.51 1.0 0.00\r\n",
- "0.073 37.41418 -122.21265 NaN 108.0 15.1 0.69 6.0 0.00\r\n",
- "0.076 37.41414 -122.21298 NaN 107.0 12.6 0.72 13.0 0.72\r\n",
- "0.080 37.41410 -122.21332 NaN 105.0 12.3 0.66 15.0 0.66\r\n",
- "0.083 37.41406 -122.21365 NaN 104.0 12.3 0.62 15.0 0.62\r\n",
- "0.087 37.41401 -122.21399 NaN 101.0 15.7 0.65 16.0 0.65\r\n",
- "0.090 37.41398 -122.21427 20.0 98.0 20.0 0.68 17.0 0.00\r\n",
- "0.093 37.41394 -122.21461 NaN 96.0 17.1 0.65 18.0 0.65\r\n",
- "0.097 37.41390 -122.21494 NaN 94.0 15.5 0.52 19.0 0.52\r\n",
- "0.100 37.41386 -122.21528 NaN 92.0 15.1 0.38 15.0 0.38\r\n",
- "0.104 37.41382 -122.21561 NaN 91.0 14.8 0.20 9.0 0.00\r\n",
- "0.107 37.41378 -122.21595 NaN 89.0 16.8 0.10 4.0 0.00\r\n",
- "0.111 37.41373 -122.21628 NaN 90.0 17.0 0.07 2.0 0.00\r\n",
- "0.114 37.41370 -122.21657 18.0 91.0 18.0 0.06 1.0 0.00\r\n",
- "0.117 37.41366 -122.21691 NaN 90.0 13.9 0.06 0.0 0.00\r\n",
- "0.121 37.41361 -122.21724 NaN 87.0 13.3 0.10 0.0 0.00\r\n",
- "0.124 37.41357 -122.21758 NaN 83.0 15.1 0.11 1.0 0.00\r\n",
- "0.128 37.41353 -122.21791 NaN 80.0 17.3 0.29 3.0 0.00\r\n",
- "0.131 37.41348 -122.21825 NaN 77.0 20.9 0.50 4.0 0.00\r\n",
- "0.131 37.41348 -122.21827 21.0 77.0 21.0 0.50 4.0 0.00\r\n",
- "0.135 37.41344 -122.21861 NaN 76.0 20.2 0.67 7.0 0.00\r\n",
- "0.138 37.41340 -122.21894 NaN 79.0 16.7 0.71 10.0 0.00\r\n",
- "0.142 37.41336 -122.21928 NaN 82.0 14.4 0.67 13.0 0.67\r\n",
- "0.145 37.41332 -122.21961 NaN 85.0 13.3 0.59 15.0 0.59\r\n",
- "0.149 37.41327 -122.21995 NaN 89.0 12.5 0.54 16.0 0.54\r\n",
- "0.152 37.41323 -122.22028 NaN 91.0 14.8 0.60 16.0 0.60\r\n",
- "0.154 37.41321 -122.22048 18.0 91.0 18.0 0.68 16.0 0.00\r\n",
- "0.158 37.41317 -122.22082 NaN 92.0 11.6 0.73 16.0 0.73\r\n",
- "0.161 37.41313 -122.22115 NaN 89.0 10.6 0.74 17.0 0.74\r\n",
- "0.165 37.41308 -122.22149 NaN 84.0 12.8 0.71 17.0 0.71\r\n",
- "0.168 37.41304 -122.22182 NaN 82.0 13.5 0.70 15.0 0.70\r\n",
- "0.172 37.41300 -122.22216 NaN 81.0 14.5 0.68 13.0 0.68\r\n",
- "0.174 37.41298 -122.22232 16.0 80.0 16.0 0.62 12.0 0.00\r\n",
- "0.177 37.41294 -122.22266 NaN 78.0 15.1 0.57 11.0 0.00\r\n",
- "0.181 37.41290 -122.22299 NaN 77.0 14.5 0.42 9.0 0.00\r\n",
- "0.184 37.41286 -122.22333 NaN 73.0 18.0 0.25 5.0 0.00\r\n",
- "0.188 37.41282 -122.22366 NaN 74.0 17.8 0.12 3.0 0.00\r\n",
- "0.191 37.41278 -122.22400 NaN 78.0 15.9 0.08 1.0 0.00\r\n",
- "0.195 37.41274 -122.22433 NaN 79.0 18.1 0.06 1.0 0.00\r\n",
- "0.197 37.41271 -122.22456 21.0 79.0 21.0 0.04 1.0 0.00\r\n",
- "0.200 37.41267 -122.22490 NaN 79.0 18.6 0.02 0.0 0.00\r\n",
- "0.204 37.41263 -122.22523 NaN 78.0 18.4 0.00 0.0 0.00\r\n",
- "0.207 37.41258 -122.22557 NaN 74.0 22.2 0.01 0.0 0.00\r\n",
- "0.211 37.41254 -122.22590 NaN 74.0 23.1 0.02 0.0 0.00\r\n",
- "0.214 37.41250 -122.22624 NaN 79.0 20.2 0.06 1.0 0.00\r\n",
- "0.218 37.41246 -122.22657 NaN 86.0 16.3 0.10 1.0 0.00\r\n",
- "0.221 37.41242 -122.22691 NaN 93.0 13.6 0.19 2.0 0.00\r\n",
- "0.225 37.41237 -122.22724 NaN 95.0 16.9 0.29 4.0 0.00\r\n",
- "0.226 37.41236 -122.22736 18.0 96.0 18.0 0.29 4.0 0.00\r\n",
- "0.230 37.41232 -122.22770 NaN 95.0 13.6 0.34 2.0 0.00\r\n",
- "0.233 37.41228 -122.22803 NaN 92.0 12.5 0.41 3.0 0.00\r\n",
- "0.237 37.41224 -122.22837 NaN 87.0 14.6 0.37 4.0 0.00\r\n",
- "0.240 37.41220 -122.22870 NaN 82.0 18.1 0.26 4.0 0.00\r\n",
- "0.244 37.41215 -122.22904 NaN 83.0 16.8 0.09 2.0 0.00\r\n",
- "0.247 37.41211 -122.22937 NaN 82.0 18.9 0.07 2.0 0.00\r\n",
- "0.247 37.41211 -122.22940 19.0 82.0 19.0 0.07 2.0 0.00\r\n",
- "0.251 37.41207 -122.22974 NaN 82.0 17.6 0.05 1.0 0.00\r\n",
- "0.254 37.41203 -122.23007 NaN 83.0 16.5 0.07 3.0 0.00\r\n",
- "0.258 37.41199 -122.23041 NaN 84.0 16.5 0.10 3.0 0.00\r\n",
- "0.261 37.41194 -122.23074 NaN 85.0 17.6 0.13 4.0 0.00\r\n",
- "0.265 37.41190 -122.23108 NaN 89.0 17.1 0.12 4.0 0.00\r\n",
- "0.268 37.41186 -122.23141 NaN 99.0 11.5 0.11 4.0 0.00\r\n",
- "0.272 37.41182 -122.23175 NaN 103.0 13.3 0.13 2.0 0.00\r\n",
- "0.273 37.41181 -122.23184 15.0 103.0 15.0 0.15 1.0 0.00\r\n",
- "0.276 37.41166 -122.23212 NaN 102.0 12.9 0.07 1.0 0.00\r\n",
- "0.280 37.41151 -122.23241 NaN 96.0 16.7 0.08 1.0 0.00\r\n",
- "0.283 37.41137 -122.23269 NaN 94.0 17.4 0.04 1.0 0.00\r\n",
- "0.287 37.41122 -122.23298 NaN 95.0 16.0 0.04 0.0 0.00\r\n",
- "0.290 37.41107 -122.23326 NaN 97.0 14.5 0.04 1.0 0.00\r\n",
- "0.294 37.41092 -122.23354 NaN 96.0 17.0 0.04 1.0 0.00\r\n",
- "0.297 37.41077 -122.23383 NaN 92.0 23.4 0.14 4.0 0.00\r\n",
- "0.301 37.41063 -122.23411 NaN 85.0 33.5 0.18 5.0 0.00\r\n",
- "0.304 37.41048 -122.23440 NaN 81.0 41.8 0.49 9.0 0.00\r\n",
- "0.308 37.41033 -122.23468 NaN 92.0 35.8 0.47 8.0 0.00\r\n",
- "0.311 37.41018 -122.23496 NaN 109.0 24.8 0.48 6.0 0.00\r\n",
- "0.315 37.41003 -122.23525 NaN 126.0 14.9 0.40 6.0 0.00\r\n",
- "0.317 37.40995 -122.23541 16.0 129.0 16.0 0.40 6.0 0.00\r\n",
- "0.320 37.40984 -122.23572 NaN 127.0 11.5 0.18 2.0 0.00\r\n",
- "0.324 37.40973 -122.23603 NaN 119.0 14.1 0.10 2.0 0.00\r\n",
- "0.327 37.40962 -122.23634 NaN 110.0 18.8 0.08 1.0 0.00\r\n",
- "0.331 37.40950 -122.23665 NaN 105.0 20.7 0.09 1.0 0.00\r\n",
- "0.334 37.40939 -122.23696 NaN 104.0 19.8 0.14 1.0 0.00\r\n",
- "0.338 37.40928 -122.23727 NaN 103.0 20.0 0.28 2.0 0.00\r\n",
- "0.341 37.40917 -122.23757 NaN 107.0 16.4 0.26 2.0 0.00\r\n",
- "0.343 37.40912 -122.23771 15.0 109.0 15.0 0.42 5.0 0.00\r\n",
- "0.346 37.40901 -122.23802 NaN 107.0 12.3 0.53 6.0 0.00\r\n",
- "0.350 37.40889 -122.23833 NaN 98.0 17.5 0.28 5.0 0.00\r\n",
- "0.353 37.40878 -122.23864 NaN 89.0 23.7 0.32 7.0 0.00\r\n",
- "0.357 37.40867 -122.23894 NaN 87.0 24.0 0.42 11.0 0.00\r\n",
- "0.360 37.40856 -122.23925 NaN 86.0 24.1 0.30 11.0 0.00\r\n",
- "0.364 37.40844 -122.23956 NaN 85.0 25.3 0.26 9.0 0.00\r\n",
- "0.367 37.40833 -122.23987 NaN 87.0 24.4 0.16 7.0 0.00\r\n",
- "0.371 37.40822 -122.24018 NaN 88.0 25.5 0.15 4.0 0.00\r\n",
- "0.374 37.40810 -122.24049 NaN 97.0 19.6 0.16 2.0 0.00\r\n",
- "0.378 37.40799 -122.24079 NaN 105.0 15.5 0.19 1.0 0.00\r\n",
- "0.381 37.40789 -122.24107 17.0 108.0 17.0 0.14 1.0 0.00\r\n",
- "0.384 37.40778 -122.24138 NaN 109.0 13.3 0.09 1.0 0.00\r\n",
- "0.388 37.40767 -122.24169 NaN 109.0 11.8 0.09 1.0 0.00\r\n",
- "0.391 37.40755 -122.24200 NaN 111.0 9.6 0.11 1.0 0.00\r\n",
- "0.395 37.40744 -122.24231 NaN 111.0 10.6 0.17 1.0 0.00\r\n",
- "0.398 37.40733 -122.24261 NaN 113.0 10.8 0.28 1.0 0.00\r\n",
- "0.402 37.40722 -122.24292 NaN 115.0 12.3 0.32 1.0 0.00\r\n",
- "0.404 37.40715 -122.24311 15.0 115.0 15.0 0.32 1.0 0.00\r\n",
- "0.407 37.40704 -122.24342 NaN 115.0 13.4 0.32 1.0 0.00\r\n",
- "0.411 37.40692 -122.24373 NaN 117.0 11.2 0.33 1.0 0.00\r\n",
- "0.414 37.40681 -122.24403 NaN 119.0 10.1 0.22 1.0 0.00\r\n",
- "0.418 37.40669 -122.24434 NaN 120.0 11.4 0.16 1.0 0.00\r\n",
- "0.421 37.40658 -122.24465 NaN 123.0 11.9 0.09 1.0 0.00\r\n",
- "0.425 37.40647 -122.24496 NaN 124.0 15.7 0.09 1.0 0.00\r\n",
- "0.426 37.40644 -122.24503 17.0 124.0 17.0 0.09 1.0 0.00\r\n",
- "0.429 37.40621 -122.24486 NaN 127.0 12.7 0.09 1.0 0.00\r\n",
- "0.433 37.40597 -122.24469 NaN 128.0 12.1 0.15 1.0 0.00\r\n",
- "0.436 37.40574 -122.24452 NaN 127.0 15.2 0.12 1.0 0.00\r\n",
- "0.438 37.40562 -122.24443 17.0 127.0 17.0 0.12 1.0 0.00\r\n",
- "0.441 37.40535 -122.24437 NaN 126.0 15.3 0.08 2.0 0.00\r\n",
- "0.445 37.40509 -122.24430 NaN 124.0 16.3 0.08 2.0 0.00\r\n",
- "0.448 37.40482 -122.24424 NaN 123.0 17.9 0.11 2.0 0.00\r\n",
- "0.452 37.40456 -122.24418 20.0 123.0 20.0 0.11 2.0 0.00\r\n",
- "0.455 37.40429 -122.24421 NaN 122.0 17.1 0.15 2.0 0.00\r\n",
- "0.459 37.40402 -122.24423 NaN 120.0 16.7 0.15 2.0 0.00\r\n",
- "0.462 37.40375 -122.24426 NaN 118.0 17.8 0.23 3.0 0.00\r\n",
- "0.466 37.40348 -122.24428 NaN 117.0 19.4 0.31 4.0 0.00\r\n",
- "0.467 37.40339 -122.24429 20.0 117.0 20.0 0.31 3.0 0.00\r\n",
- "0.471 37.40313 -122.24440 NaN 116.0 16.8 0.31 3.0 0.00\r\n",
- "0.474 37.40288 -122.24451 NaN 115.0 15.4 0.22 1.0 0.00\r\n",
- "0.478 37.40262 -122.24462 NaN 111.0 18.7 0.16 1.0 0.00\r\n",
- "0.479 37.40249 -122.24468 20.0 110.0 20.0 0.16 1.0 0.00\r\n",
- "0.483 37.40227 -122.24487 NaN 108.0 18.8 0.09 2.0 0.00\r\n",
- "0.486 37.40205 -122.24507 NaN 108.0 16.9 0.08 1.0 0.00\r\n",
- "0.490 37.40182 -122.24526 NaN 108.0 16.4 0.09 1.0 0.00\r\n",
- "0.493 37.40160 -122.24545 NaN 107.0 18.4 0.10 1.0 0.00\r\n",
- "0.497 37.40138 -122.24564 NaN 106.0 21.7 0.15 1.0 0.00\r\n",
- "0.497 37.40136 -122.24566 22.0 106.0 22.0 0.15 1.0 0.00\r\n",
- "0.501 37.40124 -122.24596 NaN 106.0 17.3 0.16 1.0 0.00\r\n",
- "0.504 37.40111 -122.24626 NaN 106.0 13.4 0.18 1.0 0.00\r\n",
- "0.508 37.40099 -122.24656 NaN 106.0 10.5 0.15 1.0 0.00\r\n",
- "0.511 37.40086 -122.24687 NaN 106.0 8.5 0.20 1.0 0.00\r\n",
- "0.515 37.40074 -122.24717 NaN 106.0 7.4 0.21 1.0 0.00\r\n",
- "0.518 37.40061 -122.24747 NaN 106.0 7.3 0.28 2.0 0.00\r\n",
- "0.522 37.40049 -122.24777 NaN 106.0 8.1 0.37 3.0 0.00\r\n",
- "0.525 37.40036 -122.24807 NaN 106.0 9.9 0.49 4.0 0.00\r\n",
- "0.529 37.40024 -122.24837 NaN 106.0 12.5 0.54 4.0 0.00\r\n",
- "0.532 37.40012 -122.24867 NaN 108.0 14.1 0.59 5.0 0.00\r\n",
- "0.536 37.39999 -122.24898 NaN 110.0 16.8 0.35 10.0 0.00\r\n",
- "0.539 37.39987 -122.24927 16.0 116.0 16.0 0.36 11.0 0.00\r\n",
- "0.543 37.39983 -122.24961 NaN 123.0 10.5 0.39 10.0 0.39\r\n",
- "0.546 37.39979 -122.24994 NaN 134.0 4.5 0.43 10.0 0.43\r\n",
- "0.550 37.39976 -122.25028 NaN 146.0 1.3 0.47 9.0 0.47\r\n",
- "0.553 37.39972 -122.25061 NaN 156.0 3.6 0.49 8.0 0.49\r\n",
- "0.557 37.39968 -122.25095 NaN 164.0 12.3 0.51 7.0 0.00\r\n",
- "0.558 37.39966 -122.25113 18.0 167.0 18.0 0.51 7.0 0.00\r\n",
- "0.562 37.39964 -122.25147 NaN 166.0 19.0 0.49 6.0 0.00\r\n",
- "0.565 37.39962 -122.25181 NaN 163.0 23.1 0.46 5.0 0.00\r\n",
- "0.569 37.39960 -122.25215 NaN 166.0 22.0 0.43 5.0 0.00\r\n",
- "0.572 37.39958 -122.25249 NaN 171.0 20.0 0.47 7.0 0.00\r\n",
- "0.576 37.39956 -122.25282 NaN 178.0 16.8 0.52 7.0 0.00\r\n",
- "0.579 37.39955 -122.25316 NaN 186.0 13.7 0.55 7.0 0.00\r\n",
- "0.583 37.39953 -122.25350 NaN 194.0 11.5 0.59 7.0 0.00\r\n",
- "0.586 37.39951 -122.25384 NaN 203.0 9.4 0.65 8.0 0.65\r\n",
- "0.590 37.39949 -122.25418 NaN 210.0 10.2 0.71 9.0 0.71\r\n",
- "0.593 37.39947 -122.25452 NaN 219.0 10.1 0.73 11.0 0.73\r\n",
- "0.597 37.39945 -122.25486 NaN 227.0 12.0 0.69 10.0 0.00\r\n",
- "0.600 37.39943 -122.25520 NaN 233.0 16.8 0.60 9.0 0.00\r\n",
- "0.604 37.39941 -122.25553 NaN 244.0 17.4 0.54 6.0 0.00\r\n",
- "0.607 37.39939 -122.25587 NaN 256.0 18.4 0.42 6.0 0.00\r\n",
- "0.611 37.39937 -122.25621 NaN 265.0 23.4 0.31 8.0 0.00\r\n",
- "0.611 37.39937 -122.25627 22.0 267.0 22.0 0.31 8.0 0.00\r\n",
- "0.615 37.39935 -122.25661 NaN 274.0 14.4 0.29 9.0 0.00\r\n",
- "0.618 37.39933 -122.25695 NaN 281.0 8.2 0.31 9.0 0.31\r\n",
- "0.622 37.39932 -122.25729 NaN 284.0 7.5 0.32 10.0 0.32\r\n",
- "0.625 37.39930 -122.25763 NaN 284.0 11.2 0.30 11.0 0.30\r\n",
- "0.629 37.39928 -122.25795 15.0 285.0 15.0 0.27 11.0 0.00\r\n",
- "0.632 37.39926 -122.25829 NaN 283.0 12.8 0.26 10.0 0.00\r\n",
- "0.636 37.39923 -122.25863 NaN 274.0 18.3 0.24 10.0 0.00\r\n",
- "0.639 37.39921 -122.25896 NaN 262.0 27.7 0.24 12.0 0.00\r\n",
- "0.643 37.39918 -122.25930 NaN 248.0 39.6 0.25 10.0 0.00\r\n",
- "0.646 37.39916 -122.25964 NaN 235.0 51.4 0.26 8.0 0.00\r\n",
- "0.650 37.39914 -122.25998 NaN 222.0 63.9 0.29 6.0 0.00\r\n",
- "0.653 37.39911 -122.26032 NaN 213.0 73.1 0.34 5.0 0.00\r\n",
- "0.657 37.39909 -122.26066 NaN 207.0 80.0 0.38 7.0 0.00\r\n",
- "0.660 37.39907 -122.26099 NaN 203.0 85.7 0.40 17.0 0.00\r\n",
- "0.664 37.39904 -122.26133 NaN 205.0 86.1 0.41 21.0 0.00\r\n",
- "0.667 37.39902 -122.26167 NaN 224.0 70.2 0.46 22.0 0.00\r\n",
- "0.671 37.39899 -122.26201 NaN 247.0 51.2 0.54 21.0 0.00\r\n",
- "0.674 37.39897 -122.26235 NaN 262.0 40.8 0.66 21.0 0.00\r\n",
- "0.678 37.39895 -122.26269 NaN 274.0 34.2 0.70 20.0 0.00\r\n",
- "0.681 37.39892 -122.26302 NaN 285.0 29.2 0.73 17.0 0.00\r\n",
- "0.685 37.39890 -122.26336 NaN 296.0 25.1 0.76 16.0 0.00\r\n",
- "0.688 37.39888 -122.26370 NaN 312.0 16.8 0.80 16.0 0.80\r\n",
- "0.692 37.39885 -122.26404 NaN 322.0 15.2 0.82 19.0 0.82\r\n",
- "0.695 37.39883 -122.26438 NaN 328.0 18.4 0.79 21.0 0.79\r\n",
- "0.696 37.39882 -122.26449 18.0 331.0 18.0 0.79 21.0 0.79\r\n",
- "0.700 37.39880 -122.26483 NaN 339.0 10.2 0.68 19.0 0.68\r\n",
- "0.703 37.39877 -122.26517 NaN 346.0 5.4 0.64 16.0 0.64\r\n",
- "0.707 37.39875 -122.26551 NaN 350.0 5.4 0.58 12.0 0.58\r\n",
- "0.710 37.39873 -122.26584 NaN 352.0 9.2 0.53 11.0 0.53\r\n",
- "0.713 37.39871 -122.26610 15.0 352.0 15.0 0.52 12.0 0.00\r\n",
- "0.716 37.39869 -122.26644 NaN 352.0 10.6 0.55 13.0 0.55\r\n",
- "0.720 37.39866 -122.26678 NaN 351.0 8.7 0.59 15.0 0.59\r\n",
- "0.723 37.39864 -122.26712 NaN 348.0 10.4 0.60 15.0 0.60\r\n",
- "0.727 37.39862 -122.26745 NaN 343.0 15.6 0.60 14.0 0.60\r\n",
- "0.728 37.39861 -122.26757 18.0 341.0 18.0 0.60 14.0 0.00\r\n",
- "0.732 37.39838 -122.26774 NaN 323.0 35.5 0.57 10.0 0.00\r\n",
- "0.735 37.39814 -122.26791 NaN 309.0 49.9 0.48 8.0 0.00\r\n",
- "0.739 37.39791 -122.26809 NaN 300.0 60.0 0.48 8.0 0.00\r\n",
- "0.742 37.39768 -122.26826 NaN 299.0 62.8 0.47 8.0 0.00\r\n",
- "0.746 37.39745 -122.26843 NaN 305.0 59.4 0.53 7.0 0.00\r\n",
- "0.749 37.39721 -122.26860 NaN 317.0 50.8 0.68 13.0 0.00\r\n",
- "0.753 37.39698 -122.26878 NaN 327.0 45.0 0.68 13.0 0.00\r\n",
- "0.756 37.39675 -122.26895 NaN 339.0 37.9 0.80 18.0 0.00\r\n",
- "0.760 37.39652 -122.26912 NaN 351.0 31.5 0.79 11.0 0.00\r\n",
- "0.763 37.39628 -122.26929 NaN 361.0 28.2 0.65 6.0 0.00\r\n",
- "0.767 37.39605 -122.26946 NaN 372.0 24.4 0.60 8.0 0.00\r\n",
- "0.770 37.39582 -122.26964 NaN 383.0 21.5 0.44 5.0 0.00\r\n",
- "0.774 37.39559 -122.26981 NaN 395.0 18.2 0.40 9.0 0.00\r\n",
- "0.777 37.39535 -122.26998 NaN 408.0 15.1 0.44 9.0 0.00\r\n",
- "0.781 37.39512 -122.27015 NaN 421.0 12.4 0.41 11.0 0.41\r\n",
- "0.784 37.39489 -122.27033 NaN 432.0 12.8 0.45 8.0 0.00\r\n",
- "0.788 37.39466 -122.27050 NaN 441.0 15.7 0.45 4.0 0.00\r\n",
- "0.790 37.39448 -122.27063 21.0 444.0 21.0 0.45 4.0 0.00\r\n",
- "0.794 37.39425 -122.27082 NaN 446.0 16.3 0.48 3.0 0.00\r\n",
- "0.797 37.39403 -122.27100 NaN 445.0 15.9 0.52 5.0 0.00\r\n",
- "0.801 37.39380 -122.27119 NaN 446.0 14.7 0.56 11.0 0.00\r\n",
- "0.804 37.39358 -122.27137 NaN 447.0 14.7 0.55 11.0 0.00\r\n",
- "0.808 37.39335 -122.27156 NaN 448.0 16.1 0.68 22.0 0.68\r\n",
- "0.811 37.39313 -122.27175 NaN 448.0 19.7 0.79 27.0 0.79\r\n",
- "0.812 37.39306 -122.27180 21.0 448.0 21.0 0.79 27.0 0.79\r\n",
- "0.816 37.39299 -122.27213 NaN 450.0 19.4 0.77 26.0 0.77\r\n",
- "0.819 37.39292 -122.27245 NaN 451.0 20.5 0.79 25.0 0.79\r\n",
- "0.823 37.39285 -122.27278 NaN 458.0 17.3 0.81 30.0 0.81\r\n",
- "0.826 37.39277 -122.27311 NaN 466.0 15.0 0.83 33.0 0.83\r\n",
- "0.830 37.39270 -122.27344 NaN 477.0 11.4 0.85 35.0 0.85\r\n",
- "0.833 37.39263 -122.27376 NaN 489.0 8.3 0.86 33.0 0.86\r\n",
- "0.837 37.39256 -122.27409 NaN 498.0 10.3 0.85 29.0 0.85\r\n",
- "0.840 37.39249 -122.27442 NaN 504.0 17.2 0.81 25.0 0.81\r\n",
- "0.841 37.39248 -122.27446 17.0 505.0 17.0 0.81 25.0 0.81\r\n",
- "0.844 37.39241 -122.27479 NaN 499.0 23.8 0.76 21.0 0.00\r\n",
- "0.848 37.39234 -122.27512 NaN 500.0 26.1 0.73 19.0 0.00\r\n",
- "0.851 37.39227 -122.27544 NaN 514.0 17.5 0.73 18.0 0.73\r\n",
- "0.855 37.39220 -122.27577 NaN 529.0 10.4 0.75 19.0 0.75\r\n",
- "0.858 37.39213 -122.27610 NaN 541.0 8.9 0.77 20.0 0.77\r\n",
- "0.862 37.39206 -122.27643 NaN 555.0 7.8 0.79 22.0 0.79\r\n",
- "0.865 37.39199 -122.27676 NaN 566.0 12.4 0.81 23.0 0.81\r\n",
- "0.869 37.39192 -122.27708 NaN 576.0 20.1 0.82 21.0 0.82\r\n",
- "0.870 37.39190 -122.27717 21.0 578.0 21.0 0.84 23.0 0.84\r\n",
- "0.873 37.39183 -122.27750 NaN 586.0 14.8 0.84 24.0 0.84\r\n",
- "0.877 37.39177 -122.27783 NaN 594.0 13.0 0.82 25.0 0.82\r\n",
- "0.880 37.39170 -122.27816 NaN 603.0 14.6 0.81 26.0 0.81\r\n",
- "0.883 37.39163 -122.27849 NaN 613.0 20.0 0.67 20.0 0.67\r\n",
- "0.885 37.39161 -122.27860 23.0 615.0 23.0 0.67 20.0 0.00\r\n",
- "0.888 37.39162 -122.27894 NaN 619.0 17.4 0.67 18.0 0.67\r\n",
- "0.892 37.39163 -122.27928 NaN 620.0 16.0 0.64 15.0 0.64\r\n",
- "0.895 37.39165 -122.27962 NaN 626.0 10.6 0.57 14.0 0.57\r\n",
- "0.899 37.39166 -122.27996 NaN 639.0 -0.6 0.48 12.0 0.48\r\n",
- "0.902 37.39167 -122.28030 NaN 643.0 -1.7 0.54 13.0 0.54\r\n",
- "0.906 37.39168 -122.28064 NaN 643.0 2.3 0.61 15.0 0.61\r\n",
- "0.909 37.39170 -122.28097 NaN 643.0 7.2 0.68 16.0 0.68\r\n",
- "0.913 37.39171 -122.28131 NaN 642.0 14.5 0.72 16.0 0.72\r\n",
- "0.913 37.39171 -122.28139 16.0 642.0 16.0 0.72 16.0 0.72\r\n",
- "0.917 37.39156 -122.28167 NaN 633.0 17.6 0.79 16.0 0.79\r\n",
- "0.920 37.39142 -122.28196 NaN 621.0 22.5 0.79 16.0 0.00\r\n",
- "0.924 37.39127 -122.28224 NaN 608.0 29.1 0.75 17.0 0.00\r\n",
- "0.927 37.39112 -122.28253 NaN 596.0 35.3 0.74 17.0 0.00\r\n",
- "0.931 37.39097 -122.28281 NaN 582.0 44.2 0.76 21.0 0.00\r\n",
- "0.934 37.39083 -122.28310 NaN 564.0 57.7 0.73 21.0 0.00\r\n",
- "0.938 37.39068 -122.28338 NaN 556.0 61.9 0.68 18.0 0.00\r\n",
- "0.941 37.39053 -122.28367 NaN 551.0 63.7 0.64 16.0 0.00\r\n",
- "0.945 37.39038 -122.28395 NaN 542.0 70.2 0.65 14.0 0.00\r\n",
- "0.948 37.39024 -122.28423 NaN 531.0 79.3 0.63 14.0 0.00\r\n",
- "0.952 37.39009 -122.28452 NaN 523.0 86.0 0.63 14.0 0.00\r\n",
- "0.955 37.38994 -122.28480 NaN 522.0 86.4 0.62 14.0 0.00\r\n",
- "0.959 37.38980 -122.28509 NaN 523.0 85.4 0.68 16.0 0.00\r\n",
- "0.962 37.38965 -122.28537 NaN 529.0 80.1 0.68 16.0 0.00\r\n",
- "0.966 37.38950 -122.28566 NaN 537.0 73.4 0.73 22.0 0.00\r\n",
- "0.969 37.38935 -122.28594 NaN 541.0 71.4 0.71 24.0 0.00\r\n",
- "0.973 37.38921 -122.28623 NaN 545.0 70.0 0.68 21.0 0.00\r\n",
- "0.976 37.38906 -122.28651 NaN 552.0 66.2 0.69 26.0 0.00\r\n",
- "0.980 37.38891 -122.28680 NaN 559.0 63.2 0.64 22.0 0.00\r\n",
- "0.983 37.38876 -122.28708 NaN 570.0 56.7 0.65 27.0 0.00\r\n",
- "0.987 37.38862 -122.28736 NaN 583.0 48.7 0.66 25.0 0.00\r\n",
- "0.990 37.38847 -122.28765 NaN 597.0 40.6 0.63 21.0 0.00\r\n",
- "0.994 37.38832 -122.28793 NaN 614.0 30.1 0.64 18.0 0.00\r\n",
- "0.997 37.38817 -122.28822 NaN 627.0 24.4 0.58 12.0 0.00\r\n",
- "1.000 37.38806 -122.28844 23.0 634.0 23.0 0.56 9.0 0.00\r\n"
+ "WARNING [geodata/powerline]: cannot run function CONTACT and 'wind_speed' is missing or invalid\n",
+ "WARNING [geodata/powerline]: cannot run function LINEGALLOP and 'width' is missing or invalid\n",
+ " latitude longitude pole_height elevation linesag cover height\n",
+ "id \n",
+ "0.000 37.41505 -122.20565 18.0 88.0 18.0 0.68 13.0\n",
+ "0.003 37.41501 -122.20599 NaN 89.0 14.5 0.71 14.0\n",
+ "0.007 37.41497 -122.20632 NaN 89.0 13.2 0.72 16.0\n",
+ "0.010 37.41493 -122.20666 NaN 90.0 12.0 0.59 16.0\n",
+ "0.014 37.41488 -122.20699 NaN 91.0 11.8 0.37 14.0\n",
+ "0.017 37.41484 -122.20733 NaN 92.0 12.8 0.20 9.0\n",
+ "0.021 37.41480 -122.20766 NaN 93.0 14.8 0.07 6.0\n",
+ "0.024 37.41476 -122.20800 NaN 95.0 17.0 0.07 2.0\n",
+ "0.028 37.41472 -122.20834 NaN 98.0 19.3 0.10 0.0\n",
+ "0.030 37.41470 -122.20849 20.0 100.0 20.0 0.10 0.0\n",
+ "0.033 37.41466 -122.20883 NaN 103.0 15.9 0.10 0.0\n",
+ "0.037 37.41461 -122.20916 NaN 99.0 20.1 0.09 1.0\n",
+ "0.040 37.41457 -122.20950 NaN 98.0 22.6 0.10 1.0\n",
+ "0.044 37.41453 -122.20983 NaN 103.0 20.4 0.14 0.0\n",
+ "0.047 37.41449 -122.21017 NaN 110.0 17.6 0.12 0.0\n",
+ "0.050 37.41445 -122.21044 21.0 111.0 21.0 0.12 0.0\n",
+ "0.053 37.41441 -122.21078 NaN 111.0 17.2 0.14 1.0\n",
+ "0.057 37.41437 -122.21111 NaN 113.0 12.8 0.20 1.0\n",
+ "0.060 37.41433 -122.21145 NaN 115.0 9.7 0.29 1.0\n",
+ "0.064 37.41428 -122.21178 NaN 114.0 10.9 0.33 1.0\n",
+ "0.067 37.41424 -122.21212 NaN 111.0 15.5 0.44 2.0\n",
+ "0.069 37.41422 -122.21231 18.0 110.0 18.0 0.44 2.0\n",
+ "0.073 37.41418 -122.21265 NaN 108.0 15.1 0.70 8.0\n",
+ "0.076 37.41414 -122.21298 NaN 107.0 12.6 0.70 16.0\n",
+ "0.080 37.41410 -122.21332 NaN 105.0 12.3 0.68 14.0\n",
+ "0.083 37.41406 -122.21365 NaN 104.0 12.4 0.72 14.0\n",
+ "0.087 37.41401 -122.21399 NaN 101.0 15.7 0.72 14.0\n",
+ "0.090 37.41398 -122.21427 20.0 98.0 20.0 0.65 16.0\n",
+ "0.093 37.41394 -122.21461 NaN 96.0 17.1 0.49 18.0\n",
+ "0.097 37.41390 -122.21494 NaN 94.0 15.5 0.29 16.0\n",
+ "0.100 37.41386 -122.21528 NaN 92.0 15.1 0.15 10.0\n",
+ "0.104 37.41382 -122.21561 NaN 91.0 14.9 0.09 4.0\n",
+ "0.107 37.41378 -122.21595 NaN 89.0 16.8 0.08 2.0\n",
+ "0.111 37.41373 -122.21628 NaN 90.0 17.0 0.06 1.0\n",
+ "0.114 37.41370 -122.21657 18.0 91.0 18.0 0.05 1.0\n",
+ "0.117 37.41366 -122.21691 NaN 90.0 13.9 0.14 1.0\n",
+ "0.121 37.41361 -122.21724 NaN 87.0 13.3 0.36 2.0\n",
+ "0.124 37.41357 -122.21758 NaN 83.0 15.1 0.32 2.0\n",
+ "0.128 37.41353 -122.21791 NaN 80.0 17.3 0.66 6.0\n",
+ "0.131 37.41348 -122.21825 NaN 77.0 21.0 0.74 9.0\n",
+ "0.131 37.41348 -122.21827 21.0 77.0 21.0 0.74 9.0\n",
+ "0.135 37.41344 -122.21861 NaN 76.0 20.2 0.73 11.0\n",
+ "0.138 37.41340 -122.21894 NaN 79.0 16.7 0.67 12.0\n",
+ "0.142 37.41336 -122.21928 NaN 82.0 14.4 0.59 14.0\n",
+ "0.145 37.41332 -122.21961 NaN 85.0 13.3 0.56 17.0\n",
+ "0.149 37.41327 -122.21995 NaN 89.0 12.5 0.61 19.0\n",
+ "0.152 37.41323 -122.22028 NaN 91.0 14.8 0.68 18.0\n",
+ "0.154 37.41321 -122.22048 18.0 91.0 18.0 0.73 18.0\n",
+ "0.158 37.41317 -122.22082 NaN 92.0 11.6 0.73 18.0\n",
+ "0.161 37.41313 -122.22115 NaN 89.0 10.6 0.72 18.0\n",
+ "0.165 37.41308 -122.22149 NaN 84.0 12.9 0.72 17.0\n",
+ "0.168 37.41304 -122.22182 NaN 82.0 13.6 0.70 15.0\n",
+ "0.172 37.41300 -122.22216 NaN 81.0 14.6 0.63 14.0\n",
+ "0.174 37.41298 -122.22232 16.0 80.0 16.0 0.50 11.0\n",
+ "0.177 37.41294 -122.22266 NaN 78.0 15.1 0.37 7.0\n",
+ "0.181 37.41290 -122.22299 NaN 77.0 14.5 0.25 3.0\n",
+ "0.184 37.41286 -122.22333 NaN 73.0 18.0 0.16 1.0\n",
+ "0.188 37.41282 -122.22366 NaN 74.0 17.8 0.11 1.0\n",
+ "0.191 37.41278 -122.22400 NaN 78.0 15.9 0.08 1.0\n",
+ "0.195 37.41274 -122.22433 NaN 79.0 18.1 0.06 1.0\n",
+ "0.197 37.41271 -122.22456 21.0 79.0 21.0 0.04 0.0\n",
+ "0.200 37.41267 -122.22490 NaN 79.0 18.6 0.03 0.0\n",
+ "0.204 37.41263 -122.22523 NaN 78.0 18.4 0.01 0.0\n",
+ "0.207 37.41258 -122.22557 NaN 74.0 22.2 0.03 1.0\n",
+ "0.211 37.41254 -122.22590 NaN 74.0 23.1 0.06 1.0\n",
+ "0.214 37.41250 -122.22624 NaN 79.0 20.2 0.19 2.0\n",
+ "0.218 37.41246 -122.22657 NaN 86.0 16.3 0.27 4.0\n",
+ "0.221 37.41242 -122.22691 NaN 93.0 13.5 0.30 7.0\n",
+ "0.225 37.41237 -122.22724 NaN 95.0 16.9 0.30 8.0\n",
+ "0.226 37.41236 -122.22736 18.0 96.0 18.0 0.30 8.0\n",
+ "0.230 37.41232 -122.22770 NaN 95.0 13.6 0.38 6.0\n",
+ "0.233 37.41228 -122.22803 NaN 92.0 12.5 0.30 6.0\n",
+ "0.237 37.41224 -122.22837 NaN 87.0 14.7 0.19 5.0\n",
+ "0.240 37.41220 -122.22870 NaN 82.0 18.2 0.10 3.0\n",
+ "0.244 37.41215 -122.22904 NaN 83.0 16.9 0.04 1.0\n",
+ "0.247 37.41211 -122.22937 NaN 82.0 18.9 0.04 1.0\n",
+ "0.247 37.41211 -122.22940 19.0 82.0 19.0 0.04 1.0\n",
+ "0.251 37.41207 -122.22974 NaN 82.0 17.6 0.05 1.0\n",
+ "0.254 37.41203 -122.23007 NaN 83.0 16.4 0.05 1.0\n",
+ "0.258 37.41199 -122.23041 NaN 84.0 16.4 0.08 1.0\n",
+ "0.261 37.41194 -122.23074 NaN 85.0 17.6 0.12 1.0\n",
+ "0.265 37.41190 -122.23108 NaN 89.0 17.0 0.17 1.0\n",
+ "0.268 37.41186 -122.23141 NaN 99.0 11.4 0.24 2.0\n",
+ "0.272 37.41182 -122.23175 NaN 103.0 13.2 0.31 3.0\n",
+ "0.273 37.41181 -122.23184 15.0 103.0 15.0 0.38 4.0\n",
+ "0.276 37.41166 -122.23212 NaN 102.0 12.9 0.23 2.0\n",
+ "0.280 37.41151 -122.23241 NaN 96.0 16.6 0.30 3.0\n",
+ "0.283 37.41137 -122.23269 NaN 94.0 17.4 0.10 0.0\n",
+ "0.287 37.41122 -122.23298 NaN 95.0 16.0 0.13 1.0\n",
+ "0.290 37.41107 -122.23326 NaN 97.0 14.5 0.05 0.0\n",
+ "0.294 37.41092 -122.23354 NaN 96.0 16.9 0.06 1.0\n",
+ "0.297 37.41077 -122.23383 NaN 92.0 23.3 0.05 1.0\n",
+ "0.301 37.41063 -122.23411 NaN 85.0 33.4 0.06 1.0\n",
+ "0.304 37.41048 -122.23440 NaN 81.0 41.7 0.21 4.0\n",
+ "0.308 37.41033 -122.23468 NaN 92.0 35.7 0.18 4.0\n",
+ "0.311 37.41018 -122.23496 NaN 109.0 24.7 0.30 7.0\n",
+ "0.315 37.41003 -122.23525 NaN 126.0 14.8 0.17 6.0\n",
+ "0.317 37.40995 -122.23541 16.0 129.0 16.0 0.17 6.0\n",
+ "0.320 37.40984 -122.23572 NaN 127.0 11.5 0.11 5.0\n",
+ "0.324 37.40973 -122.23603 NaN 119.0 14.1 0.07 2.0\n",
+ "0.327 37.40962 -122.23634 NaN 110.0 18.9 0.08 1.0\n",
+ "0.331 37.40950 -122.23665 NaN 105.0 20.8 0.17 1.0\n",
+ "0.334 37.40939 -122.23696 NaN 104.0 19.9 0.29 4.0\n",
+ "0.338 37.40928 -122.23727 NaN 103.0 20.2 0.39 8.0\n",
+ "0.341 37.40917 -122.23757 NaN 107.0 16.6 0.60 8.0\n",
+ "0.343 37.40912 -122.23771 15.0 109.0 15.0 0.58 9.0\n",
+ "0.346 37.40901 -122.23802 NaN 107.0 12.3 0.52 9.0\n",
+ "0.350 37.40889 -122.23833 NaN 98.0 17.5 0.56 9.0\n",
+ "0.353 37.40878 -122.23864 NaN 89.0 23.7 0.63 12.0\n",
+ "0.357 37.40867 -122.23894 NaN 87.0 24.0 0.68 15.0\n",
+ "0.360 37.40856 -122.23925 NaN 86.0 24.1 0.45 13.0\n",
+ "0.364 37.40844 -122.23956 NaN 85.0 25.3 0.27 10.0\n",
+ "0.367 37.40833 -122.23987 NaN 87.0 24.4 0.16 1.0\n",
+ "0.371 37.40822 -122.24018 NaN 88.0 25.5 0.20 1.0\n",
+ "0.374 37.40810 -122.24049 NaN 97.0 19.6 0.16 1.0\n",
+ "0.378 37.40799 -122.24079 NaN 105.0 15.5 0.10 1.0\n",
+ "0.381 37.40789 -122.24107 17.0 108.0 17.0 0.07 1.0\n",
+ "0.384 37.40778 -122.24138 NaN 109.0 13.3 0.05 1.0\n",
+ "0.388 37.40767 -122.24169 NaN 109.0 11.8 0.07 0.0\n",
+ "0.391 37.40755 -122.24200 NaN 111.0 9.6 0.09 0.0\n",
+ "0.395 37.40744 -122.24231 NaN 111.0 10.6 0.14 1.0\n",
+ "0.398 37.40733 -122.24261 NaN 113.0 10.8 0.32 3.0\n",
+ "0.402 37.40722 -122.24292 NaN 115.0 12.3 0.37 4.0\n",
+ "0.404 37.40715 -122.24311 15.0 115.0 15.0 0.37 4.0\n",
+ "0.407 37.40704 -122.24342 NaN 115.0 13.4 0.24 1.0\n",
+ "0.411 37.40692 -122.24373 NaN 117.0 11.1 0.16 1.0\n",
+ "0.414 37.40681 -122.24403 NaN 119.0 10.1 0.14 1.0\n",
+ "0.418 37.40669 -122.24434 NaN 120.0 11.4 0.09 1.0\n",
+ "0.421 37.40658 -122.24465 NaN 123.0 11.9 0.14 1.0\n",
+ "0.425 37.40647 -122.24496 NaN 124.0 15.7 0.15 0.0\n",
+ "0.426 37.40644 -122.24503 17.0 124.0 17.0 0.15 0.0\n",
+ "0.429 37.40621 -122.24486 NaN 127.0 12.7 0.15 0.0\n",
+ "0.433 37.40597 -122.24469 NaN 128.0 12.1 0.09 1.0\n",
+ "0.436 37.40574 -122.24452 NaN 127.0 15.2 0.10 1.0\n",
+ "0.438 37.40562 -122.24443 17.0 127.0 17.0 0.15 1.0\n",
+ "0.441 37.40535 -122.24437 NaN 126.0 15.3 0.12 1.0\n",
+ "0.445 37.40509 -122.24430 NaN 124.0 16.3 0.09 2.0\n",
+ "0.448 37.40482 -122.24424 NaN 123.0 17.9 0.09 2.0\n",
+ "0.452 37.40456 -122.24418 20.0 123.0 20.0 0.10 2.0\n",
+ "0.455 37.40429 -122.24421 NaN 122.0 17.1 0.13 2.0\n",
+ "0.459 37.40402 -122.24423 NaN 120.0 16.7 0.13 2.0\n",
+ "0.462 37.40375 -122.24426 NaN 118.0 17.8 0.22 3.0\n",
+ "0.466 37.40348 -122.24428 NaN 117.0 19.5 0.29 3.0\n",
+ "0.467 37.40339 -122.24429 20.0 117.0 20.0 0.30 3.0\n",
+ "0.471 37.40313 -122.24440 NaN 116.0 16.8 0.30 3.0\n",
+ "0.474 37.40288 -122.24451 NaN 115.0 15.4 0.21 2.0\n",
+ "0.478 37.40262 -122.24462 NaN 111.0 18.7 0.18 1.0\n",
+ "0.479 37.40249 -122.24468 20.0 110.0 20.0 0.18 1.0\n",
+ "0.483 37.40227 -122.24487 NaN 108.0 18.8 0.12 1.0\n",
+ "0.486 37.40205 -122.24507 NaN 108.0 16.9 0.12 1.0\n",
+ "0.490 37.40182 -122.24526 NaN 108.0 16.4 0.10 1.0\n",
+ "0.493 37.40160 -122.24545 NaN 107.0 18.4 0.15 1.0\n",
+ "0.497 37.40138 -122.24564 NaN 106.0 21.7 0.12 1.0\n",
+ "0.497 37.40136 -122.24566 22.0 106.0 22.0 0.12 1.0\n",
+ "0.501 37.40124 -122.24596 NaN 106.0 17.3 0.13 1.0\n",
+ "0.504 37.40111 -122.24626 NaN 106.0 13.4 0.12 1.0\n",
+ "0.508 37.40099 -122.24656 NaN 106.0 10.5 0.15 1.0\n",
+ "0.511 37.40086 -122.24687 NaN 106.0 8.5 0.16 1.0\n",
+ "0.515 37.40074 -122.24717 NaN 106.0 7.4 0.18 2.0\n",
+ "0.518 37.40061 -122.24747 NaN 106.0 7.3 0.31 3.0\n",
+ "0.522 37.40049 -122.24777 NaN 106.0 8.1 0.41 7.0\n",
+ "0.525 37.40036 -122.24807 NaN 106.0 9.9 0.42 9.0\n",
+ "0.529 37.40024 -122.24837 NaN 106.0 12.5 0.51 9.0\n",
+ "0.532 37.40012 -122.24867 NaN 108.0 14.1 0.39 8.0\n",
+ "0.536 37.39999 -122.24898 NaN 110.0 16.8 0.36 10.0\n",
+ "0.539 37.39987 -122.24927 16.0 116.0 16.0 0.39 10.0\n",
+ "0.543 37.39983 -122.24961 NaN 123.0 9.6 0.44 10.0\n",
+ "0.546 37.39979 -122.24994 NaN 134.0 2.7 0.48 10.0\n",
+ "0.550 37.39976 -122.25028 NaN 146.0 -1.4 0.51 8.0\n",
+ "0.553 37.39972 -122.25061 NaN 156.0 -0.0 0.51 7.0\n",
+ "0.557 37.39968 -122.25095 NaN 164.0 7.7 0.51 6.0\n",
+ "0.558 37.39966 -122.25113 18.0 167.0 18.0 0.51 6.0\n",
+ "0.562 37.39964 -122.25147 NaN 166.0 18.7 0.51 6.0\n",
+ "0.565 37.39962 -122.25181 NaN 163.0 22.4 0.50 7.0\n",
+ "0.569 37.39960 -122.25215 NaN 166.0 21.0 0.50 7.0\n",
+ "0.572 37.39958 -122.25249 NaN 171.0 18.6 0.47 6.0\n",
+ "0.576 37.39956 -122.25282 NaN 178.0 15.1 0.43 6.0\n",
+ "0.579 37.39955 -122.25316 NaN 186.0 11.6 0.43 7.0\n",
+ "0.583 37.39953 -122.25350 NaN 194.0 9.1 0.47 8.0\n",
+ "0.586 37.39951 -122.25384 NaN 203.0 6.6 0.55 9.0\n",
+ "0.590 37.39949 -122.25418 NaN 210.0 7.1 0.59 10.0\n",
+ "0.593 37.39947 -122.25452 NaN 219.0 6.6 0.55 8.0\n",
+ "0.597 37.39945 -122.25486 NaN 227.0 8.1 0.50 6.0\n",
+ "0.600 37.39943 -122.25520 NaN 233.0 12.7 0.48 5.0\n",
+ "0.604 37.39941 -122.25553 NaN 244.0 12.9 0.47 4.0\n",
+ "0.607 37.39939 -122.25587 NaN 256.0 13.5 0.38 5.0\n",
+ "0.611 37.39937 -122.25621 NaN 265.0 18.1 0.32 7.0\n",
+ "0.611 37.39937 -122.25627 22.0 267.0 22.0 0.32 7.0\n",
+ "0.615 37.39935 -122.25661 NaN 274.0 14.4 0.33 9.0\n",
+ "0.618 37.39933 -122.25695 NaN 281.0 8.2 0.34 10.0\n",
+ "0.622 37.39932 -122.25729 NaN 284.0 7.4 0.33 11.0\n",
+ "0.625 37.39930 -122.25763 NaN 284.0 11.2 0.32 11.0\n",
+ "0.629 37.39928 -122.25795 15.0 285.0 15.0 0.33 10.0\n",
+ "0.632 37.39926 -122.25829 NaN 283.0 12.8 0.33 9.0\n",
+ "0.636 37.39923 -122.25863 NaN 274.0 18.3 0.30 9.0\n",
+ "0.639 37.39921 -122.25896 NaN 262.0 27.6 0.30 6.0\n",
+ "0.643 37.39918 -122.25930 NaN 248.0 39.6 0.32 5.0\n",
+ "0.646 37.39916 -122.25964 NaN 235.0 51.3 0.36 4.0\n",
+ "0.650 37.39914 -122.25998 NaN 222.0 63.7 0.42 4.0\n",
+ "0.653 37.39911 -122.26032 NaN 213.0 72.9 0.47 6.0\n",
+ "0.657 37.39909 -122.26066 NaN 207.0 79.9 0.49 9.0\n",
+ "0.660 37.39907 -122.26099 NaN 203.0 85.5 0.45 13.0\n",
+ "0.664 37.39904 -122.26133 NaN 205.0 85.9 0.54 14.0\n",
+ "0.667 37.39902 -122.26167 NaN 224.0 70.0 0.62 16.0\n",
+ "0.671 37.39899 -122.26201 NaN 247.0 50.9 0.62 20.0\n",
+ "0.674 37.39897 -122.26235 NaN 262.0 40.6 0.58 16.0\n",
+ "0.678 37.39895 -122.26269 NaN 274.0 34.0 0.65 13.0\n",
+ "0.681 37.39892 -122.26302 NaN 285.0 28.9 0.74 13.0\n",
+ "0.685 37.39890 -122.26336 NaN 296.0 24.8 0.82 16.0\n",
+ "0.688 37.39888 -122.26370 NaN 312.0 16.4 0.82 20.0\n",
+ "0.692 37.39885 -122.26404 NaN 322.0 14.9 0.74 21.0\n",
+ "0.695 37.39883 -122.26438 NaN 328.0 18.0 0.64 19.0\n",
+ "0.696 37.39882 -122.26449 18.0 331.0 18.0 0.64 19.0\n",
+ "0.700 37.39880 -122.26483 NaN 339.0 10.2 0.59 15.0\n",
+ "0.703 37.39877 -122.26517 NaN 346.0 5.2 0.58 12.0\n",
+ "0.707 37.39875 -122.26551 NaN 350.0 5.2 0.55 11.0\n",
+ "0.710 37.39873 -122.26584 NaN 352.0 9.0 0.53 11.0\n",
+ "0.713 37.39871 -122.26610 15.0 352.0 15.0 0.56 12.0\n",
+ "0.716 37.39869 -122.26644 NaN 352.0 10.6 0.61 13.0\n",
+ "0.720 37.39866 -122.26678 NaN 351.0 8.7 0.63 14.0\n",
+ "0.723 37.39864 -122.26712 NaN 348.0 10.4 0.63 15.0\n",
+ "0.727 37.39862 -122.26745 NaN 343.0 15.6 0.64 14.0\n",
+ "0.728 37.39861 -122.26757 18.0 341.0 18.0 0.64 14.0\n",
+ "0.732 37.39838 -122.26774 NaN 323.0 35.3 0.61 8.0\n",
+ "0.735 37.39814 -122.26791 NaN 309.0 49.4 0.51 9.0\n",
+ "0.739 37.39791 -122.26809 NaN 300.0 59.3 0.51 9.0\n",
+ "0.742 37.39768 -122.26826 NaN 299.0 61.9 0.41 10.0\n",
+ "0.746 37.39745 -122.26843 NaN 305.0 58.2 0.49 8.0\n",
+ "0.749 37.39721 -122.26860 NaN 317.0 49.5 0.64 12.0\n",
+ "0.753 37.39698 -122.26878 NaN 327.0 43.4 0.64 12.0\n",
+ "0.756 37.39675 -122.26895 NaN 339.0 36.1 0.73 20.0\n",
+ "0.760 37.39652 -122.26912 NaN 351.0 29.5 0.81 19.0\n",
+ "0.763 37.39628 -122.26929 NaN 361.0 25.9 0.77 12.0\n",
+ "0.767 37.39605 -122.26946 NaN 372.0 21.8 0.70 12.0\n",
+ "0.770 37.39582 -122.26964 NaN 383.0 18.7 0.54 10.0\n",
+ "0.774 37.39559 -122.26981 NaN 395.0 15.2 0.37 9.0\n",
+ "0.777 37.39535 -122.26998 NaN 408.0 11.8 0.38 10.0\n",
+ "0.781 37.39512 -122.27015 NaN 421.0 9.0 0.37 11.0\n",
+ "0.784 37.39489 -122.27033 NaN 432.0 9.1 0.39 12.0\n",
+ "0.788 37.39466 -122.27050 NaN 441.0 11.8 0.43 12.0\n",
+ "0.790 37.39448 -122.27063 21.0 444.0 21.0 0.43 12.0\n",
+ "0.794 37.39425 -122.27082 NaN 446.0 16.3 0.42 7.0\n",
+ "0.797 37.39403 -122.27100 NaN 445.0 15.9 0.46 4.0\n",
+ "0.801 37.39380 -122.27119 NaN 446.0 14.7 0.50 4.0\n",
+ "0.804 37.39358 -122.27137 NaN 447.0 14.7 0.49 4.0\n",
+ "0.808 37.39335 -122.27156 NaN 448.0 16.1 0.53 10.0\n",
+ "0.811 37.39313 -122.27175 NaN 448.0 19.7 0.66 20.0\n",
+ "0.812 37.39306 -122.27180 21.0 448.0 21.0 0.66 20.0\n",
+ "0.816 37.39299 -122.27213 NaN 450.0 19.1 0.71 20.0\n",
+ "0.819 37.39292 -122.27245 NaN 451.0 19.9 0.78 25.0\n",
+ "0.823 37.39285 -122.27278 NaN 458.0 16.4 0.84 32.0\n",
+ "0.826 37.39277 -122.27311 NaN 466.0 13.8 0.85 32.0\n",
+ "0.830 37.39270 -122.27344 NaN 477.0 9.9 0.85 28.0\n",
+ "0.833 37.39263 -122.27376 NaN 489.0 6.5 0.82 22.0\n",
+ "0.837 37.39256 -122.27409 NaN 498.0 8.2 0.79 21.0\n",
+ "0.840 37.39249 -122.27442 NaN 504.0 14.8 0.75 18.0\n",
+ "0.841 37.39248 -122.27446 17.0 505.0 17.0 0.75 18.0\n",
+ "0.844 37.39241 -122.27479 NaN 499.0 23.0 0.72 16.0\n",
+ "0.848 37.39234 -122.27512 NaN 500.0 24.4 0.73 16.0\n",
+ "0.851 37.39227 -122.27544 NaN 514.0 15.0 0.75 19.0\n",
+ "0.855 37.39220 -122.27577 NaN 529.0 7.1 0.78 22.0\n",
+ "0.858 37.39213 -122.27610 NaN 541.0 4.7 0.80 25.0\n",
+ "0.862 37.39206 -122.27643 NaN 555.0 2.7 0.82 26.0\n",
+ "0.865 37.39199 -122.27676 NaN 566.0 6.4 0.82 26.0\n",
+ "0.869 37.39192 -122.27708 NaN 576.0 13.2 0.84 25.0\n",
+ "0.870 37.39190 -122.27717 21.0 578.0 21.0 0.86 26.0\n",
+ "0.873 37.39183 -122.27750 NaN 586.0 14.1 0.87 27.0\n",
+ "0.877 37.39177 -122.27783 NaN 594.0 11.5 0.85 27.0\n",
+ "0.880 37.39170 -122.27816 NaN 603.0 12.4 0.82 23.0\n",
+ "0.883 37.39163 -122.27849 NaN 613.0 16.9 0.76 20.0\n",
+ "0.885 37.39161 -122.27860 23.0 615.0 23.0 0.76 20.0\n",
+ "0.888 37.39162 -122.27894 NaN 619.0 17.4 0.69 16.0\n",
+ "0.892 37.39163 -122.27928 NaN 620.0 15.9 0.60 14.0\n",
+ "0.895 37.39165 -122.27962 NaN 626.0 10.6 0.52 12.0\n",
+ "0.899 37.39166 -122.27996 NaN 639.0 -0.7 0.54 13.0\n",
+ "0.902 37.39167 -122.28030 NaN 643.0 -1.8 0.58 16.0\n",
+ "0.906 37.39168 -122.28064 NaN 643.0 2.2 0.61 17.0\n",
+ "0.909 37.39170 -122.28097 NaN 643.0 7.1 0.63 17.0\n",
+ "0.913 37.39171 -122.28131 NaN 642.0 14.3 0.67 17.0\n",
+ "0.913 37.39171 -122.28139 16.0 642.0 16.0 0.67 17.0\n",
+ "0.917 37.39156 -122.28167 NaN 633.0 17.6 0.78 17.0\n",
+ "0.920 37.39142 -122.28196 NaN 621.0 22.5 0.81 19.0\n",
+ "0.924 37.39127 -122.28224 NaN 608.0 29.1 0.74 16.0\n",
+ "0.927 37.39112 -122.28253 NaN 596.0 35.3 0.75 16.0\n",
+ "0.931 37.39097 -122.28281 NaN 582.0 44.2 0.73 17.0\n",
+ "0.934 37.39083 -122.28310 NaN 564.0 57.7 0.70 17.0\n",
+ "0.938 37.39068 -122.28338 NaN 556.0 61.9 0.65 19.0\n",
+ "0.941 37.39053 -122.28367 NaN 551.0 63.7 0.65 19.0\n",
+ "0.945 37.39038 -122.28395 NaN 542.0 70.2 0.62 15.0\n",
+ "0.948 37.39024 -122.28423 NaN 531.0 79.3 0.63 15.0\n",
+ "0.952 37.39009 -122.28452 NaN 523.0 86.0 0.64 13.0\n",
+ "0.955 37.38994 -122.28480 NaN 522.0 86.4 0.69 15.0\n",
+ "0.959 37.38980 -122.28509 NaN 523.0 85.4 0.65 18.0\n",
+ "0.962 37.38965 -122.28537 NaN 529.0 80.1 0.66 23.0\n",
+ "0.966 37.38950 -122.28566 NaN 537.0 73.4 0.67 22.0\n",
+ "0.969 37.38935 -122.28594 NaN 541.0 71.4 0.66 19.0\n",
+ "0.973 37.38921 -122.28623 NaN 545.0 70.0 0.67 18.0\n",
+ "0.976 37.38906 -122.28651 NaN 552.0 66.2 0.63 14.0\n",
+ "0.980 37.38891 -122.28680 NaN 559.0 63.2 0.64 16.0\n",
+ "0.983 37.38876 -122.28708 NaN 570.0 56.7 0.66 25.0\n",
+ "0.987 37.38862 -122.28736 NaN 583.0 48.7 0.69 27.0\n",
+ "0.990 37.38847 -122.28765 NaN 597.0 40.6 0.67 25.0\n",
+ "0.994 37.38832 -122.28793 NaN 614.0 30.1 0.66 22.0\n",
+ "0.997 37.38817 -122.28822 NaN 627.0 24.4 0.61 12.0\n",
+ "1.000 37.38806 -122.28844 23.0 634.0 23.0 0.61 11.0\n"
]
}
],
"source": [
"!gridlabd geodata merge -D elevation path_example.csv -r 30 --resolution_id \\\n",
"| gridlabd geodata merge -D vegetation -w | grep -v WARNING \\\n",
- "| gridlabd geodata merge -D powerline --cable_type=\"TACSR/AC 610mm^2\" --margin.vertical=2 -f TABLE:latitude,longitude,pole_height,elevation,linesag,cover,height,contact --table.width=999 --table.max_rows=999"
+ "| gridlabd geodata merge -D powerline --cable_type=\"TACSR/AC 610mm^2\" --margin.vertical=2 -f TABLE:latitude,longitude,pole_height,elevation,linesag,cover,height --table.width=999 --table.max_rows=999"
]
},
{
"cell_type": "code",
"execution_count": null,
- "id": "eae2ff61",
+ "id": "e884a292-5978-4d90-8c5c-e5683f618ec0",
"metadata": {},
"outputs": [],
"source": []
@@ -3545,7 +4237,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "Python 3.8.2 64-bit",
+ "display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
@@ -3559,7 +4251,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.8.2"
+ "version": "3.11.4"
},
"vscode": {
"interpreter": {