diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 08c7fe85b9c836369afebe633c437d4dae9e7c66..0000000000000000000000000000000000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,76 +0,0 @@
-language: generic
-
-matrix:
-  include:
-    - os: linux
-      env:
-        - PYTHON_VERSION=3.5
-    - os: linux
-      env:
-        - PYTHON_VERSION=3.6
-    - os: osx
-      osx_image: xcode9.1
-      sudo: false
-      compiler:
-        - clang
-      env:
-        - PYTHON_VERSION=3.5
-    - os: osx
-      osx_image: xcode9.1
-      sudo: false
-      compiler:
-        - clang
-      env:
-        - PYTHON_VERSION=3.6
-
-branches:
-  only:
-    - master
-
-before_install:
-  - if [ "$TRAVIS_OS_NAME" == "linux" ]; then
-      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
-    else
-      curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
-    fi
-
-  # More conda setup to get miniconda in and a virtual env. setup
-  - bash miniconda.sh -b -p $HOME/miniconda
-  - export PATH="$HOME/miniconda/bin:$PATH"
-  - hash -r
-  - conda config --set always_yes yes --set changeps1 no
-  - conda update -q conda
-  - conda info -a   # Useful for debugging any issues with conda
-  
-  # Create the env
-  - conda create -q -n test python=$PYTHON_VERSION
-  - source activate test
-  - if [ "$TRAVIS_OS_NAME" == "linux" ]; then
-      conda install gxx_linux-64;
-    else
-      conda install clangxx_osx-64;
-    fi
-  # Neecssary to get the new compilers into the PATH
-  - source deactivate
-  - source activate test
-  # Necessary to avoid hangs due to output length
-  - python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
-
-install:
-  # Install dependencies
-  # Install dependencies
-  - conda config --add channels usgs-astrogeology
-  - conda config --add channels conda-forge
-  - conda install -c conda-forge numpy cython pytest pytest-cov coveralls
-  - conda install -c usgs-astrogeology libcsm cycsm
-
-script:
-  - python setup.py install
-  - pytest --cov=usgscam
-
-after_success:
-  - coveralls
-  - source deactivate
-  - conda install conda-build anaconda-client
-  - conda config --set anaconda_upload yes
-  - conda build -q --token $CONDA_UPLOAD_TOKEN --python $PYTHON_VERSION .
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9997275634937a5f5057af2fb13d82e06fc116f3
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,32 @@
+cmake_minimum_required(VERSION 3.10)
+project(usgscsm VERSION 0.0.1 DESCRIPTION "usgscsm library")
+
+set(CMAKE_CXX_STANDARD 11)
+
+include(GNUInstallDirs)
+add_library(usgscsm SHARED 
+            src/UsgsAstroFramePlugin.cpp
+            src/UsgsAstroFrameSensorModel.cpp
+            src/UsgsAstroLsPlugin.cpp
+            src/UsgsAstroLsSensorModel.cpp
+            src/UsgsAstroLsStateData.cpp)
+
+set_target_properties(usgscsm PROPERTIES
+    VERSION ${PROJECT_VERSION}
+    SOVERSION 1
+)
+
+find_library(CSM_LIBRARY csmapi REQUIRED)
+find_path(CSM_INCLUDE_DIR NAMES csm)
+
+target_include_directories(usgscsm PRIVATE
+                           include/
+                           include/usgscsm
+                           ${CSM_INCLUDE_DIR}
+)
+
+target_link_libraries(usgscsm ${CSM_LIBRARY})
+
+install(TARGETS usgscsm
+    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
+    PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
\ No newline at end of file
diff --git a/README.md b/README.md
index 1509d1af5dadba0491a36d9e9bdb2dcb3253601f..4753ece33df21aac28a91951f0ee63d4a2957b8e 100644
--- a/README.md
+++ b/README.md
@@ -1,25 +1,7 @@
 # CSM-CameraModel
 
-[![Build Status](https://travis-ci.org/USGS-Astrogeology/CSM-CameraModel.svg?branch=master)](https://travis-ci.org/USGS-Astrogeology/CSM-CameraModel)
+To build:
 
-This repository stores USGS CSM compliant camera models and the associated
-plugins.  These camera models are compliant with the [Community Sensor
-Model](https://github.com/sminster/csm) and can be utilized within any application supporting the CSM.
-
-The CSM requires associated Image Support Data.  This data is primarily
-provided by the NASA Navigation and Ancillary Information (NAIF) SPICE system.
-We provide a seperate
-[CSM-SpiceISD](https://github.com/USGS-Astrogeology/CSM-SpiceISD) library to interface with the NAIF Spice
-functionality and provide a standard ISD file.  
-
-## Installation
-
-For Linux and MacOS we have prebuilt packages.  To install:
-
-- `conda install -c usgs-astrogeology usgscam`
-
-If you would like to use the conda environment feature:
-
-- `conda create -n usgscam python=3`
-- `source activate usgscam`
-- `conda install -c usgs-astrogeology usgscam`
+1. Ensure that the CSM is installed in a place that CMake searches (e.g., /usr or /usr/local).
+2. `mkdir build` && `cd build`
+3. `cmake .. && make`
\ No newline at end of file
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 18139a42a06d5dc847bda06c824b140055de6966..0000000000000000000000000000000000000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-branches:
-  only:
-  - master
-
-version: '0.1.0.{build}'
-
-platform:
-  - x64
-
-configuration:
-  - Release
-
-install:
-  - cmd: call C:\\Miniconda36-x64\Scripts\activate.bat
-  - cmd: conda config --set always_yes yes --set changeps1 no
-  - cmd: conda update -q conda
-  - cmd: conda config --add channels usgs-astrogeology
-  - cmd: conda config --add channels conda-forge
-  - cmd: conda install -c conda-forge numpy cython pytest
-  - cmd: conda install -c usgs-astrogeology libcsm cycsm
-  - cmd: conda install conda-build anaconda-client pytest-cov
-
-build_script:
-  - cmd: conda build .
-  - cmd: conda install --use-local usgscam
-
-test_script:
-  - cmd: pytest --cov=cycsm
-
-on_success:
-  - cmd: conda config --set anaconda_upload yes
-  - cmd: conda build --token %CONDA_UPLOAD_TOKEN% .
diff --git a/include/orex/ORexPlugin.h b/include/orex/ORexPlugin.h
deleted file mode 100644
index c92c6f553abfa7c4ed3f3d270024792128edb336..0000000000000000000000000000000000000000
--- a/include/orex/ORexPlugin.h
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef ORexPlugin_h
-#define ORexPlugin_h
-
-#ifdef _WIN32
-#  ifdef OREX_LIBRARY
-#    define OREX_EXPORT_API __declspec(dllexport)
-#  else
-#    define OREX_EXPORT_API __declspec(dllimport)
-# endif
-#else
-#  define OREX_EXPORT_API
-#endif
-
-#include <string>
-
-#include <csm/Plugin.h>
-#include <csm/Version.h>
-
-namespace csm {
-  class Isd;
-  class Model;
-  class Warning;
-}
-
-class OREX_EXPORT_API ORexPlugin : public csm::Plugin {
-
-  public:
-    ORexPlugin();
-    ~ORexPlugin();
-
-    virtual std::string getPluginName() const;
-    virtual std::string getManufacturer() const;
-    virtual std::string getReleaseDate() const;
-    virtual csm::Version getCsmVersion() const;
-    virtual size_t getNumModels() const;
-    virtual std::string getModelName(size_t modelIndex) const;
-    virtual std::string getModelFamily(size_t modelIndex) const;
-    virtual csm::Version getModelVersion(const std::string &modelName) const;
-    virtual bool canModelBeConstructedFromState(const std::string &modelName,
-                                                const std::string &modelState,
-                                                csm::WarningList *warnings = NULL) const;
-    virtual bool canModelBeConstructedFromISD(const csm::Isd &imageSupportData,
-                                              const std::string &modelName,
-                                              csm::WarningList *warnings = NULL) const;
-    virtual csm::Model *constructModelFromState(const std::string &modelState,
-                                                csm::WarningList *warnings = NULL) const;
-    virtual csm::Model *constructModelFromISD(const csm::Isd &imageSupportData,
-                                              const std::string &modelName,
-                                              csm::WarningList *warnings = NULL) const;
-    virtual std::string getModelNameFromModelState(const std::string &modelState,
-                                                   csm::WarningList *warnings = NULL) const;
-    virtual bool canISDBeConvertedToModelState(const csm::Isd &imageSupportData,
-                                               const std::string &modelName,
-                                               csm::WarningList *warnings = NULL) const;
-    virtual std::string convertISDToModelState(const csm::Isd &imageSupportData,
-                                               const std::string &modelName,
-                                               csm::WarningList *warnings = NULL) const;
-
-  private:
-    static const ORexPlugin m_registeredPlugin;
-
-    static const std::string m_pluginName;
-    static const std::string m_manufacturerName;
-    static const std::string m_releaseDate;
-    static const csm::Version m_csmVersion;
-    static const int m_numModels;
-
-    // TODO when implementing, add any other necessary members.
-};
-
-#endif
diff --git a/include/orex/ORexSensorModel.h b/include/orex/ORexSensorModel.h
deleted file mode 100644
index b60fa8bbde7c95fdc5e07e51f6f61593b7320eac..0000000000000000000000000000000000000000
--- a/include/orex/ORexSensorModel.h
+++ /dev/null
@@ -1,322 +0,0 @@
-#ifndef ORexSensorModel_h
-#define ORexSensorModel_h
-
-#include <cmath>
-#include <iostream>
-#include <vector>
-
-#include "csm/RasterGM.h"
-
-
-class ORexSensorModel : public csm::RasterGM {
-  // MdisPlugin needs to access private members
-  friend class ORexPlugin;
-
-  public:
-    ORexSensorModel();
-    ~ORexSensorModel();
-
-    virtual csm::ImageCoord groundToImage(const csm::EcefCoord &groundPt,
-                                     double desiredPrecision=0.001,
-                                     double *achievedPrecision=NULL,
-                                     csm::WarningList *warnings=NULL) const;
-
-    virtual csm::ImageCoordCovar groundToImage(const csm::EcefCoordCovar &groundPt,
-                                          double desiredPrecision=0.001,
-                                          double *achievedPrecision=NULL,
-                                          csm::WarningList *warnings=NULL) const;
-
-    /**
-    * This function determines if a sample, line intersects the target body and if so, where
-    * this intersection occurs in body-fixed coordinates.
-    *
-    * @param sample Sample of the input image.
-    * @param line Line of the input image.
-    * @param height ???
-    *
-    * @return @b vector<double> Returns the body-fixed X,Y,Z coordinates of the intersection.
-    *                           If no intersection, returns a 3-element vector of 0's.
-    */
-    virtual csm::EcefCoord imageToGround(const csm::ImageCoord &imagePt, double height,
-                                    double desiredPrecision=0.001, double *achievedPrecision=NULL,
-                                    csm::WarningList *warnings=NULL) const;
-
-    virtual csm::EcefCoordCovar imageToGround(const csm::ImageCoordCovar &imagePt, double height,
-                                           double heightVariance, double desiredPrecision=0.001,
-                                           double *achievedPrecision=NULL,
-                                           csm::WarningList *warnings=NULL) const;
-
-    virtual csm::EcefLocus imageToProximateImagingLocus(const csm::ImageCoord &imagePt,
-                                                      const csm::EcefCoord &groundPt,
-                                                      double desiredPrecision=0.001,
-                                                      double *achievedPrecision=NULL,
-                                                      csm::WarningList *warnings=NULL) const;
-
-    virtual csm::EcefLocus imageToRemoteImagingLocus(const csm::ImageCoord &imagePt,
-                                                   double desiredPrecision=0.001,
-                                                   double *achievedPrecision=NULL,
-                                                   csm::WarningList *warnings=NULL) const;
-
-    virtual csm::ImageCoord getImageStart() const;
-
-    virtual csm::ImageVector getImageSize() const;
-
-    virtual std::pair<csm::ImageCoord, csm::ImageCoord> getValidImageRange() const;
-
-    virtual std::pair<double, double> getValidHeightRange() const;
-
-    /**
-     * Calculates the illumination vector (body-fixed, meters) from the sun to the given ground
-     * point.
-     *
-     * @param groundPt The ground point to find the illumination vector to.
-     *
-     * @return @b csm::EcefVector Returns the illumination vector from the sun to the ground point.
-     */
-    virtual csm::EcefVector getIlluminationDirection(const csm::EcefCoord &groundPt) const;
-
-    virtual double getImageTime(const csm::ImageCoord &imagePt) const;
-
-    /**
-     * Determines the body-fixed sensor position for the given image coordinate.
-     *
-     * @param imagePt Image coordinate to find the sensor position for.
-     *
-     * @return @b csm::EcefCoord Returns the body-fixed sensor position.
-     *
-     * @throw csm::Error::BOUNDS "Image coordinate () out of bounds."
-     */
-    virtual csm::EcefCoord getSensorPosition(const csm::ImageCoord &imagePt) const;
-
-    virtual csm::EcefCoord getSensorPosition(double time) const;
-
-    /**
-     * Determines the velocity of the sensor for the given image coordinate (in body-fixed frame).
-     *
-     * @param imagePt Image coordinate to find the sensor position for.
-     *
-     * @return @b csm::EcefVector Returns the sensor velocity in body-fixed frame.
-     *
-     * @throw csm::Error::BOUNDS "Image coordinate () out of bounds."
-     */
-
-    virtual csm::EcefVector getSensorVelocity(const csm::ImageCoord &imagePt) const;
-
-    virtual csm::EcefVector getSensorVelocity(double time) const;
-
-    virtual csm::RasterGM::SensorPartials computeSensorPartials(int index,
-                                                                const csm::EcefCoord &groundPt,
-                                                                double desiredPrecision=0.001,
-                                                                double *achievedPrecision=NULL,
-                                                                csm::WarningList *warnings=NULL) const;
-
-    virtual csm::RasterGM::SensorPartials computeSensorPartials(int index,
-                                                                const csm::ImageCoord &imagePt,
-                                                                const csm::EcefCoord &groundPt,
-                                                                double desiredPrecision=0.001,
-                                                                double *achievedPrecision=NULL,
-                                                                csm::WarningList *warnings=NULL) const;
-
-    virtual std::vector<double> computeGroundPartials(const csm::EcefCoord &groundPt) const;
-
-    virtual const csm::CorrelationModel &getCorrelationModel() const;
-
-    virtual std::vector<double> getUnmodeledCrossCovariance(const csm::ImageCoord &pt1,
-                                                            const csm::ImageCoord &pt2) const;
-
-    // IMPLEMENT MODEL PURE VIRTUALS
-    //---
-    // Basic model information
-    //---
-    virtual csm::Version getVersion() const;
-      //> This method returns the version of the model code.  The Version
-      //  object can be compared to other Version objects with its comparison
-      //  operators.  Not to be confused with the CSM API version.
-      //<
-
-    virtual std::string getModelName() const;
-      //> This method returns a string identifying the name of the model.
-      //<
-
-    virtual std::string getPedigree() const;
-      //> This method returns a string that identifies the sensor,
-      //  the model type, its mode of acquisition and processing path.
-      //  For example, an optical sensor model or a cubic rational polynomial
-      //  model created from the same sensor's support data would produce
-      //  different pedigrees for each case.
-      //<
-
-    //---
-    // Basic collection information
-    //---
-    virtual std::string getImageIdentifier() const;
-      //> This method returns an identifier to uniquely indicate the imaging
-      //  operation associated with this model.
-      //  This is the primary identifier of the model.
-      //
-      //  This method may return an empty string if the ID is unknown.
-      //<
-
-    virtual void setImageIdentifier(const std::string& imageId,
-                                    csm::WarningList* warnings = NULL);
-      //> This method sets an identifier to uniquely indicate the imaging
-      //  operation associated with this model.  Typically used for models
-      //  whose initialization does not produce an adequate identifier.
-      //
-      //  If a non-NULL warnings argument is received, it will be populated
-      //  as applicable.
-      //<
-
-    virtual std::string getSensorIdentifier() const;
-      //> This method returns an identifier to indicate the specific sensor
-      //  that was used to acquire the image.  This ID must be unique among
-      //  sensors for a given model name.  It is used to determine parameter
-      //  correlation and sharing.  Equivalent to camera or mission ID.
-      //
-      //  This method may return an empty string if the sensor ID is unknown.
-      //<
-
-    virtual std::string getPlatformIdentifier() const;
-      //> This method returns an identifier to indicate the specific platform
-      //  that was used to acquire the image.  This ID must unique among
-      //  platforms for a given model name.  It is used to determine parameter
-      //  correlation sharing.  Equivalent to vehicle or aircraft tail number.
-      //
-      //  This method may return an empty string if the platform ID is unknown.
-      //<
-
-    virtual std::string getCollectionIdentifier() const;
-      //> This method returns an identifer to indicate a collection activity
-      //  common to a set of images.  This ID must be unique among collection
-      //  activities for a given model name.  It is used to determine parameter
-      //  correlation and sharing.
-      //<
-
-    virtual std::string getTrajectoryIdentifier() const;
-      //> This method returns an identifier to indicate a trajectory common
-      //  to a set of images.  This ID must be unique among trajectories
-      //  for a given model name.  It is used to determine parameter
-      //  correlation and sharing.
-      //<
-
-    virtual std::string getSensorType() const;
-      //> This method returns a description of the sensor type (EO, IR, SAR,
-      //  etc).  See csm.h for a list of common types.  Should return
-      //  CSM_SENSOR_TYPE_UNKNOWN if the sensor type is unknown.
-      //<
-
-    virtual std::string getSensorMode() const;
-      //> This method returns a description of the sensor mode (FRAME,
-      //  PUSHBROOM, SPOT, SCAN, etc).  See csm.h for a list of common modes.
-      //  Should return CSM_SENSOR_MODE_UNKNOWN if the sensor mode is unknown.
-      //<
-
-    virtual std::string getReferenceDateAndTime() const;
-      //> This method returns an approximate date and time at which the
-      //  image was taken.  The returned string follows the ISO 8601 standard.
-      //
-      //-    Precision   Format           Example
-      //-    year        yyyy             "1961"
-      //-    month       yyyymm           "196104"
-      //-    day         yyyymmdd         "19610420"
-      //-    hour        yyyymmddThh      "19610420T20"
-      //-    minute      yyyymmddThhmm    "19610420T2000"
-      //-    second      yyyymmddThhmmss  "19610420T200000"
-      //<
-
-    //---
-    // Sensor Model State
-    //---
-    virtual std::string getModelState() const;
-      //> This method returns a string containing the data to exactly recreate
-      //  the current model.  It can be used to restore this model to a
-      //  previous state with the replaceModelState method or create a new
-      //  model object that is identical to this model.
-      //  The string could potentially be saved to a file for later use.
-      //  An empty string is returned if it is not possible to save the
-      //  current state.
-      //<
-
-    virtual void replaceModelState(const std::string& argState);
-      //> This method attempts to initialize the current model with the state
-      //  given by argState.  The argState argument can be a string previously
-      //  retrieved from the getModelState method.
-      //
-      //  If argState contains a valid state for the current model,
-      //  the internal state of the model is updated.
-      //
-      //  If the model cannot be updated to the given state, a csm::Error is
-      //  thrown and the internal state of the model is undefined.
-      //
-      //  If the argument state string is empty, the model remains unchanged.
-      //<
-
-    // IMPLEMENT GEOMETRICMODEL PURE VIRTUALS
-    // See GeometricModel.h for documentation
-    virtual csm::EcefCoord getReferencePoint() const;
-    virtual void setReferencePoint(const csm::EcefCoord &groundPt);
-    virtual int getNumParameters() const;
-    virtual std::string getParameterName(int index) const;
-    virtual std::string getParameterUnits(int index) const;
-    virtual bool hasShareableParameters() const;
-    virtual bool isParameterShareable(int index) const;
-    virtual csm::SharingCriteria getParameterSharingCriteria(int index) const;
-    virtual double getParameterValue(int index) const;
-    virtual void setParameterValue(int index, double value);
-    virtual csm::param::Type getParameterType(int index) const;
-    virtual void setParameterType(int index, csm::param::Type pType);
-    virtual double getParameterCovariance(int index1, int index2) const;
-    virtual void setParameterCovariance(int index1, int index2, double covariance);
-    virtual int getNumGeometricCorrectionSwitches() const;
-    virtual std::string getGeometricCorrectionName(int index) const;
-    virtual void setGeometricCorrectionSwitch(int index, bool value, csm::param::Type pType);
-    virtual bool getGeometricCorrectionSwitch(int index) const;
-    virtual std::vector<double> getCrossCovarianceMatrix(
-        const GeometricModel &comparisonModel,
-        csm::param::Set pSet = csm::param::VALID,
-        const GeometricModelList &otherModels = GeometricModelList()) const;
-
-    static const std::string _SENSOR_MODEL_NAME;
-
-  private:
-    double m_transX[3];
-    double m_transY[3];
-    double m_iTransS[3];
-    double m_iTransL[3];
-    double m_a_axis;
-    double m_b_axis;
-    double m_c_axis;
-    double m_omega;
-    double m_phi;
-    double m_kappa;
-    double m_focalLength;
-    double m_spacecraftPosition[3];
-    double m_spacecraftVelocity[3];
-    double m_sunPosition[3];
-    double m_ccdCenter[2];
-    double m_line_pp;
-    double m_sample_pp;
-    double m_startingDetectorSample;
-    double m_startingDetectorLine;
-    std::string m_targetName;
-    double m_ifov;
-    std::string m_instrumentID;
-    double m_focalLengthEpsilon;
-    double m_originalHalfLines;
-    std::string m_spacecraftName;
-    double m_pixelPitch;
-    double m_ephemerisTime;
-    double m_originalHalfSamples;
-    double m_boresight[3];
-    int m_nLines;
-    int m_nSamples;
-
-    void calcRotationMatrix(double m[3][3]) const;
-    void losEllipsoidIntersect (const double& height,const double& xc,
-                                const double& yc, const double& zc,
-                                const double& xl, const double& yl,
-                                const double& zl,
-                                double& x,double& y, double&  z) const;
-};
-
-#endif
diff --git a/include/genericframe/UsgsAstroFramePlugin.h b/include/usgscsm/UsgsAstroFramePlugin.h
similarity index 100%
rename from include/genericframe/UsgsAstroFramePlugin.h
rename to include/usgscsm/UsgsAstroFramePlugin.h
diff --git a/include/genericframe/UsgsAstroFrameSensorModel.h b/include/usgscsm/UsgsAstroFrameSensorModel.h
similarity index 100%
rename from include/genericframe/UsgsAstroFrameSensorModel.h
rename to include/usgscsm/UsgsAstroFrameSensorModel.h
diff --git a/include/genericls/UsgsAstroLsISD.h b/include/usgscsm/UsgsAstroLsISD.h
similarity index 100%
rename from include/genericls/UsgsAstroLsISD.h
rename to include/usgscsm/UsgsAstroLsISD.h
diff --git a/include/genericls/UsgsAstroLsPlugin.h b/include/usgscsm/UsgsAstroLsPlugin.h
similarity index 100%
rename from include/genericls/UsgsAstroLsPlugin.h
rename to include/usgscsm/UsgsAstroLsPlugin.h
diff --git a/include/genericls/UsgsAstroLsSensorModel.h b/include/usgscsm/UsgsAstroLsSensorModel.h
similarity index 100%
rename from include/genericls/UsgsAstroLsSensorModel.h
rename to include/usgscsm/UsgsAstroLsSensorModel.h
diff --git a/include/genericls/UsgsAstroLsStateData.h b/include/usgscsm/UsgsAstroLsStateData.h
similarity index 100%
rename from include/genericls/UsgsAstroLsStateData.h
rename to include/usgscsm/UsgsAstroLsStateData.h
diff --git a/recipe/README.md b/recipe/README.md
deleted file mode 100644
index bc4389e94304d580edbf70114f921ad56bebc18a..0000000000000000000000000000000000000000
--- a/recipe/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# Recipe
-
-This is an anaconda compliant recipe for building and install the CSM-CameraModel library.  This library depends upon the Community Sensor Model (CSM) libs and the  USGS CyCSM wrappers. These are automatically installed alongside the CSM-CameraModel library.   
-
-To install run: `conda build recipe` from the root project directory.
diff --git a/recipe/bld.bat b/recipe/bld.bat
deleted file mode 100644
index 9d23a8c9beae3534d71ea559667ca99febee9c0c..0000000000000000000000000000000000000000
--- a/recipe/bld.bat
+++ /dev/null
@@ -1,3 +0,0 @@
-python setup.py install
-
-if errorlevel 1 exit 1
diff --git a/recipe/build.sh b/recipe/build.sh
deleted file mode 100644
index 1f519eb3362e68649d409af90ba5442cebad1776..0000000000000000000000000000000000000000
--- a/recipe/build.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-if [ `uname` == Darwin ]; then
-  export MACOSX_DEPLOYMENT_TARGET=10.9;
-fi
-
-$PYTHON setup.py install;
diff --git a/recipe/meta.yaml b/recipe/meta.yaml
deleted file mode 100644
index 06477925f1467cf2e63eb30ee94fd049ad069293..0000000000000000000000000000000000000000
--- a/recipe/meta.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-{% set version = "0.1.1" %}
-
-package:
-  name: usgscam
-  version: {{ version }}
-
-source:
-    git_url: https://github.com/USGS-Astrogeology/CSM-CameraModel
-    git_rev: master
-build:
-  number: 0
-
-detect_binary_files_with_prefix: true
-
-requirements:
-  build: 
-    - {{ compiler('cxx') }}
-    - vc 14  # [win and py>=35]
-  host:
-    - python
-    - setuptools
-    - numpy >=1.10
-    - cython >=0.27
-    - libcsm
-    - cycsm
-  run:
-    - python
-    - numpy >=1.10
-    - libcsm
-    - cycsm
-    - vc 14  # [win and py>=35]
-
-test:
-  imports:
-    - usgscam
-
-about:
-  home: https://github.com/USGS-Astrogeology/CSM-CameraModel
-  license: Unlicense
diff --git a/src/UsgsAstroLsPlugin.cpp b/src/UsgsAstroLsPlugin.cpp
index cc9d17f042e4967c5324237bb0df30b101b7e2fd..7343b091c329096726428671a410a7110251a1c3 100644
--- a/src/UsgsAstroLsPlugin.cpp
+++ b/src/UsgsAstroLsPlugin.cpp
@@ -19,10 +19,10 @@
 
 #define USGSASTROLINESCANNER_LIBRARY
 
-#include "genericls/UsgsAstroLsPlugin.h"
-#include "genericls/UsgsAstroLsISD.h"
-#include "genericls/UsgsAstroLsSensorModel.h"
-#include "genericls/UsgsAstroLsStateData.h"
+#include "UsgsAstroLsPlugin.h"
+#include "UsgsAstroLsISD.h"
+#include "UsgsAstroLsSensorModel.h"
+#include "UsgsAstroLsStateData.h"
 
 #ifdef _WIN32
 # define DIR_DELIMITER_STR "\\"
diff --git a/src/UsgsAstroLsSensorModel.cpp b/src/UsgsAstroLsSensorModel.cpp
index 1d4cb5f1aab199db08a066fb405267fc8fdf85c7..df705e10a79e0c440b7da393313559deed3665ab 100644
--- a/src/UsgsAstroLsSensorModel.cpp
+++ b/src/UsgsAstroLsSensorModel.cpp
@@ -18,7 +18,7 @@
 //-----------------------------------------------------------------------------
 #define USGSASTROLINESCANNER_LIBRARY
 
-#include "genericls/UsgsAstroLsSensorModel.h"
+#include "UsgsAstroLsSensorModel.h"
 
 #include <algorithm>
 #include <iostream>
@@ -301,6 +301,7 @@ csm::ImageCoord UsgsAstroLsSensorModel::groundToImage(
 
    // If the final correction is greater than 10 meters,
    // the solution is not valid enough to report even with a warning
+   printf("%f\n", len);
    if (len > 100.0) {
       throw csm::Error(
          csm::Error::ALGORITHM,
diff --git a/src/UsgsAstroLsStateData.cpp b/src/UsgsAstroLsStateData.cpp
index 3b110e7f79815eb4615128d895f22602e524655b..9f14e2f7aa81676f1eec00baa82e4c3424ad19a1 100644
--- a/src/UsgsAstroLsStateData.cpp
+++ b/src/UsgsAstroLsStateData.cpp
@@ -29,8 +29,8 @@
 #define USGSASTROLINESCANNER_LIBRARY
 
 
-#include <genericls/UsgsAstroLsStateData.h>
-#include <genericls/UsgsAstroLsPlugin.h>
+#include <UsgsAstroLsStateData.h>
+#include <UsgsAstroLsPlugin.h>
 #include <sstream>
 #include <csm/Error.h>
 #include <json/json.hpp>
diff --git a/tests/CW1071364100B_IU_5.json b/tests/CW1071364100B_IU_5.json
deleted file mode 100644
index 1630c4a783d7bcc049210c66e402bd59dde961c5..0000000000000000000000000000000000000000
--- a/tests/CW1071364100B_IU_5.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
-    "boresight": [
-        0.0,
-        0.0,
-        1.0
-    ],
-    "ccd_center": [
-        512.5,
-        512.5
-    ],
-    "ephemeris_time": 482312178.16084045,
-    "focal_length": 78.25197917515999,
-    "focal_length_epsilon": 0.15,
-    "ifov": 179.6,
-    "instrument_id": "MDIS-WAC",
-    "itrans_line": [
-        0.0,
-        -0.0006761060916520159,
-        71.4399371332522
-    ],
-    "itrans_sample": [
-        0.0,
-        71.42857143,
-        0.0
-    ],
-    "kappa": -3.072868243248164,
-    "min_elevation": -100,
-    "max_elevation": 100,
-    "model_name": "USGS_ASTRO_FRAME_SENSOR_MODEL",
-    "nlines": 1024,
-    "nsamples": 1024,
-    "odt_x": [
-        0.0,
-        1.0,
-        0.0,
-        -7.720894252056575e-05,
-        3.599871902138938e-06,
-        0.0,
-        5.509035727272325e-06,
-        0.0,
-        5.509035727272406e-06,
-        0.0
-    ],
-    "odt_y": [
-        0.0,
-        0.0,
-        1.000000000026148,
-        0.0,
-        -7.720894252092194e-05,
-        3.599871782473616e-06,
-        0.0,
-        5.509035621941527e-06,
-        0.0,
-        5.5090308738198125e-06
-    ],
-    "omega": 2.9059307323725254,
-    "original_half_lines": 512.0,
-    "original_half_samples": 512.0,
-    "phi": 0.3032857092051579,
-    "pixel_pitch": 0.014,
-    "semi_major_axis": 2439.4,
-    "semi_minor_axis": 2439.4,
-    "spacecraft_name": "Messenger",
-    "starting_detector_line": 1.0,
-    "starting_detector_sample": 9.0,
-    "target_name": "Mercury",
-    "transx": [
-        0.0,
-        0.01399999999972,
-        0.0
-    ],
-    "transy": [
-        0.0,
-        1.32495711261385e-07,
-        0.013997772676294
-    ],
-    "x_sensor_origin": 28892.88978623381,
-    "x_sensor_velocity": 0,
-    "x_sun_position": 0,
-    "y_sensor_origin": 633940.116378508,
-    "y_sensor_velocity": 0,
-    "y_sun_position": 0,
-    "z_sensor_origin": 2683552.1331144567,
-    "z_sensor_velocity": 0,
-    "z_sun_position": 0
-}
diff --git a/tests/EN1007907102M.json b/tests/EN1007907102M.json
deleted file mode 100644
index ccce73199c330c480bf6ef165824e0cca2c18f30..0000000000000000000000000000000000000000
--- a/tests/EN1007907102M.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
-    "boresight": [
-        0.0,
-        0.0,
-        1.0
-    ],
-    "ccd_center": [
-        512.5,
-        512.5
-    ],
-    "ephemeris_time": 418855170.49264956,
-    "focal_length": 549.2347965210602,
-    "ifov": 25.44,
-    "focal_length_epsilon": 0.5,
-    "instrument_id": "MDIS-NAC",
-    "itrans_line": [
-        0.0,
-        0.0,
-        71.42857143
-    ],
-    "itrans_sample": [
-        0.0,
-        71.42857143,
-        0.0
-    ],
-    "kappa": -0.963008015000929,
-    "min_elevation": -100,
-    "max_elevation": 100,
-    "model_name": "USGS_ASTRO_FRAME_SENSOR_MODEL",
-    "nlines": 1024,
-    "nsamples": 1024,
-    "odt_x": [
-        0.0,
-        1.001854269623802,
-        0.0,
-        0.0,
-        -0.0005094440474941111,
-        0.0,
-        1.004010471468856e-05,
-        0.0,
-        1.004010471468856e-05,
-        0.0
-    ],
-    "odt_y": [
-        0.0,
-        0.0,
-        1.0,
-        0.0009060010594996751,
-        0.0,
-        0.0003574842626620758,
-        0.0,
-        1.004010471468856e-05,
-        0.0,
-        1.004010471468856e-05
-    ],
-    "omega": 2.25613869898165,
-    "original_half_lines": 512.0,
-    "original_half_samples": 512.0,
-    "phi": 0.09434616179037647,
-    "pixel_pitch": 0.014,
-    "semi_major_axis": 2439.4,
-    "semi_minor_axis": 2439.4,
-    "spacecraft_name": "Messenger",
-    "starting_detector_line": 1.0,
-    "starting_detector_sample": 9.0,
-    "target_name": "Mercury",
-    "transx": [
-        0.0,
-        0.014,
-        0.0
-    ],
-    "transy": [
-        0.0,
-        0.0,
-        0.014
-    ],
-    "x_sensor_origin": 1728181.0340792781,
-    "x_sun_position": -31648725087.588726,
-    "x_sensor_velocity": 0,
-    "y_sensor_origin": -2088202.591297346,
-    "y_sun_position": -60633907522.72863,
-    "y_sensor_velocity": 0,
-    "z_sensor_origin": 2082707.608992824,
-    "z_sensor_velocity" :0,
-    "z_sun_position": -38729485.77334732
-}
diff --git a/tests/J03_046060_1986_XN_18N282W_8bit_keywords.lis b/tests/J03_046060_1986_XN_18N282W_8bit_keywords.lis
deleted file mode 100644
index 7f8652e7d19085a3048b96737edc730e86ee759f..0000000000000000000000000000000000000000
--- a/tests/J03_046060_1986_XN_18N282W_8bit_keywords.lis
+++ /dev/null
@@ -1,950 +0,0 @@
-RECTIFICATION_TERMS
-        9.21600000000000e+03 0.00000000000000e+00 1.00000000000000e+00
-        2.50000000000000e+03 1.00000000000000e+00 0.00000000000000e+00
-GROUND_ZERO 3.24985706836655e-01 1.35170258031137e+00 0.00000000000000e+00
-LOAD_PT 3.24985706836655e-01 1.35170258031137e+00 0.00000000000000e+00
-COORD_SYSTEM 1
-IMAGE_MOTION 0
-SENSOR_TYPE USGSAstroLineScanner
-SENSOR_MODE UNKNOWN
-SEMI_MAJOR_AXIS 3.39619000000000e+006
-ECCENTRICITY 1.08339143554195e-001
-FOCAL 3.52927166400000e+02
-ATMCO 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_LINE 9.21600000000000e+03 1.40950377625976e+02 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_SAMPLE 2.50000000000000e+03 0.00000000000000e+00 1.42857142857143e+02 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-ABERR    0
-ATMREF   0
-PLATFORM   1
-SOURCE_FLAG  1
-SINGLE_EPHEMERIDE  0
-TRI_PARAMETERS
-0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 3.52927166400000e+02 0.00000000000000e+00 0.00000000000000e+00
-T_CENTER  0.0000000000000000000000000e+00
-DT_EPHEM  1.6396618009478672317591474e-01
-T0_EPHEM  -1.8856110692024230957031250e+01
-NUMBER_OF_EPHEM   231
-EPHEM_PTS
- 8.5243851370107755064964294e+05 3.4006626093691978603601456e+06 1.0886122571664815768599510e+06
- 8.5246579847096302546560764e+05 3.4004881943365833722054958e+06 1.0891470385381437372416258e+06
- 8.5249308324084850028157234e+05 3.4003137793039688840508461e+06 1.0896818199098058976233006e+06
- 8.5252036801073397509753704e+05 3.4001393642713543958961964e+06 1.0902166012814680580049753e+06
- 8.5254765278061944991350174e+05 3.3999649492387399077415466e+06 1.0907513826531302183866501e+06
- 8.5257493755050492472946644e+05 3.3997905342061254195868969e+06 1.0912861640247923787683249e+06
- 8.5260222232039039954543114e+05 3.3996161191735109314322472e+06 1.0918209453964545391499996e+06
- 8.5262950709027587436139584e+05 3.3994417041408964432775974e+06 1.0923557267681166995316744e+06
- 8.5265679186016134917736053e+05 3.3992672891082819551229477e+06 1.0928905081397788599133492e+06
- 8.5268407663004682399332523e+05 3.3990928740756674669682980e+06 1.0934252895114410202950239e+06
- 8.5271136139993229880928993e+05 3.3989184590430529788136482e+06 1.0939600708831031806766987e+06
- 8.5273864616981777362525463e+05 3.3987440440104384906589985e+06 1.0944948522547653410583735e+06
- 8.5276590712277148850262165e+05 3.3985695495615485124289989e+06 1.0950296079771930817514658e+06
- 8.5279314425639319233596325e+05 3.3983949757014387287199497e+06 1.0955643380379620939493179e+06
- 8.5282035756828065495938063e+05 3.3982203224351610988378525e+06 1.0960990424246429465711117e+06
- 8.5284754705603234469890594e+05 3.3980455897677666507661343e+06 1.0966337211248115636408329e+06
- 8.5287471271724672988057137e+05 3.3978707777043129317462444e+06 1.0971683741260427050292492e+06
- 8.5290185454952321015298367e+05 3.3976958862498472444713116e+06 1.0977030014159071724861860e+06
- 8.5292897255046060308814049e+05 3.3975209154094271361827850e+06 1.0982376029819811228662729e+06
- 8.5295606671765749342739582e+05 3.3973458651881017722189426e+06 1.0987721788118372205644846e+06
- 8.5298313704871572554111481e+05 3.3971707355909273028373718e+06 1.0993067288930502254515886e+06
- 8.5301018354123202152550220e+05 3.3969955266229547560214996e+06 1.0998412532131930347532034e+06
- 8.5303720619280834216624498e+05 3.3968202382892388850450516e+06 1.1003757517598392441868782e+06
- 8.5306420500104420352727175e+05 3.3966448705948316492140293e+06 1.1009102245205633807927370e+06
- 8.5309117996354063507169485e+05 3.3964694235447864048182964e+06 1.1014446714829378761351109e+06
- 8.5311813107789773494005203e+05 3.3962938971441579051315784e+06 1.1019790926345381885766983e+06
- 8.5314505834171606693416834e+05 3.3961182913979971781373024e+06 1.1025134879629372153431177e+06
- 8.5317196175259735900908709e+05 3.3959426063113594427704811e+06 1.1030478574557085521519184e+06
- 8.5319884130814287345856428e+05 3.3957668418892980553209782e+06 1.1035822011004250962287188e+06
- 8.5322569700595363974571228e+05 3.3955909981368649750947952e+06 1.1041165188846632372587919e+06
- 8.5325252884363150224089622e+05 3.3954150750591154210269451e+06 1.1046508107959947083145380e+06
- 8.5327933681877900380641222e+05 3.3952390726611018180847168e+06 1.1051850768219933379441500e+06
- 8.5330612092899729032069445e+05 3.3950629909478775225579739e+06 1.1057193169502338860183954e+06
- 8.5333288117188948672264814e+05 3.3948868299244982190430164e+06 1.1062535311682885512709618e+06
- 8.5335961754505732096731663e+05 3.3947105895960149355232716e+06 1.1067877194637327920645475e+06
- 8.5338633004610484931617975e+05 3.3945342699674842879176140e+06 1.1073218818241397384554148e+06
- 8.5341301867263449821621180e+05 3.3943578710439577698707581e+06 1.1078560182370829861611128e+06
- 8.5343968342224939260631800e+05 3.3941813928304901346564293e+06 1.1083901286901354324072599e+06
- 8.5346632429255265742540359e+05 3.3940048353321352042257786e+06 1.1089242131708725355565548e+06
- 8.5349294128114846535027027e+05 3.3938281985539472661912441e+06 1.1094582716668664943426847e+06
- 8.5351953438564040698111057e+05 3.3936514825009796768426895e+06 1.1099923041656925342977047e+06
- 8.5354610360363277141004801e+05 3.3934746871782862581312656e+06 1.1105263106549228541553020e+06
- 8.5357264893272996414452791e+05 3.3932978125909231603145599e+06 1.1110602911221329122781754e+06
- 8.5359917037053662352263927e+05 3.3931208587439423426985741e+06 1.1115942455548951402306557e+06
- 8.5362566791465727146714926e+05 3.3929438256423990242183208e+06 1.1121281739407840650528669e+06
- 8.5365214156269619707018137e+05 3.3927667132913456298410892e+06 1.1126620762673728168010712e+06
- 8.5367859131225943565368652e+05 3.3925895216958387754857540e+06 1.1131959525222354568541050e+06
- 8.5370501716095267329365015e+05 3.3924122508609327487647533e+06 1.1137298026929458137601614e+06
- 8.5373141910638089757412672e+05 3.3922349007916799746453762e+06 1.1142636267670781817287207e+06
- 8.5375779714615002740174532e+05 3.3920574714931366033852100e+06 1.1147974247322049923241138e+06
- 8.5378415127786656375974417e+05 3.3918799629703573882579803e+06 1.1153311965759007725864649e+06
- 8.5381048149913595989346504e+05 3.3917023752283933572471142e+06 1.1158649422857386525720358e+06
- 8.5383678780756529886275530e+05 3.3915247082723034545779228e+06 1.1163986618492940906435251e+06
- 8.5386307020076096523553133e+05 3.3913469621071410365402699e+06 1.1169323552541390527039766e+06
- 8.5388932867632980924099684e+05 3.3911691367379589937627316e+06 1.1174660224878480657935143e+06
- 8.5391556323187996167689562e+05 3.3909912321698148734867573e+06 1.1179996635379951912909746e+06
- 8.5394177386501722503453493e+05 3.3908132484077606350183487e+06 1.1185332783921535592526197e+06
- 8.5396796057335054501891136e+05 3.3906351854568524286150932e+06 1.1190668670378967653959990e+06
- 8.5399412335448642261326313e+05 3.3904570433221440762281418e+06 1.1196004294627988710999489e+06
- 8.5402026220603403635323048e+05 3.3902788220086931250989437e+06 1.1201339656544341705739498e+06
- 8.5404637712560105137526989e+05 3.3901005215215529315173626e+06 1.1206674756003755610436201e+06
- 8.5407246811079583130776882e+05 3.3899221418657773174345493e+06 1.1212009592881978023797274e+06
- 8.5409853515922743827104568e+05 3.3897436830464228987693787e+06 1.1217344167054735589772463e+06
- 8.5412457826851261779665947e+05 3.3895651450685025192797184e+06 1.1222678478398087900131941e+06
- 8.5415059743632096797227859e+05 3.3893865279369666241109371e+06 1.1228012526789130643010139e+06
- 8.5417659266033908352255821e+05 3.3892078316568541340529919e+06 1.1233346312104666139930487e+06
- 8.5420256393825553823262453e+05 3.3890290562332100234925747e+06 1.1238679834221496712416410e+06
- 8.5422851126775646116584539e+05 3.3888502016710792668163776e+06 1.1244013093016396742314100e+06
- 8.5425443464653065893799067e+05 3.3886712679755045101046562e+06 1.1249346088366170879453421e+06
- 8.5428033407226612325757742e+05 3.3884922551515335217118263e+06 1.1254678820147607475519180e+06
- 8.5430620954265049658715725e+05 3.3883131632042089477181435e+06 1.1260011288237485568970442e+06
- 8.5433206105537235271185637e+05 3.3881339921385762281715870e+06 1.1265343492512619122862816e+06
- 8.5435788860812049824744463e+05 3.3879547419596803374588490e+06 1.1270675432849773205816746e+06
- 8.5438369219858373980969191e+05 3.3877754126725667156279087e+06 1.1276007109125752467662096e+06
- 8.5440947182445030193775892e+05 3.3875960042822780087590218e+06 1.1281338521217345260083675e+06
- 8.5443522748341085389256477e+05 3.3874165167938619852066040e+06 1.1286669669001337606459856e+06
- 8.5446095917315443512052298e+05 3.3872369502123622223734856e+06 1.1292000552354527171701193e+06
- 8.5448666689137043431401253e+05 3.3870573045428236946463585e+06 1.1297331171153697650879622e+06
- 8.5451235063574824016541243e+05 3.3868775797902927733957767e+06 1.1302661525275653693825006e+06
- 8.5453801040397980250418186e+05 3.3866977759598130360245705e+06 1.1307991614597162697464228e+06
- 8.5456364619375404436141253e+05 3.3865178930564313195645809e+06 1.1313321438995033968240023e+06
- 8.5458925800276163499802351e+05 3.3863379310851907357573509e+06 1.1318650998346051201224327e+06
- 8.5461484582869370933622122e+05 3.3861578900511385872960091e+06 1.1323980292527007404714823e+06
- 8.5464040966924023814499378e+05 3.3859777699593193829059601e+06 1.1329309321414683945477009e+06
- 8.5466594952209421899169683e+05 3.3857975708147785626351833e+06 1.1334638084885894786566496e+06
- 8.5469146538494678679853678e+05 3.3856172926225615665316582e+06 1.1339966582817404996603727e+06
- 8.5471695725548814516514540e+05 3.3854369353877143003046513e+06 1.1345294815086012240499258e+06
- 8.5474242513141187373548746e+05 3.3852564991152812726795673e+06 1.1350622781568518839776516e+06
- 8.5476786901040852535516024e+05 3.3850759838103083893656731e+06 1.1355950482141696847975254e+06
- 8.5479328889017144683748484e+05 3.3848953894778424873948097e+06 1.1361277916682353243231773e+06
- 8.5481868476839282084256411e+05 3.3847147161229276098310947e+06 1.1366605085067271720618010e+06
- 8.5484405664276552852243185e+05 3.3845339637506105937063694e+06 1.1371931987173233646899462e+06
- 8.5486940451098256744444370e+05 3.3843531323659354820847511e+06 1.1377258622877048328518867e+06
- 8.5489472837073635309934616e+05 3.3841722219739500433206558e+06 1.1382584992055497132241726e+06
- 8.5492002821972081437706947e+05 3.3839912325796983204782009e+06 1.1387911094585366081446409e+06
- 8.5494530405563034582883120e+05 3.3838101641882285475730896e+06 1.1393236930343462154269218e+06
- 8.5497055587615817785263062e+05 3.3836290168045833706855774e+06 1.1398562499206545762717724e+06
- 8.5499578367899765726178885e+05 3.3834477904338128864765167e+06 1.1403887801051435526460409e+06
- 8.5502098746184376068413258e+05 3.3832664850809588097035885e+06 1.1409212835754919797182083e+06
- 8.5504616722239123191684484e+05 3.3830851007510693743824959e+06 1.1414537603193763643503189e+06
- 8.5507132295833330135792494e+05 3.3829036374491904862225056e+06 1.1419862103244785685092211e+06
- 8.5509645466736645903438330e+05 3.3827220951803685165941715e+06 1.1425186335784771945327520e+06
- 8.5512156234718556515872478e+05 3.3825404739496493712067604e+06 1.1430510300690492149442434e+06
- 8.5514664599548513069748878e+05 3.3823587737620784901082516e+06 1.1435833997838762588799000e+06
- 8.5517170560996118001639843e+05 3.3821769946227022446691990e+06 1.1441157427106369286775589e+06
- 8.5519674118830997031182051e+05 3.3819951365365688689053059e+06 1.1446480588370088953524828e+06
- 8.5522175272822636179625988e+05 3.3818131995087224058806896e+06 1.1451803481506721582263708e+06
- 8.5524674022740765940397978e+05 3.3816311835442096926271915e+06 1.1457126106393057852983475e+06
- 8.5527170368355012033134699e+05 3.3814490886480784974992275e+06 1.1462448462905876804143190e+06
- 8.5529664309434930328279734e+05 3.3812669148253737948834896e+06 1.1467770550921997055411339e+06
- 8.5532155845750356093049049e+05 3.3810846620811428874731064e+06 1.1473092370318179018795490e+06
- 8.5534644977070903405547142e+05 3.3809023304204330779612064e+06 1.1478413920971229672431946e+06
- 8.5537131703166279476135969e+05 3.3807199198482884094119072e+06 1.1483735202757932711392641e+06
- 8.5539616023806342855095863e+05 3.3805374303697580471634865e+06 1.1489056215555085800588131e+06
- 8.5542097938760765828192234e+05 3.3803548619898864999413490e+06 1.1494376959239465650171041e+06
- 8.5544577447799290530383587e+05 3.3801722147137229330837727e+06 1.1499697433687883894890547e+06
- 8.5547054550726898014545441e+05 3.3799894885461935773491859e+06 1.1505017638776311650872231e+06
- 8.5549529247341456357389688e+05 3.3798066834924048744142056e+06 1.1510337574380415026098490e+06
- 8.5552001537401438690721989e+05 3.3796237995576718822121620e+06 1.1515657240376526024192572e+06
- 8.5554471420665283221751451e+05 3.3794408367473124526441097e+06 1.1520976636640953365713358e+06
- 8.5556938896891579497605562e+05 3.3792577950666425749659538e+06 1.1526295763050029054284096e+06
- 8.5559403965838847216218710e+05 3.3790746745209796354174614e+06 1.1531614619480073451995850e+06
- 8.5561866627265652641654015e+05 3.3788914751156410202383995e+06 1.1536933205807411577552557e+06
- 8.5564326880930515471845865e+05 3.3787081968559413217008114e+06 1.1542251521908373106271029e+06
- 8.5566784726592001970857382e+05 3.3785248397471997886896133e+06 1.1547569567659273743629456e+06
- 8.5569240164008794818073511e+05 3.3783414037947319447994232e+06 1.1552887342936429195106030e+06
- 8.5571693192939530126750469e+05 3.3781578890038556419312954e+06 1.1558204847616183105856180e+06
- 8.5574143813142855651676655e+05 3.3779742953798887319862843e+06 1.1563522081574841868132353e+06
- 8.5576592024377407506108284e+05 3.3777906229281472042202950e+06 1.1568839044688744470477104e+06
- 8.5579037826401938218623400e+05 3.3776068716539470478892326e+06 1.1574155736834192648530006e+06
- 8.5581481218975188676267862e+05 3.3774230415626084432005882e+06 1.1579472157887530047446489e+06
- 8.5583922201855888124555349e+05 3.3772391326594469137489796e+06 1.1584788307725074701011181e+06
- 8.5586360774802835658192635e+05 3.3770551449497798457741737e+06 1.1590104186223142314702272e+06
- 8.5588796937574853654950857e+05 3.3768710784389250911772251e+06 1.1595419793258064892143011e+06
- 8.5591230689930717926472425e+05 3.3766869331321995705366135e+06 1.1600735128706160467118025e+06
- 8.5593662031629285775125027e+05 3.3765027090349206700921059e+06 1.1606050192443758714944124e+06
- 8.5596090962429461069405079e+05 3.3763184061524071730673313e+06 1.1611364984347182326018810e+06
- 8.5598517482090077828615904e+05 3.3761340244899746030569077e+06 1.1616679504292751662433147e+06
- 8.5600941590370074845850468e+05 3.3759495640529422089457512e+06 1.1621993752156782429665327e+06
- 8.5603363287028414197266102e+05 3.3757650248466269113123417e+06 1.1627307727815608959645033e+06
- 8.5605782571823999751359224e+05 3.3755804068763474933803082e+06 1.1632621431145563255995512e+06
- 8.5608199444515921641141176e+05 3.3753957101474199444055557e+06 1.1637934862022942397743464e+06
- 8.5610613904913549777120352e+05 3.3752109346643211320042610e+06 1.1643248020328027196228504e+06
- 8.5613025952970853541046381e+05 3.3750260804291758686304092e+06 1.1648560905952053144574165e+06
- 8.5615435588468040805310011e+05 3.3748411474470659159123898e+06 1.1653873518772311508655548e+06
- 8.5617842811166204046458006e+05 3.3746561357233929447829723e+06 1.1659185858664640691131353e+06
- 8.5620247620826668571680784e+05 3.3744710452635586261749268e+06 1.1664497925504848826676607e+06
- 8.5622650017210619989782572e+05 3.3742858760729650966823101e+06 1.1669809719168748706579208e+06
- 8.5625050000079302117228508e+05 3.3741006281570158898830414e+06 1.1675121239532181061804295e+06
- 8.5627447569194075185805559e+05 3.3739153015211112797260284e+06 1.1680432486470937728881836e+06
- 8.5629842724316183011978865e+05 3.3737298961706552654504776e+06 1.1685743459860845468938351e+06
- 8.5632235465206881053745747e+05 3.3735444121110476553440094e+06 1.1691054159577731043100357e+06
- 8.5634625791627704165875912e+05 3.3733588493476929143071175e+06 1.1696364585497407242655754e+06
- 8.5637013703339896164834499e+05 3.3731732078859931789338589e+06 1.1701674737495686858892441e+06
- 8.5639399200104828923940659e+05 3.3729874877313496544957161e+06 1.1706984615448403637856245e+06
- 8.5641782281684048939496279e+05 3.3728016888891658745706081e+06 1.1712294219231354072690010e+06
- 8.5644162947838916443288326e+05 3.3726158113648444414138794e+06 1.1717603548720369581133127e+06
- 8.5646541198330908082425594e+05 3.3724298551637879572808743e+06 1.1722912603791260626167059e+06
- 8.5648917032921442296355963e+05 3.3722438202913971617817879e+06 1.1728221384319865610450506e+06
- 8.5651290451372251845896244e+05 3.3720577067530774511396885e+06 1.1733529890181971713900566e+06
- 8.5653661453444696962833405e+05 3.3718715145542300306260586e+06 1.1738838121253408025950193e+06
- 8.5656030038900463841855526e+05 3.3716852437002579681575298e+06 1.1744146077410005964338779e+06
- 8.5658396207500935997813940e+05 3.3714988941965634003281593e+06 1.1749453758527562022209167e+06
- 8.5660759959007927682250738e+05 3.3713124660485503263771534e+06 1.1754761164481921587139368e+06
- 8.5663121293182973749935627e+05 3.3711259592616213485598564e+06 1.1760068295148871839046478e+06
- 8.5665480209787713829427958e+05 3.3709393738411781378090382e+06 1.1765375150404262822121382e+06
- 8.5667836708583903964608908e+05 3.3707527097926260903477669e+06 1.1770681730123884044587612e+06
- 8.5670190789333195425570011e+05 3.3705659671213654801249504e+06 1.1775988034183569252490997e+06
- 8.5672542451788415201008320e+05 3.3703791458329842425882816e+06 1.1781294062457950785756111e+06
- 8.5674891695517813786864281e+05 3.3701922459368733689188957e+06 1.1786599814797239378094673e+06
- 8.5677238520236930344253778e+05 3.3700052674394692294299603e+06 1.1791905291070945095270872e+06
- 8.5679582925750513095408678e+05 3.3698182103453818708658218e+06 1.1797210491160354577004910e+06
- 8.5681924911863659508526325e+05 3.3696310746592213399708271e+06 1.1802515414946787059307098e+06
- 8.5684264478381152730435133e+05 3.3694438603855986148118973e+06 1.1807820062311540823429823e+06
- 8.5686601625107973814010620e+05 3.3692565675291232764720917e+06 1.1813124433135942090302706e+06
- 8.5688936351849138736724854e+05 3.3690691960944072343409061e+06 1.1818428527301282156258821e+06
- 8.5691268658409581985324621e+05 3.3688817460860605351626873e+06 1.1823732344688870944082737e+06
- 8.5693598544594354461878538e+05 3.3686942175086918286979198e+06 1.1829035885180006735026836e+06
- 8.5695926010208402294665575e+05 3.3685066103669139556586742e+06 1.1834339148656013421714306e+06
- 8.5698251055056846234947443e+05 3.3683189246653364971280098e+06 1.1839642134998175315558910e+06
- 8.5700573678944725543260574e+05 3.3681311604085708968341351e+06 1.1844944844087811652570963e+06
- 8.5702893881677149329334497e+05 3.3679433176012258045375347e+06 1.1850247275806239340454340e+06
- 8.5705211663059203419834375e+05 3.3677553962479140609502792e+06 1.1855549430034742690622807e+06
- 8.5707527022895961999893188e+05 3.3675673963532443158328533e+06 1.1860851306654645595699549e+06
- 8.5709839960992685519158840e+05 3.3673793179218294098973274e+06 1.1866152905547237023711205e+06
- 8.5712150477154413238167763e+05 3.3671911609582793898880482e+06 1.1871454226593850180506706e+06
- 8.5714458571186405606567860e+05 3.3670029254672043025493622e+06 1.1876755269675764720886946e+06
- 8.5716764242893853224813938e+05 3.3668146114532155916094780e+06 1.1882056034674295224249363e+06
- 8.5719067492081969976425171e+05 3.3666262189209233038127422e+06 1.1887356521470744628459215e+06
- 8.5721368318555969744920731e+05 3.3664377478749384172260761e+06 1.1892656729946439154446125e+06
- 8.5723666722121182829141617e+05 3.3662491983198733069002628e+06 1.1897956659982670098543167e+06
- 8.5725962702582776546478271e+05 3.3660605702603370882570744e+06 1.1903256311460740398615599e+06
- 8.5728256259746197611093521e+05 3.3658718637009412050247192e+06 1.1908555684261969290673733e+06
- 8.5730547393416613340377808e+05 3.3656830786462971009314060e+06 1.1913854778267641086131334e+06
- 8.5732836103399517014622688e+05 3.3654942151010152883827686e+06 1.1919153593359084334224463e+06
- 8.5735122389374591875821352e+05 3.3653052730722366832196712e+06 1.1924452129401285201311111e+06
- 8.5737406250920495949685574e+05 3.3651162525691883638501167e+06 1.1929750386246186681091785e+06
- 8.5739687687800661660730839e+05 3.3649271535974028520286083e+06 1.1935048363769752904772758e+06
- 8.5741966699781152419745922e+05 3.3647379761623614467680454e+06 1.1940346061848353128880262e+06
- 8.5744243286628299392759800e+05 3.3645487202695435844361782e+06 1.1945643480358321685343981e+06
- 8.5746517448108270764350891e+05 3.3643593859244282357394695e+06 1.1950940619176011532545090e+06
- 8.5748789183987199794501066e+05 3.3641699731324953027069569e+06 1.1956237478177745360881090e+06
- 8.5751058494031510781496763e+05 3.3639804818992260843515396e+06 1.1961534057239897083491087e+06
- 8.5753325378007336985319853e+05 3.3637909122301000170409679e+06 1.1966830356238789390772581e+06
- 8.5755589835681149270385504e+05 3.3636012641305960714817047e+06 1.1972126375050793867558241e+06
- 8.5757851866819174028933048e+05 3.3634115376061946153640747e+06 1.1977422113552223891019821e+06
- 8.5760111471187695860862732e+05 3.3632217326623769477009773e+06 1.1982717571619448717683554e+06
- 8.5762368648553243838250637e+05 3.3630318493046211078763008e+06 1.1988012749128798022866249e+06
- 8.5764623398682125844061375e+05 3.3628418875384088605642319e+06 1.1993307645956613123416901e+06
- 8.5766875721340812742710114e+05 3.3626518473692191764712334e+06 1.1998602261979263275861740e+06
- 8.5769125616295752115547657e+05 3.3624617288025338202714920e+06 1.2003896597073073498904705e+06
- 8.5771373083313391543924809e+05 3.3622715318438331596553326e+06 1.2009190651114394422620535e+06
- 8.5773618122160236816853285e+05 3.3620812564985952340066433e+06 1.2014484423979569692164660e+06
- 8.5775860732602805364876986e+05 3.3618909027723022736608982e+06 1.2019777915544942952692509e+06
- 8.5778100914407696109265089e+05 3.3617004706704355776309967e+06 1.2025071125686867162585258e+06
- 8.5780338667341391555964947e+05 3.3615099601984731853008270e+06 1.2030364054281681310385466e+06
- 8.5782573991170537192374468e+05 3.3613193713618968613445759e+06 1.2035656701205724384635687e+06
- 8.5784806885661720298230648e+05 3.3611287041661879047751427e+06 1.2040949066335351672023535e+06
- 8.5787037350581609643995762e+05 3.3609379586168262176215649e+06 1.2046241149546911474317312e+06
- 8.5789265385696839075535536e+05 3.3607471347192912362515926e+06 1.2051532950716733466833830e+06
- 8.5791490990774123929440975e+05 3.3605562324790661223232746e+06 1.2056824469721172936260700e+06
- 8.5793716595851408783346415e+05 3.3603653302388410083949566e+06 1.2062115988725612405687571e+06
- 8.5795942200928693637251854e+05 3.3601744279986158944666386e+06 1.2067407507730051875114441e+06
- 8.5798167806005978491157293e+05 3.3599835257583907805383205e+06 1.2072699026734491344541311e+06
- 8.5800393411083263345062733e+05 3.3597926235181656666100025e+06 1.2077990545738930813968182e+06
- 8.5802619016160548198968172e+05 3.3596017212779405526816845e+06 1.2083282064743370283395052e+06
- 8.5804844621237833052873611e+05 3.3594108190377154387533665e+06 1.2088573583747809752821922e+06
- 8.5807070226315117906779051e+05 3.3592199167974903248250484e+06 1.2093865102752249222248793e+06
- 8.5809295831392402760684490e+05 3.3590290145572652108967304e+06 1.2099156621756688691675663e+06
- 8.5811521436469687614589930e+05 3.3588381123170400969684124e+06 1.2104448140761128161102533e+06
- 8.5813747041546972468495369e+05 3.3586472100768149830400944e+06 1.2109739659765567630529404e+06
-
-
-EPHEM_RATES
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6640486391585048409069714e+02 -1.0637256568010616319952533e+03 3.2615346125219857640331611e+03
- 1.6633223634184048478346085e+02 -1.0639678295327923933655256e+03 3.2614563975071432651020586e+03
- 1.6618697387447238611457578e+02 -1.0644521595794024051429005e+03 3.2612999295906538463896140e+03
- 1.6604169676237307839983259e+02 -1.0649364588036689838190796e+03 3.2611433858849386524525471e+03
- 1.6589640500163756087204092e+02 -1.0654207272197916154254926e+03 3.2609867663907070891582407e+03
- 1.6575109859439584170104354e+02 -1.0659049648107304619770730e+03 3.2608300711207384665613063e+03
- 1.6560577754348793177996413e+02 -1.0663891715878457944199909e+03 3.2606733000594140321481973e+03
- 1.6546044184997876413945050e+02 -1.0668733475511373853805708e+03 3.2605164532109929496073164e+03
- 1.6531509151138340030229301e+02 -1.0673574926949252130725654e+03 3.2603595305811554680985864e+03
- 1.6516972653693176198430592e+02 -1.0678416070234695780527545e+03 3.2602025321656415144389030e+03
- 1.6502434692094388424266072e+02 -1.0683256905310900037875399e+03 3.2600454579651614039903507e+03
- 1.6487895266377478264985257e+02 -1.0688097432220470182073768e+03 3.2598883079761644694372080e+03
- 1.6473354377394440462012426e+02 -1.0692937650935000419849530e+03 3.2597310822036215540720150e+03
- 1.6458812024861276768206153e+02 -1.0697777561497096030507237e+03 3.2595737806439819905790500e+03
- 1.6444268208955483601130254e+02 -1.0702617163821553276648046e+03 3.2594164033000861309119500e+03
- 1.6429722929535063258299488e+02 -1.0707456457979376409639372e+03 3.2592589501733536963001825e+03
- 1.6415176187097014803839556e+02 -1.0712295443956359122239519e+03 3.2591014212581048923311755e+03
- 1.6400627981854333370392851e+02 -1.0717134121681508531764848e+03 3.2589438165543397190049291e+03
- 1.6386078313594023825316981e+02 -1.0721972491254218766698614e+03 3.2587861360705778679403011e+03
- 1.6371527182493582586175762e+02 -1.0726810552617694156651851e+03 3.2586283798032700360636227e+03
- 1.6356974589014510002016323e+02 -1.0731648305757730668119621e+03 3.2584705477446054828760680e+03
- 1.6342420532943802413683443e+02 -1.0736485750731133066437906e+03 3.2583126399038146701059304e+03
- 1.6327865014458964765253768e+02 -1.0741322887438498128176434e+03 3.2581546562759276639553718e+03
- 1.6313308033737490632120171e+02 -1.0746159715950825557229109e+03 3.2579965968630740462685935e+03
- 1.6298749591063381103595020e+02 -1.0750996236239716381533071e+03 3.2578384616680937142518815e+03
- 1.6284189686649634154491650e+02 -1.0755832448290971115056891e+03 3.2576802506853073282400146e+03
- 1.6269628320212251537668635e+02 -1.0760668352161389975663042e+03 3.2575219639140045728709083e+03
- 1.6255065491964234070110251e+02 -1.0765503947779970985720865e+03 3.2573636013598652425571345e+03
- 1.6240501202225075871865556e+02 -1.0770339235160915904998546e+03 3.2572051630207593007071409e+03
- 1.6225935451136780329761677e+02 -1.0775174214318424219527515e+03 3.2570466488959773414535448e+03
- 1.6211368238734843316706247e+02 -1.0780008885266697689075954e+03 3.2568880589855184553016443e+03
- 1.6196799565267767206933058e+02 -1.0784843247920532576245023e+03 3.2567293932900934123608749e+03
- 1.6182229430842050987848779e+02 -1.0789677302336731372633949e+03 3.2565706518104120732459705e+03
- 1.6167657835493190532361041e+02 -1.0794511048543695324042346e+03 3.2564118345436345407506451e+03
- 1.6153084779114689695234119e+02 -1.0799344486527220396965276e+03 3.2562529414918903967191000e+03
- 1.6138510262168045983344200e+02 -1.0804177616244710407045204e+03 3.2560939726537594651745167e+03
- 1.6123934285079255346317950e+02 -1.0809010437639362862682901e+03 3.2559349280313726922031492e+03
- 1.6109356847528817979764426e+02 -1.0813842950838979959371500e+03 3.2557758076254390289250296e+03
- 1.6094777949587739840353606e+02 -1.0818675155786761479248526e+03 3.2556166114316993116517551e+03
- 1.6080197591717512750619790e+02 -1.0823507052411705444683321e+03 3.2554573394508629462507088e+03
- 1.6065615773776139008077735e+02 -1.0828338640870013023231877e+03 3.2552979916850604240607936e+03
- 1.6051032495941117872462200e+02 -1.0833169921033884293137817e+03 3.2551385681371311875409447e+03
- 1.6036447758496444748743670e+02 -1.0838000892832319550507236e+03 3.2549790688035254788701423e+03
- 1.6021861561371125048935937e+02 -1.0842831556449918934958987e+03 3.2548194936814038555894513e+03
- 1.6007273905097653710072336e+02 -1.0847661911758882524736691e+03 3.2546598427771555179788265e+03
- 1.5992684789356533769932867e+02 -1.0852491958787609291903209e+03 3.2545001160865203928551637e+03
- 1.5978094214396261918409436e+02 -1.0857321697578697694552829e+03 3.2543403136080792137363460e+03
- 1.5963502180429836130315380e+02 -1.0862151128075352062296588e+03 3.2541804353446718778286595e+03
- 1.5948908687528256677978789e+02 -1.0866980250234969389566686e+03 3.2540204812984279669763055e+03
- 1.5934313736046522080869181e+02 -1.0871809064071751436131308e+03 3.2538604514657972686109133e+03
- 1.5919717325736135649094649e+02 -1.0876637569699296363978647e+03 3.2537003458482004134566523e+03
- 1.5905119457023093332281860e+02 -1.0881465767018205497151939e+03 3.2535401644449275408987887e+03
- 1.5890520132463379354703648e+02 -1.0886293657278072259941837e+03 3.2533799073511172537109815e+03
- 1.5875919370516888307065528e+02 -1.0891121243716477238194784e+03 3.2532195749842476288904436e+03
- 1.5861317192483500093658222e+02 -1.0895948525538221929309657e+03 3.2530591675708074035355821e+03
- 1.5846713604149678644716914e+02 -1.0900775499860728814383037e+03 3.2528986850213373145379592e+03
- 1.5832108605373429099927307e+02 -1.0905602166499395480059320e+03 3.2527381273273167607840151e+03
- 1.5817502196225746047275607e+02 -1.0910428525525221630232409e+03 3.2525774944894560576358344e+03
- 1.5802894377274631665386551e+02 -1.0915254576853008074976970e+03 3.2524167865120157330238726e+03
- 1.5788285148165081750448735e+02 -1.0920080320482757088029757e+03 3.2522560033871850464493036e+03
- 1.5773674509074601246538805e+02 -1.0924905756485463825811166e+03 3.2520951451227742836636025e+03
- 1.5759062460358185830955335e+02 -1.0929730884790130858164048e+03 3.2519342117145233714836650e+03
- 1.5744449002086832933855476e+02 -1.0934555705396760458825156e+03 3.2517732031595924127032049e+03
- 1.5729834134083046137675410e+02 -1.0939380218376347784214886e+03 3.2516121194650813777116127e+03
- 1.5715217856914821936697990e+02 -1.0944204423657895404176088e+03 3.2514509606253104720963165e+03
- 1.5700600170830659862986067e+02 -1.0949028321213004346645903e+03 3.2512897266431191383162513e+03
- 1.5685981075440059839820606e+02 -1.0953851911126873801549664e+03 3.2511284175177979705040343e+03
- 1.5671360570849520854608272e+02 -1.0958675193314304578962037e+03 3.2509670332514765505038667e+03
- 1.5656738657840040218616195e+02 -1.0963498167817895136977313e+03 3.2508055738391849445179105e+03
- 1.5642115336269620229359134e+02 -1.0968320834623443715827307e+03 3.2506440392823437832703348e+03
- 1.5627490605747757967947109e+02 -1.0973143193745156622753711e+03 3.2504824295859220910642762e+03
- 1.5612864466948954600411525e+02 -1.0977965245168827550514834e+03 3.2503207447449503888492472e+03
- 1.5598236919660209309768106e+02 -1.0982786988851858041016385e+03 3.2501589847587183612631634e+03
- 1.5583607964449521432470647e+02 -1.0987608424851050585857593e+03 3.2499971496336165728280321e+03
- 1.5568977601671883803646779e+02 -1.0992429553138003939238843e+03 3.2498352393646746349986643e+03
- 1.5554345830475304524043167e+02 -1.0997250373698516341391951e+03 3.2496732539469226139772218e+03
- 1.5539712651605279347677424e+02 -1.1002070886560991311853286e+03 3.2495111933917205533361994e+03
- 1.5525078065168307261956215e+02 -1.1006891091725424303149339e+03 3.2493490576912581673241220e+03
- 1.5510442071093387994551449e+02 -1.1011710989120820158859715e+03 3.2491868468469560866651591e+03
- 1.5495804669877517767417885e+02 -1.1016530578803974549373379e+03 3.2490245608623636144329794e+03
- 1.5481165861378701720241224e+02 -1.1021349860774892022163840e+03 3.2488621997296709196234588e+03
- 1.5466525645845433700742433e+02 -1.1026168835033568029757589e+03 3.2486997634566882879880723e+03
- 1.5451884023135718848607212e+02 -1.1030987501551605873828521e+03 3.2485372520434157195268199e+03
- 1.5437240993533552568806044e+02 -1.1035805860329003280639881e+03 3.2483746654827527891029604e+03
- 1.5422596557642430070700357e+02 -1.1040623911351560764160240e+03 3.2482120037825102372153196e+03
- 1.5407950715249356221647759e+02 -1.1045441654661881329957396e+03 3.2480492669348773233650718e+03
- 1.5393303466034831217257306e+02 -1.1050259090203160212695366e+03 3.2478864549434042601205874e+03
- 1.5378654810531349994562333e+02 -1.1055076218003800931910519e+03 3.2477235678166111938480753e+03
- 1.5364004749164914187531394e+02 -1.1059893038120601431728574e+03 3.2475606055381676924298517e+03
- 1.5349353281403023174789269e+02 -1.1064709550425764064129908e+03 3.2473975681173046723415609e+03
- 1.5334700407778177577711176e+02 -1.1069525754976086773240240e+03 3.2472344555604113338631578e+03
- 1.5320046128787370776080934e+02 -1.1074341651771569559059571e+03 3.2470712678525778756011277e+03
- 1.5305390443827107560537115e+02 -1.1079157240840613667387515e+03 3.2469080050030343045364134e+03
- 1.5290733353252386450549238e+02 -1.1083972522169017338455888e+03 3.2467446670167505544668529e+03
- 1.5276074857595705225321581e+02 -1.1088787495671583656076109e+03 3.2465812538816567212052178e+03
- 1.5261414956502062523213681e+02 -1.1093602161419310050405329e+03 3.2464177656020128779346123e+03
- 1.5246753650290960990787426e+02 -1.1098416519454797253274592e+03 3.2462542021820790978381410e+03
- 1.5232090939388396577669482e+02 -1.1103230569664444828958949e+03 3.2460905636154652711411472e+03
- 1.5217426823261868662484630e+02 -1.1108044312105055269057630e+03 3.2459268499106910894624889e+03
- 1.5202761302550379696185701e+02 -1.1112857746790823512128554e+03 3.2457630610620767583895940e+03
- 1.5188094377431426096336509e+02 -1.1117670873650754401751328e+03 3.2455991970660725201014429e+03
- 1.5173426047514507786218019e+02 -1.1122483692784246613882715e+03 3.2454352579297783449874260e+03
- 1.5158756313545123362018785e+02 -1.1127296204134499930660240e+03 3.2452712436503538810939062e+03
- 1.5144085175416770994161197e+02 -1.1132108407687312592315720e+03 3.2451071542256695465766825e+03
- 1.5129412632774455005346681e+02 -1.1136920303442686872585909e+03 3.2449429896599849598715082e+03
- 1.5114738793289058094160282e+02 -1.1141731895007401362818200e+03 3.2447787497076415093033575e+03
- 1.5100063742728090687705844e+02 -1.1146543180634866985201370e+03 3.2446144340193213793099858e+03
- 1.5085387339269863105073455e+02 -1.1151354148468149105610792e+03 3.2444500427050743383006193e+03
- 1.5070709462676566658956290e+02 -1.1156164792060487798153190e+03 3.2442855759608582957298495e+03
- 1.5056030113303191342311038e+02 -1.1160975111383481817028951e+03 3.2441210337866741610923782e+03
- 1.5041349291398245213713381e+02 -1.1165785106451330648269504e+03 3.2439564161860716922092251e+03
- 1.5026666996890722316493338e+02 -1.1170594777221433560043806e+03 3.2437917231569203977414872e+03
- 1.5011983229780622650650912e+02 -1.1175404123778992016013945e+03 3.2436269547020606296428014e+03
- 1.4997297990067951900527987e+02 -1.1180213146067208072054200e+03 3.2434621108186524907068815e+03
- 1.4982611278249700603737438e+02 -1.1185021844057675934891449e+03 3.2432971915024363624979742e+03
- 1.4967923094538872419434483e+02 -1.1189830217793000883830246e+03 3.2431321967619314818875864e+03
- 1.4953233438828962675870571e+02 -1.1194638267202180941239931e+03 3.2429671265942979516694322e+03
- 1.4938542311119977057387587e+02 -1.1199445992342016324982978e+03 3.2428019809981160506140441e+03
- 1.4923849711731409684034588e+02 -1.1204253393269307252921863e+03 3.2426367599719656027446035e+03
- 1.4909155640982763202373462e+02 -1.1209060469856253803300206e+03 3.2424714635172667840379290e+03
- 1.4894460098803031655734230e+02 -1.1213867222117055462149438e+03 3.2423060916389895282918587e+03
- 1.4879763085369719988193538e+02 -1.1218673650136911419394892e+03 3.2421406443286136891401839e+03
- 1.4865064600966823604721867e+02 -1.1223479753844824244879419e+03 3.2419751215903997945133597e+03
- 1.4850364645523342232991126e+02 -1.1228285533254991150897695e+03 3.2418095234250572502787691e+03
- 1.4835663219145777702578926e+02 -1.1233090988381613897217903e+03 3.2416438498318757410743274e+03
- 1.4820960322224627248033357e+02 -1.1237896119167892265977571e+03 3.2414781008122763523715548e+03
- 1.4806255954688890597026329e+02 -1.1242700925670626475039171e+03 3.2413122763634182774694636e+03
- 1.4791550116645063894793566e+02 -1.1247505407875614764634520e+03 3.2411463764831719345238525e+03
- 1.4776842808483650060225045e+02 -1.1252309565740258676669328e+03 3.2409804011757969419704750e+03
- 1.4762134030098147263743158e+02 -1.1257113399278759970911779e+03 3.2408143504462636883545201e+03
- 1.4747423781879055582066940e+02 -1.1261916908519515345687978e+03 3.2406482242832116753561422e+03
- 1.4732712217717991620702378e+02 -1.1266720119135979985003360e+03 3.2404820238907946077233646e+03
- 1.4717999931881556108237419e+02 -1.1271523128440194341237657e+03 3.2403157538243463022809010e+03
- 1.4703286835442759183933958e+02 -1.1276325917986468994058669e+03 3.2401494131722315614752006e+03
- 1.4688572340240963853830181e+02 -1.1281128387849969385570148e+03 3.2399829972392476520326454e+03
- 1.4673856388695500641006220e+02 -1.1285930528275357573875226e+03 3.2398165055731269603711553e+03
- 1.4659138981090367792603502e+02 -1.1290732339248429525468964e+03 3.2396499381660596554866061e+03
- 1.4644420117177068618730118e+02 -1.1295533820712385022488888e+03 3.2394832950279851502273232e+03
- 1.4629699797488095214248460e+02 -1.1300334972724028830270981e+03 3.2393165761525146990607027e+03
- 1.4614978022023453263500414e+02 -1.1305135795269154641573550e+03 3.2391497815353873193089385e+03
- 1.4600254790463640119924094e+02 -1.1309936288361966489901533e+03 3.2389829111872531939297915e+03
- 1.4585530103696154924364237e+02 -1.1314736451988262615486747e+03 3.2388159651038522497401573e+03
- 1.4570803961685493277400383e+02 -1.1319536286077045588172041e+03 3.2386489432809244135569315e+03
- 1.4556076363934661799248715e+02 -1.1324335790727711810177425e+03 3.2384818457248602499021217e+03
- 1.4541347311366652661490662e+02 -1.1329134965897665097145364e+03 3.2383146724306893702305388e+03
- 1.4526616803945967149047647e+02 -1.1333933811544300169771304e+03 3.2381474233977019139274489e+03
- 1.4511884841459607287106337e+02 -1.1338732327696022821328370e+03 3.2379800986301574994286057e+03
- 1.4497151424085069493230549e+02 -1.1343530514409630995942280e+03 3.2378126981301866180729121e+03
- 1.4482416552603353920858353e+02 -1.1348328371599923229950946e+03 3.2376452218906888447236270e+03
- 1.4467680226836955625913106e+02 -1.1353125899252700037322938e+03 3.2374776699088242821744643e+03
- 1.4452942446643879748080508e+02 -1.1357923097438963395688916e+03 3.2373100421980830105894711e+03
- 1.4438203212095126559688651e+02 -1.1362719966130312059249263e+03 3.2371423387485256171203218e+03
- 1.4423462523581187610943743e+02 -1.1367516505298344782204367e+03 3.2369745595644108107080683e+03
- 1.4408720381563568935234798e+02 -1.1372312714928862078522798e+03 3.2368067046428996036411263e+03
- 1.4393976785509767069015652e+02 -1.1377108595092865925835213e+03 3.2366387739854117171489634e+03
- 1.4379231736094280336146767e+02 -1.1381904145705154860479524e+03 3.2364707675926574665936641e+03
- 1.4364485233352607451706717e+02 -1.1386699366808329614286777e+03 3.2363026854596660086826887e+03
- 1.4349737250056406878684356e+02 -1.1391494252836021132679889e+03 3.2361345272335702247801237e+03
- 1.4334987196447548285505036e+02 -1.1396288682094923387921881e+03 3.2359662851008642974193208e+03
- 1.4320234958820188353456615e+02 -1.1401082628712790665304055e+03 3.2357979574995574694185052e+03
- 1.4305481258352696727342845e+02 -1.1405876238480182109924499e+03 3.2356295539059651673596818e+03
- 1.4290726368145010383159388e+02 -1.1410669567089184965880122e+03 3.2354610779211875524197239e+03
- 1.4275970288303631150483852e+02 -1.1415462614511395713634556e+03 3.2352925295487734729249496e+03
- 1.4261213018473560509846720e+02 -1.1420255380761013839219231e+03 3.2351239087908538749616127e+03
- 1.4246454559364792658016086e+02 -1.1425047865809640370571287e+03 3.2349552156452987219381612e+03
- 1.4231694910835332734677650e+02 -1.1429840069643078095396049e+03 3.2347864501071371705620550e+03
- 1.4216934072991674042896193e+02 -1.1434631992360723415913526e+03 3.2346176121785001669195481e+03
- 1.4202172045869320982092177e+02 -1.1439423633877377142198384e+03 3.2344487018636468746990431e+03
- 1.4187408829681271527078934e+02 -1.1444214994164640302187763e+03 3.2342797191583181302121375e+03
- 1.4172644424711521082826948e+02 -1.1449006073265111353975954e+03 3.2341106640610933027346618e+03
- 1.4157878830924573776428588e+02 -1.1453796871207191543362569e+03 3.2339415365819131693569943e+03
- 1.4143112048462427310369094e+02 -1.1458587387948280138516566e+03 3.2337723367101266376266722e+03
- 1.4128344077218582697241800e+02 -1.1463377623488377139437944e+03 3.2336030644478641988825984e+03
- 1.4113574917725534874080040e+02 -1.1468167577827484819863457e+03 3.2334337197965464838489424e+03
- 1.4098804569876784853477147e+02 -1.1472957250923000174225308e+03 3.2332643027590124802372884e+03
- 1.4084033033672335477604065e+02 -1.1477746642860124666185584e+03 3.2330948133324227455887012e+03
- 1.4069260309573684253336978e+02 -1.1482535753596257563913241e+03 3.2329252515110970307432581e+03
- 1.4054486397438827793848759e+02 -1.1487324583131398867408279e+03 3.2327556173021353060903493e+03
- 1.4039711297338766371467500e+02 -1.1492113131479748062702129e+03 3.2325859107090882389456965e+03
- 1.4024935009628501347833662e+02 -1.1496901398570307719637640e+03 3.2324161317284051619935781e+03
- 1.4010157534166032178291061e+02 -1.1501689384459878056077287e+03 3.2322462803529861048446037e+03
- 1.3995378871306357382309216e+02 -1.1506477089176853496610420e+03 3.2320763565913512138649821e+03
- 1.3980599021049474117717182e+02 -1.1511264512650241158553399e+03 3.2319063604378206946421415e+03
- 1.3965817983537382929171144e+02 -1.1516051654908435466495575e+03 3.2317362918952339896350168e+03
- 1.3951035376117775399507082e+02 -1.1520838438817481801379472e+03 3.2315661459936200117226690e+03
- 1.3936250507077104998643335e+02 -1.1525624723599380558880512e+03 3.2313959137721199113002513e+03
- 1.3921463631800915550229547e+02 -1.1530410558300657157815294e+03 3.2312255985783644973707851e+03
- 1.3906675321764933528356778e+02 -1.1535196057145456052239751e+03 3.2310552078609212003357243e+03
- 1.3891885585808608993829694e+02 -1.1539981221752564124471974e+03 3.2308847417326796858105808e+03
- 1.3877094424251438908868295e+02 -1.1544766052192985625879373e+03 3.2307142001886691105028149e+03
- 1.3862301836489930906282098e+02 -1.1549550548452518796693766e+03 3.2305435832253401713387575e+03
- 1.3847507823305079455167288e+02 -1.1554334710460166206758004e+03 3.2303728908490829780930653e+03
- 1.3832712384696881713352923e+02 -1.1559118538230122794630006e+03 3.2302021230598970760183875e+03
- 1.3817915520807335383324244e+02 -1.1563902031833392811677186e+03 3.2300312798570726044999901e+03
- 1.3803117231920444396564562e+02 -1.1568685191241575012099929e+03 3.2298603612377696663315874e+03
- 1.3788317517468212258791027e+02 -1.1573468016383669692004332e+03 3.2296893672012779461510945e+03
- 1.3773516378373625457243179e+02 -1.1578250507330676555284299e+03 3.2295182977525678325037006e+03
- 1.3758713814707692790761939e+02 -1.1583032664068393842171645e+03 3.2293471528831191790231969e+03
- 1.3743909826292909315270663e+02 -1.1587814486568424854340265e+03 3.2291759326050018898968119e+03
- 1.3729104413555276664737903e+02 -1.1592595974830769591790158e+03 3.2290046369132464860740583e+03
- 1.3714297576423791724664625e+02 -1.1597377128812825048953528e+03 3.2288332658021722636476625e+03
- 1.3699489315075956596956530e+02 -1.1602157948628191661555320e+03 3.2286618192774594717775472e+03
- 1.3684679629724766414256010e+02 -1.1606938434220071485469816e+03 3.2284902973369780738721602e+03
- 1.3669868520654225108046376e+02 -1.1611718585489063571003499e+03 3.2283186999835684218851384e+03
- 1.3655055987757825164408132e+02 -1.1616498402562967839912744e+03 3.2281470272158098850923125e+03
- 1.3640242031177572812339349e+02 -1.1621277885427584806166124e+03 3.2279752790294432998052798e+03
- 1.3625426651232965014060028e+02 -1.1626057033983513520070119e+03 3.2278034554294376903271768e+03
- 1.3610609847994999199727317e+02 -1.1630835848287554199487204e+03 3.2276315564186338633589912e+03
- 1.3595791621605675913997402e+02 -1.1635614328396507062279852e+03 3.2274595819892215331492480e+03
- 1.3580971972206992859355523e+02 -1.1640392474210973432491301e+03 3.2272875321433302815421484e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
- 1.3573561791817436983365042e+02 -1.1642781463516184885520488e+03 3.2272014883682177242008038e+03
-
-
-DT_QUAT 8.8483028132992316838745239e-02
-T0_QUAT -1.8139020740985870361328125e+01
-NUMBER_OF_QUATERNIONS  411
-QUATERNIONS
- 4.4936709038965549911637254e-01 -6.5015588549036396059932486e-01 2.3349115212463461555003619e-01 5.6643500925194611994584193e-01
- 4.4938366541447033464251604e-01 -6.5017385301285568477425159e-01 2.3346616416198365251410962e-01 5.6641150412865026719799744e-01
- 4.4940024043928517016865953e-01 -6.5019182053534740894917832e-01 2.3344117619933268947818306e-01 5.6638799900535441445015294e-01
- 4.4941681546410000569480303e-01 -6.5020978805783913312410505e-01 2.3341618823668172644225649e-01 5.6636449388205856170230845e-01
- 4.4943339048891484122094653e-01 -6.5022775558033085729903178e-01 2.3339120027403076340632992e-01 5.6634098875876270895446396e-01
- 4.4944996551372967674709002e-01 -6.5024572310282258147395851e-01 2.3336621231137980037040336e-01 5.6631748363546685620661947e-01
- 4.4946654053854451227323352e-01 -6.5026369062531430564888524e-01 2.3334122434872883733447679e-01 5.6629397851217100345877498e-01
- 4.4948311556335934779937702e-01 -6.5028165814780602982381197e-01 2.3331623638607787429855023e-01 5.6627047338887515071093048e-01
- 4.4949969058817418332552052e-01 -6.5029962567029775399873870e-01 2.3329124842342691126262366e-01 5.6624696826557929796308599e-01
- 4.4951626561298901885166401e-01 -6.5031759319278947817366543e-01 2.3326626046077594822669710e-01 5.6622346314228344521524150e-01
- 4.4953284063780385437780751e-01 -6.5033556071528120234859216e-01 2.3324127249812498519077053e-01 5.6619995801898759246739701e-01
- 4.4954941566261868990395101e-01 -6.5035352823777292652351889e-01 2.3321628453547402215484396e-01 5.6617645289569173971955252e-01
- 4.4956597299825906688397481e-01 -6.5037134261204543328460659e-01 2.3319113247167327918063506e-01 5.6615320220565079623042948e-01
- 4.4958251683477590265880508e-01 -6.5038904172850353635482179e-01 2.3316585710802850694989274e-01 5.6613014231275993193293061e-01
- 4.4959890585552259034685108e-01 -6.5040671932391957987817932e-01 2.3314065371275444205068084e-01 5.6610719735594461354821760e-01
- 4.4961495352273234127338242e-01 -6.5042435056461456177601121e-01 2.3311560982187559676326316e-01 5.6608450801865772827881074e-01
- 4.4963097135262219961049368e-01 -6.5044199947613345891284098e-01 2.3309059019069511276001094e-01 5.6606180906552994169800286e-01
- 4.4964644483623100734703826e-01 -6.5045999734478798792736143e-01 2.3306602998232173185044758e-01 5.6603894933885601226108975e-01
- 4.4966191746607320212092418e-01 -6.5047799423871455193335578e-01 2.3304146953329843428015522e-01 5.6601608852547147243683412e-01
- 4.4967791198996875934312811e-01 -6.5049575593978892218416377e-01 2.3301703015490593529079888e-01 5.6599303054936311863087894e-01
- 4.4969404492534642558965174e-01 -6.5051345425823325907543904e-01 2.3299262285334973454631324e-01 5.6596991923919326428205068e-01
- 4.4971084286179707767416858e-01 -6.5053102141866014918036853e-01 2.3296836662317746413641828e-01 5.6594636507133400105118426e-01
- 4.4972823191005312226664614e-01 -6.5054847183474207028552883e-01 2.3294424467040011905716312e-01 5.6592241702505119427257796e-01
- 4.4974511372765824113173494e-01 -6.5056601922045320662846279e-01 2.3292010883189998016185029e-01 5.6589876322137755426666672e-01
- 4.4976058660490320084690552e-01 -6.5058383811989906053696586e-01 2.3289593484216208896242506e-01 5.6587592973017508679589582e-01
- 4.4977606851069595883529928e-01 -6.5060165678100767561176099e-01 2.3287175087634973125183535e-01 5.6585309050375709460922735e-01
- 4.4979262191936453252338879e-01 -6.5061955273758564910480118e-01 2.3284650831223663303148896e-01 5.6582974332324298405438867e-01
- 4.4980917443399481836507903e-01 -6.5063744766711650857615723e-01 2.3282126548983891889399445e-01 5.6580639500092111404683237e-01
- 4.4982640841754939486918374e-01 -6.5065559307521181331424032e-01 2.3279659228933669012917562e-01 5.6578197930703388873752147e-01
- 4.4984387135131964630119228e-01 -6.5067382214346292101936342e-01 2.3277211080621948435798174e-01 5.6575720323800715583217880e-01
- 4.4986088459848888598813232e-01 -6.5069169252181313645166938e-01 2.3274762034757009998564570e-01 5.6573319773008468036579188e-01
- 4.4987742721149781566225556e-01 -6.5070918753960593772234233e-01 2.3272312052227847600782695e-01 5.6570999894953455378043827e-01
- 4.4989397940327630065482367e-01 -6.5072674773784755508643229e-01 2.3269867802849167337519987e-01 5.6568669095091894671867294e-01
- 4.4991056710642879368222680e-01 -6.5074453743372684400014805e-01 2.3267443584875935336242492e-01 5.6566300525012069844166263e-01
- 4.4992715393029059089968769e-01 -6.5076232612322060244736122e-01 2.3265019342055251461154342e-01 5.6563931843204040550432410e-01
- 4.4994363581769603044335781e-01 -6.5077935478561510507233834e-01 2.3262550080973967703279470e-01 5.6561677162632739701564333e-01
- 4.4996011333840374435411036e-01 -6.5079635680170122569165869e-01 2.3260079273514053244120703e-01 5.6559426234457843563063761e-01
- 4.4997660875209388731121862e-01 -6.5081337366576808012297306e-01 2.3257645657913172954067704e-01 5.6557156583304413199897454e-01
- 4.4999311113684647978061548e-01 -6.5083039616336857413614325e-01 2.3255227535614950151732216e-01 5.6554879063250773629789592e-01
- 4.5001009294006771854768090e-01 -6.5084759935777103390108778e-01 2.3252788266198692879171972e-01 5.6552550998786199620838033e-01
- 4.5002766831746515707735057e-01 -6.5086502638823706679005454e-01 2.3250322825110106284007827e-01 5.6550160391125448011706567e-01
- 4.5004503742636042806779528e-01 -6.5088244423005048311381415e-01 2.3247863298025681078051718e-01 5.6547784509090393001429220e-01
- 4.5006148754307967463361706e-01 -6.5089988061163550625565222e-01 2.3245431297607879739253178e-01 5.6545468008416754912559554e-01
- 4.5007748484652948528506045e-01 -6.5091851379846854541710854e-01 2.3243033975902191445861433e-01 5.6543035219920834144602395e-01
- 4.5009413906423784146326739e-01 -6.5093665295848612828422119e-01 2.3240552827039445693557695e-01 5.6540641157010695927453980e-01
- 4.5011137101966225415594636e-01 -6.5095399632217565422109828e-01 2.3238002512257058262967746e-01 5.6538320834193722674854143e-01
- 4.5012847235987962779546478e-01 -6.5097141252378343256879134e-01 2.3235505244242410372024210e-01 5.6535980406483621329982725e-01
- 4.5014570390457259163596859e-01 -6.5098839228496052644601377e-01 2.3233006936868033642795695e-01 5.6533679982258655538629455e-01
- 4.5016301564505029064733321e-01 -6.5100551255453309451581845e-01 2.3230492856732645745587718e-01 5.6531363165263714964936526e-01
- 4.5017993532534938960765203e-01 -6.5102364686818126049416833e-01 2.3227998550858897086612842e-01 5.6528952350193761855479124e-01
- 4.5019641258051568133424780e-01 -6.5104200195457129218823411e-01 2.3225509326849608227050226e-01 5.6526548934236231502836745e-01
- 4.5021312222332832142512871e-01 -6.5105979636751520889248468e-01 2.3223050127550515231433792e-01 5.6524178933367941191079353e-01
- 4.5022866686283313786276494e-01 -6.5107717263429165654997632e-01 2.3220714727602428939512436e-01 5.6521898726368302590117310e-01
- 4.5024510488776903205376811e-01 -6.5109472148275027159058936e-01 2.3218310689414875525038440e-01 5.6519555381733310728264996e-01
- 4.5026136844492747890456030e-01 -6.5111245947785445498112722e-01 2.3215883127030184640560151e-01 5.6517213507214603129824582e-01
- 4.5027797947937903133563964e-01 -6.5113035467333291173019916e-01 2.3213424259659681814227383e-01 5.6514838390731692019386401e-01
- 4.5029425250256344126498220e-01 -6.5114798482355373820951172e-01 2.3210999322478895190435821e-01 5.6512506497993109100264064e-01
- 4.5031039657116944674442038e-01 -6.5116546965019816983755163e-01 2.3208591796702965348586645e-01 5.6510194173843919518418488e-01
- 4.5032677066361270767913538e-01 -6.5118316063199943588557517e-01 2.3206159630837128182712092e-01 5.6507849583205016497089446e-01
- 4.5034163853006203837026078e-01 -6.5120059171486677218609884e-01 2.3203802458328984248403515e-01 5.6505623888578637714630304e-01
- 4.5035898277898051000889268e-01 -6.5121826904345558872932997e-01 2.3201300965852547641965486e-01 5.6503231415868637732558000e-01
- 4.5037696777034053052801710e-01 -6.5123534996789311790621468e-01 2.3198778963643454376075681e-01 5.6500864711417575492191645e-01
- 4.5039396043234952715650365e-01 -6.5125304986523613326454551e-01 2.3196316637209310473899393e-01 5.6498480943643425433720040e-01
- 4.5041183390996836211073173e-01 -6.5126980946381829440383626e-01 2.3193848162870098206234104e-01 5.6496137557765313541580099e-01
- 4.5042917219621986246735901e-01 -6.5128677216312458320146561e-01 2.3191406536716793751473631e-01 5.6493802095879441793613296e-01
- 4.5044648612649801355800605e-01 -6.5130423751314026059588969e-01 2.3188991489992596961577931e-01 5.6491399407469344851051574e-01
- 4.5046426560643476610934499e-01 -6.5132187103802285932374616e-01 2.3186569274635726589650631e-01 5.6488942833658728481793787e-01
- 4.5048126687403305945522902e-01 -6.5133950586760158696364442e-01 2.3184116831587472939979477e-01 5.6486560256900508747435197e-01
- 4.5049825044364238957328439e-01 -6.5135655018115645731313634e-01 2.3181631722194526168401296e-01 5.6484260281336273745722565e-01
- 4.5051529232189307938583056e-01 -6.5137449137134184606878762e-01 2.3179132896473941816140041e-01 5.6481857546614477882940264e-01
- 4.5053158601231552138344227e-01 -6.5139229965876999095542033e-01 2.3176777654859959110211776e-01 5.6479470580398083434658929e-01
- 4.5054848360920862759826377e-01 -6.5140994939688756648621393e-01 2.3174364814140424595478862e-01 5.6477077057006053184551320e-01
- 4.5056549777071880358292333e-01 -6.5142762723615343922745069e-01 2.3171878241364066153273882e-01 5.6474700934917687611402926e-01
- 4.5058255701081584287948090e-01 -6.5144534486745642176686033e-01 2.3169387143020644947988274e-01 5.6472318166496304758794622e-01
- 4.5059984291268934120111567e-01 -6.5146261825954043800379623e-01 2.3166930976026489652497276e-01 5.6469953912916082128248263e-01
- 4.5061719075905304343621083e-01 -6.5147946450098126458527759e-01 2.3164500784892530504954777e-01 5.6467623029892577424249112e-01
- 4.5063440981933816642523993e-01 -6.5149670247357138741506333e-01 2.3162076873122935949389500e-01 5.6465254346827664644337119e-01
- 4.5065353254698886642515276e-01 -6.5151336148435656792088366e-01 2.3159627868086513080569944e-01 5.6462810513775318899121203e-01
- 4.5067047469580179264170283e-01 -6.5153094353992779819151338e-01 2.3157200415536421944651124e-01 5.6460425054979912484753868e-01
- 4.5068644139060243247740800e-01 -6.5154807583946061644297743e-01 2.3154912537564548147273058e-01 5.6458111813480360563488603e-01
- 4.5070329822154536758560539e-01 -6.5156566908522040026952027e-01 2.3152485795151145353543143e-01 5.6455730975011075845060304e-01
- 4.5072001700772151844276436e-01 -6.5158258069840846449238825e-01 2.3150041309961555402452404e-01 5.6453446797664064149557817e-01
- 4.5073683451936508159718642e-01 -6.5159979817118718337098926e-01 2.3147603198661020895698925e-01 5.6451116520974531365339999e-01
- 4.5075345694090435122447502e-01 -6.5161773654056864835126817e-01 2.3145122946795121388063876e-01 5.6448735580112341381209262e-01
- 4.5076952861873170741446870e-01 -6.5163549364453809964459197e-01 2.3142606422420966549857724e-01 5.6446434102534548404861425e-01
- 4.5078672168540712128503856e-01 -6.5165295774801224037986458e-01 2.3140147143791386930011811e-01 5.6444053116936876435261183e-01
- 4.5080379359566735697484319e-01 -6.5166956667119546597888302e-01 2.3137788228675207347073695e-01 5.6441739089332587653302653e-01
- 4.5082050307623366958154065e-01 -6.5168695105882523677109930e-01 2.3135429477188534930220953e-01 5.6439364110197742796515286e-01
- 4.5083863770024512618306289e-01 -6.5170428383117728898810128e-01 2.3133010036269197051694846e-01 5.6436905820470584238535139e-01
- 4.5085623520537820851927790e-01 -6.5172176133905257433553970e-01 2.3130553426870548161531360e-01 5.6434488638617452682666453e-01
- 4.5087274300762281153964750e-01 -6.5173930881350949917418802e-01 2.3128161730114579763828431e-01 5.6432123516543053476368641e-01
- 4.5088916943768253542401681e-01 -6.5175701600556035231193164e-01 2.3125787313100332198700926e-01 5.6429739064277950610915013e-01
- 4.5090653362474797383185887e-01 -6.5177456431779579038021666e-01 2.3123417877508262163743780e-01 5.6427295682947142818619568e-01
- 4.5092452973176716524150720e-01 -6.5179160432641813915921603e-01 2.3121096115958864047890131e-01 5.6424840669286624450506906e-01
- 4.5094177307562366419091404e-01 -6.5180921093156141132851644e-01 2.3118627759451002012802689e-01 5.6422440118465466696306976e-01
- 4.5095950602224094128089860e-01 -6.5182594771418922441341692e-01 2.3116212890039344873827076e-01 5.6420078693397224256500522e-01
- 4.5097689913839111852666974e-01 -6.5184347073231008184990287e-01 2.3113812602832334297531247e-01 5.6417647310331220378287753e-01
- 4.5099352919249668936174658e-01 -6.5186123546959962027358415e-01 2.3111370012126117301498596e-01 5.6415266013270193301565314e-01
- 4.5101008603278053277207960e-01 -6.5187871763080129650091976e-01 2.3108951195622487451153404e-01 5.6412913172478518220032129e-01
- 4.5102630287244699358595312e-01 -6.5189606713228898104972586e-01 2.3106543448400662654762527e-01 5.6410598007943801857067001e-01
- 4.5104276089762712631525687e-01 -6.5191357172569142086615557e-01 2.3104128822376648888514694e-01 5.6408248153758555609726955e-01
- 4.5105959038729992460758922e-01 -6.5193100084837163343820521e-01 2.3101718229116574576664789e-01 5.6405875362299973119206697e-01
- 4.5107556871375953377878432e-01 -6.5194793175432452780881931e-01 2.3099318434482074557934084e-01 5.6403623498588884022098000e-01
- 4.5109250257548172413635257e-01 -6.5196553315310512566327361e-01 2.3096885546105569431141191e-01 5.6401230971281668402639298e-01
- 4.5110762180773250618059933e-01 -6.5198244610829625411696497e-01 2.3094620731557125026256472e-01 5.6398994037142846647014949e-01
- 4.5112479952582767994684332e-01 -6.5199991267921530990747669e-01 2.3092209710319616666751585e-01 5.6396588034076977624664551e-01
- 4.5114273414072125767404486e-01 -6.5201729006979136649135853e-01 2.3089860460765840310948249e-01 5.6394106187820391973275491e-01
- 4.5116028838010191481799893e-01 -6.5203493459353401018319119e-01 2.3087442772990993122839143e-01 5.6391651587692981362209821e-01
- 4.5117672680562470599596736e-01 -6.5205296547459701272941857e-01 2.3085088271967066364531718e-01 5.6389215400845527081941100e-01
- 4.5119274406739517946363094e-01 -6.5207091853601628628211984e-01 2.3082788900017250921514744e-01 5.6386799036676515939348064e-01
- 4.5120949036507035367904450e-01 -6.5208853014665291158991067e-01 2.3080379146516627475449468e-01 5.6384408704975819137672488e-01
- 4.5122683743017655277895983e-01 -6.5210644979764853523818147e-01 2.3077905341529783567189327e-01 5.6381960574265888030964788e-01
- 4.5124458064775635479648486e-01 -6.5212378896292855223748575e-01 2.3075502034897701908455758e-01 5.6379518700358532967698011e-01
- 4.5126272696351754643018239e-01 -6.5214075699598028634795810e-01 2.3073098755475221488531190e-01 5.6377087163152428406220906e-01
- 4.5127989619432262724529892e-01 -6.5215845477887512959824790e-01 2.3070638558156675301802352e-01 5.6374672398441560972059960e-01
- 4.5129690259830468335167097e-01 -6.5217605630782082837271219e-01 2.3068156850261384294142886e-01 5.6372290288503290600630180e-01
- 4.5131413573565959396205471e-01 -6.5219346999425820143869714e-01 2.3065723786907332826245920e-01 5.6369891538003946696022695e-01
- 4.5133070515802131694726995e-01 -6.5221141160414264348332836e-01 2.3063370722384576860797267e-01 5.6367451800403423067820086e-01
- 4.5134692652477881313899388e-01 -6.5222979795643098999136100e-01 2.3061013313838515936815554e-01 5.6364989937748199988476472e-01
- 4.5136393773647287552819307e-01 -6.5224781955757182849708897e-01 2.3058562145512634389277196e-01 5.6362545078409309606826127e-01
- 4.5137981251091902068495187e-01 -6.5226605267026882550851496e-01 2.3056158367476603521240008e-01 5.6360147047797692909654188e-01
- 4.5139676409489409847353159e-01 -6.5228314546673893392636501e-01 2.3053782151109161735469399e-01 5.6357783167686403835716646e-01
- 4.5141413547519337878810575e-01 -6.5230028411109286512470362e-01 2.3051337525919690651932115e-01 5.6355408034046206022793513e-01
- 4.5143158685216600023437650e-01 -6.5231778373709237150990248e-01 2.3048919563659173159742011e-01 5.6352973489183388888790205e-01
- 4.5144865041711706998839304e-01 -6.5233549541355329015601683e-01 2.3046430109020313303780370e-01 5.6350574387766605433114364e-01
- 4.5146588730134773470581422e-01 -6.5235303925709886563311102e-01 2.3043967320823297018073106e-01 5.6348169605313347396702284e-01
- 4.5148278685940901322481977e-01 -6.5237079334852210443784770e-01 2.3041563884570454012745699e-01 5.6345742920899266614753742e-01
- 4.5149920141488436575727405e-01 -6.5238889752390005760673830e-01 2.3039155851514947492830743e-01 5.6343316131927556611458385e-01
- 4.5151620070114734106780929e-01 -6.5240666571108518745347737e-01 2.3036714985174358560904295e-01 5.6340894500294347313484877e-01
- 4.5153219136527017463222933e-01 -6.5242473206788220707608161e-01 2.3034309066624675255141597e-01 5.6338504570972647300663994e-01
- 4.5154955756015519030555083e-01 -6.5244227757300776726623326e-01 2.3031882307465462167428427e-01 5.6336072923135160905871999e-01
- 4.5156666907172215985610819e-01 -6.5245867195968887397583558e-01 2.3029582770828049831379758e-01 5.6333742686619614481458029e-01
- 4.5158375214936680164257155e-01 -6.5247577184779803616265781e-01 2.3027239407636693191427923e-01 5.6331350638224342297633029e-01
- 4.5160115347218987569277715e-01 -6.5249299146798878101805030e-01 2.3025002526943247338486742e-01 5.6328875377657638967576759e-01
- 4.5161874382734440436237833e-01 -6.5251021789049290511286472e-01 2.3022718904979638798735664e-01 5.6326402973609313029612622e-01
- 4.5163583097561349477544468e-01 -6.5252751251770124696349740e-01 2.3020319427643923249071634e-01 5.6324010060661711118967787e-01
- 4.5165236686470688898253911e-01 -6.5254490265771603052513683e-01 2.3017916013337938463401144e-01 5.6321651588108856412162595e-01
- 4.5166969139880502881467805e-01 -6.5256261684651384324951096e-01 2.3015477470147382987875062e-01 5.6319206372981855945880625e-01
- 4.5168767785048341556475293e-01 -6.5258024859348440216422205e-01 2.3012889618636550581598499e-01 5.6316778313727178240100102e-01
- 4.5170517751031025177610445e-01 -6.5259790272628048768410736e-01 2.3010444757136361282334747e-01 5.6314327943740649651260810e-01
- 4.5172350265748090203388188e-01 -6.5261542906062441904424531e-01 2.3007948504800013189708352e-01 5.6311846840511403655682443e-01
- 4.5174129239291738180384073e-01 -6.5263302045010307406158745e-01 2.3005493571904292449126217e-01 5.6309383935242918184371774e-01
- 4.5175838595610240400191060e-01 -6.5265068694022376760699444e-01 2.3003160586641996365742102e-01 5.6306918034759079194628839e-01
- 4.5177535756288056401075437e-01 -6.5266802392237022178989037e-01 2.3000861292948879266440088e-01 5.6304486040319434714263025e-01
- 4.5179328890201275736870912e-01 -6.5268471453551579752883072e-01 2.2998510326072074683168012e-01 5.6302072767612243442414410e-01
- 4.5181240283663132162317311e-01 -6.5270121928852309345359117e-01 2.2996118796761561009489583e-01 5.6299602397422643385027641e-01
- 4.5182980729367255845474460e-01 -6.5271886120639288630940200e-01 2.2993689788271329255131548e-01 5.6297152366568892212228548e-01
- 4.5184726785243434221683856e-01 -6.5273537577427520606221378e-01 2.2991229997025297571155988e-01 5.6294840799978718148821599e-01
- 4.5186480300267956033977157e-01 -6.5275288784981411183139244e-01 2.2988797854084427885190678e-01 5.6292395981471798904749448e-01
- 4.5188134939436330750339721e-01 -6.5276992646039888601450230e-01 2.2986458667404860434224645e-01 5.6290047163915546413193169e-01
- 4.5189834910825599223471727e-01 -6.5278722967178259839471366e-01 2.2984103760887497625020615e-01 5.6287637388821720740850196e-01
- 4.5191598278662520327131347e-01 -6.5280437855832196270000622e-01 2.2981784738010882507275312e-01 5.6285179653498040863723872e-01
- 4.5193373136846309856551329e-01 -6.5282156392961077084891031e-01 2.2979453417270148674056429e-01 5.6282713170584286466180401e-01
- 4.5195114542075981445279353e-01 -6.5283913335601362337712317e-01 2.2977012534115490161035211e-01 5.6280273419071291662874046e-01
- 4.5196823974740774065850246e-01 -6.5285658493372900057494235e-01 2.2974510786400095807557875e-01 5.6277897542539490061130891e-01
- 4.5198530670071418446909206e-01 -6.5287350118932740983268559e-01 2.2972145076200209401484642e-01 5.6275530120226502361902021e-01
- 4.5200151830099249972150233e-01 -6.5289140062385475626882680e-01 2.2969755300408786768961988e-01 5.6273126853672628122637889e-01
- 4.5201916867831420931977959e-01 -6.5290880522292404908313301e-01 2.2967333353232308179592280e-01 5.6270678250212147197828472e-01
- 4.5203741610224623670433175e-01 -6.5292480244607120631883390e-01 2.2965128724979419483354093e-01 5.6268255976072012458644167e-01
- 4.5205522031557060502748868e-01 -6.5294164588210756861030859e-01 2.2962834325277964309108825e-01 5.6265807452945071354122319e-01
- 4.5207264772129246432896821e-01 -6.5295874301219680724273076e-01 2.2960434794149267578866613e-01 5.6263402360020331460788157e-01
- 4.5209016281358904709719582e-01 -6.5297574464785923531451317e-01 2.2958008387506889658169484e-01 5.6261011960030815615141364e-01
- 4.5210768774516102430638398e-01 -6.5299325496943916302683419e-01 2.2955631651205024579276426e-01 5.6258541146705953739370898e-01
- 4.5212464785031969416451147e-01 -6.5301090023108943061203036e-01 2.2953403115838799664061298e-01 5.6256039278088787458642628e-01
- 4.5214210415297556577840510e-01 -6.5302822545683936183991136e-01 2.2951020132449434507648789e-01 5.6253597386905063171269603e-01
- 4.5215818888071823700158802e-01 -6.5304525622412401553162908e-01 2.2948800294237664543217647e-01 5.6251233058200311720753461e-01
- 4.5217516274261476683093974e-01 -6.5306249365864488254374010e-01 2.2946468719564230842600239e-01 5.6248818556948210201085203e-01
- 4.5219286450763007678688155e-01 -6.5307848706363891277959510e-01 2.2944130189500264171975630e-01 5.6246492513558465908829476e-01
- 4.5221073867301131432583361e-01 -6.5309512991188811703580086e-01 2.2941755010785744306467393e-01 5.6244091851206223786618921e-01
- 4.5222702755013044484400098e-01 -6.5311310474129091740991271e-01 2.2939363248157684793682165e-01 5.6241670436187485293544341e-01
- 4.5224268045422311157466311e-01 -6.5313123825839569658313621e-01 2.2936968807918522994526711e-01 5.6239282514723787365085172e-01
- 4.5226013497598888113415683e-01 -6.5314850280128933235346267e-01 2.2934556672648723218976841e-01 5.6236857542259677256168970e-01
- 4.5227705291753772520735311e-01 -6.5316574958338968759363752e-01 2.2932179860194973342046865e-01 5.6234463068599005453052087e-01
- 4.5229456642856669112973123e-01 -6.5318319299033256175590623e-01 2.2929804837217704349683345e-01 5.6231996815590656879635389e-01
- 4.5231108654860774365147336e-01 -6.5320111174554840172135073e-01 2.2927488388227174054279089e-01 5.6229531050896042199127578e-01
- 4.5232869075156861837783140e-01 -6.5321854466852224962991613e-01 2.2925081632884017346363237e-01 5.6227071027812758341468680e-01
- 4.5234564008702493609348494e-01 -6.5323647753975222496336528e-01 2.2922657198692475422063808e-01 5.6224612493181269634590080e-01
- 4.5236243411465537622717648e-01 -6.5325412372302771313314906e-01 2.2920290746265117864943761e-01 5.6222175807361884913859740e-01
- 4.5237885878257788618839186e-01 -6.5327211500349158246336856e-01 2.2917987094673394898869390e-01 5.6219702830793738534964632e-01
- 4.5239506574456600507261328e-01 -6.5329072220281880767345228e-01 2.2915674268075594821603147e-01 5.6217179229985869692853839e-01
- 4.5241254698453020610671160e-01 -6.5330800650062226253567133e-01 2.2913291447349451446235946e-01 5.6214735032554885574285208e-01
- 4.5243002716928781836713824e-01 -6.5332425352376299887424693e-01 2.2910959664294813786789007e-01 5.6212390360072861383855525e-01
- 4.5244789386901645977800968e-01 -6.5334153104684700164028754e-01 2.2908559037541240122060060e-01 5.6209922560452074691283997e-01
- 4.5246494656282265633961970e-01 -6.5335875872857884782973770e-01 2.2906433894007749429988507e-01 5.6207413492394253662354231e-01
- 4.5248258233878174694453378e-01 -6.5337583773616647597748397e-01 2.2904134138119519592535767e-01 5.6204945625887148263899462e-01
- 4.5250043982562837552308110e-01 -6.5339302269400290068546155e-01 2.2901761956390276342432344e-01 5.6202476794327371756310185e-01
- 4.5251810251324697809138797e-01 -6.5341038170838861010025767e-01 2.2899366761276265802571572e-01 5.6200012470351312643401798e-01
- 4.5253596775084631298469162e-01 -6.5342797170193411826488727e-01 2.2896941695192243870771165e-01 5.6197516830372329366127815e-01
- 4.5255413206649175439366672e-01 -6.5344552531966482167291588e-01 2.2894531447383970057529723e-01 5.6194994970168499204277168e-01
- 4.5257142632496444312195649e-01 -6.5346245947348957638922684e-01 2.2892231266969548242329324e-01 5.6192570051120072083250534e-01
- 4.5258854865536957134963814e-01 -6.5348000264335803777271394e-01 2.2889914732012964226903762e-01 5.6190094512056176778713734e-01
- 4.5260637197130465514405273e-01 -6.5349735009908449523408080e-01 2.2887507988169100703323977e-01 5.6187621703859047528339943e-01
- 4.5262375963253587141110756e-01 -6.5351429942339556156127856e-01 2.2885031982228731806117139e-01 5.6185258189537023998383347e-01
- 4.5264144289397101328376039e-01 -6.5353158812702916158343669e-01 2.2882619508234194882767554e-01 5.6182805193329843351790487e-01
- 4.5265915047466809273402077e-01 -6.5354887024473651280231934e-01 2.2880257400154382918522344e-01 5.6180330172013814848952507e-01
- 4.5267676257984101884090933e-01 -6.5356614563028059272653536e-01 2.2877887270495697591421447e-01 5.6177866576620927308027831e-01
- 4.5269434512877315679446610e-01 -6.5358323206905200031258119e-01 2.2875569710619300667353571e-01 5.6175405622751184431251659e-01
- 4.5271196134233998575879809e-01 -6.5359993078863642956832791e-01 2.2873351947953182716766207e-01 5.6172946121524369722521897e-01
- 4.5272956390725022091103824e-01 -6.5361705235068501274042774e-01 2.2870988429957248011525905e-01 5.6170497564507060328509169e-01
- 4.5274635082390746187996911e-01 -6.5363415213361031330663309e-01 2.2868636617901480501124922e-01 5.6168112208267173546261120e-01
- 4.5276375087972703381566930e-01 -6.5365133111807405263959936e-01 2.2866308030086043845408028e-01 5.6165658451068889434054654e-01
- 4.5278207282168642100472766e-01 -6.5366839132907506026981537e-01 2.2863959766699484821295130e-01 5.6163151895814333869338952e-01
- 4.5279994720631078219952315e-01 -6.5368573283513620175710912e-01 2.2861581526173108125377098e-01 5.6160660565022502144216787e-01
- 4.5281629814327312155697314e-01 -6.5370316157745778085086386e-01 2.2859326034918839298804016e-01 5.6158231631915456194548142e-01
- 4.5283286323639926340689499e-01 -6.5372044316929622809198008e-01 2.2857078210459974565438301e-01 5.6155799141651874251124354e-01
- 4.5285043239823902228025077e-01 -6.5373770831050981300336389e-01 2.2854782983621904635107569e-01 5.6153306588909368546325140e-01
- 4.5286721336435870055581177e-01 -6.5375520513346108142371804e-01 2.2852594917146262787355226e-01 5.6150806706207589957813298e-01
- 4.5288462329154577368228729e-01 -6.5377250993798807776613558e-01 2.2850230753398217964367234e-01 5.6148349814318099237908655e-01
- 4.5290261371483425678619028e-01 -6.5378963317874139171692605e-01 2.2847936712803920689118797e-01 5.6145838388526114748344753e-01
- 4.5292046013430098394536572e-01 -6.5380670216840230946075962e-01 2.2845569596740661344469459e-01 5.6143374317140837259643149e-01
- 4.5293787125618334421517375e-01 -6.5382392544697898184580254e-01 2.2843218647564722534326620e-01 5.6140920501624802518847446e-01
- 4.5295538621244291199730014e-01 -6.5384099199390532941578158e-01 2.2840882358438113763909882e-01 5.6138470285389996394798118e-01
- 4.5297228727335869802317347e-01 -6.5385842701226437601036423e-01 2.2838544120816073323965156e-01 5.6136027168970803469250086e-01
- 4.5298906596896648668604257e-01 -6.5387609303294547125062763e-01 2.2836191836522617970572924e-01 5.6133572424449185156447584e-01
- 4.5300669225424111674627170e-01 -6.5389346091723554721397704e-01 2.2833819313726438915423955e-01 5.6131091927501297611513564e-01
- 4.5302423174775302561201329e-01 -6.5391089903079790968121188e-01 2.2831426156733983234836671e-01 5.6128618328180146512806914e-01
- 4.5304190538069921689867670e-01 -6.5392803029336854514497190e-01 2.2829034352128363405398659e-01 5.6126168782538077284272049e-01
- 4.5305898515565956596873320e-01 -6.5394409691236377035750138e-01 2.2826603977494933084280149e-01 5.6123906596802231039333719e-01
- 4.5307703272996918686388312e-01 -6.5396098654604795097355918e-01 2.2824259273367089595474511e-01 5.6121435240961003998449996e-01
- 4.5309587146703983462359133e-01 -6.5397760019357209504420325e-01 2.2822093348513930455290222e-01 5.6118859149465250002464245e-01
- 4.5311417756517763377743790e-01 -6.5399448361740164514799289e-01 2.2819831604929241564150288e-01 5.6116333276480956371301545e-01
- 4.5313288619555214253864506e-01 -6.5401091763731933337311375e-01 2.2817462744826816356535915e-01 5.6113870517736019749577281e-01
- 4.5315170482934619133885690e-01 -6.5402708902074868646536743e-01 2.2815097572573256323735791e-01 5.6111427669655578043261812e-01
- 4.5316929314822457230960140e-01 -6.5404401608811923996000814e-01 2.2812743330620699477861990e-01 5.6108991341850444900529737e-01
- 4.5318761024700632278339185e-01 -6.5406070245070657698249761e-01 2.2810326473447883888212573e-01 5.6106549354399637419277269e-01
- 4.5320583188364754745336427e-01 -6.5407768418406786459229352e-01 2.2807968869251629695504846e-01 5.6104056235265431507031053e-01
- 4.5322226217002264947453227e-01 -6.5409382967100315742214889e-01 2.2805773999095171888917832e-01 5.6101738858080640870440448e-01
- 4.5323978792607394483482608e-01 -6.5411086627501202617196441e-01 2.2803440099296728993394368e-01 5.6099285309659663312231714e-01
- 4.5325822572116986064472144e-01 -6.5412728536243169852326673e-01 2.2801123748471877061838597e-01 5.6096822632049325729752809e-01
- 4.5327653769179082621221255e-01 -6.5414402943146876534541434e-01 2.2798792661651520741195043e-01 5.6094337900933177731843671e-01
- 4.5329459358297230497925057e-01 -6.5416071412864418288535262e-01 2.2796476406472981901529806e-01 5.6091874443992562060401497e-01
- 4.5331264412913196970578156e-01 -6.5417711409531920097037982e-01 2.2794172805611648269241698e-01 5.6089439173285216000408582e-01
- 4.5333050927587514866701213e-01 -6.5419402662851944274535754e-01 2.2791799676594640122750945e-01 5.6086987049888648027007321e-01
- 4.5334815888654794724388353e-01 -6.5420953651829771846593076e-01 2.2789477335161989479672684e-01 5.6084695010466545372906921e-01
- 4.5336543085795744101318405e-01 -6.5422607030252299953332340e-01 2.2787201088546504834653206e-01 5.6082295039924279222987025e-01
- 4.5338253280164103609095605e-01 -6.5424354191723721463347374e-01 2.2784896502041371291191751e-01 5.6079810622815373655214444e-01
- 4.5340037779989489363785538e-01 -6.5426076083821071982526973e-01 2.2782518580816554787382699e-01 5.6077325092214691526493198e-01
- 4.5341897424989990872390422e-01 -6.5427747017586646016695795e-01 2.2780214030146769821350006e-01 5.6074808130256448279737924e-01
- 4.5343739880641970030339394e-01 -6.5429440321231047139605153e-01 2.2777909803010873424078397e-01 5.6072278515261386733214977e-01
- 4.5345504014058929387331887e-01 -6.5431121249607371304080061e-01 2.2775604256505296851820219e-01 5.6069826898976615758840580e-01
- 4.5347227107303378357272550e-01 -6.5432755482956816983630688e-01 2.2773329785546264636408864e-01 5.6067450040687472068157149e-01
- 4.5348979693301455506926345e-01 -6.5434449233091396269657025e-01 2.2770990991862796737343899e-01 5.6065005695059200174767966e-01
- 4.5350664578186855591113158e-01 -6.5436101186815831542986643e-01 2.2768650334789899969401006e-01 5.6062665346178996994552790e-01
- 4.5352479735487527534587571e-01 -6.5437810216389780126888809e-01 2.2766277510866106403852882e-01 5.6060165752735491295766224e-01
- 4.5354274899496371808993445e-01 -6.5439494082116045348129774e-01 2.2763797762146731340493488e-01 5.6057754807534865282292458e-01
- 4.5356022314774335768561286e-01 -6.5441168234145308257865281e-01 2.2761457824151168360948816e-01 5.6055336745499728667851969e-01
- 4.5357703546485977907920528e-01 -6.5442899150903555138825141e-01 2.2759000780217353288037430e-01 5.6052953206765354643437149e-01
- 4.5359447078147169252204662e-01 -6.5444641609548470650992158e-01 2.2756529575311701396600483e-01 5.6050511211321574212007590e-01
- 4.5361215212174571531633660e-01 -6.5446377912385189645760875e-01 2.2754190938927651433054677e-01 5.6048002349226200280440935e-01
- 4.5362890516531451101656103e-01 -6.5448135317054323412122585e-01 2.2751887685982161158015913e-01 5.6045529297439777849376696e-01
- 4.5364685720405034663471611e-01 -6.5449848123834464264092503e-01 2.2749525727350691783890113e-01 5.6043034796810309305925557e-01
- 4.5366394701826978641534538e-01 -6.5451673860054015996468024e-01 2.2747119671922610972814027e-01 5.6040495780340837672639509e-01
- 4.5368147765919897285158413e-01 -6.5453397906250365689828641e-01 2.2744773301875353954670800e-01 5.6038015295529663983842283e-01
- 4.5369785326706030259558133e-01 -6.5455087973231340647828347e-01 2.2742435766255861273599237e-01 5.6035664118870609495814961e-01
- 4.5371538815800754873563960e-01 -6.5456774728358357862134653e-01 2.2740086615625212940194899e-01 5.6033227359854065330324602e-01
- 4.5373311669050658823110211e-01 -6.5458463183446036204315988e-01 2.2737823999860326540378708e-01 5.6030737507157679644365089e-01
- 4.5375068904216409038099300e-01 -6.5460140297194391312274320e-01 2.2735590774982439299378711e-01 5.6028261318032812621225958e-01
- 4.5376831574173398520244405e-01 -6.5461803930202255852321969e-01 2.2733319388623671186699937e-01 5.6025811659160151823044771e-01
- 4.5378589762484378145046549e-01 -6.5463479151063774796881489e-01 2.2731040473884764341327980e-01 5.6023354840468087001426056e-01
- 4.5380406180404397886718471e-01 -6.5465198661421053483167043e-01 2.2728672706121033630921602e-01 5.6020834839729205523184419e-01
- 4.5382115323681926355448013e-01 -6.5466945443894242195881361e-01 2.2726298262677935291264930e-01 5.6018372256519666230190069e-01
- 4.5383916477418378976338431e-01 -6.5468664724496605789028081e-01 2.2723926240348629734810970e-01 5.6015865971931211308998400e-01
- 4.5385632189760616306273278e-01 -6.5470400255117056076414883e-01 2.2721611449729342546710598e-01 5.6013386384846086674116350e-01
- 4.5387389990281007401407010e-01 -6.5472116364525945186869649e-01 2.2719273003034340385752898e-01 5.6010904677872408452543596e-01
- 4.5389136186743117562514271e-01 -6.5473842129615622553728826e-01 2.2717003473830452153769954e-01 5.6008392819089458658510239e-01
- 4.5390888188915340384355090e-01 -6.5475558770491315563333501e-01 2.2714754030761935554849629e-01 5.6005878463205183148687638e-01
- 4.5392683096669883546780966e-01 -6.5477213273338852328464554e-01 2.2712443923430891690173894e-01 5.6003426272577350175652100e-01
- 4.5394428941834302770885756e-01 -6.5478825418502062394310315e-01 2.2710177746357723682635310e-01 5.6001045254414016927313469e-01
- 4.5396177234169582392908637e-01 -6.5480506869519949919578039e-01 2.2707903338264426307269161e-01 5.5998584255449301849694166e-01
- 4.5397897792338276490298199e-01 -6.5482307921590077182116829e-01 2.2705777090147066799019626e-01 5.5995945496357346637950059e-01
- 4.5399735548886099856247256e-01 -6.5484029348166905570849394e-01 2.2703435071334515660268494e-01 5.5993392006390552140260297e-01
- 4.5401526218107812749025243e-01 -6.5485687198076580894934295e-01 2.2701222769473025642206210e-01 5.5990898135615718711477484e-01
- 4.5403309939161723418621364e-01 -6.5487356039221955583684576e-01 2.2698958663462301399427190e-01 5.5988417741127738391782032e-01
- 4.5405118843188818633649362e-01 -6.5489017312209618637552921e-01 2.2696700559142576891780152e-01 5.5985923034684581534037306e-01
- 4.5406939992110789683366079e-01 -6.5490678129981316768493116e-01 2.2694472424186368231247002e-01 5.5983406470273699984119276e-01
- 4.5408748925102615512372495e-01 -6.5492376026412146838850958e-01 2.2692169428203562420165440e-01 5.5980886471310287166858188e-01
- 4.5410547901115150271067478e-01 -6.5494066211312451653014932e-01 2.2689823681506329777768372e-01 5.5978400582107579186441626e-01
- 4.5412357387687990462055154e-01 -6.5495771549109105258423824e-01 2.2687452744973060636546336e-01 5.5975898327980644353374373e-01
- 4.5414091283267116194721780e-01 -6.5497403148670074735093749e-01 2.2685245246270485663941940e-01 5.5973477128120474599626277e-01
- 4.5415854941625599661136903e-01 -6.5499051954358322724658592e-01 2.2683013983077432440538246e-01 5.5971020980905850095155074e-01
- 4.5417649871398391159260655e-01 -6.5500742542773582322013226e-01 2.2680782262083862277357582e-01 5.5968490443143981138973686e-01
- 4.5419470871507666709376849e-01 -6.5502434956058308568316306e-01 2.2678486890233312545106514e-01 5.5965962092589205401083063e-01
- 4.5421341309428714394513804e-01 -6.5504077285583739431729100e-01 2.2676155708906145513914510e-01 5.5963466430181929567311272e-01
- 4.5423232452957496008139060e-01 -6.5505709485312624273944948e-01 2.2673835548348844626254106e-01 5.5960961034250000789569413e-01
- 4.5425095097502315999449252e-01 -6.5507395808600199504923012e-01 2.2671517243800609620052455e-01 5.5958414341565432259528734e-01
- 4.5427032919592186255286492e-01 -6.5509006873750674770917612e-01 2.2669221141354883863883174e-01 5.5955885404321192844179222e-01
- 4.5428848881008709881257346e-01 -6.5510692918838064890962869e-01 2.2666884556800367955808895e-01 5.5953383696867342589342798e-01
- 4.5430719445063966199782612e-01 -6.5512240727797088624129174e-01 2.2664591780722323499652759e-01 5.5950981447515879541043660e-01
- 4.5432556575513144414557587e-01 -6.5513913796485212515108287e-01 2.2662280697203660007055248e-01 5.5948466785790040844972282e-01
- 4.5434416679957090323682678e-01 -6.5515547546845787074687451e-01 2.2660000327619911342225123e-01 5.5945966751333298105919312e-01
- 4.5436236968299092975343001e-01 -6.5517170139828528885317382e-01 2.2657720057923835810242963e-01 5.5943511766835762877292382e-01
- 4.5438056967622914017468361e-01 -6.5518824671304853879405528e-01 2.2655440661091560961004632e-01 5.5941018949869258936047345e-01
- 4.5439932491406159753566385e-01 -6.5520503345011293916400064e-01 2.2653165694990284873000519e-01 5.5938450645223736223954347e-01
- 4.5441766075865674956446583e-01 -6.5522197273156146390959975e-01 2.2650847936305254504141260e-01 5.5935915547797088187564896e-01
- 4.5443592543391819749132310e-01 -6.5523896296793227023158579e-01 2.2648557538795172083823104e-01 5.5933368861969656737898049e-01
- 4.5445412385864597526463626e-01 -6.5525598799681195050226279e-01 2.2646234364217740497871034e-01 5.5930836433427733034307039e-01
- 4.5447239323017252221603712e-01 -6.5527205182269587790955256e-01 2.2643989761596655663211664e-01 5.5928378723094074320698610e-01
- 4.5449059748270242975465294e-01 -6.5528859448999410286518241e-01 2.2641694280279092699181831e-01 5.5925890492953433952294517e-01
- 4.5450925491598770378232075e-01 -6.5530517283379452475600146e-01 2.2639497082571868880052079e-01 5.5923321149392257733978795e-01
- 4.5452798427263735314696191e-01 -6.5532181128034683315064512e-01 2.2637279302297752536787812e-01 5.5920746932804366036151578e-01
- 4.5454647629350014570448479e-01 -6.5533864319256540653668708e-01 2.2634974533168733534793660e-01 5.5918204228674095457307658e-01
- 4.5456480500653179133152548e-01 -6.5535543330309053988713686e-01 2.2632676887238581397987502e-01 5.5915676494278221397848938e-01
- 4.5458281871896344394912148e-01 -6.5537196257578023139700463e-01 2.2630391839843830292799964e-01 5.5913199525032120096312838e-01
- 4.5460076388410441960985509e-01 -6.5538964867420979043544094e-01 2.2628000594067504414041991e-01 5.5910635195655999929442714e-01
- 4.5461891389758191106551521e-01 -6.5540685219218641766047995e-01 2.2625673244879354606418076e-01 5.5908084589592910162991757e-01
- 4.5463574116140148539955135e-01 -6.5542389856982086193681880e-01 2.2623309564620974754234339e-01 5.5905674352116829783909679e-01
- 4.5465384428638283553780752e-01 -6.5544065098212178632763880e-01 2.2620975358268036181641492e-01 5.5903182583803656680032645e-01
- 4.5467131125426107907117057e-01 -6.5545700084579905375647968e-01 2.2618638826410719655513049e-01 5.5900790381585807597986104e-01
- 4.5468884989713675981448660e-01 -6.5547346267986639212210775e-01 2.2616299843507928213348634e-01 5.5898379908592987774795802e-01
- 4.5470735034706122323910904e-01 -6.5549017466437176082649785e-01 2.2613991774811967316871630e-01 5.5895849046212753297169229e-01
- 4.5472570244310056564174261e-01 -6.5550667107877147454786382e-01 2.2611720322326064880336105e-01 5.5893340400744218054995827e-01
- 4.5474413787223399996406670e-01 -6.5552329614261384271856059e-01 2.2609428005701623365375497e-01 5.5890818012501963796268001e-01
- 4.5476169262830479222969871e-01 -6.5554072389057549408164505e-01 2.2607085728324316509230130e-01 5.5888293025112090184336466e-01
- 4.5477927888417835067258466e-01 -6.5555732243918252155623350e-01 2.2604810759196997116404759e-01 5.5885835195337785208380410e-01
- 4.5479605281151835871611411e-01 -6.5557493654679455108436059e-01 2.2602568317071961012665327e-01 5.5883310877751191103612882e-01
- 4.5481404962941684999577774e-01 -6.5559209591866685062910847e-01 2.2600279009296342369594868e-01 5.5880759023017556597068278e-01
- 4.5483206841219414595656190e-01 -6.5560836722832460665699728e-01 2.2597976161266380978887014e-01 5.5878314729918154846188827e-01
- 4.5484994201126938140333777e-01 -6.5562463324668840414233273e-01 2.2595670500990000517660405e-01 5.5875883706081952428945669e-01
- 4.5486819493327379504421515e-01 -6.5564134972329102257759814e-01 2.2593357695567900522704008e-01 5.5873371526620707605559346e-01
- 4.5488610478794766489585299e-01 -6.5565775985542429360464212e-01 2.2591071908774815191200958e-01 5.5870911985886861916839052e-01
- 4.5490424083617136963297867e-01 -6.5567445094392229343327472e-01 2.2588790552052179227970896e-01 5.5868398955778630909918547e-01
- 4.5492049375359078222658127e-01 -6.5569169538546212550045311e-01 2.2586478102277293689148507e-01 5.5865986580303239605882482e-01
- 4.5493887221428136458101221e-01 -6.5570856563420265583630453e-01 2.2584169600427039803491880e-01 5.5863443131286572018723291e-01
- 4.5495688609305984240194221e-01 -6.5572479849883469338323039e-01 2.2581894309545511023706865e-01 5.5860990446770708572898911e-01
- 4.5497471183468252142745314e-01 -6.5574114137083228115443490e-01 2.2579634232791803705175937e-01 5.5858533716519931378030606e-01
- 4.5499292528282619940682707e-01 -6.5575740547727390250543067e-01 2.2577394506008641172911666e-01 5.5856046121820679406511090e-01
- 4.5501149714220040509715659e-01 -6.5577367254037921551201862e-01 2.2575144015106554662430938e-01 5.5853533025318691240812541e-01
- 4.5502966860542898297481429e-01 -6.5579031609047111484045445e-01 2.2572903365636728945098355e-01 5.5851004053226849244140340e-01
- 4.5504705380368931644241570e-01 -6.5580685792810733403257473e-01 2.2570804569998595412450015e-01 5.5848493446586267019426941e-01
- 4.5506545055379432618281044e-01 -6.5582364858401409613009037e-01 2.2568511963660459196390207e-01 5.5845949221482071855859886e-01
- 4.5508409899238277951383225e-01 -6.5583932383018628264892413e-01 2.2566303980834587217252363e-01 5.5843480964810243705187531e-01
- 4.5510253890676927168712496e-01 -6.5585591959689604202310420e-01 2.2564023352396417321230615e-01 5.5840950638897024482787401e-01
- 4.5512103881208648692435759e-01 -6.5587245698180796082965571e-01 2.2561699782747088316448014e-01 5.5838439313305743283422089e-01
- 4.5513967925483123089236415e-01 -6.5588906332514285146828570e-01 2.2559385734858991567897135e-01 5.5835904264627111981411645e-01
- 4.5515828760766463556564076e-01 -6.5590586462722300087335725e-01 2.2557183822176049559082855e-01 5.5833303302861214678642909e-01
- 4.5517656389620259060890817e-01 -6.5592261319671807395792484e-01 2.2555039071721016963323336e-01 5.5830712195363274563675304e-01
- 4.5519512918369992027223248e-01 -6.5593884180775008374553181e-01 2.2552788362089087881301452e-01 5.5828201107041242057249519e-01
- 4.5521656352431105752032181e-01 -6.5595428822716139727333484e-01 2.2550522613283272010953340e-01 5.5825553739868538638546624e-01
- 4.5523480612521211030596646e-01 -6.5597106981629882405115950e-01 2.2548241704316931977025718e-01 5.5823015545612675314401940e-01
- 4.5525202008598741887368533e-01 -6.5598842225938247540995008e-01 2.2546101486174185968280881e-01 5.5820437014303947442783738e-01
- 4.5527041779335136739703671e-01 -6.5600528358221044111786568e-01 2.2543852798979296947479156e-01 5.5817863152604307863668964e-01
- 4.5528850498558232073875729e-01 -6.5602119357588040138296037e-01 2.2541673278379609213217805e-01 5.5815398179028441472127042e-01
- 4.5530677507820921379178003e-01 -6.5603732190514441047213268e-01 2.2539439961739554663111562e-01 5.5812914048320450000062465e-01
- 4.5532507560819263092710685e-01 -6.5605372127661798486997213e-01 2.2537230719680226287415792e-01 5.5810385545190921430247499e-01
- 4.5534317278079539104140849e-01 -6.5606999314524827582317812e-01 2.2535102382277280574918166e-01 5.5807855644016723939415670e-01
- 4.5536153829231645895347924e-01 -6.5608663419556378926245088e-01 2.2532848341338820863377634e-01 5.5805310897495619126829070e-01
- 4.5537848460903923575315844e-01 -6.5610338956606173432817286e-01 2.2530614807886284456373005e-01 5.5802859926079506625029580e-01
- 4.5539656198300532130573970e-01 -6.5611982791841672035815236e-01 2.2528342701068287956545078e-01 5.5800369197765042894587850e-01
- 4.5541433181538143459832213e-01 -6.5613655135797066542124867e-01 2.2526076071134548683971843e-01 5.5797867524930078175771087e-01
- 4.5543288799456188575831561e-01 -6.5615323776373868369660158e-01 2.2523791056044670244595807e-01 5.5795313132149348955834967e-01
- 4.5545199727138752088251294e-01 -6.5616965939778681971006336e-01 2.2521508138793538966737628e-01 5.5792743558882496035522536e-01
- 4.5547086442107465042994363e-01 -6.5618608194336014438619031e-01 2.2519250642754101709996917e-01 5.5790183059049280878127774e-01
- 4.5548917557064017014312185e-01 -6.5620263847328486050969332e-01 2.2517010958011021704017196e-01 5.5787644685033888070080366e-01
- 4.5550741293355045957724769e-01 -6.5621924165949585550094980e-01 2.2514745921940806927530332e-01 5.5785116764730835470231796e-01
- 4.5552620412931044135973480e-01 -6.5623572614173952821658986e-01 2.2512422093249737087283791e-01 5.5782580994097241688933764e-01
- 4.5554501220737159128404414e-01 -6.5625073315404869322975401e-01 2.2510133623578618133898033e-01 5.5780203075340506480017666e-01
- 4.5556348555200831818012830e-01 -6.5626757514409472804572943e-01 2.2507862247158483270936813e-01 5.5777629400368822221167875e-01
- 4.5558054571029049650832121e-01 -6.5628449170337643803208039e-01 2.2505603763878703760248357e-01 5.5775156856998975296590970e-01
- 4.5559846643944901245504298e-01 -6.5630076769845724360408212e-01 2.2503373906139231830358938e-01 5.5772677538422643639393073e-01
- 4.5561768469893532129688651e-01 -6.5631675323446625469614446e-01 2.2501091726415303750918895e-01 5.5770147204870690327283000e-01
- 4.5563689888989333809377058e-01 -6.5633303988055413658031512e-01 2.2498784383594508384796029e-01 5.5767591597378907142257276e-01
- 4.5565480735035041037761516e-01 -6.5634942694829756515417785e-01 2.2496540834974246281241506e-01 5.5765104799434395133062026e-01
- 4.5567200306535410314623391e-01 -6.5636547314518500773061760e-01 2.2494351194755432543637141e-01 5.5762694314210270452036866e-01
- 4.5569040297560853280955939e-01 -6.5638218777154799798978502e-01 2.2492072032367749212511399e-01 5.5760142555524527807619961e-01
- 4.5570730142076942836837361e-01 -6.5639855311314754260365589e-01 2.2489824654369069967252415e-01 5.5757741489800283218869481e-01
- 4.5572593272260936148043697e-01 -6.5641502031883969259240530e-01 2.2487577232444652675091845e-01 5.5755186517974142379472369e-01
- 4.5574459710607079232502770e-01 -6.5643147917501687427233037e-01 2.2485227064852508771508610e-01 5.5752670944173354783401919e-01
- 4.5576320263906677787701938e-01 -6.5644826232002495558504052e-01 2.2482893202545489730326267e-01 5.5750115097773034200656639e-01
- 4.5578112654069291576064415e-01 -6.5646523495765396472023667e-01 2.2480587065897958409799173e-01 5.5747581158158543424008258e-01
- 4.5579890841215536800845598e-01 -6.5648186811791486849898547e-01 2.2478335961715528723559032e-01 5.5745076299340101666501823e-01
- 4.5581717476727390270241358e-01 -6.5649840727913721938335812e-01 2.2476103605968306142770530e-01 5.5742535024567574364340317e-01
- 4.5583550507838294096885079e-01 -6.5651583848435590695657993e-01 2.2473772020696108908666133e-01 5.5739923147174919026980433e-01
- 4.5585420186760106098233791e-01 -6.5653256560512496253778636e-01 2.2471510909164271740934282e-01 5.5737335483994543405827926e-01
- 4.5587388388869037880724022e-01 -6.5654894729940460607053865e-01 2.2469214792411126846438663e-01 5.5734721713626045325185032e-01
- 4.5589253048963573888840983e-01 -6.5656555299406216263946590e-01 2.2466927906463488029409348e-01 5.5732162196521273234139926e-01
- 4.5591076532987251379580584e-01 -6.5658136039672254646859528e-01 2.2464791411747625504702341e-01 5.5729669469555120908665913e-01
- 4.5592913209836716248446464e-01 -6.5659772216567391378561069e-01 2.2462585492337910908489107e-01 5.5727128317437946147805405e-01
- 4.5594738237482546061585253e-01 -6.5661457947916002098054378e-01 2.2460276170156801001098756e-01 5.5724579671539842262717457e-01
- 4.5596572656045797344859238e-01 -6.5663137924501635556140400e-01 2.2457963362340041535425428e-01 5.5722031204413258187457814e-01
- 4.5598462153529056850587153e-01 -6.5664782870713611639956753e-01 2.2455694485211211142150489e-01 5.5719460917726659765492059e-01
- 4.5600361155739749241533332e-01 -6.5666379758872372995881506e-01 2.2453404012512495624420694e-01 5.5716947871186794927211849e-01
- 4.5602211138774495502445916e-01 -6.5667967659049919504354875e-01 2.2451170698646688572708285e-01 5.5714462189316993345755691e-01
- 4.5604061034383408523851244e-01 -6.5669555459276185427341943e-01 2.2448937362232068704059884e-01 5.5711976398794760267918491e-01
- 4.5605983786154857817507491e-01 -6.5671157405538993501181722e-01 2.2446693989290011916892809e-01 5.5709418026623436226429931e-01
- 4.5607918052232282457580936e-01 -6.5672761513502508901041210e-01 2.2444448999181304538197423e-01 5.5706848010407450377812211e-01
- 4.5610138486401674562387143e-01 -6.5674206912715649142597840e-01 2.2441955699209903407620459e-01 5.5704330514168953758513680e-01
- 4.5612547872244402213937065e-01 -6.5675547447763660269259844e-01 2.2439298395430781751791471e-01 5.5701847649423397168533256e-01
- 4.5614833257879477956819869e-01 -6.5676904097847732533210774e-01 2.2436706281591503597816484e-01 5.5699420699066126694276591e-01
- 4.5616880275907861763684537e-01 -6.5678291865687421502428833e-01 2.2434239572213612867734867e-01 5.5697101417538696921383234e-01
- 4.5618875581451334699778499e-01 -6.5679722080567448649901507e-01 2.2431809576530661876070383e-01 5.5694759333583210292317744e-01
- 4.5620283435846836761484724e-01 -6.5681636308167390403411900e-01 2.2429797558405376034507128e-01 5.5692158986733308889682803e-01
- 4.5621691204552705656283251e-01 -6.5683550438510496238819769e-01 2.2427785520361701032676649e-01 5.5689558537312378039274563e-01
- 4.5623385024629836692611207e-01 -6.5685458181468203697761510e-01 2.2425755674564759600819741e-01 5.5686738141228042664465647e-01
- 4.5625140897407429063648010e-01 -6.5687364446166796039250357e-01 2.2423721941086730002901106e-01 5.5683869877344260856943947e-01
- 4.5626914410262131571727195e-01 -6.5689086776841598691589752e-01 2.2421644530449530430260552e-01 5.5681221398002311850916612e-01
- 4.5628701722280984309776386e-01 -6.5690665109628831874744037e-01 2.2419532925987400995282428e-01 5.5678744956888848172127382e-01
- 4.5630562338491498231007881e-01 -6.5692179244110915359300407e-01 2.2417339407304159859535275e-01 5.5676316874685372049214038e-01
- 4.5632594081366911753505633e-01 -6.5693543729993897350993848e-01 2.2414954810852108502139401e-01 5.5674001746129553325204142e-01
- 4.5634621881306752788631798e-01 -6.5694926064751568706157059e-01 2.2412578442792893684831768e-01 5.5671665168581419003146493e-01
- 4.5636555234742914866075125e-01 -6.5696747345736394851911655e-01 2.2410403917246327076817636e-01 5.5668806442770157882904414e-01
- 4.5638488486059913817882716e-01 -6.5698568508282917388640954e-01 2.2408229365091977824953062e-01 5.5665947592685982581173221e-01
- 4.5640421737376912769690307e-01 -6.5700389670829439925370252e-01 2.2406054812937628573088489e-01 5.5663088742601807279442028e-01
- 4.5642354988693911721497898e-01 -6.5702210833375962462099551e-01 2.2403880260783279321223915e-01 5.5660229892517631977710835e-01
- 4.5644288240010910673305489e-01 -6.5704031995922484998828850e-01 2.2401705708628930069359342e-01 5.5657371042433456675979642e-01
- 4.5646221491327909625113080e-01 -6.5705853158469007535558148e-01 2.2399531156474580817494768e-01 5.5654512192349281374248449e-01
- 4.5648154742644908576920670e-01 -6.5707674321015530072287447e-01 2.2397356604320231565630195e-01 5.5651653342265106072517256e-01
- 4.5650087993961907528728261e-01 -6.5709495483562052609016746e-01 2.2395182052165882313765621e-01 5.5648794492180930770786063e-01
- 4.5652021245278906480535852e-01 -6.5711316646108575145746045e-01 2.2393007500011533061901048e-01 5.5645935642096755469054870e-01
- 4.5653954496595905432343443e-01 -6.5713137808655097682475343e-01 2.2390832947857183810036474e-01 5.5643076792012580167323677e-01
- 4.5655887747912904384151034e-01 -6.5714958971201620219204642e-01 2.2388658395702834558171901e-01 5.5640217941928404865592483e-01
- 4.5657820999229903335958625e-01 -6.5716780133748142755933941e-01 2.2386483843548485306307327e-01 5.5637359091844229563861290e-01
-
-
-SCAN_DURATION 3.4596863999999996508449840e+01
-INT_TIME 1.8769999999999999792249517e-03
-
-ALONG_SCAN_PIXEL_SIZE  7.0946954300014925670625487e-03
-CROSS_SCAN_PIXEL_SIZE  7.0000000000000001457167720e-03
-
-CENTER_GP 3.2498570683665473080026231e-01 1.3517025803113738025018620e+00 0.0000000000000000000000000e+00
-SENSOR_POSITION 3.2210702957228665166411474e-01 1.3229232300623343654422115e+00 2.7834964551140909316018224e+05
-MOUNTING_ANGLES 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-
-TOTAL_LINES 18432
-TOTAL_SAMPLES 5000
-
-
-
-
-IKCODE  -74021
-ISIS_Z_DIRECTION  1.0000000000000000000000000e+00
-OPTICAL_DIST_COEF -7.3433925920054999789132744e-03 2.8375878636241700514334166e-05 1.2841989124027100312193378e-08
-ITRANSS 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 1.4285714285713999061044888e+02
-ITRANSL 0.0000000000000000000000000e+00 1.4285714285713999061044888e+02 0.0000000000000000000000000e+00
-DETECTOR_SAMPLE_ORIGIN 2.5434609900000000379804987e+03
-DETECTOR_LINE_ORIGIN 4.3044252700000001921054604e-01
-DETECTOR_LINE_OFFSET  0.0000000000000000000000000e+00
-DETECTOR_SAMPLE_SUMMING  1.0000000000000000000000000e+00
-STARTING_SAMPLE 1.0000000000000000000000000e+00
-STARTING_LINE 1.0000000000000000000000000e+00
-STARTING_EPHEMERIS_TIME 5.1736275422839599847793579e+08
-CENTER_EPHEMERIS_TIME 5.1736277152588951587677002e+08
-
-REFERENCE_HEIGHT 30
-MIN_VALID_HT -8000
-MAX_VALID_HT 8000
-IMAGE_ID UNKNOWN
-SENSOR_ID USGS_LINE_SCANNER
-PLATFORM_ID UNKNOWN
-TRAJ_ID UNKNOWN
-COLL_ID UNKNOWN
-REF_DATE_TIME UNKNOWN
diff --git a/tests/J03_046060_1986_XN_18N282W_8bit_keywords.state b/tests/J03_046060_1986_XN_18N282W_8bit_keywords.state
deleted file mode 100644
index d4b4e108cf3e67391cc51d5a3ac92b1b8914c9b0..0000000000000000000000000000000000000000
--- a/tests/J03_046060_1986_XN_18N282W_8bit_keywords.state
+++ /dev/null
@@ -1,55 +0,0 @@
-STA_SENSOR_MODEL_NAME USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL
-STA_IMAGE_IDENTIFIER UNKNOWN
-STA_SENSOR_TYPE USGSAstroLineScanner
-STA_TOTAL_LINES 18432
-STA_TOTAL_SAMPLES 5000
-STA_OFFSET_LINES 0
-STA_OFFSET_SAMPLES 0
-STA_PLATFORM_FLAG 1
-STA_ABERR_FLAG 0
-STA_ATMREF_FLAG 0
-STA_INT_TIME_LINES 0.5
-STA_INT_TIME_START_TIMES 517362754.228396
-STA_INT_TIMES 0.001877
-STA_STARTING_EPHEMERIS_TIME 517362754.2284
-STA_CENTER_EPHEMERIS_TIME 517362771.52589
-STA_DETECTOR_SAMPLE_SUMMING 1
-STA_STARTING_SAMPLE 1
-STA_IK_CODE -74021
-STA_FOCAL 352.9271664
-STA_ISIS_Z_DIRECTION 1
-STA_OPTICAL_DIST_COEF -0.0073433925920055 2.8375878636242e-05 1.2841989124027e-08
-STA_I_TRANS_S 0 0 142.85714285714
-STA_I_TRANS_L 0 142.85714285714 0
-STA_DETECTOR_SAMPLE_ORIGIN 2543.46099
-STA_DETECTOR_LINE_ORIGIN 0.430442527
-STA_DETECTOR_LINE_OFFSET 0
-STA_MOUNTING_MATRIX 1 0 0 0 1 0 -0 0 1
-STA_SEMI_MAJOR_AXIS 3396190
-STA_SEMI_MINOR_AXIS 3376200.0000001
-STA_REFERENCE_DATE_AND_TIME UNKNOWN
-STA_PLATFORM_IDENTIFIER UNKNOWN
-STA_SENSOR_IDENTIFIER USGS_LINE_SCANNER
-STA_TRAJECTORY_IDENTIFIER UNKNOWN
-STA_COLLECTION_IDENTIFIER UNKNOWN
-STA_REF_ELEVATION 0
-STA_MIN_ELEVATION -8000
-STA_MAX_ELEVATION 8000
-STA_DT_EPHEM 0.16396618009479
-STA_T0_EPHEM -18.856110692024
-STA_DT_QUAT 0.088483028132992
-STA_T0_QUAT -18.139020740986
-STA_NUM_EPHEM 231
-STA_NUM_QUATERNIONS 411
-STA_EPHEM_PTS 852438.51370108 3400662.6093692 1088612.2571665 852465.79847096 3400488.1943366 1089147.0385381 852493.08324085 3400313.779304 1089681.8199098 852520.36801073 3400139.3642714 1090216.6012815 852547.65278062 3399964.9492387 1090751.3826531 852574.9375505 3399790.5342061 1091286.1640248 852602.22232039 3399616.1191735 1091820.9453965 852629.50709028 3399441.7041409 1092355.7267681 852656.79186016 3399267.2891083 1092890.5081398 852684.07663005 3399092.8740757 1093425.2895114 852711.36139993 3398918.4590431 1093960.0708831 852738.64616982 3398744.0440104 1094494.8522548 852765.90712277 3398569.5495615 1095029.6079772 852793.14425639 3398394.9757014 1095564.338038 852820.35756828 3398220.3224352 1096099.0424246 852847.54705603 3398045.5897678 1096633.7211248 852874.71271725 3397870.7777043 1097168.374126 852901.85454952 3397695.8862498 1097703.0014159 852928.97255046 3397520.9154094 1098237.602982 852956.06671766 3397345.8651881 1098772.1788118 852983.13704872 3397170.7355909 1099306.7288931 853010.18354123 3396995.526623 1099841.2532132 853037.20619281 3396820.2382892 1100375.7517598 853064.20500104 3396644.8705948 1100910.2245206 853091.17996354 3396469.4235448 1101444.6714829 853118.1310779 3396293.8971442 1101979.0926345 853145.05834172 3396118.291398 1102513.4879629 853171.9617526 3395942.6063114 1103047.8574557 853198.84130814 3395766.8418893 1103582.2011004 853225.69700595 3395590.9981369 1104116.5188847 853252.52884363 3395415.0750591 1104650.810796 853279.33681878 3395239.0726611 1105185.076822 853306.120929 3395062.9909479 1105719.3169502 853332.88117189 3394886.8299245 1106253.5311683 853359.61754506 3394710.589596 1106787.7194637 853386.3300461 3394534.2699675 1107321.8818241 853413.01867263 3394357.871044 1107856.0182371 853439.68342225 3394181.3928305 1108390.1286901 853466.32429255 3394004.8353321 1108924.2131709 853492.94128115 3393828.1985539 1109458.2716669 853519.53438564 3393651.482501 1109992.3041657 853546.10360363 3393474.6871783 1110526.3106549 853572.64893273 3393297.8125909 1111060.2911221 853599.17037054 3393120.8587439 1111594.2455549 853625.66791466 3392943.8256424 1112128.1739408 853652.1415627 3392766.7132913 1112662.0762674 853678.59131226 3392589.5216958 1113195.9525222 853705.01716095 3392412.2508609 1113729.8026929 853731.41910638 3392234.9007917 1114263.6267671 853757.79714615 3392057.4714931 1114797.4247322 853784.15127787 3391879.9629704 1115331.1965759 853810.48149914 3391702.3752284 1115864.9422857 853836.78780757 3391524.7082723 1116398.6618493 853863.07020076 3391346.9621071 1116932.3552541 853889.32867633 3391169.136738 1117466.0224878 853915.56323188 3390991.2321698 1117999.663538 853941.77386502 3390813.2484078 1118533.2783922 853967.96057335 3390635.1854569 1119066.8670379 853994.12335449 3390457.0433221 1119600.4294628 854020.26220603 3390278.8220087 1120133.9656544 854046.3771256 3390100.5215216 1120667.4756004 854072.4681108 3389922.1418658 1121200.9592882 854098.53515923 3389743.6830464 1121734.4167055 854124.57826851 3389565.1450685 1122267.8478398 854150.59743632 3389386.527937 1122801.2526789 854176.59266034 3389207.8316569 1123334.6312105 854202.56393826 3389029.0562332 1123867.9834221 854228.51126776 3388850.2016711 1124401.3093016 854254.43464653 3388671.2679755 1124934.6088366 854280.33407227 3388492.2551515 1125467.8820148 854306.20954265 3388313.1632042 1126001.1288237 854332.06105537 3388133.9921386 1126534.3492513 854357.88860812 3387954.7419597 1127067.543285 854383.69219858 3387775.4126726 1127600.7109126 854409.47182445 3387596.0042823 1128133.8521217 854435.22748341 3387416.5167939 1128666.9669001 854460.95917315 3387236.9502124 1129200.0552355 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5340738303371e-320 6.9023390045993e-310 6.9023390045993e-310 1.9208521330526e-316 1.9208521330526e-316 2.1811103313245e+16 9.3678932062319e+25 1.1548486632987e+21 2.7880563753529e+45 4.9050013156519e+25 5.4507491236349e-153 4.9333781206924e-259 1.9732068983328e+93 3.179321060173e-153 2.1817973174948e+243 1.3585149586915e+161 5327913.7874409 7.8583970272755e+59 3.8539919399732e-57 2.6704274768174e+98 1.4254736841451e+64 1.3997091339593e-76 4.9711061845282e+30 1.3640832339935e+69 5327912.751973 1.658856315338e+151 5.7490965876061e-153 4.1107711320373e+59 9.9200115599198e+30 1.6267516728721e+98 1.4993249552164e+151 1.0669176585659e+92 8.8503364837208e+25 7.0291244526491e-77 1.2938361148584e+98 3.2425706829006e-86 1.0680459240807e+92 1.5597142198306e+98 5.8786577360528e+25 1.8172756481256e+45 1.3147843359462e-47 5.3473289494181e-38 4.6838841006254e+25 2.2146918157185e+40 2.6764205957058e+98 5.6377156261567e-62 7.8562612653749e-67 7.0907336630285e+150 3.1161430007268e+88 8.7146251892356e+150 3.4764528431404e-153 1.6551413749904e+98 4.0777925002961e+93 1.3923266687274e-259 3.5234011123372e+16 1.745847445377e-76 9.9051660219754e+30 7.8634100571976e-67 3.5385261235128e-57 1.7204230772305e+45 8.8426635023275e+25 1.3923378478139e-259 1.812043583072e+45 1.647802886547e+98 1.2576883463393e-76 4.6682110729563e-62 1.6901338678122e-52 2.4222009528394e-52 2.9012942115172e-57 3.4435977114291e-86 1.4273800594578e-71 1.269317000344e-76 2.7880563753493e+45 4.0839035459993e+93 7.4895910029266e-67 5.3496383418363e-38 1.626729611334e+98 9.3397881994753e+68 2.7282868860418e-57 7.4897212909284e-67 1.202716840424e-153 9.085240784567e+97 5078345.239518 1.6333108124e+45 4.9122431232707e-62 1.0683654348809e+92 1.2007261974987e+16 7.3227832325755e+25 4.5177025435591e-153 7.4940283537276e-67 7.0907336628357e+150 3.1161430007268e+88 4.971115798907e+30 1.0669176901725e+92 1.2958282037446e+98 4.0293301395554e+88 6.9901110326419e-77 2.4833863081945e-91 1.0643818368463e+92 1.0352850299157e+151 1.3690108607953e+117 1.2578019874285e-71 4.0747489575458e+93 1.0702265075477e+74 1.9842349058708e-62 1.3035534471124e-76 1.0670866924523e+92 2.1160601677547e+88 7.3764512559893e+97 1.8172552574172e+45 1.0705030952004e+74 1.4476416359164e+79 1.1997599396264e+151 9.940085579979e+44 1.0705030952008e+74 4.0747489575494e+93 9.3607448288729e+20 2.1172272331895e+88 1.2654497419334e+45 1.6313427902964e+69 2.6704274768199e+98 3.1161430004948e+88 1.8113329301003e+45 5.8105573049733e+54 5327913.224079 8.2323911378721e+97 1.1467005989049e+69 1.1423656882611e+102 1.0717261721579e+92 5.138282716749e-321 1.0197514930163e-320 1.9732068983328e+93 2.669881744735e+59 2.7542105015418e+93 1.2954095367691e+74 2.1811103313245e+16 9.3678932062319e+25 1.1548486632987e+21 2.7880563753529e+45 4.9050013156519e+25 5.4507491236349e-153 4.9333781206924e-259 1.9732068983328e+93 3.179321060173e-153 2.1817973174948e+243 1.3585149586915e+161 5327913.7874409 7.8583970272755e+59 3.8539919399732e-57 2.6704274768174e+98 1.4254736841451e+64 1.3997091339593e-76 4.9711061845282e+30 1.3640832339935e+69 5327912.751973 1.658856315338e+151 5.7490965876061e-153 4.1107711320373e+59 9.9200115599198e+30 1.6267516728721e+98 1.4993249552164e+151 1.0669176585659e+92 8.8503364837208e+25 7.0291244526491e-77 1.2938361148584e+98 3.2425706829006e-86 1.0680459240807e+92 1.5597142198306e+98 5.8786577360528e+25 1.8172756481256e+45 1.3147843359462e-47 5.3473289494181e-38 4.6838841006254e+25 2.2146918157185e+40 2.6764205957058e+98 5.6377156261567e-62 7.8562612653749e-67 7.0907336630285e+150 3.1161430007268e+88 8.7146251892356e+150 3.4764528431404e-153 1.6551413749904e+98 4.0777925002961e+93 1.3923266687274e-259 3.5234011123372e+16 1.745847445377e-76 9.9051660219754e+30 7.8634100571976e-67 3.5385261235128e-57 1.7204230772305e+45 8.8426635023275e+25 1.3923378478139e-259 1.812043583072e+45 1.647802886547e+98 1.2576883463393e-76 4.6682110729563e-62 1.6901338678122e-52 2.4222009528394e-52 2.9012942115172e-57 3.4435977114291e-86 1.4273800594578e-71 1.269317000344e-76 2.7880563753493e+45 4.0839035459993e+93 7.4895910029266e-67 5.3496383418363e-38 1.626729611334e+98 9.3397881994753e+68 2.7282868860418e-57 7.4897212909284e-67 1.202716840424e-153 9.085240784567e+97 5078345.239518 1.6333108124e+45 4.9122431232707e-62 1.0683654348809e+92 1.2007261974987e+16 7.3227832325755e+25 4.5177025435591e-153 7.4940283537276e-67 7.0907336628357e+150 3.1161430007268e+88 4.971115798907e+30 1.0669176901725e+92 1.2958282037446e+98 4.0293301395554e+88 6.9901110326419e-77 2.4833863081945e-91 1.0643818368463e+92 1.0352850299157e+151 1.3690108607953e+117 1.2578019874285e-71 4.0747489575458e+93 1.0702265075477e+74 1.9842349058708e-62 1.3035534471124e-76 1.0670866924523e+92 2.1160601677547e+88 7.3764512559893e+97 1.8172552574172e+45 1.0705030952004e+74 1.4476416359164e+79 1.1997599396264e+151 9.940085579979e+44 1.0705030952008e+74 4.0747489575494e+93 9.3607448288729e+20 2.1172272331895e+88 1.2654497419334e+45 1.6313427902964e+69 2.6704274768199e+98 3.1161430004948e+88 1.8113329301003e+45 5.8105573049733e+54 5327913.224079 8.2323911378721e+97 1.1467005989049e+69 1.1423656882611e+102 1.0717261721579e+92 1.5123417929092e+26 1.6869616091234e+69 5.1430562419167e+64 5838129.083942 2.0879037901564e-76 5.1430562419167e+64 5838129.0839444 1.4007211594249e-76 8.7029042821363e+97 7.0392712162135e-77 1.2571439116728e-71 2.0499994872061e-259 1.5081972155837e+26 5.0476533040366e-38 1.1079123517971e-47 1.6267556751891e+98 5588349.3166731 3.8583865923916e-57 7.1188062686441e-67 7.090733662362e+150 6.0428097428141e-153 2.1763118146969e-76 1.6574317240181e-47 3.5059352079702e+64 3.0233439661311e-67 3.3705533387027e+69 9.7948176201663e+25 1.3003942224919e-57 1.5114083895837e+26 2.6483363525097e+93 4.8660535900869e-86 4.7584428510254e-38 8.2387673348462e-67 9.3515463580836e-67 6.3842097144205e-67 2.3190084803776e-52 4.2651805499344e-86 1.7234563207149e-47 7.1128752612313e-38 1.5189856442134e-47 9.0545312142249e-43 1.3696732047736e-71 3.8653839781206e-86 2.5253759822906e-52 4.1810772187838e-62 1.5057108301408e-153 3.4624518068904e-86 1.806663118179e-153 3.669180492497e-62 1.4331633630295e-153 5.0671208296702e-86 1.5060066926148e-153 4.4623235833496e-86 1.5805912379268e-153 1.03371900537e-47 1.3582886455224e-153 4.0641195065949e-86 1.7317917524713e-153 3.4600984023915e-86 1.2828368951909e-153 2.9085362631459e-33 1.9699449352722e-62 1.5759066039695e-52 4.5822395780906e-72 8.5496349927915e-72 2.383248152887e-38 6.7435049251216e-67 1.9718495763226e-62 8.5496048341987e-72 4.586648460146e-72 2.9070243007343e-33 2.3815307828987e-38 1.8291888835703e-76 1.97137294353e-62 6.7693259913542e-43 4.5910571735895e-72 6.7728326449246e-43 2.3792393535125e-38 4.4644047283566e-33 1.9704215320683e-62 5.6038075837482e-67 4.5844590733446e-72 1.575906606996e-52 2.3832593720676e-38 7.2555800998865e-43 1.9699448989928e-62 4.4369306289001e-38 4.5888679553974e-72 5.6023473773462e-67 2.380945530664e-38 1.3123788317591e-47 1.9690120990163e-62 2.407122137344e-57 4.5822266911773e-72 1.303557418423e-76 2.3792281606744e-38 3.5335646895501e-57 1.9685354659408e-62 1.3042307962193e-76 4.5855299750458e-72 4.4380786074635e-38 2.3832481792295e-38 2.1746303752854e-76 1.9709074524491e-62 1.5777394499781e-52 4.5866398073734e-72 1.0339852276206e-47 2.3798110921126e-38 2.7370066366305e-57 1.9718496198746e-62 2.9085391905372e-33 4.585534276724e-72 3.6710870245438e-62 2.5188570563404e-52 9.506374490306e-43 4.6492384115042e-62 7.1144142644653e-67 1.4790100276472e-76 2.5777120304503e-57 2.5188538764278e-52 9.0614624151852e-43 4.6492198363819e-62 6.2243893264707e-38 1.4790179446513e-76 8.5981137265919e-67 2.5188570626114e-52 6.3856019372514e-67 4.6492272838281e-62 1.5335797646912e-320 2.0315979356992e-320 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966
-STA_EPHEM_RATES 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.40486391585 -1063.7256568011 3261.534612522 166.33223634184 -1063.9678295328 3261.4563975071 166.18697387447 -1064.4521595794 3261.2999295907 166.04169676237 -1064.9364588037 3261.1433858849 165.89640500164 -1065.4207272198 3260.9867663907 165.7510985944 -1065.9049648107 3260.8300711207 165.60577754349 -1066.3891715878 3260.6733000594 165.46044184998 -1066.8733475511 3260.516453211 165.31509151138 -1067.3574926949 3260.3595305812 165.16972653693 -1067.8416070235 3260.2025321656 165.02434692094 -1068.3256905311 3260.0454579652 164.87895266377 -1068.809743222 3259.8883079762 164.73354377394 -1069.2937650935 3259.7310822036 164.58812024861 -1069.7777561497 3259.573780644 164.44268208955 -1070.2617163822 3259.4164033001 164.29722929535 -1070.7456457979 3259.2589501734 164.15176187097 -1071.2295443956 3259.1014212581 164.00627981854 -1071.7134121682 3258.9438165543 163.86078313594 -1072.1972491254 3258.7861360706 163.71527182494 -1072.6810552618 3258.6283798033 163.56974589015 -1073.1648305758 3258.4705477446 163.42420532944 -1073.6485750731 3258.3126399038 163.27865014459 -1074.1322887438 3258.1546562759 163.13308033737 -1074.6159715951 3257.9965968631 162.98749591063 -1075.099623624 3257.8384616681 162.8418968665 -1075.5832448291 3257.6802506853 162.69628320212 -1076.0668352161 3257.521963914 162.55065491964 -1076.550394778 3257.3636013599 162.40501202225 -1077.0339235161 3257.2051630208 162.25935451137 -1077.5174214318 3257.046648896 162.11368238735 -1078.0008885267 3256.8880589855 161.96799565268 -1078.4843247921 3256.7293932901 161.82229430842 -1078.9677302337 3256.5706518104 161.67657835493 -1079.4511048544 3256.4118345436 161.53084779115 -1079.9344486527 3256.2529414919 161.38510262168 -1080.4177616245 3256.0939726538 161.23934285079 -1080.9010437639 3255.9349280314 161.09356847529 -1081.3842950839 3255.7758076254 160.94777949588 -1081.8675155787 3255.6166114317 160.80197591718 -1082.3507052412 3255.4573394509 160.65615773776 -1082.833864087 3255.2979916851 160.51032495941 -1083.3169921034 3255.1385681371 160.36447758496 -1083.8000892832 3254.9790688035 160.21861561371 -1084.283155645 3254.8194936814 160.07273905098 -1084.7661911759 3254.6598427772 159.92684789357 -1085.2491958788 3254.5001160865 159.78094214396 -1085.7321697579 3254.3403136081 159.6350218043 -1086.2151128075 3254.1804353447 159.48908687528 -1086.6980250235 3254.0204812984 159.34313736047 -1087.1809064072 3253.8604514658 159.19717325736 -1087.6637569699 3253.7003458482 159.05119457023 -1088.1465767018 3253.5401644449 158.90520132463 -1088.6293657278 3253.3799073511 158.75919370517 -1089.1121243716 3253.2195749842 158.61317192484 -1089.5948525538 3253.0591675708 158.4671360415 -1090.0775499861 3252.8986850213 158.32108605373 -1090.5602166499 3252.7381273273 158.17502196226 -1091.0428525525 3252.5774944895 158.02894377275 -1091.5254576853 3252.416786512 157.88285148165 -1092.0080320483 3252.2560033872 157.73674509075 -1092.4905756485 3252.0951451228 157.59062460358 -1092.973088479 3251.9342117145 157.44449002087 -1093.4555705397 3251.7732031596 157.29834134083 -1093.9380218376 3251.6121194651 157.15217856915 -1094.4204423658 3251.4509606253 157.00600170831 -1094.9028321213 3251.2897266431 156.8598107544 -1095.3851911127 3251.1284175178 853332.88117189 3394886.8299245 1106253.5311683 853359.61754506 3394710.589596 1106787.7194637 853386.3300461 3394534.2699675 1107321.8818241 853413.01867263 3394357.871044 1107856.0182371 853439.68342225 3394181.3928305 1108390.1286901 853466.32429255 3394004.8353321 1108924.2131709 853492.94128115 3393828.1985539 1109458.2716669 853519.53438564 3393651.482501 1109992.3041657 853546.10360363 3393474.6871783 2.6136072665002e-321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 352.9271664 0 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 165.02434692094 2.6926577698348e-321 6.9023390045503e-310 6.9023390045503e-310 2.7542105015418e+93 1.2954095367691e+74 2.1811103313245e+16 9.3678932062319e+25 1.1548486632987e+21 2.7880563753529e+45 4.9050013156519e+25 5.4507491236349e-153 4.9333781206924e-259 1.9732068983328e+93 3.179321060173e-153 2.1817973174948e+243 1.3585149586915e+161 5327913.7874409 7.8583970272755e+59 3.8539919399732e-57 2.6704274768174e+98 1.4254736841451e+64 1.3997091339593e-76 4.9711061845282e+30 1.3640832339935e+69 5327912.751973 1.658856315338e+151 5.7490965876061e-153 4.1107711320373e+59 9.9200115599198e+30 1.6267516728721e+98 1.4993249552164e+151 1.0669176585659e+92 8.8503364837208e+25 7.0291244526491e-77 1.2938361148584e+98 3.2425706829006e-86 1.0680459240807e+92 1.5597142198306e+98 5.8786577360528e+25 1.8172756481256e+45 1.3147843359462e-47 5.3473289494181e-38 4.6838841006254e+25 2.2146918157185e+40 2.6764205957058e+98 5.6377156261567e-62 7.8562612653749e-67 7.0907336630285e+150 3.1161430007268e+88 8.7146251892356e+150 3.4764528431404e-153 1.6551413749904e+98 4.0777925002961e+93 1.3923266687274e-259 3.5234011123372e+16 1.745847445377e-76 9.9051660219754e+30 7.8634100571976e-67 3.5385261235128e-57 1.7204230772305e+45 8.8426635023275e+25 1.3923378478139e-259 1.812043583072e+45 1.647802886547e+98 1.2576883463393e-76 161.82229430842 -1078.9677302337 2.6877171133764e-321 1.0197514930163e-320 852438.51370108 3400662.6093692 1088612.2571665 852465.79847096 3400488.1943366 1089147.0385381 852493.08324085 3400313.779304 1089681.8199098 852520.36801073 3400139.3642714 1090216.6012815 852547.65278062 3399964.9492387 1090751.3826531 852574.9375505 3399790.5342061 1091286.1640248 852602.22232039 3399616.1191735 1091820.9453965 852629.50709028 3399441.7041409 1092355.7267681 852656.79186016 3399267.2891083 1092890.5081398 852684.07663005 3399092.8740757 1093425.2895114 852711.36139993 3398918.4590431 1093960.0708831 852738.64616982 3398744.0440104 1094494.8522548 852765.90712277 3398569.5495615 1095029.6079772 852793.14425639 3398394.9757014 1095564.338038 852820.35756828 3398220.3224352 1096099.0424246 852847.54705603 3398045.5897678 1096633.7211248 852874.71271725 3397870.7777043 1097168.374126 852901.85454952 3397695.8862498 1097703.0014159 852928.97255046 3397520.9154094 1098237.602982 852956.06671766 3397345.8651881 1098772.1788118 852983.13704872 3397170.7355909 1099306.7288931 853010.18354123 3396995.526623 1099841.2532132 853037.20619281 3396820.2382892 1100375.7517598 853064.20500104 3396644.8705948 1100910.2245206 853091.17996354 3396469.4235448 1101444.6714829 853118.1310779 3396293.8971442 1101979.0926345 853145.05834172 3396118.291398 1102513.4879629 853171.9617526 3395942.6063114 1103047.8574557 853198.84130814 3395766.8418893 1103582.2011004 853225.69700595 3395590.9981369 1104116.5188847 853252.52884363 3395415.0750591 1104650.810796 853279.33681878 3395239.0726611 1105185.076822 853306.120929 3395062.9909479 1105719.3169502 853332.88117189 3394886.8299245 1106253.5311683 853359.61754506 3394710.589596 1106787.7194637 853386.3300461 3394534.2699675 1107321.8818241 853413.01867263 3394357.871044 1107856.0182371 853439.68342225 3394181.3928305 1108390.1286901 853466.32429255 3394004.8353321 1108924.2131709 853492.94128115 3393828.1985539 1109458.2716669 853519.53438564 3393651.482501 1109992.3041657 853546.10360363 3393474.6871783 1110526.3106549 853572.64893273 3393297.8125909 1111060.2911221 853599.17037054 3393120.8587439 1111594.2455549 853625.66791466 3392943.8256424 1112128.1739408 853652.1415627 3392766.7132913 1112662.0762674 853678.59131226 3392589.5216958 1113195.9525222 853705.01716095 3392412.2508609 1113729.8026929 853731.41910638 3392234.9007917 1114263.6267671 853757.79714615 3392057.4714931 1114797.4247322 853784.15127787 3391879.9629704 1115331.1965759 853810.48149914 3391702.3752284 1115864.9422857 853836.78780757 3391524.7082723 1116398.6618493 853863.07020076 3391346.9621071 1116932.3552541 853889.32867633 3391169.136738 1117466.0224878 853915.56323188 3390991.2321698 1117999.663538 853941.77386502 3390813.2484078 1118533.2783922 853967.96057335 3390635.1854569 1119066.8670379 853994.12335449 3390457.0433221 1119600.4294628 854020.26220603 3390278.8220087 1120133.9656544 854046.3771256 3390100.5215216 1120667.4756004 854072.4681108 3389922.1418658 1121200.9592882 854098.53515923 3389743.6830464 1121734.4167055 854124.57826851 3389565.1450685 1122267.8478398 854150.59743632 3389386.527937 1122801.2526789 854176.59266034 3389207.8316569 1123334.6312105 854202.56393826 3389029.0562332 1123867.9834221 854228.51126776 3388850.2016711 1124401.3093016 854254.43464653 3388671.2679755 1124934.6088366 854280.33407227 3388492.2551515 1125467.8820148 854306.20954265 3388313.1632042 1126001.1288237 854332.06105537 3388133.9921386 1126534.3492513 854357.88860812 3387954.7419597 1127067.543285 854383.69219858 3387775.4126726 1127600.7109126 854409.47182445 3387596.0042823 1128133.8521217 854435.22748341 3387416.5167939 1128666.9669001 854460.95917315 3387236.9502124 1129200.0552355 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5340738303371e-320 6.9023390045993e-310 6.9023390045993e-310 1.9208521330526e-316 1.9208521330526e-316 2.1811103313245e+16 9.3678932062319e+25 1.1548486632987e+21 2.7880563753529e+45 4.9050013156519e+25 5.4507491236349e-153 4.9333781206924e-259 1.9732068983328e+93 3.179321060173e-153 2.1817973174948e+243 1.3585149586915e+161 5327913.7874409 7.8583970272755e+59 3.8539919399732e-57 2.6704274768174e+98 1.4254736841451e+64 1.3997091339593e-76 4.9711061845282e+30 1.3640832339935e+69 5327912.751973 1.658856315338e+151 5.7490965876061e-153 4.1107711320373e+59 9.9200115599198e+30 1.6267516728721e+98 1.4993249552164e+151 1.0669176585659e+92 8.8503364837208e+25 7.0291244526491e-77 1.2938361148584e+98 3.2425706829006e-86 1.0680459240807e+92 1.5597142198306e+98 5.8786577360528e+25 1.8172756481256e+45 1.3147843359462e-47 5.3473289494181e-38 4.6838841006254e+25 2.2146918157185e+40
-STA_QUATERNIONS 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0.44936709038966 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.4190059414206e-319 6.9023390045242e-310 6.9023390045242e-310 0 0 2.1811103313245e+16 9.3678932062319e+25 1.1548486632987e+21 2.7880563753529e+45 4.9050013156519e+25 5.4507491236349e-153 4.9333781206924e-259 1.9732068983328e+93 3.179321060173e-153 2.1817973174948e+243 1.3585149586915e+161 5327913.7874409 7.8583970272755e+59 3.8539919399732e-57 2.6704274768174e+98 1.4254736841451e+64 1.3997091339593e-76 4.9711061845282e+30 1.3640832339935e+69 5327912.751973 1.658856315338e+151 5.7490965876061e-153 4.1107711320373e+59 9.9200115599198e+30 1.6267516728721e+98 1.4993249552164e+151 1.0669176585659e+92 8.8503364837208e+25 7.0291244526491e-77 1.2938361148584e+98 3.2425706829006e-86 1.0680459240807e+92 1.5597142198306e+98 5.8786577360528e+25 1.8172756481256e+45 1.3147843359462e-47 5.3473289494181e-38 4.6838841006254e+25 2.2146918157185e+40 2.6764205957058e+98 5.6377156261567e-62 7.8562612653749e-67 7.0907336630285e+150 3.1161430007268e+88 8.7146251892356e+150 3.4764528431404e-153 1.6551413749904e+98 4.0777925002961e+93 1.3923266687274e-259 3.5234011123372e+16 1.745847445377e-76 9.9051660219754e+30 7.8634100571976e-67 3.5385261235128e-57 1.7204230772305e+45 8.8426635023275e+25 1.3923378478139e-259 1.812043583072e+45 1.647802886547e+98 1.2576883463393e-76 4.6682110729563e-62 1.6901338678122e-52 2.4222009528394e-52 2.9012942115172e-57 3.4435977114291e-86 1.4273800594578e-71 1.269317000344e-76 2.7880563753493e+45 4.0839035459993e+93 7.4895910029266e-67 5.3496383418363e-38 1.626729611334e+98 9.3397881994753e+68 2.7282868860418e-57 7.4897212909284e-67 1.202716840424e-153 9.085240784567e+97 5078345.239518 1.6333108124e+45 4.9122431232707e-62 1.0683654348809e+92 1.2007261974987e+16 7.3227832325755e+25 4.5177025435591e-153 7.4940283537276e-67 7.0907336628357e+150 3.1161430007268e+88 4.971115798907e+30 1.0669176901725e+92 1.2958282037446e+98 4.0293301395554e+88 6.9901110326419e-77 2.4833863081945e-91 1.0643818368463e+92 1.0352850299157e+151 1.3690108607953e+117 1.2578019874285e-71 4.0747489575458e+93 1.0702265075477e+74 1.9842349058708e-62 1.3035534471124e-76 1.0670866924523e+92 2.1160601677547e+88 7.3764512559893e+97 1.8172552574172e+45 1.0705030952004e+74 1.4476416359164e+79 1.1997599396264e+151 9.940085579979e+44 1.0705030952008e+74 4.0747489575494e+93 9.3607448288729e+20 2.1172272331895e+88 1.2654497419334e+45 1.6313427902964e+69 2.6704274768199e+98 3.1161430004948e+88 1.8113329301003e+45 5.8105573049733e+54 5327913.224079 8.2323911378721e+97 1.1467005989049e+69 1.1423656882611e+102 1.0717261721579e+92 1.5123417929092e+26 1.6869616091234e+69 5.1430562419167e+64 5838129.083942 2.0879037901564e-76 5.1430562419167e+64 5838129.0839444 1.4007211594249e-76 8.7029042821363e+97 7.0392712162135e-77 1.2571439116728e-71 2.0499994872061e-259 1.5081972155837e+26 5.0476533040366e-38 1.1079123517971e-47 1.6267556751891e+98 5588349.3166731 3.8583865923916e-57 7.1188062686441e-67 7.090733662362e+150 6.0428097428141e-153 2.1763118146969e-76 1.6574317240181e-47 3.5059352079702e+64 3.0233439661311e-67 3.3705533387027e+69 9.7948176201663e+25 1.3003942224919e-57 1.5114083895837e+26 2.6483363525097e+93 4.8660535900869e-86 4.7584428510254e-38 8.2387673348462e-67 9.3515463580836e-67 6.3842097144205e-67 2.3190084803776e-52 4.2651805499344e-86 1.7234563207149e-47 7.1128752612313e-38 1.5189856442134e-47 9.0545312142249e-43 1.3696732047736e-71 3.8653839781206e-86 2.5253759822906e-52 4.1810772187838e-62 1.5057108301408e-153 3.4624518068904e-86 1.806663118179e-153 3.669180492497e-62 1.4331633630295e-153 5.0671208296702e-86 1.5060066926148e-153 4.4623235833496e-86 1.5805912379268e-153 1.03371900537e-47 1.3582886455224e-153 4.0641195065949e-86 1.7317917524713e-153 3.4600984023915e-86 1.2828368951909e-153 2.9085362631459e-33 1.9699449352722e-62 1.5759066039695e-52 4.5822395780906e-72 8.5496349927915e-72 2.383248152887e-38 6.7435049251216e-67 1.9718495763226e-62 8.5496048341987e-72 4.586648460146e-72 2.9070243007343e-33 2.3815307828987e-38 1.8291888835703e-76 1.97137294353e-62 6.7693259913542e-43 4.5910571735895e-72 6.7728326449246e-43 2.3792393535125e-38 4.4644047283566e-33 1.9704215320683e-62 5.6038075837482e-67 4.5844590733446e-72 1.575906606996e-52 2.3832593720676e-38 7.2555800998865e-43 1.9699448989928e-62 4.4369306289001e-38 4.5888679553974e-72 5.6023473773462e-67 2.380945530664e-38 1.3123788317591e-47 1.9690120990163e-62 2.407122137344e-57 4.5822266911773e-72 1.303557418423e-76 2.3792281606744e-38 3.5335646895501e-57 1.9685354659408e-62 1.3042307962193e-76 4.5855299750458e-72 4.4380786074635e-38 2.3832481792295e-38 2.1746303752854e-76 1.9709074524491e-62 1.5777394499781e-52 4.5866398073734e-72 1.0339852276206e-47 2.3798110921126e-38 2.7370066366305e-57 1.9718496198746e-62 2.9085391905372e-33 4.585534276724e-72 3.6710870245438e-62 2.5188570563404e-52 9.506374490306e-43 4.6492384115042e-62 7.1144142644653e-67 1.4790100276472e-76 2.5777120304503e-57 2.5188538764278e-52 9.0614624151852e-43 4.6492198363819e-62 6.2243893264707e-38 1.4790179446513e-76 8.5981137265919e-67 2.5188570626114e-52 6.3856019372514e-67 4.6492272838281e-62 1.0394461264347e-42 1.4790113402143e-76 8.6008539407737e-43 7.8706541127701e-67 2.1098020014112e-52 3.6977296458531e-33 1.6571623635602e-47 3.118446098823e-33 9.1621993086257e-72 7.8706541793549e-67 1.901809514756e-52 3.6977296917245e-33 1.798202794616e-52 3.1184460529046e-33 6.0132324795084e-67 3.5067116070799e-33 1.3137393048392e-71 1.1300070308804e-42 1.2005450369327e-71 7.4021612778204e-38 7.1163235413241e-38 3.5067116073478e-33 2.5832980829691e-57 1.1300070308387e-42 2.2133896167251e-52 4.8510804153897e-33 7.1106107280165e-38 1.6588255542764e-76 3.3773669867505e-57 1.7242538922866e-47 1.5187204313067e-47 7.4124885835945e-38 1.0300852190108e-71 3.9380093453037e-62 9.3443185954115e-67 6.530881307975e-38 5.3542389968921e-38 3.9351457367317e-62 2.4213805664171e-52 1.1084510887561e-47 9.1622596608594e-72 1.520589298563e-47 4.080726345064e-33 3.117743659472e-33 7.8649602657691e-67 3.1200124439248e-33 5.4022407149966e-62 3.5403978511762e-57 3.3773524300464e-57 2.7382463011386e-57 5.9339685730758e-38 9.7348724482503e-72 1.039797124514e-42 3.5074670803503e-33 3.2168108380515e-57 1.129654698965e-42 3.0606009999537e-57 2.1081627535644e-52 7.71449850457e-43 9.7415394041906e-72 7.4056055468979e-38 4.182983750575e-62 3.5074671264957e-33 3.4616509389693e-86 1.6554625947441e-153 3.6603956120685e-86 1.5059998687798e-153 4.6657503157188e-86 1.7309200131281e-153 4.4403744685584e-38 1.5060078217585e-153 4.4662662589649e-86 1.4337551814546e-153 3.6635251347607e-86 1.5057073803146e-153 1.0334506787408e-47 1.5829185463399e-153 3.2621576774298e-86 1.8803758797631e-153 4.4623205626854e-86 1.7306321036499e-153 1.5763112336843e-52 1.4328754492276e-153 4.2612533113038e-86 1.2845849171787e-153 3.2590189133887e-86 2.3821114633629e-38 4.6625359876596e-62 1.9713822742762e-62 1.3050735002684e-76 4.5822180891373e-72 1.3044020914627e-76 2.5188474917602e-52 1.5711014028675e-76 2.6310026434055e-52 3.1245379831882e-33 1.6905399507718e-52 4.2740597866421e-33 4.6691788426259e-62 7.7092778459871e-43 4.0145914358613e-57 4.8526057798889e-33 1.1079122620739e-47 9.7348721134017e-72 4.6691788426842e-62 3.3798392242834e-57 4.0145914357488e-57 2.6330450741389e-52 9.9495556813292e-43 1.3837416738454e-47 5.6423819385393e-38 1.3813351253234e-47 5.154406338986e-62 9.9653751627884e-43 7.1274544201357e-67 2.9025339718319e-57 4.1820379758445e-62 1.2463667921159e-47 2.0049909226481e-52 3.2161739323405e-57 1.4519034097442e-47 1.313072619654e-71 5.0671300704105e-86 1.8997592426835e-52 1.3692301727004e-71 1.6913668774876e-52 2.1763210492745e-76 9.1821662992607e-72 4.4662570302581e-86 2.2129849963685e-52 2.57894447929e-57 1.0300835019638e-71 2.9031732131933e-57 3.1230098978838e-33 3.6643075217671e-86 1.7949560857227e-52 5.3542391198486e-38 3.6992960611302e-33 6.2312948553045e-38 4.2778302191212e-33 5.0655622286851e-86 3.5379208001334e-57 1.2005407559306e-71 1.2819628532083e-153 3.6643229343593e-86 1.7309211377916e-153 8.5496177711877e-72 1.4328754314104e-153 4.0648895487217e-86 1.4334626709532e-153 4.4631182424799e-86 1.8797954950865e-153 1.0330523802735e-47 1.4331656481817e-153 4.6696837272796e-86 1.8786346771464e-153 3.2597859233341e-86 1.2825421173538e-153 8.5529556503342e-72 1.5071641141965e-153 3.2566471960449e-86 1.879503020184e-153 4.066463502469e-86 1.8797954907281e-153 1.0334506868974e-47 1.6566267958968e-153 3.8614720444518e-86 1.5062946376913e-153 4.8652589303936e-86 1.8040455973719e-153 8.5452003878393e-72 1.9708982084968e-62 6.7737119310589e-43 4.5844289986267e-72 1.3038947610255e-76 2.3809590268168e-38 4.07922463991e-33 1.9704234010184e-62 1.5777410429971e-52 4.5899734191021e-72 2.9089153371373e-33 2.3797998377968e-38 9.1578379432206e-72 1.9699615905048e-62 5.6001711844244e-67 4.5910572077847e-72 4.4409327984147e-38 2.3838177020947e-38 1.1421723269458e-71 1.9713748413457e-62 2.9085303684554e-33 4.5888507172556e-72 1.0331854903751e-47 2.3792371114349e-38 4.4644076671375e-33 1.9699467970909e-62 2.4068158054695e-57 4.5822267757764e-72 2.4068207004711e-57 2.3797998466236e-38 1.7937262562512e-52 1.9709093434165e-62 2.9104170713043e-33 4.5855300768434e-72 8.5440862716239e-72 2.3838244107774e-38 5.9304932659871e-38 1.9694720405791e-62 3.6701263545266e-62 4.5855645367196e-72 2.9085348110641e-33 2.3826764757304e-38 6.8121409690668e-38 1.9709037794099e-62 6.7719465966434e-43 4.5844332829772e-72 1.0338552496807e-47 2.3803895218093e-38 7.2555732043628e-43 1.9704326595163e-62 2.9092841599251e-33 4.5822438961084e-72 3.6701319329656e-62 2.379230376273e-38 7.1144653358281e-67 1.9690009496079e-62 8.5529426284806e-72 9.6928918672582e-72 6.0016864666623e-67 2.5188570814265e-52 5.3984016576549e-62 4.6492384980419e-62 4.4194198090927e-62 9.692892069534e-72 1.5176555465426e-47 5.1581119083806e-62 5.6469825076575e-38 3.6977296456282e-33 5.9350761070396e-38 9.7302693734367e-72 6.8166968702924e-38 5.1581118213904e-62 1.6925919402269e-52 3.6977296802007e-33 2.5257742739373e-52 9.7302694070425e-72 9.9635482750722e-43 5.1581119230957e-62 4.6663044108215e-62 3.6977297261635e-33 4.9074808344026e-62 9.7302691366336e-72 3.5059300869176e-33 3.3804202202394e-57 6.7550961496071e-67 3.6977296571078e-33 2.0315979356992e-320 4.055290821065e-320 1.9732068983328e+93 2.669881744735e+59 2.7542105015418e+93 1.2954095367691e+74 2.1811103313245e+16 9.3678932062319e+25 1.1548486632987e+21 2.7880563753529e+45 4.9050013156519e+25 5.4507491236349e-153 4.9333781206924e-259 1.9732068983328e+93 3.179321060173e-153 2.1817973174948e+243 1.3585149586915e+161 5327913.7874409 7.8583970272755e+59 3.8539919399732e-57 2.6704274768174e+98 1.4254736841451e+64 1.3997091339593e-76 4.9711061845282e+30 1.3640832339935e+69 5327912.751973 1.658856315338e+151 5.7490965876061e-153 4.1107711320373e+59 9.9200115599198e+30 1.6267516728721e+98 1.4993249552164e+151 1.0669176585659e+92 8.8503364837208e+25 7.0291244526491e-77 1.2938361148584e+98 3.2425706829006e-86 1.0680459240807e+92 1.5597142198306e+98 5.8786577360528e+25 1.8172756481256e+45 1.3147843359462e-47 5.3473289494181e-38 4.6838841006254e+25 2.2146918157185e+40 2.6764205957058e+98 5.6377156261567e-62 7.8562612653749e-67 7.0907336630285e+150 3.1161430007268e+88 8.7146251892356e+150 3.4764528431404e-153 1.6551413749904e+98 4.0777925002961e+93 1.3923266687274e-259 3.5234011123372e+16 1.745847445377e-76 9.9051660219754e+30 7.8634100571976e-67 3.5385261235128e-57 1.7204230772305e+45 8.8426635023275e+25 1.3923378478139e-259 1.812043583072e+45 1.647802886547e+98 1.2576883463393e-76 4.6682110729563e-62 1.6901338678122e-52 2.4222009528394e-52 2.9012942115172e-57 3.4435977114291e-86 1.4273800594578e-71 1.269317000344e-76 2.7880563753493e+45 4.0839035459993e+93 7.4895910029266e-67 5.3496383418363e-38 1.626729611334e+98 9.3397881994753e+68 2.7282868860418e-57 7.4897212909284e-67 1.202716840424e-153 9.085240784567e+97 5078345.239518 1.6333108124e+45 4.9122431232707e-62 1.0683654348809e+92 1.2007261974987e+16 7.3227832325755e+25 4.5177025435591e-153 7.4940283537276e-67 7.0907336628357e+150 3.1161430007268e+88 4.971115798907e+30 1.0669176901725e+92 1.2958282037446e+98 4.0293301395554e+88 6.9901110326419e-77 2.4833863081945e-91 1.0643818368463e+92 1.0352850299157e+151 1.3690108607953e+117 1.2578019874285e-71 4.0747489575458e+93 1.0702265075477e+74 1.9842349058708e-62 1.3035534471124e-76 1.0670866924523e+92 2.1160601677547e+88 7.3764512559893e+97 1.8172552574172e+45 1.0705030952004e+74 1.4476416359164e+79 1.1997599396264e+151 9.940085579979e+44 1.0705030952008e+74 4.0747489575494e+93 9.3607448288729e+20 2.1172272331895e+88 1.2654497419334e+45 1.6313427902964e+69 2.6704274768199e+98 3.1161430004948e+88 1.8113329301003e+45 5.8105573049733e+54 5327913.224079 8.2323911378721e+97 1.1467005989049e+69 1.1423656882611e+102 1.0717261721579e+92 1.5123417929092e+26 1.6869616091234e+69 5.1430562419167e+64 5838129.083942 2.0879037901564e-76 5.1430562419167e+64 5838129.0839444 1.4007211594249e-76 8.7029042821363e+97 7.0392712162135e-77 1.2571439116728e-71 2.0499994872061e-259 1.5081972155837e+26 5.0476533040366e-38 1.1079123517971e-47 1.6267556751891e+98 5588349.3166731 3.8583865923916e-57 7.1188062686441e-67 7.090733662362e+150 6.0428097428141e-153 2.1763118146969e-76 1.6574317240181e-47 3.5059352079702e+64 3.0233439661311e-67 3.3705533387027e+69 9.7948176201663e+25 1.3003942224919e-57 1.5114083895837e+26 2.6483363525097e+93 4.8660535900869e-86 4.7584428510254e-38 8.2387673348462e-67 9.3515463580836e-67 6.3842097144205e-67 2.3190084803776e-52 4.2651805499344e-86 1.7234563207149e-47 7.1128752612313e-38 1.5189856442134e-47 9.0545312142249e-43 1.3696732047736e-71 3.8653839781206e-86 2.5253759822906e-52 4.1810772187838e-62 1.5057108301408e-153 3.4624518068904e-86 1.806663118179e-153 3.669180492497e-62 1.4331633630295e-153 5.0671208296702e-86 1.5060066926148e-153 4.4623235833496e-86 1.5805912379268e-153 1.03371900537e-47 1.3582886455224e-153 4.0641195065949e-86 1.7317917524713e-153 3.4600984023915e-86 1.2828368951909e-153 2.9085362631459e-33 1.9699449352722e-62 1.5759066039695e-52 4.5822395780906e-72 8.5496349927915e-72 2.383248152887e-38 6.7435049251216e-67 1.9718495763226e-62 8.5496048341987e-72 4.586648460146e-72 2.9070243007343e-33 2.3815307828987e-38 1.8291888835703e-76 1.97137294353e-62 6.7693259913542e-43 4.5910571735895e-72 6.7728326449246e-43 2.3792393535125e-38 4.4644047283566e-33 1.9704215320683e-62 5.6038075837482e-67 4.5844590733446e-72 1.575906606996e-52 2.3832593720676e-38 7.2555800998865e-43 1.9699448989928e-62 4.4369306289001e-38 4.5888679553974e-72 5.6023473773462e-67 2.380945530664e-38 1.3123788317591e-47 1.9690120990163e-62 2.407122137344e-57 4.5822266911773e-72 1.303557418423e-76 2.3792281606744e-38 3.5335646895501e-57 1.9685354659408e-62 1.3042307962193e-76 4.5855299750458e-72 4.4380786074635e-38 2.3832481792295e-38 2.1746303752854e-76 1.9709074524491e-62 1.5777394499781e-52 4.5866398073734e-72 1.0339852276206e-47 2.3798110921126e-38 2.7370066366305e-57 1.9718496198746e-62 2.9085391905372e-33 4.585534276724e-72 3.6710870245438e-62 2.5188570563404e-52 9.506374490306e-43 4.6492384115042e-62 7.1144142644653e-67 1.4790100276472e-76 2.5777120304503e-57 2.5188538764278e-52 9.0614624151852e-43 4.6492198363819e-62 6.2243893264707e-38 1.4790179446513e-76 8.5981137265919e-67 2.5188570626114e-52 6.3856019372514e-67 4.6492272838281e-62 1.0394461264347e-42 1.4790113402143e-76 8.6008539407737e-43 7.8706541127701e-67 2.1098020014112e-52 3.6977296458531e-33 1.6571623635602e-47 3.118446098823e-33 9.1621993086257e-72 7.8706541793549e-67 1.901809514756e-52 3.6977296917245e-33 1.798202794616e-52 3.1184460529046e-33 6.0132324795084e-67 3.5067116070799e-33 1.3137393048392e-71 1.1300070308804e-42 1.2005450369327e-71 7.4021612778204e-38 7.1163235413241e-38 3.5067116073478e-33 2.5832980829691e-57 1.1300070308387e-42 2.2133896167251e-52 4.8510804153897e-33 7.1106107280165e-38 1.6588255542764e-76 3.3773669867505e-57 1.7242538922866e-47 1.5187204313067e-47 7.4124885835945e-38 1.0300852190108e-71 3.9380093453037e-62 9.3443185954115e-67 6.530881307975e-38 5.3542389968921e-38 3.9351457367317e-62 2.4213805664171e-52 1.1084510887561e-47 9.1622596608594e-72 1.520589298563e-47 4.080726345064e-33 3.117743659472e-33 7.8649602657691e-67 3.1200124439248e-33 5.4022407149966e-62 3.5403978511762e-57 3.3773524300464e-57 2.7382463011386e-57 5.9339685730758e-38 9.7348724482503e-72 1.039797124514e-42 3.5074670803503e-33 3.2168108380515e-57 1.129654698965e-42 3.0606009999537e-57 2.1081627535644e-52 7.71449850457e-43 9.7415394041906e-72 7.4056055468979e-38 4.182983750575e-62 3.5074671264957e-33 3.4616509389693e-86 1.6554625947441e-153 3.6603956120685e-86 1.5059998687798e-153 4.6657503157188e-86 1.7309200131281e-153 4.4403744685584e-38 1.5060078217585e-153 4.4662662589649e-86 1.4337551814546e-153 3.6635251347607e-86 1.5057073803146e-153 1.0334506787408e-47 1.5829185463399e-153 3.2621576774298e-86 1.8803758797631e-153 4.4623205626854e-86 1.7306321036499e-153 1.5763112336843e-52 1.4328754492276e-153 4.2612533113038e-86 1.2845849171787e-153 3.2590189133887e-86 2.3821114633629e-38 4.6625359876596e-62 1.9713822742762e-62 1.3050735002684e-76 4.5822180891373e-72 1.3044020914627e-76 2.5188474917602e-52 1.5711014028675e-76 2.6310026434055e-52 3.1245379831882e-33 1.6905399507718e-52 4.2740597866421e-33 4.6691788426259e-62 7.7092778459871e-43 4.0145914358613e-57 4.8526057798889e-33 1.1079122620739e-47 9.7348721134017e-72 4.6691788426842e-62 3.3798392242834e-57 4.0145914357488e-57 2.6330450741389e-52 9.9495556813292e-43 1.3837416738454e-47 5.6423819385393e-38 1.3813351253234e-47 5.154406338986e-62 9.9653751627884e-43 7.1274544201357e-67 2.9025339718319e-57 4.1820379758445e-62 1.2463667921159e-47 2.0049909226481e-52 3.2161739323405e-57 1.4519034097442e-47 1.313072619654e-71 5.0671300704105e-86 1.8997592426835e-52 1.3692301727004e-71 1.6913668774876e-52 2.1763210492745e-76 9.1821662992607e-72 4.4662570302581e-86 2.2129849963685e-52 2.57894447929e-57 1.0300835019638e-71 2.9031732131933e-57 3.1230098978838e-33 3.6643075217671e-86 1.7949560857227e-52 5.3542391198486e-38 3.6992960611302e-33 6.2312948553045e-38 4.2778302191212e-33 5.0655622286851e-86 3.5379208001334e-57 1.2005407559306e-71 1.2819628532083e-153 3.6643229343593e-86 1.7309211377916e-153 8.5496177711877e-72 1.4328754314104e-153 4.0648895487217e-86 1.4334626709532e-153 4.4631182424799e-86 1.8797954950865e-153 1.0330523802735e-47 1.4331656481817e-153 4.6696837272796e-86 1.8786346771464e-153 3.2597859233341e-86 1.2825421173538e-153 8.5529556503342e-72 1.5071641141965e-153 3.2566471960449e-86 1.879503020184e-153 4.066463502469e-86 1.8797954907281e-153 1.0334506868974e-47 1.6566267958968e-153 3.8614720444518e-86 1.5062946376913e-153 4.8652589303936e-86 1.8040455973719e-153 8.5452003878393e-72 1.9708982084968e-62 6.7737119310589e-43 4.5844289986267e-72 1.3038947610255e-76 2.3809590268168e-38 4.07922463991e-33 1.9704234010184e-62 1.5777410429971e-52 4.5899734191021e-72 2.9089153371373e-33 2.3797998377968e-38 9.1578379432206e-72 1.9699615905048e-62 5.6001711844244e-67 4.5910572077847e-72 4.4409327984147e-38 2.3838177020947e-38 1.1421723269458e-71 1.9713748413457e-62 2.9085303684554e-33 4.5888507172556e-72 1.0331854903751e-47 2.3792371114349e-38 4.4644076671375e-33 1.9699467970909e-62 2.4068158054695e-57 4.5822267757764e-72 2.4068207004711e-57 2.3797998466236e-38 1.7937262562512e-52 1.9709093434165e-62 2.9104170713043e-33 4.5855300768434e-72 8.5440862716239e-72 2.3838244107774e-38 5.9304932659871e-38 1.9694720405791e-62 3.6701263545266e-62 4.5855645367196e-72 2.9085348110641e-33 2.3826764757304e-38 6.8121409690668e-38 1.9709037794099e-62 6.7719465966434e-43 4.5844332829772e-72 1.0338552496807e-47 2.3803895218093e-38 7.2555732043628e-43 1.9704326595163e-62 2.9092841599251e-33 4.5822438961084e-72 3.6701319329656e-62 2.379230376273e-38 7.1144653358281e-67 1.9690009496079e-62 8.5529426284806e-72 9.6928918672582e-72 6.0016864666623e-67 2.5188570814265e-52 5.3984016576549e-62 4.6492384980419e-62 4.4194198090927e-62 9.692892069534e-72 1.5176555465426e-47 5.1581119083806e-62 5.6469825076575e-38 3.6977296456282e-33 5.9350761070396e-38 9.7302693734367e-72 6.8166968702924e-38 5.1581118213904e-62 1.6925919402269e-52 3.6977296802007e-33 2.5257742739373e-52 9.7302694070425e-72 9.9635482750722e-43 5.1581119230957e-62 4.6663044108215e-62 3.6977297261635e-33 4.9074808344026e-62 9.7302691366336e-72 3.5059300869176e-33 3.3804202202394e-57 6.7550961496071e-67 3.6977296571078e-33 6.7579715494051e-67 6.3768293145532e-67 2.3202271707488e-52 3.3804201823312e-57 1.313957793262e-71 2.1763143781407e-76 1.7953591130595e-52 1.5711052430659e-76 1.4516329930663e-47 1.7451872398874e-76 9.7459352470705e-72 4.8571050409273e-33 1.6552976760667e-47 6.3783743050745e-67 5.3553960315179e-38 3.1207647603086e-33 4.0814727268925e-33 1.1308828929734e-42 2.5808210786625e-57 7.7109813845695e-43 2.0046005252821e-76 6.3812949163366e-67 6.5228681943376e-38 2.6330419186812e-52 1.108984569324e-47 6.7492949201423e-67 5.8864961383209e-62 1.79617483796e-52 1.3139887874718e-47 6.1305284469419e-62 6.1295752107326e-62 2.0896141118871e-76 6.8213066166828e-38 1.5868749159598e-47 3.9408616393146e-62 1.5738133679045e-76 1.4513626048562e-47 4.6672577200941e-62 1.4850810056525e-76 6.007470759903e-67 8.9763128437199e-67 6.01763571502e-67 4.666323058047e-62 1.6558301409579e-47 6.7522042139632e-67 5.347355872064e-38 1.0408487772448e-42 2.528645013113e-52 1.3137349868072e-71 1.7448420703517e-76 9.1689267831157e-72 3.3767350001122e-57 2.3182007640612e-52 9.9636166173461e-43 2.4246463987085e-52 6.1267264826174e-62 1.3150589007157e-47 2.0896167681676e-76 6.7565338715719e-67 3.8941547632609e-33 1.1994370400818e-71 1.3826735875865e-47 2.7382487993617e-57 1.1084500328533e-47 1.2455639227166e-47 1.0877912371176e-71 2.5801866229186e-57 1.4000700288163e-76 4.4289412394046e-62 7.1216815137619e-67 5.1553224841004e-62 4.1858547197124e-62 5.6400726178945e-38 5.1562794590008e-62 1.1996615771039e-71 9.5064156782268e-43 1.3690108107117e-71 2.6326420530718e-52 4.0874795145943e-33 1.1095170342151e-47 2.5261900647509e-52 3.8645954789529e-86 6.2358866476992e-38 2.4238307481208e-52 1.2463667676462e-47 1.4000766228389e-76 1.2447662328099e-47 5.0647737175323e-86 2.1093846735613e-52 1.7247927193031e-47 4.4289190130898e-62 4.6653808762747e-62 7.7109814134913e-43 4.2628242090413e-86 1.1432838052123e-71 1.1771432302052e-47 3.7023111808231e-33 1.5197926855859e-47 9.1622944084766e-72 3.2597982322116e-86 1.7957701496609e-52 1.3134542304199e-47 2.8981802159285e-57 1.3987298570516e-76
-STA_PARAMETER_VALS 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
-STA_PARAMETER_TYPE REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL REAL
-STA_REFERENCE_POINT_XYZ 0 0 0
-STA_GSD 1
-STA_FLYING_HEIGHT 1000
-STA_HALF_SWATH 1000
-STA_HALF_TIME 10
-STA_COVARIANCE 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
-STA_IMAGE_FLIP_FLAG 0
diff --git a/tests/J03_046060_1986_XN_18N282W_8bit_state.json b/tests/J03_046060_1986_XN_18N282W_8bit_state.json
deleted file mode 100644
index 67510b2867a8de4a0b5a0fa2bf2641d4224c10a4..0000000000000000000000000000000000000000
--- a/tests/J03_046060_1986_XN_18N282W_8bit_state.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-	"STA_ABERR_FLAG": 0,
-	"STA_ATMREF_FLAG": 0,
-	"STA_CENTER_EPHEMERIS_TIME": 517362771.52589,
-	"STA_COLLECTION_IDENTIFIER": "UNKNOWN",
-	"STA_COVARIANCE": [1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1],
-	"STA_DETECTOR_LINE_OFFSET": 0.0,
-	"STA_DETECTOR_LINE_ORIGIN": 0.430442527,
-	"STA_DETECTOR_SAMPLE_ORIGIN": 2543.46099,
-	"STA_DETECTOR_SAMPLE_SUMMING": 1,
-	"STA_DT_EPHEM": 0.163966180094787,
-	"STA_DT_QUAT": 0.0884830281329923,
-	"STA_EPHEM_PTS": [852438.513701078, 3400662.6093692, 1088612.25716648, 852465.798470963, 3400488.19433658, 1089147.03853814, 852493.083240849, 3400313.77930397, 1089681.81990981, 852520.368010734, 3400139.36427135, 1090216.60128147, 852547.652780619, 3399964.94923874, 1090751.38265313, 852574.937550505, 3399790.53420613, 1091286.16402479, 852602.22232039, 3399616.11917351, 1091820.94539645, 852629.507090276, 3399441.7041409, 1092355.72676812, 852656.791860161, 3399267.28910828, 1092890.50813978, 852684.076630047, 3399092.87407567, 1093425.28951144, 852711.361399932, 3398918.45904305, 1093960.0708831, 852738.646169818, 3398744.04401044, 1094494.85225477, 852765.907122771, 3398569.54956155, 1095029.60797719, 852793.144256393, 3398394.97570144, 1095564.33803796, 852820.357568281, 3398220.32243516, 1096099.04242464, 852847.547056032, 3398045.58976777, 1096633.72112481, 852874.712717247, 3397870.77770431, 1097168.37412604, 852901.854549523, 3397695.88624985, 1097703.00141591, 852928.972550461, 3397520.91540943, 1098237.60298198, 852956.066717657, 3397345.8651881, 1098772.17881184, 852983.137048716, 3397170.73559093, 1099306.72889305, 853010.183541232, 3396995.52662295, 1099841.25321319, 853037.206192808, 3396820.23828924, 1100375.75175984, 853064.205001044, 3396644.87059483, 1100910.22452056, 853091.179963541, 3396469.42354479, 1101444.67148294, 853118.131077898, 3396293.89714416, 1101979.09263454, 853145.058341716, 3396118.291398, 1102513.48796294, 853171.961752597, 3395942.60631136, 1103047.85745571, 853198.841308143, 3395766.8418893, 1103582.20110043, 853225.697005954, 3395590.99813686, 1104116.51888466, 853252.528843632, 3395415.07505912, 1104650.81079599, 853279.336818779, 3395239.0726611, 1105185.07682199, 853306.120928997, 3395062.99094788, 1105719.31695023, 853332.881171889, 3394886.8299245, 1106253.53116829, 853359.617545057, 3394710.58959601, 1106787.71946373, 853386.330046105, 3394534.26996748, 1107321.88182414, 853413.018672634, 3394357.87104396, 1107856.01823708, 853439.683422249, 3394181.39283049, 1108390.12869014, 853466.324292553, 3394004.83533214, 1108924.21317087, 853492.941281148, 3393828.19855395, 1109458.27166687, 853519.53438564, 3393651.48250098, 1109992.30416569, 853546.103603633, 3393474.68717829, 1110526.31065492, 853572.64893273, 3393297.81259092, 1111060.29112213, 853599.170370537, 3393120.85874394, 1111594.2455549, 853625.667914657, 3392943.8256424, 1112128.17394078, 853652.141562696, 3392766.71329135, 1112662.07626737, 853678.591312259, 3392589.52169584, 1113195.95252224, 853705.017160953, 3392412.25086093, 1113729.80269295, 853731.419106381, 3392234.90079168, 1114263.62676708, 853757.79714615, 3392057.47149314, 1114797.4247322, 853784.151277867, 3391879.96297036, 1115331.1965759, 853810.481499136, 3391702.37522839, 1115864.94228574, 853836.787807565, 3391524.7082723, 1116398.66184929, 853863.070200761, 3391346.96210714, 1116932.35525414, 853889.32867633, 3391169.13673796, 1117466.02248785, 853915.56323188, 3390991.23216981, 1117999.663538, 853941.773865017, 3390813.24840776, 1118533.27839215, 853967.960573351, 3390635.18545685, 1119066.8670379, 853994.123354486, 3390457.04332214, 1119600.4294628, 854020.262206034, 3390278.82200869, 1120133.96565443, 854046.377125601, 3390100.52152155, 1120667.47560038, 854072.468110796, 3389922.14186578, 1121200.9592882, 854098.535159227, 3389743.68304642, 1121734.41670547, 854124.578268513, 3389565.1450685, 1122267.84783981, 854150.597436321, 3389386.52793697, 1122801.25267891, 854176.592660339, 3389207.83165685, 1123334.63121047, 854202.563938256, 3389029.05623321, 1123867.98342215, 854228.511267756, 3388850.20167108, 1124401.30930164, 854254.434646531, 3388671.2679755, 1124934.60883662, 854280.334072266, 3388492.25515153, 1125467.88201476, 854306.20954265, 3388313.16320421, 1126001.12882375, 854332.061055372, 3388133.99213858, 1126534.34925126, 854357.88860812, 3387954.74195968, 1127067.54328498, 854383.692198584, 3387775.41267257, 1127600.71091258, 854409.47182445, 3387596.00428228, 1128133.85212173, 854435.227483411, 3387416.51679386, 1128666.96690013, 854460.959173154, 3387236.95021236, 1129200.05523545, 854486.66689137, 3387057.30454282, 1129733.11711537, 854512.350635748, 3386877.57979029, 1130266.15252757, 854538.01040398, 3386697.77595981, 1130799.16145972, 854563.646193754, 3386517.89305643, 1131332.1438995, 854589.258002762, 3386337.93108519, 1131865.09983461, 854614.845828694, 3386157.89005114, 1132398.0292527, 854640.40966924, 3385977.76995932, 1132930.93214147, 854665.949522094, 3385797.57081478, 1133463.80848859, 854691.465384947, 3385617.29262256, 1133996.65828174, 854716.957255488, 3385436.93538771, 1134529.4815086, 854742.425131412, 3385256.49911528, 1135062.27815685, 854767.869010409, 3385075.98381031, 1135595.04821417, 854793.288890171, 3384895.38947784, 1136127.79166824, 854818.684768393, 3384714.71612293, 1136660.50850673, 854844.056642766, 3384533.96375061, 1137193.19871732, 854869.404510983, 3384353.13236594, 1137725.8622877, 854894.728370736, 3384172.22197395, 1138258.49920555, 854920.028219721, 3383991.2325797, 1138791.10945854, 854945.30405563, 3383810.16418823, 1139323.69303435, 854970.555876158, 3383629.01680458, 1139856.24992065, 854995.783678998, 3383447.79043381, 1140388.78010514, 855020.987461844, 3383266.48508096, 1140921.28357549, 855046.167222391, 3383085.10075107, 1141453.76031938, 855071.322958333, 3382903.63744919, 1141986.21032448, 855096.454667366, 3382722.09518037, 1142518.63357848, 855121.562347186, 3382540.47394965, 1143051.03006905, 855146.645995485, 3382358.77376208, 1143583.39978388, 855171.705609961, 3382176.9946227, 1144115.74271064, 855196.74118831, 3381995.13653657, 1144648.05883701, 855221.752728226, 3381813.19950872, 1145180.34815067, 855246.740227408, 3381631.18354421, 1145712.61063931, 855271.70368355, 3381449.08864808, 1146244.84629059, 855296.643094349, 3381266.91482537, 1146777.0550922, 855321.558457504, 3381084.66208114, 1147309.23703182, 855346.449770709, 3380902.33042043, 1147841.39209712, 855371.317031663, 3380719.91984829, 1148373.52027579, 855396.160238063, 3380537.43036976, 1148905.62155551, 855420.979387608, 3380354.86198989, 1149437.69592395, 855445.774477993, 3380172.21471372, 1149969.74336879, 855470.545507269, 3379989.48854619, 1150501.76387763, 855495.292473415, 3379806.6834924, 1151033.75743804, 855520.015374014, 3379623.79955767, 1151565.72403765, 855544.714206653, 3379440.83674731, 1152097.6636641, 855569.388968916, 3379257.79506664, 1152629.576305, 855594.039658388, 3379074.67452098, 1153161.46194801, 855618.666272657, 3378891.47511564, 1153693.32058074, 855643.268809305, 3378708.19685594, 1154225.15219084, 855667.84726592, 3378524.8397472, 1154756.95676593, 855692.401640088, 3378341.40379473, 1155288.73429364, 855716.931929395, 3378157.88900386, 1155820.48476162, 855741.438131429, 3377974.29537989, 1156352.20815748, 855765.920243774, 3377790.62292815, 1156883.90446887, 855790.378264019, 3377606.87165395, 1157415.57368342, 855814.812189752, 3377423.04156261, 1157947.21578875, 855839.222018559, 3377239.13265945, 1158478.83077251, 855863.607748028, 3377055.14494978, 1159010.41862231, 855887.969375749, 3376871.07843893, 1159541.97932581, 855912.306899307, 3376686.9331322, 1160073.51287062, 855936.620316293, 3376502.70903492, 1160605.01924438, 855960.909624295, 3376318.40615241, 1161136.49843472, 855985.174820901, 3376134.02448997, 1161667.95042928, 856009.415903701, 3375949.56405294, 1162199.37521568, 856033.632870284, 3375765.02484663, 1162730.77278156, 856057.82571824, 3375580.40687635, 1163262.14311456, 856081.994445159, 3375395.71014742, 1163793.48620229, 856106.139049135, 3375210.93466432, 1164324.8020328, 856130.259529709, 3375026.08042918, 1164856.09059521, 856154.35588468, 3374841.14744707, 1165387.35187723, 856178.428111662, 3374656.13572339, 1165918.58586646, 856202.476208267, 3374471.04526356, 1166449.79255048, 856226.500172106, 3374285.87607297, 1166980.97191687, 856250.500000793, 3374100.62815702, 1167512.12395322, 856274.475691941, 3373915.30152111, 1168043.24864709, 856298.427243162, 3373729.89617066, 1168574.34598608, 856322.354652069, 3373544.41211105, 1169105.41595777, 856346.257916277, 3373358.84934769, 1169636.45854974, 856370.137033399, 3373173.20788599, 1170167.47374957, 856393.992001048, 3372987.48773135, 1170698.46154484, 856417.82281684, 3372801.68888917, 1171229.42192314, 856441.629478389, 3372615.81136484, 1171760.35487204, 856465.411983309, 3372429.85516379, 1172291.26037913, 856489.170329214, 3372243.8202914, 1172822.13843199, 856512.904513723, 3372057.70675308, 1173352.9890182, 856536.614534447, 3371871.51455423, 1173883.81212534, 856560.300389005, 3371685.24370026, 1174414.607741, 856583.962075009, 3371498.89419656, 1174945.37585276, 856607.599590079, 3371312.46604855, 1175476.11644819, 856631.21293183, 3371125.95926162, 1176006.82951489, 856654.802097877, 3370939.37384118, 1176537.51504043, 856678.367085839, 3370752.70979263, 1177068.17301239, 856701.907893332, 3370565.96712137, 1177598.80341836, 856725.424517884, 3370379.14583298, 1178129.4062458, 856748.916955178, 3370192.24593687, 1178659.98147972, 856772.385202369, 3370005.26743947, 1179190.52910709, 856795.829257505, 3369818.21034538, 1179721.04911604, 856819.249118637, 3369631.07465922, 1180251.54149468, 856842.644783812, 3369443.8603856, 1180782.00623115, 856866.01625108, 3369256.56752912, 1181312.44331359, 856889.363518491, 3369069.19609441, 1181842.85273013, 856912.686584096, 3368881.74608606, 1182373.23446889, 856935.985445944, 3368694.21750869, 1182903.588518, 856959.260102084, 3368506.61036691, 1183433.9148656, 856982.510550568, 3368318.92466534, 1183964.21349982, 857005.736789447, 3368131.16040857, 1184494.48440878, 857028.938816771, 3367943.31760123, 1185024.72758062, 857052.116630592, 3367755.39624791, 1185554.94300347, 857075.27022896, 3367567.39635324, 1186085.13066546, 857098.399609927, 3367379.31792183, 1186615.29055472, 857121.504771544, 3367191.16095828, 1187145.42265939, 857144.585711864, 3367002.9254672, 1187675.52696758, 857167.642428939, 3366814.61145322, 1188205.60346743, 857190.67492082, 3366626.21892092, 1188735.65214707, 857213.68318556, 3366437.74787494, 1189265.67299464, 857236.667221212, 3366249.19831987, 1189795.66599827, 857259.627025828, 3366060.57026034, 1190325.63114607, 857282.562597462, 3365871.86370094, 1190855.5684262, 857305.473934166, 3365683.0786463, 1191385.47782676, 857328.361033995, 3365494.21510102, 1191915.35933591, 857351.223893746, 3365305.27307224, 1192445.21294013, 857374.062509205, 3365116.25256919, 1192975.03862462, 857396.876878007, 3364927.1535974, 1193504.83637698, 857419.666997812, 3364737.97616236, 1194034.60618484, 857442.432866283, 3364548.72026954, 1194564.34803583, 857465.174481083, 3364359.38592443, 1195094.0619176, 857487.891839872, 3364169.9731325, 1195623.74781777, 857510.584940315, 3363980.48189923, 1196153.40572399, 857533.253780073, 3363790.9122301, 1196683.03562388, 857555.898356811, 3363601.2641306, 1197212.63750508, 857578.518668192, 3363411.53760619, 1197742.21135522, 857601.114711877, 3363221.73266238, 1198271.75716194, 857623.686485532, 3363031.84930462, 1198801.27491288, 857646.233986821, 3362841.88753841, 1199330.76459566, 857668.757213408, 3362651.84736922, 1199860.22619793, 857691.256162958, 3362461.72880253, 1200389.65970731, 857713.730833134, 3362271.53184383, 1200919.06511144, 857736.181221602, 3362081.2564986, 1201448.44239796, 857758.607326028, 3361890.9027723, 1201977.79155449, 857781.009144077, 3361700.47067044, 1202507.11256869, 857803.386673414, 3361509.96019847, 1203036.40542817, 857825.739911705, 3361319.3713619, 1203565.67012057, 857848.068856617, 3361128.70416619, 1204094.90663354, 857870.373505816, 3360937.95861683, 1204624.11495469, 857892.653856968, 3360747.13471929, 1205153.29507167, 857914.909907741, 3360556.23247907, 1205682.44697212, 857937.165958514, 3360365.33023884, 1206211.59887256, 857959.422009287, 3360174.42799862, 1206740.75077301, 857981.67806006, 3359983.52575839, 1207269.90267345, 858003.934110833, 3359792.62351817, 1207799.05457389, 858026.190161605, 3359601.72127794, 1208328.20647434, 858048.446212378, 3359410.81903772, 1208857.35837478, 858070.702263151, 3359219.91679749, 1209386.51027522, 858092.958313924, 3359029.01455727, 1209915.66217567, 858115.214364697, 3358838.11231704, 1210444.81407611, 858137.47041547, 3358647.21007681, 1210973.96597656],
-	"STA_EPHEM_RATES": [166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.40486391585, -1063.72565680106, 3261.53461252199, 166.33223634184, -1063.96782953279, 3261.45639750714, 166.186973874472, -1064.4521595794, 3261.29992959065, 166.041696762373, -1064.93645880367, 3261.14338588494, 165.896405001638, -1065.42072721979, 3260.98676639071, 165.751098594396, -1065.90496481073, 3260.83007112074, 165.605777543488, -1066.38917158785, 3260.67330005941, 165.460441849979, -1066.87334755114, 3260.51645321099, 165.315091511383, -1067.35749269493, 3260.35953058116, 165.169726536932, -1067.84160702347, 3260.20253216564, 165.024346920944, -1068.32569053109, 3260.04545796516, 164.878952663775, -1068.80974322205, 3259.88830797616, 164.733543773944, -1069.2937650935, 3259.73108220362, 164.588120248613, -1069.77775614971, 3259.57378064398, 164.442682089555, -1070.26171638216, 3259.41640330009, 164.297229295351, -1070.74564579794, 3259.25895017335, 164.15176187097, -1071.22954439564, 3259.1014212581, 164.006279818543, -1071.71341216815, 3258.94381655434, 163.86078313594, -1072.19724912542, 3258.78613607058, 163.715271824936, -1072.68105526177, 3258.62837980327, 163.569745890145, -1073.16483057577, 3258.47054774461, 163.424205329438, -1073.64857507311, 3258.31263990381, 163.27865014459, -1074.13228874385, 3258.15465627593, 163.133080337375, -1074.61597159508, 3257.99659686307, 162.987495910634, -1075.09962362397, 3257.83846166809, 162.841896866496, -1075.5832448291, 3257.68025068531, 162.696283202123, -1076.06683521614, 3257.521963914, 162.550654919642, -1076.550394778, 3257.36360135987, 162.405012022251, -1077.03392351609, 3257.20516302076, 162.259354511368, -1077.51742143184, 3257.04664889598, 162.113682387348, -1078.00088852667, 3256.88805898552, 161.967995652678, -1078.48432479205, 3256.72939329009, 161.822294308421, -1078.96773023367, 3256.57065181041, 161.676578354932, -1079.45110485437, 3256.41183454363, 161.530847791147, -1079.93444865272, 3256.25294149189, 161.38510262168, -1080.41776162447, 3256.09397265376, 161.239342850793, -1080.90104376394, 3255.93492803137, 161.093568475288, -1081.3842950839, 3255.77580762544, 160.947779495877, -1081.86751557868, 3255.6166114317, 160.801975917175, -1082.35070524117, 3255.45733945086, 160.656157737761, -1082.833864087, 3255.29799168506, 160.510324959411, -1083.31699210339, 3255.13856813713, 160.364477584964, -1083.80008928323, 3254.97906880353, 160.218615613711, -1084.28315564499, 3254.8194936814, 160.072739050977, -1084.76619117589, 3254.65984277716, 159.926847893565, -1085.24919587876, 3254.50011608652, 159.780942143963, -1085.73216975787, 3254.34031360808, 159.635021804298, -1086.21511280754, 3254.18043534467, 159.489086875283, -1086.6980250235, 3254.02048129843, 159.343137360465, -1087.18090640718, 3253.8604514658, 159.197173257361, -1087.66375696993, 3253.7003458482, 159.051194570231, -1088.14657670182, 3253.54016444493, 158.905201324634, -1088.62936572781, 3253.37990735112, 158.759193705169, -1089.11212437165, 3253.21957498425, 158.613171924835, -1089.59485255382, 3253.05916757081, 158.467136041497, -1090.07754998607, 3252.89868502134, 158.321086053734, -1090.56021664994, 3252.73812732732, 158.175021962257, -1091.04285255252, 3252.57749448946, 158.028943772746, -1091.5254576853, 3252.41678651202, 157.882851481651, -1092.00803204828, 3252.25600338719, 157.736745090746, -1092.49057564855, 3252.09514512277, 157.590624603582, -1092.97308847901, 3251.93421171452, 157.444490020868, -1093.45557053968, 3251.77320315959, 157.29834134083, -1093.93802183763, 3251.61211946508, 157.152178569148, -1094.42044236579, 3251.45096062531, 157.006001708307, -1094.9028321213, 3251.28972664312, 156.859810754401, -1095.38519111269, 3251.1284175178, 156.713605708495, -1095.86751933143, 3250.96703325148, 156.5673865784, -1096.34981678179, 3250.80557383918, 156.421153362696, -1096.83208346234, 3250.64403928234, 156.274906057478, -1097.31431937452, 3250.48242958592, 156.12864466949, -1097.79652451688, 3250.32074474495, 155.982369196602, -1098.27869888519, 3250.15898475872, 155.836079644495, -1098.76084248511, 3249.99714963362, 155.689776016719, -1099.2429553138, 3249.83523936467, 155.543458304753, -1099.72503736985, 3249.67325394692, 155.397126516053, -1100.2070886561, 3249.51119339172, 155.250780651683, -1100.68910917254, 3249.34905769126, 155.104420710934, -1101.17109891208, 3249.18684684696, 154.958046698775, -1101.6530578804, 3249.02456086236, 154.811658613787, -1102.13498607749, 3248.86219972967, 154.665256458454, -1102.61688350336, 3248.69976345669, 154.518840231357, -1103.09875015516, 3248.53725204342, 154.372409935336, -1103.5805860329, 3248.37466548275, 154.225965576424, -1104.06239113516, 3248.21200378251, 154.079507152494, -1104.54416546619, 3248.04926693488, 153.933034660348, -1105.02590902032, 3247.8864549434, 153.786548105313, -1105.50762180038, 3247.72356781661, 153.640047491649, -1105.98930381206, 3247.56060553817, 153.49353281403, -1106.47095504258, 3247.3975681173, 153.347004077782, -1106.95257549761, 3247.23445556041, 153.200461287874, -1107.43416517716, 3247.07126785258, 153.053904438271, -1107.91572408406, 3246.90800500303, 152.907333532524, -1108.3972522169, 3246.74466701675, 152.760748575957, -1108.87874956716, 3246.58125388166, 152.614149565021, -1109.36021614193, 3246.41776560201, 152.46753650291, -1109.84165194548, 3246.25420218208, 152.320909393884, -1110.32305696644, 3246.09056361547, 152.174268232619, -1110.80443121051, 3245.92684991069, 152.027613025504, -1111.28577467908, 3245.76306106208, 151.880943774314, -1111.76708736508, 3245.59919706607, 151.734260475145, -1112.24836927842, 3245.43525792978, 151.587563135451, -1112.72962041345, 3245.27124365035, 151.440851754168, -1113.21084076873, 3245.10715422567, 151.294126327745, -1113.69203034427, 3244.94298965998, 151.147387932891, -1114.17318950074, 3244.77874970764, 151.000637427281, -1114.65431806349, 3244.61443401932, 150.853873392699, -1115.13541484681, 3244.45004270507, 150.707094626766, -1115.61647920605, 3244.28557596086, 150.560301133032, -1116.09751113835, 3244.12103378667, 150.413492913982, -1116.57851064513, 3243.95641618607, 150.266669968907, -1117.05947772214, 3243.79172315692, 150.119832297806, -1117.5404123779, 3243.62695470206, 149.97297990068, -1118.02131460672, 3243.46211081865, 149.826112782497, -1118.50218440577, 3243.29719150244, 149.679230945389, -1118.9830217793, 3243.13219676193, 149.53233438829, -1119.46382672022, 3242.9671265943, 149.3854231112, -1119.9445992342, 3242.80198099812, 149.238497117314, -1120.42533932693, 3242.63675997197, 149.091556409828, -1120.90604698563, 3242.47146351727, 148.94460098803, -1121.38672221171, 3242.30609163899, 148.797630853697, -1121.86736501369, 3242.14064432861, 148.650646009668, -1122.34797538448, 3241.9751215904, 148.503646455233, -1122.8285533255, 3241.80952342506, 148.356632191458, -1123.30909883816, 3241.64384983188, 148.209603222246, -1123.78961191679, 3241.47810081228, 148.062559546889, -1124.27009256706, 3241.31227636342, 147.915501166451, -1124.75054078756, 3241.14637648317, 147.768428084837, -1125.23095657403, 3240.9804011758, 147.621340300981, -1125.71133992788, 3240.81435044626, 147.474237818791, -1126.19169085195, 3240.64822428321, 147.32712217718, -1126.6720119136, 3240.48202389079, 147.179999318816, -1127.15231284402, 3240.31575382435, 147.032868354428, -1127.63259179865, 3240.14941317223, 146.88572340241, -1128.112838785, 3239.98299723925, 146.738563886955, -1128.59305282754, 3239.81650557313, 146.591389810904, -1129.07323392484, 3239.64993816606, 146.444201171771, -1129.55338207124, 3239.48329502799, 146.296997974881, -1130.0334972724, 3239.31657615251, 146.149780220235, -1130.51357952692, 3239.14978153539, 146.002547904636, -1130.9936288362, 3238.98291118725, 145.855301036962, -1131.47364519883, 3238.81596510385, 145.708039616855, -1131.9536286077, 3238.64894328092, 145.560763639347, -1132.43357907277, 3238.48184572486, 145.413473113667, -1132.91349658977, 3238.31467243069, 145.26616803946, -1133.39338115443, 3238.1474233977, 145.118848414596, -1133.8732327696, 3237.98009863016, 144.971514240851, -1134.35305144096, 3237.81269813019, 144.824165526034, -1134.83283715999, 3237.64522189069, 144.67680226837, -1135.31258992527, 3237.47766990882, 144.529424466439, -1135.7923097439, 3237.31004219808, 144.382032120951, -1136.27199661303, 3237.14233874853, 144.234625235812, -1136.75165052983, 3236.97455956441, 144.087203815636, -1137.23127149289, 3236.8067046429, 143.939767855098, -1137.71085950929, 3236.63877398541, 143.792317360943, -1138.19041457052, 3236.47076759266, 143.644852333526, -1138.66993668083, 3236.30268545967, 143.497372500564, -1139.1494252836, 3236.13452723357, 143.349871964475, -1139.62886820949, 3235.96628510086, 143.202349588202, -1140.10826287128, 3235.79795749956, 143.054812583527, -1140.58762384802, 3235.62955390597, 142.90726368145, -1141.06695670892, 3235.46107792119, 142.759702883036, -1141.54626145114, 3235.29252954877, 142.612130184736, -1142.0255380761, 3235.12390879085, 142.464545593648, -1142.50478658096, 3234.9552156453, 142.316949108353, -1142.98400696431, 3234.78645010714, 142.169340729917, -1143.46319923607, 3234.6176121785, 142.021720458693, -1143.94236338774, 3234.44870186365, 141.874088296813, -1144.42149941646, 3234.27971915832, 141.726444247115, -1144.90060732651, 3234.11066406109, 141.578788309246, -1145.37968712072, 3233.94153658191, 141.431120484624, -1145.85873879483, 3233.77233671013, 141.283440772186, -1146.33776234884, 3233.60306444786, 141.135749177255, -1146.81675778275, 3233.43371979655, 140.988045698768, -1147.2957250923, 3233.26430275901, 140.840330336723, -1147.77466428601, 3233.09481333242, 140.692603095737, -1148.25357535963, 3232.9252515111, 140.544863974388, -1148.73245831314, 3232.75561730214, 140.397112973388, -1149.21131314797, 3232.58591070909, 140.249350096285, -1149.69013985703, 3232.41613172841, 140.10157534166, -1150.16893844599, 3232.24628035299, 139.953788713064, -1150.64770891769, 3232.07635659135, 139.805990210495, -1151.12645126502, 3231.90636043782, 139.658179835374, -1151.60516549084, 3231.73629189523, 139.510353761178, -1152.08384388175, 3231.56614599362, 139.362505070771, -1152.56247235994, 3231.39591377212, 139.214636318009, -1153.04105583007, 3231.22559857836, 139.066753217649, -1153.51960571455, 3231.05520786092, 138.918855858086, -1153.99812217526, 3230.88474173268, 138.770944242514, -1154.4766052193, 3230.71420018867, 138.623018364899, -1154.95505484525, 3230.54358322534, 138.475078233051, -1155.43347104602, 3230.37289084908, 138.327123846969, -1155.91185382301, 3230.2021230599, 138.179155208073, -1156.39020318334, 3230.03127985707, 138.031172319204, -1156.86851912416, 3229.86036123777, 137.883175174682, -1157.34680163837, 3229.68936720128, 137.735163783736, -1157.82505073307, 3229.51829775257, 137.587138147077, -1158.30326640684, 3229.34715288312, 137.439098262929, -1158.78144865684, 3229.175932605, 137.291044135553, -1159.25959748308, 3229.00463691325, 137.142975764238, -1159.73771288128, 3228.83326580217, 136.99489315076, -1160.21579486282, 3228.66181927746, 136.846796297248, -1160.69384342201, 3228.49029733698, 136.698685206542, -1161.17185854891, 3228.31869998357, 136.550559877578, -1161.6498402563, 3228.14702721581, 136.402420311776, -1162.12778854276, 3227.97527902944, 136.25426651233, -1162.60570339835, 3227.80345542944, 136.10609847995, -1163.08358482876, 3227.63155641863, 135.957916216057, -1163.56143283965, 3227.45958198922, 135.80971972207, -1164.0392474211, 3227.28753214333, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822, 135.735617918174, -1164.27814635162, 3227.20148836822],
-	"STA_FLYING_HEIGHT": 1000,
-	"STA_FOCAL": 352.9271664,
-	"STA_GSD": 1,
-	"STA_HALF_SWATH": 1000,
-	"STA_HALF_TIME": 10,
-	"STA_IK_CODE": -74021,
-	"STA_IMAGE_FLIP_FLAG": 0,
-	"STA_IMAGE_IDENTIFIER": "UNKNOWN",
-	"STA_INT_TIME_LINES": [0.5],
-	"STA_INT_TIME_START_TIMES": [-17.2974935173988],
-	"STA_INT_TIMES": [0.001877],
-	"STA_ISIS_Z_DIRECTION": 1,
-	"STA_I_TRANS_L": [0.0, 142.85714285714, 0.0],
-	"STA_I_TRANS_S": [0.0, 0.0, 142.85714285714],
-	"STA_MAX_ELEVATION": 8000,
-	"STA_MIN_ELEVATION": -8000,
-	"STA_MOUNTING_MATRIX": [1, 0.0, 0.0, 0.0, 1, 0.0, -0.0, 0.0, 1],
-	"STA_NUM_EPHEM": 231,
-	"STA_NUM_QUATERNIONS": 411,
-	"STA_OFFSET_LINES": 0.0,
-	"STA_OFFSET_SAMPLES": 0.0,
-	"STA_OPTICAL_DIST_COEF": [-0.0073433925920055, 2.83758786362417e-05, 1.28419891240271e-08],
-	"STA_PARAMETER_TYPE": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
-	"STA_PARAMETER_VALS": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 352.9271664, 0.0],
-	"STA_PLATFORM_FLAG": 1,
-	"STA_PLATFORM_IDENTIFIER": "UNKNOWN",
-	"STA_QUATERNIONS": [0.449367090389655, -0.650155885490364, 0.233491152124635, 0.566435009251946, 0.44938366541447, -0.650173853012856, 0.233466164161984, 0.56641150412865, 0.449400240439285, -0.650191820535347, 0.233441176199333, 0.566387999005354, 0.4494168154641, -0.650209788057839, 0.233416188236682, 0.566364493882059, 0.449433390488915, -0.650227755580331, 0.233391200274031, 0.566340988758763, 0.44944996551373, -0.650245723102823, 0.23336621231138, 0.566317483635467, 0.449466540538545, -0.650263690625314, 0.233341224348729, 0.566293978512171, 0.449483115563359, -0.650281658147806, 0.233316236386078, 0.566270473388875, 0.449499690588174, -0.650299625670298, 0.233291248423427, 0.566246968265579, 0.449516265612989, -0.650317593192789, 0.233266260460776, 0.566223463142283, 0.449532840637804, -0.650335560715281, 0.233241272498125, 0.566199958018988, 0.449549415662619, -0.650353528237773, 0.233216284535474, 0.566176452895692, 0.449565972998259, -0.650371342612045, 0.233191132471673, 0.566153202205651, 0.449582516834776, -0.650389041728504, 0.233165857108029, 0.56613014231276, 0.449598905855523, -0.65040671932392, 0.233140653712754, 0.566107197355945, 0.449614953522732, -0.650424350564615, 0.233115609821876, 0.566084508018658, 0.449630971352622, -0.650441999476133, 0.233090590190695, 0.56606180906553, 0.449646444836231, -0.650459997344788, 0.233066029982322, 0.566038949338856, 0.449661917466073, -0.650477994238715, 0.233041469533298, 0.566016088525471, 0.449677911989969, -0.650495755939789, 0.233017030154906, 0.565993030549363, 0.449694044925346, -0.650513454258233, 0.23299262285335, 0.565969919239193, 0.449710842861797, -0.65053102141866, 0.232968366623177, 0.565946365071334, 0.449728231910053, -0.650548471834742, 0.2329442446704, 0.565922417025051, 0.449745113727658, -0.650566019220453, 0.2329201088319, 0.565898763221378, 0.449760586604903, -0.650583838119899, 0.232895934842162, 0.565875929730175, 0.449776068510696, -0.650601656781008, 0.23287175087635, 0.565853090503757, 0.449792621919365, -0.650619552737586, 0.232846508312237, 0.565829743323243, 0.449809174433995, -0.650637447667117, 0.232821265489839, 0.565806395000921, 0.449826408417549, -0.650655593075212, 0.232796592289337, 0.565781979307034, 0.44984387135132, -0.650673822143463, 0.232772110806219, 0.565757203238007, 0.449860884598489, -0.650691692521813, 0.23274762034757, 0.565733197730085, 0.449877427211498, -0.650709187539606, 0.232723120522278, 0.565709998949535, 0.449893979403276, -0.650726747737848, 0.232698678028492, 0.565686690950919, 0.449910567106429, -0.650744537433727, 0.232674435848759, 0.565663005250121, 0.449927153930291, -0.650762326123221, 0.232650193420553, 0.56563931843204, 0.449943635817696, -0.650779354785615, 0.23262550080974, 0.565616771626327, 0.449960113338404, -0.650796356801701, 0.232600792735141, 0.565594262344578, 0.449976608752094, -0.650813373665768, 0.232576456579132, 0.565571565833044, 0.449993111136846, -0.650830396163369, 0.23255227535615, 0.565548790632508, 0.450010092940068, -0.650847599357771, 0.232527882661987, 0.565525509987862, 0.450027668317465, -0.650865026388237, 0.232503228251101, 0.565501603911254, 0.45004503742636, -0.65088244423005, 0.232478632980257, 0.565477845090904, 0.45006148754308, -0.650899880611636, 0.232454312976079, 0.565454680084168, 0.450077484846529, -0.650918513798469, 0.232430339759022, 0.565430352199208, 0.450094139064238, -0.650936652958486, 0.232405528270394, 0.565406411570107, 0.450111371019662, -0.650953996322176, 0.232380025122571, 0.565383208341937, 0.45012847235988, -0.650971412523783, 0.232355052442424, 0.565359804064836, 0.450145703904573, -0.650988392284961, 0.23233006936868, 0.565336799822587, 0.45016301564505, -0.651005512554533, 0.232304928567326, 0.565313631652637, 0.450179935325349, -0.651023646868181, 0.232279985508589, 0.565289523501938, 0.450196412580516, -0.651042001954571, 0.232255093268496, 0.565265489342362, 0.450213122223328, -0.651059796367515, 0.232230501275505, 0.565241789333679, 0.450228666862833, -0.651077172634292, 0.232207147276024, 0.565218987263683, 0.450245104887769, -0.65109472148275, 0.232183106894149, 0.565195553817333, 0.450261368444927, -0.651112459477854, 0.232158831270302, 0.565172135072146, 0.450277979479379, -0.651130354673333, 0.232134242596597, 0.565148383907317, 0.450294252502563, -0.651147984823554, 0.232109993224789, 0.565125064979931, 0.450310396571169, -0.651165469650198, 0.23208591796703, 0.565101941738439, 0.450326770663613, -0.651183160631999, 0.232061596308371, 0.56507849583205, 0.450341638530062, -0.651200591714867, 0.23203802458329, 0.565056238885786, 0.450358982778981, -0.651218269043456, 0.232013009658525, 0.565032314158686, 0.450376967770341, -0.651235349967893, 0.231987789636435, 0.565008647114176, 0.45039396043235, -0.651253049865236, 0.231963166372093, 0.564984809436434, 0.450411833909968, -0.651269809463818, 0.231938481628701, 0.564961375577653, 0.45042917219622, -0.651286772163125, 0.231914065367168, 0.564938020958794, 0.450446486126498, -0.65130423751314, 0.231889914899926, 0.564913994074693, 0.450464265606435, -0.651321871038023, 0.231865692746357, 0.564889428336587, 0.450481266874033, -0.651339505867602, 0.231841168315875, 0.564865602569005, 0.450498250443642, -0.651356550181156, 0.231816317221945, 0.564842602813363, 0.450515292321893, -0.651374491371342, 0.231791328964739, 0.564818575466145, 0.450531586012316, -0.65139229965877, 0.2317677765486, 0.564794705803981, 0.450548483609209, -0.651409949396888, 0.231743648141404, 0.564770770570061, 0.450565497770719, -0.651427627236153, 0.231718782413641, 0.564747009349177, 0.450582557010816, -0.651445344867456, 0.231693871430206, 0.564723181664963, 0.450599842912689, -0.65146261825954, 0.231669309760265, 0.564699539129161, 0.450617190759053, -0.651479464500981, 0.231645007848925, 0.564676230298926, 0.450634409819338, -0.651496702473571, 0.231620768731229, 0.564652543468277, 0.450653532546989, -0.651513361484357, 0.231596278680865, 0.564628105137753, 0.450670474695802, -0.651530943539928, 0.231572004155364, 0.564604250549799, 0.450686441390602, -0.651548075839461, 0.231549125375645, 0.564581118134804, 0.450703298221545, -0.65156566908522, 0.231524857951511, 0.564557309750111, 0.450720017007722, -0.651582580698408, 0.231500413099616, 0.564534467976641, 0.450736834519365, -0.651599798171187, 0.23147603198661, 0.564511165209745, 0.450753456940904, -0.651617736540569, 0.231451229467951, 0.564487355801123, 0.450769528618732, -0.651635493644538, 0.23142606422421, 0.564464341025345, 0.450786721685407, -0.651652957748012, 0.231401471437914, 0.564440531169369, 0.450803793595667, -0.651669566671195, 0.231377882286752, 0.564417390893326, 0.450820503076234, -0.651686951058825, 0.231354294771885, 0.564393641101977, 0.450838637700245, -0.651704283831177, 0.231330100362692, 0.564369058204706, 0.450856235205378, -0.651721761339053, 0.231305534268705, 0.564344886386175, 0.450872743007623, -0.651739308813509, 0.231281617301146, 0.564321235165431, 0.450889169437683, -0.65175701600556, 0.231257873131003, 0.56429739064278, 0.450906533624748, -0.651774564317796, 0.231234178775083, 0.564272956829471, 0.450924529731767, -0.651791604326418, 0.231210961159589, 0.564248406692866, 0.450941773075624, -0.651809210931561, 0.23118627759451, 0.564224401184655, 0.450959506022241, -0.651825947714189, 0.231162128900393, 0.564200786933972, 0.450976899138391, -0.65184347073231, 0.231138126028323, 0.564176473103312, 0.450993529192497, -0.6518612354696, 0.231113700121261, 0.564152660132702, 0.451010086032781, -0.651878717630801, 0.231089511956225, 0.564129131724785, 0.451026302872447, -0.651896067132289, 0.231065434484007, 0.564105980079438, 0.451042760897627, -0.651913571725691, 0.231041288223766, 0.564082481537586, 0.4510595903873, -0.651931000848372, 0.231017182291166, 0.564058753623, 0.45107556871376, -0.651947931754325, 0.230993184344821, 0.564036234985889, 0.451092502575482, -0.651965533153105, 0.230968855461056, 0.564012309712817, 0.451107621807733, -0.651982446108296, 0.230946207315571, 0.563989940371428, 0.451124799525828, -0.651999912679215, 0.230922097103196, 0.56396588034077, 0.451142734140721, -0.652017290069791, 0.230898604607658, 0.563941061878204, 0.451160288380102, -0.652034934593534, 0.23087442772991, 0.56391651587693, 0.451176726805625, -0.652052965474597, 0.230850882719671, 0.563892154008455, 0.451192744067395, -0.652070918536016, 0.230827889000173, 0.563867990366765, 0.45120949036507, -0.652088530146653, 0.230803791465166, 0.563844087049758, 0.451226837430177, -0.652106449797649, 0.230779053415298, 0.563819605742659, 0.451244580647756, -0.652123788962929, 0.230755020348977, 0.563795187003585, 0.451262726963518, -0.65214075699598, 0.230730987554752, 0.563770871631524, 0.451279896194323, -0.652158454778875, 0.230706385581567, 0.563746723984416, 0.451296902598305, -0.652176056307821, 0.230681568502614, 0.563722902885033, 0.45131413573566, -0.652193469994258, 0.230657237869073, 0.563698915380039, 0.451330705158021, -0.652211411604143, 0.230633707223846, 0.563674518004034, 0.451346926524779, -0.652229797956431, 0.230610133138385, 0.563649899377482, 0.451363937736473, -0.652247819557572, 0.230585621455126, 0.563625450784093, 0.451379812510919, -0.652266052670269, 0.230561583674766, 0.563601470477977, 0.451396764094894, -0.652283145466739, 0.230537821511092, 0.563577831676864, 0.451414135475193, -0.652300284111093, 0.230513375259197, 0.563554080340462, 0.451431586852166, -0.652317783737092, 0.230489195636592, 0.563529734891834, 0.451448650417117, -0.652335495413553, 0.230464301090203, 0.563505743877666, 0.451465887301348, -0.652353039257099, 0.230439673208233, 0.563481696053133, 0.451482786859409, -0.652370793348522, 0.230415638845705, 0.563457429208993, 0.451499201414884, -0.6523888975239, 0.230391558515149, 0.563433161319276, 0.451516200701147, -0.652406665711085, 0.230367149851744, 0.563408945002943, 0.45153219136527, -0.652424732067882, 0.230343090666247, 0.563385045709726, 0.451549557560155, -0.652442277573008, 0.230318823074655, 0.563360729231352, 0.451566669071722, -0.652458671959689, 0.23029582770828, 0.563337426866196, 0.451583752149367, -0.652475771847798, 0.230272394076367, 0.563313506382243, 0.45160115347219, -0.652492991467989, 0.230250025269432, 0.563288753776576, 0.451618743827344, -0.652510217890493, 0.230227189049796, 0.563264029736093, 0.451635830975613, -0.652527512517701, 0.230203194276439, 0.563240100606617, 0.451652366864707, -0.652544902657716, 0.230179160133379, 0.563216515881089, 0.451669691398805, -0.652562616846514, 0.230154774701474, 0.563192063729819, 0.451687677850483, -0.652580248593484, 0.230128896186366, 0.563167783137272, 0.45170517751031, -0.65259790272628, 0.230104447571364, 0.563143279437406, 0.451723502657481, -0.652615429060624, 0.230079485048, 0.563118468405114, 0.451741292392917, -0.652633020450103, 0.230054935719043, 0.563093839352429, 0.451758385956102, -0.652650686940224, 0.23003160586642, 0.563069180347591, 0.451775357562881, -0.65266802392237, 0.230008612929489, 0.563044860403194, 0.451793288902013, -0.652684714535516, 0.229985103260721, 0.563020727676122, 0.451812402836631, -0.652701219288523, 0.229961187967616, 0.562996023974226, 0.451829807293673, -0.652718861206393, 0.229936897882713, 0.562971523665689, 0.451847267852434, -0.652735375774275, 0.229912299970253, 0.562948407999787, 0.45186480300268, -0.652752887849814, 0.229887978540844, 0.562923959814718, 0.451881349394363, -0.652769926460399, 0.229864586674049, 0.562900471639155, 0.451898349108256, -0.652787229671783, 0.229841037608875, 0.562876373888217, 0.451915982786625, -0.652804378558322, 0.229817847380109, 0.56285179653498, 0.451933731368463, -0.652821563929611, 0.229794534172701, 0.562827131705843, 0.45195114542076, -0.652839133356014, 0.229770125341155, 0.562802734190713, 0.451968239747408, -0.652856584933729, 0.229745107864001, 0.562778975425395, 0.451985306700714, -0.652873501189327, 0.229721450762002, 0.562755301202265, 0.452001518300992, -0.652891400623855, 0.229697553004088, 0.562731268536726, 0.452019168678314, -0.652908805222924, 0.229673333532323, 0.562706782502121, 0.452037416102246, -0.652924802446071, 0.229651287249794, 0.56268255976072, 0.452055220315571, -0.652941645882108, 0.22962834325278, 0.562658074529451, 0.452072647721292, -0.652958743012197, 0.229604347941493, 0.562634023600203, 0.452090162813589, -0.652975744647859, 0.229580083875069, 0.562610119600308, 0.452107687745161, -0.652993254969439, 0.22955631651205, 0.56258541146706, 0.45212464785032, -0.653010900231089, 0.229534031158388, 0.562560392780888, 0.452142104152976, -0.653028225456839, 0.229510201324494, 0.562535973869051, 0.452158188880718, -0.653045256224124, 0.229488002942377, 0.562512330582003, 0.452175162742615, -0.653062493658645, 0.229464687195642, 0.562488185569482, 0.45219286450763, -0.653078487063639, 0.229441301895003, 0.562464925135585, 0.452210738673011, -0.653095129911888, 0.229417550107857, 0.562440918512062, 0.45222702755013, -0.653113104741291, 0.229393632481577, 0.562416704361875, 0.452242680454223, -0.653131238258396, 0.229369688079185, 0.562392825147238, 0.452260134975989, -0.653148502801289, 0.229345566726487, 0.562368575422597, 0.452277052917538, -0.65316574958339, 0.22932179860195, 0.56234463068599, 0.452294566428567, -0.653183192990333, 0.229298048372177, 0.562319968155907, 0.452311086548608, -0.653201111745548, 0.229274883882272, 0.56229531050896, 0.452328690751569, -0.653218544668522, 0.22925081632884, 0.562270710278128, 0.452345640087025, -0.653236477539752, 0.229226571986925, 0.562246124931813, 0.452362434114655, -0.653254123723028, 0.229202907462651, 0.562221758073619, 0.452378858782578, -0.653272115003492, 0.229179870946734, 0.562197028307937, 0.452395065744566, -0.653290722202819, 0.229156742680756, 0.562171792299859, 0.45241254698453, -0.653308006500622, 0.229132914473495, 0.562147350325549, 0.452430027169288, -0.653324253523763, 0.229109596642948, 0.562123903600729, 0.452447893869016, -0.653341531046847, 0.229085590375412, 0.562099225604521, 0.452464946562823, -0.653358758728579, 0.229064338940077, 0.562074134923943, 0.452482582338782, -0.653375837736166, 0.229041341381195, 0.562049456258871, 0.452500439825628, -0.653393022694003, 0.229017619563903, 0.562024767943274, 0.452518102513247, -0.653410381708389, 0.228993667612763, 0.562000124703513, 0.452535967750846, -0.653427971701934, 0.228969416951922, 0.561975168303723, 0.452554132066492, -0.653445525319665, 0.22894531447384, 0.561949949701685, 0.452571426324964, -0.65346245947349, 0.228922312669695, 0.561925700511201, 0.45258854865537, -0.653480002643358, 0.22889914732013, 0.561900945120562, 0.452606371971305, -0.653497350099084, 0.228875079881691, 0.56187621703859, 0.452623759632536, -0.653514299423396, 0.228850319822287, 0.56185258189537, 0.452641442893971, -0.653531588127029, 0.228826195082342, 0.561828051933298, 0.452659150474668, -0.653548870244737, 0.228802574001544, 0.561803301720138, 0.452676762579841, -0.653566145630281, 0.228778872704957, 0.561778665766209, 0.452694345128773, -0.653583232069052, 0.228755697106193, 0.561754056227512, 0.45271196134234, -0.653599930788636, 0.228733519479532, 0.561729461215244, 0.45272956390725, -0.653617052350685, 0.228709884299572, 0.561704975645071, 0.452746350823907, -0.65363415213361, 0.228686366179015, 0.561681122082672, 0.452763750879727, -0.653651331118074, 0.22866308030086, 0.561656584510689, 0.452782072821686, -0.653668391329075, 0.228639597666995, 0.561631518958143, 0.452799947206311, -0.653685732835136, 0.228615815261731, 0.561606605650225, 0.452816298143273, -0.653703161577458, 0.228593260349188, 0.561582316319155, 0.452832863236399, -0.653720443169296, 0.2285707821046, 0.561557991416519, 0.452850432398239, -0.65373770831051, 0.228547829836219, 0.561533065889094, 0.452867213364359, -0.653755205133461, 0.228525949171463, 0.561508067062076, 0.452884623291546, -0.653772509937988, 0.228502307533982, 0.561483498143181, 0.452902613714834, -0.653789633178741, 0.228479367128039, 0.561458383885261, 0.452920460134301, -0.653806702168402, 0.228455695967407, 0.561433743171408, 0.452937871256183, -0.653823925446979, 0.228432186475647, 0.561409205016248, 0.452955386212443, -0.653840991993905, 0.228408823584381, 0.5613847028539, 0.452972287273359, -0.653858427012264, 0.228385441208161, 0.561360271689708, 0.452989065968966, -0.653876093032945, 0.228361918365226, 0.561335724244492, 0.453006692254241, -0.653893460917236, 0.228338193137264, 0.561310919275013, 0.453024231747753, -0.653910899030798, 0.22831426156734, 0.561286183281801, 0.453041905380699, -0.653928030293369, 0.228290343521284, 0.561261687825381, 0.45305898515566, -0.653944096912364, 0.228266039774949, 0.561239065968022, 0.453077032729969, -0.653960986546048, 0.228242592733671, 0.56121435240961, 0.45309587146704, -0.653977600193572, 0.228220933485139, 0.561188591494653, 0.453114177565178, -0.653994483617402, 0.228198316049292, 0.56116333276481, 0.453132886195552, -0.654010917637319, 0.228174627448268, 0.56113870517736, 0.453151704829346, -0.654027089020749, 0.228150975725733, 0.561114276696556, 0.453169293148225, -0.654044016088119, 0.228127433306207, 0.561089913418504, 0.453187610247006, -0.654060702450707, 0.228103264734479, 0.561065493543996, 0.453205831883648, -0.654077684184068, 0.228079688692516, 0.561040562352654, 0.453222262170023, -0.654093829671003, 0.228057739990952, 0.561017388580806, 0.453239787926074, -0.654110866275012, 0.228034400992967, 0.560992853096597, 0.45325822572117, -0.654127285362432, 0.228011237484719, 0.560968226320493, 0.453276537691791, -0.654144029431469, 0.227987926616515, 0.560943379009332, 0.453294593582972, -0.654160714128644, 0.22796476406473, 0.560918744439926, 0.453312644129132, -0.654177114095319, 0.227941728056116, 0.560894391732852, 0.453330509275875, -0.654194026628519, 0.227917996765946, 0.560869870498886, 0.453348158886548, -0.654209536518298, 0.22789477335162, 0.560846950104665, 0.453365430857957, -0.654226070302523, 0.227872010885465, 0.560822950399243, 0.453382532801641, -0.654243541917237, 0.227848965020414, 0.560798106228154, 0.453400377799895, -0.654260760838211, 0.227825185808166, 0.560773250922147, 0.4534189742499, -0.654277470175866, 0.227802140301468, 0.560748081302564, 0.45343739880642, -0.65429440321231, 0.227779098030109, 0.560722785152614, 0.453455040140589, -0.654311212496074, 0.227756042565053, 0.560698268989766, 0.453472271073034, -0.654327554829568, 0.227733297855463, 0.560674500406875, 0.453489796933015, -0.654344492330914, 0.227709909918628, 0.560650056950592, 0.453506645781869, -0.654361011868158, 0.227686503347899, 0.56062665346179, 0.453524797354875, -0.654378102163898, 0.227662775108661, 0.560601657527355, 0.453542748994964, -0.65439494082116, 0.227637977621467, 0.560577548075349, 0.453560223147743, -0.654411682341453, 0.227614578241512, 0.560553367454997, 0.45357703546486, -0.654428991509036, 0.227590007802174, 0.560529532067654, 0.453594470781472, -0.654446416095485, 0.227565295753117, 0.560505112113216, 0.453612152121746, -0.654463779123852, 0.227541909389277, 0.560480023492262, 0.453628905165315, -0.654481353170543, 0.227518876859822, 0.560455292974398, 0.45364685720405, -0.654498481238345, 0.227495257273507, 0.560430347968103, 0.45366394701827, -0.65451673860054, 0.227471196719226, 0.560404957803408, 0.453681477659199, -0.654533979062504, 0.227447733018754, 0.560380152955297, 0.45369785326706, -0.654550879732313, 0.227424357662559, 0.560356641188706, 0.453715388158008, -0.654567747283584, 0.227400866156252, 0.560332273598541, 0.453733116690507, -0.65458463183446, 0.227378239998603, 0.560307375071577, 0.453750689042164, -0.654601402971944, 0.227355907749824, 0.560282613180328, 0.453768315741734, -0.654618039302023, 0.227333193886237, 0.560258116591602, 0.453785897624844, -0.654634791510638, 0.227310404738848, 0.560233548404681, 0.453804061804044, -0.654651986614211, 0.22728672706121, 0.560208348397292, 0.453821153236819, -0.654669454438942, 0.227262982626779, 0.560183722565197, 0.453839164774184, -0.654686647244966, 0.227239262403486, 0.560158659719312, 0.453856321897606, -0.654704002551171, 0.227216114497293, 0.560133863848461, 0.45387389990281, -0.654721163645259, 0.227192730030343, 0.560109046778724, 0.453891361867431, -0.654738421296156, 0.227170034738305, 0.560083928190895, 0.453908881889153, -0.654755587704913, 0.227147540307619, 0.560058784632052, 0.453926830966699, -0.654772132733389, 0.227124439234309, 0.560034262725774, 0.453944289418343, -0.654788254185021, 0.227101777463577, 0.56001045254414, 0.453961772341696, -0.654805068695199, 0.227079033382644, 0.559985842554493, 0.453978977923383, -0.654823079215901, 0.227057770901471, 0.559959454963573, 0.453997355488861, -0.654840293481669, 0.227034350713345, 0.559933920063906, 0.454015262181078, -0.654856871980766, 0.22701222769473, 0.559908981356157, 0.454033099391617, -0.65487356039222, 0.226989586634623, 0.559884177411277, 0.454051188431888, -0.654890173122096, 0.226967005591426, 0.559859230346846, 0.454069399921108, -0.654906781299813, 0.226944724241864, 0.559834064702737, 0.454087489251026, -0.654923760264121, 0.226921694282036, 0.559808864713103, 0.454105479011152, -0.654940662113125, 0.226898236815063, 0.559784005821076, 0.45412357387688, -0.654957715491091, 0.226874527449731, 0.559758983279806, 0.454140912832671, -0.654974031486701, 0.226852452462705, 0.559734771281205, 0.454158549416256, -0.654990519543583, 0.226830139830774, 0.559710209809059, 0.454176498713984, -0.655007425427736, 0.226807822620839, 0.55968490443144, 0.454194708715077, -0.655024349560583, 0.226784868902333, 0.559659620925892, 0.454213413094287, -0.655040772855837, 0.226761557089061, 0.559634664301819, 0.454232324529575, -0.655057094853126, 0.226738355483488, 0.5596096103425, 0.454250950975023, -0.655073958086002, 0.226715172438006, 0.559584143415654, 0.454270329195922, -0.655090068737507, 0.226692211413549, 0.559558854043212, 0.454288488810087, -0.655106929188381, 0.226668845568004, 0.559533836968673, 0.45430719445064, -0.655122407277971, 0.226645917807223, 0.559509814475159, 0.454325565755131, -0.655139137964852, 0.226622806972037, 0.5594846678579, 0.454344166799571, -0.655155475468458, 0.226600003276199, 0.559459667513333, 0.454362369682991, -0.655171701398285, 0.226577200579238, 0.559435117668358, 0.454380569676229, -0.655188246713049, 0.226554406610916, 0.559410189498693, 0.454399324914062, -0.655205033450113, 0.226531656949903, 0.559384506452237, 0.454417660758657, -0.655221972731561, 0.226508479363053, 0.559359155477971, 0.454435925433918, -0.655238962967932, 0.226485575387952, 0.559333688619697, 0.454454123858646, -0.655255987996812, 0.226462343642177, 0.559308364334277, 0.454472393230173, -0.655272051822696, 0.226439897615967, 0.559283787230941, 0.454490597482702, -0.655288594489994, 0.226416942802791, 0.559258904929534, 0.454509254915988, -0.655305172833795, 0.226394970825719, 0.559233211493923, 0.454527984272637, -0.655321811280347, 0.226372793022978, 0.559207469328044, 0.4545464762935, -0.655338643192565, 0.226349745331687, 0.559182042286741, 0.454564805006532, -0.655355433303091, 0.226326768872386, 0.559156764942782, 0.454582818718963, -0.65537196257578, 0.226303918398438, 0.559131995250321, 0.454600763884104, -0.65538964867421, 0.226280005940675, 0.55910635195656, 0.454618913897582, -0.655406852192186, 0.226256732448794, 0.559080845895929, 0.454635741161401, -0.655423898569821, 0.22623309564621, 0.559056743521168, 0.454653844286383, -0.655440650982122, 0.22620975358268, 0.559031825838037, 0.454671311254261, -0.655457000845799, 0.226186388264107, 0.559007903815858, 0.454688849897137, -0.655473462679866, 0.226162998435079, 0.55898379908593, 0.454707350347061, -0.655490174664372, 0.22613991774812, 0.558958490462128, 0.454725702443101, -0.655506671078771, 0.226117203223261, 0.558933404007442, 0.454744137872234, -0.655523296142614, 0.226094280057016, 0.55890818012502, 0.454761692628305, -0.655540723890575, 0.226070857283243, 0.558882930251121, 0.454779278884178, -0.655557322439183, 0.22604810759197, 0.558858351953378, 0.454796052811518, -0.655574936546795, 0.22602568317072, 0.558833108777512, 0.454814049629417, -0.655592095918667, 0.226002790092963, 0.558807590230176, 0.454832068412194, -0.655608367228325, 0.225979761612664, 0.558783147299182, 0.454849942011269, -0.655624633246688, 0.2259567050099, 0.55875883706082, 0.454868194933274, -0.655641349723291, 0.225933576955679, 0.558733715266207, 0.454886104787948, -0.655657759855424, 0.225910719087748, 0.558709119858869, 0.454904240836171, -0.655674450943922, 0.225887905520522, 0.558683989557786, 0.454920493753591, -0.655691695385462, 0.225864781022773, 0.558659865803032, 0.454938872214281, -0.655708565634203, 0.22584169600427, 0.558634431312866, 0.45495688609306, -0.655724798498835, 0.225818943095455, 0.558609904467707, 0.454974711834683, -0.655741141370832, 0.225796342327918, 0.558585337165199, 0.454992925282826, -0.655757405477274, 0.225773945060086, 0.558560461218207, 0.4550114971422, -0.655773672540379, 0.225751440151066, 0.558535330253187, 0.455029668605429, -0.655790316090471, 0.225729033656367, 0.558510040532268, 0.455047053803689, -0.655806857928107, 0.225708045699986, 0.558484934465863, 0.455065450553794, -0.655823648584014, 0.225685119636605, 0.558459492214821, 0.455084098992383, -0.655839323830186, 0.225663039808346, 0.558434809648102, 0.455102538906769, -0.655855919596896, 0.225640233523964, 0.55840950638897, 0.455121038812086, -0.655872456981808, 0.225616997827471, 0.558384393133057, 0.455139679254831, -0.655889063325143, 0.22559385734859, 0.558359042646271, 0.455158287607665, -0.655905864627223, 0.22557183822176, 0.558333033028612, 0.455176563896203, -0.655922613196718, 0.22555039071721, 0.558307121953633, 0.4551951291837, -0.65593884180775, 0.225527883620891, 0.558282011070412, 0.455216563524311, -0.655954288227161, 0.225505226132833, 0.558255537398685, 0.455234806125212, -0.655971069816299, 0.225482417043169, 0.558230155456127, 0.455252020085987, -0.655988422259382, 0.225461014861742, 0.558204370143039, 0.455270417793351, -0.65600528358221, 0.225438527989793, 0.558178631526043, 0.455288504985582, -0.65602119357588, 0.225416732783796, 0.558153981790284, 0.455306775078209, -0.656037321905144, 0.225394399617396, 0.558129140483205, 0.455325075608193, -0.656053721276618, 0.225372307196802, 0.558103855451909, 0.455343172780795, -0.656069993145248, 0.225351023822773, 0.558078556440167, 0.455361538292316, -0.656086634195564, 0.225328483413388, 0.558053108974956, 0.455378484609039, -0.656103389566062, 0.225306148078863, 0.558028599260795, 0.455396561983005, -0.656119827918417, 0.225283427010683, 0.55800369197765, 0.455414331815381, -0.656136551357971, 0.225260760711345, 0.557978675249301, 0.455432887994562, -0.656153237763739, 0.225237910560447, 0.557953131321493, 0.455451997271388, -0.656169659397787, 0.225215081387935, 0.557927435588825, 0.455470864421075, -0.65618608194336, 0.225192506427541, 0.557901830590493, 0.45548917557064, -0.656202638473285, 0.22517010958011, 0.557876446850339, 0.45550741293355, -0.656219241659496, 0.225147459219408, 0.557851167647308, 0.45552620412931, -0.65623572614174, 0.225124220932497, 0.557825809940972, 0.455545012207372, -0.656250733154049, 0.225101336235786, 0.557802030753405, 0.455563485552008, -0.656267575144095, 0.225078622471585, 0.557776294003688, 0.45558054571029, -0.656284491703376, 0.225056037638787, 0.55775156856999, 0.455598466439449, -0.656300767698457, 0.225033739061392, 0.557726775384226, 0.455617684698935, -0.656316753234466, 0.225010917264153, 0.557701472048707, 0.455636898889893, -0.656333039880554, 0.224987843835945, 0.557675915973789, 0.45565480735035, -0.656349426948298, 0.224965408349742, 0.557651047994344, 0.455672003065354, -0.656365473145185, 0.224943511947554, 0.557626943142103, 0.455690402975609, -0.656382187771548, 0.224920720323677, 0.557601425555245, 0.455707301420769, -0.656398553113148, 0.224898246543691, 0.557577414898003, 0.455725932722609, -0.65641502031884, 0.224875772324447, 0.557551865179741, 0.455744597106071, -0.656431479175017, 0.224852270648525, 0.557526709441734, 0.455763202639067, -0.656448262320025, 0.224828932025455, 0.55750115097773, 0.455781126540693, -0.656465234957654, 0.22480587065898, 0.557475811581585, 0.455798908412155, -0.656481868117915, 0.224783359617155, 0.557450762993401, 0.455817174767274, -0.656498407279137, 0.224761036059683, 0.557425350245676, 0.455835505078383, -0.656515838484356, 0.224737720206961, 0.557399231471749, 0.455854201867601, -0.656532565605125, 0.224715109091643, 0.557373354839945, 0.45587388388869, -0.656548947299405, 0.224692147924111, 0.55734721713626, 0.455892530489636, -0.656565552994062, 0.224669279064635, 0.557321621965213, 0.455910765329873, -0.656581360396723, 0.224647914117476, 0.557296694695551, 0.455929132098367, -0.656597722165674, 0.224625854923379, 0.557271283174379, 0.455947382374825, -0.65661457947916, 0.224602761701568, 0.557245796715398, 0.455965726560458, -0.656631379245016, 0.2245796336234, 0.557220312044133, 0.455984621535291, -0.656647828707136, 0.224556944852112, 0.557194609177267, 0.456003611557397, -0.656663797588724, 0.224534040125125, 0.557169478711868, 0.456022111387745, -0.656679676590499, 0.224511706986467, 0.55714462189317, 0.456040610343834, -0.656695554592762, 0.224489373622321, 0.557119763987948, 0.456059837861549, -0.65671157405539, 0.2244669398929, 0.557094180266234, 0.456079180522323, -0.656727615135025, 0.224444489991813, 0.557068480104075, 0.456101384864017, -0.656742069127156, 0.224419556992099, 0.55704330514169, 0.456125478722444, -0.656755474477637, 0.224392983954308, 0.557018476494234, 0.456148332578795, -0.656769040978477, 0.224367062815915, 0.556994206990661, 0.456168802759079, -0.656782918656874, 0.224342395722136, 0.556971014175387, 0.456188755814513, -0.656797220805674, 0.224318095765307, 0.556947593335832, 0.456202834358468, -0.656816363081674, 0.224297975584054, 0.556921589867333, 0.456216912045527, -0.656835504385105, 0.224277855203617, 0.556895585373124, 0.456233850246298, -0.656854581814682, 0.224257556745648, 0.55686738141228, 0.456251408974074, -0.656873644461668, 0.224237219410867, 0.556838698773443, 0.456269144102621, -0.656890867768416, 0.224216445304495, 0.556812213980023, 0.45628701722281, -0.656906651096288, 0.224195329259874, 0.556787449568888, 0.456305623384915, -0.656921792441109, 0.224173394073042, 0.556763168746854, 0.456325940813669, -0.656935437299939, 0.224149548108521, 0.556740017461296, 0.456346218813068, -0.656949260647516, 0.224125784427929, 0.556716651685814, 0.456365552347429, -0.656967473457364, 0.224104039172463, 0.556688064427702, 0.456384884860599, -0.656985685082829, 0.22408229365092, 0.55665947592686, 0.456404217373769, -0.657003896708294, 0.224060548129376, 0.556630887426018, 0.456423549886939, -0.65702210833376, 0.224038802607833, 0.556602298925176, 0.456442882400109, -0.657040319959225, 0.224017057086289, 0.556573710424335, 0.456462214913279, -0.65705853158469, 0.223995311564746, 0.556545121923493, 0.456481547426449, -0.657076743210155, 0.223973566043202, 0.556516533422651, 0.456500879939619, -0.657094954835621, 0.223951820521659, 0.556487944921809, 0.456520212452789, -0.657113166461086, 0.223930075000115, 0.556459356420968, 0.456539544965959, -0.657131378086551, 0.223908329478572, 0.556430767920126, 0.456558877479129, -0.657149589712016, 0.223886583957028, 0.556402179419284, 0.456578209992299, -0.657167801337481, 0.223864838435485, 0.556373590918442],
-	"STA_REFERENCE_DATE_AND_TIME": "UNKNOWN",
-	"STA_REFERENCE_POINT_XYZ": [0.0, 0.0, 0.0],
-	"STA_REF_ELEVATION": 0.0,
-	"STA_SEMI_MAJOR_AXIS": 3396190,
-	"STA_SEMI_MINOR_AXIS": 3376200.00000009,
-	"STA_SENSOR_IDENTIFIER": "USGS_LINE_SCANNER",
-	"STA_SENSOR_MODEL_NAME": "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL",
-	"STA_SENSOR_TYPE": "USGSAstroLineScanner",
-	"STA_STARTING_EPHEMERIS_TIME": 517362754.228396,
-	"STA_STARTING_SAMPLE": 1,
-	"STA_T0_EPHEM": -18.8561106920242,
-	"STA_T0_QUAT": -18.1390207409859,
-	"STA_TOTAL_LINES": 18432,
-	"STA_TOTAL_SAMPLES": 5000,
-	"STA_TRAJECTORY_IDENTIFIER": "UNKNOWN"
-}
diff --git a/tests/cassini_nac.json b/tests/cassini_nac.json
deleted file mode 100644
index 3ad5b7f621b9db4659003c7dd523ff9aa72044f4..0000000000000000000000000000000000000000
--- a/tests/cassini_nac.json
+++ /dev/null
@@ -1,63 +0,0 @@
-{
-  "boresight": [0.0, 0.0, 1.0],
-   "ccd_center": [512.5, 512.5],
-   "ephemeris_time": 503818547.2384149,
-   "focal_length": 2003.44,
-   "focal_length_epsilon": 0.03,
-   "ifov": 6.0,
-   "instrument_id": "CASSINI_ISS_NAC",
-   "itrans_line": [0.0, 0.0, 83.33333333333333],
-   "itrans_sample": [0.0, 83.33333333333333, 0.0],
-   "kappa": -1.0344655958281868,
-   "max_elevation": 100,
-   "min_elevation": -100,
-   "model_name": "ISIS_MDISNAC_USGSAstro_1_Linux64_csm30.so",
-   "nlines": 1024,
-   "nsamples": 1024,
-   "omega": 0.7582919095772543,
-   "original_half_lines": 512.0,
-   "original_half_samples": 512.0,
-   "phi": 0.7767982642455958,
-   "pixel_pitch": 0.012,
-   "semi_major_axis": 256.6,
-   "semi_minor_axis": 251.4,
-   "spacecraft_name": "CASSINI",
-   "target_name": "ENCELADUS",
-   "transx": [0.0, 0.012, 0.0],
-   "transy": [0.0, 0.0, 0.012],
-   "x_sensor_origin": 8467607.57716877,
-   "x_sensor_velocity": -9453.44521955574,
-   "x_sun_position": 1039775477180.3715,
-   "y_sensor_origin": 940810.1674152733,
-   "y_sensor_velocity": -1496.3339337677503,
-   "y_sun_position": 860644074787.2188,
-   "z_sensor_origin": -5007748.542046298,
-   "z_sensor_velocity": -278.8874775806509,
-   "z_sun_position": 648585685779.2721,
-	"odt_x": [
-		0.0,
-		1.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0
-	],
-	"odt_y": [
-		0.0,
-		0.0,
-		1.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0,
-		0.0
-	],
-	"starting_detector_line": 0.0,
-	"starting_detector_sample": 0.0
-}
diff --git a/tests/conftest.py b/tests/conftest.py
deleted file mode 100644
index a025fedb3446c3b3d43be3a5c40a21182382d365..0000000000000000000000000000000000000000
--- a/tests/conftest.py
+++ /dev/null
@@ -1,50 +0,0 @@
-import json
-import os
-
-import pytest
-
-from cycsm import isd
-import cycsm.csm as csm
-import usgscam as cam
-
-data_path = os.path.dirname(__file__)
-
-
-#TODO: This should be a single fixture that accepts the json file as an arg
-
-@pytest.fixture(params=['CW1071364100B_IU_5.json', 'cassini_nac.json', 'EN1007907102M.json'])
-def generic_model(request):
-    csm_isd = isd.Isd()
-    with open(os.path.join(data_path,request.param), 'r') as f:
-        d = json.load(f)
-    for k, v in d.items():
-        csm_isd.addparam(k, v)
-
-    plugin = cam.genericframe.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
-
-@pytest.fixture
-def mdis_wac_model():
-    csm_isd = isd.Isd()
-    with open(os.path.join(data_path,'CW1071364100B_IU_5.json'), 'r') as f:
-        d = json.load(f)
-    for k, v in d.items():
-        csm_isd.addparam(k, v)
-
-    plugin = cam.genericframe.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
-
-@pytest.fixture
-def ctx_model():
-    path = os.path.join(data_path, 'J03_046060_1986_XN_18N282W_8bit_keywords.lis')
-    csm_isd = isd.Isd.read_socet_file(path)
-    plugin = cam.genericls.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
-
-@pytest.fixture
-def cassini_model():
-    path = os.path.join(data_path,'cassini_nac.json')
-    with open(path, 'r') as f:
-        csm_isd = isd.Isd.load(f)
-    plugin = cam.genericframe.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
diff --git a/tests/h0232_0000_nd2_keywords.lis b/tests/h0232_0000_nd2_keywords.lis
deleted file mode 100644
index 41d236f5233ba834c54d92b8f8fed8e538388800..0000000000000000000000000000000000000000
--- a/tests/h0232_0000_nd2_keywords.lis
+++ /dev/null
@@ -1,628 +0,0 @@
-RECTIFICATION_TERMS
-        1.27520000000000e+04 0.00000000000000e+00 1.00000000000000e+00
-        2.58800000000000e+03 1.00000000000000e+00 0.00000000000000e+00
-GROUND_ZERO 1.37361393722424e-01 1.29557157126782e+00 0.00000000000000e+00
-LOAD_PT 1.37361393722424e-01 1.29557157126782e+00 0.00000000000000e+00
-COORD_SYSTEM 1
-IMAGE_MOTION 0
-SENSOR_TYPE USGSAstroLineScannerKLEv
-SENSOR_MODE UNKNOWN
-SEMI_MAJOR_AXIS 3.39619000000000e+006
-ECCENTRICITY 1.08339143554195e-001
-FOCAL 1.75010000000000e+02
-ATMCO 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_LINE 1.27520000000000e+04 1.42857142857143e+02 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_SAMPLE 2.58800000000000e+03 0.00000000000000e+00 1.42857142857143e+02 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-ABERR    0
-ATMREF   0
-PLATFORM   1
-SOURCE_FLAG  1
-SINGLE_EPHEMERIDE  0
-TRI_PARAMETERS
-0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 1.75010000000000e+02 0.00000000000000e+00 0.00000000000000e+00
-T_CENTER  -4.0382146835327148437500000e-06
-DT_EPHEM  6.9983721557593367990079969e+00
-T0_EPHEM  -1.5396419146656990051269531e+02
-NUMBER_OF_EPHEM   45
-EPHEM_PTS
- 1.0437553844329112907871604e+06 3.8563567107164775952696800e+06 -2.4380863445225942996330559e+04
- 1.0460100399872140260413289e+06 3.8633984391772123053669930e+06 3.3241226196810202964115888e+03
- 1.0482375178887286456301808e+06 3.8703118505785032175481319e+06 3.1028393318574446311686188e+04
- 1.0504378196865823119878769e+06 3.8770975143269645050168037e+06 5.8731150192489396431483328e+04
- 1.0526109480161052197217941e+06 3.8837559996374994516372681e+06 8.6431594782554384437389672e+04
- 1.0547569065984047483652830e+06 3.8902878755316878668963909e+06 1.1412892862987019179854542e+05
- 1.0568757002400623168796301e+06 3.8966937108365311287343502e+06 1.4182235327553233946673572e+05
- 1.0589673348328350111842155e+06 3.9029740741831492632627487e+06 1.6951107026064643287099898e+05
- 1.0610318173533205408602953e+06 3.9091295340054207481443882e+06 1.9719428112631113617680967e+05
- 1.0630691558626412879675627e+06 3.9151606585386707447469234e+06 2.2487118741362838773056865e+05
- 1.0650793595061178784817457e+06 3.9210680158183458261191845e+06 2.5254099066369872889481485e+05
- 1.0670624385129509028047323e+06 3.9268521736786826513707638e+06 2.8020289241762313758954406e+05
- 1.0690184041958895977586508e+06 3.9325136997513864189386368e+06 3.0785609421650180593132973e+05
- 1.0709472689509100746363401e+06 3.9380531614643032662570477e+06 3.3549979760143603198230267e+05
- 1.0728490463052303530275822e+06 3.9434711262248018756508827e+06 3.6313320442956296028569341e+05
- 1.0747237519872456323355436e+06 3.9487681679134573787450790e+06 3.9075552968964620959013700e+05
- 1.0765714038122796919196844e+06 3.9539448685690495185554028e+06 4.1836600593371532158926129e+05
- 1.0783920207505184225738049e+06 3.9590018106809221208095551e+06 4.4596386723924794932827353e+05
- 1.0801856238627890124917030e+06 3.9639395818750774487853050e+06 4.7354835962394508533179760e+05
- 1.0819522363587189465761185e+06 3.9687587750328634865581989e+06 5.0111874178140785079449415e+05
- 1.0836918826674856245517731e+06 3.9734599866862902417778969e+06 5.2867428194986796006560326e+05
- 1.0854045888343874830752611e+06 3.9780438168680705130100250e+06 5.5621425783168687485158443e+05
- 1.0870903825946224387735128e+06 3.9825108694346183910965919e+06 5.8373795787620858754962683e+05
- 1.0887492933274928946048021e+06 3.9868617516177874058485031e+06 6.1124468060946103651076555e+05
- 1.0903813523091808892786503e+06 3.9910970735959308221936226e+06 6.3873373388773039914667606e+05
- 1.0919865914449889678508043e+06 3.9952174491434134542942047e+06 6.6620443692944990471005440e+05
- 1.0935650446102344430983067e+06 3.9992234946223660372197628e+06 6.9365611824137414805591106e+05
- 1.0951167470160473603755236e+06 4.0031158290316197089850903e+06 7.2108811594356910791248083e+05
- 1.0966417353379570413380861e+06 4.0068950742346215993165970e+06 7.4849977916295593604445457e+05
- 1.0981400475541055202484131e+06 4.0105618541917442344129086e+06 7.7589046590323606505990028e+05
- 1.0996117229764976073056459e+06 4.0141167952483259141445160e+06 8.0325954440141888335347176e+05
- 1.1010568019836286548525095e+06 4.0175605258002751506865025e+06 8.3060639283359376713633537e+05
- 1.1024753262113195378333330e+06 4.0208936762245437130331993e+06 8.5793039894091465976089239e+05
- 1.1038673386859581805765629e+06 4.0241168786004320718348026e+06 8.8523096022820263169705868e+05
- 1.1052328837354783900082111e+06 4.0272307665732768364250660e+06 9.1250748363071295898407698e+05
- 1.1065720063817498739808798e+06 4.0302359753879504278302193e+06 9.3975938573378371074795723e+05
- 1.1078847527708134148269892e+06 4.0331331415846045129001141e+06 9.6698609264434233773499727e+05
- 1.1091711693618148565292358e+06 4.0359229030023557133972645e+06 9.9418703561424114741384983e+05
- 1.1104313035053343046456575e+06 4.0386058974447865039110184e+06 1.0213616464132033288478851e+06
- 1.1116652037769886665046215e+06 4.0411827624629205092787743e+06 1.0485093568108697654679418e+06
- 1.1128729199772444553673267e+06 4.0436541353542027063667774e+06 1.0756295985770309343934059e+06
- 1.1140545031307577155530453e+06 4.0460206531601888127624989e+06 1.1027218034813576377928257e+06
- 1.1152100054864499252289534e+06 4.0482829526662989519536495e+06 1.1297854032937625888735056e+06
- 1.1163394805156958755105734e+06 4.0504416703969961963593960e+06 1.1568198297828948125243187e+06
- 1.1174429829153791069984436e+06 4.0524974426218285225331783e+06 1.1838245147204482927918434e+06
-
-
-EPHEM_RATES
- 3.2411031617330888821015833e+02 1.0154035297106518100918038e+03 3.9587698255948635051026940e+03
- 3.2022685819364193093861104e+02 9.9702756236971390535472892e+02 3.9587246527180705015780404e+03
- 3.1634354395717781471830676e+02 9.7873297138667408034962136e+02 3.9585653877531331090722233e+03
- 3.1246052868004761648990097e+02 9.6051972942967324797791662e+02 3.9582920306964288101880811e+03
- 3.0857796753978192327849683e+02 9.4238780898985942258150317e+02 3.9579045815526533260708675e+03
- 3.0469601566182808483063127e+02 9.2433718235350909253611462e+02 3.9574030403194492464535870e+03
- 3.0081482812865812093150453e+02 9.0636782162415022412460530e+02 3.9567874069971612698282115e+03
- 2.9693455997748930030866177e+02 8.8847969871504415095841978e+02 3.9560576815860140413860790e+03
- 2.9305536619902869688303326e+02 8.7067278534855324778618524e+02 3.9552138640857456266530789e+03
- 2.8917740173808829240442719e+02 8.5294705305863590183435008e+02 3.9542559544964901760977227e+03
- 2.8530082149341882313819951e+02 8.3530247318944952894526068e+02 3.9531839528181790228700265e+03
- 2.8142578031736047705635428e+02 8.1773901689561648709059227e+02 3.9519978590507867011183407e+03
- 2.7755243301559318069848814e+02 8.0025665514249055831896840e+02 3.9506976731943368577049114e+03
- 2.7368093780125093417154858e+02 7.8285537190230741089180810e+02 3.9492834178281477761629503e+03
- 2.6981153275963515625335276e+02 7.6553562819148999096796615e+02 3.9477560537229551300697494e+03
- 2.6594452425525918215498677e+02 7.4829846935392231443984201e+02 3.9461177738810529262991622e+03
- 2.6208014389846175618004054e+02 7.3114451044468444251833716e+02 3.9443699420991656552359927e+03
- 2.5821862356483745770674432e+02 7.1407415064392819203931140e+02 3.9425135204346938735397998e+03
- 2.5436026614207926854760444e+02 6.9708813241032305541011738e+02 3.9405502675911561709654052e+03
- 2.5050531228259438876193599e+02 6.8018709203524849726818502e+02 3.9384817711185014559305273e+03
- 2.4665396458142126334678323e+02 6.6337154044929332030733349e+02 3.9363093891011471896490548e+03
- 2.4280645923781045780742716e+02 6.4664200094586931300000288e+02 3.9340345655257679027272388e+03
- 2.3896303445029531076215790e+02 6.2999898786892458701913711e+02 3.9316587881430873494537082e+03
- 2.3512394320514482615180896e+02 6.1344295289057913578290027e+02 3.9291834434856991720153019e+03
- 2.3128936597290888244060625e+02 5.9697436344176810507633490e+02 3.9266100099263462652743328e+03
- 2.2745948844929046117613325e+02 5.8059366132362265489064157e+02 3.9239399628415849292650819e+03
- 2.2363454681975002813487663e+02 5.6430121979911098151205806e+02 3.9211746526620818258379586e+03
- 2.1981474114595519608883478e+02 5.4809743191080565338779707e+02 3.9183155525994707204517908e+03
- 2.1600026911759209724550601e+02 5.3198265213695378861302743e+02 3.9153640832437836252211127e+03
- 2.1219131909814223035937175e+02 5.1595720068710352279595099e+02 3.9123216099188289263111074e+03
- 2.0838806258129474713314266e+02 5.0002139445894806613068795e+02 3.9091895738446137329447083e+03
- 2.0459066559252050865325145e+02 4.8417552149186144561099354e+02 3.9059693684983722050674260e+03
- 2.0079931731099665626061324e+02 4.6841984494646698067299440e+02 3.9026623748249348864192143e+03
- 1.9701421007523225625845953e+02 4.5275459833312743285205215e+02 3.8992699641504405008163303e+03
- 1.9323548645279439028854540e+02 4.3718000781671935328631662e+02 3.8957934996859739840147085e+03
- 1.8946327633867392137290153e+02 4.2169628021784285465400899e+02 3.8922343511552185191249009e+03
- 1.8569768241933172703284072e+02 4.0630360088275722318940097e+02 3.8885935664100111353036482e+03
- 1.8193879075330369232688099e+02 3.9100206007751143033601693e+02 3.8848715500298467304673977e+03
- 1.7818675255225852538387699e+02 3.7579163721924783203576226e+02 3.8810683390082263031217735e+03
- 1.7444174284878613434557337e+02 3.6067229614687869343470084e+02 3.8771839333499569875129964e+03
- 1.7070393661494310322268575e+02 3.4564400046137467370499508e+02 3.8732183330571765509375837e+03
- 1.6697350878104964522208320e+02 3.3070671358102492831676500e+02 3.8691715381386179615219589e+03
- 1.6325063415338158279155323e+02 3.1586039856204922671167878e+02 3.8650435485212801722809672e+03
- 1.5953548762704372165899258e+02 3.0110501854786616604542360e+02 3.8608343643324265030969400e+03
- 1.5582824383601032991464308e+02 2.8644053599601528503626469e+02 3.8565439854253563680686057e+03
-
-
-DT_QUAT 4.1558029428499626556359203e-01
-T0_QUAT -9.1427668780088424682617188e+01
-NUMBER_OF_QUATERNIONS  441
-QUATERNIONS
- 7.2951846538638820405253682e-01 -7.6603675075322466558880308e-02 -7.8908509701769893873724016e-02 6.7506157698530688815452550e-01
- 7.2964990100911797377136736e-01 -7.6630469470032200329789873e-02 -7.8902776691210374515605963e-02 6.7491713931163710427085789e-01
- 7.2978130783316219609702102e-01 -7.6657264794401366869713854e-02 -7.8897036396662359458709091e-02 6.7477267589862000018996468e-01
- 7.2991268585344915020840517e-01 -7.6684061046553106399947808e-02 -7.8891288817588015036541549e-02 6.7462818675201585705281104e-01
- 7.3004403506490789244054440e-01 -7.6710858224609990152487171e-02 -7.8885533953450021060760378e-02 6.7448367187758562213417690e-01
- 7.3017535546246936650760517e-01 -7.6737656326694783648356690e-02 -7.8879771803711556943383698e-02 6.7433913128109146395416928e-01
- 7.3030664704106518225756872e-01 -7.6764455350929849952734685e-02 -7.8874002367836107407761403e-02 6.7419456496829677227822231e-01
- 7.3043790979562817078374337e-01 -7.6791255295437552130799475e-02 -7.8868225645287809433270354e-02 6.7404997294496560300558485e-01
- 7.3056914372109238442476453e-01 -7.6818056158339809158519529e-02 -7.8862441635531160821770413e-02 6.7390535521686323328083290e-01
- 7.3070034881239354085380455e-01 -7.6844857937758609400802357e-02 -7.8856650338030867541938562e-02 6.7376071178975538433775228e-01
- 7.3083152506446757978864071e-01 -7.6871660631815663666799310e-02 -7.8850851752252579252022713e-02 6.7361604266940966478927066e-01
- 7.3096267247225199525928474e-01 -7.6898464238632391332117777e-02 -7.8845045877661945610270777e-02 6.7347134786159434938213053e-01
- 7.3109379103068583560798288e-01 -7.6925268756330156261213915e-02 -7.8839232713725393431047905e-02 6.7332662737207837899688911e-01
- 7.3122488073470881531079613e-01 -7.6952074183030308440756073e-02 -7.8833412259909377284294862e-02 6.7318188120663180473712828e-01
- 7.3135594157926198111141503e-01 -7.6978880516853420701295363e-02 -7.8827584515681392574038000e-02 6.7303710937102600997405943e-01
- 7.3148697355928782304346214e-01 -7.7005687755920579351531785e-02 -7.8821749480508865315364631e-02 6.7289231187103304421270877e-01
- 7.3161797666972905318516496e-01 -7.7032495898352204566350565e-02 -7.8815907153859887657176841e-02 6.7274748871242640024803450e-01
- 7.3174895090553104815001007e-01 -7.7059304942268896931878430e-02 -7.8810057535203120737676841e-02 6.7260263990098001496420466e-01
- 7.3187989626163896250687912e-01 -7.7086114885790729678305411e-02 -7.8804200624007364472944914e-02 6.7245776544246893546841193e-01
- 7.3201081273300006024840059e-01 -7.7112925727037789913609345e-02 -7.8798336419742182057390778e-02 6.7231286534266954113547854e-01
- 7.3214170031456182741180783e-01 -7.7139737464129956578950953e-02 -7.8792464921877344852241265e-02 6.7216793960735909951864642e-01
- 7.3227255900127397048038347e-01 -7.7166550095186886570886031e-02 -7.8786586129883193208023329e-02 6.7202298824231565532727473e-01
- 7.3240338878808664002661999e-01 -7.7193363618328098008092297e-02 -7.8780700043230567075625004e-02 6.7187801125331836349374726e-01
- 7.3253418966995142991294188e-01 -7.7220178031672845331279120e-02 -7.8774806661390653350629520e-02 6.7173300864614737815116996e-01
- 7.3266496164182104422479824e-01 -7.7246993333340341347792446e-02 -7.8768905983835138528981190e-02 6.7158798042658396365567341e-01
- 7.3279570469864918624836037e-01 -7.7273809521449396409131793e-02 -7.8762998010036125440258559e-02 6.7144292660041038356411036e-01
- 7.3292641883539100255973153e-01 -7.7300626594118959644674760e-02 -7.8757082739466230392189061e-02 6.7129784717340990063405570e-01
- 7.3305710404700274995803966e-01 -7.7327444549467452827862246e-02 -7.8751160171598402759407520e-02 6.7115274215136622171229419e-01
- 7.3318773404209480748505712e-01 -7.7354247845626042390243526e-02 -7.8745228312380108337542595e-02 6.7100764228769171904076529e-01
- 7.3331830688531352002712538e-01 -7.7381035345254367552314534e-02 -7.8739287019139930778877101e-02 6.7086254988296334378361507e-01
- 7.3344882258816712639060142e-01 -7.7407807063041039752349093e-02 -7.8733336297180669949291598e-02 6.7071746496213868748981213e-01
- 7.3357928116218051872721162e-01 -7.7434563013669729936161445e-02 -7.8727376151811148674575236e-02 6.7057238755015269315862270e-01
- 7.3370968261889268902109507e-01 -7.7461303211820417558008955e-02 -7.8721406588346087840335485e-02 6.7042731767191787728421559e-01
- 7.3384002046221363801947746e-01 -7.7488023847863740645180997e-02 -7.8715427123405443121662017e-02 6.7028226297653958898337123e-01
- 7.3397030116427763868358625e-01 -7.7514728741324770422416179e-02 -7.8709438249037352863801686e-02 6.7013721592484287725710601e-01
- 7.3410052478401244258066072e-01 -7.7541417935868189870163292e-02 -7.8703439974628169872872263e-02 6.6999217648603404118290428e-01
- 7.3423069133402374397689982e-01 -7.7568091446268500055438722e-02 -7.8697432305403533514542858e-02 6.6984714468383110830274063e-01
- 7.3436080082645682765019046e-01 -7.7594749287238876100936125e-02 -7.8691415246652657300430178e-02 6.6970212054245037425204146e-01
- 7.3449085327090457564480630e-01 -7.7621391473178050213199697e-02 -7.8685388803980696459383637e-02 6.6955710408889912432783831e-01
- 7.3462084417297246474731764e-01 -7.7648015384135307681567895e-02 -7.8679352647118505625911666e-02 6.6941210063795886231474697e-01
- 7.3475077600913552000605478e-01 -7.7674622483248634274843880e-02 -7.8673306966554917840639405e-02 6.6926710732487382227162698e-01
- 7.3488065083496689755548914e-01 -7.7701213981043709688734111e-02 -7.8667251919990771602542168e-02 6.6912212177569219129225075e-01
- 7.3501046866219810205222984e-01 -7.7727789892142795658003251e-02 -7.8661187512811120425837430e-02 6.6897714401505037340456283e-01
- 7.3514022950257662536444059e-01 -7.7754350231163421591773499e-02 -7.8655113750406527306502369e-02 6.6883217406756034772996600e-01
- 7.3526993336786461430421014e-01 -7.7780895012718856418310054e-02 -7.8649030638173023088910440e-02 6.6868721195781244404088284e-01
- 7.3539957775705067088978240e-01 -7.7807422791105487758223092e-02 -7.8642937996496187214034990e-02 6.6854226066617294943483785e-01
- 7.3552916115980793154704998e-01 -7.7833932702925587299169763e-02 -7.8636835720215680911593381e-02 6.6839732201098611685807782e-01
- 7.3565868762546471337770981e-01 -7.7860427110858082544453396e-02 -7.8630724112169814166151127e-02 6.6825239126911450959767080e-01
- 7.3578815716390522094769722e-01 -7.7886906029255464911642548e-02 -7.8624603178021307270384455e-02 6.6810746846718704894385610e-01
- 7.3591756978738465111433698e-01 -7.7913369472747712185523028e-02 -7.8618472923150564679595220e-02 6.6796255362921730380776353e-01
- 7.3604692550886186008796130e-01 -7.7939817456043072874116717e-02 -7.8612333352859262158851550e-02 6.6781764677843746813579173e-01
- 7.3617622381781022689040128e-01 -7.7966249692983116692523993e-02 -7.8606184435014825329091082e-02 6.6767274855480607254065717e-01
- 7.3630545922614532017291822e-01 -7.7992663023355016105320203e-02 -7.8600025774815868162548327e-02 6.6752786546817599599989990e-01
- 7.3643463776855921931741022e-01 -7.8019060946699567149487109e-02 -7.8593857817672641008499568e-02 6.6738299044628168754655917e-01
- 7.3656375945698737695011005e-01 -7.8045443477566367462827657e-02 -7.8587680569048246059793428e-02 6.6723812351345490601062238e-01
- 7.3669282430339499967431038e-01 -7.8071810630501642380707494e-02 -7.8581494034409060667201175e-02 6.6709326469398766423779534e-01
- 7.3682183231976250414874130e-01 -7.8098162420046732257183919e-02 -7.8575298219226208384924348e-02 6.6694841401214821630105689e-01
- 7.3695078351808473993145299e-01 -7.8124498860737634498008219e-02 -7.8569093128976724704770618e-02 6.6680357149218238976828843e-01
- 7.3707967284282149833529729e-01 -7.8150817058506100165615749e-02 -7.8562878404512398455850075e-02 6.6665874314510054077231871e-01
- 7.3720850390382797190369502e-01 -7.8177119101086767205543993e-02 -7.8556654312096699244172271e-02 6.6651392474893145223546753e-01
- 7.3733727818536742848465337e-01 -7.8203405848068258121585927e-02 -7.8550420962986408635053692e-02 6.6636911458927505780280853e-01
- 7.3746599569807236296270503e-01 -7.8229677313788423265172867e-02 -7.8544178362861497011415679e-02 6.6622431269185489188799920e-01
- 7.3759465645384869603162770e-01 -7.8255933512729011769515353e-02 -7.8537926517251388514040400e-02 6.6607951908098139703895413e-01
- 7.3772326046645686492553295e-01 -7.8282174459585435188913038e-02 -7.8531665431462796544970217e-02 6.6593473377890444186988361e-01
- 7.3785180466931366005667314e-01 -7.8308398413056617970440243e-02 -7.8525394892452790585046785e-02 6.6578996045389837732386695e-01
- 7.3798028869698262255383270e-01 -7.8334605177358962446731994e-02 -7.8519114879800594453129747e-02 6.6564519958076628913801187e-01
- 7.3810871601815863929374473e-01 -7.8360796742419469573803781e-02 -7.8512825645745951130827223e-02 6.6550044709304245760250751e-01
- 7.3823708664493270514839196e-01 -7.8386973122697656268798028e-02 -7.8506527195836325883071538e-02 6.6535570301479574073511003e-01
- 7.3836540058949851061953495e-01 -7.8413134332658396274950974e-02 -7.8500219535612966725857120e-02 6.6521096736997542553382345e-01
- 7.3849365786406473421976671e-01 -7.8439280386761248142768466e-02 -7.8493902670621673589579359e-02 6.6506624018250692920162237e-01
- 7.3862185739396390982136609e-01 -7.8465410682619335380749703e-02 -7.8487576529900057731303775e-02 6.6492152276547800138217781e-01
- 7.3874999483835301905543247e-01 -7.8491522769245522517245206e-02 -7.8481240813721930837942864e-02 6.6477682030891926956428506e-01
- 7.3887807565013308153112348e-01 -7.8517619752751510731059170e-02 -7.8474895911627290390200073e-02 6.6463212638539959087324860e-01
- 7.3900609984328713419898804e-01 -7.8543701647767624751672599e-02 -7.8468541828973961682613947e-02 6.6448744101684487084469311e-01
- 7.3913406742918474900960746e-01 -7.8569768468609538225599920e-02 -7.8462178571451643427359102e-02 6.6434276422807547746174350e-01
- 7.3926197841938356969393453e-01 -7.8595820229607232798585414e-02 -7.8455806144733408746816394e-02 6.6419809604369872690909915e-01
- 7.3938983282843440125731149e-01 -7.8621856945436441321817256e-02 -7.8449424554124069786098516e-02 6.6405343648498516007094850e-01
- 7.3951762504228413241946782e-01 -7.8647875460555030646681018e-02 -7.8443033415092400240098414e-02 6.6390879226441912308587234e-01
- 7.3964535980162160466733212e-01 -7.8673878461416310581277855e-02 -7.8436633062970426144566716e-02 6.6376415778912989384963339e-01
- 7.3977303801706384422942619e-01 -7.8699866469606111207824028e-02 -7.8430223566010884295174321e-02 6.6361953201518697476046782e-01
- 7.3990065970085416857671134e-01 -7.8725839499489413952915129e-02 -7.8423804929839135979818820e-02 6.6347491496639743324692517e-01
- 7.4002822486540886792738547e-01 -7.8751797565444286997049517e-02 -7.8417377160065110386355514e-02 6.6333030666636916272693725e-01
- 7.4015573352315988664429369e-01 -7.8777740681843913539417201e-02 -7.8410940262302816772255198e-02 6.6318570713868607580110393e-01
- 7.4028318205118015526977615e-01 -7.8803666825419227404125877e-02 -7.8404493992574833538533596e-02 6.6304112073748200373302097e-01
- 7.4041057121736275625778489e-01 -7.8829576440621010324782958e-02 -7.8398038409942499837868013e-02 6.6289654659022334559637102e-01
- 7.4053790391498630629740774e-01 -7.8855471158684548038664275e-02 -7.8391573718404689019578768e-02 6.6275198128975254530104166e-01
- 7.4066518015795868024042647e-01 -7.8881350994115181918253654e-02 -7.8385099923419979117689138e-02 6.6260742485797541334591187e-01
- 7.4079239995837675714085435e-01 -7.8907215961200080633908271e-02 -7.8378617030681732580355003e-02 6.6246287731881137172962326e-01
- 7.4091956332745068092293650e-01 -7.8933066074115237897856900e-02 -7.8372125046000981618554704e-02 6.6231833869716560947438211e-01
- 7.4104666862950241412733021e-01 -7.8958900427364211993541687e-02 -7.8365623862662381338139994e-02 6.6217381098396965732888475e-01
- 7.4117371266532661167047991e-01 -7.8984717252070513193729084e-02 -7.8359113270339092460758934e-02 6.6202929803898613592139100e-01
- 7.4130070031076222836219358e-01 -7.9010519275140494999121188e-02 -7.8352593604961218165527725e-02 6.6188479408279343729759603e-01
- 7.4142763157799762563371360e-01 -7.9036306510824549942384465e-02 -7.8346064872246656829446465e-02 6.6174029913917287171187809e-01
- 7.4155450638674114127724124e-01 -7.9062078921952425036856482e-02 -7.8339527071658823786926007e-02 6.6159581334243988681720339e-01
- 7.4168132517798757152860389e-01 -7.9087836760544108494208615e-02 -7.8332980237451388383362882e-02 6.6145133620386697970161549e-01
- 7.4180808699701084041322474e-01 -7.9113579504252823371146519e-02 -7.8326424309507133858510031e-02 6.6130686890334555716464138e-01
- 7.4193478632444098685994049e-01 -7.9139304106492683321683046e-02 -7.8319858923631427427558549e-02 6.6116241808305231675291225e-01
- 7.4206142952690556935380073e-01 -7.9165014106477679667328573e-02 -7.8313284513572389844426880e-02 6.6101797616910751287377934e-01
- 7.4218801661650157797112115e-01 -7.9190709517986665466615648e-02 -7.8306701085025978703590965e-02 6.6087354318514068829415464e-01
- 7.4231454760668991177396947e-01 -7.9216390354953050700892447e-02 -7.8300108643490573534506893e-02 6.6072911915324628040480093e-01
- 7.4244102251077337406570678e-01 -7.9242056631285681667087317e-02 -7.8293507194490130629560554e-02 6.6058470409568814663003877e-01
- 7.4256743963968163679822965e-01 -7.9267707424222011436398816e-02 -7.8286896631434288451600878e-02 6.6044030007449960884002849e-01
- 7.4269379524183987140162344e-01 -7.9293340677754717282788022e-02 -7.8280276711426496905055217e-02 6.6029591162706446905161783e-01
- 7.4282009479556587727699934e-01 -7.9318959422280607696187360e-02 -7.8273647803500087660744100e-02 6.6015153222847788860860874e-01
- 7.4294633831545853208666585e-01 -7.9344563671816872862940784e-02 -7.8267009913039739532614192e-02 6.6000716189951569301541667e-01
- 7.4307252581394911405965331e-01 -7.9370153440124407984157529e-02 -7.8260363045713335350406226e-02 6.5986280066338220962052219e-01
- 7.4319865730242928858473306e-01 -7.9395728740837570591715178e-02 -7.8253707207327424799636617e-02 6.5971844854444372518997852e-01
- 7.4332473021899392318090349e-01 -7.9421288176334287056690187e-02 -7.8247042234778671487838153e-02 6.5957410865707910563315863e-01
- 7.4345074256922361044530589e-01 -7.9446830667442167039915546e-02 -7.8240368004183047379029858e-02 6.5942978343773572813546480e-01
- 7.4357669895082878497305501e-01 -7.9472358742803839160018242e-02 -7.8233684821731847014447681e-02 6.5928546740577997908872021e-01
- 7.4370259937663518723383049e-01 -7.9497872416177908783119221e-02 -7.8226992693073926776747840e-02 6.5914116058393379393720579e-01
- 7.4382844385948143628439766e-01 -7.9523371701317277504550418e-02 -7.8220291623861265550843314e-02 6.5899686299489668162010503e-01
- 7.4395423241222025101393456e-01 -7.9548856611970239494091572e-02 -7.8213581619748950846116031e-02 6.5885257466134528048229413e-01
- 7.4407996159529732338455688e-01 -7.9574325281270813503553541e-02 -7.8206862463523069139981203e-02 6.5870829975944844569823999e-01
- 7.4420563117255555951601309e-01 -7.9599777594552001414029974e-02 -7.8200134146654429190270719e-02 6.5856403861538137523012892e-01
- 7.4433124486151547305468057e-01 -7.9625215585033173870677103e-02 -7.8193396914163618149906654e-02 6.5841978679636292692833877e-01
- 7.4445680267352387637913580e-01 -7.9650639266248907111034327e-02 -7.8186650771926380354415187e-02 6.5827554432673629492001055e-01
- 7.4458230462144547878722278e-01 -7.9676048651899838981549351e-02 -7.8179895725626682989606309e-02 6.5813131122912504888944341e-01
- 7.4470775071983807968933888e-01 -7.9701443755872888874414173e-02 -7.8173131780732776907605341e-02 6.5798708752423196166603248e-01
- 7.4483313665220274302214420e-01 -7.9726822248275375226711503e-02 -7.8166358667639213031463896e-02 6.5784287845326339105866964e-01
- 7.4495846394170006643520310e-01 -7.9752184966680794708793201e-02 -7.8159576489470652949087537e-02 6.5769868222283223158086685e-01
- 7.4508373542037065195842160e-01 -7.9777533454529855894143964e-02 -7.8152785432514276786619689e-02 6.5755449545804034450213749e-01
- 7.4520895110207474587582510e-01 -7.9802867725587728342517835e-02 -7.8145985502353715324019845e-02 6.5741031818034589839783166e-01
- 7.4533411100052016085015794e-01 -7.9828187793595462018458875e-02 -7.8139176704596718936457478e-02 6.5726615041137081973943168e-01
- 7.4545921512824175891864797e-01 -7.9853493672153011417869095e-02 -7.8132359045008939468779374e-02 6.5712199217405531381785977e-01
- 7.4558425829935759399091921e-01 -7.9878782575295084744659846e-02 -7.8125532202434649908795450e-02 6.5697784977012119167483206e-01
- 7.4570924378543990140855158e-01 -7.9904056279290119890745814e-02 -7.8118696389469777230374348e-02 6.5683371929086686868970446e-01
- 7.4583417354205205906936271e-01 -7.9929315845033668819219486e-02 -7.8111851734268752944778669e-02 6.5668959841315666103866988e-01
- 7.4595904758229791831070088e-01 -7.9954561286149167242953695e-02 -7.8104998242546838649325025e-02 6.5654548715925409307914151e-01
- 7.4608386591907249751898235e-01 -7.9979792616228062573924262e-02 -7.8098135920050895664168422e-02 6.5640138555165317146844473e-01
- 7.4620862856506675608869728e-01 -8.0005009848832825403164293e-02 -7.8091264772559010332031448e-02 6.5625729361307105769185455e-01
- 7.4633332946632813253984295e-01 -8.0030209748120903490153921e-02 -7.8084384429033801278130511e-02 6.5611321870826244673224892e-01
- 7.4645797363946919666943813e-01 -8.0055395016457087109529311e-02 -7.8077495208347710842211598e-02 6.5596915480897965977646891e-01
- 7.4658256216490292977994159e-01 -8.0080566238507330800722173e-02 -7.8070597182137976832727588e-02 6.5582510064637911106899537e-01
- 7.4670709505492138813309566e-01 -8.0105723427746522435910492e-02 -7.8063690356258402802680507e-02 6.5568105624359807048762150e-01
- 7.4683157232209829157199010e-01 -8.0130866597673322537787044e-02 -7.8056774736529915825755666e-02 6.5553702162344673620708591e-01
- 7.4695599398181744543734339e-01 -8.0155995762096088341763789e-02 -7.8049850328407124888663304e-02 6.5539299680553153581996639e-01
- 7.4708035310559517405692986e-01 -8.0181107240579252426471157e-02 -7.8042916713682838891763538e-02 6.5524899022899329992242201e-01
- 7.4720465646092382172582802e-01 -8.0206204650098922304124471e-02 -7.8035974313060391116536607e-02 6.5510499373134911671456848e-01
- 7.4732890424941744722531212e-01 -8.0231288104809922456794880e-02 -7.8029023143950770879939682e-02 6.5496100710623161855750141e-01
- 7.4745309648417301850997774e-01 -8.0256357618219767435796541e-02 -7.8022063212132980458690668e-02 6.5481703037581417969903441e-01
- 7.4757723317848634447813083e-01 -8.0281413203851417770273713e-02 -7.8015094523363220924139227e-02 6.5467306356203647244029753e-01
- 7.4770131366034775499684883e-01 -8.0306454512053898620038694e-02 -7.8008117041957508730476434e-02 6.5452910751918602638710354e-01
- 7.4782533219367341992267484e-01 -8.0331478514506990395993569e-02 -7.8001130427296935798686661e-02 6.5438516925520184841502669e-01
- 7.4794929522872644067632564e-01 -8.0356488639868176027114544e-02 -7.7994135075478532304060764e-02 6.5424124097625513396536689e-01
- 7.4807320277833500021813506e-01 -8.0381484901564381750915800e-02 -7.7987130992342237889580758e-02 6.5409732270478460058882320e-01
- 7.4819705485668042133085009e-01 -8.0406467313166946064839635e-02 -7.7980118183552202260067077e-02 6.5395341446167687404766866e-01
- 7.4832085147775018185711815e-01 -8.0431435888218300034324670e-02 -7.7973096654801760108099984e-02 6.5380951626802996656806499e-01
- 7.4844459109472483149261279e-01 -8.0456389819140688990373178e-02 -7.7966066319335308731908185e-02 6.5366563004414557358501270e-01
- 7.4856826972724355151456166e-01 -8.0481327019180898263428503e-02 -7.7959026945674053665769065e-02 6.5352176067555411975718016e-01
- 7.4869189294277771473673511e-01 -8.0506250432925641202785982e-02 -7.7951978872202121184642465e-02 6.5337790142680762794924476e-01
- 7.4881546075663185657589338e-01 -8.0531160074019891847996178e-02 -7.7944922104457803335719746e-02 6.5323405231746445309681803e-01
- 7.4893897318193036749534031e-01 -8.0556055955858990591522684e-02 -7.7937856648274392301622981e-02 6.5309021336956629699699306e-01
- 7.4906243023083196597156075e-01 -8.0580938091723203209326698e-02 -7.7930782509618476416868305e-02 6.5294638460625276099591474e-01
- 7.4918582949031375939341615e-01 -8.0605805223073326293281582e-02 -7.7923699551378483585395429e-02 6.5280256900802491326629706e-01
- 7.4930916872475905599060297e-01 -8.0630656191365224216838214e-02 -7.7916607648991775825209061e-02 6.5265876934247468721395080e-01
- 7.4943245262670132866844597e-01 -8.0655493464116809199104807e-02 -7.7909507083901596846686743e-02 6.5251497992761087196811332e-01
- 7.4955568120967441814173071e-01 -8.0680317054717690106180328e-02 -7.7902397861910457899092819e-02 6.5237120078496413366764273e-01
- 7.4967885448722315633318658e-01 -8.0705126976550675688137915e-02 -7.7895279988822813121984723e-02 6.5222743193604393319162682e-01
- 7.4980197247290514273032613e-01 -8.0729923242993176235593467e-02 -7.7888153470445586901149682e-02 6.5208367340233697184714856e-01
- 7.4992503188310755124490470e-01 -8.0754704150018577490932614e-02 -7.7881018121776557361357618e-02 6.5193992923357513280535613e-01
- 7.5004803222746818658350776e-01 -8.0779469455301650127054813e-02 -7.7873873921382785745493038e-02 6.5179620007077354593150176e-01
- 7.5017097732426929468374510e-01 -8.0804221155449704183659776e-02 -7.7866721095508448224897791e-02 6.5165248128864383669878180e-01
- 7.5029386718556567714699668e-01 -8.0828959263629762688196934e-02 -7.7859559650182305623467016e-02 6.5150877291036313199157348e-01
- 7.5041670182494868424072365e-01 -8.0853683793170968985286606e-02 -7.7852389591228796095201403e-02 6.5136507495733575456853259e-01
- 7.5053948125761238419073607e-01 -8.0878394757571414608321447e-02 -7.7845210924259555795856613e-02 6.5122138744911495233935739e-01
- 7.5066220133032257599836612e-01 -8.0903090013349776565831917e-02 -7.7838023418151380816709661e-02 6.5107771550757420619959248e-01
- 7.5078486329846072511173816e-01 -8.0927770222483250139866584e-02 -7.7830827150777021072869388e-02 6.5093405763852529855029161e-01
- 7.5090747010111114079222716e-01 -8.0952436916167630487350948e-02 -7.7823622295705607854188202e-02 6.5079041028310968819425852e-01
- 7.5103002175283140040562557e-01 -8.0977090107786198203143613e-02 -7.7816408858652791336041332e-02 6.5064677346157673287763146e-01
- 7.5115251826799034340353955e-01 -8.1001729810694256261882629e-02 -7.7809186845363059736868649e-02 6.5050314719438173671761660e-01
- 7.5127495965982560299778470e-01 -8.1026356038114588642429226e-02 -7.7801956261737983955306674e-02 6.5035953150327463490043556e-01
- 7.5139734091311727315343205e-01 -8.1050966213831288076363535e-02 -7.7794716831409579937961496e-02 6.5021593257749543681711657e-01
- 7.5151966501775691043008010e-01 -8.1075561891004052639253530e-02 -7.7787468729292236213623823e-02 6.5007234679252889897327350e-01
- 7.5164193404278001331420000e-01 -8.1100144142426472404494575e-02 -7.7780212076912227936453803e-02 6.4992877164946116774757456e-01
- 7.5176414800197355337019189e-01 -8.1124712981337790407287969e-02 -7.7772946880114462997468650e-02 6.4978520716937349099850962e-01
- 7.5188630690891378183238203e-01 -8.1149268420945663837784423e-02 -7.7765673144775254721494662e-02 6.4964165337358126262046198e-01
- 7.5200841077699487335905815e-01 -8.1173810474430965755665568e-02 -7.7758390876799504676242236e-02 6.4949811028360282527671643e-01
- 7.5213045373056919284948663e-01 -8.1198336138847540532914593e-02 -7.7751099756282332498003029e-02 6.4935458515823196723459887e-01
- 7.5225244049019124314980900e-01 -8.1222847846321874487607317e-02 -7.7743800051894393354778856e-02 6.4921107223904905847433611e-01
- 7.5237437225642356253274556e-01 -8.1247346217375143728745002e-02 -7.7736491834787521670868671e-02 6.4906757008928317453921863e-01
- 7.5249624904222378596330145e-01 -8.1271831265095989538238541e-02 -7.7729175110943377058347892e-02 6.4892407873092017300820089e-01
- 7.5261807086087939566709792e-01 -8.1296303002600781018038845e-02 -7.7721849886301680454536722e-02 6.4878059818555677829010619e-01
- 7.5273983772837183003900918e-01 -8.1320761443291270098576717e-02 -7.7714516166435335109419213e-02 6.4863712847166299368950604e-01
- 7.5286154290262408128597826e-01 -8.1345203162632870319548317e-02 -7.7707173590662245721283341e-02 6.4849367792852163905337193e-01
- 7.5298319284002324103255432e-01 -8.1369631460566915759358153e-02 -7.7699822516859029519764590e-02 6.4835023864980922958523024e-01
- 7.5310478786931511763214075e-01 -8.1394046510896517210298384e-02 -7.7692462968161901670782754e-02 6.4820681026878823605130719e-01
- 7.5322632800426936316995352e-01 -8.1418448326737904996441841e-02 -7.7685094950463703944443239e-02 6.4806339280645142153503002e-01
- 7.5334781325884592195762934e-01 -8.1442836921220562729217818e-02 -7.7677718469634171594151439e-02 6.4791998628356184397603101e-01
- 7.5346924309534757391304538e-01 -8.1467212027927560225037951e-02 -7.7670333501959412658699478e-02 6.4777659140124488335032993e-01
- 7.5359061157122309015932160e-01 -8.1491570646296293545240985e-02 -7.7662939735182137668267899e-02 6.4763321552943786674205739e-01
- 7.5371192521126018082355813e-01 -8.1515916092484555499630972e-02 -7.7655537525466347692493230e-02 6.4748985066143693867246611e-01
- 7.5383318402895505006000576e-01 -8.1540248379526406030670671e-02 -7.7648126878762102620612495e-02 6.4734649681850631175450417e-01
- 7.5395438803914194281219352e-01 -8.1564567520592046179217505e-02 -7.7640707800836358809526416e-02 6.4720315402034866991698436e-01
- 7.5407553725642739728129982e-01 -8.1588873528820007874351461e-02 -7.7633280297490767085655250e-02 6.4705982228691960589372911e-01
- 7.5419663027579053604654291e-01 -8.1613165703273163331665785e-02 -7.7625844300224192129356027e-02 6.4691650339221540289003087e-01
- 7.5431766289645219014659006e-01 -8.1637441937316465589979941e-02 -7.7618399593484571630241931e-02 6.4677320256865300507342909e-01
- 7.5443864076689248765461571e-01 -8.1661705087269220726398089e-02 -7.7610946481851933453910419e-02 6.4662991287616367053203703e-01
- 7.5455956390305245484739771e-01 -8.1685955166367368862623266e-02 -7.7603484970957065103291939e-02 6.4648663433311293058380897e-01
- 7.5468043231868597864320236e-01 -8.1710192187603558622299715e-02 -7.7596015066737439314081826e-02 6.4634336696040217695724550e-01
- 7.5480124602664977473409635e-01 -8.1734416163866924209813192e-02 -7.7588536775258662436804968e-02 6.4620011077996819537361262e-01
- 7.5492200276323673246992030e-01 -8.1758625966421472064382669e-02 -7.7581049983974137429498796e-02 6.4605686863263867003581709e-01
- 7.5504270005815610211641342e-01 -8.1782820369637368451698478e-02 -7.7573554571749941954905694e-02 6.4591364361838710106411554e-01
- 7.5516334269157958658524876e-01 -8.1807001776771665069176720e-02 -7.7566050792380131229108997e-02 6.4577042985851329515156749e-01
- 7.5528393067768284652174771e-01 -8.1831170200808933667957490e-02 -7.7558538651760766668985525e-02 6.4562722737338074097124263e-01
- 7.5540446403065009128852125e-01 -8.1855325654727278950062441e-02 -7.7551018155789019914436722e-02 6.4548403618333227704795263e-01
- 7.5552494276467752065684635e-01 -8.1879468151497936112548359e-02 -7.7543489310363186706176464e-02 6.4534085630868931460213389e-01
- 7.5564536375339053098088016e-01 -8.1903596139903431239126519e-02 -7.7535951961396384901625822e-02 6.4519769166573914809248436e-01
- 7.5576572625693927420797991e-01 -8.1927709263697023889250204e-02 -7.7528406078304842874437952e-02 6.4505454321404642747950220e-01
- 7.5588603418812483347721809e-01 -8.1951809479043707939993624e-02 -7.7520851865884587983401843e-02 6.4491140613920550084259276e-01
- 7.5600628755964482952123262e-01 -8.1975896798708813850709021e-02 -7.7513289330257917342237306e-02 6.4476828046324929921695457e-01
- 7.5612648638574941895029724e-01 -8.1999971235615989884060184e-02 -7.7505718477331439486555098e-02 6.4462516620638687925293198e-01
- 7.5624663068220432382560148e-01 -8.2024032802842261613562869e-02 -7.7498139312801417322162933e-02 6.4448206338704705498088288e-01
- 7.5636671646118036616002200e-01 -8.2048079532523313095460082e-02 -7.7490551642836857926255334e-02 6.4433897699956521609720994e-01
- 7.5648674471322896462055496e-01 -8.2072111926255880698377609e-02 -7.7482955523505370187820063e-02 6.4419590585511232738724630e-01
- 7.5660671847916072252360209e-01 -8.2096131498450061747540474e-02 -7.7475351113189483420740089e-02 6.4405284621300573633106978e-01
- 7.5672663777416271368991829e-01 -8.2120138262075231816439214e-02 -7.7467738417679496421008878e-02 6.4390979809230985964063620e-01
- 7.5684650261320052244684575e-01 -8.2144132230068833688818586e-02 -7.7460117442799153453236727e-02 6.4376676151233802603002232e-01
- 7.5696631301014738468779797e-01 -8.2168113415244659059055721e-02 -7.7452488194528407161598693e-02 6.4362373649367510264340808e-01
- 7.5708606412341561409107271e-01 -8.2192079439572018895177052e-02 -7.7444850440183052309173206e-02 6.4348072910368703247740996e-01
- 7.5720575866243100549013434e-01 -8.2216031649815751736198877e-02 -7.7437204320180710870324958e-02 6.4333773601063048985793102e-01
- 7.5732539880528948472715456e-01 -8.2239971125405250673701119e-02 -7.7429549947131373621722616e-02 6.4319475454071184383764148e-01
- 7.5744498456639341998908321e-01 -8.2263897879164493698311844e-02 -7.7421887326953195418433040e-02 6.4305178471385593397258162e-01
- 7.5756451595993767877956770e-01 -8.2287811923887871357052859e-02 -7.7414216465595764304907789e-02 6.4290882655022130176547535e-01
- 7.5768399299995026208165427e-01 -8.2311713272343281500020851e-02 -7.7406537369034564277647803e-02 6.4276588007015367232099834e-01
- 7.5780340999286943670654182e-01 -8.2335599142135645900353325e-02 -7.7398849767458671733422193e-02 6.4262295241592426453536291e-01
- 7.5792277136271046789062211e-01 -8.2359471713388365810004643e-02 -7.7391153882302443633989242e-02 6.4248003810992138085111947e-01
- 7.5804207842666027072908719e-01 -8.2383331636481871296240342e-02 -7.7383449782102514680204308e-02 6.4233713554712323912099237e-01
- 7.5816133119827744391017177e-01 -8.2407178924088914095946734e-02 -7.7375737472913222458892335e-02 6.4219424474838771033091689e-01
- 7.5828052969149484230371172e-01 -8.2431013588913998324514409e-02 -7.7368016960737584497564967e-02 6.4205136573412380229797236e-01
- 7.5839967392283014202547520e-01 -8.2454835643925514232499552e-02 -7.7360288251212161458880701e-02 6.4190849852168774258842632e-01
- 7.5851875734117601979278334e-01 -8.2478641907350047635105739e-02 -7.7352551040186678932286668e-02 6.4176565133878327173988509e-01
- 7.5863778608968046590632639e-01 -8.2502435381873823194709416e-02 -7.7344805625499196688465986e-02 6.4162281654860275903473621e-01
- 7.5875676062156371948219657e-01 -8.2526216294206394818999684e-02 -7.7337052034017417234679215e-02 6.4147999362249874533148386e-01
- 7.5887568095120194744396258e-01 -8.2549984657044120361923945e-02 -7.7329290271694356428966444e-02 6.4133718258030814052261803e-01
- 7.5899454709315394840274394e-01 -8.2573740483095070530339399e-02 -7.7321520344459201967701745e-02 6.4119438344164403353886428e-01
- 7.5911335864222784231003516e-01 -8.2597483581676234276613968e-02 -7.7313742238688074048802434e-02 6.4105159675172862510095229e-01
- 7.5923210945996921772405130e-01 -8.2621210988466073366076614e-02 -7.7305955674995638360336159e-02 6.4090883023792111217176171e-01
- 7.5935080613670880023136078e-01 -8.2644925906043192886940574e-02 -7.7298160966787723968884904e-02 6.4076607568805310499726602e-01
- 7.5946944868658516902826250e-01 -8.2668628346675224194406439e-02 -7.7290358120247371065403286e-02 6.4062333312221619863180422e-01
- 7.5958803712502076521673189e-01 -8.2692318323099880950088902e-02 -7.7282547141194549156217874e-02 6.4048060255895211678733858e-01
- 7.5970657146715558916127975e-01 -8.2715995848211529284377264e-02 -7.7274728035391052061164885e-02 6.4033788401711388971193628e-01
- 7.5982505044876924582553102e-01 -8.2739660319613148042883211e-02 -7.7266900750720221568990098e-02 6.4019517912047618768411894e-01
- 7.5994346965749060007766502e-01 -8.2763309620770289520841345e-02 -7.7259065091795101065663687e-02 6.4005249344619630225139417e-01
- 7.6006183481473255092453201e-01 -8.2786946517927312294560238e-02 -7.7251221326747540607549070e-02 6.3990981985575601242999255e-01
- 7.6018014593700955483512871e-01 -8.2810571023887016850473231e-02 -7.7243369461248212459736351e-02 6.3976715836635267287135775e-01
- 7.6029840303863949202423100e-01 -8.2834183151215726170768505e-02 -7.7235509501287311073802755e-02 6.3962450899777290036496424e-01
- 7.6041660613311090610721976e-01 -8.2857782912385477547267953e-02 -7.7227641452976614200309768e-02 6.3948187177077675524827782e-01
- 7.6053475310587148605634411e-01 -8.2881369299423815477645405e-02 -7.7219765226624006992928173e-02 6.3933924938141328819796172e-01
- 7.6065284125907484114037516e-01 -8.2904941031112663885060954e-02 -7.7211880708532742989547160e-02 6.3919664526229780232569055e-01
- 7.6077087545335064788787349e-01 -8.2928500443905123207244401e-02 -7.7203988122362968149481333e-02 6.3905405334296261354865010e-01
- 7.6088885570344910735940402e-01 -8.2952047550357579930313534e-02 -7.7196087474053098897996961e-02 6.3891147364263034535980523e-01
- 7.6100678202413096773426560e-01 -8.2975582363019786957814006e-02 -7.7188178769542176160811664e-02 6.3876890618050263803695543e-01
- 7.6112465442975119067625656e-01 -8.2999104894391440012668681e-02 -7.7180262014829831285211981e-02 6.3862635097625275459876093e-01
- 7.6124246994909317010069572e-01 -8.3022613735960246184042433e-02 -7.7172337085482600738117753e-02 6.3848381180967983539176203e-01
- 7.6136022760463140102160651e-01 -8.3046108431247947501141482e-02 -7.7164403944659912260028989e-02 6.3834128995398309314168728e-01
- 7.6147793139445518750818565e-01 -8.3069590892384789770908071e-02 -7.7156462773788209164038676e-02 6.3819878041283528702365402e-01
- 7.6159558133152971404200571e-01 -8.3093061131680370778873623e-02 -7.7148513579078606405836638e-02 6.3805628320751994753123881e-01
- 7.6171317743069921757381735e-01 -8.3116519161630195156043044e-02 -7.7140556366469922866535569e-02 6.3791379835707739953676310e-01
- 7.6183071970823690310936627e-01 -8.3139964994869058889648272e-02 -7.7132591141694045733245844e-02 6.3777132587883744729850832e-01
- 7.6194820434312637846829830e-01 -8.3163396828536781391072452e-02 -7.7124617746591517253307302e-02 6.3762887063217843497398007e-01
- 7.6206563206491195749947565e-01 -8.3186815018433057922209173e-02 -7.7116636219094203408275234e-02 6.3748643173862706845511639e-01
- 7.6218300601067667798815819e-01 -8.3210221058135330762794979e-02 -7.7108646700169578003247750e-02 6.3734400527819656812056337e-01
- 7.6230032619617194011851780e-01 -8.3233614960177490504911191e-02 -7.7100649195633488841572500e-02 6.3720159126879372113450017e-01
- 7.6241759263689601322511180e-01 -8.3256996737059454916085599e-02 -7.7092643711340141932097936e-02 6.3705918972861685922737252e-01
- 7.6253480534729345396982580e-01 -8.3280366401164832024228701e-02 -7.7084630253299729618632341e-02 6.3691680067710976231865061e-01
- 7.6265195966157450779832061e-01 -8.3303721761239846177460322e-02 -7.7076608630910523056734007e-02 6.3677443005121026065040724e-01
- 7.6276905801093020098591069e-01 -8.3327063973803114360627831e-02 -7.7068578953648936291642713e-02 6.3663207481927064357307700e-01
- 7.6288610267789691565809562e-01 -8.3350394120108028950255630e-02 -7.7060541323079087550063093e-02 6.3648973213394921533136994e-01
- 7.6300309367742946697887874e-01 -8.3373712212543651944862688e-02 -7.7052495745144139460691690e-02 6.3634740201403861004081364e-01
- 7.6312003102427539147356583e-01 -8.3397018263470554244598532e-02 -7.7044442225819437242151366e-02 6.3620508447856949363341528e-01
- 7.6323691473303434396058265e-01 -8.3420312285225187154402704e-02 -7.7036380771103168951796647e-02 6.3606277954673973162869061e-01
- 7.6335373929513594681850464e-01 -8.3443591703754593780217874e-02 -7.7028311159679896391594411e-02 6.3592049423461616264319218e-01
- 7.6347050883872913384919912e-01 -8.3466858464905244185949584e-02 -7.7020233569225410308334290e-02 6.3577822335502620632041726e-01
- 7.6358722479382434844552563e-01 -8.3490113243331942616265451e-02 -7.7012148063611021719943039e-02 6.3563596513484821315387308e-01
- 7.6370388717451742621733501e-01 -8.3513356051273746061269776e-02 -7.7004054648916533953872943e-02 6.3549371959383826879985691e-01
- 7.6382049599532253481015687e-01 -8.3536586901003920258013125e-02 -7.6995953331161826049822139e-02 6.3535148675124419881399263e-01
- 7.6393705127322897308062011e-01 -8.3559805805039605308692785e-02 -7.6987844116000792027421085e-02 6.3520926662333765388979145e-01
- 7.6405354665172842132392361e-01 -8.3583009811353720097670816e-02 -7.6979726754200408778139320e-02 6.3506706731544426691726812e-01
- 7.6416998795988200221529496e-01 -8.3606201644694441710292665e-02 -7.6971601486997179297766536e-02 6.3492488147218473226729429e-01
- 7.6428637577238189848571892e-01 -8.3629381578311998146624262e-02 -7.6963468343000038252021966e-02 6.3478270840198758317995953e-01
- 7.6440271010414784225162066e-01 -8.3652549624465791233696166e-02 -7.6955327328176462153841442e-02 6.3464054812356096579861742e-01
- 7.6451899097027342655508164e-01 -8.3675705795425742161697258e-02 -7.6947178448469433220680003e-02 6.3449840065539320210774576e-01
- 7.6463521809585199839887082e-01 -8.3698849969091132505738528e-02 -7.6939021698398071813507215e-02 6.3435626638463527005029619e-01
- 7.6475138515732876687280850e-01 -8.3721979224959580667686510e-02 -7.6930856835509417446239411e-02 6.3421415339075903894183739e-01
- 7.6486749880177462568298097e-01 -8.3745096651543948773621651e-02 -7.6922684128173712814202645e-02 6.3407205326371085529757465e-01
- 7.6498355904382409065078718e-01 -8.3768202261020954790815551e-02 -7.6914503582408713655560462e-02 6.3392996602248807835877642e-01
- 7.6509956589942273996740596e-01 -8.3791296065690690220151282e-02 -7.6906315204037026256322918e-02 6.3378789168450067048610208e-01
- 7.6521551938422582850307663e-01 -8.3814378077816345524730934e-02 -7.6898118998926179301633965e-02 6.3364583026749699001811678e-01
- 7.6533141837339546675877955e-01 -8.3837447785264404553906559e-02 -7.6889914929591046677259669e-02 6.3350378324169498434059733e-01
- 7.6544725825216908265957727e-01 -8.3860503070742414832849931e-02 -7.6881702824752234937122353e-02 6.3336175652602044738870291e-01
- 7.6556304480693171399252606e-01 -8.3883546609164291729676677e-02 -7.6873482913912993819138819e-02 6.3321974278988868434225878e-01
- 7.6567877805470463403736403e-01 -8.3906578412883389694876257e-02 -7.6865255202741233908625418e-02 6.3307774204935907125246786e-01
- 7.6579445801030809892750995e-01 -8.3929598494023524568596883e-02 -7.6857019697236114708083221e-02 6.3293575432312998430006701e-01
- 7.6591008468779964157846507e-01 -8.3952606864624537696961681e-02 -7.6848776403512342181301165e-02 6.3279377963080873925605374e-01
- 7.6602565612106954251459001e-01 -8.3975602628738210686520915e-02 -7.6840525252820424118027631e-02 6.3265182051923007922056286e-01
- 7.6614116939235221703796697e-01 -8.3998584460273362228832639e-02 -7.6832266142756303062277823e-02 6.3250988075298741897256605e-01
- 7.6625662943559025297446397e-01 -8.4021554626848710123354635e-02 -7.6823999264746617443577748e-02 6.3236795407505130839354024e-01
- 7.6637203626604966100188676e-01 -8.4044513140578369636557454e-02 -7.6815724624730186143040100e-02 6.3222604050352881888130696e-01
- 7.6648738989900311313618886e-01 -8.4067460013568767740466114e-02 -7.6807442228645037007872531e-02 6.3208414005650725986384941e-01
- 7.6660269034973105295449614e-01 -8.4090395257918726379386953e-02 -7.6799152082429128496343651e-02 6.3194225275205451186621985e-01
- 7.6671793480761230021869324e-01 -8.4113317598841316757862785e-02 -7.6790854088594262538691737e-02 6.3180038222148227067265225e-01
- 7.6683312205083342671940727e-01 -8.4136226490612073258823500e-02 -7.6782548209697445984467379e-02 6.3165853006835703808974358e-01
- 7.6694825616227835229921084e-01 -8.4159123799121257625266423e-02 -7.6774234600908888848103118e-02 6.3151669111152508584439147e-01
- 7.6706333715573915554841733e-01 -8.4182009536272903171827409e-02 -7.6765913268396337998389356e-02 6.3137486537080722559522883e-01
- 7.6717836504659020491203592e-01 -8.4204883714120576376771510e-02 -7.6757584218089064398427013e-02 6.3123305286410313907907721e-01
- 7.6729333985155079300710668e-01 -8.4227746344843507086963541e-02 -7.6749247455713376364627720e-02 6.3109125360767204249157203e-01
- 7.6740825791714006864907560e-01 -8.4250595780240133958471915e-02 -7.6740902856841500256912525e-02 6.3094947231927500652659546e-01
- 7.6752311971650843958059340e-01 -8.4273432244208273944607868e-02 -7.6732550445052671861390081e-02 6.3080770843468347841564992e-01
- 7.6763792847745793146430060e-01 -8.4296257205895647190985187e-02 -7.6724190341907583245983915e-02 6.3066595785748080782440184e-01
- 7.6775268421624176529149963e-01 -8.4319070677388224810400175e-02 -7.6715822553207219103299508e-02 6.3052422060444468510098659e-01
- 7.6786738694882938904839875e-01 -8.4341872670735520967078003e-02 -7.6707447084795835068327108e-02 6.3038249669268553443401970e-01
- 7.6798203669017450767597666e-01 -8.4364663197878692058040428e-02 -7.6699063942673173510655715e-02 6.3024078614053391511617974e-01
- 7.6809662895169983354293208e-01 -8.4387440243187838984084692e-02 -7.6690672976343784994490704e-02 6.3009909474674941076699497e-01
- 7.6821116588951510184557492e-01 -8.4410204788432793843178104e-02 -7.6682274268136924044725333e-02 6.2995741978590380494296141e-01
- 7.6832564988581364406883267e-01 -8.4432957912302819547534227e-02 -7.6673867906608100808441009e-02 6.2981575823883739762010237e-01
- 7.6844008095603988373056836e-01 -8.4455699626740418639592178e-02 -7.6665453897686114403953184e-02 6.2967411012324059349509753e-01
- 7.6855445911543163184376226e-01 -8.4478429943660407475114482e-02 -7.6657032247332279606411021e-02 6.2953247545704249521492102e-01
- 7.6866878437909769150593320e-01 -8.4501148874955869794156627e-02 -7.6648602961528047861072821e-02 6.2939085425832108633414919e-01
- 7.6878305142555070084142699e-01 -8.4523854042954579823820893e-02 -7.6640165865427017921618358e-02 6.2924925340811033169785560e-01
- 7.6889726408880276764534756e-01 -8.4546547176330782980002709e-02 -7.6631721096780930357894590e-02 6.2910766801801076830713555e-01
- 7.6901142390765131473528982e-01 -8.4569228968830997827943463e-02 -7.6623268712845915562326127e-02 6.2896609614740206506411369e-01
- 7.6912553089666968464399588e-01 -8.4591899432249345602841117e-02 -7.6614808719689411753428487e-02 6.2882453781496616684876244e-01
- 7.6923958507088907587956328e-01 -8.4614558578416654288645304e-02 -7.6606341123308566154470611e-02 6.2868299303881736150856341e-01
- 7.6935358644771323355371351e-01 -8.4637206419389848788270569e-02 -7.6597865929337136114973816e-02 6.2854146183416914617225757e-01
- 7.6946752886797398218732269e-01 -8.4659840220111554076609650e-02 -7.6589382941367273316402020e-02 6.2839995217407484950911112e-01
- 7.6958141784699052312390677e-01 -8.4682462446112841125689386e-02 -7.6580892347938980813104592e-02 6.2825845699510662889508694e-01
- 7.6969525407762451330029307e-01 -8.4705073411202938538089313e-02 -7.6572394177450861518785530e-02 6.2811697544224753819719353e-01
- 7.6980903757527718855868670e-01 -8.4727673127194355617852750e-02 -7.6563888435847118896226959e-02 6.2797550753310438231835633e-01
- 7.6992276835551609615038160e-01 -8.4750261605908316919766321e-02 -7.6555375129046629445461747e-02 6.2783405328506969311774810e-01
- 7.7003644627112943776836573e-01 -8.4772838787042462116438912e-02 -7.6546854257742144578280374e-02 6.2769261292559452858341729e-01
- 7.7015006482443038038354644e-01 -8.4795401800648428913831367e-02 -7.6538325620040356667139747e-02 6.2755119488028465735141026e-01
- 7.7026363071063841392316363e-01 -8.4817953621189323687445949e-02 -7.6529789437482079184071893e-02 6.2740979054891532484816707e-01
- 7.7037714394486378477466815e-01 -8.4840494260395554748654945e-02 -7.6521245716060046215822865e-02 6.2726839994939076472491024e-01
- 7.7049060454351503413050750e-01 -8.4863023730114631182352980e-02 -7.6512694461565361470078983e-02 6.2712702309801826583424145e-01
- 7.7060401252267907157289528e-01 -8.4885542042155592845631418e-02 -7.6504135679839158079573735e-02 6.2698566001148448023627680e-01
- 7.7071736689498770989104059e-01 -8.4908048767225310915485181e-02 -7.6495569345943995043235475e-02 6.2684431200373802450798166e-01
- 7.7083066285278700746630420e-01 -8.4930541795611394495502111e-02 -7.6486995316338818318158133e-02 6.2670298533174007005186468e-01
- 7.7094390623961417396969864e-01 -8.4953023710119188183220729e-02 -7.6478413780134438249014295e-02 6.2656167247940386388904699e-01
- 7.7105709694527668762731309e-01 -8.4975494466593137765642041e-02 -7.6469824739047079220632952e-02 6.2642037362689573232188422e-01
- 7.7117023540755980093308608e-01 -8.4997954262244171386164737e-02 -7.6461228212001020043686594e-02 6.2627908824500488904618578e-01
- 7.7128332154043599544479548e-01 -8.5020403064142865967589557e-02 -7.6452624201876567822111497e-02 6.2613781648213051589380029e-01
- 7.7139635183011445729306388e-01 -8.5042839337454032011542893e-02 -7.6444012607504441270123152e-02 6.2599656292752781094890224e-01
- 7.7150932588710185999758551e-01 -8.5065262922211226648272486e-02 -7.6435393424594086364542989e-02 6.2585532812722199924593269e-01
- 7.7162224766630649330778624e-01 -8.5087675556925798647789350e-02 -7.6426766778687760250932115e-02 6.2571410699653640108408581e-01
- 7.7173511718328857700299750e-01 -8.5110077252886828791389462e-02 -7.6418132675577926660182015e-02 6.2557289955246730972504565e-01
- 7.7184793445361643549063047e-01 -8.5132468021376805911160091e-02 -7.6409491121055828077857086e-02 6.2543170581199081237144810e-01
- 7.7196069949286394429321945e-01 -8.5154847873672306901582374e-02 -7.6400842120912138000221603e-02 6.2529052579206367834530056e-01
- 7.7207340516562794618948828e-01 -8.5177213707738161363458573e-02 -7.6392185471669427077046066e-02 6.2514936879101190569940627e-01
- 7.7218605833583886521864770e-01 -8.5199568524085070309048717e-02 -7.6383521382204055960585265e-02 6.2500822594292704259544280e-01
- 7.7229865932577757003940633e-01 -8.5221912467632443544118814e-02 -7.6374849867333602371211043e-02 6.2486709686677244235397666e-01
- 7.7241120815076735883764059e-01 -8.5244245549587094323840120e-02 -7.6366170932888943756466915e-02 6.2472598157976622079701201e-01
- 7.7252370482637311432938532e-01 -8.5266567781171934137240953e-02 -7.6357484584663751214783645e-02 6.2458488009881940605794171e-01
- 7.7263614605551644842762471e-01 -8.5288877737427978842355003e-02 -7.6348790733708635225518435e-02 6.2444379674736860685868578e-01
- 7.7274853103510532381648090e-01 -8.5311175081423468169461444e-02 -7.6340089365001195798043909e-02 6.2430273261059587852628283e-01
- 7.7286086391758934688311911e-01 -8.5333461618388284364300489e-02 -7.6331380602501552878891289e-02 6.2416168232926361181256425e-01
- 7.7297314471742606389881303e-01 -8.5355737359394515118005131e-02 -7.6322664452178667904291842e-02 6.2402064592159744993438153e-01
- 7.7308537344999839202586145e-01 -8.5378002315595127869052305e-02 -7.6313940919855466349375206e-02 6.2387962340467240096586465e-01
- 7.7319755013272939425661434e-01 -8.5400256498332577370646845e-02 -7.6305210011033200445673685e-02 6.2373861479303693844400414e-01
- 7.7330966785435661936531915e-01 -8.5422496935433217535305062e-02 -7.6296471541232632751494691e-02 6.2359762912527039180332622e-01
- 7.7342173304919170639948334e-01 -8.5444726410096760726986531e-02 -7.6287725695228209010778642e-02 6.2345665806384498175418685e-01
- 7.7353374624426951555733467e-01 -8.5466945154190579470032674e-02 -7.6278972493062022208754058e-02 6.2331570095956945198878429e-01
- 7.7364570745512462046633573e-01 -8.5489153178831184254349296e-02 -7.6270211940533932937213990e-02 6.2317475782927256311438668e-01
- 7.7375761669746712101414232e-01 -8.5511350495143731431646472e-02 -7.6261444043415588245338199e-02 6.2303382868955492490670167e-01
- 7.7386947088800051020029969e-01 -8.5533535785287537200893837e-02 -7.6252668724505451303130599e-02 6.2289291759979448226403065e-01
- 7.7398126881767215223817402e-01 -8.5555708540618724544657425e-02 -7.6243885958712093176004032e-02 6.2275202617848923747345680e-01
- 7.7409301483014691935835572e-01 -8.5577870630437299914738958e-02 -7.6235095868472491087430853e-02 6.2261114879791479292947542e-01
- 7.7420470894117288107594277e-01 -8.5600022065827868766874076e-02 -7.6226298459552574438014005e-02 6.2247028547457528002695426e-01
- 7.7431635116650254779813167e-01 -8.5622162857867903373865204e-02 -7.6217493737717495472239193e-02 6.2232943622495928703841628e-01
- 7.7442794152187832690259484e-01 -8.5644293017627562414340048e-02 -7.6208681708734155035855906e-02 6.2218860106555651245940908e-01
- 7.7453947332421957394643641e-01 -8.5666409700504195234849192e-02 -7.6199862205546572968550834e-02 6.2204778876829236455847649e-01
- 7.7465095257791871663499705e-01 -8.5688515477277168996828038e-02 -7.6191035390739389465686315e-02 6.2190699152808270877557106e-01
- 7.7476238001255515186471712e-01 -8.5710610664310349360306418e-02 -7.6182201288994846888336099e-02 6.2176620842853436155195368e-01
- 7.7487375564444260778174112e-01 -8.5732695272683623333165315e-02 -7.6173359905988266560505906e-02 6.2162543948537929416886527e-01
- 7.7498507949032857666793461e-01 -8.5754769313509782158178041e-02 -7.6164511247325317189194038e-02 6.2148468471380036159956717e-01
- 7.7509634867913157485475040e-01 -8.5776831573477541059702389e-02 -7.6155655246866113539105925e-02 6.2134394790921876339240271e-01
- 7.7520756159830372933328135e-01 -8.5798881376910912655020525e-02 -7.6146791870920965683566806e-02 6.2120323122392873127495250e-01
- 7.7531872278128599607072147e-01 -8.5820920655040489055664921e-02 -7.6137921239701381037612293e-02 6.2106252876180967348318518e-01
- 7.7542983224479444803733941e-01 -8.5842949418931224769835353e-02 -7.6129043358817274911309880e-02 6.2092184053803467502774538e-01
- 7.7554089000522807850757090e-01 -8.5864967679611797768401971e-02 -7.6120158233929258173589005e-02 6.2078116656815540697067490e-01
- 7.7565189607799689408551558e-01 -8.5886975448009758582479378e-02 -7.6111265870855746018541765e-02 6.2064050686894223218814659e-01
- 7.7576284400593187307038079e-01 -8.5908970004234530559728000e-02 -7.6102366119377262698719733e-02 6.2049986994653927308007724e-01
- 7.7587373936376291538863370e-01 -8.5930953711520000060097857e-02 -7.6093459121727380356503545e-02 6.2035924853169577275480151e-01
- 7.7598458308575690711705874e-01 -8.5952926968698412091285377e-02 -7.6084544905984360929629418e-02 6.2021864143637861488400631e-01
- 7.7609537518779525555601140e-01 -8.5974889786679747905040472e-02 -7.6075623477916742842808162e-02 6.2007804867672089432772964e-01
- 7.7620611568576580729938996e-01 -8.5996842176384299949454260e-02 -7.6066694843267182446489016e-02 6.1993747026883816442222042e-01
- 7.7631680192420882136161708e-01 -8.6018783026991382789638863e-02 -7.6057758945404438377657641e-02 6.1979690973812273657728156e-01
- 7.7642743188375151763835902e-01 -8.6040711499856731281354882e-02 -7.6048815744444303588167600e-02 6.1965636977833793430647802e-01
- 7.7653801029063074246039378e-01 -8.6062629586455594021821014e-02 -7.6039865356955380071291017e-02 6.1951584421952377024211955e-01
- 7.7664853716187631782474909e-01 -8.6084537297771587804895432e-02 -7.6030907788492682608527673e-02 6.1937533307632153256605534e-01
- 7.7675901251332024610718463e-01 -8.6106434644669480049650190e-02 -7.6021943044804599076691431e-02 6.1923483636485432413110175e-01
- 7.7686943635928973339588310e-01 -8.6128321637865726256855226e-02 -7.6012971131883183550925764e-02 6.1909435410311053349374788e-01
- 7.7697980246948239457793761e-01 -8.6150195679665336756514193e-02 -7.6003991915236032705927016e-02 6.1895389452833127208464248e-01
- 7.7709011599046495799569811e-01 -8.6172058930678308019679434e-02 -7.5995005518394206922572209e-02 6.1881345090894135374526286e-01
- 7.7720037805994557356115138e-01 -8.6193911869963946159600710e-02 -7.5986011972013697834960055e-02 6.1867302178502947551663738e-01
- 7.7731058869329727745167702e-01 -8.6215754508292802293922819e-02 -7.5977011281915682316956406e-02 6.1853260717322999795442229e-01
- 7.7742074790551429774865255e-01 -8.6237586856392531298176607e-02 -7.5968003453982566042235192e-02 6.1839220709064002257093762e-01
- 7.7753085325493842550059753e-01 -8.6259407903302512399257296e-02 -7.5958988440565908262236405e-02 6.1825182479302509541696509e-01
- 7.7764090232019977833033408e-01 -8.6281216652174294590160741e-02 -7.5949966196682594521405463e-02 6.1811146351315082725363936e-01
- 7.7775090001752711366123094e-01 -8.6303015152524892306118431e-02 -7.5940936834776123776080681e-02 6.1797111680900307373320857e-01
- 7.7786084636292440741556220e-01 -8.6324803415132142503374268e-02 -7.5931900360562701313149603e-02 6.1783078469636631968597840e-01
- 7.7797074137240118663072508e-01 -8.6346581450767345700114674e-02 -7.5922856779757449952050763e-02 6.1769046719100562103932361e-01
- 7.7808058506197264048154238e-01 -8.6368349270195099443014897e-02 -7.5913806098074437800349301e-02 6.1755016430866926935294714e-01
- 7.7819037142167424292438227e-01 -8.6390104394739083981669125e-02 -7.5904748196852403485657135e-02 6.1740988402392393830098172e-01
- 7.7830010517806846870314530e-01 -8.6411848787852532649544912e-02 -7.5895683181483791779342596e-02 6.1726962013636221815460203e-01
- 7.7840978766701252045123738e-01 -8.6433583006165937145937050e-02 -7.5886611085159372258601707e-02 6.1712937091903374842161156e-01
- 7.7851941890424902759093584e-01 -8.6455307060374894656540334e-02 -7.5877531913635540283813441e-02 6.1698913638797714398265271e-01
- 7.7862899890587711215772515e-01 -8.6477020961200926074674555e-02 -7.5868445672609530205932060e-02 6.1684891655877160943077797e-01
- 7.7873852544127553088060267e-01 -8.6498723794994070157571286e-02 -7.5859352322850390204500570e-02 6.1670871441916830235641100e-01
- 7.7884799568821416748676256e-01 -8.6520414411048601754927745e-02 -7.5850251815966163171367498e-02 6.1656853374304354531432182e-01
- 7.7895741475344060233965138e-01 -8.6542094915067480087600416e-02 -7.5841144259255477422243530e-02 6.1642836781396992407167090e-01
- 7.7906678265166962038534848e-01 -8.6563765317599988824426305e-02 -7.5832029658640276448267059e-02 6.1628821664921296097361392e-01
- 7.7917609939891785408860869e-01 -8.6585425629308765405056647e-02 -7.5822908019828397230277517e-02 6.1614808026439227273129973e-01
- 7.7928536501278855563867864e-01 -8.6607075860995599847491633e-02 -7.5813779348266066571149224e-02 6.1600795867312052589426230e-01
- 7.7939457370268439007077177e-01 -8.6628713650386074407450110e-02 -7.5804643540331187456793316e-02 6.1586785958662737527902209e-01
- 7.7950372977751447578498301e-01 -8.6650340768623504428269655e-02 -7.5795500684775127253622884e-02 6.1572777733635619679120055e-01
- 7.7961283476991583007986719e-01 -8.6671957847685290876604824e-02 -7.5786350816615555281430261e-02 6.1558770992829792145784040e-01
- 7.7972188869637015784519463e-01 -8.6693564898225466963666008e-02 -7.5777193941480108785313519e-02 6.1544765737742312960989466e-01
- 7.7983089157384322120947218e-01 -8.6715161930936174305983855e-02 -7.5768030064915919963297597e-02 6.1530761969808123179603854e-01
- 7.7993984137937955036790072e-01 -8.6736748126870322206372066e-02 -7.5758859155716798405855172e-02 6.1516759961242162280115053e-01
- 7.8004873489765580441002157e-01 -8.6758322186353070692987899e-02 -7.5749681162675733259170840e-02 6.1502760142917878294355205e-01
- 7.8015757741933533520040100e-01 -8.6779886268791961434487803e-02 -7.5740496188103453856221847e-02 6.1488761816412362826156368e-01
- 7.8026636896057965930850742e-01 -8.6801440384761174851036003e-02 -7.5731304237677016244489892e-02 6.1474764983256668937627865e-01
- 7.8037510953755262477216093e-01 -8.6822984544828424313678283e-02 -7.5722105317072005425949044e-02 6.1460769644980162151881586e-01
- 7.8048379916642496301193432e-01 -8.6844518759554817366463908e-02 -7.5712899431962882301760942e-02 6.1446775803110320612887563e-01
- 7.8059243228019747906643033e-01 -8.6866040780962910927698317e-02 -7.5703686492107624683711720e-02 6.1432784201713508398512431e-01
- 7.8070101276679415569503817e-01 -8.6887552192144057450207129e-02 -7.5694466572059027065222381e-02 6.1418794327903492025200194e-01
- 7.8080954235784050254665090e-01 -8.6909053698556892886273317e-02 -7.5685239707360005279035420e-02 6.1404805955120533855762233e-01
- 7.8091802107033758684195845e-01 -8.6930545310794735125448085e-02 -7.5676005903543550057399614e-02 6.1390819084781922398974530e-01
- 7.8102644892089856387684677e-01 -8.6952027039407991937380871e-02 -7.5666765166205601778059986e-02 6.1376833718352707958132441e-01
- 7.8113482409357548608141997e-01 -8.6973498157832299093605855e-02 -7.5657517471329024938420105e-02 6.1362850101389843082699826e-01
- 7.8124314298264085909551113e-01 -8.6994957221767824084857068e-02 -7.5648262766306165194585276e-02 6.1348868718259830234984520e-01
- 7.8135141106114747167055157e-01 -8.7016406442353796957256407e-02 -7.5639001147796619539676044e-02 6.1334888843787505052773668e-01
- 7.8145962834676152564128415e-01 -8.7037845830192792084822884e-02 -7.5629732621217013455172662e-02 6.1320910479299317596968422e-01
- 7.8156779485571470367233360e-01 -8.7059275395750493342639231e-02 -7.5620457192222628739486368e-02 6.1306933626302151374432015e-01
- 7.8167591060278696080132477e-01 -8.7080695149353751216558805e-02 -7.5611174866711428066423650e-02 6.1292958286485454966197040e-01
- 7.8178397024266921278012887e-01 -8.7102102954689286651301927e-02 -7.5601885567167514956565810e-02 6.1278985176907818654967741e-01
- 7.8189197724690640001199426e-01 -8.7123500211709586915631576e-02 -7.5592589355079620183630595e-02 6.1265013838436199744563737e-01
- 7.8199993354369201625786445e-01 -8.7144887697100145707018726e-02 -7.5583286265980154094989985e-02 6.1251044017482381143224757e-01
- 7.8210783914929737914434327e-01 -8.7166265421279837122270351e-02 -7.5573976305513018703052808e-02 6.1237075715541633424976453e-01
- 7.8221569408000013456927491e-01 -8.7187633394661415153770179e-02 -7.5564659479320964163839847e-02 6.1223108934107239864630401e-01
-
-
-SCAN_DURATION 1.7495930389398341731066466e+02
-
-NUMBER_OF_INT_TIMES 18
-INT_TIME
- 1 -8.0596400558948516845703125e+01 5.8666820526123049373001805e-03
- 1089 -7.4213333249092102050781250e+01 5.9733414649963375089858353e-03
- 2625 -6.5038171544671058654785156e+01 6.0800008773803709480332280e-03
- 4033 -5.6477426454424858093261719e+01 6.1866602897644043870806208e-03
- 5505 -4.7370562955737113952636719e+01 6.2933197021484378261280135e-03
- 6849 -3.8912231102585792541503906e+01 6.3999791145324703978136682e-03
- 8193 -3.0310553118586540222167969e+01 6.5066385269165038368610610e-03
- 9473 -2.1981951236724853515625000e+01 6.6132979393005372759084537e-03
- 10753 -1.3516822442412376403808594e+01 6.7199573516845707149558464e-03
- 11969 -5.3452449738979339599609375e+00 6.8266167640686032866415012e-03
- 13121 2.5191230624914169311523438e+00 6.9332761764526367256888939e-03
- 14273 1.0506360813975334167480469e+01 7.0399351119995118644667720e-03
- 15425 1.8616478100419044494628906e+01 7.1465945243835453035141647e-03
- 16513 2.6392073541879653930664062e+01 7.2532539367675778751998195e-03
- 17537 3.3819510102272033691406250e+01 7.3599133491516113142472122e-03
- 18561 4.1356174916028976440429688e+01 7.4665727615356447532946049e-03
- 19585 4.9002048566937446594238281e+01 7.5732321739196773249802597e-03
- 20545 5.6272464632987976074218750e+01 7.6798915863037107640276524e-03
-
-ALONG_SCAN_PIXEL_SIZE  7.0000000000000001457167720e-03
-CROSS_SCAN_PIXEL_SIZE  7.0000000000000001457167720e-03
-
-CENTER_GP 1.3736139372242386902378541e-01 1.2955715712678188555884162e+00 0.0000000000000000000000000e+00
-SENSOR_POSITION 1.4211684636850366314497762e-01 1.3043220161892932207337026e+00 7.7348678614441887475550175e+05
-MOUNTING_ANGLES 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-
-TOTAL_LINES 25504
-TOTAL_SAMPLES 5176
-
-
-
-
-IKCODE  -41215
-ISIS_Z_DIRECTION  1.0000000000000000000000000e+00
-OPTICAL_DIST_COEF 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-ITRANSS 4.8375528262434999149377290e+00 -1.4285714259965999417545390e+02 -8.5770466046479997002105478e-03
-ITRANSL 7.8571428429815004523817379e-01 -8.5770466046479997002105478e-03 1.4285714259965999417545390e+02
-DETECTOR_SAMPLE_ORIGIN 2.5925000000000000000000000e+03
-DETECTOR_LINE_ORIGIN 0.0000000000000000000000000e+00
-DETECTOR_LINE_OFFSET  0.0000000000000000000000000e+00
-DETECTOR_SAMPLE_SUMMING  1.0000000000000000000000000e+00
-STARTING_SAMPLE 1.0000000000000000000000000e+00
-STARTING_LINE 1.0000000000000000000000000e+00
-STARTING_EPHEMERIS_TIME 1.3331190877716206014156342e+08
-CENTER_EPHEMERIS_TIME 1.3331198937649191915988922e+08
-
-REFERENCE_HEIGHT 30
-MIN_VALID_HT -8000
-MAX_VALID_HT 8000
-IMAGE_ID UNKNOWN
-SENSOR_ID USGS_LINE_SCANNER
-PLATFORM_ID UNKNOWN
-TRAJ_ID UNKNOWN
-COLL_ID UNKNOWN
-REF_DATE_TIME UNKNOWN
diff --git a/tests/h0232_0000_nd2_state.json b/tests/h0232_0000_nd2_state.json
deleted file mode 100644
index 55626a4389b9c01d0675279222abcbd9a1c847ce..0000000000000000000000000000000000000000
--- a/tests/h0232_0000_nd2_state.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-	"STA_ABERR_FLAG": 0,
-	"STA_ATMREF_FLAG": 0,
-	"STA_CENTER_EPHEMERIS_TIME": 133311989.376492,
-	"STA_COLLECTION_IDENTIFIER": "UNKNOWN",
-	"STA_COVARIANCE": [1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1],
-	"STA_DETECTOR_LINE_OFFSET": 0.0,
-	"STA_DETECTOR_LINE_ORIGIN": 0.0,
-	"STA_DETECTOR_SAMPLE_ORIGIN": 2592.5,
-	"STA_DETECTOR_SAMPLE_SUMMING": 1,
-	"STA_DT_EPHEM": 6.99837215575934,
-	"STA_DT_QUAT": 0.415580294284996,
-	"STA_EPHEM_PTS": [1043755.38443291, 3856356.71071648, -24380.8634452259, 1046010.03998721, 3863398.43917721, 3324.12261968102, 1048237.51788873, 3870311.8505785, 31028.3933185744, 1050437.81968658, 3877097.51432696, 58731.1501924894, 1052610.94801611, 3883755.9996375, 86431.5947825544, 1054756.9065984, 3890287.87553169, 114128.92862987, 1056875.70024006, 3896693.71083653, 141822.353275532, 1058967.33483284, 3902974.07418315, 169511.070260646, 1061031.81735332, 3909129.53400542, 197194.281126311, 1063069.15586264, 3915160.65853867, 224871.187413628, 1065079.35950612, 3921068.01581835, 252540.990663699, 1067062.43851295, 3926852.17367868, 280202.892417623, 1069018.40419589, 3932513.69975139, 307856.094216502, 1070947.26895091, 3938053.1614643, 335499.797601436, 1072849.04630523, 3943471.1262248, 363133.204429563, 1074723.75198725, 3948768.16791346, 390755.529689646, 1076571.40381228, 3953944.86856905, 418366.005933715, 1078392.02075052, 3959001.81068092, 445963.867239248, 1080185.62386279, 3963939.58187508, 473548.359623945, 1081952.23635872, 3968758.77503286, 501118.741781408, 1083691.88266749, 3973459.98668629, 528674.281949868, 1085404.58883439, 3978043.81686807, 556214.257831687, 1087090.38259462, 3982510.86943462, 583737.957876209, 1088749.29332749, 3986861.75161779, 611244.680609461, 1090381.35230918, 3991097.07359593, 638733.73388773, 1091986.59144499, 3995217.44914341, 666204.43692945, 1093565.04461023, 3999223.49462237, 693656.118241374, 1095116.74701605, 4003115.82903162, 721088.115943569, 1096641.73533796, 4006895.07423462, 748499.779162956, 1098140.04755411, 4010561.85419174, 775890.465903236, 1099611.7229765, 4014116.79524833, 803259.544401419, 1101056.80198363, 4017560.52580028, 830606.392833594, 1102475.32621132, 4020893.67622454, 857930.398940915, 1103867.33868596, 4024116.87860043, 885230.960228203, 1105232.88373548, 4027230.76657328, 912507.483630713, 1106572.00638175, 4030235.97538795, 939759.385733784, 1107884.75277081, 4033133.1415846, 966986.092644342, 1109171.16936181, 4035922.90300236, 994187.035614241, 1110431.30350533, 4038605.89744479, 1021361.6464132, 1111665.20377699, 4041182.76246292, 1048509.35681087, 1112872.91997724, 4043654.1353542, 1075629.59857703, 1114054.50313076, 4046020.65316019, 1102721.80348136, 1115210.00548645, 4048282.9526663, 1129785.40329376, 1116339.4805157, 4050441.670397, 1156819.82978289, 1117442.98291538, 4052497.44262183, 1183824.51472045],
-	"STA_EPHEM_RATES": [324.110316173309, 1015.40352971065, 3958.76982559486, 320.226858193642, 997.027562369714, 3958.72465271807, 316.343543957178, 978.732971386674, 3958.56538775313, 312.460528680048, 960.519729429673, 3958.29203069643, 308.577967539782, 942.387808989859, 3957.90458155265, 304.696015661828, 924.337182353509, 3957.40304031945, 300.814828128658, 906.36782162415, 3956.78740699716, 296.934559977489, 888.479698715044, 3956.05768158601, 293.055366199029, 870.672785348553, 3955.21386408575, 289.177401738088, 852.947053058636, 3954.25595449649, 285.300821493419, 835.30247318945, 3953.18395281818, 281.42578031736, 817.739016895616, 3951.99785905079, 277.552433015593, 800.256655142491, 3950.69767319434, 273.680937801251, 782.855371902307, 3949.28341782815, 269.811532759635, 765.53562819149, 3947.75605372296, 265.944524255259, 748.298469353922, 3946.11777388105, 262.080143898462, 731.144510444684, 3944.36994209917, 258.218623564837, 714.074150643928, 3942.51352043469, 254.360266142079, 697.088132410323, 3940.55026759116, 250.505312282594, 680.187092035248, 3938.4817711185, 246.653964581421, 663.371540449293, 3936.30938910115, 242.80645923781, 646.642000945869, 3934.03456552577, 238.963034450295, 629.998987868925, 3931.65878814309, 235.123943205145, 613.442952890579, 3929.1834434857, 231.289365972909, 596.974363441768, 3926.61000992635, 227.45948844929, 580.593661323623, 3923.93996284158, 223.63454681975, 564.301219799111, 3921.17465266208, 219.814741145955, 548.097431910806, 3918.31555259947, 216.000269117592, 531.982652136954, 3915.36408324378, 212.191319098142, 515.957200687104, 3912.32160991883, 208.388062581295, 500.021394458948, 3909.18957384461, 204.590665592521, 484.175521491861, 3905.96936849837, 200.799317310997, 468.419844946467, 3902.66237482493, 197.014210075232, 452.754598333127, 3899.26996415044, 193.235486452794, 437.180007816719, 3895.79349968597, 189.463276338674, 421.696280217843, 3892.23435115522, 185.697682419332, 406.303600882757, 3888.59356641001, 181.938790753304, 391.002060077511, 3884.87155002985, 178.186752552259, 375.791637219248, 3881.06833900823, 174.441742848786, 360.672296146879, 3877.18393334996, 170.703936614943, 345.644000461375, 3873.21833305718, 166.97350878105, 330.706713581025, 3869.17153813862, 163.250634153382, 315.860398562049, 3865.04354852128, 159.535487627044, 301.105018547866, 3860.83436433243, 155.82824383601, 286.440535996015, 3856.54398542536],
-	"STA_FLYING_HEIGHT": 1000,
-	"STA_FOCAL": 175.01,
-	"STA_GSD": 1,
-	"STA_HALF_SWATH": 1000,
-	"STA_HALF_TIME": 10,
-	"STA_IK_CODE": -41215,
-	"STA_IMAGE_FLIP_FLAG": 0,
-	"STA_IMAGE_IDENTIFIER": "UNKNOWN",
-	"STA_INT_TIMES": [0.0058666820526123, 0.00597334146499634, 0.00608000087738037, 0.0061866602897644, 0.00629331970214844, 0.00639997911453247, 0.0065066385269165, 0.00661329793930054, 0.00671995735168457, 0.0068266167640686, 0.00693327617645264, 0.00703993511199951, 0.00714659452438355, 0.00725325393676758, 0.00735991334915161, 0.00746657276153564, 0.00757323217391968, 0.00767989158630371],
-	"STA_INT_TIME_LINES": [1, 1089, 2625, 4033, 5505, 6849, 8193, 9473, 10753, 11969, 13121, 14273, 15425, 16513, 17537, 18561, 19585, 20545],
-	"STA_INT_TIME_START_TIMES": [-80.5964005589485, -74.2133332490921, -65.0381715446711, -56.4774264544249, -47.3705629557371, -38.9122311025858, -30.3105531185865, -21.9819512367249, -13.5168224424124, -5.34524497389793, 2.51912306249142, 10.5063608139753, 18.616478100419, 26.3920735418797, 33.819510102272, 41.356174916029, 49.0020485669374, 56.272464632988],
-	"STA_ISIS_Z_DIRECTION": 1,
-	"STA_I_TRANS_L": [0.78571428429815, -0.008577046604648, 142.85714259966],
-	"STA_I_TRANS_S": [4.8375528262435, -142.85714259966, -0.008577046604648],
-	"STA_MAX_ELEVATION": 8000,
-	"STA_MIN_ELEVATION": -8000,
-	"STA_MOUNTING_MATRIX": [1, 0.0, 0.0, 0.0, 1, 0.0, -0.0, 0.0, 1],
-	"STA_NUM_EPHEM": 45,
-	"STA_NUM_QUATERNIONS": 441,
-	"STA_OFFSET_LINES": 0.0,
-	"STA_OFFSET_SAMPLES": 0.0,
-	"STA_OPTICAL_DIST_COEF": [0.0, 0.0, 0.0],
-	"STA_PARAMETER_TYPE": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
-	"STA_PARAMETER_VALS": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 175.01, 0.0],
-	"STA_PLATFORM_FLAG": 1,
-	"STA_PLATFORM_IDENTIFIER": "UNKNOWN",
-	"STA_QUATERNIONS": [0.729518465386388, -0.0766036750753225, -0.0789085097017699, 0.675061576985307, 0.729649901009118, -0.0766304694700322, -0.0789027766912104, 0.674917139311637, 0.729781307833162, -0.0766572647944014, -0.0788970363966624, 0.67477267589862, 0.729912685853449, -0.0766840610465531, -0.078891288817588, 0.674628186752016, 0.730044035064908, -0.07671085822461, -0.07888553395345, 0.674483671877586, 0.730175355462469, -0.0767376563266948, -0.0788797718037116, 0.674339131281091, 0.730306647041065, -0.0767644553509298, -0.0788740023678361, 0.674194564968297, 0.730437909795628, -0.0767912552954376, -0.0788682256452878, 0.674049972944966, 0.730569143721092, -0.0768180561583398, -0.0788624416355312, 0.673905355216863, 0.730700348812394, -0.0768448579377586, -0.0788566503380309, 0.673760711789755, 0.730831525064468, -0.0768716606318157, -0.0788508517522526, 0.67361604266941, 0.730962672472252, -0.0768984642386324, -0.0788450458776619, 0.673471347861594, 0.731093791030686, -0.0769252687563302, -0.0788392327137254, 0.673326627372078, 0.731224880734709, -0.0769520741830303, -0.0788334122599094, 0.673181881206632, 0.731355941579262, -0.0769788805168534, -0.0788275845156814, 0.673037109371026, 0.731486973559288, -0.0770056877559206, -0.0788217494805089, 0.672892311871033, 0.731617976669729, -0.0770324958983522, -0.0788159071538599, 0.672747488712426, 0.731748950905531, -0.0770593049422689, -0.0788100575352031, 0.67260263990098, 0.731879896261639, -0.0770861148857907, -0.0788042006240074, 0.672457765442469, 0.732010812733, -0.0771129257270378, -0.0787983364197422, 0.67231286534267, 0.732141700314562, -0.07713973746413, -0.0787924649218773, 0.672167939607359, 0.732272559001274, -0.0771665500951869, -0.0787865861298832, 0.672022988242316, 0.732403388788087, -0.0771933636183281, -0.0787807000432306, 0.671878011253318, 0.732534189669951, -0.0772201780316728, -0.0787748066613907, 0.671733008646147, 0.732664961641821, -0.0772469933333403, -0.0787689059838351, 0.671587980426584, 0.732795704698649, -0.0772738095214494, -0.0787629980100361, 0.67144292660041, 0.732926418835391, -0.077300626594119, -0.0787570827394662, 0.67129784717341, 0.733057104047003, -0.0773274445494675, -0.0787511601715984, 0.671152742151366, 0.733187734042095, -0.077354247845626, -0.0787452283123801, 0.671007642287692, 0.733318306885314, -0.0773810353452544, -0.0787392870191399, 0.670862549882963, 0.733448822588167, -0.077407807063041, -0.0787333362971807, 0.670717464962139, 0.733579281162181, -0.0774345630136697, -0.0787273761518111, 0.670572387550153, 0.733709682618893, -0.0774613032118204, -0.0787214065883461, 0.670427317671918, 0.733840020462214, -0.0774880238478637, -0.0787154271234054, 0.67028226297654, 0.733970301164278, -0.0775147287413248, -0.0787094382490374, 0.670137215924843, 0.734100524784012, -0.0775414179358682, -0.0787034399746282, 0.669992176486034, 0.734230691334024, -0.0775680914462685, -0.0786974323054035, 0.669847144683831, 0.734360800826457, -0.0775947492872389, -0.0786914152466527, 0.66970212054245, 0.734490853270905, -0.0776213914731781, -0.0786853888039807, 0.669557104088899, 0.734620844172972, -0.0776480153841353, -0.0786793526471185, 0.669412100637959, 0.734750776009136, -0.0776746224832486, -0.0786733069665549, 0.669267107324874, 0.734880650834967, -0.0777012139810437, -0.0786672519199908, 0.669122121775692, 0.735010468662198, -0.0777277898921428, -0.0786611875128111, 0.66897714401505, 0.735140229502577, -0.0777543502311634, -0.0786551137504065, 0.66883217406756, 0.735269933367865, -0.0777808950127189, -0.078649030638173, 0.668687211957812, 0.735399577757051, -0.0778074227911055, -0.0786429379964962, 0.668542260666173, 0.735529161159808, -0.0778339327029256, -0.0786368357202157, 0.668397322010986, 0.735658687625465, -0.0778604271108581, -0.0786307241121698, 0.668252391269115, 0.735788157163905, -0.0778869060292555, -0.0786246031780213, 0.668107468467187, 0.735917569787385, -0.0779133694727477, -0.0786184729231506, 0.667962553629217, 0.736046925508862, -0.0779398174560431, -0.0786123333528593, 0.667817646778437, 0.73617622381781, -0.0779662496929831, -0.0786061844350148, 0.667672748554806, 0.736305459226145, -0.077992663023355, -0.0786000257748159, 0.667527865468176, 0.736434637768559, -0.0780190609466996, -0.0785938578176726, 0.667382990446282, 0.736563759456987, -0.0780454434775664, -0.0785876805690482, 0.667238123513455, 0.736692824303395, -0.0780718106305016, -0.0785814940344091, 0.667093264693988, 0.736821832319763, -0.0780981624200467, -0.0785752982192262, 0.666948414012148, 0.736950783518085, -0.0781244988607376, -0.0785690931289767, 0.666803571492182, 0.737079672842821, -0.0781508170585061, -0.0785628784045124, 0.666658743145101, 0.737208503903828, -0.0781771191010868, -0.0785566543120967, 0.666513924748931, 0.737337278185367, -0.0782034058480683, -0.0785504209629864, 0.666369114589275, 0.737465995698072, -0.0782296773137884, -0.0785441783628615, 0.666224312691855, 0.737594656453849, -0.078255933512729, -0.0785379265172514, 0.666079519080981, 0.737723260466457, -0.0782821744595854, -0.0785316654314628, 0.665934733778904, 0.737851804669314, -0.0783083984130566, -0.0785253948924528, 0.665789960453898, 0.737980288696983, -0.078334605177359, -0.0785191148798006, 0.665645199580766, 0.738108716018159, -0.0783607967424195, -0.078512825645746, 0.665500447093042, 0.738237086644933, -0.0783869731226977, -0.0785065271958363, 0.665355703014796, 0.738365400589499, -0.0784131343326584, -0.078500219535613, 0.665210967369975, 0.738493657864065, -0.0784392803867612, -0.0784939026706217, 0.665066240182507, 0.738621857393964, -0.0784654106826193, -0.0784875765299001, 0.664921522765478, 0.738749994838353, -0.0784915227692455, -0.0784812408137219, 0.664776820308919, 0.738878075650133, -0.0785176197527515, -0.0784748959116273, 0.6646321263854, 0.739006099843287, -0.0785437016477676, -0.078468541828974, 0.664487441016845, 0.739134067429185, -0.0785697684686095, -0.0784621785714516, 0.664342764228075, 0.739261978419384, -0.0785958202296072, -0.0784558061447334, 0.664198096043699, 0.739389832828434, -0.0786218569454364, -0.0784494245541241, 0.664053436484985, 0.739517625042284, -0.078647875460555, -0.0784430334150924, 0.663908792264419, 0.739645359801622, -0.0786738784614163, -0.0784366330629704, 0.66376415778913, 0.739773038017064, -0.0786998664696061, -0.0784302235660109, 0.663619532015187, 0.739900659700854, -0.0787258394994894, -0.0784238049298391, 0.663474914966397, 0.740028224865409, -0.0787517975654443, -0.0784173771600651, 0.663330306666369, 0.74015573352316, -0.0787777406818439, -0.0784109402623028, 0.663185707138686, 0.74028318205118, -0.0788036668254192, -0.0784044939925748, 0.663041120737482, 0.740410571217363, -0.078829576440621, -0.0783980384099425, 0.662896546590223, 0.740537903914986, -0.0788554711586845, -0.0783915737184047, 0.662751981289753, 0.740665180157959, -0.0788813509941152, -0.07838509992342, 0.662607424857975, 0.740792399958377, -0.0789072159612001, -0.0783786170306817, 0.662462877318811, 0.740919563327451, -0.0789330660741152, -0.078372125046001, 0.662318338697166, 0.741046668629502, -0.0789589004273642, -0.0783656238626624, 0.66217381098397, 0.741173712665327, -0.0789847172520705, -0.0783591132703391, 0.662029298038986, 0.741300700310762, -0.0790105192751405, -0.0783525936049612, 0.661884794082793, 0.741427631577998, -0.0790363065108245, -0.0783460648722467, 0.661740299139173, 0.741554506386741, -0.0790620789219524, -0.0783395270716588, 0.66159581334244, 0.741681325177988, -0.0790878367605441, -0.0783329802374514, 0.661451336203867, 0.741808086997011, -0.0791135795042528, -0.0783264243095071, 0.661306868903346, 0.741934786324441, -0.0791393041064927, -0.0783198589236314, 0.661162418083052, 0.742061429526906, -0.0791650141064777, -0.0783132845135724, 0.661017976169108, 0.742188016616502, -0.0791907095179867, -0.078306701085026, 0.660873543185141, 0.74231454760669, -0.0792163903549531, -0.0783001086434906, 0.660729119153246, 0.742441022510773, -0.0792420566312857, -0.0782935071944901, 0.660584704095688, 0.742567439639682, -0.079267707424222, -0.0782868966314343, 0.6604403000745, 0.74269379524184, -0.0792933406777547, -0.0782802767114265, 0.660295911627064, 0.742820094795566, -0.0793189594222806, -0.0782736478035001, 0.660151532228478, 0.742946338315459, -0.0793445636718169, -0.0782670099130397, 0.660007161899516, 0.743072525813949, -0.0793701534401244, -0.0782603630457133, 0.659862800663382, 0.743198657302429, -0.0793957287408376, -0.0782537072073274, 0.659718448544444, 0.743324730218994, -0.0794212881763343, -0.0782470422347787, 0.659574108657079, 0.743450742569224, -0.0794468306674422, -0.078240368004183, 0.659429783437736, 0.743576698950829, -0.0794723587428038, -0.0782336848217318, 0.65928546740578, 0.743702599376635, -0.0794978724161779, -0.0782269926930739, 0.659141160583934, 0.743828443859481, -0.0795233717013173, -0.0782202916238613, 0.658996862994897, 0.74395423241222, -0.0795488566119702, -0.078213581619749, 0.658852574661345, 0.744079961595297, -0.0795743252812708, -0.0782068624635231, 0.658708299759448, 0.744205631172556, -0.079599777594552, -0.0782001341466544, 0.658564038615381, 0.744331244861515, -0.0796252155850332, -0.0781933969141636, 0.658419786796363, 0.744456802673524, -0.0796506392662489, -0.0781866507719264, 0.658275544326736, 0.744582304621445, -0.0796760486518998, -0.0781798957256267, 0.658131311229125, 0.744707750719838, -0.0797014437558729, -0.0781731317807328, 0.657987087524232, 0.744833136652203, -0.0797268222482754, -0.0781663586676392, 0.657842878453263, 0.7449584639417, -0.0797521849666808, -0.0781595764894707, 0.657698682222832, 0.745083735420371, -0.0797775334545299, -0.0781527854325143, 0.65755449545804, 0.745208951102075, -0.0798028677255877, -0.0781459855023537, 0.657410318180346, 0.74533411100052, -0.0798281877935955, -0.0781391767045967, 0.657266150411371, 0.745459215128242, -0.079853493672153, -0.0781323590450089, 0.657121992174055, 0.745584258299358, -0.0798787825752951, -0.0781255322024346, 0.656977849770121, 0.74570924378544, -0.0799040562792901, -0.0781186963894698, 0.656833719290867, 0.745834173542052, -0.0799293158450337, -0.0781118517342688, 0.656689598413157, 0.745959047582298, -0.0799545612861492, -0.0781049982425468, 0.656545487159254, 0.746083865919072, -0.0799797926162281, -0.0780981359200509, 0.656401385551653, 0.746208628565067, -0.0800050098488328, -0.078091264772559, 0.656257293613071, 0.746333329466328, -0.0800302097481209, -0.0780843844290338, 0.656113218708262, 0.746457973639469, -0.0800553950164571, -0.0780774952083477, 0.65596915480898, 0.746582562164903, -0.0800805662385073, -0.078070597182138, 0.655825100646379, 0.746707095054921, -0.0801057234277465, -0.0780636903562584, 0.655681056243598, 0.746831572322098, -0.0801308665976733, -0.0780567747365299, 0.655537021623447, 0.746955993981817, -0.0801559957620961, -0.0780498503284071, 0.655392996805532, 0.747080353105595, -0.0801811072405793, -0.0780429167136828, 0.655248990228993, 0.747204656460924, -0.0802062046500989, -0.0780359743130604, 0.655104993731349, 0.747328904249417, -0.0802312881048099, -0.0780290231439508, 0.654961007106232, 0.747453096484173, -0.0802563576182198, -0.078022063212133, 0.654817030375814, 0.747577233178486, -0.0802814132038514, -0.0780150945233632, 0.654673063562036, 0.747701313660348, -0.0803064545120539, -0.0780081170419575, 0.654529107519186, 0.747825332193673, -0.080331478514507, -0.0780011304272969, 0.654385169255202, 0.747949295228726, -0.0803564886398682, -0.0779941350754785, 0.654241240976255, 0.748073202778335, -0.0803814849015644, -0.0779871309923422, 0.654097322704785, 0.74819705485668, -0.0804064673131669, -0.0779801181835522, 0.653953414461677, 0.74832085147775, -0.0804314358882183, -0.0779730966548018, 0.65380951626803, 0.748444591094725, -0.0804563898191407, -0.0779660663193353, 0.653665630044146, 0.748568269727244, -0.0804813270191809, -0.0779590269456741, 0.653521760675554, 0.748691892942778, -0.0805062504329256, -0.0779519788722021, 0.653377901426808, 0.748815460756632, -0.0805311600740199, -0.0779449221044578, 0.653234052317464, 0.74893897318193, -0.080556055955859, -0.0779378566482744, 0.653090213369566, 0.749062430230832, -0.0805809380917232, -0.0779307825096185, 0.652946384606253, 0.749185829490314, -0.0806058052230733, -0.0779236995513785, 0.652802569008025, 0.749309168724759, -0.0806306561913652, -0.0779166076489918, 0.652658769342475, 0.749432452626701, -0.0806554934641168, -0.0779095070839016, 0.652514979927611, 0.749555681209674, -0.0806803170547177, -0.0779023978619105, 0.652371200784964, 0.749678854487223, -0.0807051269765507, -0.0778952799888228, 0.652227431936044, 0.749801972472905, -0.0807299232429932, -0.0778881534704456, 0.652083673402337, 0.749925031883108, -0.0807547041500186, -0.0778810181217766, 0.651939929233575, 0.750048032227468, -0.0807794694553017, -0.0778738739213828, 0.651796200070774, 0.750170977324269, -0.0808042211554497, -0.0778667210955084, 0.651652481288644, 0.750293867185566, -0.0808289592636298, -0.0778595596501823, 0.651508772910363, 0.750416701824949, -0.080853683793171, -0.0778523895912288, 0.651365074957336, 0.750539481257612, -0.0808783947575714, -0.0778452109242596, 0.651221387449115, 0.750662201330323, -0.0809030900133498, -0.0778380234181514, 0.651077715507574, 0.750784863298461, -0.0809277702224833, -0.077830827150777, 0.650934057638525, 0.750907470101111, -0.0809524369161676, -0.0778236222957056, 0.65079041028311, 0.751030021752831, -0.0809770901077862, -0.0778164088586528, 0.650646773461577, 0.75115251826799, -0.0810017298106943, -0.0778091868453631, 0.650503147194382, 0.751274959659826, -0.0810263560381146, -0.077801956261738, 0.650359531503275, 0.751397340913117, -0.0810509662138313, -0.0777947168314096, 0.650215932577495, 0.751519665017757, -0.0810755618910041, -0.0777874687292922, 0.650072346792529, 0.75164193404278, -0.0811001441424265, -0.0777802120769122, 0.649928771649461, 0.751764148001974, -0.0811247129813378, -0.0777729468801145, 0.649785207169373, 0.751886306908914, -0.0811492684209457, -0.0777656731447753, 0.649641653373581, 0.752008410776995, -0.081173810474431, -0.0777583908767995, 0.649498110283603, 0.752130453730569, -0.0811983361388475, -0.0777510997562823, 0.649354585158232, 0.752252440490191, -0.0812228478463219, -0.0777438000518944, 0.649211072239049, 0.752374372256424, -0.0812473462173751, -0.0777364918347875, 0.649067570089283, 0.752496249042224, -0.081271831265096, -0.0777291751109434, 0.64892407873092, 0.752618070860879, -0.0812963030026008, -0.0777218498863017, 0.648780598185557, 0.752739837728372, -0.0813207614432913, -0.0777145161664353, 0.648637128471663, 0.752861542902624, -0.0813452031626329, -0.0777071735906622, 0.648493677928522, 0.752983192840023, -0.0813696314605669, -0.077699822516859, 0.648350238649809, 0.753104787869315, -0.0813940465108965, -0.0776924629681619, 0.648206810268788, 0.753226328004269, -0.0814184483267379, -0.0776850949504637, 0.648063392806451, 0.753347813258846, -0.0814428369212206, -0.0776777184696342, 0.647919986283562, 0.753469243095348, -0.0814672120279276, -0.0776703335019594, 0.647776591401245, 0.753590611571223, -0.0814915706462963, -0.0776629397351821, 0.647633215529438, 0.75371192521126, -0.0815159160924846, -0.0776555375254663, 0.647489850661437, 0.753833184028955, -0.0815402483795264, -0.0776481268787621, 0.647346496818506, 0.753954388039142, -0.081564567520592, -0.0776407078008364, 0.647203154020349, 0.754075537256427, -0.08158887352882, -0.0776332802974908, 0.64705982228692, 0.754196630275791, -0.0816131657032732, -0.0776258443002242, 0.646916503392215, 0.754317662896452, -0.0816374419373165, -0.0776183995934846, 0.646773202568653, 0.754438640766892, -0.0816617050872692, -0.0776109464818519, 0.646629912876164, 0.754559563903052, -0.0816859551663674, -0.0776034849709571, 0.646486634333113, 0.754680432318686, -0.0817101921876036, -0.0775960150667374, 0.646343366960402, 0.75480124602665, -0.0817344161638669, -0.0775885367752587, 0.646200110779968, 0.754922002763237, -0.0817586259664215, -0.0775810499839741, 0.646056868632639, 0.755042700058156, -0.0817828203696374, -0.0775735545717499, 0.645913643618387, 0.75516334269158, -0.0818070017767717, -0.0775660507923801, 0.645770429858513, 0.755283930677683, -0.0818311702008089, -0.0775585386517608, 0.645627227373381, 0.75540446403065, -0.0818553256547273, -0.077551018155789, 0.645484036183332, 0.755524942764678, -0.0818794681514979, -0.0775434893103632, 0.645340856308689, 0.755645363753391, -0.0819035961399034, -0.0775359519613964, 0.645197691665739, 0.755765726256939, -0.081927709263697, -0.0775284060783048, 0.645054543214046, 0.755886034188125, -0.0819518094790437, -0.0775208518658846, 0.644911406139206, 0.756006287559645, -0.0819758967987088, -0.0775132893302579, 0.644768280463249, 0.756126486385749, -0.081999971235616, -0.0775057184773314, 0.644625166206387, 0.756246630682204, -0.0820240328028423, -0.0774981393128014, 0.644482063387047, 0.75636671646118, -0.0820480795325233, -0.0774905516428369, 0.644338976999565, 0.756486744713229, -0.0820721119262559, -0.0774829555235054, 0.644195905855112, 0.756606718479161, -0.0820961314984501, -0.0774753511131895, 0.644052846213006, 0.756726637774163, -0.0821201382620752, -0.0774677384176795, 0.64390979809231, 0.756846502613201, -0.0821441322300688, -0.0774601174427992, 0.643766761512338, 0.756966313010147, -0.0821681134152447, -0.0774524881945284, 0.643623736493675, 0.757086064123416, -0.082192079439572, -0.0774448504401831, 0.643480729103687, 0.757205758662431, -0.0822160316498158, -0.0774372043201807, 0.64333773601063, 0.757325398805289, -0.0822399711254053, -0.0774295499471314, 0.643194754540712, 0.757444984566393, -0.0822638978791645, -0.0774218873269532, 0.643051784713856, 0.757564515959938, -0.0822878119238879, -0.0774142164655958, 0.642908826550221, 0.75768399299995, -0.0823117132723433, -0.0774065373690346, 0.642765880070154, 0.757803409992869, -0.0823355991421356, -0.0773988497674587, 0.642622952415924, 0.75792277136271, -0.0823594717133884, -0.0773911538823024, 0.642480038109921, 0.75804207842666, -0.0823833316364819, -0.0773834497821025, 0.642337135547123, 0.758161331198277, -0.0824071789240889, -0.0773757374729132, 0.642194244748388, 0.758280529691495, -0.082431013588914, -0.0773680169607376, 0.642051365734124, 0.75839967392283, -0.0824548356439255, -0.0773602882512122, 0.641908498521688, 0.758518757341176, -0.08247864190735, -0.0773525510401867, 0.641765651338783, 0.75863778608968, -0.0825024353818738, -0.0773448056254992, 0.641622816548603, 0.758756760621564, -0.0825262162942064, -0.0773370520340174, 0.641479993622499, 0.758875680951202, -0.0825499846570441, -0.0773292902716944, 0.641337182580308, 0.758994547093154, -0.0825737404830951, -0.0773215203444592, 0.641194383441644, 0.759113358642228, -0.0825974835816762, -0.0773137422386881, 0.641051596751729, 0.759232109459969, -0.0826212109884661, -0.0773059556749956, 0.640908830237921, 0.759350806136709, -0.0826449259060432, -0.0772981609667877, 0.640766075688053, 0.759469448686585, -0.0826686283466752, -0.0772903581202474, 0.640623333122216, 0.759588037125021, -0.0826923183230999, -0.0772825471411945, 0.640480602558952, 0.759706571467156, -0.0827159958482115, -0.0772747280353911, 0.640337884017114, 0.759825050448769, -0.0827396603196131, -0.0772669007507202, 0.640195179120476, 0.759943469657491, -0.0827633096207703, -0.0772590650917951, 0.640052493446196, 0.760061834814733, -0.0827869465179273, -0.0772512213267475, 0.639909819855756, 0.76018014593701, -0.082810571023887, -0.0772433694612482, 0.639767158366353, 0.760298403038639, -0.0828341831512157, -0.0772355095012873, 0.639624508997773, 0.760416606133111, -0.0828577829123855, -0.0772276414529766, 0.639481871770777, 0.760534753105871, -0.0828813692994238, -0.077219765226624, 0.639339249381413, 0.760652841259075, -0.0829049410311127, -0.0772118807085327, 0.639196645262298, 0.760770875453351, -0.0829285004439051, -0.077203988122363, 0.639054053342963, 0.760888855703449, -0.0829520475503576, -0.0771960874740531, 0.63891147364263, 0.761006782024131, -0.0829755823630198, -0.0771881787695422, 0.638768906180503, 0.761124654429751, -0.0829991048943914, -0.0771802620148298, 0.638626350976253, 0.761242469949093, -0.0830226137359602, -0.0771723370854826, 0.63848381180968, 0.761360227604631, -0.0830461084312479, -0.0771644039446599, 0.638341289953983, 0.761477931394455, -0.0830695908923848, -0.0771564627737882, 0.638198780412835, 0.76159558133153, -0.0830930611316804, -0.0771485135790786, 0.63805628320752, 0.761713177430699, -0.0831165191616302, -0.0771405563664699, 0.637913798357077, 0.761830719708237, -0.0831399649948691, -0.077132591141694, 0.637771325878837, 0.761948204343126, -0.0831633968285368, -0.0771246177465915, 0.637628870632178, 0.762065632064912, -0.0831868150184331, -0.0771166362190942, 0.637486431738627, 0.762183006010677, -0.0832102210581353, -0.0771086467001696, 0.637344005278197, 0.762300326196172, -0.0832336149601775, -0.0771006491956335, 0.637201591268794, 0.762417592636896, -0.0832569967370595, -0.0770926437113401, 0.637059189728617, 0.762534805347293, -0.0832803664011648, -0.0770846302532997, 0.63691680067711, 0.762651959661575, -0.0833037217612398, -0.0770766086309105, 0.63677443005121, 0.76276905801093, -0.0833270639738031, -0.0770685789536489, 0.636632074819271, 0.762886102677897, -0.083350394120108, -0.0770605413230791, 0.636489732133949, 0.763003093677429, -0.0833737122125437, -0.0770524957451441, 0.636347402014039, 0.763120031024275, -0.0833970182634706, -0.0770444422258194, 0.636205084478569, 0.763236914733034, -0.0834203122852252, -0.0770363807711032, 0.63606277954674, 0.763353739295136, -0.0834435917037546, -0.0770283111596799, 0.635920494234616, 0.763470508838729, -0.0834668584649052, -0.0770202335692254, 0.635778223355026, 0.763587224793824, -0.0834901132433319, -0.077012148063611, 0.635635965134848, 0.763703887174517, -0.0835133560512737, -0.0770040546489165, 0.635493719593838, 0.763820495995323, -0.0835365869010039, -0.0769959533311618, 0.635351486751244, 0.763937051273229, -0.0835598058050396, -0.0769878441160008, 0.635209266623338, 0.764053546651728, -0.0835830098113537, -0.0769797267542004, 0.635067067315444, 0.764169987959882, -0.0836062016446944, -0.0769716014869972, 0.634924881472185, 0.764286375772382, -0.083629381578312, -0.076963468343, 0.634782708401988, 0.764402710104148, -0.0836525496244658, -0.0769553273281765, 0.634640548123561, 0.764518990970273, -0.0836757057954257, -0.0769471784484694, 0.634498400655393, 0.764635218095852, -0.0836988499690911, -0.0769390216983981, 0.634356266384635, 0.764751385157329, -0.0837219792249596, -0.0769308568355094, 0.634214153390759, 0.764867498801775, -0.0837450966515439, -0.0769226841281737, 0.634072053263711, 0.764983559043824, -0.083768202261021, -0.0769145035824087, 0.633929966022488, 0.765099565899423, -0.0837912960656907, -0.076906315204037, 0.633787891684501, 0.765215519384226, -0.0838143780778163, -0.0768981189989262, 0.633645830267497, 0.765331418373395, -0.0838374477852644, -0.076889914929591, 0.633503783241695, 0.765447258252169, -0.0838605030707424, -0.0768817028247522, 0.63336175652602, 0.765563044806932, -0.0838835466091643, -0.076873482913913, 0.633219742789889, 0.765678778054705, -0.0839065784128834, -0.0768652552027412, 0.633077742049359, 0.765794458010308, -0.0839295984940235, -0.0768570196972361, 0.63293575432313, 0.7659100846878, -0.0839526068646245, -0.0768487764035123, 0.632793779630809, 0.76602565612107, -0.0839756026287382, -0.0768405252528204, 0.63265182051923, 0.766141169392352, -0.0839985844602734, -0.0768322661427563, 0.632509880752987, 0.76625662943559, -0.0840215546268487, -0.0768239992647466, 0.632367954075051, 0.76637203626605, -0.0840445131405784, -0.0768157246247302, 0.632226040503529, 0.766487389899003, -0.0840674600135688, -0.076807442228645, 0.632084140056507, 0.766602690349731, -0.0840903952579187, -0.0767991520824291, 0.631942252752055, 0.766717934807612, -0.0841133175988413, -0.0767908540885943, 0.631800382221482, 0.766833122050833, -0.0841362264906121, -0.0767825482096974, 0.631658530068357, 0.766948256162278, -0.0841591237991213, -0.0767742346009089, 0.631516691111525, 0.767063337155739, -0.0841820095362729, -0.0767659132683963, 0.631374865370807, 0.76717836504659, -0.0842048837141206, -0.0767575842180891, 0.631233052864103, 0.767293339851551, -0.0842277463448435, -0.0767492474557134, 0.631091253607672, 0.76740825791714, -0.0842505957802401, -0.0767409028568415, 0.630949472319275, 0.767523119716508, -0.0842734322442083, -0.0767325504450527, 0.630807708434683, 0.767637928477458, -0.0842962572058956, -0.0767241903419076, 0.630665957857481, 0.767752684216242, -0.0843190706773882, -0.0767158225532072, 0.630524220604445, 0.767867386948829, -0.0843418726707355, -0.0767074470847958, 0.630382496692686, 0.767982036690175, -0.0843646631978787, -0.0766990639426732, 0.630240786140534, 0.7680966289517, -0.0843874402431878, -0.0766906729763438, 0.630099094746749, 0.768211165889515, -0.0844102047884328, -0.0766822742681369, 0.629957419785904, 0.768325649885814, -0.0844329579123028, -0.0766738679066081, 0.629815758238837, 0.76844008095604, -0.0844556996267404, -0.0766654538976861, 0.629674110123241, 0.768554459115432, -0.0844784299436604, -0.0766570322473323, 0.629532475457042, 0.768668784379098, -0.0845011488749559, -0.076648602961528, 0.629390854258321, 0.768783051425551, -0.0845238540429546, -0.076640165865427, 0.62924925340811, 0.768897264088803, -0.0845465471763308, -0.0766317210967809, 0.629107668018011, 0.769011423907651, -0.084569228968831, -0.0766232687128459, 0.628966096147402, 0.76912553089667, -0.0845918994322493, -0.0766148087196894, 0.628824537814966, 0.769239585070889, -0.0846145585784167, -0.0766063411233086, 0.628682993038817, 0.769353586447713, -0.0846372064193898, -0.0765978659293371, 0.628541461834169, 0.769467528867974, -0.0846598402201116, -0.0765893829413673, 0.628399952174075, 0.769581417846991, -0.0846824624461128, -0.076580892347939, 0.628258456995107, 0.769695254077625, -0.0847050734112029, -0.0765723941774509, 0.628116975442248, 0.769809037575277, -0.0847276731271944, -0.0765638884358471, 0.627975507533104, 0.769922768355516, -0.0847502616059083, -0.0765553751290466, 0.62783405328507, 0.770036446271129, -0.0847728387870425, -0.0765468542577421, 0.627692612925595, 0.77015006482443, -0.0847954018006484, -0.0765383256200404, 0.627551194880285, 0.770263630710638, -0.0848179536211893, -0.0765297894374821, 0.627409790548915, 0.770377143944864, -0.0848404942603956, -0.07652124571606, 0.627268399949391, 0.770490604543515, -0.0848630237301146, -0.0765126944615654, 0.627127023098018, 0.770604012522679, -0.0848855420421556, -0.0765041356798392, 0.626985660011484, 0.770717366894988, -0.0849080487672253, -0.076495569345944, 0.626844312003738, 0.770830662852787, -0.0849305417956114, -0.0764869953163388, 0.62670298533174, 0.770943906239614, -0.0849530237101192, -0.0764784137801344, 0.626561672479404, 0.771057096945277, -0.0849754944665931, -0.0764698247390471, 0.626420373626896, 0.77117023540756, -0.0849979542622442, -0.076461228212001, 0.626279088245005, 0.771283321540436, -0.0850204030641429, -0.0764526242018766, 0.626137816482131, 0.771396351830114, -0.085042839337454, -0.0764440126075044, 0.625996562927528, 0.771509325887102, -0.0850652629222112, -0.0764353934245941, 0.625855328127222, 0.771622247666306, -0.0850876755569258, -0.0764267667786878, 0.625714106996536, 0.771735117183289, -0.0851100772528868, -0.0764181326755779, 0.625572899552467, 0.771847934453616, -0.0851324680213768, -0.0764094911210558, 0.625431705811991, 0.771960699492864, -0.0851548478736723, -0.0764008421209121, 0.625290525792064, 0.772073405165628, -0.0851772137077382, -0.0763921854716694, 0.625149368791012, 0.772186058335839, -0.0851995685240851, -0.0763835213822041, 0.625008225942927, 0.772298659325778, -0.0852219124676324, -0.0763748498673336, 0.624867096866772, 0.772411208150767, -0.0852442455495871, -0.0763661709328889, 0.624725981579766, 0.772523704826373, -0.0852665677811719, -0.0763574845846638, 0.624584880098819, 0.772636146055516, -0.085288877737428, -0.0763487907337086, 0.624443796747369, 0.772748531035105, -0.0853111750814235, -0.0763400893650012, 0.624302732610596, 0.772860863917589, -0.0853334616183883, -0.0763313806025016, 0.624161682329264, 0.772973144717426, -0.0853557373593945, -0.0763226644521787, 0.624020645921597, 0.773085373449998, -0.0853780023155951, -0.0763139409198555, 0.623879623404672, 0.773197550132729, -0.0854002564983326, -0.0763052100110332, 0.623738614793037, 0.773309667854357, -0.0854224969354332, -0.0762964715412326, 0.62359762912527, 0.773421733049192, -0.0854447264100968, -0.0762877256952282, 0.623456658063845, 0.77353374624427, -0.0854669451541906, -0.076278972493062, 0.623315700959569, 0.773645707455125, -0.0854891531788312, -0.0762702119405339, 0.623174757829273, 0.773757616697467, -0.0855113504951437, -0.0762614440434156, 0.623033828689555, 0.773869470888001, -0.0855335357852875, -0.0762526687245055, 0.622892917599794, 0.773981268817672, -0.0855557085406187, -0.0762438859587121, 0.622752026178489, 0.774093014830147, -0.0855778706304373, -0.0762350958684725, 0.622611148797915, 0.774204708941173, -0.0856000220658279, -0.0762262984595526, 0.622470285474575, 0.774316351166503, -0.0856221628578679, -0.0762174937377175, 0.622329436224959, 0.774427941521878, -0.0856442930176276, -0.0762086817087342, 0.622188601065557, 0.77453947332422, -0.0856664097005042, -0.0761998622055466, 0.622047788768292, 0.774650952577919, -0.0856885154772772, -0.0761910353907394, 0.621906991528083, 0.774762380012555, -0.0857106106643103, -0.0761822012889948, 0.621766208428534, 0.774873755644443, -0.0857326952726836, -0.0761733599059883, 0.621625439485379, 0.774985079490329, -0.0857547693135098, -0.0761645112473253, 0.6214846847138, 0.775096348679132, -0.0857768315734775, -0.0761556552468661, 0.621343947909219, 0.775207561598304, -0.0857988813769109, -0.076146791870921, 0.621203231223929, 0.775318722781286, -0.0858209206550405, -0.0761379212397014, 0.62106252876181, 0.775429832244794, -0.0858429494189312, -0.0761290433588173, 0.620921840538035, 0.775540890005228, -0.0858649676796118, -0.0761201582339293, 0.620781166568155, 0.775651896077997, -0.0858869754480098, -0.0761112658708557, 0.620640506868942, 0.775762844005932, -0.0859089700042345, -0.0761023661193773, 0.620499869946539, 0.775873739363763, -0.08593095371152, -0.0760934591217274, 0.620359248531696, 0.775984583085757, -0.0859529269686984, -0.0760845449059844, 0.620218641436379, 0.776095375187795, -0.0859748897866797, -0.0760756234779167, 0.620078048676721, 0.776206115685766, -0.0859968421763843, -0.0760666948432672, 0.619937470268838, 0.776316801924209, -0.0860187830269914, -0.0760577589454044, 0.619796909738123, 0.776427431883752, -0.0860407114998567, -0.0760488157444443, 0.619656369778338, 0.776538010290631, -0.0860626295864556, -0.0760398653569554, 0.619515844219524, 0.776648537161876, -0.0860845372977716, -0.0760309077884927, 0.619375333076322, 0.77675901251332, -0.0861064346446695, -0.0760219430448046, 0.619234836364854, 0.77686943635929, -0.0861283216378657, -0.0760129711318832, 0.619094354103111, 0.776979802469482, -0.0861501956796653, -0.076003991915236, 0.618953894528331, 0.777090115990465, -0.0861720589306783, -0.0759950055183942, 0.618813450908941, 0.777200378059946, -0.0861939118699639, -0.0759860119720137, 0.618673021785029, 0.777310588693297, -0.0862157545082928, -0.0759770112819157, 0.61853260717323, 0.777420747905514, -0.0862375868563925, -0.0759680034539826, 0.61839220709064, 0.777530853254938, -0.0862594079033025, -0.0759589884405659, 0.618251824793025, 0.7776409023202, -0.0862812166521743, -0.0759499661966826, 0.618111463513151, 0.777750900017527, -0.0863030151525249, -0.0759409368347761, 0.617971116809003, 0.777860846362924, -0.0863248034151321, -0.0759319003605627, 0.617830784696366, 0.777970741372401, -0.0863465814507673, -0.0759228567797574, 0.617690467191006, 0.778080585061973, -0.0863683492701951, -0.0759138060980744, 0.617550164308669, 0.778190371421674, -0.0863901043947391, -0.0759047481968524, 0.617409884023924, 0.778300105178068, -0.0864118487878525, -0.0758956831814838, 0.617269620136362, 0.778409787667013, -0.0864335830061659, -0.0758866110851594, 0.617129370919034, 0.778519418904249, -0.0864553070603749, -0.0758775319136355, 0.616989136387977, 0.778628998905877, -0.0864770209612009, -0.0758684456726095, 0.616848916558772, 0.778738525441276, -0.0864987237949941, -0.0758593523228504, 0.616708714419168, 0.778847995688214, -0.0865204144110486, -0.0758502518159662, 0.616568533743044, 0.778957414753441, -0.0865420949150675, -0.0758411442592555, 0.61642836781397, 0.77906678265167, -0.0865637653176, -0.0758320296586403, 0.616288216649213, 0.779176099398918, -0.0865854256293088, -0.0758229080198284, 0.616148080264392, 0.779285365012789, -0.0866070758609956, -0.0758137793482661, 0.616007958673121, 0.779394573702684, -0.0866287136503861, -0.0758046435403312, 0.615867859586627, 0.779503729777514, -0.0866503407686235, -0.0757955006847751, 0.615727777336356, 0.779612834769916, -0.0866719578476853, -0.0757863508166156, 0.615587709928298, 0.77972188869637, -0.0866935648982255, -0.0757771939414801, 0.615447657377423, 0.779830891573843, -0.0867151619309362, -0.0757680300649159, 0.615307619698081, 0.77993984137938, -0.0867367481268703, -0.0757588591557168, 0.615167599612422, 0.780048734897656, -0.0867583221863531, -0.0757496811626757, 0.615027601429179, 0.780157577419335, -0.086779886268792, -0.0757404961881035, 0.614887618164124, 0.78026636896058, -0.0868014403847612, -0.075731304237677, 0.614747649832567, 0.780375109537553, -0.0868229845448284, -0.075722105317072, 0.614607696449802, 0.780483799166425, -0.0868445187595548, -0.0757128994319629, 0.614467758031103, 0.780592432280197, -0.0868660407809629, -0.0757036864921076, 0.614327842017135, 0.780701012766794, -0.0868875521921441, -0.075694466572059, 0.614187943279035, 0.780809542357841, -0.0869090536985569, -0.07568523970736, 0.614048059551205, 0.780918021070338, -0.0869305453107947, -0.0756760059035436, 0.613908190847819, 0.781026448920899, -0.086952027039408, -0.0756667651662056, 0.613768337183527, 0.781134824093575, -0.0869734981578323, -0.075657517471329, 0.613628501013898, 0.781243142982641, -0.0869949572217678, -0.0756482627663062, 0.613488687182598, 0.781351411061147, -0.0870164064423538, -0.0756390011477966, 0.613348888437875, 0.781459628346762, -0.0870378458301928, -0.075629732621217, 0.613209104792993, 0.781567794855715, -0.0870592753957505, -0.0756204571922226, 0.613069336263022, 0.781675910602787, -0.0870806951493538, -0.0756111748667114, 0.612929582864855, 0.781783970242669, -0.0871021029546893, -0.0756018855671675, 0.612789851769078, 0.781891977246906, -0.0871235002117096, -0.0755925893550796, 0.612650138384362, 0.781999933543692, -0.0871448876971001, -0.0755832862659802, 0.612510440174824, 0.782107839149297, -0.0871662654212798, -0.075573976305513, 0.612370757155416, 0.78221569408, -0.0871876333946614, -0.075564659479321, 0.612231089341072],
-	"STA_REFERENCE_DATE_AND_TIME": "UNKNOWN",
-	"STA_REFERENCE_POINT_XYZ": [0.0, 0.0, 0.0],
-	"STA_REF_ELEVATION": 0.0,
-	"STA_SEMI_MAJOR_AXIS": 3396190,
-	"STA_SEMI_MINOR_AXIS": 3376200.00000009,
-	"STA_SENSOR_IDENTIFIER": "USGS_LINE_SCANNER",
-	"STA_SENSOR_MODEL_NAME": "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL",
-	"STA_SENSOR_TYPE": "USGSAstroLineScannerKLEv",
-	"STA_STARTING_EPHEMERIS_TIME": 133311908.777162,
-	"STA_STARTING_SAMPLE": 1,
-	"STA_T0_EPHEM": -153.96419146657,
-	"STA_T0_QUAT": -91.4276687800884,
-	"STA_TOTAL_LINES": 25504,
-	"STA_TOTAL_SAMPLES": 5176,
-	"STA_TRAJECTORY_IDENTIFIER": "UNKNOWN"
-}
diff --git a/tests/h0232_0000_s12_keywords.lis b/tests/h0232_0000_s12_keywords.lis
deleted file mode 100644
index e6e00165b11322eb4b4cf3f16cba2c9cad198ea0..0000000000000000000000000000000000000000
--- a/tests/h0232_0000_s12_keywords.lis
+++ /dev/null
@@ -1,577 +0,0 @@
-RECTIFICATION_TERMS
-        6.25200000000000e+03 0.00000000000000e+00 1.00000000000000e+00
-        1.29200000000000e+03 1.00000000000000e+00 0.00000000000000e+00
-GROUND_ZERO 1.50541166634333e-01 1.29529443523739e+00 0.00000000000000e+00
-LOAD_PT 1.50541166634333e-01 1.29529443523739e+00 0.00000000000000e+00
-COORD_SYSTEM 1
-IMAGE_MOTION 0
-SENSOR_TYPE USGSAstroLineScannerKLEv
-SENSOR_MODE UNKNOWN
-SEMI_MAJOR_AXIS 3.39619000000000e+006
-ECCENTRICITY 1.08339143554195e-001
-FOCAL 1.74870000000000e+02
-ATMCO 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_LINE 6.25200000000000e+03 7.14285714285714e+01 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_SAMPLE 1.29200000000000e+03 0.00000000000000e+00 7.14285714285714e+01 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-ABERR    0
-ATMREF   0
-PLATFORM   1
-SOURCE_FLAG  1
-SINGLE_EPHEMERIDE  0
-TRI_PARAMETERS
-0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 1.74870000000000e+02 0.00000000000000e+00 0.00000000000000e+00
-T_CENTER  -6.2861536815762519836425781e+01
-DT_EPHEM  1.0161023944028983123644139e+01
-T0_EPHEM  -2.3559894385933876037597656e+02
-NUMBER_OF_EPHEM   35
-EPHEM_PTS
- 1.0154585329145628493279219e+06 3.7646083049701838754117489e+06 -3.4723187039764889050275087e+05
- 1.0191811362100001424551010e+06 3.7770098062921422533690929e+06 -3.0709865320600103586912155e+05
- 1.0228468495105175534263253e+06 3.7891291495537403970956802e+06 -2.6694498748186108423396945e+05
- 1.0264556207678611390292645e+06 3.8009679377203914336860180e+06 -2.2677356053520974819548428e+05
- 1.0300074023557758191600442e+06 3.8125277730331360362470150e+06 -1.8658705967567424522712827e+05
- 1.0335021510675244498997927e+06 3.8238102569991759955883026e+06 -1.4638817221304634585976601e+05
- 1.0369398281143791973590851e+06 3.8348169903852888382971287e+06 -1.0617958545713145576883107e+05
- 1.0403203991237380541861057e+06 3.8455495732094058766961098e+06 -6.5963986717595849768258631e+04
- 1.0436438341371499700471759e+06 3.8560096047329050488770008e+06 -2.5744063304213341325521469e+04
- 1.0469101076085212407633662e+06 3.8661986834527989849448204e+06 1.4477497473277253448031843e+04
- 1.0501191984021998941898346e+06 3.8761184070939151570200920e+06 5.4698008305131676024757326e+04
- 1.0532710897910816129297018e+06 3.8857703726010620594024658e+06 9.4914781881606584647670388e+04
- 1.0563657694564815610647202e+06 3.8951561761343241669237614e+06 1.3512513089575804769992828e+05
- 1.0594032318724289070814848e+06 3.9042774243790484033524990e+06 1.7532638487941518542356789e+05
- 1.0623834825216191820800304e+06 3.9131357599816736765205860e+06 2.1551593001714127603918314e+05
- 1.0653065353638362139463425e+06 3.9217328464032607153058052e+06 2.5569118780975509434938431e+05
- 1.0681724141629384830594063e+06 3.9300703784760734997689724e+06 2.9584963469753914978355169e+05
- 1.0709811511619922239333391e+06 3.9381500712749632075428963e+06 3.3598878535330458544194698e+05
- 1.0737327876370481681078672e+06 3.9459736666299812495708466e+06 3.7610620667437749216333032e+05
- 1.0764273727763311471790075e+06 3.9535429254897390492260456e+06 4.1619950591986253857612610e+05
- 1.0790649644888269249349833e+06 3.9608596311381654813885689e+06 4.5626633938892243895679712e+05
- 1.0816456279119211249053478e+06 3.9679255858319136314094067e+06 4.9630440814179176231846213e+05
- 1.0841694362404688727110624e+06 3.9747426100382837466895580e+06 5.3631145875504717696458101e+05
- 1.0866364698270587250590324e+06 3.9813125412130272015929222e+06 5.7628528332217363640666008e+05
- 1.0890468160711834207177162e+06 3.9876372325329394079744816e+06 6.1622371874818590003997087e+05
- 1.0914005690186810679733753e+06 3.9937185518661183305084705e+06 6.5612464732152584474533796e+05
- 1.0936978298004581592977047e+06 3.9995583789161005988717079e+06 6.9598599004800058901309967e+05
- 1.0959387052803204860538244e+06 4.0051585956287491135299206e+06 7.3580567792133835610002279e+05
- 1.0981233075542021542787552e+06 4.0105210828966908156871796e+06 7.7558164195318915881216526e+05
- 1.1002517539516070391982794e+06 4.0156477205443875864148140e+06 8.1531181315518775954842567e+05
- 1.1023241670332648791372776e+06 4.0205403873188081197440624e+06 8.5499412253902270458638668e+05
- 1.1043406745885622221976519e+06 4.0252009608798814006149769e+06 8.9462650111616379581391811e+05
- 1.1063014096333328634500504e+06 4.0296313177915024571120739e+06 9.3420687989814975298941135e+05
- 1.1082065104080529417842627e+06 4.0338333335134731605648994e+06 9.7373318989720975514501333e+05
- 1.1100561203733731526881456e+06 4.0378088823882183060050011e+06 1.0132033621239315252751112e+06
-
-
-EPHEM_RATES
- 3.6915768312548254925786750e+02 1.2344604503530597412463976e+03 3.9485832817425575740344357e+03
- 3.6356161724706737459200667e+02 1.2066128728082533143606270e+03 3.9507279659038463250908535e+03
- 3.5796021138872373512640479e+02 1.1789230868965680656401673e+03 3.9526081777414501630119048e+03
- 3.5235390078310405215233914e+02 1.1513910216275787661288632e+03 3.9542239172366244019940495e+03
- 3.4674312050037679000524804e+02 1.1240166052461477192991879e+03 3.9555751843986654421314597e+03
- 3.4112830541439399212322314e+02 1.0967997652072665459854761e+03 3.9566619792188062092463952e+03
- 3.3550989023208995831737411e+02 1.0697404282274503657390596e+03 3.9574843017032208081218414e+03
- 3.2988830947053867248541792e+02 1.0428385202295396538829664e+03 3.9580421518534649294451810e+03
- 3.2426399746137582269511768e+02 1.0160939663727166362150456e+03 3.9583355296659683517646044e+03
- 3.1863738835371520963235525e+02 9.8950669104696044087177143e+02 3.9583644351421858118555974e+03
- 3.1300891610920450602861820e+02 9.6307661787196991554083070e+02 3.9581288682818940287688747e+03
- 3.0737901458998123871424468e+02 9.3680366985043622207740555e+02 3.9576288292228909995174035e+03
- 3.0174823497738049127292470e+02 9.1068832629125995481444988e+02 3.9568651466991973393305670e+03
- 2.9611745323530436735381954e+02 8.8473287467819716312078526e+02 3.9558414370543837321747560e+03
- 2.9048762821173744441693998e+02 8.5894010881008716751239263e+02 3.9545622258653088465507608e+03
- 2.8485965947955003230163129e+02 8.3331259662818092692759819e+02 3.9530319544028393465850968e+03
- 2.7923444671590590360210626e+02 8.0785287792525571148871677e+02 3.9512552074407576583325863e+03
- 2.7361285165444269296131097e+02 7.8256326535147798040270573e+02 3.9492364361566264960856643e+03
- 2.6799570812641070460813353e+02 7.5744601624629024172463687e+02 3.9469801965033711894648150e+03
- 2.6238383459927547391998814e+02 7.3250317045713734387391014e+02 3.9444908877343109452340286e+03
- 2.5677801589358665523832315e+02 7.0773676065522897715709405e+02 3.9417731255816011071146931e+03
- 2.5117900419088846319937147e+02 6.8314861654648734656802844e+02 3.9388313523836541207856499e+03
- 2.4558754819539691993668384e+02 6.5874047019544082104403060e+02 3.9356700476718087884364650e+03
- 2.4000434688379451131368114e+02 6.3451393115912537723488640e+02 3.9322936562952550048066769e+03
- 2.3443007406856446550591500e+02 6.1047049595731880344828824e+02 3.9287066165348892354813870e+03
- 2.2886540544016023090989620e+02 5.8661146990833162817580160e+02 3.9249130667921581334667280e+03
- 2.2331097174051072329348244e+02 5.6293754574574165872036247e+02 3.9209154037392172540421598e+03
- 2.1776731253273837296546844e+02 5.3944878198187552698072977e+02 3.9167141197399746488372330e+03
- 2.1223494280913834586499433e+02 5.1614507422759766086528543e+02 3.9123092156755683390656486e+03
- 2.0671437751759825118824665e+02 4.9302631690013095067115501e+02 3.9077006915478946211806033e+03
- 2.0120613136425060929468600e+02 4.7009240348792178565417998e+02 3.9028885473488358002214227e+03
- 1.9571071882008348552517418e+02 4.4734322656706882526123081e+02 3.8978727830710199668828864e+03
- 1.9022865415854258230865526e+02 4.2477867787451094727657619e+02 3.8926533987518137109873351e+03
- 1.8476045134440929018637689e+02 4.0239864809694239511372871e+02 3.8872303943444208016444463e+03
- 1.7930662417595974034156825e+02 3.8020302713366055513688480e+02 3.8816037698941540838859510e+03
-
-
-DT_QUAT 4.1082307051330119174181732e-01
-T0_QUAT -1.4297203557193279266357422e+02
-NUMBER_OF_QUATERNIONS  391
-QUATERNIONS
- 7.1266171635043817911281394e-01 -7.3086397928819699099101115e-02 -7.9535416582964840737091095e-02 6.9314195803977429743980565e-01
- 7.1279897978945350178747731e-01 -7.3115082376894124926991481e-02 -7.9530970833763092731061306e-02 6.9299828558112142040670278e-01
- 7.1293621403842977191089858e-01 -7.3143767913184137841042798e-02 -7.9526517736718774220783246e-02 6.9285458568496471887243615e-01
- 7.1307341909187582640328174e-01 -7.3172454535698386313136155e-02 -7.9522057291210063167952171e-02 6.9271085835723467116764596e-01
- 7.1321059494430250058627507e-01 -7.3201142242445602081879485e-02 -7.9517589496615789790290307e-02 6.9256710360386242175678717e-01
- 7.1334774159022118489303921e-01 -7.3229831031434045041095260e-02 -7.9513114352314992472336996e-02 6.9242332143078078043885171e-01
- 7.1348485902414504611357415e-01 -7.3258520900672058351332794e-02 -7.9508631857687320221295124e-02 6.9227951184392311212434379e-01
- 7.1362194724058802819399716e-01 -7.3287211848167638228446208e-02 -7.9504142012112991033667697e-02 6.9213567484922422501369965e-01
- 7.1375900623406574041496242e-01 -7.3315903871928447821382235e-02 -7.9499644814972542095077301e-02 6.9199181045261981548577523e-01
- 7.1389603599909423614633397e-01 -7.3344596969962178034663225e-02 -7.9495140265646940802568565e-02 6.9184791866004702320935849e-01
- 7.1403303653019167818172264e-01 -7.3373291140276214461479753e-02 -7.9490628363517834564788700e-02 6.9170399947744376500935459e-01
- 7.1417000782187689544855402e-01 -7.3401986380877720650417473e-02 -7.9486109107967009568262995e-02 6.9156005291074928997829829e-01
- 7.1430694986867038220879067e-01 -7.3430682689773749127759572e-02 -7.9481582498376932011119322e-02 6.9141607896590351334253910e-01
- 7.1444386266509329885820989e-01 -7.3459380064970991597306238e-02 -7.9477048534130748103088138e-02 6.9127207764884812668526592e-01
- 7.1458074620566836010482348e-01 -7.3488078504476125885069848e-02 -7.9472507214611451398234010e-02 6.9112804896552559874578492e-01
- 7.1471760048491939087966784e-01 -7.3516778006295399605640739e-02 -7.9467958539203090162494902e-02 6.9098399292187939746412439e-01
- 7.1485442549737177042601388e-01 -7.3545478568435102006972670e-02 -7.9463402507290017973140550e-02 6.9083990952385421202563975e-01
- 7.1499122123755154412094726e-01 -7.3574180188901244781263244e-02 -7.9458839118256796574257805e-02 6.9069579877739584183871102e-01
- 7.1512798769998664472069549e-01 -7.3602882865699492676014870e-02 -7.9454268371488778743838566e-02 6.9055166068845097449013792e-01
- 7.1526472487920533804839351e-01 -7.3631586596835496560942147e-02 -7.9449690266371650326782117e-02 6.9040749526296796290125712e-01
- 7.1540143276973799935092302e-01 -7.3660291380314643627791327e-02 -7.9445104802291638401712248e-02 6.9026330250689582612722006e-01
- 7.1553811136611567000898049e-01 -7.3688997214142071268128120e-02 -7.9440511978635261480796714e-02 6.9011908242618458242390034e-01
- 7.1567476066287105673779934e-01 -7.3717704096322653195549890e-02 -7.9435911794789620943291197e-02 6.8997483502678547129249864e-01
- 7.1581138065453742136412529e-01 -7.3746412024861332512593037e-02 -7.9431304250142248379873422e-02 6.8983056031465128654645014e-01
- 7.1594797133564991309384595e-01 -7.3775120997762566599220690e-02 -7.9426689344081286003884657e-02 6.8968625829573526608839984e-01
- 7.1608451924006222277796496e-01 -7.3803822045695327558334498e-02 -7.9422065876448788568353621e-02 6.8954194405278446122764535e-01
- 7.1622100999376558938536164e-01 -7.3832505593022595968832889e-02 -7.9417432567845405722017915e-02 6.8939763371054485485700525e-01
- 7.1635744360475994696457747e-01 -7.3861171654163199074005774e-02 -7.9412789422213830858865435e-02 6.8925332729709087864478079e-01
- 7.1649381435521442007541282e-01 -7.3889816440174005407470759e-02 -7.9408135934176907189119277e-02 6.8910903126037481580823396e-01
- 7.1663012731152730960815234e-01 -7.3918443334696118385274133e-02 -7.9403472558837076555882106e-02 6.8896473996136964323966367e-01
- 7.1676638315264262768522485e-01 -7.3947052796294113208297460e-02 -7.9398799359190738722524827e-02 6.8882045267641434094230135e-01
- 7.1690258188600508582055681e-01 -7.3975644839306700650816140e-02 -7.9394116339306014529242361e-02 6.8867616943414655672484059e-01
- 7.1703872351967301579378500e-01 -7.4004219478152388767000502e-02 -7.9389423503198788822921017e-02 6.8853189026256245153234659e-01
- 7.1717480806396438630656576e-01 -7.4032776727547183748256998e-02 -7.9384720854654741706291077e-02 6.8838761518729674193650681e-01
- 7.1731083205190104834514386e-01 -7.4061314307340059270856614e-02 -7.9380008090753725880084346e-02 6.8824334814046028707679170e-01
- 7.1744679604639116643483021e-01 -7.4089832605355954164849663e-02 -7.9375285265388048627777096e-02 6.8809908853036327869290290e-01
- 7.1758270297690207595309175e-01 -7.4118333566864716410726999e-02 -7.9370552640851882442163401e-02 6.8795483310397642640054983e-01
- 7.1771855285168295601749833e-01 -7.4146817206300896785364785e-02 -7.9365810221217872322263531e-02 6.8781058188907728823124899e-01
- 7.1785434568030936919313945e-01 -7.4175283538272268613056326e-02 -7.9361058010428184306128685e-02 6.8766633491205420014580341e-01
- 7.1799008147247445066341243e-01 -7.4203732577400399739175896e-02 -7.9356296012424165642329399e-02 6.8752209219916704530106699e-01
- 7.1812575901278452583653689e-01 -7.4232163535702277989969389e-02 -7.9351524124284950056917864e-02 6.8737785515557170423761590e-01
- 7.1826137436236814348688995e-01 -7.4260573838824769921096447e-02 -7.9346742003363876505339647e-02 6.8723362825582268165192090e-01
- 7.1839693269947546561127183e-01 -7.4288966901815828292043875e-02 -7.9341950108959641285721887e-02 6.8708940570900500777185016e-01
- 7.1853243403473432415751176e-01 -7.4317342739409528173943897e-02 -7.9337148444975413852375823e-02 6.8694518754038413899110083e-01
- 7.1866787837736390009979459e-01 -7.4345701366153496558730751e-02 -7.9332337015479079123103645e-02 6.8680097377669457880955406e-01
- 7.1880326573590069827446314e-01 -7.4374042796503614383141212e-02 -7.9327515824624356133298875e-02 6.8665676444538303879738805e-01
- 7.1893859611932564579461769e-01 -7.4402367044972592124985056e-02 -7.9322684876529284125901142e-02 6.8651255957342638414075964e-01
- 7.1907386417496965691498190e-01 -7.4430670628154130263887112e-02 -7.9317843707786744866794493e-02 6.8636836523827926548335654e-01
- 7.1920907424238633698365675e-01 -7.4458956394501937814389692e-02 -7.9312992701366560877040968e-02 6.8622417658430279185921563e-01
- 7.1934422736180470003830578e-01 -7.4487225032027107318732817e-02 -7.9308131951451976693334700e-02 6.8607999247511031182256147e-01
- 7.1947932354180799130460855e-01 -7.4515476555178664086476203e-02 -7.9303261462265489667444740e-02 6.8593581293808014720525534e-01
- 7.1961436279201140830963368e-01 -7.4543710978538277323046657e-02 -7.9298381237928775022716366e-02 6.8579163799950182411890864e-01
- 7.1974934512277888298825701e-01 -7.4571928316783317458593672e-02 -7.9293491282493702709821548e-02 6.8564746768487438988159965e-01
- 7.1988426743148659081583673e-01 -7.4600126567073113403871787e-02 -7.9288591331122287853006014e-02 6.8550330553946625666839054e-01
- 7.2001912955707725316756296e-01 -7.4628305638556644008296814e-02 -7.9283681373538347769702739e-02 6.8535915178630701927176005e-01
- 7.2015393478817602002095555e-01 -7.4656467677638380098237292e-02 -7.9278761699134989160420162e-02 6.8521500274472768587941118e-01
- 7.2028868313527183442346313e-01 -7.4684612698998217861223736e-02 -7.9273832312009767653293579e-02 6.8507085844007720165649289e-01
- 7.2042337460808314464344448e-01 -7.4712740717213413366160069e-02 -7.9268893216355953978968785e-02 6.8492671889850975652791476e-01
- 7.2055800921536183878401971e-01 -7.4740851746733172333847506e-02 -7.9263944416484696797731146e-02 6.8478258414719328506237161e-01
- 7.2069258610973552237055628e-01 -7.4768945249304774591792011e-02 -7.9258985842904958185606290e-02 6.8463845518340715745608804e-01
- 7.2082710062439325771066478e-01 -7.4797018227378400667682001e-02 -7.9254017098050619227755931e-02 6.8449433733490150366662874e-01
- 7.2096155830068131553645117e-01 -7.4825074269689054173859688e-02 -7.9249038663304086083094546e-02 6.8435022436186210281761078e-01
- 7.2109595914976420960584846e-01 -7.4853113390983758157481986e-02 -7.9244050542768909584090409e-02 6.8420611628889527189301134e-01
- 7.2123030317992442572716527e-01 -7.4881135605634446816836203e-02 -7.9239052740877877201164381e-02 6.8406201314364278864843527e-01
- 7.2136459039981282170828081e-01 -7.4909140928057477148982457e-02 -7.9234045262034591416977491e-02 6.8391791495335518824560950e-01
- 7.2149882082105953884365590e-01 -7.4937129373052357994566819e-02 -7.9229028110324284384091698e-02 6.8377382174213185983546737e-01
- 7.2163298945619414048735507e-01 -7.4965097753838777494550527e-02 -7.9224000863915525205705137e-02 6.8362973921150338441066197e-01
- 7.2176709991704424140834817e-01 -7.4993048400997089353303693e-02 -7.9218963835603395384765690e-02 6.8348566330075921637643432e-01
- 7.2190115360636664121329886e-01 -7.5020982223562959756435475e-02 -7.9213917149082810342797245e-02 6.8334159245424785922295996e-01
- 7.2203515053347588903420728e-01 -7.5048899236020219505327589e-02 -7.9208860808752223903184131e-02 6.8319752669849631576681759e-01
- 7.2216909070785373359058212e-01 -7.5076799452871531559416951e-02 -7.9203794819002110161321184e-02 6.8305346605984995633775725e-01
- 7.2230297413899990921493099e-01 -7.5104682888618212732723123e-02 -7.9198719184231866630163665e-02 6.8290941056463172476043155e-01
- 7.2243679809433591909595407e-01 -7.5132547809665092830577748e-02 -7.9193633676200719806459460e-02 6.8276536335991144799351105e-01
- 7.2257056168249678140824699e-01 -7.5160393662834765193814235e-02 -7.9188538223926477344072339e-02 6.8262132550063714386823222e-01
- 7.2270426855557146073039121e-01 -7.5188222787785183309772208e-02 -7.9183433141451292636148196e-02 6.8247729286878433541119193e-01
- 7.2283791872481528706373410e-01 -7.5216035198401309802562764e-02 -7.9178318431642968899808466e-02 6.8233326548904804642603494e-01
- 7.2297151219919542075587060e-01 -7.5243830908876582763689100e-02 -7.9173194098656363149046911e-02 6.8218924338835906784339613e-01
- 7.2310504898714467181264354e-01 -7.5271609933957137061888432e-02 -7.9168060147770349943563417e-02 6.8204522659402033735176474e-01
- 7.2323852860862836156030653e-01 -7.5299371976996751221200554e-02 -7.9162916542769884431507421e-02 6.8190121569061512563081351e-01
- 7.2337194567127671707140735e-01 -7.5327113634444595180461590e-02 -7.9157762834546660513090899e-02 6.8175721686703449897493101e-01
- 7.2350530607851981645950445e-01 -7.5354838660304165887104944e-02 -7.9152599524273656306228020e-02 6.8161322343045627203395043e-01
- 7.2363860983948147254096739e-01 -7.5382547068987670879636198e-02 -7.9147426616524976794586621e-02 6.8146923540755421910830592e-01
- 7.2377185696368206979656179e-01 -7.5410238874954696464136816e-02 -7.9142244115841114959764013e-02 6.8132525282457745419151252e-01
- 7.2390504746086514753500296e-01 -7.5437914092689767331378903e-02 -7.9137052026747659039251914e-02 6.8118127570753339572462437e-01
- 7.2403818134073871792821819e-01 -7.5465572736669581099810955e-02 -7.9131850353784463636408475e-02 6.8103730408246243577252699e-01
- 7.2417125398751658327256564e-01 -7.5493211908650020847133533e-02 -7.9126638715321773176469833e-02 6.8089334326271577779721156e-01
- 7.2430426828288074769801597e-01 -7.5520833438388751401859622e-02 -7.9121417356553494504289858e-02 6.8074938999565925978885161e-01
- 7.2443722598968152137643983e-01 -7.5548438447133367534824799e-02 -7.9116186429243798294841383e-02 6.8060544230373898333397165e-01
- 7.2457012711922230696615088e-01 -7.5576026949543073651938130e-02 -7.9110945937805224326133668e-02 6.8046150021127715934454727e-01
- 7.2470297168144148791668613e-01 -7.5603598960100326653588354e-02 -7.9105695886814611506032691e-02 6.8031756374404372955666531e-01
- 7.2483575968449698301299122e-01 -7.5631154493057156651403261e-02 -7.9100436281060337861958942e-02 6.8017363292970400845405265e-01
- 7.2496848876473607425907630e-01 -7.5658692075134412191594890e-02 -7.9095166927929061451152393e-02 6.8002971051292904203222633e-01
- 7.2510115730504021147595495e-01 -7.5686210708460238683059629e-02 -7.9089887698373911861793317e-02 6.7988579838627660745231651e-01
- 7.2523376931770067166382887e-01 -7.5713712917195100104983396e-02 -7.9084598929322874605318816e-02 6.7974189199263057581390512e-01
- 7.2536632481268370487015318e-01 -7.5741198715799512575230779e-02 -7.9079300625410742231480299e-02 6.7959799135770704303638468e-01
- 7.2549882379997299164386959e-01 -7.5768668118732354632705039e-02 -7.9073992791280398040321131e-02 6.7945409650719879035563054e-01
- 7.2563126628956864383468428e-01 -7.5796121140450839481772505e-02 -7.9068675431582788326601019e-02 6.7931020746677617250242065e-01
- 7.2576365216283400538799242e-01 -7.5823557715272618673374438e-02 -7.9063348540391403806992798e-02 6.7916632440974600282146412e-01
- 7.2589597531106808681045095e-01 -7.5850974051490799299202195e-02 -7.9058011619947840542543815e-02 6.7902245438669672772391550e-01
- 7.2602824199387983039599703e-01 -7.5878374059487802005818935e-02 -7.9052665189364573761210409e-02 6.7887859025294294834651510e-01
- 7.2616045221882719040706888e-01 -7.5905757753389813125011187e-02 -7.9047309253621370062070639e-02 6.7873473203674672404872581e-01
- 7.2629260599656719765704338e-01 -7.5933125147710070490525425e-02 -7.9041943817353549350812614e-02 6.7859087976305121348019611e-01
- 7.2642470333811770544230058e-01 -7.5960476257003459177319371e-02 -7.9036568885164873443649469e-02 6.7844703345640611225064731e-01
- 7.2655674425303806707177046e-01 -7.5987811095635876545983933e-02 -7.9031184461835157772924276e-02 6.7830319314291820376183750e-01
- 7.2668872449571342286844811e-01 -7.6015127044786731658199130e-02 -7.9025790205199133997560068e-02 6.7815936374395224817135386e-01
- 7.2682064621613062804783567e-01 -7.6042425450453685065177467e-02 -7.9020386295735461912315145e-02 6.7801554282719178612381938e-01
- 7.2695251154101536705809394e-01 -7.6069707638169947738759902e-02 -7.9014972910971967290372220e-02 6.7787172798393924288973267e-01
- 7.2708432048058646568478025e-01 -7.6096973622361202549413406e-02 -7.9009550055661889600422398e-02 6.7772791923957464987893218e-01
- 7.2721607304475910371621694e-01 -7.6124223417410763481427693e-02 -7.9004117734602641309749060e-02 6.7758411661979855988846566e-01
- 7.2734776924366961736723169e-01 -7.6151457037725328591548646e-02 -7.8998675952575717063020022e-02 6.7744032015006983016291997e-01
- 7.2747940707997915676941147e-01 -7.6178673261283622042405739e-02 -7.8993224551595325744202114e-02 6.7729653217010776788953308e-01
- 7.2761098421110403933198540e-01 -7.6205870662413521809952499e-02 -7.8987763347988335094207457e-02 6.7715275542023345423103819e-01
- 7.2774250501030868232277271e-01 -7.6233051941677218432680263e-02 -7.8982292699229017518547380e-02 6.7700898489824479220544617e-01
- 7.2787396948586735589969976e-01 -7.6260217113223699447743797e-02 -7.8976812610361171729245200e-02 6.7686522063158094386636776e-01
- 7.2800537764829120757070768e-01 -7.6287366191477190557890253e-02 -7.8971323086179143202478770e-02 6.7672146264527077708095248e-01
- 7.2813672950906638270396343e-01 -7.6314499190979032117176928e-02 -7.8965824131373929528621147e-02 6.7657771096328911397677075e-01
- 7.2826802507794952123987287e-01 -7.6341616126050074186970562e-02 -7.8960315750845097571009035e-02 6.7643396561146529322172682e-01
- 7.2839925823359075174323607e-01 -7.6368713263104626154387233e-02 -7.8954797458493874984242211e-02 6.7629023369968976897581570e-01
- 7.2853043488480262457329673e-01 -7.6395794230665087232168275e-02 -7.8949269733032428897345767e-02 6.7614650844254708950131771e-01
- 7.2866155527544307357601383e-01 -7.6422859186261946073948081e-02 -7.8943732598160953894961267e-02 6.7600278959545689883015029e-01
- 7.2879261941714845729478611e-01 -7.6449908144424108535908147e-02 -7.8938186058607126560637823e-02 6.7585907718220172846201876e-01
- 7.2892362732046456219592301e-01 -7.6476941119540051139402692e-02 -7.8932630119233918031262931e-02 6.7571537122773472905379322e-01
- 7.2905457899394721099639582e-01 -7.6503958125745785689986178e-02 -7.8927064785145287229006783e-02 6.7557167175915111556605552e-01
- 7.2918547056433247188778068e-01 -7.6530956815037270990487173e-02 -7.8921489752263637718066036e-02 6.7542798329809472512863522e-01
- 7.2931630345056563946570805e-01 -7.6557938066851655145583777e-02 -7.8915905139359004971666423e-02 6.7528430424243557350649780e-01
- 7.2944708014114134631000752e-01 -7.6584903402445211884064236e-02 -7.8910311147940184750559922e-02 6.7514063174936878031218157e-01
- 7.2957780064646804429884241e-01 -7.6611852836156915658172295e-02 -7.8904707782939773053065835e-02 6.7499696584396773335612352e-01
- 7.2970846497683772291509285e-01 -7.6638786382306964273247729e-02 -7.8899095049312792382600890e-02 6.7485330655142683475844478e-01
- 7.2983907314286233791733594e-01 -7.6665704055250014081757115e-02 -7.8893472951985330055002521e-02 6.7470965389658910105197265e-01
- 7.2996962351066163599000447e-01 -7.6692604875216979776197945e-02 -7.8887841366458502645464534e-02 6.7456600981201042532831025e-01
- 7.3010011302126620602592766e-01 -7.6719487006514847093896492e-02 -7.8882200057143872506948412e-02 6.7442237788639280982039281e-01
- 7.3023054640026863193469353e-01 -7.6746353316978765946032581e-02 -7.8876549400711704063127172e-02 6.7427875267662706892934921e-01
- 7.3036092365778015889077324e-01 -7.6773203820873575642380615e-02 -7.8870889402190488826072112e-02 6.7413513420807580356353128e-01
- 7.3049124480545224447070041e-01 -7.6800038532648995381890700e-02 -7.8865220066435967605222856e-02 6.7399152250442839751087831e-01
- 7.3062150985445795114969769e-01 -7.6826857466689935094450448e-02 -7.8859541398367996589691131e-02 6.7384791758988493715065715e-01
- 7.3075171881316447475285258e-01 -7.6853660637031501190463700e-02 -7.8853853403246382258728886e-02 6.7370431949168407825823124e-01
- 7.3088186593621518039043394e-01 -7.6880444599904368407905508e-02 -7.8848155637095407310965811e-02 6.7356073492770185406897099e-01
- 7.3101195639567106976386412e-01 -7.6907212478972863944903793e-02 -7.8842448509207671558662867e-02 6.7341715792542788943109144e-01
- 7.3114199079988761997839219e-01 -7.6933964646833732925479410e-02 -7.8836732070818635320641476e-02 6.7327358781500634687944284e-01
- 7.3127196915973546875733291e-01 -7.6960701117800595083551229e-02 -7.8831006326934724426358514e-02 6.7313002462093629585382359e-01
- 7.3140189148569267896249357e-01 -7.6987421906133945981309807e-02 -7.8825271282616585222235983e-02 6.7298646836813880156569212e-01
- 7.3153175778861034839195554e-01 -7.7014127026134041043015088e-02 -7.8819526942889392429059114e-02 6.7284291908112370261818569e-01
- 7.3166156456077302561169518e-01 -7.7040814390960304924860225e-02 -7.8813773041242790595717338e-02 6.7269938088381131535697932e-01
- 7.3179131249853290874796130e-01 -7.7067484431454891247170735e-02 -7.8808009637143267012149295e-02 6.7255585300561770978333698e-01
- 7.3192100444814323090270136e-01 -7.7094138855938368348752476e-02 -7.8802236954408300118046782e-02 6.7241233216878459888476982e-01
- 7.3205064041875334002185127e-01 -7.7120777678473126370839452e-02 -7.8796454998306175721012323e-02 6.7226881839964947040755305e-01
- 7.3218022042149055739201913e-01 -7.7147400913357727647579054e-02 -7.8790663773877653297539325e-02 6.7212531172239231569420781e-01
- 7.3230974446862684423820156e-01 -7.7174008575025557221671590e-02 -7.8784863286035164420262333e-02 6.7198181215994012838166327e-01
- 7.3243921128832800704344663e-01 -7.7200599917234574709468120e-02 -7.8779053442301696930094579e-02 6.7183832123397546620680032e-01
- 7.3256861710729015424448107e-01 -7.7227172710913380426767105e-02 -7.8773233958943214561010393e-02 6.7169484338964591252363334e-01
- 7.3269796700361300434423129e-01 -7.7253729983309288309456520e-02 -7.8767405229370979213854298e-02 6.7155137273768605865598147e-01
- 7.3282726098829764627140548e-01 -7.7280271748669346343341147e-02 -7.8761567258688644499464715e-02 6.7140790930238258837903231e-01
- 7.3295649907239879272680128e-01 -7.7306798021241282525828353e-02 -7.8755720052001182418521807e-02 6.7126445310795856968866246e-01
- 7.3308568126698625544435117e-01 -7.7333308815268980707102742e-02 -7.8749863614419532420463099e-02 6.7112100417861397794183631e-01
- 7.3321480758314616643644968e-01 -7.7359804144992619368004227e-02 -7.8743997951060490381181012e-02 6.7097756253852613994581588e-01
- 7.3334387264435074715862584e-01 -7.7386280846587690573912255e-02 -7.8738122659738424280462255e-02 6.7083413451593187915023009e-01
- 7.3347288053682180297698778e-01 -7.7412741346636712580497885e-02 -7.8732238055512160368465402e-02 6.7069071537109115066499498e-01
- 7.3360183299595904671264179e-01 -7.7439186676184629254393599e-02 -7.8726344273614565216767858e-02 6.7054730311083399207916500e-01
- 7.3373072996438637449756470e-01 -7.7465616808798098968935619e-02 -7.8720441314078071215476484e-02 6.7040389783896570108367996e-01
- 7.3385957145248692512495836e-01 -7.7492031757848175987923867e-02 -7.8714529181986792050196300e-02 6.7026049958002986706162574e-01
- 7.3398835661422678899867833e-01 -7.7518431032374629507941677e-02 -7.8708607817599848810452556e-02 6.7011710936256585480208514e-01
- 7.3411707964663031056318232e-01 -7.7544811239190519769337584e-02 -7.8702676791755271645811831e-02 6.6997373402753190863023747e-01
- 7.3424574723475932724880977e-01 -7.7571176314183851174810513e-02 -7.8696736610482542761957347e-02 6.6983036577910104458766227e-01
- 7.3437435938932782431010082e-01 -7.7597526270734740183598888e-02 -7.8690787278862278641966554e-02 6.6968700464142949524415371e-01
- 7.3450291612128415508209400e-01 -7.7623861122247075905455915e-02 -7.8684828801953432542148903e-02 6.6954365063841159155799687e-01
- 7.3463141744182303138899215e-01 -7.7650180882149824612703526e-02 -7.8678861184791337723964944e-02 6.6940030379366555202125255e-01
- 7.3475985963460455074880429e-01 -7.7676483387513289846637576e-02 -7.8672884155647063164629174e-02 6.6925696850829852202480197e-01
- 7.3488824264145102826972789e-01 -7.7702768619047693499091167e-02 -7.8666897716060196765752721e-02 6.6911364489152769241542273e-01
- 7.3501657027183409098824995e-01 -7.7729038810416761773325334e-02 -7.8660902153658590618690027e-02 6.6897032850778315182793676e-01
- 7.3514484253657952361749039e-01 -7.7755293974973882509260648e-02 -7.8654897473558180176489429e-02 6.6882701938106337014033898e-01
- 7.3527305944735910081533348e-01 -7.7781534126167922726935444e-02 -7.8648883680777478821788407e-02 6.6868371753443167637698252e-01
- 7.3540122101692695366637054e-01 -7.7807759277573745881895206e-02 -7.8642860780209655757744258e-02 6.6854042298975524527548941e-01
- 7.3552932066151643919482694e-01 -7.7833965615519792868859383e-02 -7.8636828292895671888018683e-02 6.6839714353055401652170531e-01
- 7.3565736406026038807226541e-01 -7.7860156451837622681999562e-02 -7.8630786641862057684271292e-02 6.6825387251649126518771027e-01
- 7.3578535215092344401455193e-01 -7.7886332339426392334935656e-02 -7.8624735900877165684086378e-02 6.6811060888102302701696544e-01
- 7.3591328494559338224689782e-01 -7.7912493291747708656913574e-02 -7.8618676074949128684821176e-02 6.6796735264672324472456921e-01
- 7.3604116245659578776638909e-01 -7.7938639322287048272208665e-02 -7.8612607169063000722708523e-02 6.6782410383589507762991389e-01
- 7.3616898275592057565575033e-01 -7.7964769324797941751903352e-02 -7.8606529047482526229018163e-02 6.6768086475752130848348997e-01
- 7.3629674221615692975007050e-01 -7.7990881215148952221305478e-02 -7.8600441451062472153488159e-02 6.6753763972742152787986925e-01
- 7.3642444642750581884627081e-01 -7.8016978234832529137676715e-02 -7.8594344792461870441435678e-02 6.6739442219551914359243483e-01
- 7.3655209540136434842594326e-01 -7.8043060397189945032181413e-02 -7.8588239076812782535341739e-02 6.6725121218511529441741459e-01
- 7.3667968914919712553057707e-01 -7.8069127715565012071152751e-02 -7.8582124309244327786672102e-02 6.6710800971943051695944860e-01
- 7.3680722768248063658802494e-01 -7.8095180203297365206793756e-02 -7.8576000494890441139261839e-02 6.6696481482166558585333860e-01
- 7.3693470621415346766269749e-01 -7.8121215116542422340906171e-02 -7.8569867292911571565738882e-02 6.6682163318187903655598348e-01
- 7.3706212684326588568950456e-01 -7.8147233676520377887442237e-02 -7.8563724860815670192337734e-02 6.6667846236246675051262400e-01
- 7.3718949229318242455377685e-01 -7.8173237456867036843100038e-02 -7.8557573399808094949392512e-02 6.6653529918494647255045038e-01
- 7.3731680257655018984053186e-01 -7.8199226471027796780965957e-02 -7.8551412914910676010826762e-02 6.6639214367119969928410228e-01
- 7.3744405770513632436546914e-01 -7.8225200732338490139383680e-02 -7.8545243411259374477495498e-02 6.6624899584407271113661864e-01
- 7.3757125753759267272613442e-01 -7.8251160167632727304720675e-02 -7.8539064883518527881989257e-02 6.6610585590734472383189768e-01
- 7.3769839488506105951159952e-01 -7.8277100675363170401155344e-02 -7.8532876822720712461922687e-02 6.6596273240460768239046274e-01
- 7.3782547711184398586681255e-01 -7.8303026480958395905140890e-02 -7.8526679761333970097858526e-02 6.6581961666375000241657744e-01
- 7.3795250423170655196258849e-01 -7.8328937597956158067624699e-02 -7.8520473704277976567666997e-02 6.6567650870538053187175365e-01
- 7.3807947625581482586909488e-01 -7.8354834039582016425029565e-02 -7.8514258656800783864326831e-02 6.6553340855297782319155431e-01
- 7.3820639319452541204924501e-01 -7.8380715818959140195332225e-02 -7.8508034624256053946034228e-02 6.6539031623091271505643363e-01
- 7.3833325205172772864870012e-01 -7.8406581237929817707055236e-02 -7.8501801398848380930672874e-02 6.6524723532716434348799339e-01
- 7.3846005135829617671561209e-01 -7.8432429475102233284999897e-02 -7.8495558882874072459401305e-02 6.6510416762353918862515911e-01
- 7.3858679561720530504231874e-01 -7.8458263100993672067851037e-02 -7.8489307399702626377724357e-02 6.6496110782135142702742314e-01
- 7.3871348484018117819260851e-01 -7.8484082128854867899114822e-02 -7.8483046954548246754157503e-02 6.6481805594342657794726392e-01
- 7.3884011903896151807202841e-01 -7.8509886571932599452772195e-02 -7.8476777552629342626921982e-02 6.6467501201257039866732157e-01
- 7.3896669822529914561926034e-01 -7.8535676443470106566913103e-02 -7.8470499199168000648008103e-02 6.6453197605156666405434862e-01
- 7.3909321654654880351387192e-01 -7.8561448440650119562356224e-02 -7.8464211489499169349670638e-02 6.6438895504750417053685396e-01
- 7.3921967824909862176951947e-01 -7.8587204980531469300508718e-02 -7.8457914727044178460069190e-02 6.6424594399915670717149396e-01
- 7.3934608497717024810924613e-01 -7.8612946999683963600347170e-02 -7.8451609031040023256586835e-02 6.6410294099137734402660271e-01
- 7.3947243674155416215398873e-01 -7.8638674511202391603781336e-02 -7.8445294406858712132901701e-02 6.6395994604799069005451884e-01
- 7.3959873355330363331461285e-01 -7.8664387528206647370865312e-02 -7.8438970859844803218408060e-02 6.6381695919252481363770357e-01
- 7.3972497420093075159996943e-01 -7.8690085374253815331258011e-02 -7.8432638310072910758918852e-02 6.6367398190297199889187141e-01
- 7.3985115365540154996892852e-01 -7.8715765232437159837353136e-02 -7.8426296415722296373473910e-02 6.6353102020113308157078791e-01
- 7.3997727819663694504015439e-01 -7.8741430646931453996018035e-02 -7.8419945616476222083335301e-02 6.6338806665622229719048164e-01
- 7.4010334783465281383030288e-01 -7.8767081630699536942685768e-02 -7.8413585917838965477777435e-02 6.6324512129289525663722316e-01
- 7.4022936258130300757329678e-01 -7.8792718196913857919838620e-02 -7.8407217325088707227109808e-02 6.6310218413375465740244863e-01
- 7.4035532244975132964981412e-01 -7.8818340358894248276477867e-02 -7.8400839843344088953003279e-02 6.6295925519993514907213239e-01
- 7.4048122337379163049320141e-01 -7.8843945847699145601517046e-02 -7.8394453198871158483562738e-02 6.6281633937439110582090507e-01
- 7.4060706603779158374578628e-01 -7.8869535060528253578304714e-02 -7.8388057444785386174146424e-02 6.6267343588245908314604549e-01
- 7.4073285386052201140216766e-01 -7.8895109919471947956814972e-02 -7.8381652820095820688450772e-02 6.6253054068746997096184259e-01
- 7.4085858685397665279737112e-01 -7.8920670437677975517232198e-02 -7.8375239330096463374886184e-02 6.6238765381183417613186748e-01
- 7.4098426503015923927364383e-01 -7.8946216628287796401863829e-02 -7.8368816980084923806693098e-02 6.6224477527794523012971695e-01
- 7.4110988840107139274948622e-01 -7.8971748504437555560286910e-02 -7.8362385775364029605327687e-02 6.6210190510819144638077205e-01
- 7.4123545005320079503974284e-01 -7.8997262225861605844379199e-02 -7.8355945252990472082998963e-02 6.6195905159515544546877663e-01
- 7.4136095637419030524029040e-01 -7.9022761361939031221623964e-02 -7.8349495851296468984514831e-02 6.6181620715310951474918966e-01
- 7.4148640792711995040065176e-01 -7.9048246233748745148695036e-02 -7.8343037613388941120540210e-02 6.6167337114637791994908866e-01
- 7.4161180472469934166213079e-01 -7.9073716854471981507757050e-02 -7.8336570544507724833671602e-02 6.6153054359652851967865672e-01
- 7.4173714678002711231386002e-01 -7.9099173237371908640191975e-02 -7.8330094649522938321517529e-02 6.6138772452471905616278036e-01
- 7.4186243180702760025013731e-01 -7.9124614123812275767733126e-02 -7.8323609778803371384015009e-02 6.6124491670207863336372611e-01
- 7.4198765694032986495187743e-01 -7.9150037938079981225669712e-02 -7.8317115747619514554145326e-02 6.6110212359632758438721112e-01
- 7.4211282736872996590449247e-01 -7.9175447564531362121265090e-02 -7.8310612909234397771562897e-02 6.6095933903949488641416110e-01
- 7.4223794310432700260804495e-01 -7.9200843016231606275034949e-02 -7.8304101269014464437034917e-02 6.6081656305379354865436881e-01
- 7.4236300415929390439373492e-01 -7.9226224306250606077561827e-02 -7.8297580832305022080497281e-02 6.6067379566134798452026189e-01
- 7.4248801054581636815754564e-01 -7.9251591447653840782905377e-02 -7.8291051604453973378205944e-02 6.6053103688426240136521983e-01
- 7.4261295713639963178565040e-01 -7.9276941622749855231866434e-02 -7.8284513250775886183951968e-02 6.6038829290438227914705749e-01
- 7.4273784675809950694969075e-01 -7.9302276403177413000022966e-02 -7.8277965964865539594264021e-02 6.6024556037494064320014786e-01
- 7.4286268174987879486792508e-01 -7.9327597084978510033614896e-02 -7.8271409906390379540574997e-02 6.6010283653031487371976027e-01
- 7.4298746212398658617104275e-01 -7.9352903681187664242102642e-02 -7.8264845080715780833990891e-02 6.5996012139250770367482346e-01
- 7.4311218789249611216263247e-01 -7.9378196204813816772016821e-02 -7.8258271493234790594506478e-02 6.5981741498371260234989677e-01
- 7.4323685854793630767289869e-01 -7.9403474384169045463544023e-02 -7.8251689115387795814271499e-02 6.5967471794976817456301887e-01
- 7.4336146768399846695984934e-01 -7.9428734717291962774687875e-02 -7.8245097532952653796023412e-02 6.5953203802086857177044976e-01
- 7.4348602225203408444542674e-01 -7.9453981027546957682794471e-02 -7.8238497207517049281122468e-02 6.5938936689139249214264282e-01
- 7.4361052226638257867108450e-01 -7.9479213328164738383563304e-02 -7.8231888144206951363202052e-02 6.5924670458095302461032361e-01
- 7.4373496773899416822928288e-01 -7.9504431632096597692971329e-02 -7.8225270348460523850420145e-02 6.5910405111184444670868743e-01
- 7.4385935868087416089622366e-01 -7.9529635952178059921102715e-02 -7.8218643825842440464590766e-02 6.5896140650742129896144661e-01
- 7.4398369174624079391833220e-01 -7.9554824469957624577531874e-02 -7.8212008364221874412436364e-02 6.5881877482872630569232797e-01
- 7.4410796621429764474697777e-01 -7.9579996806127359376681341e-02 -7.8205363923494267130998026e-02 6.5867615698334813778558328e-01
- 7.4423218619187270217452124e-01 -7.9605155208270494959776897e-02 -7.8198710774479388008195713e-02 6.5853354806990826997292743e-01
- 7.4435635169137992495080880e-01 -7.9630299689346220604058146e-02 -7.8192048922584023173953938e-02 6.5839094811014220454126189e-01
- 7.4448046272524515121205013e-01 -7.9655430262309104283424688e-02 -7.8185378373217623293456313e-02 6.5824835712576457158462517e-01
- 7.4460451930590598745851594e-01 -7.9680546940108676334801885e-02 -7.8178699131792678267416363e-02 6.5810577513847001718261254e-01
- 7.4472851524994487792952214e-01 -7.9705646377542946345862163e-02 -7.8172010808266759185336525e-02 6.5796320963663545988708847e-01
- 7.4485245551541479080981389e-01 -7.9730731277189159644791516e-02 -7.8165313726081347978080771e-02 6.5782065468694805865368380e-01
- 7.4497634136807178162342780e-01 -7.9755802331310327035751584e-02 -7.8158607970521695729182454e-02 6.5767810880129007333749769e-01
- 7.4510017281947704681499545e-01 -7.9780859552717298122104239e-02 -7.8151893547137654683076846e-02 6.5753557200231538271140153e-01
- 7.4522394988129903037332724e-01 -7.9805902954226792811454061e-02 -7.8145170461469279366006901e-02 6.5739304431255096705655205e-01
- 7.4534767098224841141984598e-01 -7.9830931693214424171856081e-02 -7.8138438618475650199179938e-02 6.5725052766551528282690242e-01
- 7.4547133186376912661330607e-01 -7.9855943485395958214567713e-02 -7.8131697755998485988016000e-02 6.5710802724139727448715576e-01
- 7.4559493839751644905788908e-01 -7.9880941507309871640885035e-02 -7.8124948249832862345876094e-02 6.5696553599170659509809411e-01
- 7.4571849059429773376450612e-01 -7.9905925771636146515142229e-02 -7.8118190105654405908097715e-02 6.5682305393991535780173763e-01
- 7.4584198846657112635938347e-01 -7.9930896291236341877350924e-02 -7.8111423328927176434888224e-02 6.5668058110761895473928007e-01
- 7.4596543202818765827544212e-01 -7.9955853079122618520813148e-02 -7.8104647924936376757187872e-02 6.5653811751482549219360862e-01
- 7.4608881687250516723253213e-01 -7.9980793777754771722854343e-02 -7.8097863623927232801236187e-02 6.5639566852763764348566156e-01
- 7.4621214441664873717741102e-01 -8.0005719161007418649411704e-02 -7.8091070520806146748604704e-02 6.5625323247322076003484881e-01
- 7.4633541768949873684846352e-01 -8.0030630861693846656024220e-02 -7.8084268809449311476988953e-02 6.5611080572614743910975221e-01
- 7.4645863670371459530628044e-01 -8.0055528892652633166093779e-02 -7.8077458495320203879508369e-02 6.5596838830774539808032841e-01
- 7.4658180147196517850716191e-01 -8.0080413266716193865235596e-02 -7.8070639583884535173119446e-02 6.5582598023932425768123267e-01
- 7.4670491200692645783476564e-01 -8.0105283996711490468456418e-02 -7.8063812080611597044033090e-02 6.5568358154217765143556562e-01
- 7.4682796107481275171835478e-01 -8.0130137230793985203547436e-02 -7.8056975545831727703038894e-02 6.5554120101855506419497033e-01
- 7.4695095575672043608506101e-01 -8.0154976760171456340309248e-02 -7.8050130421354224630192675e-02 6.5539883013010324930291972e-01
- 7.4707389624499342950514347e-01 -8.0179802694455654110683440e-02 -7.8043276724137425337524121e-02 6.5525646868028919467263904e-01
- 7.4719678255290900015239686e-01 -8.0204615046501545605472927e-02 -7.8036414459592126635634202e-02 6.5511411668969110611016049e-01
- 7.4731961469428709321505266e-01 -8.0229413829218498843687257e-02 -7.8029543633060943763624095e-02 6.5497177417826080159102276e-01
- 7.4744239003208068350403437e-01 -8.0254197649541031411857261e-02 -7.8022664089503465656427750e-02 6.5482944438314305557469197e-01
- 7.4756510645731777398026452e-01 -8.0278965398704729694578930e-02 -7.8015775706515202991830904e-02 6.5468712990472277546416535e-01
- 7.4768776875449483032554099e-01 -8.0303719627208280940067198e-02 -7.8008878780883000869650346e-02 6.5454482497404986585110009e-01
- 7.4781037693749663475273337e-01 -8.0328460347927815865531898e-02 -7.8001973317960868192777468e-02 6.5440252961096878614455363e-01
- 7.4793293101970914626974718e-01 -8.0353187573677070654198928e-02 -7.7995059323172757914655051e-02 6.5426024383588465838101911e-01
- 7.4805543101349725176874017e-01 -8.0377901317149044735366203e-02 -7.7988136802081706178135789e-02 6.5411796767035945698864907e-01
- 7.4817787146100545037086249e-01 -8.0402598703083180686768117e-02 -7.7981205432462633031498456e-02 6.5397570778827129878152391e-01
- 7.4830025590471660468239179e-01 -8.0427281615620127563914821e-02 -7.7974265433413555981267962e-02 6.5383345992307317917635601e-01
- 7.4842258630087843407352466e-01 -8.0451951094608439851718629e-02 -7.7967316927187196862192309e-02 6.5369122173312887991158959e-01
- 7.4854486266238429159614043e-01 -8.0476607152759227492566652e-02 -7.7960359919295674213657321e-02 6.5354899323936421762226701e-01
- 7.4866708500196554876282562e-01 -8.0501249802759675122665328e-02 -7.7953394415276711093554241e-02 6.5340677446288364382809277e-01
- 7.4878925244974403607756130e-01 -8.0525878593634150903746161e-02 -7.7946420368485355711918317e-02 6.5326456649983410951421092e-01
- 7.4891135937950903400661673e-01 -8.0550490578829375687419656e-02 -7.7939437451440593540574753e-02 6.5312237624322655449304875e-01
- 7.4903341232730336063383447e-01 -8.0575089204323532832141552e-02 -7.7932446057599399913407012e-02 6.5298019577052301976038962e-01
- 7.4915541130798601887619270e-01 -8.0599674482999372759906009e-02 -7.7925446192233599473908612e-02 6.5283802510036004207449878e-01
- 7.4927735633423098171590482e-01 -8.0624246427490789401737459e-02 -7.7918437860911016201725943e-02 6.5269586425386560968320282e-01
- 7.4939924741773666916344609e-01 -8.0648805050315477971345501e-02 -7.7911421069333741673546001e-02 6.5255371325327937714888549e-01
- 7.4952108087212587772540928e-01 -8.0673348430133920428097838e-02 -7.7904395606678333852102014e-02 6.5241157663434257152346163e-01
- 7.4964285671320007864437684e-01 -8.0697876589314779249839660e-02 -7.7897361481137697425403132e-02 6.5226945441828365623848640e-01
- 7.4976457865441525907357345e-01 -8.0722391475391425119667588e-02 -7.7890318914375242242975617e-02 6.5212734211124578909135607e-01
- 7.4988624670869341581891376e-01 -8.0746893100976990798045563e-02 -7.7883267911947440254039066e-02 6.5198523973403266218440422e-01
- 7.5000786088879189961176053e-01 -8.0771381478659767805261538e-02 -7.7876208479436298537379457e-02 6.5184314730762848988376845e-01
- 7.5012942120777836851885922e-01 -8.0795856621056399982094831e-02 -7.7869140622385257799464853e-02 6.5170106485265488771574383e-01
- 7.5025092116276359544002617e-01 -8.0820315155749153368525128e-02 -7.7862063971835593356729532e-02 6.5155900035729397146155861e-01
- 7.5037236640896154415969477e-01 -8.0844760035023804922715840e-02 -7.7854978859963355763973425e-02 6.5141694694827312339668879e-01
- 7.5049375783575644760503565e-01 -8.0869191727230560484684929e-02 -7.7847885342831837918176063e-02 6.5127490357497963557875664e-01
- 7.5061509545592874914632375e-01 -8.0893610244912650397708376e-02 -7.7840783426041032511122353e-02 6.5113287025833044285860751e-01
- 7.5073637928267755725642019e-01 -8.0918015600652690166860737e-02 -7.7833673115137336218083419e-02 6.5099084701875375991164674e-01
- 7.5085760739104545624655884e-01 -8.0942406804019609301015237e-02 -7.7826554305302317326997752e-02 6.5084883625057776690425726e-01
- 7.5097877628685594242341494e-01 -8.0966782060881176130706649e-02 -7.7819426805187663642726648e-02 6.5070684227316566428100941e-01
- 7.5109989143269484390685875e-01 -8.0991144204031140230171104e-02 -7.7812290930077798734032513e-02 6.5056485843498268462070655e-01
- 7.5122095284009937632418996e-01 -8.1015493245827768786782030e-02 -7.7805146685761911173884187e-02 6.5042288475833609506793209e-01
- 7.5134196052234503149236389e-01 -8.1039829198813709276727479e-02 -7.7797994077796001066715803e-02 6.5028092126352399215960531e-01
- 7.5146291449414726049127466e-01 -8.1064152075683126863481220e-02 -7.7790833111543514211128070e-02 6.5013896796917558518202895e-01
- 7.5158381001585794489727732e-01 -8.1088459446308047695595178e-02 -7.7783663527461244235894355e-02 6.4999703072777037515805887e-01
- 7.5170464922783297723185569e-01 -8.1112752423348213892673186e-02 -7.7776485451602928034020579e-02 6.4985510695413173376522309e-01
- 7.5182543477058216829789217e-01 -8.1137032372040729377715707e-02 -7.7769299036963487892215596e-02 6.4971319344552580510310236e-01
- 7.5194616665724611781485009e-01 -8.1161299304864931158931540e-02 -7.7762104289136754764477644e-02 6.4957129022236270721180063e-01
- 7.5206684490110420338027097e-01 -8.1185553234308829861909373e-02 -7.7754901213700849949006511e-02 6.4942939730488447036549360e-01
- 7.5218746933085245398586949e-01 -8.1209794078374170078760130e-02 -7.7747689806048556060424914e-02 6.4928751494019854018091564e-01
- 7.5230803295958947884969348e-01 -8.1234018271195237992365890e-02 -7.7740469686752675104735033e-02 6.4914565175534510999000304e-01
- 7.5242854298799244361362071e-01 -8.1258229508360521609056093e-02 -7.7733241259249838406297783e-02 6.4900379893916260165553922e-01
- 7.5254899942888597852430621e-01 -8.1282427802266410399312235e-02 -7.7726004529196451864336836e-02 6.4886195651238420811779406e-01
- 7.5266940229635204140379301e-01 -8.1306613165439398094314072e-02 -7.7718759502079029499732599e-02 6.4872012449428151370511841e-01
- 7.5278975160446970349426010e-01 -8.1330785610398720342217871e-02 -7.7711506183386971913229502e-02 6.4857830290411810914008583e-01
- 7.5291004437317976538679432e-01 -8.1354943627234554970328873e-02 -7.7704244416651732652034923e-02 6.4843649544810755269708125e-01
- 7.5303027924019905192665192e-01 -8.1379086533286584814739228e-02 -7.7696974133920487792792642e-02 6.4829470384453158349202795e-01
- 7.5315046058856771615808157e-01 -8.1403216568438976907806648e-02 -7.7689695579339190789625036e-02 6.4815292273377111964549613e-01
- 7.5327058843267757914929916e-01 -8.1427333745202654102790518e-02 -7.7682408758369708712265833e-02 6.4801115213469351328257062e-01
- 7.5339066278653576969048800e-01 -8.1451438076039953117835068e-02 -7.7675113676528767525653052e-02 6.4786939206660165702089671e-01
- 7.5351068366310036683586304e-01 -8.1475529573292806984063930e-02 -7.7667810339480711223636433e-02 6.4772764255000681021812170e-01
- 7.5363064528495793403806147e-01 -8.1499605319264076253027440e-02 -7.7660498443514580646507284e-02 6.4758591074983040680734803e-01
- 7.5375055189544604150597706e-01 -8.1523667474520000730819902e-02 -7.7653178222426955112922542e-02 6.4744419147195286790008595e-01
- 7.5387040507166758196433420e-01 -8.1547716843539452824529690e-02 -7.7645849765611341108950683e-02 6.4730248280758373446985843e-01
- 7.5399020482710465973497094e-01 -8.1571753438678340497602903e-02 -7.7638513078674170619919437e-02 6.4716078477659078060924003e-01
- 7.5410995117525103648148388e-01 -8.1595777272287187131816211e-02 -7.7631168167223096876483623e-02 6.4701909739882057515103497e-01
- 7.5422964289081095845546088e-01 -8.1619787732746654218551896e-02 -7.7623814971586879707388107e-02 6.4687742222504451827802541e-01
- 7.5434927511935734312231716e-01 -8.1643782385639018794876165e-02 -7.7616453242332905659850439e-02 6.4673576529425658154792700e-01
- 7.5446885398319452065152291e-01 -8.1667764324117320118290309e-02 -7.7609083308166210146694652e-02 6.4659411907908037608905261e-01
- 7.5458837949726842442288444e-01 -8.1691733560645421463597415e-02 -7.7601705174506027673508868e-02 6.4645248359763629597551926e-01
- 7.5470785167468956711189776e-01 -8.1715690107483862636428285e-02 -7.7594318847030357977345716e-02 6.4631085887017103441820609e-01
- 7.5482727052768427977724741e-01 -8.1739633976790376790333426e-02 -7.7586924331541698429681730e-02 6.4616924491795368901136953e-01
- 7.5494663203776302129455189e-01 -8.1763563160554858511019916e-02 -7.7579521424268438334337361e-02 6.4602764675337998045989707e-01
- 7.5506593694834711616437062e-01 -8.1787478044615571914910390e-02 -7.7572110171217872887083900e-02 6.4588606349649702043080879e-01
- 7.5518518857946970168626422e-01 -8.1811380298295446888978688e-02 -7.7564690749492404275855506e-02 6.4574449107430598182588710e-01
- 7.5530438694466772719948722e-01 -8.1835269933850651735696147e-02 -7.7557263164726053528141847e-02 6.4560292950651243515380884e-01
- 7.5542353205726919807005970e-01 -8.1859146963508266914288924e-02 -7.7549827422584302616392904e-02 6.4546137881305831740519352e-01
- 7.5554262393091253802168694e-01 -8.1883011399521990480998568e-02 -7.7542383528691680161237798e-02 6.4531983901351341881280632e-01
- 7.5566165575516575092507310e-01 -8.1906859856238176109677340e-02 -7.7534931141269983201347316e-02 6.4517831859321694842890338e-01
- 7.5578063386461424855156110e-01 -8.1930695501662223478867020e-02 -7.7527470590190716848155716e-02 6.4503680973546251298245124e-01
- 7.5589955877889247748413482e-01 -8.1954518600245107595725358e-02 -7.7520001906927926693668951e-02 6.4489531183226012078790745e-01
- 7.5601843051136397022560232e-01 -8.1978329164167959564046839e-02 -7.7512525097157766729161210e-02 6.4475382490346477837306338e-01
- 7.5613724907575474709631180e-01 -8.2002127205643773888432690e-02 -7.7505040166507457866096331e-02 6.4461234896850039266524846e-01
- 7.5625601220165994398314524e-01 -8.2025911604012013977893503e-02 -7.7497547005634243033611597e-02 6.4447088688511233733891004e-01
- 7.5637471715076032285907104e-01 -8.2049681014296993453172036e-02 -7.7490045484342490178519824e-02 6.4432944209572962090959436e-01
- 7.5649336897724683836941040e-01 -8.2073437948930155760862704e-02 -7.7482535861553972211801522e-02 6.4418800835870992926857070e-01
- 7.5661196769332983436129325e-01 -8.2097182419920797236123633e-02 -7.7475018143122298397429404e-02 6.4404658569521289201986747e-01
- 7.5673051331276419695370805e-01 -8.2120914439434589127131403e-02 -7.7467492334684542876210855e-02 6.4390517412458125878771398e-01
- 7.5684900585087100388648196e-01 -8.2144634019797241331062310e-02 -7.7459958441659579331250995e-02 6.4376377366431403181934456e-01
- 7.5696744024752249391241321e-01 -8.2168338673711691089174280e-02 -7.7452416220164160831629374e-02 6.4362239065027437856514325e-01
- 7.5708581934981200589618311e-01 -8.2192029815981934581792245e-02 -7.7444865817171054667156227e-02 6.4348102157927922206681615e-01
- 7.5720414541401404040499301e-01 -8.2215708565436834698303414e-02 -7.7437307349348588614290634e-02 6.4333966367961392673890941e-01
- 7.5732241845381498279721200e-01 -8.2239374934184955590055210e-02 -7.7429740822357331908598610e-02 6.4319831697065388276257636e-01
- 7.5744063848304665764743504e-01 -8.2263028934343659925865211e-02 -7.7422166241840256750705862e-02 6.4305698147159795485805489e-01
- 7.5755880497084215896563819e-01 -8.2286670310799767125153892e-02 -7.7414583586992644081981041e-02 6.4291565788084847898886665e-01
- 7.5767691171582352005486882e-01 -8.2310296031153126761203964e-02 -7.7406992563049420441601001e-02 6.4277435397064519584375830e-01
- 7.5779496549471636601680302e-01 -8.2333909429197077445294894e-02 -7.7399393505210550836537209e-02 6.4263306132970787754032926e-01
- 7.5791296632091220697446943e-01 -8.2357510516959400725944818e-02 -7.7391786419192351575979671e-02 6.4249177997771367287782596e-01
- 7.5803091420898527363902986e-01 -8.2381099306584965047406399e-02 -7.7384171310545007971271048e-02 6.4235050993294062759986218e-01
- 7.5814880917361215928451657e-01 -8.2404675810223163012757652e-02 -7.7376548184805701846578074e-02 6.4220925121353611420005336e-01
- 7.5826664790054676412722756e-01 -8.2428238417522406433768367e-02 -7.7368916889519787072337920e-02 6.4206800799634555776407296e-01
- 7.5838442976312692156426465e-01 -8.2451786833041884605677296e-02 -7.7361277401072903181500351e-02 6.4192678110495582366468170e-01
- 7.5850215874498305712592128e-01 -8.2475323008445025618762259e-02 -7.7353629915469956923601558e-02 6.4178556560018862331418177e-01
- 7.5861983486137474219646037e-01 -8.2498846955898527677497611e-02 -7.7345974438175035814424518e-02 6.4164436149946568743729358e-01
- 7.5873745812648407671474615e-01 -8.2522358687448893466154232e-02 -7.7338310974808588404982856e-02 6.4150316882146896091398958e-01
- 7.5885502855248698761414516e-01 -8.2545858214924924811661811e-02 -7.7330639531279166121180424e-02 6.4136198758723550472637953e-01
- 7.5897254005599379400592852e-01 -8.2569342592435285288487989e-02 -7.7322959827828566248264508e-02 6.4122082544804359649504022e-01
- 7.5908999756398054525874386e-01 -8.2592814222733984541591212e-02 -7.7315272102269003151597815e-02 6.4107967627810280575317847e-01
- 7.5920740227914051967417208e-01 -8.2616273694979272534943959e-02 -7.7307576416026285714977462e-02 6.4093853860880933837051998e-01
- 7.5932475421548750738054423e-01 -8.2639721021149373236802660e-02 -7.7299872774755959414783035e-02 6.4079741245899457524615173e-01
- 7.5944205338706127772496757e-01 -8.2663156213094834967591851e-02 -7.7292161184176602639617215e-02 6.4065629784745981023519334e-01
- 7.5955929821999867979087639e-01 -8.2686578515685005275059893e-02 -7.7284441577128937250762419e-02 6.4051519678382673461669583e-01
- 7.5967648462586756519243636e-01 -8.2709985965910143290713563e-02 -7.7276713771847513334556368e-02 6.4037411443360758855902759e-01
- 7.5979361831148983785766404e-01 -8.2733381327676755456757007e-02 -7.7268978036967791989120258e-02 6.4023304368046018986149193e-01
- 7.5991069929227117452086304e-01 -8.2756764613064318081292470e-02 -7.7261234377952708873849019e-02 6.4009198454152238522141261e-01
- 7.6002772758192194135773434e-01 -8.2780135833963111591238260e-02 -7.7253482800515027584253858e-02 6.3995093703592698108906234e-01
- 7.6014470319314364488150204e-01 -8.2803495002149632431276416e-02 -7.7245723310514755044486890e-02 6.3980990118399394539494551e-01
- 7.6026162178526746071582920e-01 -8.2826840038213125905208756e-02 -7.7237955716719389198665624e-02 6.3966888247469211314921722e-01
- 7.6037848481584402460242700e-01 -8.2850171654754820038668583e-02 -7.7230180092531020008550513e-02 6.3952787911772424056522368e-01
- 7.6049529521542225118935221e-01 -8.2873491264311052728608331e-02 -7.7222396575178223199209526e-02 6.3938688746959615460951909e-01
- 7.6061205299705858529080160e-01 -8.2896798878652963593616221e-02 -7.7214605170479344575795722e-02 6.3924590755016896803653026e-01
- 7.6072875817426377498264856e-01 -8.2920094509591743547893827e-02 -7.7206805884188628441577862e-02 6.3910493937875689773875365e-01
- 7.6084541076267298009838669e-01 -8.2943378169151885104248834e-02 -7.7198998721753522844757356e-02 6.3896398297214496153628716e-01
- 7.6096200365607846727300512e-01 -8.2966646471214600122578986e-02 -7.7191183374373917303046255e-02 6.3882304730990324692641025e-01
- 7.6107854384983752993321104e-01 -8.2989902767625509105720027e-02 -7.7183360158698574582381013e-02 6.3868212363009180254636021e-01
- 7.6119503149778533490632526e-01 -8.3013147137697751443141669e-02 -7.7175529086966329628261008e-02 6.3854121177534639564044028e-01
- 7.6131146661586890367345859e-01 -8.3036379593443954139075913e-02 -7.7167690164587229850745587e-02 6.3840031176204070639812471e-01
- 7.6142784922082218379557617e-01 -8.3059600146951073629253415e-02 -7.7159843396857982766867678e-02 6.3825942360560095067967268e-01
- 7.6154417670118756955588424e-01 -8.3082807563455970956134422e-02 -7.7151988675803653827678374e-02 6.3811855063401279331003479e-01
- 7.6166044706608770908928818e-01 -8.3106000908062652166030659e-02 -7.7144125921883160978964611e-02 6.3797769539687299023000833e-01
- 7.6177666496263107820396954e-01 -8.3129182395465031629733232e-02 -7.7136255342473619700527365e-02 6.3783685207458340471475822e-01
- 7.6189283040356958753847039e-01 -8.3152352037295776399083991e-02 -7.7128376943460530412721710e-02 6.3769602068726338739423909e-01
- 7.6200894340308922281224113e-01 -8.3175509845327261215786052e-02 -7.7120490730520990796392766e-02 6.3755520125331999192752619e-01
- 7.6212500397705729149322451e-01 -8.3198655831498449786387539e-02 -7.7112596709087641300151006e-02 6.3741439378914577229551242e-01
-
-
-SCAN_DURATION 1.5241535916043474685466208e+02
-
-NUMBER_OF_INT_TIMES 37
-INT_TIME
- 1 -1.3334533344209194183349609e+02 1.0453452110290526941294154e-02
- 217 -1.3108727434277534484863281e+02 1.0560111045837402080072032e-02
- 218 -1.3107661151885986328125000e+02 1.0666770935058593819388939e-02
- 1145 -1.2118840487301349639892578e+02 1.0773429870605468958166817e-02
- 1146 -1.2117752349376678466796875e+02 1.0880089759826660697483725e-02
- 2041 -1.1143973973393440246582031e+02 1.0986748695373535836261603e-02
- 2042 -1.1142864900827407836914062e+02 1.1093408584594725840855034e-02
- 2873 -1.0220992520451545715332031e+02 1.1200067520141600979632912e-02
- 2874 -1.0219861452281475067138672e+02 1.1306726455688476118410790e-02
- 3737 -9.2440799400210380554199219e+01 1.1413386344909667857727698e-02
- 3738 -9.2429278701543807983398438e+01 1.1520045280456542996505576e-02
- 4537 -8.3224663287401199340820312e+01 1.1626705169677734735822483e-02
- 4538 -8.3212929919362068176269531e+01 1.1733364105224609874600361e-02
- 5305 -7.4213334098458290100097656e+01 1.1840023994445801613917268e-02
- 5306 -7.4201387405395507812500000e+01 1.1946682929992675017971671e-02
- 6073 -6.5038177132606506347656250e+01 1.2053342819213866757288578e-02
- 6074 -6.5026017129421234130859375e+01 1.2160001754760741896066456e-02
- 6777 -5.6477426677942276000976562e+01 1.2266661643981933635383363e-02
- 6778 -5.6465053364634513854980469e+01 1.2373320579528808774161242e-02
- 7513 -4.7370552405714988708496094e+01 1.2479980468750000513478149e-02
- 7514 -4.7357965752482414245605469e+01 1.2586639404296875652256027e-02
- 8185 -3.8912231490015983581542969e+01 1.2693298339843750791033905e-02
- 8186 -3.8899431526660919189453125e+01 1.2799958229064940795627336e-02
- 8857 -3.0310553237795829772949219e+01 1.2906617164611815934405215e-02
- 8858 -3.0297539949417114257812500e+01 1.3013277053833007673722122e-02
- 9497 -2.1981948286294937133789062e+01 1.3119935989379882812500000e-02
- 9498 -2.1968721687793731689453125e+01 1.3226595878601074551816907e-02
- 10137 -1.3516823709011077880859375e+01 1.3333254814147949690594785e-02
- 10138 -1.3503383800387382507324219e+01 1.3439914703369141429911693e-02
- 10745 -5.3452502340078353881835938e+00 1.3546573638916014833966095e-02
- 10746 -5.3315970152616500854492188e+00 1.3653233528137206573283002e-02
- 11321 2.5191212296485900878906250e+00 1.3759892463684081712060880e-02
- 11322 2.5329877883195877075195312e+00 1.3866552352905273451377788e-02
- 11897 1.0506363645195960998535156e+01 1.3973211288452148590155666e-02
- 11898 1.0520443513989448547363281e+01 1.4079870223999023728933544e-02
- 12473 1.8616473421454429626464844e+01 1.4186530113220215468250451e-02
- 12474 1.8630763590335845947265625e+01 1.4293189048767090607028329e-02
-
-ALONG_SCAN_PIXEL_SIZE  1.4000000000000000291433544e-02
-CROSS_SCAN_PIXEL_SIZE  1.4000000000000000291433544e-02
-
-CENTER_GP 1.5054116663433261824600606e-01 1.2952944352373885195106595e+00 0.0000000000000000000000000e+00
-SENSOR_POSITION 8.3112262692461982838132428e-02 1.3052675888140194970787888e+00 6.9893234020168811548501253e+05
-MOUNTING_ANGLES 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-
-TOTAL_LINES 12504
-TOTAL_SAMPLES 2584
-
-
-
-
-IKCODE  -41219
-ISIS_Z_DIRECTION  1.0000000000000000000000000e+00
-OPTICAL_DIST_COEF 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-ITRANSS -6.8139200054785997728856728e-01 -1.4285712640235999515425647e+02 6.8566503695772995641277703e-02
-ITRANSL -8.5695561557859000458847731e+03 6.8566503695772995641277703e-02 1.4285712640235999515425647e+02
-DETECTOR_SAMPLE_ORIGIN 2.5925000000000000000000000e+03
-DETECTOR_LINE_ORIGIN 0.0000000000000000000000000e+00
-DETECTOR_LINE_OFFSET  0.0000000000000000000000000e+00
-DETECTOR_SAMPLE_SUMMING  2.0000000000000000000000000e+00
-STARTING_SAMPLE 1.5000000000000000000000000e+00
-STARTING_LINE 1.0000000000000000000000000e+00
-STARTING_EPHEMERIS_TIME 1.3331179316440300643444061e+08
-CENTER_EPHEMERIS_TIME 1.3331186365342636406421661e+08
-
-REFERENCE_HEIGHT 30
-MIN_VALID_HT -8000
-MAX_VALID_HT 8000
-IMAGE_ID UNKNOWN
-SENSOR_ID USGS_LINE_SCANNER
-PLATFORM_ID UNKNOWN
-TRAJ_ID UNKNOWN
-COLL_ID UNKNOWN
-REF_DATE_TIME UNKNOWN
diff --git a/tests/h0232_0000_s12_state.json b/tests/h0232_0000_s12_state.json
deleted file mode 100644
index 007912550f7c993a15fd22aafb93c5582c569cf5..0000000000000000000000000000000000000000
--- a/tests/h0232_0000_s12_state.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-	"STA_ABERR_FLAG": 0,
-	"STA_ATMREF_FLAG": 0,
-	"STA_CENTER_EPHEMERIS_TIME": 133311863.653426,
-	"STA_COLLECTION_IDENTIFIER": "UNKNOWN",
-	"STA_COVARIANCE": [1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1],
-	"STA_DETECTOR_LINE_OFFSET": 0.0,
-	"STA_DETECTOR_LINE_ORIGIN": 0.0,
-	"STA_DETECTOR_SAMPLE_ORIGIN": 2592.5,
-	"STA_DETECTOR_SAMPLE_SUMMING": 2,
-	"STA_DT_EPHEM": 10.161023944029,
-	"STA_DT_QUAT": 0.410823070513301,
-	"STA_EPHEM_PTS": [1015458.53291456, 3764608.30497018, -347231.870397649, 1019181.13621, 3777009.80629214, -307098.653206001, 1022846.84951052, 3789129.14955374, -266944.987481861, 1026455.62076786, 3800967.93772039, -226773.56053521, 1030007.40235578, 3812527.77303314, -186587.059675674, 1033502.15106752, 3823810.25699918, -146388.172213046, 1036939.82811438, 3834816.99038529, -106179.585457131, 1040320.39912374, 3845549.57320941, -65963.9867175958, 1043643.83413715, 3856009.60473291, -25744.0633042133, 1046910.10760852, 3866198.6834528, 14477.4974732773, 1050119.1984022, 3876118.40709392, 54698.0083051317, 1053271.08979108, 3885770.37260106, 94914.7818816066, 1056365.76945648, 3895156.17613432, 135125.130895758, 1059403.23187243, 3904277.42437905, 175326.384879415, 1062383.48252162, 3913135.75998167, 215515.930017141, 1065306.53536384, 3921732.84640326, 255691.187809755, 1068172.41416294, 3930070.37847607, 295849.634697539, 1070981.15116199, 3938150.07127496, 335988.785353305, 1073732.78763705, 3945973.66662998, 376106.206674377, 1076427.37277633, 3953542.92548974, 416199.505919863, 1079064.96448883, 3960859.63113817, 456266.339388922, 1081645.62791192, 3967925.58583191, 496304.408141792, 1084169.43624047, 3974742.61003828, 536311.458755047, 1086636.46982706, 3981312.54121303, 576285.283322174, 1089046.81607118, 3987637.23253294, 616223.718748186, 1091400.56901868, 3993718.55186612, 656124.647321526, 1093697.82980046, 3999558.3789161, 695985.990048001, 1095938.70528032, 4005158.59562875, 735805.677921338, 1098123.3075542, 4010521.08289669, 775581.641953189, 1100251.75395161, 4015647.72054439, 815311.813155188, 1102324.16703326, 4020540.38731881, 854994.122539023, 1104340.67458856, 4025200.96087988, 894626.501116164, 1106301.40963333, 4029631.3177915, 934206.87989815, 1108206.51040805, 4033833.33351347, 973733.18989721, 1110056.12037337, 4037808.88238822, 1013203.36212393],
-	"STA_EPHEM_RATES": [369.157683125483, 1234.46045035306, 3948.58328174256, 363.561617247067, 1206.61287280825, 3950.72796590385, 357.960211388724, 1178.92308689657, 3952.60817774145, 352.353900783104, 1151.39102162758, 3954.22391723662, 346.743120500377, 1124.01660524615, 3955.57518439867, 341.128305414394, 1096.79976520727, 3956.66197921881, 335.50989023209, 1069.74042822745, 3957.48430170322, 329.888309470539, 1042.83852022954, 3958.04215185346, 324.263997461376, 1016.09396637272, 3958.33552966597, 318.637388353715, 989.50669104696, 3958.36443514219, 313.008916109205, 963.07661787197, 3958.12886828189, 307.379014589981, 936.803669850436, 3957.62882922289, 301.74823497738, 910.68832629126, 3956.8651466992, 296.117453235304, 884.732874678197, 3955.84143705438, 290.487628211737, 858.940108810087, 3954.56222586531, 284.85965947955, 833.312596628181, 3953.03195440284, 279.234446715906, 807.852877925256, 3951.25520744076, 273.612851654443, 782.563265351478, 3949.23643615663, 267.995708126411, 757.44601624629, 3946.98019650337, 262.383834599275, 732.503170457137, 3944.49088773431, 256.778015893587, 707.736760655229, 3941.7731255816, 251.179004190888, 683.148616546487, 3938.83135238365, 245.587548195397, 658.740470195441, 3935.67004767181, 240.004346883795, 634.513931159125, 3932.29365629526, 234.430074068564, 610.470495957319, 3928.70661653489, 228.86540544016, 586.611469908332, 3924.91306679216, 223.310971740511, 562.937545745742, 3920.91540373922, 217.767312532738, 539.448781981876, 3916.71411973997, 212.234942809138, 516.145074227598, 3912.30921567557, 206.714377517598, 493.026316900131, 3907.70069154789, 201.206131364251, 470.092403487922, 3902.88854734884, 195.710718820083, 447.343226567069, 3897.87278307102, 190.228654158543, 424.778677874511, 3892.65339875181, 184.760451344409, 402.398648096942, 3887.23039434442, 179.30662417596, 380.203027133661, 3881.60376989415],
-	"STA_FLYING_HEIGHT": 1000,
-	"STA_FOCAL": 174.87,
-	"STA_GSD": 1,
-	"STA_HALF_SWATH": 1000,
-	"STA_HALF_TIME": 10,
-	"STA_IK_CODE": -41219,
-	"STA_IMAGE_FLIP_FLAG": 0,
-	"STA_IMAGE_IDENTIFIER": "UNKNOWN",
-	"STA_INT_TIMES": [0.0104534521102905, 0.0105601110458374, 0.0106667709350586, 0.0107734298706055, 0.0108800897598267, 0.0109867486953735, 0.0110934085845947, 0.0112000675201416, 0.0113067264556885, 0.0114133863449097, 0.0115200452804565, 0.0116267051696777, 0.0117333641052246, 0.0118400239944458, 0.0119466829299927, 0.0120533428192139, 0.0121600017547607, 0.0122666616439819, 0.0123733205795288, 0.01247998046875, 0.0125866394042969, 0.0126932983398438, 0.0127999582290649, 0.0129066171646118, 0.013013277053833, 0.0131199359893799, 0.0132265958786011, 0.0133332548141479, 0.0134399147033691, 0.013546573638916, 0.0136532335281372, 0.0137598924636841, 0.0138665523529053, 0.0139732112884521, 0.014079870223999, 0.0141865301132202, 0.0142931890487671],
-	"STA_INT_TIME_LINES": [1, 217, 218, 1145, 1146, 2041, 2042, 2873, 2874, 3737, 3738, 4537, 4538, 5305, 5306, 6073, 6074, 6777, 6778, 7513, 7514, 8185, 8186, 8857, 8858, 9497, 9498, 10137, 10138, 10745, 10746, 11321, 11322, 11897, 11898, 12473, 12474],
-	"STA_INT_TIME_START_TIMES": [-133.345333442092, -131.087274342775, -131.07661151886, -121.188404873013, -121.177523493767, -111.439739733934, -111.428649008274, -102.209925204515, -102.198614522815, -92.4407994002104, -92.4292787015438, -83.2246632874012, -83.2129299193621, -74.2133340984583, -74.2013874053955, -65.0381771326065, -65.0260171294212, -56.4774266779423, -56.4650533646345, -47.370552405715, -47.3579657524824, -38.912231490016, -38.8994315266609, -30.3105532377958, -30.2975399494171, -21.9819482862949, -21.9687216877937, -13.5168237090111, -13.5033838003874, -5.34525023400784, -5.33159701526165, 2.51912122964859, 2.53298778831959, 10.506363645196, 10.5204435139894, 18.6164734214544, 18.6307635903358],
-	"STA_ISIS_Z_DIRECTION": 1,
-	"STA_I_TRANS_L": [-8569.5561557859, 0.068566503695773, 142.85712640236],
-	"STA_I_TRANS_S": [-0.68139200054786, -142.85712640236, 0.068566503695773],
-	"STA_MAX_ELEVATION": 8000,
-	"STA_MIN_ELEVATION": -8000,
-	"STA_MOUNTING_MATRIX": [1, 0.0, 0.0, 0.0, 1, 0.0, -0.0, 0.0, 1],
-	"STA_NUM_EPHEM": 35,
-	"STA_NUM_QUATERNIONS": 391,
-	"STA_OFFSET_LINES": 0.0,
-	"STA_OFFSET_SAMPLES": 0.0,
-	"STA_OPTICAL_DIST_COEF": [0.0, 0.0, 0.0],
-	"STA_PARAMETER_TYPE": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
-	"STA_PARAMETER_VALS": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 174.87, 0.0],
-	"STA_PLATFORM_FLAG": 1,
-	"STA_PLATFORM_IDENTIFIER": "UNKNOWN",
-	"STA_QUATERNIONS": [0.712661716350438, -0.0730863979288197, -0.0795354165829648, 0.693141958039774, 0.712798979789454, -0.0731150823768941, -0.0795309708337631, 0.692998285581121, 0.71293621403843, -0.0731437679131841, -0.0795265177367188, 0.692854585684965, 0.713073419091876, -0.0731724545356984, -0.0795220572912101, 0.692710858357235, 0.713210594944303, -0.0732011422424456, -0.0795175894966158, 0.692567103603862, 0.713347741590221, -0.073229831031434, -0.079513114352315, 0.692423321430781, 0.713484859024145, -0.0732585209006721, -0.0795086318576873, 0.692279511843923, 0.713621947240588, -0.0732872118481676, -0.079504142012113, 0.692135674849224, 0.713759006234066, -0.0733159038719284, -0.0794996448149725, 0.69199181045262, 0.713896035999094, -0.0733445969699622, -0.0794951402656469, 0.691847918660047, 0.714033036530192, -0.0733732911402762, -0.0794906283635178, 0.691703999477444, 0.714170007821877, -0.0734019863808777, -0.079486109107967, 0.691560052910749, 0.71430694986867, -0.0734306826897737, -0.0794815824983769, 0.691416078965904, 0.714443862665093, -0.073459380064971, -0.0794770485341307, 0.691272077648848, 0.714580746205668, -0.0734880785044761, -0.0794725072146115, 0.691128048965526, 0.714717600484919, -0.0735167780062954, -0.0794679585392031, 0.690983992921879, 0.714854425497372, -0.0735454785684351, -0.07946340250729, 0.690839909523854, 0.714991221237552, -0.0735741801889012, -0.0794588391182568, 0.690695798777396, 0.715127987699987, -0.0736028828656995, -0.0794542683714888, 0.690551660688451, 0.715264724879205, -0.0736315865968355, -0.0794496902663717, 0.690407495262968, 0.715401432769738, -0.0736602913803146, -0.0794451048022916, 0.690263302506896, 0.715538111366116, -0.0736889972141421, -0.0794405119786353, 0.690119082426185, 0.715674760662871, -0.0737177040963227, -0.0794359117947896, 0.689974835026785, 0.715811380654537, -0.0737464120248613, -0.0794313042501422, 0.689830560314651, 0.71594797133565, -0.0737751209977626, -0.0794266893440813, 0.689686258295735, 0.716084519240062, -0.0738038220456953, -0.0794220658764488, 0.689541944052784, 0.716221009993766, -0.0738325055930226, -0.0794174325678454, 0.689397633710545, 0.71635744360476, -0.0738611716541632, -0.0794127894222138, 0.689253327297091, 0.716493814355214, -0.073889816440174, -0.0794081359341769, 0.689109031260375, 0.716630127311527, -0.0739184433346961, -0.0794034725588371, 0.68896473996137, 0.716766383152643, -0.0739470527962941, -0.0793987993591907, 0.688820452676414, 0.716902581886005, -0.0739756448393067, -0.079394116339306, 0.688676169434147, 0.717038723519673, -0.0740042194781524, -0.0793894235031988, 0.688531890262562, 0.717174808063964, -0.0740327767275472, -0.0793847208546547, 0.688387615187297, 0.717310832051901, -0.0740613143073401, -0.0793800080907537, 0.68824334814046, 0.717446796046391, -0.074089832605356, -0.079375285265388, 0.688099088530363, 0.717582702976902, -0.0741183335668647, -0.0793705526408519, 0.687954833103976, 0.717718552851683, -0.0741468172063009, -0.0793658102212179, 0.687810581889077, 0.717854345680309, -0.0741752835382723, -0.0793610580104282, 0.687666334912054, 0.717990081472474, -0.0742037325774004, -0.0793562960124242, 0.687522092199167, 0.718125759012785, -0.0742321635357023, -0.079351524124285, 0.687377855155572, 0.718261374362368, -0.0742605738388248, -0.0793467420033639, 0.687233628255823, 0.718396932699475, -0.0742889669018158, -0.0793419501089596, 0.687089405709005, 0.718532434034734, -0.0743173427394095, -0.0793371484449754, 0.686945187540384, 0.718667878377364, -0.0743457013661535, -0.0793323370154791, 0.686800973776695, 0.718803265735901, -0.0743740427965036, -0.0793275158246244, 0.686656764445383, 0.718938596119326, -0.0744023670449726, -0.0793226848765293, 0.686512559573426, 0.71907386417497, -0.0744306706281541, -0.0793178437077867, 0.686368365238279, 0.719209074242386, -0.0744589563945019, -0.0793129927013666, 0.686224176584303, 0.719344227361805, -0.0744872250320271, -0.079308131951452, 0.68607999247511, 0.719479323541808, -0.0745154765551787, -0.0793032614622655, 0.68593581293808, 0.719614362792011, -0.0745437109785383, -0.0792983812379288, 0.685791637999502, 0.719749345122779, -0.0745719283167833, -0.0792934912824937, 0.685647467684874, 0.719884267431487, -0.0746001265670731, -0.0792885913311223, 0.685503305539466, 0.720019129557077, -0.0746283056385566, -0.0792836813735383, 0.685359151786307, 0.720153934788176, -0.0746564676776384, -0.079278761699135, 0.685215002744728, 0.720288683135272, -0.0746846126989982, -0.0792738323120098, 0.685070858440077, 0.720423374608083, -0.0747127407172134, -0.079268893216356, 0.68492671889851, 0.720558009215362, -0.0747408517467332, -0.0792639444164847, 0.684782584147193, 0.720692586109736, -0.0747689452493048, -0.079258985842905, 0.684638455183407, 0.720827100624393, -0.0747970182273784, -0.0792540170980506, 0.684494337334902, 0.720961558300681, -0.0748250742696891, -0.0792490386633041, 0.684350224361862, 0.721095959149764, -0.0748531133909838, -0.0792440505427689, 0.684206116288895, 0.721230303179924, -0.0748811356056344, -0.0792390527408779, 0.684062013143643, 0.721364590399813, -0.0749091409280575, -0.0792340452620346, 0.683917914953355, 0.72149882082106, -0.0749371293730524, -0.0792290281103243, 0.683773821742132, 0.721632989456194, -0.0749650977538388, -0.0792240008639155, 0.683629739211503, 0.721767099917044, -0.0749930484009971, -0.0792189638356034, 0.683485663300759, 0.721901153606367, -0.075020982223563, -0.0792139171490828, 0.683341592454248, 0.722035150533476, -0.0750488992360202, -0.0792088608087522, 0.683197526698496, 0.722169090707854, -0.0750767994528715, -0.0792037948190021, 0.68305346605985, 0.722302974139, -0.0751046828886182, -0.0791987191842319, 0.682909410564632, 0.722436798094336, -0.0751325478096651, -0.0791936336762007, 0.682765363359911, 0.722570561682497, -0.0751603936628348, -0.0791885382239265, 0.682621325500637, 0.722704268555571, -0.0751882227877852, -0.0791834331414513, 0.682477292868784, 0.722837918724815, -0.0752160351984013, -0.079178318431643, 0.682333265489048, 0.722971512199195, -0.0752438309088766, -0.0791731940986564, 0.682189243388359, 0.723105048987145, -0.0752716099339571, -0.0791680601477703, 0.68204522659402, 0.723238528608628, -0.0752993719769968, -0.0791629165427699, 0.681901215690615, 0.723371945671277, -0.0753271136344446, -0.0791577628345467, 0.681757216867034, 0.72350530607852, -0.0753548386603042, -0.0791525995242737, 0.681613223430456, 0.723638609839481, -0.0753825470689877, -0.079147426616525, 0.681469235407554, 0.723771856963682, -0.0754102388749547, -0.0791422441158411, 0.681325252824577, 0.723905047460865, -0.0754379140926898, -0.0791370520267477, 0.681181275707533, 0.724038181340739, -0.0754655727366696, -0.0791318503537845, 0.681037304082462, 0.724171253987517, -0.07549321190865, -0.0791266387153218, 0.680893343262716, 0.724304268282881, -0.0755208334383888, -0.0791214173565535, 0.680749389995659, 0.724437225989682, -0.0755484384471334, -0.0791161864292438, 0.680605442303739, 0.724570127119222, -0.0755760269495431, -0.0791109459378052, 0.680461500211277, 0.724702971681441, -0.0756035989601003, -0.0791056958868146, 0.680317563744044, 0.724835759684497, -0.0756311544930572, -0.0791004362810603, 0.680173632929704, 0.724968488764736, -0.0756586920751344, -0.0790951669279291, 0.680029710512929, 0.72510115730504, -0.0756862107084602, -0.0790898876983739, 0.679885798386277, 0.725233769317701, -0.0757137129171951, -0.0790845989293229, 0.679741891992631, 0.725366324812684, -0.0757411987157995, -0.0790793006254107, 0.679597991357707, 0.725498823799973, -0.0757686681187324, -0.0790739927912804, 0.679454096507199, 0.725631266289569, -0.0757961211404508, -0.0790686754315828, 0.679310207466776, 0.725763652162834, -0.0758235577152726, -0.0790633485403914, 0.679166324409746, 0.725895975311068, -0.0758509740514908, -0.0790580116199478, 0.679022454386697, 0.72602824199388, -0.0758783740594878, -0.0790526651893646, 0.678878590252943, 0.726160452218827, -0.0759057577533898, -0.0790473092536214, 0.678734732036747, 0.726292605996567, -0.0759331251477101, -0.0790419438173535, 0.678590879763051, 0.726424703338118, -0.0759604762570035, -0.0790365688851649, 0.678447033456406, 0.726556744253038, -0.0759878110956359, -0.0790311844618352, 0.678303193142918, 0.726688724495713, -0.0760151270447867, -0.0790257902051991, 0.678159363743952, 0.726820646216131, -0.0760424254504537, -0.0790203862957355, 0.678015542827192, 0.726952511541015, -0.0760697076381699, -0.079014972910972, 0.677871727983939, 0.727084320480586, -0.0760969736223612, -0.0790095500556619, 0.677727919239575, 0.727216073044759, -0.0761242234174108, -0.0790041177346026, 0.677584116619799, 0.72734776924367, -0.0761514570377253, -0.0789986759525757, 0.67744032015007, 0.727479407079979, -0.0761786732612836, -0.0789932245515953, 0.677296532170108, 0.727610984211104, -0.0762058706624135, -0.0789877633479883, 0.677152755420233, 0.727742505010309, -0.0762330519416772, -0.078982292699229, 0.677008984898245, 0.727873969485867, -0.0762602171132237, -0.0789768126103612, 0.676865220631581, 0.728005377648291, -0.0762873661914772, -0.0789713230861791, 0.676721462645271, 0.728136729509066, -0.076314499190979, -0.0789658241313739, 0.676577710963289, 0.72826802507795, -0.0763416161260501, -0.0789603157508451, 0.676433965611465, 0.728399258233591, -0.0763687132631046, -0.0789547974584939, 0.67629023369969, 0.728530434884803, -0.0763957942306651, -0.0789492697330324, 0.676146508442547, 0.728661555275443, -0.0764228591862619, -0.078943732598161, 0.676002789595457, 0.728792619417148, -0.0764499081444241, -0.0789381860586071, 0.675859077182202, 0.728923627320465, -0.0764769411195401, -0.0789326301192339, 0.675715371227735, 0.729054578993947, -0.0765039581257458, -0.0789270647851453, 0.675571671759151, 0.729185470564332, -0.0765309568150373, -0.0789214897522636, 0.675427983298095, 0.729316303450566, -0.0765579380668517, -0.078915905139359, 0.675284304242436, 0.729447080141141, -0.0765849034024452, -0.0789103111479402, 0.675140631749369, 0.729577800646468, -0.0766118528361569, -0.0789047077829398, 0.674996965843968, 0.729708464976838, -0.076638786382307, -0.0788990950493128, 0.674853306551427, 0.729839073142862, -0.07666570405525, -0.0788934729519853, 0.674709653896589, 0.729969623510662, -0.076692604875217, -0.0788878413664585, 0.67456600981201, 0.730100113021266, -0.0767194870065148, -0.0788822000571439, 0.674422377886393, 0.730230546400269, -0.0767463533169788, -0.0788765494007117, 0.674278752676627, 0.73036092365778, -0.0767732038208736, -0.0788708894021905, 0.674135134208076, 0.730491244805452, -0.076800038532649, -0.078865220066436, 0.673991522504428, 0.730621509854458, -0.0768268574666899, -0.078859541398368, 0.673847917589885, 0.730751718813164, -0.0768536606370315, -0.0788538534032464, 0.673704319491684, 0.730881865936215, -0.0768804445999044, -0.0788481556370954, 0.673560734927702, 0.731011956395671, -0.0769072124789729, -0.0788424485092077, 0.673417157925428, 0.731141990799888, -0.0769339646468337, -0.0788367320708186, 0.673273587815006, 0.731271969159735, -0.0769607011178006, -0.0788310063269347, 0.673130024620936, 0.731401891485693, -0.0769874219061339, -0.0788252712826166, 0.672986468368139, 0.73153175778861, -0.077014127026134, -0.0788195269428894, 0.672842919081124, 0.731661564560773, -0.0770408143909603, -0.0788137730412428, 0.672699380883811, 0.731791312498533, -0.0770674844314549, -0.0788080096371433, 0.672555853005618, 0.731921004448143, -0.0770941388559384, -0.0788022369544083, 0.672412332168785, 0.732050640418753, -0.0771207776784731, -0.0787964549983062, 0.672268818399649, 0.732180220421491, -0.0771474009133577, -0.0787906637738777, 0.672125311722392, 0.732309744468627, -0.0771740085750256, -0.0787848632860352, 0.67198181215994, 0.732439211288328, -0.0772005999172346, -0.0787790534423017, 0.671838321233975, 0.73256861710729, -0.0772271727109134, -0.0787732339589432, 0.671694843389646, 0.732697967003613, -0.0772537299833093, -0.078767405229371, 0.671551372737686, 0.732827260988298, -0.0772802717486693, -0.0787615672586886, 0.671407909302383, 0.732956499072399, -0.0773067980212413, -0.0787557200520012, 0.671264453107959, 0.733085681266986, -0.077333308815269, -0.0787498636144195, 0.671121004178614, 0.733214807583146, -0.0773598041449926, -0.0787439979510605, 0.670977562538526, 0.733343872644351, -0.0773862808465877, -0.0787381226597384, 0.670834134515932, 0.733472880536822, -0.0774127413466367, -0.0787322380555122, 0.670690715371091, 0.733601832995959, -0.0774391866761846, -0.0787263442736146, 0.670547303110834, 0.733730729964386, -0.0774656168087981, -0.0787204413140781, 0.670403897838966, 0.733859571452487, -0.0774920317578482, -0.0787145291819868, 0.67026049958003, 0.733988356614227, -0.0775184310323746, -0.0787086078175998, 0.670117109362566, 0.73411707964663, -0.0775448112391905, -0.0787026767917553, 0.669973734027532, 0.734245747234759, -0.0775711763141839, -0.0786967366104825, 0.669830365779101, 0.734374359389328, -0.0775975262707347, -0.0786907872788623, 0.669687004641429, 0.734502916121284, -0.0776238611222471, -0.0786848288019534, 0.669543650638412, 0.734631417441823, -0.0776501808821498, -0.0786788611847913, 0.669400303793666, 0.734759859634605, -0.0776764833875133, -0.0786728841556471, 0.669256968508299, 0.734888242641451, -0.0777027686190477, -0.0786668977160602, 0.669113644891528, 0.735016570271834, -0.0777290388104168, -0.0786609021536586, 0.668970328507783, 0.73514484253658, -0.0777552939749739, -0.0786548974735582, 0.668827019381063, 0.735273059447359, -0.0777815341261679, -0.0786488836807775, 0.668683717534432, 0.735401221016927, -0.0778077592775737, -0.0786428607802097, 0.668540422989755, 0.735529320661516, -0.0778339656155198, -0.0786368282928957, 0.668397143530554, 0.73565736406026, -0.0778601564518376, -0.0786307866418621, 0.668253872516491, 0.735785352150923, -0.0778863323394264, -0.0786247359008772, 0.668110608881023, 0.735913284945593, -0.0779124932917477, -0.0786186760749491, 0.667967352646723, 0.736041162456596, -0.077938639322287, -0.078612607169063, 0.667824103835895, 0.736168982755921, -0.0779647693247979, -0.0786065290474825, 0.667680864757521, 0.736296742216157, -0.077990881215149, -0.0786004414510625, 0.667537639727422, 0.736424446427506, -0.0780169782348325, -0.0785943447924619, 0.667394422195519, 0.736552095401364, -0.0780430603971899, -0.0785882390768128, 0.667251212185115, 0.736679689149197, -0.078069127715565, -0.0785821243092443, 0.667108009719431, 0.736807227682481, -0.0780951802032974, -0.0785760004948904, 0.666964814821666, 0.736934706214153, -0.0781212151165424, -0.0785698672929116, 0.666821633181879, 0.737062126843266, -0.0781472336765204, -0.0785637248608157, 0.666678462362467, 0.737189492293182, -0.078173237456867, -0.0785575733998081, 0.666535299184946, 0.73731680257655, -0.0781992264710278, -0.0785514129149107, 0.6663921436712, 0.737444057705136, -0.0782252007323385, -0.0785452434112594, 0.666248995844073, 0.737571257537593, -0.0782511601676327, -0.0785390648835185, 0.666105855907345, 0.737698394885061, -0.0782771006753632, -0.0785328768227207, 0.665962732404608, 0.737825477111844, -0.0783030264809584, -0.078526679761334, 0.66581961666375, 0.737952504231707, -0.0783289375979562, -0.078520473704278, 0.665676508705381, 0.738079476255815, -0.078354834039582, -0.0785142586568008, 0.665533408552978, 0.738206393194525, -0.0783807158189591, -0.0785080346242561, 0.665390316230913, 0.738333252051728, -0.0784065812379298, -0.0785018013988484, 0.665247235327164, 0.738460051358296, -0.0784324294751022, -0.0784955588828741, 0.665104167623539, 0.738586795617205, -0.0784582631009937, -0.0784893073997026, 0.664961107821351, 0.738713484840181, -0.0784840821288549, -0.0784830469545482, 0.664818055943427, 0.738840119038962, -0.0785098865719326, -0.0784767775526293, 0.66467501201257, 0.738966698225299, -0.0785356764434701, -0.078470499199168, 0.664531976051567, 0.739093216546549, -0.0785614484406501, -0.0784642114894992, 0.664388955047504, 0.739219678249099, -0.0785872049805315, -0.0784579147270442, 0.664245943999157, 0.73934608497717, -0.078612946999684, -0.07845160903104, 0.664102940991377, 0.739472436741554, -0.0786386745112024, -0.0784452944068587, 0.663959946047991, 0.739598733553304, -0.0786643875282066, -0.0784389708598448, 0.663816959192525, 0.739724974200931, -0.0786900853742538, -0.0784326383100729, 0.663673981902972, 0.739851153655402, -0.0787157652324372, -0.0784262964157223, 0.663531020201133, 0.739977278196637, -0.0787414306469315, -0.0784199456164762, 0.663388066656222, 0.740103347834653, -0.0787670816306995, -0.078413585917839, 0.663245121292895, 0.740229362581303, -0.0787927181969139, -0.0784072173250887, 0.663102184133755, 0.740355322449751, -0.0788183403588942, -0.0784008398433441, 0.662959255199935, 0.740481223373792, -0.0788439458476991, -0.0783944531988712, 0.662816339374391, 0.740607066037792, -0.0788695350605283, -0.0783880574447854, 0.662673435882459, 0.740732853860522, -0.0788951099194719, -0.0783816528200958, 0.66253054068747, 0.740858586853977, -0.078920670437678, -0.0783752393300965, 0.662387653811834, 0.740984265030159, -0.0789462166282878, -0.0783688169800849, 0.662244775277945, 0.741109888401071, -0.0789717485044376, -0.078362385775364, 0.662101905108191, 0.741235450053201, -0.0789972622258616, -0.0783559452529905, 0.661959051595155, 0.74136095637419, -0.079022761361939, -0.0783494958512965, 0.66181620715311, 0.74148640792712, -0.0790482462337487, -0.0783430376133889, 0.661673371146378, 0.741611804724699, -0.079073716854472, -0.0783365705445077, 0.661530543596529, 0.741737146780027, -0.0790991732373719, -0.0783300946495229, 0.661387724524719, 0.741862431807028, -0.0791246141238123, -0.0783236097788034, 0.661244916702079, 0.74198765694033, -0.07915003793808, -0.0783171157476195, 0.661102123596328, 0.74211282736873, -0.0791754475645314, -0.0783106129092344, 0.660959339039495, 0.742237943104327, -0.0792008430162316, -0.0783041012690145, 0.660816563053794, 0.742363004159294, -0.0792262243062506, -0.078297580832305, 0.660673795661348, 0.742488010545816, -0.0792515914476538, -0.078291051604454, 0.660531036884262, 0.7426129571364, -0.0792769416227499, -0.0782845132507759, 0.660388292904382, 0.7427378467581, -0.0793022764031774, -0.0782779659648655, 0.660245560374941, 0.742862681749879, -0.0793275970849785, -0.0782714099063904, 0.660102836530315, 0.742987462123987, -0.0793529036811877, -0.0782648450807158, 0.659960121392508, 0.743112187892496, -0.0793781962048138, -0.0782582714932348, 0.659817414983713, 0.743236858547936, -0.079403474384169, -0.0782516891153878, 0.659674717949768, 0.743361467683998, -0.079428734717292, -0.0782450975329527, 0.659532038020869, 0.743486022252034, -0.079453981027547, -0.078238497207517, 0.659389366891392, 0.743610522266383, -0.0794792133281647, -0.078231888144207, 0.659246704580953, 0.743734967738994, -0.0795044316320966, -0.0782252703484605, 0.659104051111844, 0.743859358680874, -0.0795296359521781, -0.0782186438258424, 0.658961406507421, 0.743983691746241, -0.0795548244699576, -0.0782120083642219, 0.658818774828726, 0.744107966214298, -0.0795799968061274, -0.0782053639234943, 0.658676156983348, 0.744232186191873, -0.0796051552082705, -0.0781987107744794, 0.658533548069908, 0.74435635169138, -0.0796302996893462, -0.078192048922584, 0.658390948110142, 0.744480462725245, -0.0796554302623091, -0.0781853783732176, 0.658248357125765, 0.744604519305906, -0.0796805469401087, -0.0781786991317927, 0.65810577513847, 0.744728515249945, -0.0797056463775429, -0.0781720108082668, 0.657963209636635, 0.744852455515415, -0.0797307312771892, -0.0781653137260813, 0.657820654686948, 0.744976341368072, -0.0797558023313103, -0.0781586079705217, 0.65767810880129, 0.745100172819477, -0.0797808595527173, -0.0781518935471377, 0.657535572002315, 0.745223949881299, -0.0798059029542268, -0.0781451704614693, 0.657393044312551, 0.745347670982248, -0.0798309316932144, -0.0781384386184757, 0.657250527665515, 0.745471331863769, -0.079855943485396, -0.0781316977559985, 0.657108027241397, 0.745594938397516, -0.0798809415073099, -0.0781249482498329, 0.656965535991707, 0.745718490594298, -0.0799059257716361, -0.0781181901056544, 0.656823053939915, 0.745841988466571, -0.0799308962912363, -0.0781114233289272, 0.656680581107619, 0.745965432028188, -0.0799558530791226, -0.0781046479249364, 0.656538117514825, 0.746088816872505, -0.0799807937777548, -0.0780978636239272, 0.656395668527638, 0.746212144416649, -0.0800057191610074, -0.0780910705208061, 0.656253232473221, 0.746335417689499, -0.0800306308616938, -0.0780842688094493, 0.656110805726147, 0.746458636703715, -0.0800555288926526, -0.0780774584953202, 0.655968388307745, 0.746581801471965, -0.0800804132667162, -0.0780706395838845, 0.655825980239324, 0.746704912006926, -0.0801052839967115, -0.0780638120806116, 0.655683581542178, 0.746827961074813, -0.080130137230794, -0.0780569755458317, 0.655541201018555, 0.74695095575672, -0.0801549767601715, -0.0780501304213542, 0.655398830130103, 0.747073896244993, -0.0801798026944557, -0.0780432767241374, 0.655256468680289, 0.747196782552909, -0.0802046150465015, -0.0780364144595921, 0.655114116689691, 0.747319614694287, -0.0802294138292185, -0.0780295436330609, 0.654971774178261, 0.747442390032081, -0.080254197649541, -0.0780226640895035, 0.654829444383143, 0.747565106457318, -0.0802789653987047, -0.0780157757065152, 0.654687129904723, 0.747687768754495, -0.0803037196272083, -0.078008878780883, 0.65454482497405, 0.747810376937497, -0.0803284603479278, -0.0780019733179609, 0.654402529610969, 0.747932931019709, -0.0803531875736771, -0.0779950593231728, 0.654260243835885, 0.748055431013497, -0.080377901317149, -0.0779881368020817, 0.654117967670359, 0.748177871461005, -0.0804025987030832, -0.0779812054324626, 0.653975707788271, 0.748300255904717, -0.0804272816156201, -0.0779742654334136, 0.653833459923073, 0.748422586300878, -0.0804519510946084, -0.0779673169271872, 0.653691221733129, 0.748544862662384, -0.0804766071527592, -0.0779603599192957, 0.653548993239364, 0.748667085001966, -0.0805012498027597, -0.0779533944152767, 0.653406774462884, 0.748789252449744, -0.0805258785936342, -0.0779464203684854, 0.653264566499834, 0.748911359379509, -0.0805504905788294, -0.0779394374514406, 0.653122376243227, 0.749033412327303, -0.0805750892043235, -0.0779324460575994, 0.652980195770523, 0.749155411307986, -0.0805996744829994, -0.0779254461922336, 0.65283802510036, 0.749277356334231, -0.0806242464274908, -0.077918437860911, 0.652695864253866, 0.749399247417737, -0.0806488050503155, -0.0779114210693337, 0.652553713253279, 0.749521080872126, -0.0806733484301339, -0.0779043956066783, 0.652411576634343, 0.7496428567132, -0.0806978765893148, -0.0778973614811377, 0.652269454418284, 0.749764578654415, -0.0807223914753914, -0.0778903189143752, 0.652127342111246, 0.749886246708693, -0.080746893100977, -0.0778832679119474, 0.651985239734033, 0.750007860888792, -0.0807713814786598, -0.0778762084794363, 0.651843147307628, 0.750129421207778, -0.0807958566210564, -0.0778691406223853, 0.651701064852655, 0.750250921162764, -0.0808203151557492, -0.0778620639718356, 0.651559000357294, 0.750372366408962, -0.0808447600350238, -0.0778549788599634, 0.651416946948273, 0.750493757835756, -0.0808691917272306, -0.0778478853428318, 0.65127490357498, 0.750615095455929, -0.0808936102449127, -0.077840783426041, 0.65113287025833, 0.750736379282678, -0.0809180156006527, -0.0778336731151373, 0.650990847018754, 0.750857607391045, -0.0809424068040196, -0.0778265543053023, 0.650848836250578, 0.750978776286856, -0.0809667820608812, -0.0778194268051877, 0.650706842273166, 0.751099891432695, -0.0809911442040311, -0.0778122909300778, 0.650564858434983, 0.751220952840099, -0.0810154932458278, -0.0778051466857619, 0.650422884758336, 0.751341960522345, -0.0810398291988137, -0.077797994077796, 0.650280921263524, 0.751462914494147, -0.0810641520756831, -0.0777908331115435, 0.650138967969176, 0.751583810015858, -0.081088459446308, -0.0777836635274612, 0.64999703072777, 0.751704649227833, -0.0811127524233482, -0.0777764854516029, 0.649855106954132, 0.751825434770582, -0.0811370323720407, -0.0777692990369635, 0.649713193445526, 0.751946166657246, -0.0811612993048649, -0.0777621042891368, 0.649571290222363, 0.752066844901104, -0.0811855532343088, -0.0777549012137008, 0.649429397304884, 0.752187469330852, -0.0812097940783742, -0.0777476898060486, 0.649287514940199, 0.752308032959589, -0.0812340182711952, -0.0777404696867527, 0.649145651755345, 0.752428542987992, -0.0812582295083605, -0.0777332412592498, 0.649003798939163, 0.752548999428886, -0.0812824278022664, -0.0777260045291965, 0.648861956512384, 0.752669402296352, -0.0813066131654394, -0.077718759502079, 0.648720124494282, 0.75278975160447, -0.0813307856103987, -0.077711506183387, 0.648578302904118, 0.75291004437318, -0.0813549436272346, -0.0777042444166517, 0.648436495448108, 0.753030279240199, -0.0813790865332866, -0.0776969741339205, 0.648294703844532, 0.753150460588568, -0.081403216568439, -0.0776896955793392, 0.648152922733771, 0.753270588432678, -0.0814273337452027, -0.0776824087583697, 0.648011152134694, 0.753390662786536, -0.08145143807604, -0.0776751136765288, 0.647869392066602, 0.7535106836631, -0.0814755295732928, -0.0776678103394807, 0.647727642550007, 0.753630645284958, -0.0814996053192641, -0.0776604984435146, 0.64758591074983, 0.753750551895446, -0.08152366747452, -0.077653178222427, 0.647444191471953, 0.753870405071668, -0.0815477168435395, -0.0776458497656113, 0.647302482807584, 0.753990204827105, -0.0815717534386783, -0.0776385130786742, 0.647160784776591, 0.754109951175251, -0.0815957772722872, -0.0776311681672231, 0.647019097398821, 0.754229642890811, -0.0816197877327467, -0.0776238149715869, 0.646877422225045, 0.754349275119357, -0.081643782385639, -0.0776164532423329, 0.646735765294257, 0.754468853983195, -0.0816677643241173, -0.0776090833081662, 0.64659411907908, 0.754588379497268, -0.0816917335606454, -0.077601705174506, 0.646452483597636, 0.75470785167469, -0.0817156901074839, -0.0775943188470304, 0.646310858870171, 0.754827270527684, -0.0817396339767904, -0.0775869243315417, 0.646169244917954, 0.754946632037763, -0.0817635631605549, -0.0775795214242684, 0.64602764675338, 0.755065936948347, -0.0817874780446156, -0.0775721101712179, 0.645886063496497, 0.75518518857947, -0.0818113802982954, -0.0775646907494924, 0.645744491074306, 0.755304386944668, -0.0818352699338507, -0.0775572631647261, 0.645602929506512, 0.755423532057269, -0.0818591469635083, -0.0775498274225843, 0.645461378813058, 0.755542623930913, -0.081883011399522, -0.0775423835286917, 0.645319839013513, 0.755661655755166, -0.0819068598562382, -0.07753493114127, 0.645178318593217, 0.755780633864614, -0.0819306955016622, -0.0775274705901907, 0.645036809735463, 0.755899558778892, -0.0819545186002451, -0.0775200019069279, 0.64489531183226, 0.756018430511364, -0.081978329164168, -0.0775125250971578, 0.644753824903465, 0.756137249075755, -0.0820021272056438, -0.0775050401665075, 0.6446123489685, 0.75625601220166, -0.082025911604012, -0.0774975470056342, 0.644470886885112, 0.75637471715076, -0.082049681014297, -0.0774900454843425, 0.64432944209573, 0.756493368977247, -0.0820734379489302, -0.077482535861554, 0.64418800835871, 0.75661196769333, -0.0820971824199208, -0.0774750181431223, 0.644046585695213, 0.756730513312764, -0.0821209144394346, -0.0774674923346845, 0.643905174124581, 0.756849005850871, -0.0821446340197972, -0.0774599584416596, 0.643763773664314, 0.756967440247522, -0.0821683386737117, -0.0774524162201642, 0.643622390650274, 0.757085819349812, -0.0821920298159819, -0.0774448658171711, 0.643481021579279, 0.757204145414014, -0.0822157085654368, -0.0774373073493486, 0.643339663679614, 0.757322418453815, -0.082239374934185, -0.0774297408223573, 0.643198316970654, 0.757440638483047, -0.0822630289343437, -0.0774221662418403, 0.643056981471598, 0.757558804970842, -0.0822866703107998, -0.0774145835869926, 0.642915657880848, 0.757676911715824, -0.0823102960311531, -0.0774069925630494, 0.642774353970645, 0.757794965494716, -0.0823339094291971, -0.0773993935052106, 0.642633061329708, 0.757912966320912, -0.0823575105169594, -0.0773917864191924, 0.642491779977714, 0.758030914208985, -0.082381099306585, -0.077384171310545, 0.642350509932941, 0.758148809173612, -0.0824046758102232, -0.0773765481848057, 0.642209251213536, 0.758266647900547, -0.0824282384175224, -0.0773689168895198, 0.642068007996346, 0.758384429763127, -0.0824517868330419, -0.0773612774010729, 0.641926781104956, 0.758502158744983, -0.082475323008445, -0.07735362991547, 0.641785565600189, 0.758619834861375, -0.0824988469558985, -0.077345974438175, 0.641644361499466, 0.758737458126484, -0.0825223586874489, -0.0773383109748086, 0.641503168821469, 0.758855028552487, -0.0825458582149249, -0.0773306395312792, 0.641361987587236, 0.758972540055994, -0.0825693425924353, -0.0773229598278286, 0.641220825448044, 0.759089997563981, -0.082592814222734, -0.077315272102269, 0.641079676278103, 0.759207402279141, -0.0826162736949793, -0.0773075764160263, 0.640938538608809, 0.759324754215488, -0.0826397210211494, -0.077299872774756, 0.640797412458995, 0.759442053387061, -0.0826631562130948, -0.0772921611841766, 0.64065629784746, 0.759559298219999, -0.082686578515685, -0.0772844415771289, 0.640515196783827, 0.759676484625868, -0.0827099859659101, -0.0772767137718475, 0.640374114433608, 0.75979361831149, -0.0827333813276768, -0.0772689780369678, 0.64023304368046, 0.759910699292271, -0.0827567646130643, -0.0772612343779527, 0.640091984541522, 0.760027727581922, -0.0827801358339631, -0.077253482800515, 0.639950937035927, 0.760144703193144, -0.0828034950021496, -0.0772457233105148, 0.639809901183994, 0.760261621785267, -0.0828268400382131, -0.0772379557167194, 0.639668882474692, 0.760378484815844, -0.0828501716547548, -0.077230180092531, 0.639527879117724, 0.760495295215422, -0.0828734912643111, -0.0772223965751782, 0.639386887469596, 0.760612052997059, -0.082896798878653, -0.0772146051704793, 0.639245907550169, 0.760728758174264, -0.0829200945095917, -0.0772068058841886, 0.639104939378757, 0.760845410762673, -0.0829433781691519, -0.0771989987217535, 0.638963982972145, 0.760962003656078, -0.0829666464712146, -0.0771911833743739, 0.638823047309903, 0.761078543849838, -0.0829899027676255, -0.0771833601586986, 0.638682123630092, 0.761195031497785, -0.0830131471376978, -0.0771755290869663, 0.638541211775346, 0.761311466615869, -0.083036379593444, -0.0771676901645872, 0.638400311762041, 0.761427849220822, -0.0830596001469511, -0.077159843396858, 0.638259423605601, 0.761544176701188, -0.083082807563456, -0.0771519886758037, 0.638118550634013, 0.761660447066088, -0.0831060009080627, -0.0771441259218832, 0.637977695396873, 0.761776664962631, -0.083129182395465, -0.0771362553424736, 0.637836852074583, 0.76189283040357, -0.0831523520372958, -0.0771283769434605, 0.637696020687263, 0.762008943403089, -0.0831755098453273, -0.077120490730521, 0.63755520125332, 0.762125003977057, -0.0831986558314984, -0.0771125967090876, 0.637414393789146],
-	"STA_REFERENCE_DATE_AND_TIME": "UNKNOWN",
-	"STA_REFERENCE_POINT_XYZ": [0.0, 0.0, 0.0],
-	"STA_REF_ELEVATION": 0.0,
-	"STA_SEMI_MAJOR_AXIS": 3396190,
-	"STA_SEMI_MINOR_AXIS": 3376200.00000009,
-	"STA_SENSOR_IDENTIFIER": "USGS_LINE_SCANNER",
-	"STA_SENSOR_MODEL_NAME": "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL",
-	"STA_SENSOR_TYPE": "USGSAstroLineScannerKLEv",
-	"STA_STARTING_EPHEMERIS_TIME": 133311793.164403,
-	"STA_STARTING_SAMPLE": 1,
-	"STA_T0_EPHEM": -235.598943859339,
-	"STA_T0_QUAT": -142.972035571933,
-	"STA_TOTAL_LINES": 12504,
-	"STA_TOTAL_SAMPLES": 2584,
-	"STA_TRAJECTORY_IDENTIFIER": "UNKNOWN"
-}
diff --git a/tests/h0232_0000_s22_keywords.lis b/tests/h0232_0000_s22_keywords.lis
deleted file mode 100644
index 24dd7e4f17884392a0d18775d8d8672e045c225c..0000000000000000000000000000000000000000
--- a/tests/h0232_0000_s22_keywords.lis
+++ /dev/null
@@ -1,707 +0,0 @@
-RECTIFICATION_TERMS
-        7.13200000000000e+03 0.00000000000000e+00 1.00000000000000e+00
-        1.29200000000000e+03 1.00000000000000e+00 0.00000000000000e+00
-GROUND_ZERO 1.25318546726608e-01 1.29571954496053e+00 0.00000000000000e+00
-LOAD_PT 1.25318546726608e-01 1.29571954496053e+00 0.00000000000000e+00
-COORD_SYSTEM 1
-IMAGE_MOTION 0
-SENSOR_TYPE USGSAstroLineScannerKLEv
-SENSOR_MODE UNKNOWN
-SEMI_MAJOR_AXIS 3.39619000000000e+006
-ECCENTRICITY 1.08339143554195e-001
-FOCAL 1.74800000000000e+02
-ATMCO 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_LINE 7.13200000000000e+03 7.14285714285714e+01 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_SAMPLE 1.29200000000000e+03 0.00000000000000e+00 7.14285714285714e+01 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-ABERR    0
-ATMREF   0
-PLATFORM   1
-SOURCE_FLAG  1
-SINGLE_EPHEMERIDE  0
-TRI_PARAMETERS
-0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 1.74800000000000e+02 0.00000000000000e+00 0.00000000000000e+00
-T_CENTER  9.1215970203280448913574219e+01
-DT_EPHEM  1.1250242376882329864429266e+01
-T0_EPHEM  -1.2253863495588302612304688e+02
-NUMBER_OF_EPHEM   39
-EPHEM_PTS
- 1.0536650155862902756780386e+06 3.8869598550085616298019886e+06 9.9976829206491398508660495e+04
- 1.0570806311485301703214645e+06 3.8973040925364256836473942e+06 1.4450867876671758131124079e+05
- 1.0604259236793881282210350e+06 3.9073230251545393839478493e+06 1.8902526997081554145552218e+05
- 1.0637009446128753479570150e+06 3.9170191965954233892261982e+06 2.3352371145208599045872688e+05
- 1.0669057532059377990663052e+06 3.9263951491883234120905399e+06 2.7800111184356978628784418e+05
- 1.0700404165351020637899637e+06 3.9354534238443458452820778e+06 3.2245457977837941143661737e+05
- 1.0731050094928040634840727e+06 3.9441965600409940816462040e+06 3.6688122388968279119580984e+05
- 1.0760996147836248856037855e+06 3.9526270958066135644912720e+06 4.1127815281057724496349692e+05
- 1.0790243229206707328557968e+06 3.9607475677051488310098648e+06 4.5564247517419810174033046e+05
- 1.0818792322218234185129404e+06 3.9685605108207431621849537e+06 4.9997129961366840871050954e+05
- 1.0846644488060027360916138e+06 3.9760684587423694320023060e+06 5.4426173476211121305823326e+05
- 1.0873800865893966984003782e+06 3.9832739435484884306788445e+06 5.8851088925265416037291288e+05
- 1.0900262672816694248467684e+06 3.9901794957916876301169395e+06 6.3271587171842157840728760e+05
- 1.0926031213317564688622952e+06 3.9967876508628535084426403e+06 6.7687380940510716754943132e+05
- 1.0951107902533493470400572e+06 4.0031009754556557163596153e+06 7.2098193364676286000758410e+05
- 1.0975494240735978819429874e+06 4.0091220462462049908936024e+06 7.6503751550569175742566586e+05
- 1.0999191821686322800815105e+06 4.0148534586477852426469326e+06 8.0903790246624976862221956e+05
- 1.1022202321586639154702425e+06 4.0202978243855144828557968e+06 8.5298051567857724148780107e+05
- 1.1044527500193521846085787e+06 4.0254577631778316572308540e+06 8.9686282122942991554737091e+05
- 1.1066169194550826214253902e+06 4.0303359093579333275556564e+06 9.4068236502022680360823870e+05
- 1.1087129319952277000993490e+06 4.0349349055248014628887177e+06 9.8443675238533620722591877e+05
- 1.1107409857595528010278940e+06 4.0392574023816082626581192e+06 1.0281236516060198191553354e+06
- 1.1127012856902051717042923e+06 4.0433060569576020352542400e+06 1.0717407930544740520417690e+06
- 1.1145940431481662672013044e+06 4.0470835312687354162335396e+06 1.1152859684632518328726292e+06
- 1.1164194758580790366977453e+06 4.0505924909721151925623417e+06 1.1587570301727268379181623e+06
- 1.1181778068394584115594625e+06 4.0538356041351575404405594e+06 1.2021518905330719426274300e+06
- 1.1198692645326887723058462e+06 4.0568155397247634828090668e+06 1.2454685210296662990003824e+06
- 1.1214940831145336851477623e+06 4.0595349665072308853268623e+06 1.2887049515523493755608797e+06
- 1.1230525011643653269857168e+06 4.0619965519465263932943344e+06 1.3318592686582051683217287e+06
- 1.1245447614066109526902437e+06 4.0642029610670446418225765e+06 1.3749296161433006636798382e+06
- 1.1259711149033824913203716e+06 4.0661568555625369772315025e+06 1.4179141794660668820142746e+06
- 1.1273318221021373756229877e+06 4.0678608949540439061820507e+06 1.4608111521437668707221746e+06
- 1.1286271516634435392916203e+06 4.0693177369665643200278282e+06 1.5036187277048295363783836e+06
- 1.1298573804691487457603216e+06 4.0705300375121962279081345e+06 1.5463350996774530503898859e+06
- 1.1310227936191037297248840e+06 4.0715004506761720404028893e+06 1.5889584615905561950057745e+06
- 1.1321236844246715772897005e+06 4.0722316286963387392461300e+06 1.6314870069712295662611723e+06
- 1.1331603544082639273256063e+06 4.0727262219534739851951599e+06 1.6739189293497656472027302e+06
- 1.1341331132930386811494827e+06 4.0729868789474260993301868e+06 1.7162524222518852911889553e+06
- 1.1350422790049421600997448e+06 4.0730162462830059230327606e+06 1.7584856792066493071615696e+06
-
-
-EPHEM_RATES
- 3.0673106995042905964510283e+02 9.3403876917198761020699749e+02 3.9588509796293792533106171e+03
- 3.0047833044870975527373957e+02 9.0501028617042118185054278e+02 3.9576232129587801864545327e+03
- 2.9422981490376565716360346e+02 8.7620796950603835284709930e+02 3.9561384414384624506055843e+03
- 2.8798621885092944694406469e+02 8.4763169516127800307003781e+02 3.9543966650703951017931104e+03
- 2.8174823749812901496625273e+02 8.1928133774265199917863356e+02 3.9523978838462130624975543e+03
- 2.7551656574105754771153443e+02 7.9115677050878798581834417e+02 3.9501420977715629305748735e+03
- 2.6929189814495128985072370e+02 7.6325786533973735004110495e+02 3.9476293068457716799457557e+03
- 2.6307492894686555473526823e+02 7.3558449274678514484548941e+02 3.9448595110673895760555752e+03
- 2.5686635205632705947209615e+02 7.0813652187932109427492833e+02 3.9418327104375607632391620e+03
- 2.5066686105010816731919476e+02 6.8091382051923085327871377e+02 3.9385489049557395446754526e+03
- 2.4447714917132648793085536e+02 6.5391625508350421114300843e+02 3.9350080946221296471776441e+03
- 2.3829790932702363193129713e+02 6.2714369062458604275889229e+02 3.9312102794367883689119481e+03
- 2.3212987629014884305433952e+02 6.0059627435822403640486300e+02 3.9271562866070516975014471e+03
- 2.2597393022073478618949594e+02 5.7427561252013174453168176e+02 3.9228515693899917096132413e+03
- 2.1983094124289141291228589e+02 5.4818353996963367080752505e+02 3.9183025194972083227185067e+03
- 2.1370170322567912535305368e+02 5.2232133310653068747342331e+02 3.9135142990532176554552279e+03
- 2.0758699806609897109410667e+02 4.9669054963091946319764247e+02 3.9084935784848516959755216e+03
- 2.0148756350510947754628432e+02 4.7129226974863996701969882e+02 3.9032456288963176120887510e+03
- 1.9540411437949470041530731e+02 4.4612749824153570443741046e+02 3.8977759946694377504172735e+03
- 1.8933734195049842696789710e+02 4.2119725200072150528285420e+02 3.8920908644536598330887500e+03
- 1.8328788688786642069317168e+02 3.9650225856499554311085376e+02 3.8861956772359230853908230e+03
- 1.7725634530207895522835315e+02 3.7204315926571121053711977e+02 3.8800959901333062589401379e+03
- 1.7124330567894958221586421e+02 3.4782045688227793789337738e+02 3.8737972897516569901199546e+03
- 1.6524933611715886172532919e+02 3.2383453486681128197233193e+02 3.8673049967820670644869097e+03
- 1.5927495476258698658966750e+02 3.0008566216745191468362464e+02 3.8606244718921520870935638e+03
- 1.5332063786014813899782894e+02 2.7657398588299673747314955e+02 3.8537610103014053493097890e+03
- 1.4738688127687615292416012e+02 2.5329953707418496833270183e+02 3.8467198358824621209350880e+03
- 1.4147413562474261539136933e+02 2.3026224894537222098733764e+02 3.8395060628231326518289279e+03
- 1.3558278079172691832354758e+02 2.0746195519333124934746593e+02 3.8321247535133502424287144e+03
- 1.2971337155431007204242633e+02 1.8489839936957378085935488e+02 3.8245803034738382848445326e+03
- 1.2386669558575208327511064e+02 1.6257133688585258823877666e+02 3.8168749224879243229224812e+03
- 1.1804353502280230259202654e+02 1.4048059135696982480112638e+02 3.8090089692144533728423994e+03
- 1.1224462026707257678026508e+02 1.1862600238893676873885852e+02 3.8009824441394212044542655e+03
- 1.0647068193761312215883663e+02 9.7007408217839412145622191e+01 3.7927953472845988471817691e+03
- 1.0072245021937341391549126e+02 7.5624645547150279867310019e+01 3.7844476786007626287755556e+03
- 9.5000654988224312091915635e+01 5.4477549737983103739225044e+01 3.7759394381489637453341857e+03
- 8.9306025641554100502617075e+01 3.3565954660643285478727194e+01 3.7672706258683265332365409e+03
- 8.3639291209642024682580086e+01 1.2889692497998849418650025e+01 3.7584412417041107801196631e+03
- 7.8001180835982609096390661e+01 -7.5514047396007919488170046e+00 3.7494512861030316344113089e+03
-
-
-DT_QUAT 4.1830646802497900571538025e-01
-T0_QUAT -1.9635243818163871765136719e+01
-NUMBER_OF_QUATERNIONS  531
-QUATERNIONS
- 7.5149331130546759283106439e-01 -8.1071475160733499909504474e-02 -7.7789481364747337099885272e-02 6.5010308072444167315495633e-01
- 7.5161593178922037061795436e-01 -8.1095985856974181493761478e-02 -7.7782153577562990198757120e-02 6.4995912851758919082101329e-01
- 7.5173852451034206545443794e-01 -8.1120497271510064174471211e-02 -7.7774818723934935338348851e-02 6.4981515314887527967613323e-01
- 7.5186108946440166622693368e-01 -8.1145009402636331108382706e-02 -7.7767476803440205301853894e-02 6.4967115462368774103651958e-01
- 7.5198362664696916102258228e-01 -8.1169522248647790751974185e-02 -7.7760127815656610028582918e-02 6.4952713294741659666442501e-01
- 7.5210613605361609224075892e-01 -8.1194035807839404217389756e-02 -7.7752771760162042724573439e-02 6.4938308812545098014368250e-01
- 7.5222861767991400228083876e-01 -8.1218550078505452605170944e-02 -7.7745408636534799051709399e-02 6.4923902016318246754877919e-01
- 7.5235107152143676501054870e-01 -8.1243065058940730494008164e-02 -7.7738038444353937950204170e-02 6.4909492906600263495420222e-01
- 7.5247349757375803225301070e-01 -8.1267580747439255306474593e-02 -7.7730661183198379582393045e-02 6.4895081483930416865746338e-01
- 7.5259589583245378729969843e-01 -8.1292097142295391409838601e-02 -7.7723276852648071066909097e-02 6.4880667748848042108988921e-01
- 7.5271826629309968037517820e-01 -8.1316614241802850915341594e-02 -7.7715885452282681966629241e-02 6.4866251701892541081662102e-01
- 7.5284060895127380419467045e-01 -8.1341132044255692878920172e-02 -7.7708486981683047578606249e-02 6.4851833343603459969273217e-01
- 7.5296292380255458454030304e-01 -8.1365650547947615534027932e-02 -7.7701081440429989322105087e-02 6.4837412674520400468480830e-01
- 7.5308521084252089128341368e-01 -8.1390169751171873024908621e-02 -7.7693668828104675561085912e-02 6.4822989695183019787094736e-01
- 7.5320747006675381474138931e-01 -8.1414689652222024807137757e-02 -7.7686249144288829771021199e-02 6.4808564406131086155227194e-01
- 7.5332970147083500034312920e-01 -8.1439210249391102980354162e-02 -7.7678822388564702783320115e-02 6.4794136807904467723062680e-01
- 7.5345190505034709271825477e-01 -8.1463731540972361688801584e-02 -7.7671388560514656451694293e-02 6.4779706901043077049706653e-01
- 7.5357408080087384671941209e-01 -8.1488253525258499965211456e-02 -7.7663947659721899174911641e-02 6.4765274686086959921027528e-01
- 7.5369619716953883958865390e-01 -8.1512760224556349286650914e-02 -7.7656497998723858500191852e-02 6.4750844057149092858338690e-01
- 7.5381825773610433572002876e-01 -8.1537253461034603363444262e-02 -7.7649039775550363073897131e-02 6.4736414576625289640787742e-01
- 7.5394026251679913119829735e-01 -8.1561733248759912817682505e-02 -7.7641572996089910918549037e-02 6.4721986246425644573321279e-01
- 7.5406221152565822141156104e-01 -8.1586199601554554305948841e-02 -7.7634097666538476323339069e-02 6.4707559068714026739854717e-01
- 7.5418410477605013486623875e-01 -8.1610652533158856147821325e-02 -7.7626613793187207446244713e-02 6.4693133045730866204081622e-01
- 7.5430594228418845759165379e-01 -8.1635092057611408078443560e-02 -7.7619121381936065362516786e-02 6.4678708179385002718930764e-01
- 7.5442771821047549529737353e-01 -8.1659515245497069080293784e-02 -7.7611620132099240487733027e-02 6.4664285195622217550237565e-01
- 7.5454943805040297633013324e-01 -8.1683924873723376403056307e-02 -7.7604110339297482923370808e-02 6.4649863419305952927373937e-01
- 7.5467110219323441100414129e-01 -8.1708321144751155928886988e-02 -7.7596592029390454303694469e-02 6.4635442806217380251609939e-01
- 7.5479271065351583036573402e-01 -8.1732704072390707783490882e-02 -7.7589065208524779504450919e-02 6.4621023358455143004164256e-01
- 7.5491426344580514484761125e-01 -8.1757073670444227464493281e-02 -7.7581529882848748735924005e-02 6.4606605078115630913515588e-01
- 7.5503576058457977371318748e-01 -8.1781429952696368945730399e-02 -7.7573986058524932452051814e-02 6.4592187967303715812050768e-01
- 7.5515719927361457664005684e-01 -8.1805771527858880953765208e-02 -7.7566433596954462159622778e-02 6.4577772376337949644664604e-01
- 7.5527857893134231481724328e-01 -8.1830098115941163339215336e-02 -7.7558872474630224935765455e-02 6.4563358381534940999557648e-01
- 7.5539990298063697249375537e-01 -8.1854411437928306649602916e-02 -7.7551302874537417220146551e-02 6.4548945562840653877856312e-01
- 7.5552117143786734487775902e-01 -8.1878711507758994425643095e-02 -7.7543724802589225619797730e-02 6.4534533922135250971763298e-01
- 7.5564238431728103506657135e-01 -8.1902998339135682503986402e-02 -7.7536138264997819802282208e-02 6.4520123461545331178257356e-01
- 7.5576354163240544448143510e-01 -8.1927271945674423614391912e-02 -7.7528543268079425088146195e-02 6.4505714183280893347927076e-01
- 7.5588464339963867821836629e-01 -8.1951532341289212713064671e-02 -7.7520939817751113865007540e-02 6.4491306089215516550439133e-01
- 7.5600568364700293511049267e-01 -8.1975776567103239567124717e-02 -7.7513327618090946402595875e-02 6.4476899924796249319314256e-01
- 7.5612666815159657041078844e-01 -8.2000007505465988266735167e-02 -7.7505706968273621604303969e-02 6.4462494977034301424367868e-01
- 7.5624759715408063076580447e-01 -8.2024225282406326709150335e-02 -7.7498077885909399942221398e-02 6.4448091219949277252965203e-01
- 7.5636847066917767268279249e-01 -8.2048429911610029630075758e-02 -7.7490440377163793961301508e-02 6.4433688655606424777744223e-01
- 7.5648928871162213205536773e-01 -8.2072621406755252859710481e-02 -7.7482794448203551329612537e-02 6.4419287286068704911912164e-01
- 7.5661005129607217245535367e-01 -8.2096799781502707848979128e-02 -7.7475140105208797902669460e-02 6.4404887113406972254381344e-01
- 7.5673075548629087361263146e-01 -8.2120963592636680994374387e-02 -7.7467477208156637624725249e-02 6.4390488506825938053168557e-01
- 7.5685140099774295130430346e-01 -8.2145112710347273354827280e-02 -7.7459805749483148784584330e-02 6.4376091505993937591512122e-01
- 7.5697199109691648555298116e-01 -8.2169248756914364806291928e-02 -7.7452125897714566016283300e-02 6.4361695708504995661058956e-01
- 7.5709252580031194401755101e-01 -8.2193371746144550105128701e-02 -7.7444437658783935041206803e-02 6.4347301116209909555010427e-01
- 7.5721300512238609581316950e-01 -8.2217481691619492822908910e-02 -7.7436741038916179213913438e-02 6.4332907731198174516862309e-01
- 7.5733342907681888700466288e-01 -8.2241578606828930064764904e-02 -7.7429036044448604214629484e-02 6.4318515555649413695249450e-01
- 7.5745379768018672450580198e-01 -8.2265662505559694617218724e-02 -7.7421322681310508762031475e-02 6.4304124591402445076937511e-01
- 7.5757410482936726747738021e-01 -8.2289730401258975867051504e-02 -7.7413600659001269299608339e-02 6.4289735603397824004190397e-01
- 7.5769435658105743769397122e-01 -8.2313785277691287056711644e-02 -7.7405870278965324682296512e-02 6.4275347840741536842301684e-01
- 7.5781455302806999263509624e-01 -8.2337827186688652969515090e-02 -7.7398131551176446718542934e-02 6.4260961295753160626986755e-01
- 7.5793469418530057257754606e-01 -8.2361856141811309872657887e-02 -7.7390384481814983308467504e-02 6.4246575970464570026763340e-01
- 7.5805478006765525389454297e-01 -8.2385872156611292260741664e-02 -7.7382629077062281552912282e-02 6.4232191866905430366330165e-01
- 7.5817481068996728232889382e-01 -8.2409875244623717605030322e-02 -7.7374865343111859372626782e-02 6.4217808987113011998104639e-01
- 7.5829478297699881572668801e-01 -8.2433863912698843168236351e-02 -7.7367093139150883152055371e-02 6.4203427719202588175306801e-01
- 7.5841469693967966669845282e-01 -8.2457838176761791282309844e-02 -7.7359312472315588937732400e-02 6.4189048066077425414022173e-01
- 7.5853455568864947000662369e-01 -8.2481799562832816552493398e-02 -7.7351523497268190321385362e-02 6.4174669643072701497032995e-01
- 7.5865435924053703509173374e-01 -8.2505748084586300050702334e-02 -7.7343726219958108814012121e-02 6.4160292452010014851992992e-01
- 7.5877410761000219086014340e-01 -8.2529683755480726103925804e-02 -7.7335920646618414031614464e-02 6.4145916494941868091217430e-01
- 7.5889380081103552377896904e-01 -8.2553606588894615225804330e-02 -7.7328106783580499716812540e-02 6.4131541773998679278889767e-01
- 7.5901343879167826322884594e-01 -8.2577516564947273103314274e-02 -7.7320284633461716650160156e-02 6.4117168299590232560802860e-01
- 7.5913301552423229079380462e-01 -8.2601410771691169410146927e-02 -7.7312453921909093934594637e-02 6.4102796830417996254425361e-01
- 7.5925253713760576523839063e-01 -8.2625292189813306920065372e-02 -7.7304614941281352136215332e-02 6.4088426603360859612479317e-01
- 7.5937200364627810422746279e-01 -8.2649160832694676392939925e-02 -7.7296767697850973788398221e-02 6.4074057620487323561064841e-01
- 7.5949141506518880184728459e-01 -8.2673016713378066899764463e-02 -7.7288912198023390631718144e-02 6.4059689883813286659375308e-01
- 7.5961077140942057095429618e-01 -8.2696859845195633265113599e-02 -7.7281048448037403808541512e-02 6.4045323395334774474463302e-01
- 7.5973007269392722751177871e-01 -8.2720690241988539814776971e-02 -7.7273176453876227243178221e-02 6.4030958157058481816648055e-01
- 7.5984931570549907320355487e-01 -8.2744506362663214349417728e-02 -7.7265296074550515736945044e-02 6.4016594576031327079590483e-01
- 7.5996850074890165416263699e-01 -8.2768308364501427809578615e-02 -7.7257407330648786292215391e-02 6.4002232618283849685525411e-01
- 7.6008763077950347586408952e-01 -8.2792097679679682586950662e-02 -7.7249510363572679305654844e-02 6.3987871916980343378611451e-01
- 7.6020670581405613841496915e-01 -8.2815874321739077479342939e-02 -7.7241605179284383853044460e-02 6.3973512473913363152178135e-01
- 7.6032572586741575815239003e-01 -8.2839638304013529790381654e-02 -7.7233691784021160642303983e-02 6.3959154291098840872109577e-01
- 7.6044469095371403088989837e-01 -8.2863389639753440296665588e-02 -7.7225770184127864870227143e-02 6.3944797370637529443371250e-01
- 7.6056360087476804210382397e-01 -8.2887128239254592720897108e-02 -7.7217840375816595988034408e-02 6.3930441741345012118813429e-01
- 7.6068244991346778416385632e-01 -8.2910851375434954646514996e-02 -7.7209902110670886044019312e-02 6.3916088126066195052032981e-01
- 7.6080124403492099816048722e-01 -8.2934561913468637928126270e-02 -7.7201955661544044429156486e-02 6.3901735779020196748234639e-01
- 7.6091998325378951140152139e-01 -8.2958259866611039345940526e-02 -7.7194001034713979891854763e-02 6.3887384702240668232775533e-01
- 7.6103866758512483947640703e-01 -8.2981945248148239469010434e-02 -7.7186038236403811674257724e-02 6.3873034897714042745775487e-01
- 7.6115729704320678195017535e-01 -8.3005618071278222669384661e-02 -7.7178067272951553223769849e-02 6.3858686367517514259617428e-01
- 7.6127587164188015300680945e-01 -8.3029278349144225446210044e-02 -7.7170088150760415834916728e-02 6.3844339113778925121067687e-01
- 7.6139438803745695949487526e-01 -8.3052924495232022250590376e-02 -7.7162100728389873549595279e-02 6.3829993561729092554912768e-01
- 7.6151284682107833745590142e-01 -8.3076556803269141493473171e-02 -7.7154105039470663451872667e-02 6.3815649641113003642800550e-01
- 7.6163125079554738761089538e-01 -8.3100176614189863455450791e-02 -7.7146101212449122441761062e-02 6.3801307002758123054775297e-01
- 7.6174959997752111906521577e-01 -8.3123783941378093231833191e-02 -7.7138089253327823957562259e-02 6.3786965648453552990559956e-01
- 7.6186789438179436384501741e-01 -8.3147378798016466361353594e-02 -7.7130069168382206501455300e-02 6.3772625580208852635877292e-01
- 7.6198613402263137839298679e-01 -8.3170961197223530758648735e-02 -7.7122040963967727900119087e-02 6.3758286800095775870289572e-01
- 7.6210431855648275156767113e-01 -8.3194530981611738984504711e-02 -7.7114004630509810911398461e-02 6.3743949355382323318508497e-01
- 7.6222244257554050417269309e-01 -8.3218085604219255158042756e-02 -7.7105959944290550223122693e-02 6.3729613932897444250613717e-01
- 7.6234051188152485156734883e-01 -8.3241627817308011527686062e-02 -7.7097907159264844612067691e-02 6.3715279804313906808488355e-01
- 7.6245852648927359140884619e-01 -8.3265157634006228826173412e-02 -7.7089846281712795517115921e-02 6.3700946971630778570272469e-01
- 7.6257648641399389255468577e-01 -8.3288675067470577251249608e-02 -7.7081777317862212872690009e-02 6.3686615436802185286069289e-01
- 7.6269439167107566657222151e-01 -8.3312180130867316552034652e-02 -7.7073700273915246583555927e-02 6.3672285201759215578221074e-01
- 7.6281224227592003828135603e-01 -8.3335672837354241027085777e-02 -7.7065615156074462888113885e-02 6.3657956268430770929711571e-01
- 7.6293003474335974178899278e-01 -8.3359151555669627753353268e-02 -7.7057521824813568489531690e-02 6.3643629081678976255886937e-01
- 7.6304776995824752372499233e-01 -8.3382616712679935577767765e-02 -7.7049420324233425239057738e-02 6.3629303533795789071803028e-01
- 7.6316545056935192192781869e-01 -8.3406069560211418267847705e-02 -7.7041310770748397396268103e-02 6.3614979293600393273067084e-01
- 7.6328307659345950852980422e-01 -8.3429510111513532910620938e-02 -7.7033193170364236412872572e-02 6.3600656362851581970829784e-01
- 7.6340064804554974564609893e-01 -8.3452938379642113697620687e-02 -7.7025067529355131790147482e-02 6.3586334743523076351578993e-01
- 7.6351816494001545354564087e-01 -8.3476354377583703025855755e-02 -7.7016933854083091670617023e-02 6.3572014437657675678394753e-01
- 7.6363562678882679346514806e-01 -8.3499757882372557804551150e-02 -7.7008792129807962512089148e-02 6.3557695511018108547318661e-01
- 7.6375302849211834654852282e-01 -8.3523146522485755549602970e-02 -7.7000642156260540316381480e-02 6.3543378614268264392705987e-01
- 7.6387037568868054737691864e-01 -8.3546522939845935251668152e-02 -7.6992484169114971948033599e-02 6.3529063036642097195283441e-01
- 7.6398766839352150181952084e-01 -8.3569887147452850961748538e-02 -7.6984318174650359645205810e-02 6.3514748780104368641730161e-01
- 7.6410490662199614941840764e-01 -8.3593239158332208194046586e-02 -7.6976144179095415398528246e-02 6.3500435846577263365730914e-01
- 7.6422209038964661331760908e-01 -8.3616578985519024458383797e-02 -7.6967962188652788713127961e-02 6.3486124237959573601841612e-01
- 7.6433921971202301026693249e-01 -8.3639906642039768547292056e-02 -7.6959772209525059705192973e-02 6.3471813956147893343029409e-01
- 7.6445629096926270840128836e-01 -8.3663220454327252850745822e-02 -7.6951574103892764200374188e-02 6.3457505464969388153662067e-01
- 7.6457330533479872514135423e-01 -8.3686520977863068648794354e-02 -7.6943367925558836528665552e-02 6.3443198619577401142777262e-01
- 7.6469026530405126429457141e-01 -8.3709809377687335874007601e-02 -7.6935153779526185835457852e-02 6.3428893106855643857500127e-01
- 7.6480717089393290830656724e-01 -8.3733085666914355837953110e-02 -7.6926931671801049295034147e-02 6.3414588928532700240481290e-01
- 7.6492402211960164315485144e-01 -8.3756349858472453617785902e-02 -7.6918701608652537138333116e-02 6.3400286086546597807966918e-01
- 7.6504081899557430102021272e-01 -8.3779601965214917091984148e-02 -7.6910463596447084522189641e-02 6.3385984582911625295764679e-01
- 7.6515756089025666053515806e-01 -8.3802841700671523716970057e-02 -7.6902217615896523161822529e-02 6.3371684501922698196096917e-01
- 7.6527424301029944864183108e-01 -8.3826066864141512979813342e-02 -7.6893963488925659577333249e-02 6.3357386457939190993471357e-01
- 7.6539087083205614714387366e-01 -8.3849279989748698449503195e-02 -7.6885701433553374495311061e-02 6.3343089757858994648387352e-01
- 7.6550744437069950798502305e-01 -8.3872481090363104616614010e-02 -7.6877431456054162728364076e-02 6.3328794403612886920740266e-01
- 7.6562396364172957685667598e-01 -8.3895670178878958833657009e-02 -7.6869153562654946032495218e-02 6.3314500397091166838947629e-01
- 7.6574042866083291691836621e-01 -8.3918847268199120437159877e-02 -7.6860867759555709377572441e-02 6.3300207740160618907765411e-01
- 7.6585683944370841480520085e-01 -8.3942012371219551503109813e-02 -7.6852574052955743844073311e-02 6.3285916434685463016762696e-01
- 7.6597319223693027812061018e-01 -8.3965163773887074860624580e-02 -7.6844272307354660744849184e-02 6.3271626963461635728691590e-01
- 7.6608948850063651736519432e-01 -8.3988302156184288516094227e-02 -7.6835962585010367242865925e-02 6.3257339144433655242494297e-01
- 7.6620573057762253466052016e-01 -8.4011428598655818467122458e-02 -7.6827644980138345975895220e-02 6.3243052682617306725632034e-01
- 7.6632191848492192676189916e-01 -8.4034543114280615960787202e-02 -7.6819319498742572038807452e-02 6.3228767579711131485709075e-01
- 7.6643805223786543034947272e-01 -8.4057645715857831625328345e-02 -7.6810986147084134301188385e-02 6.3214483837618029582472445e-01
- 7.6655413185109089191371368e-01 -8.4080736416107956787691080e-02 -7.6802644931530147931475483e-02 6.3200201458323468362010544e-01
- 7.6667015655038073251859032e-01 -8.4103814867094450757889490e-02 -7.6794295828862685349136541e-02 6.3185920544688245481523836e-01
- 7.6678612184740757573564451e-01 -8.4126879034388646338982198e-02 -7.6785938681938947780736271e-02 6.3171641674637502017475299e-01
- 7.6690203305662263399966605e-01 -8.4149931346824025091279964e-02 -7.6777573691755710005857338e-02 6.3157364172830299242633600e-01
- 7.6701789019336019670447513e-01 -8.4172971817141270522988350e-02 -7.6769200864580028342842866e-02 6.3143088041163408785649835e-01
- 7.6713369327325686697349738e-01 -8.4196000458101313834724522e-02 -7.6760820206634133855416735e-02 6.3128813281495887999028582e-01
- 7.6724944231214309287025799e-01 -8.4219017282475577834688352e-02 -7.6752431724111974675750503e-02 6.3114539895662336022041927e-01
- 7.6736513732585676095254712e-01 -8.4242022303026492524580249e-02 -7.6744035423207165869108337e-02 6.3100267885495309183596646e-01
- 7.6748077442857054464298017e-01 -8.4265013767004640077296074e-02 -7.6735631171343840484233567e-02 6.3085997752758393719574315e-01
- 7.6759635536519676968225667e-01 -8.4287992474845738199995537e-02 -7.6727219037992636097023080e-02 6.3071729278126087425704327e-01
- 7.6771188232666054407360434e-01 -8.4310959424856543598103542e-02 -7.6718799107207927279183934e-02 6.3057462184809176530819741e-01
- 7.6782735533011081674459319e-01 -8.4333914629879533353395971e-02 -7.6710371384988124132675580e-02 6.3043196474476570489997584e-01
- 7.6794277439104774440892243e-01 -8.4356858102585197123346461e-02 -7.6701935877583893308440111e-02 6.3028932148995819861880818e-01
- 7.6805813952422363755090373e-01 -8.4379789855559661493344947e-02 -7.6693492591360212795592588e-02 6.3014669210324270043344086e-01
- 7.6817344981377011503553831e-01 -8.4402709481406365532585312e-02 -7.6685041499784264984462823e-02 6.3000407779917189099450070e-01
- 7.6828870107482105655805071e-01 -8.4425615107484433541351621e-02 -7.6676582465381393216574679e-02 6.2986148399145425180734037e-01
- 7.6840389846049872435429506e-01 -8.4448509059814297339485734e-02 -7.6668115672765449475356547e-02 6.2971890410521247360975394e-01
- 7.6851904198629050757318737e-01 -8.4471391351005190029077596e-02 -7.6659641128193414805203076e-02 6.2957633815908009555784020e-01
- 7.6863413166796989983708954e-01 -8.4494261993685801370723709e-02 -7.6651158837879707075302349e-02 6.2943378617133249885995383e-01
- 7.6874916752150179721780887e-01 -8.4517121000494507820910428e-02 -7.6642668808009781211687539e-02 6.2929124816000081565903201e-01
- 7.6886414956286119881667673e-01 -8.4539968384060706907412452e-02 -7.6634171044768606417818546e-02 6.2914872414309275239219232e-01
- 7.6897907377499785663843568e-01 -8.4562802354691643524908784e-02 -7.6625665419103927700206214e-02 6.2900621932787548207244299e-01
- 7.6909394218561422107427461e-01 -8.4585623829296407993894036e-02 -7.6617152006462033164702063e-02 6.2886373114786853211199968e-01
- 7.6920875683455158799972651e-01 -8.4608433726168288946389850e-02 -7.6608630881364589426674172e-02 6.2872125701771142125551251e-01
- 7.6932351773907226011317562e-01 -8.4631232058013816654806760e-02 -7.6600102049801888082214418e-02 6.2857879695379648143926943e-01
- 7.6943822491483904180142872e-01 -8.4654018837373445904859182e-02 -7.6591565518010662483305850e-02 6.2843635097445138537608500e-01
- 7.6955287837671415562823540e-01 -8.4676794076698730373564672e-02 -7.6583021292351602382630915e-02 6.2829391909896925572098780e-01
- 7.6966747706817617569186041e-01 -8.4699557311106149493085127e-02 -7.6574469343589413039552483e-02 6.2815150272809128217943453e-01
- 7.6978201710619598152618437e-01 -8.4722306825324375512131780e-02 -7.6565909552651009728485576e-02 6.2800910690887845611030116e-01
- 7.6989650348386029499181404e-01 -8.4745044845071115791057537e-02 -7.6557342088306348792947631e-02 6.2786672524502162850978948e-01
- 7.7001093621525928956117468e-01 -8.4767771382673787194939052e-02 -7.6548766957038549829661633e-02 6.2772435775670831770156610e-01
- 7.7012531531683392493903284e-01 -8.4790486450680047081363000e-02 -7.6540184164968466662415381e-02 6.2758200446124734472874707e-01
- 7.7023964080551099442573104e-01 -8.4813190061675938768992467e-02 -7.6531593718142193472075974e-02 6.2743966537534179295221293e-01
- 7.7035391269689135196330199e-01 -8.4835882228108741576200202e-02 -7.6522995622811215699066167e-02 6.2729734051730212662789654e-01
- 7.7046812684390542091961152e-01 -8.4858561125062625940529415e-02 -7.6514389754039541235997035e-02 6.2715503528393579113497935e-01
- 7.7058228555500474232786701e-01 -8.4881227782006060667008285e-02 -7.6505776192018551395968018e-02 6.2701274673510543067322942e-01
- 7.7069639071977003030866626e-01 -8.4903883039411778832494804e-02 -7.6497155002366021281368091e-02 6.2687047246851057558103548e-01
- 7.7081044235557061305996740e-01 -8.4926526909849558988341300e-02 -7.6488526191061667613979580e-02 6.2672821250025101402769678e-01
- 7.7092444047822650254886412e-01 -8.4949159405729238181415042e-02 -7.6479889764325847956172311e-02 6.2658596684830880629846206e-01
- 7.7103838510270661377177248e-01 -8.4971780539368158002844211e-02 -7.6471245728511952344241820e-02 6.2644373553169929724759868e-01
- 7.7115227503285843635438823e-01 -8.4994389790334398671056704e-02 -7.6462594052290819290895740e-02 6.2630152013755335804745528e-01
- 7.7126610668580408702865725e-01 -8.5016985596375424516502051e-02 -7.6453934633725559311123732e-02 6.2615932534527507513644196e-01
- 7.7137988489454989426974407e-01 -8.5039570085249274744576553e-02 -7.6445267626496005153313718e-02 6.2601714493877935741039664e-01
- 7.7149360967335567362823667e-01 -8.5062143269155759961464014e-02 -7.6436593037068623068819306e-02 6.2587497893790211556108716e-01
- 7.7160728103876097261348832e-01 -8.5084705160506091115024674e-02 -7.6427910871554427529872555e-02 6.2573282735967283851863385e-01
- 7.7172089900782947502477782e-01 -8.5107255771752932105300715e-02 -7.6419221135982970394273650e-02 6.2559069022046587260632577e-01
- 7.7183446359628682387210574e-01 -8.5129795115209877520712212e-02 -7.6410523836592691981906000e-02 6.2544856753828492745839185e-01
- 7.7194797052826413796822180e-01 -8.5152321332425659483611469e-02 -7.6401818853147646093404433e-02 6.2530646489935193255149670e-01
- 7.7206142239087760525961812e-01 -8.5174835561582645793166080e-02 -7.6393106269364324800719146e-02 6.2516437898951815466119797e-01
- 7.7217482092429634565888819e-01 -8.5197338567491120997487997e-02 -7.6384386142584095868990346e-02 6.2502230759003174487276056e-01
- 7.7228816614599038459232361e-01 -8.5219830362583640082085878e-02 -7.6375658478773422732643894e-02 6.2488025071670294519066147e-01
- 7.7240145807193405502744099e-01 -8.5242310959139241943738341e-02 -7.6366923284133927940509068e-02 6.2473820838716997982942303e-01
- 7.7251469671719641407747758e-01 -8.5264780369340889554230500e-02 -7.6358180565009856066716054e-02 6.2459618062017296935550803e-01
- 7.7262788074704358276534322e-01 -8.5287238019114655629415722e-02 -7.6349430288581515702261981e-02 6.2445416918939078421146860e-01
- 7.7274100687700264522561611e-01 -8.5309682494942945529814438e-02 -7.6340672368785458812290301e-02 6.2431217840565178534006918e-01
- 7.7285407978068143552974334e-01 -8.5332115829001464746284000e-02 -7.6331906944861832586823880e-02 6.2417020223386443511515154e-01
- 7.7296709947250341610214264e-01 -8.5354538033361820881239623e-02 -7.6323134023257993563404966e-02 6.2402824069351581215414626e-01
- 7.7308006596910328056537764e-01 -8.5376949120298889495117578e-02 -7.6314353610072924172236242e-02 6.2388629380135762758641249e-01
- 7.7319297928767483085721324e-01 -8.5399349102131497102341484e-02 -7.6305565711317066557306532e-02 6.2374436157343948750053642e-01
- 7.7330583944406783292180307e-01 -8.5421737991041385429369370e-02 -7.6296770333213498327395996e-02 6.2360244402745623748529624e-01
- 7.7341864203484955719858362e-01 -8.5444113896692819309919287e-02 -7.6287967360803579652817064e-02 6.2346054693888619535613316e-01
- 7.7353138992366876625084160e-01 -8.5466478062205211707613728e-02 -7.6279156880115939198816477e-02 6.2331866661929746786796613e-01
- 7.7364408470274548257350489e-01 -8.5488831178905905217035865e-02 -7.6270338940750095901854877e-02 6.2317680103320516327158884e-01
- 7.7375672638847448059351564e-01 -8.5511173258978778743966132e-02 -7.6261513548843390397635744e-02 6.2303495019758259321207561e-01
- 7.7386931499698274894427641e-01 -8.5533504314572614268818995e-02 -7.6252680710575462819100778e-02 6.2289311412972048209724107e-01
- 7.7398185054460488796479467e-01 -8.5555824357847462535708871e-02 -7.6243840432093354375631122e-02 6.2275129284664176854136031e-01
- 7.7409433155850804197939397e-01 -8.5578132762903449948233003e-02 -7.6234992679779997604150310e-02 6.2260948830941831300123113e-01
- 7.7420675505082536815848471e-01 -8.5600428260742544850359081e-02 -7.6226137382184866453371797e-02 6.2246770445946930649938622e-01
- 7.7431912553648019059693297e-01 -8.5622712790301008789484172e-02 -7.6217274664761192060069561e-02 6.2232593544341929803209723e-01
- 7.7443144303005573281240004e-01 -8.5644986363522898620281865e-02 -7.6208404533934598346078815e-02 6.2218418128040675618706246e-01
- 7.7454370754827506218020972e-01 -8.5667248992546018993010648e-02 -7.6199526995789981786977307e-02 6.2204244198691083234109556e-01
- 7.7465591910846187673200802e-01 -8.5689500689556885593134439e-02 -7.6190642056316551511407908e-02 6.2190071757865406087972815e-01
- 7.7476807772657918516046038e-01 -8.5711741466602389682982732e-02 -7.6181749721719940748876354e-02 6.2175900807303230433120689e-01
- 7.7488017887289217799917651e-01 -8.5733969403086016103365807e-02 -7.6172849882886403682924481e-02 6.2161731943457365634486678e-01
- 7.7499222568539949396182465e-01 -8.5756185843351123709865647e-02 -7.6163942626956290804507432e-02 6.2147564760037821152138804e-01
- 7.7510421960868813862077786e-01 -8.5778391407276791125191551e-02 -7.6155027996505073040189870e-02 6.2133399071935402346866795e-01
- 7.7521616065926690630760731e-01 -8.5800586106912601902507731e-02 -7.6146105997651203356468841e-02 6.2119234880816953658921875e-01
- 7.7532804885338546529993664e-01 -8.5822769954275457404690997e-02 -7.6137176636554435016357445e-02 6.2105072188380261444251573e-01
- 7.7543988420747744783056987e-01 -8.5844942961390141578092994e-02 -7.6128239919344836694747869e-02 6.2090910996298986912478313e-01
- 7.7555166511229045589459474e-01 -8.5867104452426665228692571e-02 -7.6119295812109966092862123e-02 6.2076751519355310993120156e-01
- 7.7566338887470553942193874e-01 -8.5889253298757572974153618e-02 -7.6110344256756709557798501e-02 6.2062594114676472578651101e-01
- 7.7577505985171058000560151e-01 -8.5911391348390361843989638e-02 -7.6101385365605289656798504e-02 6.2048438215163370657023734e-01
- 7.7588667805804178989603770e-01 -8.5933518613140497111047011e-02 -7.6092419145057765827999674e-02 6.2034283822695568400007460e-01
- 7.7599824351050827875297955e-01 -8.5955635104981498173515320e-02 -7.6083445601224486409819292e-02 6.2020130938893591743266143e-01
- 7.7610975622655320460552275e-01 -8.5977740835942589869844710e-02 -7.6074464740105457449814708e-02 6.2005979565297919542388172e-01
- 7.7622121622225392911786912e-01 -8.5999835817956671313311290e-02 -7.6065476567860099144091635e-02 6.1991829703617706837093237e-01
- 7.7633261884284476828099741e-01 -8.6021918101786165600231016e-02 -7.6056480981729582269146306e-02 6.1977681969187581323410541e-01
- 7.7644396749845301375358986e-01 -8.6043989129353612432815623e-02 -7.6047478068776389048544218e-02 6.1963535918259882162573149e-01
- 7.7655526348696513050384738e-01 -8.6066049451147055848743150e-02 -7.6038467865174666493466304e-02 6.1949391384200047649954968e-01
- 7.7666650682500260050034058e-01 -8.6088099079083740816642489e-02 -7.6029450377021579043912425e-02 6.1935248368644357785939292e-01
- 7.7677769737549173800772451e-01 -8.6110137960901278475489562e-02 -7.6020425606984437516544517e-02 6.1921106893442778851266439e-01
- 7.7688883604491631995614398e-01 -8.6132166480454547263789777e-02 -7.6011393581263658747459999e-02 6.1906966843158528490675963e-01
- 7.7699991828660552872776179e-01 -8.6154182743084020690282898e-02 -7.6002354203233715712606511e-02 6.1892828819988987554268078e-01
- 7.7711094523907686681951645e-01 -8.6176187235201887060220827e-02 -7.5993307506511037496821359e-02 6.1878692678292168682929741e-01
- 7.7722192002395129595271328e-01 -8.6198181265025042296912261e-02 -7.5984253566499418419688539e-02 6.1864558011096049128241248e-01
- 7.7733284265652402567070567e-01 -8.6220164843575378132989329e-02 -7.5975192389227438893861688e-02 6.1850424820149330074059435e-01
- 7.7744371315271743050345776e-01 -8.6242137981925981460307185e-02 -7.5966123980622107803029053e-02 6.1836293107121342860210689e-01
- 7.7755453153070064331586764e-01 -8.6264100691352069150141801e-02 -7.5957048346244421255235579e-02 6.1822162873399322258194388e-01
- 7.7766529056235356165416306e-01 -8.6286049977511825037623794e-02 -7.5947965337554559916988239e-02 6.1808035075945755298931772e-01
- 7.7777599744035430529010000e-01 -8.6307988836214988292994121e-02 -7.5938875116153436994892445e-02 6.1793908770590255663535117e-01
- 7.7788665225243358580797803e-01 -8.6329917308333545267196030e-02 -7.5929777689519861727518446e-02 6.1779783949529787356880206e-01
- 7.7799725501478256273202305e-01 -8.6351835404913049321073970e-02 -7.5920673063534727109669120e-02 6.1765660614393669280985932e-01
- 7.7810780574377369500638224e-01 -8.6373743137007713555064470e-02 -7.5911561244049019503421505e-02 6.1751538766787283929460273e-01
- 7.7821830150687287819266658e-01 -8.6395639297584425619902504e-02 -7.5902442176132609019667541e-02 6.1737418797826226768421520e-01
- 7.7832874091845438702108595e-01 -8.6417523323720726868835129e-02 -7.5893315838629848979479675e-02 6.1723300894711219388710788e-01
- 7.7843912835020934171126328e-01 -8.6439397027629399916648367e-02 -7.5884182327954893820809446e-02 6.1709184483939183429868081e-01
- 7.7854946381854306380887465e-01 -8.6461260420322275099813680e-02 -7.5875041649950583644290703e-02 6.1695069567106164409864277e-01
- 7.7865974733986642597471928e-01 -8.6483113512804410394352317e-02 -7.5865893810458495671866785e-02 6.1680956145806242751916670e-01
- 7.7876997893056365551700537e-01 -8.6504956316070635846671166e-02 -7.5856738815324634139791726e-02 6.1666844221635686018601064e-01
- 7.7888015264716359276064850e-01 -8.6526786393976817812756508e-02 -7.5847576553414189359791919e-02 6.1652734584901958125868759e-01
- 7.7899027314032009972066817e-01 -8.6548605666455419305194141e-02 -7.5838407123682324839641922e-02 6.1638626624455605806929270e-01
- 7.7910034175588904759024445e-01 -8.6570414691693575726105792e-02 -7.5829230558705273956832116e-02 6.1624520165989116193827613e-01
- 7.7921035851099518243501052e-01 -8.6592213480708557504783585e-02 -7.5820046864204238001860858e-02 6.1610415211000468804769525e-01
- 7.7932032342283652504022484e-01 -8.6614002044517551803792799e-02 -7.5810856045887289877960313e-02 6.1596311760977040528075577e-01
- 7.7943023482391382561473847e-01 -8.6635779706434934421821481e-02 -7.5801658078183883904266338e-02 6.1582210040692342278845217e-01
- 7.7954008882047343131915795e-01 -8.6657544882707562838852766e-02 -7.5792452894244688454961079e-02 6.1568110570403533632344306e-01
- 7.7964989102577153534667787e-01 -8.6679299875456070068047154e-02 -7.5783240607045609937841846e-02 6.1554012610040143016476577e-01
- 7.7975964145779996794516364e-01 -8.6701044695725038025102549e-02 -7.5774021222160620192553893e-02 6.1539916160984253767907148e-01
- 7.7986934013296194123654459e-01 -8.6722779354406004381772277e-02 -7.5764794745425564914675931e-02 6.1525821224816601429097318e-01
- 7.7997898706636392684998782e-01 -8.6744503862263372395702277e-02 -7.5755561182889813442997706e-02 6.1511727803280280557629567e-01
- 7.8008857759176264412559476e-01 -8.6766216326845113648857932e-02 -7.5746320456158436340565743e-02 6.1497636519831910817401877e-01
- 7.8019811383100134971613215e-01 -8.6787917620650092964673661e-02 -7.5737072611102990160603099e-02 6.1483547096920143637532874e-01
- 7.8030759838355912005880555e-01 -8.6809608805360385930249834e-02 -7.5727817700278823864756816e-02 6.1469459193187636625310688e-01
- 7.8041703126596440043272196e-01 -8.6831289891826229920823721e-02 -7.5718555729497594164456586e-02 6.1455372810192898658243621e-01
- 7.8052641249474996598678445e-01 -8.6852960890890729128699377e-02 -7.5709286704568626302780388e-02 6.1441287949492617848079590e-01
- 7.8063574166357507788660541e-01 -8.6874621642358804129990801e-02 -7.5700010624054098196111795e-02 6.1427204668890433847394661e-01
- 7.8074501238108229284051731e-01 -8.6896269569203099525367406e-02 -7.5690727385377284952561183e-02 6.1413123822591253464509009e-01
- 7.8085423149910193618694620e-01 -8.6917907450090675647302874e-02 -7.5681437112727040217308172e-02 6.1399044503232846903273412e-01
- 7.8096339903419842443099697e-01 -8.6939535295822781280072888e-02 -7.5672139811904390316321667e-02 6.1384966712362520890877704e-01
- 7.8107251500267138588640137e-01 -8.6961153117168468740239007e-02 -7.5662835488753577006804107e-02 6.1370890451559845235607327e-01
- 7.8118157942101174029403410e-01 -8.6982760924907170929643030e-02 -7.5653524149086270877972993e-02 6.1356815722379021149635037e-01
- 7.8129058888959712625421616e-01 -8.7004357355707884202900004e-02 -7.5644205743121528673356124e-02 6.1342742981640385746544553e-01
- 7.8139954301840541806001283e-01 -8.7025942262976468954960296e-02 -7.5634880272571480830379187e-02 6.1328672285483387671689570e-01
- 7.8150844565264998564657617e-01 -8.7047517197979290548559561e-02 -7.5625547805420398339570909e-02 6.1314603125387412418945132e-01
- 7.8161729680778102569149723e-01 -8.7069082171356546040463797e-02 -7.5616208347650246124338480e-02 6.1300535503032893558383876e-01
- 7.8172609650015600912809077e-01 -8.7090637193823122741420661e-02 -7.5606861905090513853444634e-02 6.1286469419984346274077325e-01
- 7.8183484474804376684886620e-01 -8.7112182276259914059934886e-02 -7.5597508483249767352596393e-02 6.1272404877562558489501043e-01
- 7.8194353516306769336097204e-01 -8.7133714870088072035336779e-02 -7.5588147990983706181467028e-02 6.1258342732473258784864356e-01
- 7.8205217334357934877431262e-01 -8.7155237222862114165877756e-02 -7.5578780520973998235945146e-02 6.1244282241542635780717774e-01
- 7.8216076013223068130741922e-01 -8.7176749676447728987227492e-02 -7.5569406092070787184233893e-02 6.1230223296025387824670361e-01
- 7.8226929554593882532032012e-01 -8.7198252241558360520201632e-02 -7.5560024710004711212540940e-02 6.1216165897408336693530373e-01
- 7.8237777960221988049482889e-01 -8.7219744928954262563891575e-02 -7.5550636380405253311742797e-02 6.1202110047100843903677969e-01
- 7.8248621015771668840699249e-01 -8.7241226890105397218100336e-02 -7.5541241077959550564990820e-02 6.1188056035481674932441365e-01
- 7.8259458433201634086628928e-01 -8.7262696987628729505814817e-02 -7.5531838768352829727170672e-02 6.1174004251881008986657662e-01
- 7.8270290720295021547059378e-01 -8.7284157248212757007621576e-02 -7.5522429531341403463606810e-02 6.1159954021173268401412315e-01
- 7.8281117878719597147352260e-01 -8.7305607682497690658074418e-02 -7.5513013372690951374721635e-02 6.1145905344868900499477604e-01
- 7.8291939910143482084237121e-01 -8.7327048301116177997371892e-02 -7.5503590298165418337461574e-02 6.1131858224476520735635177e-01
- 7.8302756816235374870416308e-01 -8.7348479114694566050047797e-02 -7.5494160313527430838931309e-02 6.1117812661502868287755064e-01
- 7.8313568085062312817967722e-01 -8.7369898102485882285250796e-02 -7.5484723355343577577691860e-02 6.1103769345610725594042378e-01
- 7.8324374025310616875827918e-01 -8.7391306495349235783365316e-02 -7.5475279473011899766810018e-02 6.1089727867443610609399229e-01
- 7.8335174845648292141220281e-01 -8.7412705123730061185227669e-02 -7.5465828700648274196538523e-02 6.1075687951233714745313819e-01
- 7.8345970547832310959535107e-01 -8.7434093998288692217712992e-02 -7.5456371043860714920015198e-02 6.1061649598369760472138523e-01
- 7.8356761133563246346511733e-01 -8.7455473129628327755291650e-02 -7.5446906508351979647741814e-02 6.1047612810310980524519664e-01
- 7.8367546513392327689473404e-01 -8.7476842170190388658923553e-02 -7.5437435088655843684612989e-02 6.1033577710822906059462412e-01
- 7.8378326151909705199472000e-01 -8.7498199019231101547511287e-02 -7.5427956723315134346385946e-02 6.1019545022510912613000755e-01
- 7.8389100679277523564536523e-01 -8.7519546165311129515274047e-02 -7.5418471499513223266220052e-02 6.1005513903671404474238216e-01
- 7.8399870097332735596751263e-01 -8.7540883619110179680866679e-02 -7.5408979422715738394344953e-02 6.0991484355584035803587994e-01
- 7.8410634407727353156758454e-01 -8.7562211391136138272095479e-02 -7.5399480498701862418720054e-02 6.0977456379763206317790036e-01
- 7.8421393612013312601760617e-01 -8.7583529491800329869199970e-02 -7.5389974733420420105467485e-02 6.0963429977849936669542785e-01
- 7.8432147324239720465044456e-01 -8.7604836414095263452672668e-02 -7.5380462086814981059745833e-02 6.0949405672517731336057523e-01
- 7.8442895603821904959573885e-01 -8.7626132399992270882727041e-02 -7.5370942573564123079243871e-02 6.0935383388059638498646109e-01
- 7.8453638782893642122928668e-01 -8.7647418754818323671784697e-02 -7.5361416238778886067528617e-02 6.0921362681774260394718112e-01
- 7.8464376863133278305895146e-01 -8.7668695489052997360523989e-02 -7.5351883088187479597941376e-02 6.0907343555135584622917122e-01
- 7.8475109846219559539548527e-01 -8.7689962613169150640324290e-02 -7.5342343127516156475742548e-02 6.0893326009615722504975110e-01
- 7.8485837733831653739713374e-01 -8.7711220137632911475478181e-02 -7.5332796362489254371475056e-02 6.0879310046685020108014896e-01
- 7.8496559844091851054770359e-01 -8.7732465413490404171348302e-02 -7.5323242725206268621818140e-02 6.0865296588624395734967720e-01
- 7.8507276829450978183899679e-01 -8.7753700989701866053138701e-02 -7.5313682294061906619120350e-02 6.0851284760826074293760257e-01
- 7.8517988724847520565219838e-01 -8.7774927006244424232406232e-02 -7.5304115078415695405666952e-02 6.0837274519966555441641276e-01
- 7.8528695531935144291679762e-01 -8.7796143473517704314268428e-02 -7.5294541084030566779894400e-02 6.0823265867543307994225188e-01
- 7.8539397252395215520692773e-01 -8.7817350401938304438331784e-02 -7.5284960316620685993882489e-02 6.0809258805016963567169341e-01
- 7.8550093625247441320169628e-01 -8.7838546784288026869624844e-02 -7.5275372755348096687200155e-02 6.0795253688248895862500376e-01
- 7.8560784462184685139618523e-01 -8.7859731900726420472658162e-02 -7.5265778389251997149145268e-02 6.0781250775416673093332065e-01
- 7.8571470218144767727608269e-01 -8.7880907518226025754159991e-02 -7.5256177269721988287720649e-02 6.0767249456630845205751257e-01
- 7.8582150894684921205168848e-01 -8.7902073647050119054036088e-02 -7.5246569402680332783184269e-02 6.0753249733505887419937608e-01
- 7.8592826493480194560703467e-01 -8.7923230297558663259849254e-02 -7.5236954793845095545989921e-02 6.0739251607503652596875554e-01
- 7.8603497016364354266215742e-01 -8.7944377480243904332546379e-02 -7.5227333448659769454813784e-02 6.0725255079880635644684617e-01
- 7.8614161906972568338858309e-01 -8.7965513057958563680749364e-02 -7.5217705322893013697438391e-02 6.0711260906428132777534756e-01
- 7.8624821568948966010736967e-01 -8.7986638593575000610869097e-02 -7.5208070460373782628593631e-02 6.0697268545769433867320686e-01
- 7.8635476160372397291808966e-01 -8.8007754700796830826803330e-02 -7.5198428881569093218395494e-02 6.0683277787988554319298373e-01
- 7.8646125682970657866377451e-01 -8.8028861389979284890472400e-02 -7.5188780592098936050859947e-02 6.0669288634472684496046213e-01
- 7.8656770138510323508995725e-01 -8.8049958671504419127629149e-02 -7.5179125597515078505139741e-02 6.0655301086557544820720977e-01
- 7.8667409389929165985932968e-01 -8.8071046024179172606594079e-02 -7.5169463892136662019893834e-02 6.0641315333533474252192264e-01
- 7.8678043003402620136910173e-01 -8.8092121793572772392444392e-02 -7.5159795447270166812714365e-02 6.0627331966836872645387757e-01
- 7.8688671555316846983885171e-01 -8.8113188194671163144811032e-02 -7.5150120317084942445085005e-02 6.0613350210035854548351608e-01
- 7.8699295047363038158039217e-01 -8.8134245237746322576555258e-02 -7.5140438507256573918979825e-02 6.0599370064557622761469702e-01
- 7.8709913481232762766381938e-01 -8.8155292933063733595844269e-02 -7.5130750023459119679714036e-02 6.0585391531827537114907045e-01
- 7.8720526858617856369448873e-01 -8.8176331290881787561275473e-02 -7.5121054871364376093190174e-02 6.0571414613269247695370723e-01
- 7.8731134748343811757820276e-01 -8.8197358672645817523338962e-02 -7.5111353025078944622983101e-02 6.0557439897482756574476070e-01
- 7.8741737306387060701950986e-01 -8.8218375681606966964842798e-02 -7.5101644503628300908459892e-02 6.0543467177073939655684853e-01
- 7.8752334813454760720219383e-01 -8.8239383392213141532600673e-02 -7.5091929333627099873993416e-02 6.0529496075092836804287799e-01
- 7.8762927271332427991978875e-01 -8.8260381814760660579288754e-02 -7.5082207520577842752018682e-02 6.0515526592836432762112508e-01
- 7.8773514681730416597815747e-01 -8.8281370959473859372224069e-02 -7.5072479070112649313095687e-02 6.0501558731697469006860501e-01
- 7.8784097030729494104406285e-01 -8.8302350777882163135323879e-02 -7.5062743987195368333686929e-02 6.0487592514289478806688294e-01
- 7.8794673640719758989092725e-01 -8.8323318707335188304519136e-02 -7.5053002234060778308233353e-02 6.0473628865268447274416985e-01
- 7.8805245208624075115011465e-01 -8.8344277397808659846312196e-02 -7.5043253863430234296139076e-02 6.0459666841747594645539721e-01
- 7.8815811736313123869734909e-01 -8.8365226859621628929808423e-02 -7.5033498880648655249281376e-02 6.0445706444906432963648513e-01
- 7.8826373225447432524504165e-01 -8.8386167102905144332680720e-02 -7.5023737291427083917483287e-02 6.0431747676195091134587756e-01
- 7.8836929677625544599095520e-01 -8.8407098137728595821371869e-02 -7.5013969101584088150502794e-02 6.0417790537142723739094663e-01
- 7.8847480785972168249031711e-01 -8.8428018810627742607444191e-02 -7.5004194299228721387606811e-02 6.0403835449193610251938935e-01
- 7.8858026460524743850299956e-01 -8.8448928791793168802115588e-02 -7.4994412887287739688524368e-02 6.0389882538914885223846341e-01
- 7.8868567103826314745873560e-01 -8.8469829603398039696848798e-02 -7.4984624894066181921559178e-02 6.0375931262247750641591892e-01
- 7.8879102717562754598645824e-01 -8.8490721255544635415191124e-02 -7.4974830325222410754015812e-02 6.0361981620602556120047666e-01
- 7.8889633303410211517814332e-01 -8.8511603758319637447193884e-02 -7.4965029186430776064753445e-02 6.0348033615400831219943711e-01
- 7.8900158863069658199407286e-01 -8.8532477121824132426652909e-02 -7.4955221483320691455709550e-02 6.0334087248030643380047877e-01
- 7.8910678797237765458305603e-01 -8.8553339104414777183116314e-02 -7.4945407193923993527384653e-02 6.0320143339510789992630180e-01
- 7.8921193602145389700552869e-01 -8.8574191575002000909044853e-02 -7.4935586348979343895848615e-02 6.0306201217340682507739302e-01
- 7.8931703386459561855303946e-01 -8.8595034944898329309914686e-02 -7.4925758959214786014690901e-02 6.0292260737070957343775035e-01
- 7.8942208151883463962406040e-01 -8.8615869224163701378671476e-02 -7.4915925030248672888966155e-02 6.0278321900081022199913150e-01
- 7.8952707900120699946455716e-01 -8.8636694422851561303566825e-02 -7.4906084567696790132984574e-02 6.0264384707748330782806079e-01
- 7.8963202447289726482182459e-01 -8.8657509858947547431995417e-02 -7.4896237570094587043811885e-02 6.0250449414945328463488750e-01
- 7.8973691459720118945853073e-01 -8.8678314296144380990405409e-02 -7.4886384032034111757347716e-02 6.0236516481507629272584836e-01
- 7.8984175460676309121765826e-01 -8.8699109691257202459091502e-02 -7.4876523979647169326767653e-02 6.0222585196619848879606707e-01
- 7.8994654451720092147581909e-01 -8.8719896054175059751933929e-02 -7.4866657418793461364892039e-02 6.0208655561838242409322675e-01
- 7.9005128434561722183815391e-01 -8.8740673394906988136199288e-02 -7.4856784355068151093348661e-02 6.0194727578524531708126233e-01
- 7.9015597411038807074135093e-01 -8.8761441723564066252905036e-02 -7.4846904793839805214439309e-02 6.0180801247873083603678879e-01
- 7.9026060905636652531569553e-01 -8.8782199281755208586375261e-02 -7.4837018727527987449477109e-02 6.0166877224310988392375066e-01
- 7.9036519169326124867325234e-01 -8.8802947008083665814126562e-02 -7.4827126170515956271600544e-02 6.0152955168588007062169254e-01
- 7.9046972432092010851789610e-01 -8.8823685760376233644386446e-02 -7.4817227135702948914719457e-02 6.0139034769746291253511572e-01
- 7.9057420695694080592375030e-01 -8.8844415548634578239095561e-02 -7.4807321628587705730772939e-02 6.0125116029075775792023251e-01
- 7.9067863961910755943307549e-01 -8.8865136382868942233059784e-02 -7.4797409654633328912609613e-02 6.0111198947840704942535694e-01
- 7.9078302169154313094878717e-01 -8.8885848039609180459841298e-02 -7.4787491218191864961184478e-02 6.0097283614150232011752450e-01
- 7.9088734741684574292008847e-01 -8.8906548401681079196734458e-02 -7.4777566314264132252276340e-02 6.0083370821164905350997287e-01
- 7.9099162322409355407870635e-01 -8.8927239847700942365626986e-02 -7.4767634962920562213817277e-02 6.0069459691629889519504104e-01
- 7.9109584913039787679167603e-01 -8.8947922387579744785135460e-02 -7.4757697169736375686355245e-02 6.0055550226891274423479672e-01
- 7.9120002515287291000589676e-01 -8.8968596031221230946428591e-02 -7.4747752940285155931476879e-02 6.0041642428293462430133332e-01
- 7.9130415130863573924813181e-01 -8.8989260788522997480676224e-02 -7.4737802280137891064448752e-02 6.0027736297179090652065270e-01
- 7.9140822407658295567500772e-01 -8.9009915371618758550553707e-02 -7.4727845190914729545106354e-02 6.0013832320774951334385605e-01
- 7.9151224352586169175083342e-01 -8.9030559814610582547445006e-02 -7.4717881680014100465037075e-02 5.9999930493710229573167680e-01
- 7.9161621316425023753282630e-01 -8.9051195409181146955823749e-02 -7.4707911757718598044775149e-02 5.9986030338111995252603492e-01
- 7.9172013300986343597998030e-01 -8.9071822165162503615043477e-02 -7.4697935429463180323494953e-02 5.9972131855187360560677234e-01
- 7.9182400307988010101922782e-01 -8.9092440092349442504193746e-02 -7.4687952700826801266664745e-02 5.9958235046263996803617147e-01
- 7.9192782338982037337871134e-01 -8.9113049200447921882606295e-02 -7.4677963577655964710899639e-02 5.9944339912885391541408353e-01
- 7.9203158752729196923070276e-01 -8.9133647154272618862158595e-02 -7.4667968064022746665919783e-02 5.9930447340994008609271759e-01
- 7.9213530136194887365519435e-01 -8.9154236104329681600333402e-02 -7.4657966169350109542079963e-02 5.9916556527250808272810900e-01
- 7.9223896549472927475221695e-01 -8.9174816273031920488278956e-02 -7.4647957899054928621040972e-02 5.9902667392697417358959910e-01
- 7.9234257994229351229620306e-01 -8.9195387670139597569018974e-02 -7.4637943258771113907990014e-02 5.9888779938721781181953929e-01
- 7.9244614472097352209090104e-01 -8.9215950305378530216238175e-02 -7.4627922254190320883182608e-02 5.9874894166753800384128681e-01
- 7.9254965753452155663438816e-01 -8.9236503348432041904381151e-02 -7.4617894891916392019481918e-02 5.9861010396915059761369093e-01
- 7.9265311602945476288084592e-01 -8.9257045953699279405846312e-02 -7.4607861181155629703987131e-02 5.9847128957568918039555683e-01
- 7.9275652491324255510818375e-01 -8.9277579834608600251044663e-02 -7.4597821125056348878779033e-02 5.9833249203912430846941106e-01
- 7.9285988420285991029601291e-01 -8.9298105000897923244629339e-02 -7.4587774729186040456596629e-02 5.9819371137284982342663398e-01
- 7.9296319391527458897428460e-01 -8.9318621462297784208139717e-02 -7.4577721999111626360878802e-02 5.9805494759025679130104436e-01
- 7.9306645406767839467931935e-01 -8.9339129228550751005144548e-02 -7.4567662940358089840309219e-02 5.9791620070442685896949797e-01
- 7.9316965947615492016353755e-01 -8.9359626433116817745272442e-02 -7.4557597566665009813924314e-02 5.9777747790904744995543751e-01
- 7.9327281357658596672166595e-01 -8.9380114324409287718253836e-02 -7.4547525880384948870904793e-02 5.9763877450242153255288713e-01
- 7.9337591817366015511936439e-01 -8.9400593557756508067413392e-02 -7.4537447884536436881752763e-02 5.9750008803052312433834459e-01
- 7.9347897328458893984048927e-01 -8.9421064142860481882557622e-02 -7.4527363584632161375154169e-02 5.9736141850634905114958428e-01
- 7.9358197892658621785955120e-01 -8.9441526089417092149069788e-02 -7.4517272986182825356138437e-02 5.9722276594287848627828907e-01
- 7.9368493401521478247673258e-01 -8.9461979011569894848499018e-02 -7.4507176097292127092686087e-02 5.9708413187640885233520294e-01
- 7.9378783379706174816448083e-01 -8.9482421209894233427029064e-02 -7.4497072936315647528893180e-02 5.9694552291989333436816878e-01
- 7.9389068416782704318279684e-01 -8.9502854806790418940032339e-02 -7.4486963495650510003187605e-02 5.9680693096023262889104899e-01
- 7.9399348514320766678764585e-01 -8.9523279811785774762178391e-02 -7.4476847781073704513055134e-02 5.9666835601234835539941059e-01
- 7.9409623674061990961092761e-01 -8.9543696234544944978495096e-02 -7.4466725798049041018522587e-02 5.9652979808887951485019130e-01
- 7.9419893897844917596273717e-01 -8.9564104084805445937789159e-02 -7.4456597551860861927686130e-02 5.9639125720116992201980111e-01
- 7.9430158789274851738326788e-01 -8.9584501951883097059514682e-02 -7.4446463061606613087484163e-02 5.9625273887732255229110478e-01
- 7.9440418450352356938282128e-01 -8.9604890207377177469005858e-02 -7.4436322330968238136783555e-02 5.9611424174570426526287292e-01
- 7.9450673180983333310223315e-01 -8.9625269927048917262268901e-02 -7.4426175356475221533969489e-02 5.9597576168932286932999887e-01
- 7.9460922982989024010436196e-01 -8.9645641120579808158730373e-02 -7.4416022143434651381355138e-02 5.9583729871968993396791348e-01
- 7.9471167858132130135118132e-01 -8.9666003797596177671280770e-02 -7.4405862697258323690263637e-02 5.9569885284907586608937891e-01
- 7.9481407807969406409398516e-01 -8.9686357967547911118622039e-02 -7.4395697023733262098765806e-02 5.9556042409246434665703873e-01
- 7.9491642150000729749592665e-01 -8.9706701211896014425128953e-02 -7.4385525157226725645465137e-02 5.9542202195953908283598821e-01
- 7.9501871560493442281369880e-01 -8.9727035939687144194820689e-02 -7.4375347077043837962229134e-02 5.9528363710631937433248595e-01
- 7.9512096051490699366581794e-01 -8.9747362197121330340543466e-02 -7.4365162788229091650471503e-02 5.9514526940234580010269383e-01
- 7.9522315624720474325215491e-01 -8.9767679993748669686759456e-02 -7.4354972296247143215275344e-02 5.9500691886027534671654848e-01
- 7.9532530281910851499560522e-01 -8.9787989339111834441453652e-02 -7.4344775606560262182220811e-02 5.9486858549274845842091963e-01
- 7.9542739748222734963434277e-01 -8.9808289266133711770123682e-02 -7.4334572738591050966583396e-02 5.9473027315709470208560106e-01
- 7.9552943885339977292403546e-01 -8.9828579294045682313019086e-02 -7.4324363706640098059530430e-02 5.9459198381681155343159162e-01
- 7.9563143112117973299035611e-01 -8.9848860907131164466044027e-02 -7.4314148495863555088369878e-02 5.9445371168753691204500456e-01
- 7.9573337430286616989150161e-01 -8.9869134114893473030960536e-02 -7.4303927111711048913988975e-02 5.9431545678182706726744300e-01
- 7.9583526841556373465635943e-01 -8.9889398926813524060008831e-02 -7.4293699559666109832889447e-02 5.9417721911248178034981038e-01
- 7.9593711347627427166173675e-01 -8.9909655352356981916628342e-02 -7.4283465845229657009696211e-02 5.9403899869242404729874352e-01
- 7.9603890388176734571601401e-01 -8.9929901427577008110603174e-02 -7.4273226007256026859337794e-02 5.9390080336232575763943942e-01
- 7.9614064397544714868359961e-01 -8.9950138686648778429955087e-02 -7.4262980027972450014495109e-02 5.9376262711455496390300368e-01
- 7.9624233507537045539947940e-01 -8.9970367595668426785593397e-02 -7.4252727904901463795717120e-02 5.9362446815061675753355530e-01
- 7.9634397719822636041442365e-01 -8.9990588164035836826748493e-02 -7.4242469643592393091502402e-02 5.9348632648378851772719145e-01
- 7.9644557036065466437690930e-01 -9.0010800401139248738680010e-02 -7.4232205249601515562041243e-02 5.9334820212740091438519130e-01
- 7.9654711302038283537996222e-01 -9.0031003771044823547065050e-02 -7.4221934738589762092786373e-02 5.9321009726953577434471754e-01
- 7.9664860140941518018564693e-01 -9.0051196965125340776481266e-02 -7.4211658143676334509208914e-02 5.9307201720628932584133963e-01
- 7.9675004089632761594685917e-01 -9.0071381864094815505872305e-02 -7.4201375434629526783858466e-02 5.9293395448768326794208861e-01
- 7.9685143149818205010603833e-01 -9.0091558477335478838377014e-02 -7.4191086616917881202404317e-02 5.9279590912642443623070676e-01
- 7.9695277323211854980655744e-01 -9.0111726814229478610407398e-02 -7.4180791695993952838961150e-02 5.9265788113510231571723352e-01
- 7.9705406611547824358154912e-01 -9.0131886884168829765506814e-02 -7.4170490677270481394423030e-02 5.9251987052602339556273137e-01
- 7.9715530575581294847609115e-01 -9.0152037165127638096429052e-02 -7.4160183600281356919303732e-02 5.9238188347442455317093390e-01
- 7.9725649410010324125153147e-01 -9.0172178341455119787717365e-02 -7.4149870457564742709521965e-02 5.9224391730054537497096590e-01
- 7.9735763365106304689788885e-01 -9.0192311286682799731373450e-02 -7.4139551235743908486064413e-02 5.9210596854423447332749220e-01
- 7.9745872442604948115985053e-01 -9.0212436010163252197990857e-02 -7.4129225940218909651768797e-02 5.9196803721771529271933332e-01
- 7.9755976644242343454038746e-01 -9.0232552521242834209225236e-02 -7.4118894576387484018908935e-02 5.9183012333319329201231085e-01
- 7.9766075935102620508843074e-01 -9.0252660702580339568967815e-02 -7.4108557152764931164057316e-02 5.9169222741589644343207510e-01
- 7.9776169702213151069258856e-01 -9.0272758442186490368541740e-02 -7.4098213728523210086507333e-02 5.9155435808541700914986450e-01
- 7.9786258599308057526400262e-01 -9.0292848005167819502858606e-02 -7.4087864254401739061428600e-02 5.9141650623039865308783192e-01
- 7.9796342627962268956309799e-01 -9.0312929400699973325750136e-02 -7.4077508736089106577971108e-02 5.9127867186514015962472968e-01
- 7.9806421789944781419734454e-01 -9.0333002638108852999643261e-02 -7.4067147178909151228332064e-02 5.9114085500133062289762620e-01
- 7.9816496087092514422067779e-01 -9.0353067726768820921989800e-02 -7.4056779588056204088886147e-02 5.9100305564973409921947223e-01
- 7.9826565200306087710657721e-01 -9.0373123574242902877884376e-02 -7.4046405999667733177638240e-02 5.9086527832162838436147467e-01
- 7.9836629086479338202053668e-01 -9.0393170039332601528592193e-02 -7.4036026424726231187634085e-02 5.9072752366236480625616423e-01
- 7.9846688113388741836473628e-01 -9.0413208391018490273083330e-02 -7.4025640835001807471549284e-02 5.9058978655216542996697626e-01
- 7.9856742282881076899769823e-01 -9.0433238638642055029492894e-02 -7.4015249235659733018088957e-02 5.9045206700159924562143487e-01
- 7.9866791596718444967706318e-01 -9.0453260791470466162245145e-02 -7.4004851632021903529157214e-02 5.9031436502235601349042327e-01
- 7.9876836056486266723908329e-01 -9.0473274858621846594708416e-02 -7.3994448029741227701450157e-02 5.9017668062848094301386936e-01
- 7.9886875060734874320900190e-01 -9.0493278788896014397380441e-02 -7.3984038496730811229618041e-02 5.9003902230683280549783376e-01
- 7.9896909133107485434521777e-01 -9.0513274379527552948587754e-02 -7.3973622986416645574969664e-02 5.8990138274202796875300692e-01
- 7.9906938357267942585338005e-01 -9.0533261919849589149933422e-02 -7.3963201495759176018474079e-02 5.8976376079531034335445838e-01
- 7.9916962734957375236177768e-01 -9.0553241419065524930864797e-02 -7.3952774030107415459411868e-02 5.8962615647857408163190485e-01
- 7.9926982267917145996705131e-01 -9.0573212886372850283223102e-02 -7.3942340594808128595438745e-02 5.8948856980369612745818131e-01
- 7.9936996756699763011511095e-01 -9.0593175647143975304231844e-02 -7.3931901217734338760401158e-02 5.8935100361366499210902248e-01
- 7.9947005921720526444573807e-01 -9.0613128758103053672634530e-02 -7.3921455937340008190972185e-02 5.8921346188288148404410549e-01
- 7.9957010247764614963017493e-01 -9.0633073872262909231878325e-02 -7.3911004705749766552358437e-02 5.8907593782783052027696158e-01
- 7.9967009736574734546366017e-01 -9.0653010998781979878913262e-02 -7.3900547528297180766010399e-02 5.8893843146030877555574534e-01
- 7.9977004389872907719194473e-01 -9.0672940146795666382928403e-02 -7.3890084410352871446825418e-02 5.8880094279237671361926232e-01
- 7.9986994209379302933626832e-01 -9.0692861325431764485394126e-02 -7.3879615357288749843966968e-02 5.8866347183610556736965691e-01
- 7.9996978713947053396537967e-01 -9.0712772911906311423813065e-02 -7.3869140432792038120091149e-02 5.8852602541126752822009394e-01
- 8.0006958189092902689054654e-01 -9.0732675879661522921892924e-02 -7.3858659610286356289599041e-02 5.8838859953364364141492615e-01
- 8.0016932836320830979559560e-01 -9.0752570913038108080250765e-02 -7.3848172870829661973424152e-02 5.8825119139963211178923075e-01
- 8.0026902657299647803057496e-01 -9.0772458021083357593283836e-02 -7.3837680219880408305499486e-02 5.8811380102193344665550967e-01
- 8.0036867653720500381808733e-01 -9.0792337212855775407938097e-02 -7.3827181662853375021526858e-02 5.8797642841293418225490086e-01
- 8.0046827744822157679749353e-01 -9.0812208219571463607699968e-02 -7.3816677215407189294182899e-02 5.8783907474940699788845677e-01
- 8.0056782416417859860047201e-01 -9.0832069319404365459469375e-02 -7.3806166951390944630517765e-02 5.8770174733118796250863625e-01
- 8.0066732269387974607610658e-01 -9.0851922537837415116968032e-02 -7.3795650799307582756725310e-02 5.8756443771258004549196130e-01
- 8.0076677305327570444148932e-01 -9.0871767883813583943641845e-02 -7.3785128764743981855112054e-02 5.8742714590720468414986044e-01
- 8.0086617525981129706025285e-01 -9.0891605366387906439484823e-02 -7.3774600852999930311604260e-02 5.8728987192665160765869814e-01
- 8.0096552933189546497061428e-01 -9.0911434994685333399466742e-02 -7.3764067069189642733562096e-02 5.8715261578119182228618911e-01
- 8.0106483164950548214733317e-01 -9.0931255562141738435499860e-02 -7.3753527469180665820935872e-02 5.8701538262816832514090493e-01
- 8.0116408270975814076564347e-01 -9.0951067242449987193531058e-02 -7.3742982053499453454215029e-02 5.8687817180497392488547348e-01
- 8.0126328569278448821222582e-01 -9.0970871102983394407281992e-02 -7.3732430784107003129967950e-02 5.8674097885032261423532418e-01
- 8.0136244061605665933711862e-01 -9.0990667152753182400637399e-02 -7.3721873666284770676426774e-02 5.8660380377568843712765556e-01
- 8.0146154749705011965943413e-01 -9.1010455400765119526873548e-02 -7.3711310705311783308957274e-02 5.8646664659252722984206230e-01
- 8.0156060635324044572058710e-01 -9.1030235856018201778816490e-02 -7.3700741906464722896785702e-02 5.8632950731227928553579432e-01
- 8.0165961076738179169609566e-01 -9.1050006389795087868854750e-02 -7.3690167370464049190204037e-02 5.8619239506634790437544780e-01
- 8.0175856684819235553618455e-01 -9.1069769040157427797410605e-02 -7.3679587014626041208131824e-02 5.8605530123859417290788087e-01
- 8.0185747496156944968959124e-01 -9.1089523932071259082476899e-02 -7.3669000839185913576123710e-02 5.8591822534671256228477887e-01
- 8.0195633512563402334194507e-01 -9.1109271074547151791911404e-02 -7.3658408849284803809887023e-02 5.8578116740120489414067606e-01
- 8.0205514735840122142462860e-01 -9.1129010476581034927434644e-02 -7.3647811050081918304854867e-02 5.8564412741270099882484601e-01
- 8.0215390922277385321592647e-01 -9.1148741336070884799802627e-02 -7.3637207485492836567253505e-02 5.8550710887675005977826004e-01
- 8.0225261887661369897273289e-01 -9.1168463050261730473700084e-02 -7.3626598191001535465005645e-02 5.8537011444853326302961705e-01
- 8.0235128065534777608291961e-01 -9.1188177058058858537314961e-02 -7.3615983105660059981900645e-02 5.8523313801162923919463310e-01
- 8.0244989457766402463079203e-01 -9.1207883368471714957692598e-02 -7.3605362234486673700395443e-02 5.8509617957569104440551655e-01
- 8.0254846066115281821851113e-01 -9.1227581990417958013317445e-02 -7.3594735582708403764939931e-02 5.8495923915184644403808534e-01
- 8.0264697892191805284056727e-01 -9.1247272932692566338452878e-02 -7.3584103155837590759524858e-02 5.8482231675323048669667969e-01
- 8.0274544413764437056357792e-01 -9.1266954481770232177062496e-02 -7.3573465045566749376249049e-02 5.8468541984307054182323782e-01
- 8.0284386005701491306751905e-01 -9.1286627877840545441934239e-02 -7.3562821197648356474907416e-02 5.8454854313126802800582027e-01
- 8.0294222821260063938098028e-01 -9.1306293628300963516331024e-02 -7.3552171592501783270456883e-02 5.8441168447497160443049324e-01
- 8.0304054862191498465051609e-01 -9.1325951742017838497211812e-02 -7.3541516235355541830642778e-02 5.8427484388533601489257308e-01
- 8.0313882130247282731261294e-01 -9.1345602227851388499324514e-02 -7.3530855131435465810163521e-02 5.8413802137349846166358702e-01
- 8.0323704499417791780047082e-01 -9.1365244676797935374779058e-02 -7.3520188308104583718716185e-02 5.8400121877039834483724690e-01
- 8.0333521552938347287664556e-01 -9.1384877732180139209283709e-02 -7.3509515844558170893918714e-02 5.8386444205186216471759053e-01
- 8.0343333839378361371785786e-01 -9.1404503193495426072168186e-02 -7.3498837652244297657944117e-02 5.8372768344249303940074469e-01
- 8.0353141360490387690163061e-01 -9.1424121069566433028796837e-02 -7.3488153736375502744770927e-02 5.8359094295335078861342026e-01
- 8.0362944118027035411699899e-01 -9.1443731369209399484354606e-02 -7.3477464102161188508333112e-02 5.8345422059547924487077353e-01
- 8.0372742113741058034293019e-01 -9.1463334101234833317661810e-02 -7.3466768754808675634393467e-02 5.8331751637990536529798646e-01
- 8.0382534943608363597888911e-01 -9.1482927955322798641013549e-02 -7.3456067773700658984914469e-02 5.8318083610823923113031242e-01
- 8.0392322748460676162807204e-01 -9.1502513396944193391213673e-02 -7.3445361140676249100955886e-02 5.8304417781133099918378093e-01
- 8.0402105797375877926924659e-01 -9.1522091304634636821369043e-02 -7.3434648812284925023519122e-02 5.8290753768655290123490431e-01
- 8.0411884092010843527731367e-01 -9.1541661687092143462329830e-02 -7.3423930793909061853774745e-02 5.8277091574617767566479642e-01
- 8.0421657634080212506688667e-01 -9.1561224553052739105751812e-02 -7.3413207090816556821266659e-02 5.8263431200167503654085976e-01
- 8.0431426414290241311277896e-01 -9.1580779875128248690430155e-02 -7.3402477710009433886639840e-02 5.8249772662196397376987989e-01
- 8.0441189785238753628959785e-01 -9.1600325565293794216614742e-02 -7.3391742782032878822384703e-02 5.8236116889887867831276935e-01
- 8.0450948409590072873953659e-01 -9.1619863772546550340081239e-02 -7.3381002186898261485659134e-02 5.8222462940010910603660932e-01
- 8.0460702288937913095878685e-01 -9.1639394505491203468672268e-02 -7.3370255930098063346100901e-02 5.8208810813871547651388028e-01
- 8.0470451425047417881586398e-01 -9.1658917772859616057701260e-02 -7.3359504016787591140769109e-02 5.8195160512539845232282687e-01
- 8.0480195819759736686194174e-01 -9.1678433583433791009831282e-02 -7.3348746451969329407383213e-02 5.8181512036980054247692351e-01
- 8.0489935186437489011979096e-01 -9.1697941018668904789024054e-02 -7.3337983298580308733072286e-02 5.8167865801225959732079218e-01
- 8.0499669433836673615445534e-01 -9.1717439792085173055902203e-02 -7.3327214582118771524221756e-02 5.8154221939934458429632969e-01
- 8.0509398945601473585043095e-01 -9.1736931141935720845914659e-02 -7.3316440232050875125402456e-02 5.8140579907510236967738138e-01
- 8.0519123723487717736446712e-01 -9.1756415076900160743278434e-02 -7.3305660253534937753627787e-02 5.8126939705028057847613354e-01
- 8.0528843769251445827705993e-01 -9.1775891605652359928058104e-02 -7.3294874651726682479591091e-02 5.8113301333560851702486616e-01
- 8.0538559084648708719100796e-01 -9.1795360736860051598107191e-02 -7.3284083431779806216965767e-02 5.8099664794180050364502677e-01
- 8.0548269107219550022591648e-01 -9.1814820675859720733313907e-02 -7.3273286717059168959842452e-02 5.8086030897370966030734962e-01
- 8.0557974299101930970579133e-01 -9.1834272907713676570296002e-02 -7.3262484418476742087378284e-02 5.8072398984273720934368157e-01
- 8.0567674766389929530419067e-01 -9.1853717775061946571035776e-02 -7.3251676519578146073996550e-02 5.8058768906315272317897325e-01
- 8.0577370510909218648265551e-01 -9.1873155286587390722097268e-02 -7.3240863025367031191592559e-02 5.8045140664464911495201704e-01
- 8.0587061534456250200264549e-01 -9.1892585451000957652567536e-02 -7.3230043940893024823068913e-02 5.8031514259729755078609514e-01
- 8.0596747666732981851822615e-01 -9.1912007730348702083666979e-02 -7.3219219308957972369711342e-02 5.8017889940367550760669246e-01
- 8.0606428586533251934298505e-01 -9.1931421108439673184342666e-02 -7.3208389205945176292367194e-02 5.8004268171856565583510701e-01
- 8.0616104791018927677725969e-01 -9.1950827172151070043604193e-02 -7.3197553530676001676269493e-02 5.7990648243645848136651466e-01
- 8.0625776282077477041809743e-01 -9.1970225930167917582913617e-02 -7.3186712288017111149862615e-02 5.7977030156611530919974484e-01
- 8.0635443061462241942649598e-01 -9.1989617391067549090344357e-02 -7.3175865483097651820187934e-02 5.7963413911812744494511662e-01
- 8.0645105130810645910344192e-01 -9.2009001563334011364325704e-02 -7.3165013121274796725757028e-02 5.7949799510466981633527439e-01
- 8.0654762045258643343714766e-01 -9.2028377043041204030870972e-02 -7.3154155308521429113000067e-02 5.7936187596543797795334285e-01
- 8.0664414034693321386981779e-01 -9.2047744565008790540439065e-02 -7.3143292000683618470091574e-02 5.7922577843165357069921129e-01
- 8.0674061320031198452085164e-01 -9.2067104831150547994411681e-02 -7.3132423153319719988374459e-02 5.7908969936005461054406851e-01
- 8.0683703903032444326726136e-01 -9.2086457850005909442359098e-02 -7.3121548771530556209974350e-02 5.7895363876105876421718222e-01
- 8.0693341785429806289897670e-01 -9.2105803630087856870289897e-02 -7.3110668860469282814840142e-02 5.7881759664544707444377991e-01
- 8.0702974912635272453087509e-01 -9.2125142002648374717210800e-02 -7.3099783438441923166806191e-02 5.7868157383599250209726961e-01
- 8.0712602734892269218391903e-01 -9.2144471243930881065864469e-02 -7.3088892641113803461117016e-02 5.7854557829752584208193866e-01
- 8.0722225862372398719202238e-01 -9.2163793278999719960076220e-02 -7.3077996332061675999192119e-02 5.7840960127139207092028528e-01
- 8.0731844296835209018325941e-01 -9.2183108116350581662246100e-02 -7.3067094516372874113407931e-02 5.7827364276793757902339621e-01
- 8.0741458040040203769649452e-01 -9.2202415764473591441863221e-02 -7.3056187199131955578579323e-02 5.7813770279749399083613071e-01
- 8.0751067093747019853822167e-01 -9.2221716231852407519298254e-02 -7.3045274385421452012501220e-02 5.7800178137037516723495401e-01
- 8.0760671129281280666845078e-01 -9.2241008493716497573799984e-02 -7.3034356160906241384189741e-02 5.7786588326966603634815556e-01
- 8.0770270146650779974351053e-01 -9.2260292557136053259725372e-02 -7.3023432532988041820942726e-02 5.7773000853519584918416285e-01
- 8.0779864480441243568265008e-01 -9.2279569472247899297734364e-02 -7.3012503425900376896606758e-02 5.7759415237141598087333705e-01
- 8.0789454132306581790601285e-01 -9.2298839247419606213185261e-02 -7.3001568844924660806050554e-02 5.7745831479003906228086862e-01
- 8.0799039103981740161941616e-01 -9.2318101891073978126911470e-02 -7.2990628795177550647288456e-02 5.7732249580164196611775651e-01
- 8.0808619397376402204713486e-01 -9.2337357411758080871777565e-02 -7.2979683281421972584901425e-02 5.7718669541436329328831789e-01
- 8.0818194410760213486355497e-01 -9.2356603942923470862425006e-02 -7.2968732462046131947985828e-02 5.7705092237121402565236394e-01
- 8.0827764691738568370027451e-01 -9.2375843193773302108873224e-02 -7.2957776205642047018251617e-02 5.7691516878919135713488231e-01
- 8.0837330300111143177588247e-01 -9.2395075353714911647884378e-02 -7.2946814502956772163777543e-02 5.7677943383872987137550581e-01
- 8.0846891237660312157231601e-01 -9.2414300431163623472663460e-02 -7.2935847358996455658264324e-02 5.7664371752966891992997489e-01
- 8.0856447506225337384933027e-01 -9.2433518434571079747108513e-02 -7.2924874778650242146404992e-02 5.7650801987103961199210289e-01
- 8.0865998892537727105178647e-01 -9.2452728707396833462972552e-02 -7.2913896823169940808462286e-02 5.7637234398939141133411113e-01
- 8.0875545127182824067801903e-01 -9.2471930422878934052732802e-02 -7.2902913570013189170637702e-02 5.7623669382899489477267707e-01
- 8.0885087314601189500962164e-01 -9.2491126998029041250681814e-02 -7.2891924735340257734961256e-02 5.7610105341506401277484883e-01
- 8.0894626468455621548514500e-01 -9.2510321563084738083482250e-02 -7.2880930054589523892083491e-02 5.7596540806855478500381196e-01
- 8.0904163325875833034928064e-01 -9.2529516395109437376653716e-02 -7.2869929333991764752731513e-02 5.7582974710286294328653867e-01
- 8.0913697886597046871060002e-01 -9.2548711492891053143061697e-02 -7.2858922573388634758018156e-02 5.7569407052192311802230051e-01
-
-
-SCAN_DURATION 2.1375460516076427097686974e+02
-
-NUMBER_OF_INT_TIMES 19
-INT_TIME
- 1 -1.2979222506284713745117188e+01 1.3439914703369141429911693e-02
- 569 -5.3452502340078353881835938e+00 1.3546573638916014833966095e-02
- 570 -5.3315970152616500854492188e+00 1.3653233528137206573283002e-02
- 1145 2.5191212296485900878906250e+00 1.3759892463684081712060880e-02
- 1146 2.5329877883195877075195312e+00 1.3866552352905273451377788e-02
- 1721 1.0506363645195960998535156e+01 1.3973211288452148590155666e-02
- 1722 1.0520443513989448547363281e+01 1.4079870223999023728933544e-02
- 2297 1.8616473421454429626464844e+01 1.4186530113220215468250451e-02
- 2298 1.8630763590335845947265625e+01 1.4293189048767090607028329e-02
- 2841 2.6392075225710868835449219e+01 1.4399848937988280611621761e-02
- 2842 2.6406581729650497436523438e+01 1.4506507873535155750399639e-02
- 3353 3.3819516733288764953613281e+01 1.4613167762756347489716546e-02
- 3354 3.3834236547350883483886719e+01 1.4719826698303222628494424e-02
- 3865 4.1356175139546394348144531e+01 1.4826486587524414367811332e-02
- 3866 4.1371108293533325195312500e+01 1.4933145523071289506589210e-02
- 4377 4.9002049684524536132812500e+01 1.5039805412292481245906117e-02
- 4378 4.9017199695110321044921875e+01 1.5146464347839354649960519e-02
- 4857 5.6272463485598564147949219e+01 1.5253123283386229788738397e-02
- 4858 5.6287823274731636047363281e+01 1.5359783172607421528055305e-02
-
-ALONG_SCAN_PIXEL_SIZE  1.4000000000000000291433544e-02
-CROSS_SCAN_PIXEL_SIZE  1.4000000000000000291433544e-02
-
-CENTER_GP 1.2531854672660830418706723e-01 1.2957195449605263259940102e+00 0.0000000000000000000000000e+00
-SENSOR_POSITION 2.2392443224898467279970760e-01 1.3028281764753821825308933e+00 8.8883283547887718304991722e+05
-MOUNTING_ANGLES 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-
-TOTAL_LINES 14264
-TOTAL_SAMPLES 2584
-
-
-
-
-IKCODE  -41211
-ISIS_Z_DIRECTION  1.0000000000000000000000000e+00
-OPTICAL_DIST_COEF 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-ITRANSS -2.7941368739537999488220521e+00 -1.4285714199354998754643020e+02 1.5707963236297001197172563e-02
-ITRANSL 8.5703856624765994638437405e+03 1.5707963236297001197172563e-02 1.4285714199354998754643020e+02
-DETECTOR_SAMPLE_ORIGIN 2.5925000000000000000000000e+03
-DETECTOR_LINE_ORIGIN 0.0000000000000000000000000e+00
-DETECTOR_LINE_OFFSET  0.0000000000000000000000000e+00
-DETECTOR_SAMPLE_SUMMING  2.0000000000000000000000000e+00
-STARTING_SAMPLE 1.5000000000000000000000000e+00
-STARTING_LINE 1.0000000000000000000000000e+00
-STARTING_EPHEMERIS_TIME 1.3331206760652773082256317e+08
-CENTER_EPHEMERIS_TIME 1.3331217180844040215015411e+08
-
-REFERENCE_HEIGHT 30
-MIN_VALID_HT -8000
-MAX_VALID_HT 8000
-IMAGE_ID UNKNOWN
-SENSOR_ID USGS_LINE_SCANNER
-PLATFORM_ID UNKNOWN
-TRAJ_ID UNKNOWN
-COLL_ID UNKNOWN
-REF_DATE_TIME UNKNOWN
diff --git a/tests/h0232_0000_s22_state.json b/tests/h0232_0000_s22_state.json
deleted file mode 100644
index a064ef20a30b0e9dd99a1a0a72b45974967d51fb..0000000000000000000000000000000000000000
--- a/tests/h0232_0000_s22_state.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-	"STA_ABERR_FLAG": 0,
-	"STA_ATMREF_FLAG": 0,
-	"STA_CENTER_EPHEMERIS_TIME": 133312171.80844,
-	"STA_COLLECTION_IDENTIFIER": "UNKNOWN",
-	"STA_COVARIANCE": [1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1],
-	"STA_DETECTOR_LINE_OFFSET": 0.0,
-	"STA_DETECTOR_LINE_ORIGIN": 0.0,
-	"STA_DETECTOR_SAMPLE_ORIGIN": 2592.5,
-	"STA_DETECTOR_SAMPLE_SUMMING": 2,
-	"STA_DT_EPHEM": 11.2502423768823,
-	"STA_DT_QUAT": 0.418306468024979,
-	"STA_EPHEM_PTS": [1053665.01558629, 3886959.85500856, 99976.8292064914, 1057080.63114853, 3897304.09253643, 144508.678766718, 1060425.92367939, 3907323.02515454, 189025.269970816, 1063700.94461288, 3917019.19659542, 233523.711452086, 1066905.75320594, 3926395.14918832, 278001.11184357, 1070040.4165351, 3935453.42384435, 322454.579778379, 1073105.0094928, 3944196.56004099, 366881.223889683, 1076099.61478362, 3952627.09580661, 411278.152810577, 1079024.32292067, 3960747.56770515, 455642.475174198, 1081879.23222182, 3968560.51082074, 499971.299613668, 1084664.448806, 3976068.45874237, 544261.734762111, 1087380.0865894, 3983273.94354849, 588510.889252654, 1090026.26728167, 3990179.49579169, 632715.871718422, 1092603.12133176, 3996787.65086285, 676873.809405107, 1095110.79025335, 4003100.97545566, 720981.933646763, 1097549.4240736, 4009122.0462462, 765037.515505692, 1099919.18216863, 4014853.45864779, 809037.90246625, 1102220.23215866, 4020297.82438551, 852980.515678577, 1104452.75001935, 4025457.76317783, 896862.82122943, 1106616.91945508, 4030335.90935793, 940682.365020227, 1108712.93199523, 4034934.9055248, 984436.752385336, 1110740.98575955, 4039257.40238161, 1028123.65160602, 1112701.28569021, 4043306.0569576, 1071740.79305447, 1114594.04314817, 4047083.53126874, 1115285.96846325, 1116419.47585808, 4050592.49097212, 1158757.03017273, 1118177.80683946, 4053835.60413516, 1202151.89053307, 1119869.26453269, 4056815.53972476, 1245468.52102967, 1121494.08311453, 4059534.96650723, 1288704.95155235, 1123052.50116437, 4061996.55194653, 1331859.26865821, 1124544.76140661, 4064202.96106704, 1374929.6161433, 1125971.11490338, 4066156.85556254, 1417914.17946607, 1127331.82210214, 4067860.89495404, 1460811.15214377, 1128627.15166344, 4069317.73696656, 1503618.72770483, 1129857.38046915, 4070530.0375122, 1546335.09967745, 1131022.7936191, 4071500.45067617, 1588958.46159056, 1132123.68442467, 4072231.62869634, 1631487.00697123, 1133160.35440826, 4072726.22195347, 1673918.92934977, 1134133.11329304, 4072986.87894743, 1716252.42225189, 1135042.27900494, 4073016.24628301, 1758485.67920665],
-	"STA_EPHEM_RATES": [306.731069950429, 934.038769171988, 3958.85097962938, 300.47833044871, 905.010286170421, 3957.62321295878, 294.229814903766, 876.207969506038, 3956.13844143846, 287.986218850929, 847.631695161278, 3954.3966650704, 281.748237498129, 819.281337742652, 3952.39788384621, 275.516565741058, 791.156770508788, 3950.14209777156, 269.291898144951, 763.257865339737, 3947.62930684577, 263.074928946866, 735.584492746785, 3944.85951106739, 256.866352056327, 708.136521879321, 3941.83271043756, 250.666861050108, 680.913820519231, 3938.54890495574, 244.477149171326, 653.916255083504, 3935.00809462213, 238.297909327024, 627.143690624586, 3931.21027943679, 232.129876290149, 600.596274358224, 3927.15628660705, 225.973930220735, 574.275612520132, 3922.85156938999, 219.830941242891, 548.183539969634, 3918.30251949721, 213.701703225679, 522.321333106531, 3913.51429905322, 207.586998066099, 496.690549630919, 3908.49357848485, 201.487563505109, 471.29226974864, 3903.24562889632, 195.404114379495, 446.127498241536, 3897.77599466944, 189.337341950498, 421.197252000722, 3892.09086445366, 183.287886887866, 396.502258564996, 3886.19567723592, 177.256345302079, 372.043159265711, 3880.09599013331, 171.24330567895, 347.820456882278, 3873.79728975166, 165.249336117159, 323.834534866811, 3867.30499678207, 159.274954762587, 300.085662167452, 3860.62447189215, 153.320637860148, 276.573985882997, 3853.76101030141, 147.386881276876, 253.299537074185, 3846.71983588246, 141.474135624743, 230.262248945372, 3839.50606282313, 135.582780791727, 207.461955193331, 3832.12475351335, 129.71337155431, 184.898399369574, 3824.58030347384, 123.866695585752, 162.571336885853, 3816.87492248792, 118.043535022802, 140.48059135697, 3809.00896921445, 112.244620267073, 118.626002388937, 3800.98244413942, 106.470681937613, 97.0074082178394, 3792.7953472846, 100.722450219373, 75.6246455471503, 3784.44767860076, 95.0006549882243, 54.4775497379831, 3775.93943814896, 89.3060256415541, 33.5659546606433, 3767.27062586833, 83.639291209642, 12.8896924979988, 3758.44124170411, 78.0011808359826, -7.55140473960079, 3749.45128610303],
-	"STA_FLYING_HEIGHT": 1000,
-	"STA_FOCAL": 174.8,
-	"STA_GSD": 1,
-	"STA_HALF_SWATH": 1000,
-	"STA_HALF_TIME": 10,
-	"STA_IK_CODE": -41211,
-	"STA_IMAGE_FLIP_FLAG": 0,
-	"STA_IMAGE_IDENTIFIER": "UNKNOWN",
-	"STA_INT_TIMES": [0.0134399147033691, 0.013546573638916, 0.0136532335281372, 0.0137598924636841, 0.0138665523529053, 0.0139732112884521, 0.014079870223999, 0.0141865301132202, 0.0142931890487671, 0.0143998489379883, 0.0145065078735352, 0.0146131677627563, 0.0147198266983032, 0.0148264865875244, 0.0149331455230713, 0.0150398054122925, 0.0151464643478394, 0.0152531232833862, 0.0153597831726074],
-	"STA_INT_TIME_LINES": [1, 569, 570, 1145, 1146, 1721, 1722, 2297, 2298, 2841, 2842, 3353, 3354, 3865, 3866, 4377, 4378, 4857, 4858],
-	"STA_INT_TIME_START_TIMES": [-12.9792225062847, -5.34525023400784, -5.33159701526165, 2.51912122964859, 2.53298778831959, 10.506363645196, 10.5204435139894, 18.6164734214544, 18.6307635903358, 26.3920752257109, 26.4065817296505, 33.8195167332888, 33.8342365473509, 41.3561751395464, 41.3711082935333, 49.0020496845245, 49.0171996951103, 56.2724634855986, 56.2878232747316],
-	"STA_ISIS_Z_DIRECTION": 1,
-	"STA_I_TRANS_L": [8570.3856624766, 0.015707963236297, 142.85714199355],
-	"STA_I_TRANS_S": [-2.7941368739538, -142.85714199355, 0.015707963236297],
-	"STA_MAX_ELEVATION": 8000,
-	"STA_MIN_ELEVATION": -8000,
-	"STA_MOUNTING_MATRIX": [1, 0.0, 0.0, 0.0, 1, 0.0, -0.0, 0.0, 1],
-	"STA_NUM_EPHEM": 39,
-	"STA_NUM_QUATERNIONS": 531,
-	"STA_OFFSET_LINES": 0.0,
-	"STA_OFFSET_SAMPLES": 0.0,
-	"STA_OPTICAL_DIST_COEF": [0.0, 0.0, 0.0],
-	"STA_PARAMETER_TYPE": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
-	"STA_PARAMETER_VALS": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 174.8, 0.0],
-	"STA_PLATFORM_FLAG": 1,
-	"STA_PLATFORM_IDENTIFIER": "UNKNOWN",
-	"STA_QUATERNIONS": [0.751493311305468, -0.0810714751607335, -0.0777894813647473, 0.650103080724442, 0.75161593178922, -0.0810959858569742, -0.077782153577563, 0.649959128517589, 0.751738524510342, -0.0811204972715101, -0.0777748187239349, 0.649815153148875, 0.751861089464402, -0.0811450094026363, -0.0777674768034402, 0.649671154623688, 0.751983626646969, -0.0811695222486478, -0.0777601278156566, 0.649527132947417, 0.752106136053616, -0.0811940358078394, -0.077752771760162, 0.649383088125451, 0.752228617679914, -0.0812185500785055, -0.0777454086365348, 0.649239020163182, 0.752351071521437, -0.0812430650589407, -0.0777380384443539, 0.649094929066003, 0.752473497573758, -0.0812675807474393, -0.0777306611831984, 0.648950814839304, 0.752595895832454, -0.0812920971422954, -0.0777232768526481, 0.64880667748848, 0.7527182662931, -0.0813166142418029, -0.0777158854522827, 0.648662517018925, 0.752840608951274, -0.0813411320442557, -0.077708486981683, 0.648518333436035, 0.752962923802555, -0.0813656505479476, -0.07770108144043, 0.648374126745204, 0.753085210842521, -0.0813901697511719, -0.0776936688281047, 0.64822989695183, 0.753207470066754, -0.081414689652222, -0.0776862491442888, 0.648085644061311, 0.753329701470835, -0.0814392102493911, -0.0776788223885647, 0.647941368079045, 0.753451905050347, -0.0814637315409724, -0.0776713885605147, 0.647797069010431, 0.753574080800874, -0.0814882535252585, -0.0776639476597219, 0.64765274686087, 0.753696197169539, -0.0815127602245563, -0.0776564979987239, 0.647508440571491, 0.753818257736104, -0.0815372534610346, -0.0776490397755504, 0.647364145766253, 0.753940262516799, -0.0815617332487599, -0.0776415729960899, 0.647219862464256, 0.754062211525658, -0.0815861996015546, -0.0776340976665385, 0.64707559068714, 0.75418410477605, -0.0816106525331589, -0.0776266137931872, 0.646931330457309, 0.754305942284188, -0.0816350920576114, -0.0776191213819361, 0.64678708179385, 0.754427718210475, -0.0816595152454971, -0.0776116201320992, 0.646642851956222, 0.754549438050403, -0.0816839248737234, -0.0776041103392975, 0.64649863419306, 0.754671102193234, -0.0817083211447512, -0.0775965920293905, 0.646354428062174, 0.754792710653516, -0.0817327040723907, -0.0775890652085248, 0.646210233584551, 0.754914263445805, -0.0817570736704442, -0.0775815298828487, 0.646066050781156, 0.75503576058458, -0.0817814299526964, -0.0775739860585249, 0.645921879673037, 0.755157199273615, -0.0818057715278589, -0.0775664335969545, 0.645777723763379, 0.755278578931342, -0.0818300981159412, -0.0775588724746302, 0.645633583815349, 0.755399902980637, -0.0818544114379283, -0.0775513028745374, 0.645489455628407, 0.755521171437867, -0.081878711507759, -0.0775437248025892, 0.645345339221353, 0.755642384317281, -0.0819029983391357, -0.0775361382649978, 0.645201234615453, 0.755763541632405, -0.0819272719456744, -0.0775285432680794, 0.645057141832809, 0.755884643399639, -0.0819515323412892, -0.0775209398177511, 0.644913060892155, 0.756005683647003, -0.0819757765671032, -0.0775133276180909, 0.644768999247962, 0.756126668151597, -0.082000007505466, -0.0775057069682736, 0.644624949770343, 0.756247597154081, -0.0820242252824063, -0.0774980778859094, 0.644480912199493, 0.756368470669178, -0.08204842991161, -0.0774904403771638, 0.644336886556064, 0.756489288711622, -0.0820726214067553, -0.0774827944482036, 0.644192872860687, 0.756610051296072, -0.0820967997815027, -0.0774751401052088, 0.64404887113407, 0.756730755486291, -0.0821209635926367, -0.0774674772081566, 0.643904885068259, 0.756851400997743, -0.0821451127103473, -0.0774598057494831, 0.643760915059939, 0.756971991096916, -0.0821692487569144, -0.0774521258977146, 0.64361695708505, 0.757092525800312, -0.0821933717461446, -0.0774444376587839, 0.643473011162099, 0.757213005122386, -0.0822174816916195, -0.0774367410389162, 0.643329077311982, 0.757333429076819, -0.0822415786068289, -0.0774290360444486, 0.643185155556494, 0.757453797680187, -0.0822656625055597, -0.0774213226813105, 0.643041245914024, 0.757574104829367, -0.082289730401259, -0.0774136006590013, 0.642897356033978, 0.757694356581057, -0.0823137852776913, -0.0774058702789653, 0.642753478407415, 0.75781455302807, -0.0823378271866887, -0.0773981315511764, 0.642609612957532, 0.757934694185301, -0.0823618561418113, -0.077390384481815, 0.642465759704646, 0.758054780067655, -0.0823858721566113, -0.0773826290770623, 0.642321918669054, 0.758174810689967, -0.0824098752446237, -0.0773748653431119, 0.64217808987113, 0.758294782976999, -0.0824338639126988, -0.0773670931391509, 0.642034277192026, 0.75841469693968, -0.0824578381767618, -0.0773593124723156, 0.641890480660774, 0.758534555688649, -0.0824817995628328, -0.0773515234972682, 0.641746696430727, 0.758654359240537, -0.0825057480845863, -0.0773437262199581, 0.6416029245201, 0.758774107610002, -0.0825296837554807, -0.0773359206466184, 0.641459164949419, 0.758893800811036, -0.0825536065888946, -0.0773281067835805, 0.641315417739987, 0.759013438791678, -0.0825775165649473, -0.0773202846334617, 0.641171682995902, 0.759133015524232, -0.0826014107716912, -0.0773124539219091, 0.64102796830418, 0.759252537137606, -0.0826252921898133, -0.0773046149412814, 0.640884266033609, 0.759372003646278, -0.0826491608326947, -0.077296767697851, 0.640740576204873, 0.759491415065189, -0.0826730167133781, -0.0772889121980234, 0.640596898838133, 0.759610771409421, -0.0826968598451956, -0.0772810484480374, 0.640453233953348, 0.759730072693927, -0.0827206902419885, -0.0772731764538762, 0.640309581570585, 0.759849315705499, -0.0827445063626632, -0.0772652960745505, 0.640165945760313, 0.759968500748902, -0.0827683083645014, -0.0772574073306488, 0.640022326182838, 0.760087630779503, -0.0827920976796797, -0.0772495103635727, 0.639878719169803, 0.760206705814056, -0.0828158743217391, -0.0772416051792844, 0.639735124739134, 0.760325725867416, -0.0828396383040135, -0.0772336917840212, 0.639591542910988, 0.760444690953714, -0.0828633896397534, -0.0772257701841279, 0.639447973706375, 0.760563600874768, -0.0828871282392546, -0.0772178403758166, 0.63930441741345, 0.760682449913468, -0.082910851375435, -0.0772099021106709, 0.639160881260662, 0.760801244034921, -0.0829345619134686, -0.077201955661544, 0.639017357790202, 0.76091998325379, -0.082958259866611, -0.077194001034714, 0.638873847022407, 0.761038667585125, -0.0829819452481482, -0.0771860382364038, 0.63873034897714, 0.761157297043207, -0.0830056180712782, -0.0771780672729516, 0.638586863675175, 0.76127587164188, -0.0830292783491442, -0.0771700881507604, 0.638443391137789, 0.761394388037457, -0.083052924495232, -0.0771621007283899, 0.638299935617291, 0.761512846821078, -0.0830765568032691, -0.0771541050394707, 0.63815649641113, 0.761631250795547, -0.0831001766141899, -0.0771461012124491, 0.638013070027581, 0.761749599977521, -0.0831237839413781, -0.0771380892533278, 0.637869656484536, 0.761867894381794, -0.0831473787980165, -0.0771300691683822, 0.637726255802089, 0.761986134022631, -0.0831709611972235, -0.0771220409639677, 0.637582868000958, 0.762104318556483, -0.0831945309816117, -0.0771140046305098, 0.637439493553823, 0.762222442575541, -0.0832180856042193, -0.0771059599442906, 0.637296139328974, 0.762340511881525, -0.083241627817308, -0.0770979071592648, 0.637152798043139, 0.762458526489274, -0.0832651576340062, -0.0770898462817128, 0.637009469716308, 0.762576486413994, -0.0832886750674706, -0.0770817773178622, 0.636866154368022, 0.762694391671076, -0.0833121801308673, -0.0770737002739152, 0.636722852017592, 0.76281224227592, -0.0833356728373542, -0.0770656151560745, 0.636579562684308, 0.76293003474336, -0.0833591515556696, -0.0770575218248136, 0.63643629081679, 0.763047769958248, -0.0833826167126799, -0.0770494203242334, 0.636293035337958, 0.763165450569352, -0.0834060695602114, -0.0770413107707484, 0.636149792936004, 0.76328307659346, -0.0834295101115135, -0.0770331931703642, 0.636006563628516, 0.76340064804555, -0.0834529383796421, -0.0770250675293551, 0.635863347435231, 0.763518164940015, -0.0834763543775837, -0.0770169338540831, 0.635720144376577, 0.763635626788827, -0.0834997578823726, -0.077008792129808, 0.635576955110181, 0.763753028492118, -0.0835231465224858, -0.0770006421562605, 0.635433786142683, 0.763870375688681, -0.0835465229398459, -0.076992484169115, 0.635290630366421, 0.763987668393522, -0.0835698871474529, -0.0769843181746504, 0.635147487801044, 0.764104906621996, -0.0835932391583322, -0.0769761441790954, 0.635004358465773, 0.764222090389647, -0.083616578985519, -0.0769679621886528, 0.634861242379596, 0.764339219712023, -0.0836399066420398, -0.0769597722095251, 0.634718139561479, 0.764456290969263, -0.0836632204543273, -0.0769515741038928, 0.634575054649694, 0.764573305334799, -0.0836865209778631, -0.0769433679255588, 0.634431986195774, 0.764690265304051, -0.0837098093776873, -0.0769351537795262, 0.634288931068556, 0.764807170893933, -0.0837330856669144, -0.076926931671801, 0.634145889285327, 0.764924022119602, -0.0837563498584725, -0.0769187016086525, 0.634002860865466, 0.765040818995574, -0.0837796019652149, -0.0769104635964471, 0.633859845829116, 0.765157560890257, -0.0838028417006715, -0.0769022176158965, 0.633716845019227, 0.765274243010299, -0.0838260668641415, -0.0768939634889257, 0.633573864579392, 0.765390870832056, -0.0838492799897487, -0.0768857014335534, 0.63343089757859, 0.7655074443707, -0.0838724810903631, -0.0768774314560542, 0.633287944036129, 0.76562396364173, -0.083895670178879, -0.0768691535626549, 0.633145003970912, 0.765740428660833, -0.0839188472681991, -0.0768608677595557, 0.633002077401606, 0.765856839443708, -0.0839420123712196, -0.0768525740529557, 0.632859164346855, 0.76597319223693, -0.0839651637738871, -0.0768442723073547, 0.632716269634616, 0.766089488500637, -0.0839883021561843, -0.0768359625850104, 0.632573391444337, 0.766205730577623, -0.0840114285986558, -0.0768276449801383, 0.632430526826173, 0.766321918484922, -0.0840345431142806, -0.0768193194987426, 0.632287675797111, 0.766438052237865, -0.0840576457158578, -0.0768109861470841, 0.63214483837618, 0.766554131851091, -0.084080736416108, -0.0768026449315301, 0.632002014583235, 0.766670156550381, -0.0841038148670945, -0.0767942958288627, 0.631859205446882, 0.766786121847408, -0.0841268790343886, -0.0767859386819389, 0.631716416746375, 0.766902033056623, -0.084149931346824, -0.0767775736917557, 0.631573641728303, 0.76701789019336, -0.0841729718171413, -0.07676920086458, 0.631430880411634, 0.767133693273257, -0.0841960004581013, -0.0767608202066341, 0.631288132814959, 0.767249442312143, -0.0842190172824756, -0.076752431724112, 0.631145398956623, 0.767365137325857, -0.0842420223030265, -0.0767440354232072, 0.631002678854953, 0.767480774428571, -0.0842650137670046, -0.0767356311713438, 0.630859977527584, 0.767596355365197, -0.0842879924748457, -0.0767272190379926, 0.630717292781261, 0.767711882326661, -0.0843109594248565, -0.0767187991072079, 0.630574621848092, 0.767827355330111, -0.0843339146298795, -0.0767103713849881, 0.630431964744766, 0.767942774391048, -0.0843568581025852, -0.0767019358775839, 0.630289321489958, 0.768058139524224, -0.0843797898555597, -0.0766934925913602, 0.630146692103243, 0.76817344981377, -0.0844027094814064, -0.0766850414997843, 0.630004077799172, 0.768288701074821, -0.0844256151074844, -0.0766765824653814, 0.629861483991454, 0.768403898460499, -0.0844485090598143, -0.0766681156727654, 0.629718904105212, 0.768519041986291, -0.0844713913510052, -0.0766596411281934, 0.62957633815908, 0.76863413166797, -0.0844942619936858, -0.0766511588378797, 0.629433786171332, 0.768749167521502, -0.0845171210004945, -0.0766426688080098, 0.629291248160001, 0.768864149562861, -0.0845399683840607, -0.0766341710447686, 0.629148724143093, 0.768979073774998, -0.0845628023546916, -0.0766256654191039, 0.629006219327875, 0.769093942185614, -0.0845856238292964, -0.076617152006462, 0.628863731147869, 0.769208756834552, -0.0846084337261683, -0.0766086308813646, 0.628721257017711, 0.769323517739072, -0.0846312320580138, -0.0766001020498019, 0.628578796953796, 0.769438224914839, -0.0846540188373734, -0.0765915655180107, 0.628436350974451, 0.769552878376714, -0.0846767940766987, -0.0765830212923516, 0.628293919098969, 0.769667477068176, -0.0846995573111061, -0.0765744693435894, 0.628151502728091, 0.769782017106196, -0.0847223068253244, -0.076565909552651, 0.628009106908878, 0.76989650348386, -0.0847450448450711, -0.0765573420883063, 0.627866725245022, 0.770010936215259, -0.0847677713826738, -0.0765487669570385, 0.627724357756708, 0.770125315316834, -0.08479048645068, -0.0765401841649685, 0.627582004461247, 0.770239640805511, -0.0848131900616759, -0.0765315937181422, 0.627439665375342, 0.770353912696891, -0.0848358822281087, -0.0765229956228112, 0.627297340517302, 0.770468126843905, -0.0848585611250626, -0.0765143897540395, 0.627155035283936, 0.770582285555005, -0.0848812277820061, -0.0765057761920186, 0.627012746735105, 0.77069639071977, -0.0849038830394118, -0.076497155002366, 0.626870472468511, 0.770810442355571, -0.0849265269098496, -0.0764885261910617, 0.626728212500251, 0.770924440478227, -0.0849491594057292, -0.0764798897643258, 0.626585966848309, 0.771038385102707, -0.0849717805393682, -0.076471245728512, 0.626443735531699, 0.771152275032858, -0.0849943897903344, -0.0764625940522908, 0.626301520137553, 0.771266106685804, -0.0850169855963754, -0.0764539346337256, 0.626159325345275, 0.77137988489455, -0.0850395700852493, -0.076445267626496, 0.626017144938779, 0.771493609673356, -0.0850621432691558, -0.0764365930370686, 0.625874978937902, 0.771607281038761, -0.0850847051605061, -0.0764279108715544, 0.625732827359673, 0.771720899007829, -0.0851072557717529, -0.076419221135983, 0.625590690220466, 0.771834463596287, -0.0851297951152099, -0.0764105238365927, 0.625448567538285, 0.771947970528264, -0.0851523213324257, -0.0764018188531476, 0.625306464899352, 0.772061422390878, -0.0851748355615826, -0.0763931062693643, 0.625164378989518, 0.772174820924296, -0.0851973385674911, -0.0763843861425841, 0.625022307590032, 0.77228816614599, -0.0852198303625836, -0.0763756584787734, 0.624880250716703, 0.772401458071934, -0.0852423109591392, -0.0763669232841339, 0.62473820838717, 0.772514696717196, -0.0852647803693409, -0.0763581805650099, 0.624596180620173, 0.772627880747044, -0.0852872380191147, -0.0763494302885815, 0.624454169189391, 0.772741006877003, -0.0853096824949429, -0.0763406723687855, 0.624312178405652, 0.772854079780681, -0.0853321158290015, -0.0763319069448618, 0.624170202233864, 0.772967099472503, -0.0853545380333618, -0.076323134023258, 0.624028240693516, 0.773080065969103, -0.0853769491202989, -0.0763143536100729, 0.623886293801358, 0.773192979287675, -0.0853993491021315, -0.0763055657113171, 0.623744361573439, 0.773305839444068, -0.0854217379910414, -0.0762967703332135, 0.623602444027456, 0.77341864203485, -0.0854441138966928, -0.0762879673608036, 0.623460546938886, 0.773531389923669, -0.0854664780622052, -0.0762791568801159, 0.623318666619297, 0.773644084702745, -0.0854888311789059, -0.0762703389407501, 0.623176801033205, 0.773756726388474, -0.0855111732589788, -0.0762615135488434, 0.623034950197583, 0.773869314996983, -0.0855335043145726, -0.0762526807105755, 0.62289311412972, 0.773981850544605, -0.0855558243578475, -0.0762438404320934, 0.622751292846642, 0.774094331558508, -0.0855781327629034, -0.07623499267978, 0.622609488309418, 0.774206755050825, -0.0856004282607425, -0.0762261373821849, 0.622467704459469, 0.77431912553648, -0.085622712790301, -0.0762172746647612, 0.622325935443419, 0.774431443030056, -0.0856449863635229, -0.0762084045339346, 0.622184181280407, 0.774543707548275, -0.085667248992546, -0.07619952699579, 0.622042441986911, 0.774655919108462, -0.0856895006895569, -0.0761906420563166, 0.621900717578654, 0.774768077726579, -0.0857117414666024, -0.0761817497217199, 0.621759008073032, 0.774880178872892, -0.085733969403086, -0.0761728498828864, 0.621617319434574, 0.774992225685399, -0.0857561858433511, -0.0761639426269563, 0.621475647600378, 0.775104219608688, -0.0857783914072768, -0.0761550279965051, 0.621333990719354, 0.775216160659267, -0.0858005861069126, -0.0761461059976512, 0.62119234880817, 0.775328048853385, -0.0858227699542755, -0.0761371766365544, 0.621050721883803, 0.775439884207477, -0.0858449429613901, -0.0761282399193448, 0.62090910996299, 0.77555166511229, -0.0858671044524267, -0.07611929581211, 0.620767515193553, 0.775663388874706, -0.0858892532987576, -0.0761103442567567, 0.620625941146765, 0.775775059851711, -0.0859113913483904, -0.0761013853656053, 0.620484382151634, 0.775886678058042, -0.0859335186131405, -0.0760924191450578, 0.620342838226956, 0.775998243510508, -0.0859556351049815, -0.0760834456012245, 0.620201309388936, 0.776109756226553, -0.0859777408359426, -0.0760744647401055, 0.620059795652979, 0.776221216222254, -0.0859998358179567, -0.0760654765678601, 0.619918297036177, 0.776332618842845, -0.0860219181017862, -0.0760564809817296, 0.619776819691876, 0.776443967498453, -0.0860439891293536, -0.0760474780687764, 0.619635359182599, 0.776555263486965, -0.0860660494511471, -0.0760384678651747, 0.619493913842, 0.776666506825003, -0.0860880990790837, -0.0760294503770216, 0.619352483686444, 0.776777697375492, -0.0861101379609013, -0.0760204256069844, 0.619211068934428, 0.776888836044916, -0.0861321664804545, -0.0760113935812637, 0.619069668431585, 0.776999918286606, -0.086154182743084, -0.0760023542032337, 0.61892828819989, 0.777110945239077, -0.0861761872352019, -0.075993307506511, 0.618786926782922, 0.777221920023951, -0.086198181265025, -0.0759842535664994, 0.61864558011096, 0.777332842656524, -0.0862201648435754, -0.0759751923892274, 0.618504248201493, 0.777443713152717, -0.086242137981926, -0.0759661239806221, 0.618362931071213, 0.777554531530701, -0.0862641006913521, -0.0759570483462444, 0.618221628733993, 0.777665290562354, -0.0862860499775118, -0.0759479653375546, 0.618080350759458, 0.777775997440354, -0.086307988836215, -0.0759388751161534, 0.617939087705903, 0.777886652252434, -0.0863299173083335, -0.0759297776895199, 0.617797839495298, 0.777997255014783, -0.086351835404913, -0.0759206730635347, 0.617656606143937, 0.778107805743774, -0.0863737431370077, -0.075911561244049, 0.617515387667873, 0.778218301506873, -0.0863956392975844, -0.0759024421761326, 0.617374187978262, 0.778328740918454, -0.0864175233237207, -0.0758933158386298, 0.617233008947112, 0.778439128350209, -0.0864393970276294, -0.0758841823279549, 0.617091844839392, 0.778549463818543, -0.0864612604203223, -0.0758750416499506, 0.616950695671062, 0.778659747339866, -0.0864831135128044, -0.0758658938104585, 0.616809561458062, 0.778769978930564, -0.0865049563160706, -0.0758567388153246, 0.616668442216357, 0.778880152647164, -0.0865267863939768, -0.0758475765534142, 0.61652734584902, 0.77899027314032, -0.0865486056664554, -0.0758384071236823, 0.616386266244556, 0.779100341755889, -0.0865704146916936, -0.0758292305587053, 0.616245201659891, 0.779210358510995, -0.0865922134807086, -0.0758200468642042, 0.616104152110005, 0.779320323422837, -0.0866140020445176, -0.0758108560458873, 0.61596311760977, 0.779430234823914, -0.0866357797064349, -0.0758016580781839, 0.615822100406923, 0.779540088820473, -0.0866575448827076, -0.0757924528942447, 0.615681105704035, 0.779649891025772, -0.0866792998754561, -0.0757832406070456, 0.615540126100401, 0.7797596414578, -0.086701044695725, -0.0757740212221606, 0.615399161609843, 0.779869340132962, -0.086722779354406, -0.0757647947454256, 0.615258212248166, 0.779978987066364, -0.0867445038622634, -0.0757555611828898, 0.615117278032803, 0.780088577591763, -0.0867662163268451, -0.0757463204561584, 0.614976365198319, 0.780198113831001, -0.0867879176206501, -0.075737072611103, 0.614835470969201, 0.780307598383559, -0.0868096088053604, -0.0757278177002788, 0.614694591931876, 0.780417031265964, -0.0868312898918262, -0.0757185557294976, 0.614553728101929, 0.78052641249475, -0.0868529608908907, -0.0757092867045686, 0.614412879494926, 0.780635741663575, -0.0868746216423588, -0.0757000106240541, 0.614272046688904, 0.780745012381082, -0.0868962695692031, -0.0756907273853773, 0.614131238225913, 0.780854231499102, -0.0869179074500907, -0.075681437112727, 0.613990445032328, 0.780963399034198, -0.0869395352958228, -0.0756721398119044, 0.613849667123625, 0.781072515002671, -0.0869611531171685, -0.0756628354887536, 0.613708904515598, 0.781181579421012, -0.0869827609249072, -0.0756535241490863, 0.61356815722379, 0.781290588889597, -0.0870043573557079, -0.0756442057431215, 0.613427429816404, 0.781399543018405, -0.0870259422629765, -0.0756348802725715, 0.613286722854834, 0.78150844565265, -0.0870475171979793, -0.0756255478054204, 0.613146031253874, 0.781617296807781, -0.0870690821713565, -0.0756162083476502, 0.613005355030329, 0.781726096500156, -0.0870906371938231, -0.0756068619050905, 0.612864694199843, 0.781834844748044, -0.0871121822762599, -0.0755975084832498, 0.612724048775626, 0.781943535163068, -0.0871337148700881, -0.0755881479909837, 0.612583427324733, 0.782052173343579, -0.0871552372228621, -0.075578780520974, 0.612442822415426, 0.782160760132231, -0.0871767496764477, -0.0755694060920708, 0.612302232960254, 0.782269295545939, -0.0871982522415584, -0.0755600247100047, 0.612161658974083, 0.78237777960222, -0.0872197449289543, -0.0755506363804053, 0.612021100471008, 0.782486210157717, -0.0872412268901054, -0.0755412410779596, 0.611880560354817, 0.782594584332016, -0.0872626969876287, -0.0755318387683528, 0.61174004251881, 0.78270290720295, -0.0872841572482128, -0.0755224295313414, 0.611599540211733, 0.782811178787196, -0.0873056076824977, -0.075513013372691, 0.611459053448689, 0.782919399101435, -0.0873270483011162, -0.0755035902981654, 0.611318582244765, 0.783027568162354, -0.0873484791146946, -0.0754941603135274, 0.611178126615029, 0.783135680850623, -0.0873698981024859, -0.0754847233553436, 0.611037693456107, 0.783243740253106, -0.0873913064953492, -0.0754752794730119, 0.610897278674436, 0.783351748456483, -0.0874127051237301, -0.0754658287006483, 0.610756879512337, 0.783459705478323, -0.0874340939982887, -0.0754563710438607, 0.610616495983698, 0.783567611335632, -0.0874554731296283, -0.075446906508352, 0.61047612810311, 0.783675465133923, -0.0874768421701904, -0.0754374350886558, 0.610335777108229, 0.783783261519097, -0.0874981990192311, -0.0754279567233151, 0.610195450225109, 0.783891006792775, -0.0875195461653111, -0.0754184714995132, 0.610055139036714, 0.783998700973327, -0.0875408836191102, -0.0754089794227157, 0.60991484355584, 0.784106344077274, -0.0875622113911361, -0.0753994804987019, 0.609774563797632, 0.784213936120133, -0.0875835294918003, -0.0753899747334204, 0.609634299778499, 0.784321473242397, -0.0876048364140953, -0.075380462086815, 0.609494056725177, 0.784428956038219, -0.0876261323999923, -0.0753709425735641, 0.609353833880596, 0.784536387828936, -0.0876474187548183, -0.0753614162387789, 0.609213626817743, 0.784643768631333, -0.087668695489053, -0.0753518830881875, 0.609073435551356, 0.784751098462196, -0.0876899626131692, -0.0753423431275162, 0.608933260096157, 0.784858377338317, -0.0877112201376329, -0.0753327963624893, 0.60879310046685, 0.784965598440919, -0.0877324654134904, -0.0753232427252063, 0.608652965886244, 0.78507276829451, -0.0877537009897019, -0.0753136822940619, 0.608512847608261, 0.785179887248475, -0.0877749270062444, -0.0753041150784157, 0.608372745199666, 0.785286955319351, -0.0877961434735177, -0.0752945410840306, 0.608232658675433, 0.785393972523952, -0.0878173504019383, -0.0752849603166207, 0.60809258805017, 0.785500936252474, -0.087838546784288, -0.0752753727553481, 0.607952536882489, 0.785607844621847, -0.0878597319007264, -0.075265778389252, 0.607812507754167, 0.785714702181448, -0.087880907518226, -0.075256177269722, 0.607672494566308, 0.785821508946849, -0.0879020736470501, -0.0752465694026803, 0.607532497335059, 0.785928264934802, -0.0879232302975587, -0.0752369547938451, 0.607392516075037, 0.786034970163644, -0.0879443774802439, -0.0752273334486598, 0.607252550798806, 0.786141619069726, -0.0879655130579586, -0.075217705322893, 0.607112609064281, 0.78624821568949, -0.087986638593575, -0.0752080704603738, 0.606972685457694, 0.786354761603724, -0.0880077547007968, -0.0751984288815691, 0.606832777879886, 0.786461256829707, -0.0880288613899793, -0.0751887805920989, 0.606692886344727, 0.786567701385103, -0.0880499586715044, -0.0751791255975151, 0.606553010865575, 0.786674093899292, -0.0880710460241792, -0.0751694638921367, 0.606413153335335, 0.786780430034026, -0.0880921217935728, -0.0751597954472702, 0.606273319668369, 0.786886715553168, -0.0881131881946712, -0.0751501203170849, 0.606133502100359, 0.78699295047363, -0.0881342452377463, -0.0751404385072566, 0.605993700645576, 0.787099134812328, -0.0881552929330637, -0.0751307500234591, 0.605853915318275, 0.787205268586179, -0.0881763312908818, -0.0751210548713644, 0.605714146132692, 0.787311347483438, -0.0881973586726458, -0.0751113530250789, 0.605574398974828, 0.787417373063871, -0.088218375681607, -0.0751016445036283, 0.605434671770739, 0.787523348134548, -0.0882393833922131, -0.0750919293336271, 0.605294960750928, 0.787629272713324, -0.0882603818147607, -0.0750822075205778, 0.605155265928364, 0.787735146817304, -0.0882813709594739, -0.0750724790701126, 0.605015587316975, 0.787840970307295, -0.0883023507778822, -0.0750627439871954, 0.604875925142895, 0.787946736407198, -0.0883233187073352, -0.0750530022340608, 0.604736288652684, 0.788052452086241, -0.0883442773978087, -0.0750432538634302, 0.604596668417476, 0.788158117363131, -0.0883652268596216, -0.0750334988806487, 0.604457064449064, 0.788263732254474, -0.0883861671029051, -0.0750237372914271, 0.604317476761951, 0.788369296776255, -0.0884070981377286, -0.0750139691015841, 0.604177905371427, 0.788474807859722, -0.0884280188106277, -0.0750041942992287, 0.604038354491936, 0.788580264605247, -0.0884489287917932, -0.0749944128872877, 0.603898825389149, 0.788685671038263, -0.088469829603398, -0.0749846248940662, 0.603759312622478, 0.788791027175628, -0.0884907212555446, -0.0749748303252224, 0.603619816206026, 0.788896333034102, -0.0885116037583196, -0.0749650291864308, 0.603480336154008, 0.789001588630697, -0.0885324771218241, -0.0749552214833207, 0.603340872480306, 0.789106787972378, -0.0885533391044148, -0.074945407193924, 0.603201433395108, 0.789211936021454, -0.088574191575002, -0.0749355863489793, 0.603062012173407, 0.789317033864596, -0.0885950349448983, -0.0749257589592148, 0.60292260737071, 0.789422081518835, -0.0886158692241637, -0.0749159250302487, 0.60278321900081, 0.789527079001207, -0.0886366944228516, -0.0749060845676968, 0.602643847077483, 0.789632024472897, -0.0886575098589475, -0.0748962375700946, 0.602504494149453, 0.789736914597201, -0.0886783142961444, -0.0748863840320341, 0.602365164815076, 0.789841754606763, -0.0886991096912572, -0.0748765239796472, 0.602225851966198, 0.789946544517201, -0.0887198960541751, -0.0748666574187935, 0.602086555618382, 0.790051284345617, -0.088740673394907, -0.0748567843550682, 0.601947275785245, 0.790155974110388, -0.0887614417235641, -0.0748469047938398, 0.601808012478731, 0.790260609056367, -0.0887821992817552, -0.074837018727528, 0.60166877224311, 0.790365191693261, -0.0888029470080837, -0.074827126170516, 0.60152955168588, 0.79046972432092, -0.0888236857603762, -0.0748172271357029, 0.601390347697463, 0.790574206956941, -0.0888444155486346, -0.0748073216285877, 0.601251160290758, 0.790678639619108, -0.0888651363828689, -0.0747974096546333, 0.601111989478407, 0.790783021691543, -0.0888858480396092, -0.0747874912181919, 0.600972836141502, 0.790887347416846, -0.0889065484016811, -0.0747775663142641, 0.600833708211649, 0.790991623224094, -0.0889272398477009, -0.0747676349629206, 0.600694596916299, 0.791095849130398, -0.0889479223875797, -0.0747576971697364, 0.600555502268913, 0.791200025152873, -0.0889685960312212, -0.0747477529402852, 0.600416424282935, 0.791304151308636, -0.088989260788523, -0.0747378022801379, 0.600277362971791, 0.791408224076583, -0.0890099153716188, -0.0747278451909147, 0.60013832320775, 0.791512243525862, -0.0890305598146106, -0.0747178816800141, 0.599999304937102, 0.79161621316425, -0.0890511954091811, -0.0747079117577186, 0.59986030338112, 0.791720133009863, -0.0890718221651625, -0.0746979354294632, 0.599721318551874, 0.79182400307988, -0.0890924400923494, -0.0746879527008268, 0.59958235046264, 0.79192782338982, -0.0891130492004479, -0.074677963577656, 0.599443399128854, 0.792031587527292, -0.0891336471542726, -0.0746679680640227, 0.59930447340994, 0.792135301361949, -0.0891542361043297, -0.0746579661693501, 0.599165565272508, 0.792238965494729, -0.0891748162730319, -0.0746479578990549, 0.599026673926974, 0.792342579942294, -0.0891953876701396, -0.0746379432587711, 0.598887799387218, 0.792446144720974, -0.0892159503053785, -0.0746279222541903, 0.598748941667538, 0.792549657534522, -0.089236503348432, -0.0746178948919164, 0.598610103969151, 0.792653116029455, -0.0892570459536993, -0.0746078611811556, 0.598471289575689, 0.792756524913243, -0.0892775798346086, -0.0745978211250563, 0.598332492039124, 0.79285988420286, -0.0892981050008979, -0.074587774729186, 0.59819371137285, 0.792963193915275, -0.0893186214622978, -0.0745777219991116, 0.598054947590257, 0.793066454067678, -0.0893391292285508, -0.0745676629403581, 0.597916200704427, 0.793169659476155, -0.0893596264331168, -0.074557597566665, 0.597777477909047, 0.793272813576586, -0.0893801143244093, -0.0745475258803849, 0.597638774502422, 0.79337591817366, -0.0894005935577565, -0.0745374478845364, 0.597500088030523, 0.793478973284589, -0.0894210641428605, -0.0745273635846322, 0.597361418506349, 0.793581978926586, -0.0894415260894171, -0.0745172729861828, 0.597222765942878, 0.793684934015215, -0.0894619790115699, -0.0745071760972921, 0.597084131876409, 0.793787833797062, -0.0894824212098942, -0.0744970729363156, 0.596945522919893, 0.793890684167827, -0.0895028548067904, -0.0744869634956505, 0.596806930960233, 0.793993485143208, -0.0895232798117858, -0.0744768477810737, 0.596668356012348, 0.79409623674062, -0.0895436962345449, -0.074466725798049, 0.59652979808888, 0.794198938978449, -0.0895641040848054, -0.0744565975518609, 0.59639125720117, 0.794301587892749, -0.0895845019518831, -0.0744464630616066, 0.596252738877323, 0.794404184503524, -0.0896048902073772, -0.0744363223309682, 0.596114241745704, 0.794506731809833, -0.0896252699270489, -0.0744261753564752, 0.595975761689323, 0.79460922982989, -0.0896456411205798, -0.0744160221434347, 0.59583729871969, 0.794711678581321, -0.0896660037975962, -0.0744058626972583, 0.595698852849076, 0.794814078079694, -0.0896863579675479, -0.0743956970237333, 0.595560424092464, 0.794916421500007, -0.089706701211896, -0.0743855251572267, 0.595422021959539, 0.795018715604934, -0.0897270359396871, -0.0743753470770438, 0.595283637106319, 0.795120960514907, -0.0897473621971213, -0.0743651627882291, 0.595145269402346, 0.795223156247205, -0.0897676799937487, -0.0743549722962471, 0.595006918860275, 0.795325302819109, -0.0897879893391118, -0.0743447756065603, 0.594868585492748, 0.795427397482227, -0.0898082892661337, -0.0743345727385911, 0.594730273157095, 0.7955294388534, -0.0898285792940457, -0.0743243637066401, 0.594591983816812, 0.79563143112118, -0.0898488609071312, -0.0743141484958636, 0.594453711687537, 0.795733374302866, -0.0898691341148935, -0.074303927111711, 0.594315456781827, 0.795835268415564, -0.0898893989268135, -0.0742936995596661, 0.594177219112482, 0.795937113476274, -0.089909655352357, -0.0742834658452297, 0.594038998692424, 0.796038903881767, -0.089929901427577, -0.074273226007256, 0.593900803362326, 0.796140643975447, -0.0899501386866488, -0.0742629800279725, 0.593762627114555, 0.79624233507537, -0.0899703675956684, -0.0742527279049015, 0.593624468150617, 0.796343977198226, -0.0899905881640358, -0.0742424696435924, 0.593486326483789, 0.796445570360655, -0.0900108004011392, -0.0742322052496015, 0.593348202127401, 0.796547113020383, -0.0900310037710448, -0.0742219347385898, 0.593210097269536, 0.796648601409415, -0.0900511969651253, -0.0742116581436763, 0.593072017206289, 0.796750040896328, -0.0900713818640948, -0.0742013754346295, 0.592933954487683, 0.796851431498182, -0.0900915584773355, -0.0741910866169179, 0.592795909126424, 0.796952773232119, -0.0901117268142295, -0.074180791695994, 0.592657881135102, 0.797054066115478, -0.0901318868841688, -0.0741704906772705, 0.592519870526023, 0.797155305755813, -0.0901520371651276, -0.0741601836002814, 0.592381883474425, 0.797256494100103, -0.0901721783414551, -0.0741498704575647, 0.592243917300545, 0.797357633651063, -0.0901923112866828, -0.0741395512357439, 0.592105968544234, 0.797458724426049, -0.0902124360101633, -0.0741292259402189, 0.591968037217715, 0.797559766442423, -0.0902325525212428, -0.0741188945763875, 0.591830123333193, 0.797660759351026, -0.0902526607025803, -0.0741085571527649, 0.591692227415896, 0.797761697022132, -0.0902727584421865, -0.0740982137285232, 0.591554358085417, 0.797862585993081, -0.0902928480051678, -0.0740878642544017, 0.591416506230399, 0.797963426279623, -0.0903129294007, -0.0740775087360891, 0.59127867186514, 0.798064217899448, -0.0903330026381089, -0.0740671471789092, 0.591140855001331, 0.798164960870925, -0.0903530677267688, -0.0740567795880562, 0.591003055649734, 0.798265652003061, -0.0903731235742429, -0.0740464059996677, 0.590865278321628, 0.798366290864793, -0.0903931700393326, -0.0740360264247262, 0.590727523662365, 0.798466881133887, -0.0904132083910185, -0.0740256408350018, 0.590589786552165, 0.798567422828811, -0.0904332386386421, -0.0740152492356597, 0.590452067001599, 0.798667915967184, -0.0904532607914705, -0.0740048516320219, 0.590314365022356, 0.798768360564863, -0.0904732748586218, -0.0739944480297412, 0.590176680628481, 0.798868750607349, -0.090493278788896, -0.0739840384967308, 0.590039022306833, 0.798969091331075, -0.0905132743795276, -0.0739736229864166, 0.589901382742028, 0.799069383572679, -0.0905332619198496, -0.0739632014957592, 0.58976376079531, 0.799169627349574, -0.0905532414190655, -0.0739527740301074, 0.589626156478574, 0.799269822679171, -0.0905732128863729, -0.0739423405948081, 0.589488569803696, 0.799369967566998, -0.090593175647144, -0.0739319012177343, 0.589351003613665, 0.799470059217205, -0.0906131287581031, -0.07392145593734, 0.589213461882881, 0.799570102477646, -0.0906330738722629, -0.0739110047057498, 0.589075937827831, 0.799670097365747, -0.090653010998782, -0.0739005475282972, 0.588938431460309, 0.799770043898729, -0.0906729401467957, -0.0738900844103529, 0.588800942792377, 0.799869942093793, -0.0906928613254318, -0.0738796153572887, 0.588663471836106, 0.799969787139471, -0.0907127729119063, -0.073869140432792, 0.588526025411268, 0.800069581890929, -0.0907326758796615, -0.0738586596102864, 0.588388599533644, 0.800169328363208, -0.0907525709130381, -0.0738481728708297, 0.588251191399632, 0.800269026572996, -0.0907724580210834, -0.0738376802198804, 0.588113801021933, 0.800368676537205, -0.0907923372128558, -0.0738271816628534, 0.587976428412934, 0.800468277448222, -0.0908122082195715, -0.0738166772154072, 0.587839074749407, 0.800567824164179, -0.0908320693194044, -0.0738061669513909, 0.587701747331188, 0.80066732269388, -0.0908519225378374, -0.0737956507993076, 0.58756443771258, 0.800766773053276, -0.0908717678838136, -0.073785128764744, 0.587427145907205, 0.800866175259811, -0.0908916053663879, -0.0737746008529999, 0.587289871926652, 0.800965529331895, -0.0909114349946853, -0.0737640670691896, 0.587152615781192, 0.801064831649505, -0.0909312555621417, -0.0737535274691807, 0.587015382628168, 0.801164082709758, -0.09095106724245, -0.0737429820534995, 0.586878171804974, 0.801263285692784, -0.0909708711029834, -0.073732430784107, 0.586740978850323, 0.801362440616057, -0.0909906671527532, -0.0737218736662848, 0.586603803775688, 0.80146154749705, -0.0910104554007651, -0.0737113107053118, 0.586466646592527, 0.80156060635324, -0.0910302358560182, -0.0737007419064647, 0.586329507312279, 0.801659610767382, -0.0910500063897951, -0.073690167370464, 0.586192395066348, 0.801758566848192, -0.0910697690401574, -0.073679587014626, 0.586055301238594, 0.801857474961569, -0.0910895239320713, -0.0736690008391859, 0.585918225346713, 0.801956335125634, -0.0911092710745472, -0.0736584088492848, 0.585781167401205, 0.802055147358401, -0.091129010476581, -0.0736478110500819, 0.585644127412701, 0.802153909222774, -0.0911487413360709, -0.0736372074854928, 0.58550710887675, 0.802252618876614, -0.0911684630502617, -0.0736265981910015, 0.585370114448533, 0.802351280655348, -0.0911881770580589, -0.0736159831056601, 0.585233138011629, 0.802449894577664, -0.0912078833684717, -0.0736053622344867, 0.585096179575691, 0.802548460661153, -0.091227581990418, -0.0735947355827084, 0.584959239151846, 0.802646978921918, -0.0912472729326926, -0.0735841031558376, 0.58482231675323, 0.802745444137644, -0.0912669544817702, -0.0735734650455667, 0.584685419843071, 0.802843860057015, -0.0912866278778405, -0.0735628211976484, 0.584548543131268, 0.802942228212601, -0.091306293628301, -0.0735521715925018, 0.584411684474972, 0.803040548621915, -0.0913259517420178, -0.0735415162353555, 0.584274843885336, 0.803138821302473, -0.0913456022278514, -0.0735308551314355, 0.584138021373498, 0.803237044994178, -0.0913652446767979, -0.0735201883081046, 0.584001218770398, 0.803335215529383, -0.0913848777321801, -0.0735095158445582, 0.583864442051862, 0.803433338393784, -0.0914045031934954, -0.0734988376522443, 0.583727683442493, 0.803531413604904, -0.0914241210695664, -0.0734881537363755, 0.583590942953351, 0.80362944118027, -0.0914437313692094, -0.0734774641021612, 0.583454220595479, 0.803727421137411, -0.0914633341012348, -0.0734667687548087, 0.583317516379905, 0.803825349436084, -0.0914829279553228, -0.0734560677737007, 0.583180836108239, 0.803923227484607, -0.0915025133969442, -0.0734453611406762, 0.583044177811331, 0.804021057973759, -0.0915220913046346, -0.0734346488122849, 0.582907537686553, 0.804118840920108, -0.0915416616870921, -0.0734239307939091, 0.582770915746178, 0.804216576340802, -0.0915612245530527, -0.0734132070908166, 0.582634312001675, 0.804314264142902, -0.0915807798751282, -0.0734024777100094, 0.582497726621964, 0.804411897852388, -0.0916003255652938, -0.0733917427820329, 0.582361168898879, 0.804509484095901, -0.0916198637725466, -0.0733810021868983, 0.582224629400109, 0.804607022889379, -0.0916393945054912, -0.0733702559300981, 0.582088108138715, 0.804704514250474, -0.0916589177728596, -0.0733595040167876, 0.581951605125398, 0.804801958197597, -0.0916784335834338, -0.0733487464519693, 0.581815120369801, 0.804899351864375, -0.0916979410186689, -0.0733379832985803, 0.58167865801226, 0.804996694338367, -0.0917174397920852, -0.0733272145821188, 0.581542219399345, 0.805093989456015, -0.0917369311419357, -0.0733164402320509, 0.581405799075102, 0.805191237234877, -0.0917564150769002, -0.0733056602535349, 0.581269397050281, 0.805288437692514, -0.0917758916056524, -0.0732948746517267, 0.581133013335609, 0.805385590846487, -0.0917953607368601, -0.0732840834317798, 0.580996647941801, 0.805482691072196, -0.0918148206758597, -0.0732732867170592, 0.58086030897371, 0.805579742991019, -0.0918342729077137, -0.0732624844184767, 0.580723989842737, 0.805676747663899, -0.0918537177750619, -0.0732516765195781, 0.580587689063153, 0.805773705109092, -0.0918731552865874, -0.073240863025367, 0.580451406644649, 0.805870615344563, -0.091892585451001, -0.073230043940893, 0.580315142597298, 0.80596747666733, -0.0919120077303487, -0.073219219308958, 0.580178899403676, 0.806064285865333, -0.0919314211084397, -0.0732083892059452, 0.580042681718566, 0.806161047910189, -0.0919508271721511, -0.073197553530676, 0.579906482436458, 0.806257762820775, -0.0919702259301679, -0.0731867122880171, 0.579770301566115, 0.806354430614622, -0.0919896173910675, -0.0731758654830977, 0.579634139118127, 0.806451051308106, -0.092009001563334, -0.0731650131212748, 0.57949799510467, 0.806547620452586, -0.0920283770430412, -0.0731541553085214, 0.579361875965438, 0.806644140346933, -0.0920477445650088, -0.0731432920006836, 0.579225778431654, 0.806740613200312, -0.0920671048311505, -0.0731324231533197, 0.579089699360055, 0.806837039030324, -0.0920864578500059, -0.0731215487715306, 0.578953638761059, 0.806933417854298, -0.0921058036300879, -0.0731106688604693, 0.578817596645447, 0.807029749126353, -0.0921251420026484, -0.0730997834384419, 0.578681573835993, 0.807126027348923, -0.0921444712439309, -0.0730888926411138, 0.578545578297526, 0.807222258623724, -0.0921637932789997, -0.0730779963320617, 0.578409601271392, 0.807318442968352, -0.0921831081163506, -0.0730670945163729, 0.578273642767938, 0.807414580400402, -0.0922024157644736, -0.073056187199132, 0.578137702797494, 0.80751067093747, -0.0922217162318524, -0.0730452743854215, 0.578001781370375, 0.807606711292813, -0.0922410084937165, -0.0730343561609062, 0.577865883269666, 0.807702701466508, -0.0922602925571361, -0.073023432532988, 0.577730008535196, 0.807798644804412, -0.0922795694722479, -0.0730125034259004, 0.577594152371416, 0.807894541323066, -0.0922988392474196, -0.0730015688449247, 0.577458314790039, 0.807990391039817, -0.092318101891074, -0.0729906287951776, 0.577322495801642, 0.808086193973764, -0.0923373574117581, -0.072979683281422, 0.577186695414363, 0.808181944107602, -0.0923566039429235, -0.0729687324620461, 0.577050922371214, 0.808277646917386, -0.0923758431937733, -0.072957776205642, 0.576915168789191, 0.808373303001111, -0.0923950753537149, -0.0729468145029568, 0.57677943383873, 0.808468912376603, -0.0924143004311636, -0.0729358473589965, 0.576643717529669, 0.808564475062253, -0.0924335184345711, -0.0729248747786502, 0.57650801987104, 0.808659988925377, -0.0924527287073968, -0.0729138968231699, 0.576372343989391, 0.808755451271828, -0.0924719304228789, -0.0729029135700132, 0.576236693828995, 0.808850873146012, -0.092491126998029, -0.0728919247353403, 0.576101053415064, 0.808946264684556, -0.0925103215630847, -0.0728809300545895, 0.575965408068555, 0.809041633258758, -0.0925295163951094, -0.0728699293339918, 0.575829747102863, 0.80913697886597, -0.0925487114928911, -0.0728589225733886, 0.575694070521923],
-	"STA_REFERENCE_DATE_AND_TIME": "UNKNOWN",
-	"STA_REFERENCE_POINT_XYZ": [0.0, 0.0, 0.0],
-	"STA_REF_ELEVATION": 0.0,
-	"STA_SEMI_MAJOR_AXIS": 3396190,
-	"STA_SEMI_MINOR_AXIS": 3376200.00000009,
-	"STA_SENSOR_IDENTIFIER": "USGS_LINE_SCANNER",
-	"STA_SENSOR_MODEL_NAME": "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL",
-	"STA_SENSOR_TYPE": "USGSAstroLineScannerKLEv",
-	"STA_STARTING_EPHEMERIS_TIME": 133312067.606528,
-	"STA_STARTING_SAMPLE": 1,
-	"STA_T0_EPHEM": -122.538634955883,
-	"STA_T0_QUAT": -19.6352438181639,
-	"STA_TOTAL_LINES": 14264,
-	"STA_TOTAL_SAMPLES": 2584,
-	"STA_TRAJECTORY_IDENTIFIER": "UNKNOWN"
-}
diff --git a/tests/h2254_0000_s12_keywords.lis b/tests/h2254_0000_s12_keywords.lis
deleted file mode 100644
index 61c0b217a8b035d5e702d9d7b1ba222dfa8f2c5d..0000000000000000000000000000000000000000
--- a/tests/h2254_0000_s12_keywords.lis
+++ /dev/null
@@ -1,727 +0,0 @@
-RECTIFICATION_TERMS
-        1.43520000000000e+04 0.00000000000000e+00 1.00000000000000e+00
-        1.29200000000000e+03 1.00000000000000e+00 0.00000000000000e+00
-GROUND_ZERO -1.13294684054303e+00 7.58312367830040e-01 0.00000000000000e+00
-LOAD_PT -1.13294684054303e+00 7.58312367830040e-01 0.00000000000000e+00
-COORD_SYSTEM 1
-IMAGE_MOTION 0
-SENSOR_TYPE USGSAstroLineScannerKLEv
-SENSOR_MODE UNKNOWN
-SEMI_MAJOR_AXIS 3.39619000000000e+006
-ECCENTRICITY 1.08339143554195e-001
-FOCAL 1.74870000000000e+02
-ATMCO 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_LINE 1.43520000000000e+04 7.14285714285714e+01 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-IOCOEF_SAMPLE 1.29200000000000e+03 0.00000000000000e+00 7.14285714285714e+01 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00
-ABERR    0
-ATMREF   0
-PLATFORM   1
-SOURCE_FLAG  1
-SINGLE_EPHEMERIDE  0
-TRI_PARAMETERS
-0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 0.00000000000000e+00 1.74870000000000e+02 0.00000000000000e+00 0.00000000000000e+00
-T_CENTER  1.7881393432617187500000000e-07
-DT_EPHEM  5.2614101318129122830669075e+00
-T0_EPHEM  -1.6836512404680252075195312e+02
-NUMBER_OF_EPHEM   65
-EPHEM_PTS
- 9.1412753168339212425053120e+05 7.5867202442265208810567856e+05 -3.7364796331738489679992199e+06
- 9.2586950102932227309793234e+05 7.7314009657699486706405878e+05 -3.7257204511695182882249355e+06
- 9.3760427142697130329906940e+05 7.8758442809584015049040318e+05 -3.7148878454608255997300148e+06
- 9.4933152430856600403785706e+05 8.0200467772797436919063330e+05 -3.7039817955006379634141922e+06
- 9.6105094058836693875491619e+05 8.1640050468010467011481524e+05 -3.6930022807418056763708591e+06
- 9.7276220066305727232247591e+05 8.3077156861737056169658899e+05 -3.6819492806372083723545074e+06
- 9.8446498441214091144502163e+05 8.4511752966381120495498180e+05 -3.6708227746396977454423904e+06
- 9.9615897119838383514434099e+05 8.5943804840286064427345991e+05 -3.6596227422021366655826569e+06
- 1.0078438398682306287810206e+06 8.7373278587783256080001593e+05 -3.6483491627773838117718697e+06
- 1.0195192687522300984710455e+06 8.8800140359240164980292320e+05 -3.6370020158183020539581776e+06
- 1.0311849356654613511636853e+06 9.0224356351109221577644348e+05 -3.6255812807777500711381435e+06
- 1.0428405177342103561386466e+06 9.1645892740032053552567959e+05 -3.6140869386152671650052071e+06
- 1.0544856900520212948322296e+06 9.3064715496554446872323751e+05 -3.6025189778909841552376747e+06
- 1.0661201265217780601233244e+06 9.4480790582558896858245134e+05 -3.5908773895589020103216171e+06
- 1.0777435002298520412296057e+06 9.5894083899691072292625904e+05 -3.5791621672689672559499741e+06
- 1.0893554823882766067981720e+06 9.7304561166495946235954762e+05 -3.5673733124593235552310944e+06
- 1.1009557433374295942485332e+06 9.8712188120414386503398418e+05 -3.5555108280166569165885448e+06
- 1.1125439522511521354317665e+06 1.0011693042386475717648864e+06 -3.5435747209944995120167732e+06
- 1.1241197768457545898854733e+06 1.0151875358282552333548665e+06 -3.5315650056800078600645065e+06
- 1.1356828842019969597458839e+06 1.0291762312536939280107617e+06 -3.5194816973147462122142315e+06
- 1.1472329400177076458930969e+06 1.0431350449312601704150438e+06 -3.5073248169494708999991417e+06
- 1.1587696086136060766875744e+06 1.0570636304417166393250227e+06 -3.4950943917171428911387920e+06
- 1.1702925537332957610487938e+06 1.0709616414451866876333952e+06 -3.4827904500509458594024181e+06
- 1.1818014379575364291667938e+06 1.0848287306517916731536388e+06 -3.4704130270000365562736988e+06
- 1.1932959230052693746984005e+06 1.0986645503871599212288857e+06 -3.4579621617327458225190639e+06
- 1.2047756691098713781684637e+06 1.1124687530466853640973568e+06 -3.4454378978242939338088036e+06
- 1.2162403364600385539233685e+06 1.1262409898789650760591030e+06 -3.4328402837857180275022984e+06
- 1.2276895840101763606071472e+06 1.1399809122061692178249359e+06 -3.4201693725890079513192177e+06
- 1.2391230699303185101598501e+06 1.1536881709980831947177649e+06 -3.4074252217944376170635223e+06
- 1.2505404515692617278546095e+06 1.1673624171288793440908194e+06 -3.3946078938849158585071564e+06
- 1.2619413855023817159235477e+06 1.1810033012741361744701862e+06 -3.3817174560126168653368950e+06
- 1.2733255274902191013097763e+06 1.1946104741500162053853273e+06 -3.3687539799498338252305984e+06
- 1.2846925327456155791878700e+06 1.2081835861239654477685690e+06 -3.3557175424150153994560242e+06
- 1.2960420562128194142132998e+06 1.2217222873824685811996460e+06 -3.3426082250479431822896004e+06
- 1.3073737520334590226411819e+06 1.2352262282646654639393091e+06 -3.3294261142199998721480370e+06
- 1.3186872734669053461402655e+06 1.2486950594199867919087410e+06 -3.3161713010975890792906284e+06
- 1.3299822739095017313957214e+06 1.2621284311175395268946886e+06 -3.3028438819465055130422115e+06
- 1.3412584058737463783472776e+06 1.2755259940886280965059996e+06 -3.2894439579218635335564613e+06
- 1.3525153213730892166495323e+06 1.2888873992494170088320971e+06 -3.2759716350410496816039085e+06
- 1.3637526722343533765524626e+06 1.3022122977283024229109287e+06 -3.2624270243626520968973637e+06
- 1.3749701101149260066449642e+06 1.3155003409269719850271940e+06 -3.2488102419743100181221962e+06
- 1.3861672863237834535539150e+06 1.3287511806660695001482964e+06 -3.2351214087620908394455910e+06
- 1.3973438518441910855472088e+06 1.3419644690178711898624897e+06 -3.2213606508325492031872272e+06
- 1.4084994579290039837360382e+06 1.3551398579988020937889814e+06 -3.2075280994827290996909142e+06
- 1.4196337545181389432400465e+06 1.3682770016074704471975565e+06 -3.1936238907398432493209839e+06
- 1.4307463927071087528020144e+06 1.3813755531609239988029003e+06 -3.1796481658608326688408852e+06
- 1.4418370230955304577946663e+06 1.3944351667967441026121378e+06 -3.1656010712023545056581497e+06
- 1.4529052963382292073220015e+06 1.4074554973716940730810165e+06 -3.1514827582681477069854736e+06
- 1.4639508635063110850751400e+06 1.4204361998818982392549515e+06 -3.1372933837115666829049587e+06
- 1.4749733745128596201539040e+06 1.4333769317939258180558681e+06 -3.1230331090609584935009480e+06
- 1.4859724803219046443700790e+06 1.4462773501356942579150200e+06 -3.1087021011758386157453060e+06
- 1.4969478328381956089287996e+06 1.4591371120496410876512527e+06 -3.0943005322215086780488491e+06
- 1.5078990830801269039511681e+06 1.4719558767684956546872854e+06 -3.0798285792519180104136467e+06
- 1.5188258816436347551643848e+06 1.4847333055424825288355350e+06 -3.0652864242613366805016994e+06
- 1.5297278756004904862493277e+06 1.4974690646258690394461155e+06 -3.0506742513813213445246220e+06
- 1.5406047110137820709496737e+06 1.5101628214242937974631786e+06 -3.0359922448027934879064560e+06
- 1.5514560334270230960100889e+06 1.5228142438389204908162355e+06 -3.0212405887166615575551987e+06
- 1.5622814878651052713394165e+06 1.5354230002671217080205679e+06 -3.0064194673140826635062695e+06
- 1.5730807188338863197714090e+06 1.5479887596023604273796082e+06 -2.9915290647854753769934177e+06
- 1.5838533703222672920674086e+06 1.5605111912354475352913141e+06 -2.9765695653218026272952557e+06
- 1.5945990857987734489142895e+06 1.5729899650549197103828192e+06 -2.9615411531136976554989815e+06
- 1.6053175082181342877447605e+06 1.5854247514472471084445715e+06 -2.9464440123534360900521278e+06
- 1.6160082800165212247520685e+06 1.5978152212968533858656883e+06 -2.9312783272308008745312691e+06
- 1.6266710431159534491598606e+06 1.6101610459891466889530420e+06 -2.9160442819392411038279533e+06
- 1.6373054389129469636827707e+06 1.6224618974041566252708435e+06 -2.9007420606634211726486683e+06
-
-
-EPHEM_RATES
- 2.2323691750325488101225346e+03 2.7520705010594556370051578e+03 2.0379480323935067644924857e+03
- 2.2310311452083901713194791e+03 2.7475907550307033488934394e+03 2.0519012177428880931984168e+03
- 2.2296326166802241459663492e+03 2.7430461062568501802161336e+03 2.0658583083495418577513192e+03
- 2.2281734909455412889656145e+03 2.7384366417311994155170396e+03 2.0798193042098832847841550e+03
- 2.2266536695950189823633991e+03 2.7337624485362111954600550e+03 2.0937842053227182077534962e+03
- 2.2250730542941200837958604e+03 2.7290236138473751452693250e+03 2.1077530116879129309381824e+03
- 2.2234315467880842334125191e+03 2.7242202249316515008104034e+03 2.1217257233070613438030705e+03
- 2.2217290489036745384510141e+03 2.7193523691491295721789356e+03 2.1357023401794995152158663e+03
- 2.2199654625476855471788440e+03 2.7144201339517126143618952e+03 2.1496828623052274451765697e+03
- 2.2181406897078495603636838e+03 2.7094236068834802608762402e+03 2.1636672896842451336851809e+03
- 2.2162546159411931512295268e+03 2.7043628129131743662583176e+03 2.1776554791347439277160447e+03
- 2.2143069826160135562531650e+03 2.6992375373581921849108767e+03 2.1916465651784678811964113e+03
- 2.2122974834073902457021177e+03 2.6940475761295851953036617e+03 2.2056395980261563636304345e+03
- 2.2102259275705669097078498e+03 2.6887928637504983271355741e+03 2.2196340939846954825043213e+03
- 2.2080920593898267725307960e+03 2.6834731689734944666270167e+03 2.2336290567296746303327382e+03
- 2.2058956179091251215140801e+03 2.6780883357521934158285148e+03 2.2476236084793536065262742e+03
- 2.2036364094358796137385070e+03 2.6726383107486044536926784e+03 2.2616172155946164821216371e+03
- 2.2013141846008702486869879e+03 2.6671228740004012252029497e+03 2.2756087946709922107402235e+03
- 2.1989287444953370140865445e+03 2.6615418978368134048650973e+03 2.2895975675870395207311958e+03
- 2.1964798972997950841090642e+03 2.6558953211061621004773770e+03 2.3035828915873330515751150e+03
- 2.1939673807232907165598590e+03 2.6501829822581817097670864e+03 2.3175636366139206074876711e+03
- 2.1913910090527874672261532e+03 2.6444048094325589772779495e+03 2.3315391011032329515728634e+03
- 2.1887506169372054500854574e+03 2.6385607198908933241909835e+03 2.3455085327668548416113481e+03
- 2.1860460119697409027139656e+03 2.6326505868140434358792845e+03 2.3594709114270294776360970e+03
- 2.1832769710749357727763709e+03 2.6266743802929718185623642e+03 2.3734254268386598596407566e+03
- 2.1804433488312070039683022e+03 2.6206319979757217879523523e+03 2.3873711911498148765531369e+03
- 2.1775450236959181893325876e+03 2.6145233378721659391885623e+03 2.4013073113708455821324605e+03
- 2.1745818038324359804391861e+03 2.6083483734863971221784595e+03 2.4152329275386864537722431e+03
- 2.1715535366572626116976608e+03 2.6021070622444844957499299e+03 2.4291471358158910334168468e+03
- 2.1684600706275627999275457e+03 2.5957993761874886331497692e+03 2.4430490246692365872149821e+03
- 2.1653012548088863695738837e+03 2.5894253002994901180500165e+03 2.4569377113140585606743116e+03
- 2.1620769597175035414693411e+03 2.5829848052981778891989961e+03 2.4708122866523935954319313e+03
- 2.1587871077798804435587954e+03 2.5764778408474421667051502e+03 2.4846718129614482677425258e+03
- 2.1554315971969504062144551e+03 2.5699044042573045771860052e+03 2.4985153729078660944651347e+03
- 2.1520102678521966481639538e+03 2.5632645395222461957018822e+03 2.5123420611619180817797314e+03
- 2.1485230489200184820219874e+03 2.5565582399869322216545697e+03 2.5261509374422194014186971e+03
- 2.1449698694239359610946849e+03 2.5497855134319502212747466e+03 2.5399410525060288819076959e+03
- 2.1413505979454334919864777e+03 2.5429464213481874139688443e+03 2.5537114796443856903351843e+03
- 2.1376651693237417930504307e+03 2.5360410014718891034135595e+03 2.5674612777147513043018989e+03
- 2.1339135497216593648772687e+03 2.5290692999430757481604815e+03 2.5811894897253259841818362e+03
- 2.1300956899274001443700399e+03 2.5220313825471189375093672e+03 2.5948951817554493572970387e+03
- 2.1262115258781213924521580e+03 2.5149273130110955207783263e+03 2.6085774016919845053052995e+03
- 2.1222610522405316260119434e+03 2.5077571099404017331835348e+03 2.6222351601636096347647253e+03
- 2.1182441698635907414427493e+03 2.5005209563973685362725519e+03 2.6358675143947352808027063e+03
- 2.1141608637948161231179256e+03 2.4932189759821985717280768e+03 2.6494735178808332420885563e+03
- 2.1100111967265497696644161e+03 2.4858511819017230664030649e+03 2.6630521889987107897468377e+03
- 2.1057951267795588137232699e+03 2.4784177204775105565204285e+03 2.6766025539791999108274467e+03
- 2.1015126987601811379136052e+03 2.4709186732982379908207804e+03 2.6901236343111222595325671e+03
- 2.0971638421795551039394923e+03 2.4633542883778245595749468e+03 2.7036144773403534600220155e+03
- 2.0927485468620575375098269e+03 2.4557247588007353442662861e+03 2.7170741131595109436602797e+03
- 2.0882670020788036708836444e+03 2.4480300537642310700903181e+03 2.7305015309222335417871363e+03
- 2.0837192129961422324413434e+03 2.4402703827950213053554762e+03 2.7438957618355939303000923e+03
- 2.0791050552355131912918296e+03 2.4324461362625061155995354e+03 2.7572558718374111776938662e+03
- 2.0744241537431794313306455e+03 2.4245579814343768703110982e+03 2.7705811883316368948726449e+03
- 2.0696760777555118693271652e+03 2.4166065032692172280803788e+03 2.7838715025670658178569283e+03
- 2.0648606820397963019786403e+03 2.4085918582741542195435613e+03 2.7971268089034047079621814e+03
- 2.0599778679346254648407921e+03 2.4005141406952120632922743e+03 2.8103471073182618056307547e+03
- 2.0550275368299462570575997e+03 2.3923734448321374657098204e+03 2.8235323978581905066675972e+03
- 2.0500095902739526536606718e+03 2.3841698650929201903636567e+03 2.8366826805416444585716818e+03
- 2.0449239296873245166352717e+03 2.3759034960409626364707947e+03 2.8497979553482227856875397e+03
- 2.0397704567911289359471994e+03 2.3675744322953173650603276e+03 2.8628782221531782852252945e+03
- 2.0345490734791717386542587e+03 2.3591827684966742708638776e+03 2.8759234810373154687113129e+03
- 2.0292596816113841668993700e+03 2.3507285995756665215594694e+03 2.8889337318891180075297598e+03
- 2.0239021823876923917850945e+03 2.3422120201462785189505666e+03 2.9019089751950100435351487e+03
- 2.0184764784117132876417600e+03 2.3336331252006548311328515e+03 2.9148492109587086815736257e+03
-
-
-DT_QUAT 5.0055698928452652118892274e-01
-T0_QUAT -1.2313701918721199035644531e+02
-NUMBER_OF_QUATERNIONS  493
-QUATERNIONS
- -1.0017811489357915377684805e-01 -1.4490377658221056944576333e-01 9.2215804248941535270489567e-01 3.4437158056476102618859159e-01
- -1.0027550387571948498077745e-01 -1.4514087875509484870661936e-01 9.2210508826498482903843978e-01 3.4438518381674659840641084e-01
- -1.0037291675313927963308913e-01 -1.4537801640031361438687441e-01 9.2205206059804056817341689e-01 3.4439876230451960115175325e-01
- -1.0047035356474121048364623e-01 -1.4561518961193736787507191e-01 9.2199895942456144837251486e-01 3.4441231602380512066829965e-01
- -1.0056781428325650695754234e-01 -1.4585239833934471320731063e-01 9.2194578471103239003525687e-01 3.4442584496885325640036513e-01
- -1.0066529888486629162880348e-01 -1.4608964254085290979112699e-01 9.2189253642221735685069461e-01 3.4443934913380175322217269e-01
- -1.0076280734528110516468047e-01 -1.4632692217384543620362081e-01 9.2183921452309902644373096e-01 3.4445282851279246383313648e-01
- -1.0086034149474164267612508e-01 -1.4656424125904948807530559e-01 9.2178581811184612249121528e-01 3.4446628314770916245990406e-01
- -1.0095790063569129446641170e-01 -1.4680159828314878756039263e-01 9.2173234746325272137568163e-01 3.4447971301751395545309720e-01
- -1.0105548354765710172831206e-01 -1.4703899058128375165743762e-01 9.2167880310048888592433514e-01 3.4449311808661281508747720e-01
- -1.0115309020563280351101554e-01 -1.4727641811019070994248636e-01 9.2162518498883805317944962e-01 3.4450649834912222546634553e-01
- -1.0125072058505125982552642e-01 -1.4751388082796987322176108e-01 9.2157149309334873699128821e-01 3.4451985379913246942962246e-01
- -1.0134837465786754318042284e-01 -1.4775137868421989173484121e-01 9.2151772738079817948175787e-01 3.4453318443083236211066378e-01
- -1.0144605239598916690546559e-01 -1.4798891162867874871089668e-01 9.2146388781798027611813495e-01 3.4454649023840305810395535e-01
- -1.0154375377450158834946592e-01 -1.4822647961934709570641644e-01 9.2140997437008276271797058e-01 3.4455977121591269130007618e-01
- -1.0164147876775066203780540e-01 -1.4846408261262189487439400e-01 9.2135598700264920157820825e-01 3.4457302735744110844251509e-01
- -1.0173922829351712826539966e-01 -1.4870172263726735839561854e-01 9.2130192523222942391214474e-01 3.4458625868472564368616418e-01
- -1.0183700345119994778997352e-01 -1.4893940212696388236679468e-01 9.2124778848471500225514319e-01 3.4459946522617362907325855e-01
- -1.0193480213634419084822724e-01 -1.4917711647127612772933958e-01 9.2119357771313581384475810e-01 3.4461264691652399028143350e-01
- -1.0203262431791862430152662e-01 -1.4941486561426559065424158e-01 9.2113929288569107445283635e-01 3.4462580374997864307573536e-01
- -1.0213046997056464404440845e-01 -1.4965264951453627340072217e-01 9.2108493396770163563758160e-01 3.4463893572053933000987058e-01
- -1.0222833906554637528607543e-01 -1.4989046812245937490004621e-01 9.2103050092618532485033711e-01 3.4465204282230804677666924e-01
- -1.0232623157391962376294714e-01 -1.5012832138814735660758970e-01 9.2097599372825744712400819e-01 3.4466512504938290328837525e-01
- -1.0242414746964816074648041e-01 -1.5036620926930160946355386e-01 9.2092141233954327717015076e-01 3.4467818239574909977562811e-01
- -1.0252208672568044467432458e-01 -1.5060413172133690906662196e-01 9.2086675672616946641824143e-01 3.4469121485541281968423277e-01
- -1.0262004936115642905747336e-01 -1.5084208880025481991360436e-01 9.2081202683197915792590038e-01 3.4470422242420017955311096e-01
- -1.0271803824581912656377369e-01 -1.5108008685405796556189273e-01 9.2075722121535874542530564e-01 3.4471720519125764736756423e-01
- -1.0281605040004927753560793e-01 -1.5131811933047839557886505e-01 9.2070234127087213771289953e-01 3.4473016305620313159963075e-01
- -1.0291408579139645074196352e-01 -1.5155618617258392877289452e-01 9.2064738696734305101188056e-01 3.4474309601317010276488872e-01
- -1.0301214439211064943791030e-01 -1.5179428733554292674234887e-01 9.2059235827118146566760970e-01 3.4475600405611300791619556e-01
- -1.0311022617525146538586256e-01 -1.5203242277683640115704122e-01 9.2053725514836615140268350e-01 3.4476888717894155211851626e-01
- -1.0320833111075004839829461e-01 -1.5227059244635093859798758e-01 9.2048207756646871491312822e-01 3.4478174537566347312989024e-01
- -1.0330645916843865517176226e-01 -1.5250879629400110326642448e-01 9.2042682549310173012457881e-01 3.4479457864027696079034513e-01
- -1.0340461032136873120723664e-01 -1.5274703427807834188456582e-01 9.2037149889420777348902902e-01 3.4480738696664681164349986e-01
- -1.0350278453659571276102014e-01 -1.5298530634206972123045887e-01 9.2031609773880840297266559e-01 3.4482017034884504536051963e-01
- -1.0360098392819482027160660e-01 -1.5322361718681065667624352e-01 9.2026062093311300493780891e-01 3.4483292885845640007858037e-01
- -1.0369920715229460905781877e-01 -1.5346196386033483793909227e-01 9.2020506908936261503129117e-01 3.4484566244387693245698756e-01
- -1.0379745334344740725907030e-01 -1.5370034446388677884520746e-01 9.2014944258771735885460430e-01 3.4485837106935773865856731e-01
- -1.0389572247300063456698638e-01 -1.5393875895303360534782655e-01 9.2009374139491917343747218e-01 3.4487105472873885725348941e-01
- -1.0399401451284277786424326e-01 -1.5417720728498401916439775e-01 9.2003796547741356626204379e-01 3.4488371341582313434059870e-01
- -1.0409232943145069194557095e-01 -1.5441568940865560422004421e-01 9.1998211480340297274693739e-01 3.4489634712452738041221778e-01
- -1.0419066719783527663611977e-01 -1.5465420527459300403805287e-01 9.1992618934080339077041799e-01 3.4490895584873204615661280e-01
- -1.0428902778350299107579247e-01 -1.5489275483990519455268497e-01 9.1987018905621620312729192e-01 3.4492153958220433951353812e-01
- -1.0438741115458621822043028e-01 -1.5513133804847531460602283e-01 9.1981411391903389329627316e-01 3.4493409831890481376248658e-01
- -1.0448581853085585346985198e-01 -1.5536995763466132647323548e-01 9.1975796326635483879385902e-01 3.4494663210222475946409304e-01
- -1.0458425032649491803748987e-01 -1.5560861454658173053111625e-01 9.1970173683685862986436632e-01 3.4495914094542323713454834e-01
- -1.0468270480809720168746679e-01 -1.5584730495032156349921593e-01 9.1964543545509347399757871e-01 3.4497162477571063909920213e-01
- -1.0478118194608591895455874e-01 -1.5608602880187447126125733e-01 9.1958905908814414509322432e-01 3.4498408358679938379154351e-01
- -1.0487968171114406268351615e-01 -1.5632478605818098116309045e-01 9.1953260770294020787218869e-01 3.4499651737237013726655732e-01
- -1.0497820407026769995439963e-01 -1.5656357666720860377651547e-01 9.1947608126833535457933522e-01 3.4500892612623534905225142e-01
- -1.0507674899073402019489265e-01 -1.5680240057792715901996417e-01 9.1941947975302606987924037e-01 3.4502130984217882492259832e-01
- -1.0517531644284375258457942e-01 -1.5704125774720142927343147e-01 9.1936280312410123549682339e-01 3.4503366851384231761556975e-01
- -1.0527390639596356791685139e-01 -1.5728014812984567050158091e-01 9.1930605134912535270075296e-01 3.4504600213488506588177529e-01
- -1.0537251918579207399240261e-01 -1.5751907249836363811290596e-01 9.1924922420747112727923422e-01 3.4505831071524412090312239e-01
- -1.0547115712793755926135475e-01 -1.5775803605846958066472041e-01 9.1919232045697218946855855e-01 3.4507059435135267744243492e-01
- -1.0556981736912933456107311e-01 -1.5799703245879415103303245e-01 9.1913534151283060591453022e-01 3.4508285291644952286205239e-01
- -1.0566849988181267749887127e-01 -1.5823606166199283284967692e-01 9.1907828734127472447568152e-01 3.4509508640410824220623454e-01
- -1.0576720463568713148649891e-01 -1.5847512362487556347723228e-01 9.1902115790992522370572715e-01 3.4510729480776458633073389e-01
- -1.0586593159703598654441947e-01 -1.5871421829595996899620047e-01 9.1896395318820656150649029e-01 3.4511947812098048293805164e-01
- -1.0596468073209396043576902e-01 -1.5895334562393667598989566e-01 9.1890667314555884992444135e-01 3.4513163633730253865294912e-01
- -1.0606345201017934598564096e-01 -1.5919250556553707354190408e-01 9.1884931774976608132021738e-01 3.4514376945012437136739436e-01
- -1.0616224540029008116537312e-01 -1.5943169807698334694556763e-01 9.1879188696876512576494633e-01 3.4515587745283210496793913e-01
- -1.0626106357129157242713546e-01 -1.5967092918128639178476647e-01 9.1873437935613344595964236e-01 3.4516796046589126589765328e-01
- -1.0635990440125306366603297e-01 -1.5991019414640167406460591e-01 9.1867679596796225638399847e-01 3.4518001838729805985650501e-01
- -1.0645876723167649324786055e-01 -1.6014949151874119381844253e-01 9.1861913710019571510656533e-01 3.4519205118179135949318947e-01
- -1.0655765203031634935637584e-01 -1.6038882125279729784494975e-01 9.1856140272136410640513304e-01 3.4520405884271476715241533e-01
- -1.0665655876563794046685274e-01 -1.6062818330514808118358872e-01 9.1850359279959947755855865e-01 3.4521604136335726220607967e-01
- -1.0675548740340648490310116e-01 -1.6086757762589176667944457e-01 9.1844570730447150364028630e-01 3.4522799873710718898678351e-01
- -1.0685443790839835309647299e-01 -1.6110700416294521097881898e-01 9.1838774620607077636691429e-01 3.4523993095737787184518197e-01
- -1.0695341024984665601049727e-01 -1.6134646287571954847983591e-01 9.1832970947207082090812946e-01 3.4525183801735837008095586e-01
- -1.0705240608519397960129993e-01 -1.6158595753664350969103225e-01 9.1827159617039488814782544e-01 3.4526371999532801115861957e-01
- -1.0715142527853208087584846e-01 -1.6182548787696257597268357e-01 9.1821340631859282854776438e-01 3.4527557688166882199354291e-01
- -1.0725046619680743409386281e-01 -1.6206505023929637654411806e-01 9.1815514073630910552026307e-01 3.4528740859027939880121494e-01
- -1.0734952880253349760675263e-01 -1.6230464456761559133290973e-01 9.1809679939477495391741968e-01 3.4529921511455013982683226e-01
- -1.0744861306083977603442747e-01 -1.6254427081441838454090032e-01 9.1803838226263079214106710e-01 3.4531099645004492693090015e-01
- -1.0754771892717943093664701e-01 -1.6278392893697349319559464e-01 9.1797988929350127218498301e-01 3.4532275263308986890109509e-01
- -1.0764684636019242192084278e-01 -1.6302361888748892471134866e-01 9.1792132044868224305389504e-01 3.4533448368108227155559575e-01
- -1.0774599534193878003218714e-01 -1.6326334060971778305848545e-01 9.1786267572433510864016171e-01 3.4534618951552747967426171e-01
- -1.0784516654549158864995206e-01 -1.6350309566549744988428472e-01 9.1780395470626718879003647e-01 3.4535787016674590610421092e-01
- -1.0794436177642104113250099e-01 -1.6374288819647131454360078e-01 9.1774515636108722205221966e-01 3.4536952572791179694178254e-01
- -1.0804357844213435813074398e-01 -1.6398271234835079535052671e-01 9.1768628204234781176040769e-01 3.4538115605746211311810612e-01
- -1.0814281650895124498035216e-01 -1.6422256807736054784463420e-01 9.1762733171908084095491631e-01 3.4539276114838896036829397e-01
- -1.0824207593882313738209433e-01 -1.6446245532907793895915916e-01 9.1756830536269884390776497e-01 3.4540434099387101740674666e-01
- -1.0834135669656543010663796e-01 -1.6470237405658733065294541e-01 9.1750920294302995561253056e-01 3.4541589558692492589742074e-01
- -1.0844065874704428287245150e-01 -1.6494232421341809002868217e-01 9.1745002442985845725331728e-01 3.4542742492053984948441325e-01
- -1.0853998205166356938455863e-01 -1.6518230574472991811774136e-01 9.1739076979486000595898076e-01 3.4543892898785089062840825e-01
- -1.0863932657606521769988461e-01 -1.6542231860664080578260382e-01 9.1733143900736224818359688e-01 3.4545040778175983842146479e-01
- -1.0873869523931495306712236e-01 -1.6566236951658008802468203e-01 9.1727203040245375298411545e-01 3.4546186146254032056646111e-01
- -1.0883808530345100151759397e-01 -1.6590245225436639486815693e-01 9.1721254543723762520102127e-01 3.4547328987348602247209328e-01
- -1.0893749646709137424149816e-01 -1.6614256616652384179744217e-01 9.1715298422837032710219773e-01 3.4548469299243872443483383e-01
- -1.0903692869524210518061835e-01 -1.6638271120908437739061014e-01 9.1709334674543918630718053e-01 3.4549607081220584658964867e-01
- -1.0913638194925959212788769e-01 -1.6662288732924807055368888e-01 9.1703363296003959082014489e-01 3.4550742332575379300863005e-01
- -1.0923585619166700788618130e-01 -1.6686309447746974776727313e-01 9.1697384284310601287870668e-01 3.4551875052596420223594009e-01
- -1.0933535138697764166337834e-01 -1.6710333260952459077941512e-01 9.1691397636444993413107341e-01 3.4553005240559014898948931e-01
- -1.0943486749453379403007602e-01 -1.6734360166854478357834068e-01 9.1685403349674632345056580e-01 3.4554132895762323940402894e-01
- -1.0953440644715670138076291e-01 -1.6758390614815968366890786e-01 9.1679401310082164755499434e-01 3.4555258029261576302459957e-01
- -1.0963396744585555964146550e-01 -1.6782424425755107511015751e-01 9.1673391556952488201659435e-01 3.4556380636002675954543406e-01
- -1.0973354923315353781632098e-01 -1.6806461313876827623481347e-01 9.1667374155935865687183650e-01 3.4557500708063015881776892e-01
- -1.0983315177383069782823810e-01 -1.6830501275013387552093036e-01 9.1661349103987688202721529e-01 3.4558618244700323174356527e-01
- -1.0993277502828417702129826e-01 -1.6854544303931029425314136e-01 9.1655316398307007386137002e-01 3.4559733245192564288217341e-01
- -1.1003241901859177331868267e-01 -1.6878590409725852117261979e-01 9.1649276032575432981985841e-01 3.4560845709193493968669486e-01
- -1.1013208344422657780636854e-01 -1.6902639526834245531361489e-01 9.1643228018874500762080970e-01 3.4561955634321606112280278e-01
- -1.1023176837429098096077240e-01 -1.6926691675238472734044137e-01 9.1637172348261808352276603e-01 3.4563063020472356567935890e-01
- -1.1033147593673450770346278e-01 -1.6950747353150807938959588e-01 9.1631108893577151164322458e-01 3.4564167880614082850598834e-01
- -1.1043120531835526332287145e-01 -1.6974806377371345900151312e-01 9.1625037695628541722925320e-01 3.4565270209341009133297007e-01
- -1.1053095507276047837486033e-01 -1.6998868416371049061552867e-01 9.1618958832172914252822693e-01 3.4566369997130752533820441e-01
- -1.1063072516224808916618372e-01 -1.7022933465565134869557085e-01 9.1612872300330061570150519e-01 3.4567467243220362238531607e-01
- -1.1073051554968058041161783e-01 -1.7047001520542895414145335e-01 9.1606778097185892484333181e-01 3.4568561946840847820539011e-01
- -1.1083032619558803866244290e-01 -1.7071072576341606019667552e-01 9.1600676219956711499037283e-01 3.4569654107233016571143480e-01
- -1.1093015705875494680832105e-01 -1.7095146627593640897835314e-01 9.1594566665956622664168663e-01 3.4570743723644470346556545e-01
- -1.1103000843026519794953799e-01 -1.7119223746785167117323567e-01 9.1588449413123440567829903e-01 3.4571830797442459903834333e-01
- -1.1112988313696074704761685e-01 -1.7143304600539449600304920e-01 9.1582324290893923901535345e-01 3.4572915346992666441039432e-01
- -1.1122977793046445738056605e-01 -1.7167388434405547736893993e-01 9.1576191483180480190640083e-01 3.4573997350516189053237781e-01
- -1.1132969277269716412703815e-01 -1.7191475243962539565245606e-01 9.1570050987109630202809285e-01 3.4575076807228305453278949e-01
- -1.1142962762149877242734419e-01 -1.7215565023799694888140266e-01 9.1563902800039154161737542e-01 3.4576153716364266266225513e-01
- -1.1152958243703306462357716e-01 -1.7239657769122271324668816e-01 9.1557746919192872780968173e-01 3.4577228077143251638858601e-01
- -1.1162955718034968388696626e-01 -1.7263753475391302449892805e-01 9.1551583341742170940591450e-01 3.4578299888776264925382975e-01
- -1.1172955180809611419601168e-01 -1.7287852136997824969988358e-01 9.1545412065109110777427759e-01 3.4579369150496330753696839e-01
- -1.1182956829323251191077304e-01 -1.7311954224265446722341721e-01 9.1539232966834038762726777e-01 3.4580435875421200453416759e-01
- -1.1192960604699363214020735e-01 -1.7336059604729192606953347e-01 9.1533046075923196749357658e-01 3.4581500059220210419042019e-01
- -1.1202966354938466431168109e-01 -1.7360167924871458544622271e-01 9.1526851477361759190642942e-01 3.4582561690993074421385245e-01
- -1.1212974076193649164423505e-01 -1.7384279180471323700274411e-01 9.1520649168282142138508561e-01 3.4583620769928946625526578e-01
- -1.1222983764240890280916574e-01 -1.7408393366396790469252664e-01 9.1514439146032000582664523e-01 3.4584677295235616290014491e-01
- -1.1232995414823131186121685e-01 -1.7432510477467205722845733e-01 9.1508221407976864103517300e-01 3.4585731266119629223609877e-01
- -1.1243009023965987169813019e-01 -1.7456630509244780435906819e-01 9.1501995951317371957856039e-01 3.4586782681767708202968947e-01
- -1.1253024609118245091821109e-01 -1.7480753508294566422875960e-01 9.1495762760295951121491953e-01 3.4587831542906338766485419e-01
- -1.1263042466099698613035685e-01 -1.7504880184657808928072598e-01 9.1489521650200833491339836e-01 3.4588877870567624750464120e-01
- -1.1273062267827238525086386e-01 -1.7529009766395350911061257e-01 9.1483272813112836985283138e-01 3.4589921640802756552801611e-01
- -1.1283084009746335851787080e-01 -1.7553142247782768659014607e-01 9.1477016246558950918199571e-01 3.4590962852816098394015398e-01
- -1.1293107687676839923085481e-01 -1.7577277624068385342148702e-01 9.1470751947847439566885441e-01 3.4592001505786340587178529e-01
- -1.1303133297546620605888990e-01 -1.7601415890806154651571092e-01 9.1464479914221874512492150e-01 3.4593037598882181438142425e-01
- -1.1313160835101612744502120e-01 -1.7625557043129089218602701e-01 9.1458200143029744211276011e-01 3.4594071131279741093678126e-01
- -1.1323190295789213599686462e-01 -1.7649701075457407961621925e-01 9.1451912631791332231045999e-01 3.4595102102169766888906111e-01
- -1.1333221861181187739564535e-01 -1.7673848429677854743324872e-01 9.1445617263215339676207805e-01 3.4596130524663504246518642e-01
- -1.1343255493375749287654486e-01 -1.7697999022018207071482720e-01 9.1439314054502729423035134e-01 3.4597156395730921385478496e-01
- -1.1353291034434241646433605e-01 -1.7722152478960376265071375e-01 9.1433003097555298754883779e-01 3.4598179703018483444054709e-01
- -1.1363328480185727609175217e-01 -1.7746308796051490919154503e-01 9.1426684389660117791009952e-01 3.4599200445675976078874214e-01
- -1.1373367826101525579485241e-01 -1.7770467967977965351167313e-01 9.1420357928312445672247577e-01 3.4600218622871536933160996e-01
- -1.1383409067762736976980875e-01 -1.7794629989736968078695156e-01 9.1414023710941627598458581e-01 3.4601234233763039638276382e-01
- -1.1393452200978906874162533e-01 -1.7818794856933620196492996e-01 9.1407681734840739995462400e-01 3.4602247277490355559237400e-01
- -1.1403497231708976944464240e-01 -1.7842962589788530225476393e-01 9.1401331990905676505576594e-01 3.4603257754062077822254651e-01
- -1.1413544483566111231720441e-01 -1.7867133980700589113155274e-01 9.1394974269957018897514445e-01 3.4604265688369229003740202e-01
- -1.1423593601643204642481777e-01 -1.7891308175743256270173731e-01 9.1388608788920999703719872e-01 3.4605271052408087539831172e-01
- -1.1433644581786896188280167e-01 -1.7915485170657349800471536e-01 9.1382235545106182961205832e-01 3.4606273845302482072838757e-01
- -1.1443697419756605759832979e-01 -1.7939664961005735710486420e-01 9.1375854535873468620366111e-01 3.4607274066167259540804935e-01
- -1.1453752111063547625136039e-01 -1.7963847541764058068913812e-01 9.1369465758729029314366699e-01 3.4608271714129440477236699e-01
- -1.1463808651092276258420810e-01 -1.7988032907625242651228348e-01 9.1363069211252900814201894e-01 3.4609266788320564023351267e-01
- -1.1473867089583396350338518e-01 -1.8012221186562590857782595e-01 9.1356664856285951792358446e-01 3.4610259292197886882291868e-01
- -1.1483927683039631129080504e-01 -1.8036413015100086210118491e-01 9.1350252523620989464347986e-01 3.4611249246308956051265682e-01
- -1.1493990110129541359906824e-01 -1.8060607613215440281351221e-01 9.1343832412804415454843365e-01 3.4612236624223119418886085e-01
- -1.1504054366513241647318466e-01 -1.8084804976466195558515437e-01 9.1337404521242027133354213e-01 3.4613221425034801370657078e-01
- -1.1514120447490176768479131e-01 -1.8109005099541636285565005e-01 9.1330968846553173268176806e-01 3.4614203647858166057460494e-01
- -1.1524188348493819011864048e-01 -1.8133207977501825114430289e-01 9.1324525386275856586593136e-01 3.4615183291794954234532611e-01
- -1.1534258065180306995767268e-01 -1.8157413605999594974349520e-01 9.1318074137813154411702499e-01 3.4616160355928360381483344e-01
- -1.1544329688144586154585625e-01 -1.8181622215908421758001623e-01 9.1311615036680005008662420e-01 3.4617134847392622143402718e-01
- -1.1554403385634938461468124e-01 -1.8205834232660345062271290e-01 9.1305147966948274618204096e-01 3.4618106779958396357343986e-01
- -1.1564478882862938569076050e-01 -1.8230048983266555762128291e-01 9.1298673101662419782087454e-01 3.4619076130239301303248567e-01
- -1.1574556175340265651296789e-01 -1.8254266463195595315838204e-01 9.1292190438301523691677630e-01 3.4620042897307834461884113e-01
- -1.1584635258597093809829204e-01 -1.8278486667997972947574681e-01 9.1285699974331535599958443e-01 3.4621007080231169794615198e-01
- -1.1594716127944007522110326e-01 -1.8302709592710061925480147e-01 9.1279201707348778249695442e-01 3.4621968678087178261648660e-01
- -1.1604798778495482858286181e-01 -1.8326935231912877544147022e-01 9.1272695635066525277068195e-01 3.4622927689963051145483064e-01
- -1.1614883341781494230371408e-01 -1.8351163922076882406564380e-01 9.1266181664638579285053765e-01 3.4623884126698772911723267e-01
- -1.1624969898518412725341165e-01 -1.8375395874830061093696543e-01 9.1259659735910703126648968e-01 3.4624837995110063770809461e-01
- -1.1635058220762192759956122e-01 -1.8399630527016033743059609e-01 9.1253129994303228134100436e-01 3.4625789274925905525392977e-01
- -1.1645148303512734000442208e-01 -1.8423867873109656123631339e-01 9.1246592437588436297346561e-01 3.4626737965220222292828112e-01
- -1.1655240142008731207834415e-01 -1.8448107908220040540570039e-01 9.1240047063392604176357281e-01 3.4627684065046621109118519e-01
- -1.1665333731648687420889843e-01 -1.8472350627892439312027761e-01 9.1233493869243098561838679e-01 3.4628627573443404585873395e-01
- -1.1675429067752314538086722e-01 -1.8496596027511397197784504e-01 9.1226932852713105148723116e-01 3.4629568489450052171108041e-01
- -1.1685526319858927091210887e-01 -1.8520844544468600956221849e-01 9.1220363893352840456429931e-01 3.4630506827821633253350342e-01
- -1.1695625485629701501011368e-01 -1.8545096182972689580203962e-01 9.1213786986048872584831315e-01 3.4631442588028038542802278e-01
- -1.1705726381097063260039448e-01 -1.8569350484710980819791359e-01 9.1207202249369645485899127e-01 3.4632375753179800437209224e-01
- -1.1715829001650948648638462e-01 -1.8593607445427340341126410e-01 9.1200609680834399117799194e-01 3.4633306322289242329404146e-01
- -1.1725933342346403498446250e-01 -1.8617867060064216544468252e-01 9.1194009278165200083066111e-01 3.4634234294387783448243567e-01
- -1.1736039398146709544779043e-01 -1.8642129323371259275177181e-01 9.1187401039138826774888003e-01 3.4635159668509046815287888e-01
- -1.1746147164316587951926607e-01 -1.8666394230889571392850712e-01 9.1180784961345628936157937e-01 3.4636082443660964891307685e-01
- -1.1756256848292158390112405e-01 -1.8690662323458601123959966e-01 9.1174160895767930590238848e-01 3.4637002638508623819646459e-01
- -1.1766368378490912882661235e-01 -1.8714933428215357880119996e-01 9.1167528884864756921757589e-01 3.4637920246262893231303792e-01
- -1.1776481590569043422789264e-01 -1.8739207131430288266749074e-01 9.1160889036224268533459281e-01 3.4638835251167876538858081e-01
- -1.1786596480935397635025907e-01 -1.8763483431616739816050199e-01 9.1154241346671227574915974e-01 3.4639747652369823338602828e-01
- -1.1796713044715891050007173e-01 -1.8787762324017576176515831e-01 9.1147585813930143139316442e-01 3.4640657448857620215321163e-01
- -1.1806831277159582360702927e-01 -1.8812043804219041875924745e-01 9.1140922435647808708125694e-01 3.4641564639606897690882192e-01
- -1.1816951246731910440956881e-01 -1.8836328058250004224838392e-01 9.1134251157939605292312990e-01 3.4642469230641348421073644e-01
- -1.1827073180063604751488526e-01 -1.8860615686145162928077923e-01 9.1127571814694297014369795e-01 3.4643371243149700955399339e-01
- -1.1837196764541539628634581e-01 -1.8884905885174393946890348e-01 9.1120884619269637560989850e-01 3.4644270647069264068562688e-01
- -1.1847321995307197317615078e-01 -1.8909198650840466915390436e-01 9.1114189569367853849257699e-01 3.4645167441359897564367998e-01
- -1.1857448867514414070356565e-01 -1.8933493978712551131238229e-01 9.1107486662681558264864634e-01 3.4646061624976098869410635e-01
- -1.1867577376141950906696110e-01 -1.8957791863957232370019312e-01 9.1100775897010444204227042e-01 3.4646953196880747594121885e-01
- -1.1877707515883685618351961e-01 -1.8982092301063882566758423e-01 9.1094057270330286435466860e-01 3.4647842156053532125525862e-01
- -1.1887839591707131947639908e-01 -1.9006396103148878728994475e-01 9.1087330557773094064089037e-01 3.4648728531809458441870220e-01
- -1.1897973349451551605682198e-01 -1.9030702612761424274978594e-01 9.1080595934384134260142218e-01 3.4649612299098292433896518e-01
- -1.1908108720981117056858523e-01 -1.9055011659109025168312712e-01 9.1073853443163454990383343e-01 3.4650493450652297688918679e-01
- -1.1918245701035158623515287e-01 -1.9079323236983355971396747e-01 9.1067103082047606843474341e-01 3.4651371985423295996042725e-01
- -1.1928384284467380416216997e-01 -1.9103637341498377888449056e-01 9.1060344848900354186582717e-01 3.4652247902350136188331930e-01
- -1.1938524466354644149035380e-01 -1.9127953968362781944634321e-01 9.1053578741443719213322083e-01 3.4653121200350128772171843e-01
- -1.1948666412379413404032391e-01 -1.9152273569477643033742709e-01 9.1046804632477962293535256e-01 3.4653991895609326245875081e-01
- -1.1958810136837121074204759e-01 -1.9176596205251109084066741e-01 9.1040022502428752382286348e-01 3.4654859988883218724353696e-01
- -1.1968955432142963646313660e-01 -1.9200921351130356695691148e-01 9.1033232492930782342455132e-01 3.4655725457983033166442510e-01
- -1.1979102299024441125041562e-01 -1.9225248999383745540647794e-01 9.1026434601171402061225990e-01 3.4656588303234209247349895e-01
- -1.1989250735848806794781041e-01 -1.9249579143968417738186361e-01 9.1019628824531395583363746e-01 3.4657448524344341977965200e-01
- -1.1999400737527891880329634e-01 -1.9273911780423813588924986e-01 9.1012815160824755977841960e-01 3.4658306120210280454330132e-01
- -1.2009552335799808520100385e-01 -1.9298247004217342071008545e-01 9.1005993580341926207921688e-01 3.4659161093607981918296446e-01
- -1.2019705810073563756468218e-01 -1.9322585584864568342133850e-01 9.0999163867649579540142213e-01 3.4660013472927669875289780e-01
- -1.2029860830533327387126263e-01 -1.9346926640705697231226168e-01 9.0992326261801959041974897e-01 3.4660863223857246717685143e-01
- -1.2040017392159174658416987e-01 -1.9371270167645424087332628e-01 9.0985480760557480017780563e-01 3.4661710345261659282911637e-01
- -1.2050175489520272009702495e-01 -1.9395616160597481392180441e-01 9.0978627361933472883492868e-01 3.4662554836032893890163109e-01
- -1.2060335117141757210745823e-01 -1.9419964614402723812602858e-01 9.0971766063973824589794503e-01 3.4663396695061599039888733e-01
- -1.2070496269823471902071788e-01 -1.9444315524626962221610427e-01 9.0964896864546063159906453e-01 3.4664235921211783431061804e-01
- -1.2080659203266011503252741e-01 -1.9468669606232857915983914e-01 9.0958019562342895536488641e-01 3.4665072541022307062164032e-01
- -1.2090823740111819595277609e-01 -1.9493026385408024347967171e-01 9.0951134284807999552668889e-01 3.4665906535530854881699270e-01
- -1.2100989792142474721359235e-01 -1.9517385629818595482731780e-01 9.0944241092882904808902822e-01 3.4666737894803506536689497e-01
- -1.2111157330531267806161821e-01 -1.9541747269915246687510546e-01 9.0937340002512745407159400e-01 3.4667566615228079252020166e-01
- -1.2121326354175013251257553e-01 -1.9566111312617967543658892e-01 9.0930431008472156761968108e-01 3.4668392696104483041708022e-01
- -1.2131496857952091261712013e-01 -1.9590477753730584087321631e-01 9.0923514108637171204918559e-01 3.4669216136257585691993199e-01
- -1.2141669092038327726346125e-01 -1.9614847304200797029061221e-01 9.0916589101882949730537575e-01 3.4670036962364347843390533e-01
- -1.2151842918634059298454986e-01 -1.9639219594022311321523944e-01 9.0909656087524248757603118e-01 3.4670855159148844526484368e-01
- -1.2162018205918476154714369e-01 -1.9663594265662862059507177e-01 9.0902715161673086630145235e-01 3.4671670711836644063197355e-01
- -1.2172194948625443544631963e-01 -1.9687971314759600272026319e-01 9.0895766322286108973571572e-01 3.4672483619236454943646208e-01
- -1.2182373141358925072719188e-01 -1.9712350736660019800972066e-01 9.0888809567402051303730559e-01 3.4673293880162586733106878e-01
- -1.2192552778416951286821757e-01 -1.9736732525981684482907497e-01 9.0881844895255792238231152e-01 3.4674101493449616118169843e-01
- -1.2202734132259290822375419e-01 -1.9761117469058686602068065e-01 9.0874872082805591144705204e-01 3.4674906488773432622352288e-01
- -1.2212917013308571823060333e-01 -1.9785505043272835767886875e-01 9.0867891272546486014505263e-01 3.4675708844799923991075730e-01
- -1.2223101319198922953823683e-01 -1.9809894969203686865277803e-01 9.0860902539288446178034064e-01 3.4676508549674445180954763e-01
- -1.2233287044543741939328640e-01 -1.9834287242455203581492640e-01 9.0853905881050589510294913e-01 3.4677305602177066479185896e-01
- -1.2243474183854904935309094e-01 -1.9858681858413110288275050e-01 9.0846901295916193674884198e-01 3.4678100001091127779773160e-01
- -1.2253662731322230439179322e-01 -1.9883078811693327692111666e-01 9.0839888782176447801219865e-01 3.4678891745221812614730084e-01
- -1.2263852980104268663996692e-01 -1.9907478962589791882109580e-01 9.0832868095106022998663775e-01 3.4679680867238471542179923e-01
- -1.2274044690736343743431291e-01 -1.9931881636002177216049347e-01 9.0825839420686760306011820e-01 3.4680467339784076807873703e-01
- -1.2284237789877769375657124e-01 -1.9956286631618513904840029e-01 9.0818802811965049226472502e-01 3.4681251153899217420928380e-01
- -1.2294432271764077491127409e-01 -1.9980693944368496661745382e-01 9.0811758267190534343882291e-01 3.4682032308355809080424592e-01
- -1.2304628130675387964743095e-01 -2.0005103569329715784697044e-01 9.0804705784582628869117116e-01 3.4682810801916980070203067e-01
- -1.2314825361213835308582532e-01 -2.0029515502421862960247267e-01 9.0797645362148560188586544e-01 3.4683586633313345792828386e-01
- -1.2325024274892702746964090e-01 -2.0053930674676323508975884e-01 9.0790576734203753961338634e-01 3.4684359838250494734168683e-01
- -1.2335224586260888635091959e-01 -2.0078348263470424672760828e-01 9.0783500129232697073433656e-01 3.4685130383247891883158331e-01
- -1.2345426248635234245387693e-01 -2.0102768143845342607711757e-01 9.0776415579308289416360367e-01 3.4685898262363401567398569e-01
- -1.2355629256385609882062937e-01 -2.0127190311341339179485033e-01 9.0769323082577246797342241e-01 3.4686663474316853372769742e-01
- -1.2365833603836916265716894e-01 -2.0151614761422706467719479e-01 9.0762222637214229337132565e-01 3.4687426017826505919572355e-01
- -1.2376039284932421891127774e-01 -2.0176041488635398923889852e-01 9.0755114241643841666018488e-01 3.4688185891638245728074708e-01
- -1.2386246629659855567062721e-01 -2.0200471497795519093543248e-01 9.0747997608325270402218621e-01 3.4688943134309879745558192e-01
- -1.2396455307925398348078971e-01 -2.0224903817114850412828275e-01 9.0740873008951150602285907e-01 3.4689697706386329878469610e-01
- -1.2406665299197701390898629e-01 -2.0249338397990973570372830e-01 9.0733740454186861956742405e-01 3.4690449604892553692181423e-01
- -1.2416876602379861571634478e-01 -2.0273775250086947807837134e-01 9.0726599938230245712134092e-01 3.4691198829076996812403877e-01
- -1.2427089190212285696457428e-01 -2.0298214303546341374939743e-01 9.0719451477845047815407042e-01 3.4691945375039667798233722e-01
- -1.2437303131031114677984561e-01 -2.0322655780019016624748929e-01 9.0712295007040466554570912e-01 3.4692689250465552630586785e-01
- -1.2447518658818812475885807e-01 -2.0347100412996285689892773e-01 9.0705130314290127735432634e-01 3.4693430483154208410212505e-01
- -1.2457735457030900960706532e-01 -2.0371547252210361889090962e-01 9.0697957666299300338863532e-01 3.4694169034518962391189234e-01
- -1.2467953520096883290868561e-01 -2.0395996293573934177167928e-01 9.0690777061234739697681562e-01 3.4694904903207934854236782e-01
- -1.2478172842179474644197512e-01 -2.0420447532365762488559824e-01 9.0683588497439326925331216e-01 3.4695638087887720191204721e-01
- -1.2488393417259043005618224e-01 -2.0444900963442286245808077e-01 9.0676391973376679889184970e-01 3.4696368587236148250951828e-01
- -1.2498615467646220777986343e-01 -2.0469357294408094261051190e-01 9.0669187284402175119879530e-01 3.4697096427969015275394327e-01
- -1.2508838895107296518283135e-01 -2.0493816240629408875761897e-01 9.0661974508390597016216361e-01 3.4697821597781874913835054e-01
- -1.2519063554428327966761003e-01 -2.0518277364076537017112400e-01 9.0654753767180440426898258e-01 3.4698544078143844782147198e-01
- -1.2529289439561988594995512e-01 -2.0542740659738084607610631e-01 9.0647525059242128886438650e-01 3.4699263867703267205655493e-01
- -1.2539516544514173190805195e-01 -2.0567206122770201326410699e-01 9.0640288383009537387380306e-01 3.4699980965098631280341124e-01
- -1.2549744886363281559660265e-01 -2.0591673821505715458179964e-01 9.0633043716024186409185859e-01 3.4700695371781331566296558e-01
- -1.2559974770211027039756857e-01 -2.0616144746370709817107070e-01 9.0625790772091918690023249e-01 3.4701407125668187747535853e-01
- -1.2570205852401000745643955e-01 -2.0640617823569137878614299e-01 9.0618529855102436521008258e-01 3.4702116183159953388681629e-01
- -1.2580438126675230758877433e-01 -2.0665093047799590331159436e-01 9.0611260963655215761036743e-01 3.4702822542886274659323931e-01
- -1.2590671587064672376499175e-01 -2.0689570414518654306590406e-01 9.0603984096154110972065610e-01 3.4703526203445228537347589e-01
- -1.2600906227706901163720943e-01 -2.0714049919484442408013081e-01 9.0596699250929713098656748e-01 3.4704227163419670842969822e-01
- -1.2611142218727516839393843e-01 -2.0738532132050643830289971e-01 9.0589406261840055289980000e-01 3.4704925444009060431227454e-01
- -1.2621379547676422894220138e-01 -2.0763017034840736130263394e-01 9.0582105130818024729677518e-01 3.4705621043194739838710916e-01
- -1.2631618034453942489570011e-01 -2.0787504059514666510111169e-01 9.0574796017879699583374986e-01 3.4706313937478378006673552e-01
- -1.2641857673115633464711038e-01 -2.0811993201830006339214663e-01 9.0567478921398658631147782e-01 3.4707004125416546225224579e-01
- -1.2652098457587854229977609e-01 -2.0836484457255621816074154e-01 9.0560153839834744982084658e-01 3.4707691605572293935821904e-01
- -1.2662340381475881145867390e-01 -2.0860977820491735656993626e-01 9.0552820771865027982272522e-01 3.4708376376533195406537402e-01
- -1.2672583760476732739341799e-01 -2.0885474361560088518707801e-01 9.0545479407010931449661939e-01 3.4709058478744131415183460e-01
- -1.2682828280378594110189283e-01 -2.0909973058740174978176185e-01 9.0538130036000397105055981e-01 3.4709737871056800528890562e-01
- -1.2693073917403099870604422e-01 -2.0934473848751841695836617e-01 9.0530772674232384833459264e-01 3.4710414549666906980363024e-01
- -1.2703320665264741795574821e-01 -2.0958976726774833365674056e-01 9.0523407320297599731873106e-01 3.4711088513117238640859341e-01
- -1.2713568518959492137376799e-01 -2.0983481692466460222235014e-01 9.0516033971503451205364854e-01 3.4711759760134303087752983e-01
- -1.2723817609088008961926164e-01 -2.1007989207767113759572908e-01 9.0508652491950047913604749e-01 3.4712428307285420059358216e-01
- -1.2734067983526606293587236e-01 -2.1032499462102463572144018e-01 9.0501262824130523920729274e-01 3.4713094160636737139924435e-01
- -1.2744319430539460813456287e-01 -2.1057011752812485050334601e-01 9.0493865167754228284735518e-01 3.4713757291520724868050252e-01
- -1.2754571943837844649749513e-01 -2.1081526074944939574962177e-01 9.0486459521507933700945614e-01 3.4714417698463412298437447e-01
- -1.2764825517204769766976824e-01 -2.1106042423758925030696787e-01 9.0479045884028741486559966e-01 3.4715075379979093428417514e-01
- -1.2775080212611525376509292e-01 -2.1130561032224237649757015e-01 9.0471624185325694167403299e-01 3.4715730343663836476864049e-01
- -1.2785336236474786897332478e-01 -2.1155082646759232334332523e-01 9.0464194207009962500620759e-01 3.4716382616935470561969623e-01
- -1.2795593297497728779710258e-01 -2.1179606273045259445808597e-01 9.0456756233477186857072638e-01 3.4717032160037869514823683e-01
- -1.2805851389247213667488268e-01 -2.1204131906001727481125840e-01 9.0449310263502025186710398e-01 3.4717678971471310767071827e-01
- -1.2816110505469527347521819e-01 -2.1228659541029262780575948e-01 9.0441856295734934789720683e-01 3.4718323049713845085406660e-01
- -1.2826370640156020686006855e-01 -2.1253189174174111353288197e-01 9.0434394328655853811937959e-01 3.4718964393214396535469746e-01
- -1.2836632110650575411270324e-01 -2.1277721965213666766025824e-01 9.0426924023951504860718842e-01 3.4719603044870528396614873e-01
- -1.2846894598228250639060377e-01 -2.1302256800139515724445971e-01 9.0419445701239942181359766e-01 3.4720238960632865410360637e-01
- -1.2857158080445907355482404e-01 -2.1326793617027789418116868e-01 9.0411959375794803683845657e-01 3.4720872136810720931521246e-01
- -1.2867422551012655529412143e-01 -2.1351332411420767543042132e-01 9.0404465046280046980342604e-01 3.4721502571844953255464361e-01
- -1.2877688003775253355875918e-01 -2.1375873179237614429837322e-01 9.0396962711262884848650856e-01 3.4722130264157519130563401e-01
- -1.2887954667874165770591333e-01 -2.1400416785066680991356236e-01 9.0389452117490520777209895e-01 3.4722755244999570223285446e-01
- -1.2898222391773664363689988e-01 -2.1424962701935809650244380e-01 9.0381933415043558266432910e-01 3.4723377492859808235436958e-01
- -1.2908491073696676254556337e-01 -2.1449510576104749426384899e-01 9.0374406703856435818522641e-01 3.4723996993027927970842939e-01
- -1.2918760707315124491856295e-01 -2.1474060403258865559195101e-01 9.0366871982606544744243138e-01 3.4724613743906795892968375e-01
- -1.2929031286330719408006473e-01 -2.1498612179190096371783625e-01 9.0359329249949482676385060e-01 3.4725227743890801912485244e-01
- -1.2939302956167708646972869e-01 -2.1523166475125257712797122e-01 9.0351778337479815572663711e-01 3.4725839012865766797233391e-01
- -1.2949575723367984236844563e-01 -2.1547723347491737344583385e-01 9.0344219226223587693169748e-01 3.4726447551236411248609670e-01
- -1.2959849411443943867361384e-01 -2.1572282152543928446242205e-01 9.0336652100508252338784132e-01 3.4727053333611107577283406e-01
- -1.2970124014029876802212016e-01 -2.1596842886110262371701651e-01 9.0329076959024889870164543e-01 3.4727656358353886645318198e-01
- -1.2980399524682220691040868e-01 -2.1621405543856087039245040e-01 9.0321493800518348749051256e-01 3.4728256623831027516402514e-01
- -1.2990676009706722537906387e-01 -2.1645970405460504548678102e-01 9.0313902541172741411656943e-01 3.4728854138890224989566491e-01
- -1.3000953624389791074555944e-01 -2.1670538107141215644624310e-01 9.0306302993532716616442713e-01 3.4729448925136624515275230e-01
- -1.3011232122267540889382076e-01 -2.1695107716944075915144197e-01 9.0298695426005493036569760e-01 3.4730040946882895225300558e-01
- -1.3021511500996230115134722e-01 -2.1719679246976014708181424e-01 9.0291079832603604593543878e-01 3.4730630203039902781370074e-01
- -1.3031791737020018140391642e-01 -2.1744252625300200532088013e-01 9.0283456231788794532633347e-01 3.4731216689496197114195297e-01
- -1.3042072869578566485238014e-01 -2.1768828030756226521447161e-01 9.0275824569059404112181255e-01 3.4731800411271152029257792e-01
- -1.3052355132857054731410074e-01 -2.1793406435483450578338704e-01 9.0268184559082864648615896e-01 3.4732381401668460663145765e-01
- -1.3062638232942841431949432e-01 -2.1817986690605944977150443e-01 9.0260536533756663413186061e-01 3.4732959617662623186262749e-01
- -1.3072922163555394936551579e-01 -2.1842568792190561466348697e-01 9.0252880491812381702487755e-01 3.4733535057558984071590658e-01
- -1.3083206918234763227459894e-01 -2.1867152735882139369394395e-01 9.0245216432108799065048288e-01 3.4734107719676626802041142e-01
- -1.3093492541905399351165329e-01 -2.1891738730752705044402262e-01 9.0237544291345594960063181e-01 3.4734677609947289811387350e-01
- -1.3103779236641566185994634e-01 -2.1916327648304456676697782e-01 9.0229863813332944477707542e-01 3.4735244757406280591283121e-01
- -1.3114066730024848128621784e-01 -2.1940918392075187126621927e-01 9.0222175315058905642473519e-01 3.4735809121589883430303303e-01
- -1.3124355015678665359324384e-01 -2.1965510958118311668485489e-01 9.0214478795312202930034573e-01 3.4736370700770996533535140e-01
- -1.3134644087064650808116539e-01 -2.1990105342109564356967155e-01 9.0206774252996813068250503e-01 3.4736929493234386390199120e-01
- -1.3144933998505967109871051e-01 -2.2014701801080649445907511e-01 9.0199061610849395886901902e-01 3.4737485506389431666462997e-01
- -1.3155224921526023629247959e-01 -2.2039301106521491657730394e-01 9.0191340641739481398531098e-01 3.4738038765103806948530973e-01
- -1.3165516604509097664532646e-01 -2.2063902214060499007430849e-01 9.0183611647751238393766471e-01 3.4738589231463645745634494e-01
- -1.3175809040982205955216955e-01 -2.2088505119737336657159688e-01 9.0175874627731233967864455e-01 3.4739136903708611736618650e-01
- -1.3186102222962822749785516e-01 -2.2113109819839554814890903e-01 9.0168129581148848128435702e-01 3.4739681778888525931492381e-01
- -1.3196396208903951596802528e-01 -2.2137716620921896182316857e-01 9.0160376418533205722383173e-01 3.4740223861941199601233166e-01
- -1.3206691139407997215293733e-01 -2.2162326195918893856351417e-01 9.0152614942463837888197986e-01 3.4740763171954308630162700e-01
- -1.3216986790353496550309842e-01 -2.2186937549557486648588167e-01 9.0144845437261778009485624e-01 3.4741299679888837381724898e-01
- -1.3227283155381061585664781e-01 -2.2211550676915961521906695e-01 9.0137067901852097051573764e-01 3.4741833384423909114602225e-01
- -1.3237580227753134587409534e-01 -2.2236165573608043799502809e-01 9.0129282335263638525901797e-01 3.4742364283785037715190924e-01
- -1.3247878078480820884799130e-01 -2.2260782593107789062436552e-01 9.0121488632166413257351678e-01 3.4742892387974799728311837e-01
- -1.3258176822017847529266987e-01 -2.2285402306663065763459031e-01 9.0113686623823807675393027e-01 3.4743417714001095797371477e-01
- -1.3268476246922286665430590e-01 -2.2310023774939996554778077e-01 9.0105876582035648869606348e-01 3.4743940228900843658621511e-01
- -1.3278776346200002467234924e-01 -2.2334646993109302792746007e-01 9.0098058506006351020545253e-01 3.4744459930887583443137601e-01
- -1.3289077114159095205359051e-01 -2.2359271962402868516583965e-01 9.0090232393182712034018778e-01 3.4744976818348466407471165e-01
- -1.3299378633090477852540801e-01 -2.2383899105349883140725353e-01 9.0082398118139406228976895e-01 3.4745490903140952010375031e-01
- -1.3309680981003174649046628e-01 -2.2408528843859476520350427e-01 9.0074555555794555417037373e-01 3.4746002196855968469080267e-01
- -1.3319983962817821820934228e-01 -2.2433160278090386041682791e-01 9.0066704966495980677620992e-01 3.4746510668640590013822589e-01
- -1.3330287571739743435195180e-01 -2.2457793403407325105725079e-01 9.0058846349439825029747908e-01 3.4747016316693829507400437e-01
- -1.3340591800967019353585385e-01 -2.2482428215180405572937161e-01 9.0050979703828692990441596e-01 3.4747519139211463512495470e-01
- -1.3350896820138144494016785e-01 -2.2507065591723487973929707e-01 9.0043104771430393373776724e-01 3.4748019161803928023246613e-01
- -1.3361202541417804834367189e-01 -2.2531705148561334550727508e-01 9.0035221662442277423821224e-01 3.4748516370348658810485176e-01
- -1.3371508856485114780099366e-01 -2.2556346377342154085887671e-01 9.0027330523026161124278133e-01 3.4749010747129321918791334e-01
- -1.3381815758600826282709306e-01 -2.2580989273785695425900144e-01 9.0019431352329504214537792e-01 3.4749502290295847251044847e-01
- -1.3392123240897352287603894e-01 -2.2605633833313523717301052e-01 9.0011524149594912547200920e-01 3.4749990998008362108606661e-01
- -1.3402431537705583597386294e-01 -2.2630281317436412580335059e-01 9.0003608545100366455926633e-01 3.4750476906528088294479062e-01
- -1.3412740416905130635960575e-01 -2.2654930569960610164947923e-01 8.9995684874024040045270567e-01 3.4750959978601264621644873e-01
- -1.3423049849155013757417976e-01 -2.2679581470433704537548181e-01 8.9987753169431228261743172e-01 3.4751440208868794590202356e-01
- -1.3433359827607768699486712e-01 -2.2704234014519997231218440e-01 8.9979813430541399910111977e-01 3.4751917595449199893664627e-01
- -1.3443670395481183144070769e-01 -2.2728888469752156487047046e-01 8.9971865577372645006448693e-01 3.4752392144346244684527392e-01
- -1.3453981695045597044568808e-01 -2.2753545665809651876720920e-01 8.9963909366393246536119932e-01 3.4752863877652928614736538e-01
- -1.3464293513663871948438100e-01 -2.2778204491048112401152537e-01 8.9955945119605729143330564e-01 3.4753332760763916420287956e-01
- -1.3474605844263778942071497e-01 -2.2802864940759734468933573e-01 8.9947972836387257711265875e-01 3.4753798791783130361920939e-01
- -1.3484918679845689370999651e-01 -2.2827527010443376953574557e-01 8.9939992516062106098218010e-01 3.4754261968802058202498984e-01
- -1.3495232128046977249091753e-01 -2.2852191352161438375745206e-01 8.9932003966848594878058520e-01 3.4754722308213864545578531e-01
- -1.3505546187467265539794425e-01 -2.2876858022299298434099057e-01 8.9924007170668052157935790e-01 3.4755179809280123404136020e-01
- -1.3515860724372813495008927e-01 -2.2901526298022328864689712e-01 8.9916002336072498035690614e-01 3.4755634449679612130168493e-01
- -1.3526175731757028586343949e-01 -2.2926196175004873167857511e-01 8.9907989462382720269317815e-01 3.4756086227463800497616830e-01
- -1.3536491202514674969670239e-01 -2.2950867648696951506259722e-01 8.9899968548994158012988009e-01 3.4756535140691158236592173e-01
- -1.3546807300334870460822856e-01 -2.2975541751927686107137561e-01 8.9891939293709743896698683e-01 3.4756981215131776963289667e-01
- -1.3557123896347303415588215e-01 -2.3000217774563319617087132e-01 8.9883901901469298589830714e-01 3.4757424429160432843843864e-01
- -1.3567440927614093926223404e-01 -2.3024895378877130447392574e-01 8.9875856468632053797307435e-01 3.4757864771837143624821920e-01
- -1.3577758388440555603615678e-01 -2.3049574569205408258731893e-01 8.9867802992060163980170273e-01 3.4758302241393163045657388e-01
- -1.3588076282571062702864140e-01 -2.3074255409135679961707410e-01 8.9859741451396379918747925e-01 3.4758736837537712593970696e-01
- -1.3598394790726514580470052e-01 -2.3098939112578498189520815e-01 8.9851671492423057507892281e-01 3.4759168589116512526615566e-01
- -1.3608713693264315458542058e-01 -2.3123624342587575930529908e-01 8.9843593501893281860759544e-01 3.4759597459467422853052199e-01
- -1.3619032983154372162815093e-01 -2.3148311094550874655872974e-01 8.9835507479300391597831776e-01 3.4760023446629212395819764e-01
- -1.3629352653442849963028038e-01 -2.3172999364066551586383014e-01 8.9827413424082291903971509e-01 3.4760446548628576302064630e-01
- -1.3639672824506712811576392e-01 -2.3197690009632401797468049e-01 8.9819311085431841057413749e-01 3.4760866784299759846277311e-01
- -1.3649993444983499202294297e-01 -2.3222382766127622200080793e-01 8.9811200538888669164805378e-01 3.4761284144560777864541024e-01
- -1.3660314417386767993356500e-01 -2.3247077025411380657438087e-01 8.9803081959138231216144277e-01 3.4761698612597019542036492e-01
- -1.3670635734864952648415226e-01 -2.3271772783521427196973264e-01 8.9794955345534455126710327e-01 3.4762110186383421428502061e-01
- -1.3680957407707372563976378e-01 -2.3296470158736448663461260e-01 8.9786820662027222450518593e-01 3.4762518866683994600563778e-01
- -1.3691279594304067712684514e-01 -2.3321170362584869861777292e-01 8.9778677556280506166785926e-01 3.4762924678963658120522950e-01
- -1.3701602097437001748225782e-01 -2.3345872051070584718424072e-01 8.9770526416106499745239944e-01 3.4763327589770215420017507e-01
- -1.3711924909929326665825045e-01 -2.3370575219593794913386375e-01 8.9762367241099327852538181e-01 3.4763727597077181963314274e-01
- -1.3722248024685776424114181e-01 -2.3395279863779211426688676e-01 8.9754200030793018783015214e-01 3.4764124698845083605291961e-01
- -1.3732571543868157815104780e-01 -2.3419986823286076393912936e-01 8.9746024540774260724873557e-01 3.4764518911044833826551326e-01
- -1.3742895424406492699276328e-01 -2.3444695862886910653344330e-01 8.9737840837864757403963267e-01 3.4764910225809808608232743e-01
- -1.3753219578116029908620987e-01 -2.3469406363470429743856016e-01 8.9729649099454689142874031e-01 3.4765298627671115117010459e-01
- -1.3763543998003291424225836e-01 -2.3494118321098758639386972e-01 8.9721449324994317908732455e-01 3.4765684114536254956107086e-01
- -1.3773868690167886952302467e-01 -2.3518831839222562041236131e-01 8.9713241482947725380370230e-01 3.4766066686450081135717483e-01
- -1.3784193793009250073033911e-01 -2.3543548151280863089951367e-01 8.9705025216136835553015771e-01 3.4766446365674785745625286e-01
- -1.3794519132872079536511478e-01 -2.3568265906285695843180861e-01 8.9696800913081842221430406e-01 3.4766823122373430310361186e-01
- -1.3804844702433671788099900e-01 -2.3592985099651433977818726e-01 8.9688568573478955059385953e-01 3.4767196954452356250087064e-01
- -1.3815170494457956751332972e-01 -2.3617705727028856510507637e-01 8.9680328196959946396304986e-01 3.4767567859804071606077969e-01
- -1.3825496593059141692272362e-01 -2.3642428609454138599410555e-01 8.9672079545610761108775932e-01 3.4767935851411035930169646e-01
- -1.3835822962283439441222299e-01 -2.3667153540787563836822471e-01 8.9663822677787619053191293e-01 3.4768300922527106688875165e-01
- -1.3846149524476356051927439e-01 -2.3691879892085204728502390e-01 8.9655557773066596460864730e-01 3.4768663059214305333100015e-01
- -1.3856476272431406115970276e-01 -2.3716607659253469142512927e-01 8.9647284831050633169269304e-01 3.4769022259319670720145723e-01
- -1.3866803208249464662848993e-01 -2.3741336930287204598499784e-01 8.9639003824905949535661875e-01 3.4769378522268151732177444e-01
- -1.3877130448853286504018456e-01 -2.3766068960748096272617147e-01 8.9630714392906973841945728e-01 3.4769731866605141368253840e-01
- -1.3887457847503123509191880e-01 -2.3790802415301157135552046e-01 8.9622416917437419670022791e-01 3.4770082266899438039331471e-01
- -1.3897785389844724557306677e-01 -2.3815537218834240129616830e-01 8.9614111418534270203650749e-01 3.4770429719844814231421992e-01
- -1.3908113069817243379056038e-01 -2.3840273376937151650345470e-01 8.9605797893046590374410698e-01 3.4770774223485029219560261e-01
- -1.3918440977839585670494671e-01 -2.3865011955677081778581794e-01 8.9597476034221368301757593e-01 3.4771115791687118301567239e-01
- -1.3928769045151376260172071e-01 -2.3889752354577975523852729e-01 8.9589146013273079915961716e-01 3.4771454412149715995639099e-01
- -1.3939097220085772121933587e-01 -2.3914494093686608500171076e-01 8.9580807966254272223238786e-01 3.4771790075362846161866059e-01
- -1.3949425495654027562508759e-01 -2.3939237169076102440534726e-01 8.9572461892789034809680970e-01 3.4772122779157177419051550e-01
- -1.3959753913017150517283937e-01 -2.3963982161081079369502334e-01 8.9564107625639743925916036e-01 3.4772452529181968605698216e-01
- -1.3970082489136401160401135e-01 -2.3988729436778033488053552e-01 8.9555745059226743443048235e-01 3.4772779327263608761811042e-01
- -1.3980411135785772436257446e-01 -2.4013478034876326039359640e-01 8.9547374466920059976615676e-01 3.4773103157815909991512626e-01
- -1.3990739845800531648833953e-01 -2.4038227951171567409183183e-01 8.9538995848477542782717364e-01 3.4773424018652060452083674e-01
- -1.4001068619253689839787569e-01 -2.4062979281508897755337273e-01 8.9530609175174069580549485e-01 3.4773741908785987808627738e-01
- -1.4011397542563647222735312e-01 -2.4087733358495067026439074e-01 8.9522214066557692646597388e-01 3.4774056840922468181176441e-01
- -1.4021726498661346571594777e-01 -2.4112488739323037489903356e-01 8.9513810932694848343516014e-01 3.4774368795112881036502017e-01
- -1.4032055480306243611110517e-01 -2.4137245419762939913077560e-01 8.9505399773400318164107148e-01 3.4774677769140205363385121e-01
- -1.4042384480304101468384204e-01 -2.4162003395714781728287335e-01 8.9496980588455077310072738e-01 3.4774983760779520913786200e-01
- -1.4052713562637492161755404e-01 -2.4186763816402592763843415e-01 8.9488553050462316118540684e-01 3.4775286778840763801667890e-01
- -1.4063042664148331373219492e-01 -2.4211525903051447916602967e-01 8.9480117379989498882508769e-01 3.4775586812238218348269925e-01
- -1.4073371753315766508052320e-01 -2.4236289271427477465259415e-01 8.9471673684810448801130178e-01 3.4775883854813260942506759e-01
- -1.4083700822987083034476541e-01 -2.4261053917701058679767812e-01 8.9463221964670081032267035e-01 3.4776177904294891529701772e-01
- -1.4094029900925764131613960e-01 -2.4285820507857922012640017e-01 8.9454762029912304743817231e-01 3.4776468963707030113141627e-01
- -1.4104358982823386736704663e-01 -2.4310589224715647982399958e-01 8.9446293828389322744243373e-01 3.4776757031043492585098420e-01
- -1.4114688014062229393097425e-01 -2.4335359205222054090889117e-01 8.9437817603186198223141901e-01 3.4777042096729565701096476e-01
- -1.4125016987304270243974713e-01 -2.4360130445243305397085010e-01 8.9429333354192386273950888e-01 3.4777324158477651572241029e-01
- -1.4135345903280072121788180e-01 -2.4384903130628707290661339e-01 8.9420841027764164099522759e-01 3.4777603215170110884102428e-01
- -1.4145674799187721304427612e-01 -2.4409678402454829115875157e-01 8.9412340301656523244844266e-01 3.4777879270380007703522551e-01
- -1.4156003605514311249891080e-01 -2.4434454919191131438971354e-01 8.9403831553344681459805088e-01 3.4778152312965882053674704e-01
- -1.4166332315066038072259857e-01 -2.4459232677232337072048551e-01 8.9395314782601265068961993e-01 3.4778422340580034122226039e-01
- -1.4176660920639899687856200e-01 -2.4484011672962757710791948e-01 8.9386789989208392803732295e-01 3.4778689350873798202812281e-01
- -1.4186989452664450217511671e-01 -2.4508793136334824924738029e-01 8.9378256826987434457976178e-01 3.4778953345944857433735820e-01
- -1.4197317865802416836373823e-01 -2.4533576113891059078397916e-01 8.9369715563358353982437166e-01 3.4779214318407314365799721e-01
- -1.4207646143142005357162816e-01 -2.4558360314790467215928516e-01 8.9361166278822068420595315e-01 3.4779472264669308856355201e-01
- -1.4217974277428488405483620e-01 -2.4583145740004222479235807e-01 8.9352608971937363957493972e-01 3.4779727182370956395374151e-01
- -1.4228302277508095285973866e-01 -2.4607933162639586410769255e-01 8.9344043425526542545611619e-01 3.4779979070444355659930125e-01
- -1.4238630127819246196096969e-01 -2.4632722528116854365798361e-01 8.9335469654706189945869710e-01 3.4780227924914952630786047e-01
- -1.4248957802275830086813357e-01 -2.4657513059454042037010879e-01 8.9326887875774774183668114e-01 3.4780473741750261851279902e-01
- -1.4259285293715390219304595e-01 -2.4682304752578956841269076e-01 8.9318298088707470672176214e-01 3.4780716518640686363283976e-01
- -1.4269612601994266509741749e-01 -2.4707098220843992653072974e-01 8.9309700121657042970468865e-01 3.4780956253016814816447777e-01
- -1.4279939717468506654718396e-01 -2.4731893842233845792755176e-01 8.9301093869293113325369404e-01 3.4781192940864530394051712e-01
- -1.4290266617988592323662544e-01 -2.4756690611344708830010575e-01 8.9292479610801045453172264e-01 3.4781426579650814856492502e-01
- -1.4300593296472446924738620e-01 -2.4781488524455527744372318e-01 8.9283857346091732853921030e-01 3.4781657167017021592414494e-01
- -1.4310919746611491798482518e-01 -2.4806287965315504395746871e-01 8.9275226967684895296173408e-01 3.4781884699599541210801590e-01
- -1.4321245955812711425636508e-01 -2.4831089768097508452271427e-01 8.9266588244306310784281777e-01 3.4782109171573810657562831e-01
- -1.4331571910752205489814060e-01 -2.4855892700762030611549847e-01 8.9257941516928906988681547e-01 3.4782330582864134926879274e-01
- -1.4341897604351169781544684e-01 -2.4880696759742756962729970e-01 8.9249286785461512394590500e-01 3.4782548931072848619194815e-01
- -1.4352223028276503424827126e-01 -2.4905502099252430081577359e-01 8.9240624006279467561597585e-01 3.4782764213049555124257495e-01
- -1.4362548158165563960686484e-01 -2.4930310008476816441280732e-01 8.9231952823597038282343874e-01 3.4782976419118755151416167e-01
- -1.4372872994492585929648953e-01 -2.4955119030585079520356828e-01 8.9223273639018485514640133e-01 3.4783185552653872463224616e-01
- -1.4383197529953686832904225e-01 -2.4979929161585487373820058e-01 8.9214586452636546187733302e-01 3.4783391611249542263450962e-01
- -1.4393521757221977575014193e-01 -2.5004740397433966592188881e-01 8.9205891264566627985033165e-01 3.4783594592503375153569323e-01
- -1.4403845635193926466577352e-01 -2.5029554268673565031733119e-01 8.9197187654354492813979505e-01 3.4783794482242780254921399e-01
- -1.4414169178434171891822757e-01 -2.5054369306056611943489543e-01 8.9188476025326690610484093e-01 3.4783991286954640820283657e-01
- -1.4424492380807291125321967e-01 -2.5079185434457418324427636e-01 8.9179756397174403392824615e-01 3.4784185004693801701591838e-01
- -1.4434815235375458852828956e-01 -2.5104002649657042312014710e-01 8.9171028770186955281218388e-01 3.4784375632646857834373577e-01
- -1.4445137699944624043446595e-01 -2.5128822251176685664830757e-01 8.9162292790058239599915169e-01 3.4784563149741248855306708e-01
- -1.4455459782211535491036614e-01 -2.5153643228297384304426032e-01 8.9153548731970844176686342e-01 3.4784747567353341279883239e-01
- -1.4465781483309395061276348e-01 -2.5178465278659273307582112e-01 8.9144796677648541205485344e-01 3.4784928885786126073753621e-01
- -1.4476102795873044271068864e-01 -2.5203288398414741555697560e-01 8.9136036627239723095783575e-01 3.4785107102566620307371181e-01
- -1.4486423667065581599722179e-01 -2.5228113658839368405040204e-01 8.9127268289189343075662464e-01 3.4785282201842632199273453e-01
- -1.4496744103515363244483183e-01 -2.5252940503782228542917210e-01 8.9118491815044054149552721e-01 3.4785454185931752313365450e-01
- -1.4507064118252457896041108e-01 -2.5277768404418199388317134e-01 8.9109707347723610126877247e-01 3.4785623058449904876354708e-01
- -1.4517383703889993884494913e-01 -2.5302597356985745413737732e-01 8.9100914887396986951983990e-01 3.4785788816887974750358126e-01
- -1.4527702808341755313925603e-01 -2.5327428203905483217184269e-01 8.9092114205896832945796859e-01 3.4785951446121893271268277e-01
- -1.4538021420386984527972629e-01 -2.5352260842855117717320468e-01 8.9083305331494710976869555e-01 3.4786110943189579858270122e-01
- -1.4548339570075985438535326e-01 -2.5377094520487514239803772e-01 8.9074488467048673623338573e-01 3.4786267316077762457027234e-01
- -1.4558657249983278370031314e-01 -2.5401929233082803927246118e-01 8.9065663612762147050005979e-01 3.4786420562243247633915644e-01
- -1.4568974413105753584751767e-01 -2.5426765594306410811498154e-01 8.9056830603240666466291486e-01 3.4786570668408262063664438e-01
- -1.4579291021244059067818455e-01 -2.5451603954591905942805852e-01 8.9047989345073963463050859e-01 3.4786717624059776410305744e-01
- -1.4589607125934139775225162e-01 -2.5476443336192494681924359e-01 8.9039140100358071805430882e-01 3.4786861442755584450381434e-01
- -1.4599922719616231781003535e-01 -2.5501283735184732126555218e-01 8.9030282869411947466176116e-01 3.4787002121932458775788177e-01
- -1.4610237765388220387841045e-01 -2.5526125538171390294550633e-01 8.9021417548443970702010120e-01 3.4787139651226417491614029e-01
- -1.4620552188869792575864892e-01 -2.5550969547381402469099498e-01 8.9012543923985987248670426e-01 3.4787274010215107900023668e-01
- -1.4630866067427789056765164e-01 -2.5575814560336679326368881e-01 8.9003662316788101360742758e-01 3.4787405219294731395507370e-01
- -1.4641179393423370269644579e-01 -2.5600660573049199841833001e-01 8.8994772727239845888647096e-01 3.4787533275874082949741251e-01
- -1.4651492145074221373768353e-01 -2.5625507746607861792043082e-01 8.8985875111991230568264655e-01 3.4787658173617669321586732e-01
- -1.4661804201549769044454763e-01 -2.5650357331650969205938395e-01 8.8976969140008643766037721e-01 3.4787779879894448198385248e-01
- -1.4672115746695607585436960e-01 -2.5675207076394351846104769e-01 8.8968055407657931077380908e-01 3.4787898442989451108786625e-01
- -1.4682426891058356077657265e-01 -2.5700055713543951130262144e-01 8.8959134249282389994561981e-01 3.4788013891678509770244432e-01
- -1.4692737748974116218647623e-01 -2.5724901940307209891045659e-01 8.8950206009796883854789940e-01 3.4788126256183204976224488e-01
- -1.4703048319537065369289053e-01 -2.5749745754717673351663620e-01 8.8941270690021123623836274e-01 3.4788235536243389267596626e-01
- -1.4713358601841330930426466e-01 -2.5774587154809130984389753e-01 8.8932328290775375378984791e-01 3.4788341731599164985411221e-01
- -1.4723668594981001445098912e-01 -2.5799426138615616510563200e-01 8.8923378812880515820182836e-01 3.4788444841990906475359679e-01
- -1.4733978298050079414061031e-01 -2.5824262704171341287207042e-01 8.8914422257157932349969087e-01 3.4788544867159293394465180e-01
- -1.4744287710142581215855273e-01 -2.5849096849510760920409780e-01 8.8905458624429656300236502e-01 3.4788641806845238546586074e-01
- -1.4754596830352431635624555e-01 -2.5873928572668553060864838e-01 8.8896487915518251909929859e-01 3.4788735660789954495797360e-01
- -1.4764905657773508274033247e-01 -2.5898757871679628506100812e-01 8.8887510131246871836196988e-01 3.4788826428734909157469701e-01
- -1.4775214191499666527285228e-01 -2.5923584744579120098251224e-01 8.8878525272439234949928277e-01 3.4788914110421892411650902e-01
- -1.4785522430624725709336076e-01 -2.5948409189402382724054519e-01 8.8869533339919648540217167e-01 3.4788998705592893978533198e-01
- -1.4795830374242410765184275e-01 -2.5973231204184987763738945e-01 8.8860534334512919496518180e-01 3.4789080213990247747446460e-01
- -1.4806138021446438313155625e-01 -2.5998050786962745295483046e-01 8.8851528257044531944330856e-01 3.4789158635356509652325485e-01
- -1.4816445371330466684867133e-01 -2.6022867935771704095415657e-01 8.8842515108340491813976314e-01 3.4789233969434563142897332e-01
- -1.4826752422988107027457261e-01 -2.6047682648648096126464679e-01 8.8833494889227326840597243e-01 3.4789306215967513713493986e-01
- -1.4837059175512937181373729e-01 -2.6072494923628436458429292e-01 8.8824467600532241995381355e-01 3.4789375374698783272009450e-01
- -1.4847365627998471149240345e-01 -2.6097304758749401143447244e-01 8.8815433243082897440956458e-01 3.4789441445372043526518269e-01
- -1.4857671779538181300317490e-01 -2.6122112152047949340527566e-01 8.8806391817707641678225627e-01 3.4789504427731254843081388e-01
- -1.4867977629225509472732369e-01 -2.6146917101561234497708597e-01 8.8797343325235322808453020e-01 3.4789564321520627387940294e-01
- -1.4878283176153841993460958e-01 -2.6171719605326648760978969e-01 8.8788287766495366248875598e-01 3.4789621126484704394243863e-01
- -1.4888588419416515229443121e-01 -2.6196519661381811872047365e-01 8.8779225142317763630472882e-01 3.4789674842368245588630771e-01
- -1.4898893358106804485352370e-01 -2.6221317267764548963882021e-01 8.8770155453533106104657691e-01 3.4789725468916293804610973e-01
- -1.4909197991317987841419779e-01 -2.6246112422512951622977084e-01 8.8761078700972539934355154e-01 3.4789773005874191635911075e-01
- -1.4919502318143249008919327e-01 -2.6270905123665311275971135e-01 8.8751994885467766494002717e-01 3.4789817452987553680898714e-01
- -1.4929806337675755045779624e-01 -2.6295695369260152496337923e-01 8.8742904007851131087392105e-01 3.4789858810002238787006945e-01
- -1.4940110049008614723220489e-01 -2.6320483157336221902156126e-01 8.8733806068955423107524894e-01 3.4789897076664455521921582e-01
- -1.4950413451234897954655878e-01 -2.6345268485932499258339590e-01 8.8724701069614098081217435e-01 3.4789932252720551231206514e-01
- -1.4960716543447624693463638e-01 -2.6370051353088186374407087e-01 8.8715589010661177749028639e-01 3.4789964337917300696290113e-01
- -1.4971019324739781586330878e-01 -2.6394831756842734860057931e-01 8.8706469892931227860799481e-01 3.4789993332001672987630059e-01
- -1.4981321794204283115448106e-01 -2.6419609695235807267366113e-01 8.8697343717259369277883252e-01 3.4790019234720914731440189e-01
- -1.4991623950934057640793640e-01 -2.6444385166307288193010550e-01 8.8688210484481344586527030e-01 3.4790042045822577865266112e-01
- -1.5001925794021903071140400e-01 -2.6469158168097295380505329e-01 8.8679070195433418177799467e-01 3.4790061765054464126833977e-01
- -1.5012227322560647846394488e-01 -2.6493928698646174169084588e-01 8.8669922850952420656511777e-01 3.4790078392164652809626091e-01
-
-
-SCAN_DURATION 2.3676345593158106339615188e+02
-
-NUMBER_OF_INT_TIMES 25
-INT_TIME
- 1 -1.3014087513089179992675781e+02 1.0240132331848145197383815e-02
- 633 -1.2366921493411064147949219e+02 1.0133473396301270058605937e-02
- 634 -1.2365918812155723571777344e+02 1.0026814460754394919828059e-02
- 1753 -1.1243929171562194824218750e+02 9.9201545715332031805111512e-03
- 1754 -1.1242947822809219360351562e+02 9.8134956359863280417332732e-03
- 2937 -1.0082022282481193542480469e+02 9.7068357467651363024163658e-03
- 2938 -1.0081062266230583190917969e+02 9.6001768112182611636384877e-03
- 4217 -8.8532103240489959716796875e+01 9.4935169219970711590450563e-03
- 4218 -8.8522716403007507324218750e+01 9.3868579864501960202671782e-03
- 5497 -7.6517035186290740966796875e+01 9.2801980972290042809502708e-03
- 5498 -7.6507861644029617309570312e+01 9.1735391616821291421723927e-03
- 6873 -6.3894350916147232055664062e+01 9.0668792724609374028554853e-03
- 6874 -6.3885390669107437133789062e+01 8.9602203369140622640776073e-03
- 8313 -5.0991743117570877075195312e+01 8.8535614013671871252997292e-03
- 8314 -5.0982996195554733276367188e+01 8.7469015121459953859828218e-03
- 9849 -3.7556606680154800415039062e+01 8.6402425765991202472049437e-03
- 9850 -3.7548069626092910766601562e+01 8.5335826873779302426115123e-03
- 11449 -2.3902973920106887817382812e+01 8.4269237518310551038336342e-03
- 11450 -2.3894653648138046264648438e+01 8.3202638626098633645167268e-03
- 13177 -9.5256645381450653076171875e+00 8.2136049270629882257388488e-03
- 13178 -9.5175532996654510498046875e+00 8.1069450378417964864219414e-03
- 14969 5.0018756091594696044921875e+00 8.0002861022949213476440633e-03
- 14970 5.0097692310810089111328125e+00 7.8936266899108879085966706e-03
- 23385 7.1434020996093750000000000e+01 7.2536702156066898763975281e-03
- 23386 7.1440634727478027343750000e+01 6.6137142181396484097444244e-03
-
-ALONG_SCAN_PIXEL_SIZE  1.4000000000000000291433544e-02
-CROSS_SCAN_PIXEL_SIZE  1.4000000000000000291433544e-02
-
-CENTER_GP -1.1329468405430349609019913e+00 7.5831236783004041246414317e-01 0.0000000000000000000000000e+00
-SENSOR_POSITION -1.0917728263724746362584028e+00 7.5471676006847088213902452e-01 4.1041163386845792410895228e+05
-MOUNTING_ANGLES 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-
-TOTAL_LINES 28704
-TOTAL_SAMPLES 2584
-
-
-
-
-IKCODE  -41219
-ISIS_Z_DIRECTION  1.0000000000000000000000000e+00
-OPTICAL_DIST_COEF 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00 0.0000000000000000000000000e+00
-ITRANSS -6.8139200054785997728856728e-01 -1.4285712640235999515425647e+02 6.8566503695772995641277703e-02
-ITRANSL -8.5695561557859000458847731e+03 6.8566503695772995641277703e-02 1.4285712640235999515425647e+02
-DETECTOR_SAMPLE_ORIGIN 2.5925000000000000000000000e+03
-DETECTOR_LINE_ORIGIN 0.0000000000000000000000000e+00
-DETECTOR_LINE_OFFSET  0.0000000000000000000000000e+00
-DETECTOR_SAMPLE_SUMMING  2.0000000000000000000000000e+00
-STARTING_SAMPLE 1.5000000000000000000000000e+00
-STARTING_LINE 1.0000000000000000000000000e+00
-STARTING_EPHEMERIS_TIME 1.8268123294718497991561890e+08
-CENTER_EPHEMERIS_TIME 1.8268136309318035840988159e+08
-
-REFERENCE_HEIGHT 30
-MIN_VALID_HT -8000
-MAX_VALID_HT 8000
-IMAGE_ID UNKNOWN
-SENSOR_ID USGS_LINE_SCANNER
-PLATFORM_ID UNKNOWN
-TRAJ_ID UNKNOWN
-COLL_ID UNKNOWN
-REF_DATE_TIME UNKNOWN
diff --git a/tests/h2254_0000_s12_state.json b/tests/h2254_0000_s12_state.json
deleted file mode 100644
index 53850af69a64c44a04eeb96f768cdb8dede99e5e..0000000000000000000000000000000000000000
--- a/tests/h2254_0000_s12_state.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-	"STA_ABERR_FLAG": 0,
-	"STA_ATMREF_FLAG": 0,
-	"STA_CENTER_EPHEMERIS_TIME": 182681363.09318,
-	"STA_COLLECTION_IDENTIFIER": "UNKNOWN",
-	"STA_COVARIANCE": [1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1],
-	"STA_DETECTOR_LINE_OFFSET": 0.0,
-	"STA_DETECTOR_LINE_ORIGIN": 0.0,
-	"STA_DETECTOR_SAMPLE_ORIGIN": 2592.5,
-	"STA_DETECTOR_SAMPLE_SUMMING": 2,
-	"STA_DT_EPHEM": 5.26141013181291,
-	"STA_DT_QUAT": 0.500556989284527,
-	"STA_EPHEM_PTS": [914127.531683392, 758672.024422652, -3736479.63317385, 925869.501029322, 773140.096576995, -3725720.45116952, 937604.271426971, 787584.42809584, -3714887.84546083, 949331.524308566, 802004.677727974, -3703981.79550064, 961050.940588367, 816400.504680105, -3693002.28074181, 972762.200663057, 830771.568617371, -3681949.28063721, 984464.984412141, 845117.529663811, -3670822.7746397, 996158.971198384, 859438.048402861, -3659622.74220214, 1007843.83986823, 873732.785877833, -3648349.16277738, 1019519.26875223, 888001.403592402, -3637002.0158183, 1031184.93566546, 902243.563511092, -3625581.28077775, 1042840.51773421, 916458.927400321, -3614086.93861527, 1054485.69005202, 930647.154965544, -3602518.97789098, 1066120.12652178, 944807.905825589, -3590877.3895589, 1077743.50022985, 958940.838996911, -3579162.16726897, 1089355.48238828, 973045.611664959, -3567373.31245932, 1100955.74333743, 987121.881204144, -3555510.82801666, 1112543.95225115, 1001169.30423865, -3543574.7209945, 1124119.77684575, 1015187.53582826, -3531565.00568001, 1135682.884202, 1029176.23125369, -3519481.69731475, 1147232.94001771, 1043135.04493126, -3507324.81694947, 1158769.60861361, 1057063.63044172, -3495094.39171714, 1170292.5537333, 1070961.64144519, -3482790.45005095, 1181801.43795754, 1084828.73065179, -3470413.02700004, 1193295.92300527, 1098664.55038716, -3457962.16173275, 1204775.66910987, 1112468.75304669, -3445437.89782429, 1216240.33646004, 1126240.98987897, -3432840.28378572, 1227689.58401018, 1139980.91220617, -3420169.37258901, 1239123.06993032, 1153688.17099808, -3407425.22179444, 1250540.45156926, 1167362.41712888, -3394607.89388492, 1261941.38550238, 1181003.30127414, -3381717.45601262, 1273325.52749022, 1194610.47415002, -3368753.97994983, 1284692.53274562, 1208183.58612397, -3355717.54241502, 1296042.05621282, 1221722.28738247, -3342608.22504794, 1307373.75203346, 1235226.22826467, -3329426.11422, 1318687.27346691, 1248695.05941999, -3316171.30109759, 1329982.2739095, 1262128.43111754, -3302843.88194651, 1341258.40587375, 1275525.99408863, -3289443.95792186, 1352515.32137309, 1288887.39924942, -3275971.63504105, 1363752.67223435, 1302212.2977283, -3262427.02436265, 1374970.11011493, 1315500.34092697, -3248810.24197431, 1386167.28632378, 1328751.18066607, -3235121.40876209, 1397343.85184419, 1341964.46901787, -3221360.65083255, 1408499.457929, 1355139.8579988, -3207528.09948273, 1419633.75451814, 1368277.00160747, -3193623.89073984, 1430746.39270711, 1381375.55316092, -3179648.16586083, 1441837.02309553, 1394435.16679674, -3165601.07120235, 1452905.29633823, 1407455.49737169, -3151482.75826815, 1463950.86350631, 1420436.1998819, -3137293.38371157, 1474973.37451286, 1433376.93179393, -3123033.10906096, 1485972.4803219, 1446277.35013569, -3108702.10117584, 1496947.8328382, 1459137.11204964, -3094300.53222151, 1507899.08308013, 1471955.8767685, -3079828.57925192, 1518825.88164363, 1484733.30554248, -3065286.42426134, 1529727.87560049, 1497469.06462587, -3050674.25138132, 1540604.71101378, 1510162.82142429, -3035992.24480279, 1551456.03342702, 1522814.24383892, -3021240.58871666, 1562281.48786511, 1535423.00026712, -3006419.46731408, 1573080.71883389, 1547988.75960236, -2991529.06478548, 1583853.37032227, 1560511.19123545, -2976569.5653218, 1594599.08579877, 1572989.96505492, -2961541.1531137, 1605317.50821813, 1585424.75144725, -2946444.01235344, 1616008.28001652, 1597815.22129685, -2931278.3272308, 1626671.04311595, 1610161.04598915, -2916044.28193924, 1637305.43891295, 1622461.89740416, -2900742.06066342],
-	"STA_EPHEM_RATES": [2232.36917503255, 2752.07050105946, 2037.94803239351, 2231.03114520839, 2747.5907550307, 2051.90121774289, 2229.63261668022, 2743.04610625685, 2065.85830834954, 2228.17349094554, 2738.4366417312, 2079.81930420988, 2226.65366959502, 2733.76244853621, 2093.78420532272, 2225.07305429412, 2729.02361384738, 2107.75301168791, 2223.43154678808, 2724.22022493165, 2121.72572330706, 2221.72904890367, 2719.35236914913, 2135.7023401795, 2219.96546254769, 2714.42013395171, 2149.68286230523, 2218.14068970785, 2709.42360688348, 2163.66728968425, 2216.25461594119, 2704.36281291317, 2177.65547913474, 2214.30698261601, 2699.23753735819, 2191.64656517847, 2212.29748340739, 2694.04757612959, 2205.63959802616, 2210.22592757057, 2688.7928637505, 2219.6340939847, 2208.09205938983, 2683.47316897349, 2233.62905672967, 2205.89561790913, 2678.08833575219, 2247.62360847935, 2203.63640943588, 2672.6383107486, 2261.61721559462, 2201.31418460087, 2667.1228740004, 2275.60879467099, 2198.92874449534, 2661.54189783681, 2289.59756758704, 2196.4798972998, 2655.89532110616, 2303.58289158733, 2193.96738072329, 2650.18298225818, 2317.56363661392, 2191.39100905279, 2644.40480943256, 2331.53910110323, 2188.75061693721, 2638.56071989089, 2345.50853276685, 2186.04601196974, 2632.65058681404, 2359.47091142703, 2183.27697107494, 2626.67438029297, 2373.42542683866, 2180.44334883121, 2620.63199797572, 2387.37119114981, 2177.54502369592, 2614.52333787217, 2401.30731137085, 2174.58180383244, 2608.3483734864, 2415.23292753869, 2171.55353665726, 2602.10706224448, 2429.14713581589, 2168.46007062756, 2595.79937618749, 2443.04902466924, 2165.30125480889, 2589.42530029949, 2456.93771131406, 2162.0769597175, 2582.98480529818, 2470.81228665239, 2158.78710777988, 2576.47784084744, 2484.67181296145, 2155.43159719695, 2569.9044042573, 2498.51537290787, 2152.0102678522, 2563.26453952225, 2512.34206116192, 2148.52304892002, 2556.55823998693, 2526.15093744222, 2144.96986942394, 2549.78551343195, 2539.94105250603, 2141.35059794543, 2542.94642134819, 2553.71147964439, 2137.66516932374, 2536.04100147189, 2567.46127771475, 2133.91354972166, 2529.06929994308, 2581.18948972533, 2130.0956899274, 2522.03138254712, 2594.89518175545, 2126.21152587812, 2514.9273130111, 2608.57740169198, 2122.26105224053, 2507.7571099404, 2622.23516016361, 2118.24416986359, 2500.52095639737, 2635.86751439474, 2114.16086379482, 2493.2189759822, 2649.47351788083, 2110.01119672655, 2485.85118190172, 2663.05218899871, 2105.79512677956, 2478.41772047751, 2676.6025539792, 2101.51269876018, 2470.91867329824, 2690.12363431112, 2097.16384217956, 2463.35428837782, 2703.61447734035, 2092.74854686206, 2455.72475880074, 2717.07411315951, 2088.2670020788, 2448.03005376423, 2730.50153092223, 2083.71921299614, 2440.27038279502, 2743.89576183559, 2079.10505523551, 2432.44613626251, 2757.25587183741, 2074.42415374318, 2424.55798143438, 2770.58118833164, 2069.67607775551, 2416.60650326922, 2783.87150256707, 2064.8606820398, 2408.59185827415, 2797.1268089034, 2059.97786793463, 2400.51414069521, 2810.34710731826, 2055.02753682995, 2392.37344483214, 2823.53239785819, 2050.00959027395, 2384.16986509292, 2836.68268054164, 2044.92392968732, 2375.90349604096, 2849.79795534822, 2039.77045679113, 2367.57443229532, 2862.87822215318, 2034.54907347917, 2359.18276849667, 2875.92348103732, 2029.25968161138, 2350.72859957567, 2888.93373188912, 2023.90218238769, 2342.21202014628, 2901.90897519501, 2018.47647841171, 2333.63312520065, 2914.84921095871],
-	"STA_FLYING_HEIGHT": 1000,
-	"STA_FOCAL": 174.87,
-	"STA_GSD": 1,
-	"STA_HALF_SWATH": 1000,
-	"STA_HALF_TIME": 10,
-	"STA_IK_CODE": -41219,
-	"STA_IMAGE_FLIP_FLAG": 0,
-	"STA_IMAGE_IDENTIFIER": "UNKNOWN",
-	"STA_INT_TIMES": [0.0102401323318481, 0.0101334733963013, 0.0100268144607544, 0.0099201545715332, 0.00981349563598633, 0.00970683574676514, 0.00960017681121826, 0.00949351692199707, 0.0093868579864502, 0.009280198097229, 0.00917353916168213, 0.00906687927246094, 0.00896022033691406, 0.00885356140136719, 0.008746901512146, 0.00864024257659912, 0.00853358268737793, 0.00842692375183106, 0.00832026386260986, 0.00821360492706299, 0.0081069450378418, 0.00800028610229492, 0.00789362668991089, 0.00725367021560669, 0.00661371421813965],
-	"STA_INT_TIME_LINES": [1, 633, 634, 1753, 1754, 2937, 2938, 4217, 4218, 5497, 5498, 6873, 6874, 8313, 8314, 9849, 9850, 11449, 11450, 13177, 13178, 14969, 14970, 23385, 23386],
-	"STA_INT_TIME_START_TIMES": [-130.140875130892, -123.669214934111, -123.659188121557, -112.439291715622, -112.429478228092, -100.820222824812, -100.810622662306, -88.53210324049, -88.5227164030075, -76.5170351862907, -76.5078616440296, -63.8943509161472, -63.8853906691074, -50.9917431175709, -50.9829961955547, -37.5566066801548, -37.5480696260929, -23.9029739201069, -23.894653648138, -9.52566453814507, -9.51755329966545, 5.00187560915947, 5.00976923108101, 71.4340209960938, 71.440634727478],
-	"STA_ISIS_Z_DIRECTION": 1,
-	"STA_I_TRANS_L": [-8569.5561557859, 0.068566503695773, 142.85712640236],
-	"STA_I_TRANS_S": [-0.68139200054786, -142.85712640236, 0.068566503695773],
-	"STA_MAX_ELEVATION": 8000,
-	"STA_MIN_ELEVATION": -8000,
-	"STA_MOUNTING_MATRIX": [1, 0.0, 0.0, 0.0, 1, 0.0, -0.0, 0.0, 1],
-	"STA_NUM_EPHEM": 65,
-	"STA_NUM_QUATERNIONS": 493,
-	"STA_OFFSET_LINES": 0.0,
-	"STA_OFFSET_SAMPLES": 0.0,
-	"STA_OPTICAL_DIST_COEF": [0.0, 0.0, 0.0],
-	"STA_PARAMETER_TYPE": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
-	"STA_PARAMETER_VALS": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 174.87, 0.0],
-	"STA_PLATFORM_FLAG": 1,
-	"STA_PLATFORM_IDENTIFIER": "UNKNOWN",
-	"STA_QUATERNIONS": [-0.100178114893579, -0.144903776582211, 0.922158042489415, 0.344371580564761, -0.100275503875719, -0.145140878755095, 0.922105088264985, 0.344385183816747, -0.100372916753139, -0.145378016400314, 0.922052060598041, 0.34439876230452, -0.100470353564741, -0.145615189611937, 0.921998959424561, 0.344412316023805, -0.100567814283257, -0.145852398339345, 0.921945784711032, 0.344425844968853, -0.100665298884866, -0.146089642540853, 0.921892536422217, 0.344439349133802, -0.100762807345281, -0.146326922173845, 0.921839214523099, 0.344452828512792, -0.100860341494742, -0.146564241259049, 0.921785818111846, 0.344466283147709, -0.100957900635691, -0.146801598283149, 0.921732347463253, 0.344479713017514, -0.101055483547657, -0.147038990581284, 0.921678803100489, 0.344493118086613, -0.101153090205633, -0.147276418110191, 0.921625184988838, 0.344506498349122, -0.101250720585051, -0.14751388082797, 0.921571493093349, 0.344519853799132, -0.101348374657868, -0.14775137868422, 0.921517727380798, 0.344533184430832, -0.101446052395989, -0.147988911628679, 0.92146388781798, 0.344546490238403, -0.101543753774502, -0.148226479619347, 0.921409974370083, 0.344559771215913, -0.101641478767751, -0.148464082612622, 0.921355987002649, 0.344573027357441, -0.101739228293517, -0.148701722637267, 0.921301925232229, 0.344586258684726, -0.1018370034512, -0.148939402126964, 0.921247788484715, 0.344599465226174, -0.101934802136344, -0.149177116471276, 0.921193577713136, 0.344612646916524, -0.102032624317919, -0.149414865614266, 0.921139292885691, 0.344625803749979, -0.102130469970565, -0.149652649514536, 0.921084933967702, 0.344638935720539, -0.102228339065546, -0.149890468122459, 0.921030500926185, 0.344652042822308, -0.10232623157392, -0.150128321388147, 0.920975993728257, 0.344665125049383, -0.102424147469648, -0.150366209269302, 0.920921412339543, 0.344678182395749, -0.10252208672568, -0.150604131721337, 0.920866756726169, 0.344691214855413, -0.102620049361156, -0.150842088800255, 0.920812026831979, 0.3447042224242, -0.102718038245819, -0.151080086854058, 0.920757221215359, 0.344717205191258, -0.102816050400049, -0.151318119330478, 0.920702341270872, 0.344730163056203, -0.102914085791396, -0.151556186172584, 0.920647386967343, 0.34474309601317, -0.103012144392111, -0.151794287335543, 0.920592358271181, 0.344756004056113, -0.103110226175251, -0.152032422776836, 0.920537255148366, 0.344768887178942, -0.10320833111075, -0.152270592446351, 0.920482077566469, 0.344781745375663, -0.103306459168439, -0.152508796294001, 0.920426825493102, 0.344794578640277, -0.103404610321369, -0.152747034278078, 0.920371498894208, 0.344807386966647, -0.103502784536596, -0.15298530634207, 0.920316097738808, 0.344820170348845, -0.103600983928195, -0.153223617186811, 0.920260620933113, 0.344832928858456, -0.103699207152295, -0.153461963860335, 0.920205069089363, 0.344845662443877, -0.103797453343447, -0.153700344463887, 0.920149442587717, 0.344858371069358, -0.103895722473001, -0.153938758953034, 0.920093741394919, 0.344871054728739, -0.103994014512843, -0.154177207284984, 0.920037965477414, 0.344883713415823, -0.104092329431451, -0.154415689408656, 0.919982114803403, 0.344896347124527, -0.104190667197835, -0.154654205274593, 0.919926189340803, 0.344908955848732, -0.104289027783503, -0.154892754839905, 0.919870189056216, 0.344921539582204, -0.104387411154586, -0.155131338048475, 0.919814113919034, 0.344934098318905, -0.104485818530856, -0.155369957634661, 0.919757963266355, 0.344946632102225, -0.104584250326495, -0.155608614546582, 0.919701736836859, 0.344959140945423, -0.104682704808097, -0.155847304950322, 0.919645435455093, 0.344971624775711, -0.104781181946086, -0.156086028801874, 0.919589059088144, 0.344984083586799, -0.104879681711144, -0.156324786058181, 0.91953260770294, 0.34499651737237, -0.104978204070268, -0.156563576667209, 0.919476081268335, 0.345008926126235, -0.105076748990734, -0.156802400577927, 0.919419479753026, 0.345021309842179, -0.105175316442844, -0.157041257747201, 0.919362803124101, 0.345033668513842, -0.105273906395964, -0.157280148129846, 0.919306051349125, 0.345046002134885, -0.105372519185792, -0.157519072498364, 0.919249224207471, 0.345058310715244, -0.105471157127938, -0.15775803605847, 0.919192320456972, 0.345070594351353, -0.105569817369129, -0.157997032458794, 0.919135341512831, 0.34508285291645, -0.105668499881813, -0.158236061661993, 0.919078287341275, 0.345095086404108, -0.105767204635687, -0.158475123624876, 0.919021157909925, 0.345107294807765, -0.105865931597036, -0.15871421829596, 0.918963953188207, 0.34511947812098, -0.105964680732094, -0.158953345623937, 0.918906673145559, 0.345131636337303, -0.106063452010179, -0.159192505565537, 0.918849317749766, 0.345143769450124, -0.10616224540029, -0.159431698076983, 0.918791886968765, 0.345155877452832, -0.106261063571292, -0.159670929181286, 0.918734379356133, 0.345167960465891, -0.106359904401253, -0.159910194146402, 0.918676795967962, 0.345180018387298, -0.106458767231676, -0.160149491518741, 0.918619137100196, 0.345192051181791, -0.106557652030316, -0.160388821252797, 0.918561402721364, 0.345204058842715, -0.106656558765638, -0.160628183305148, 0.918503592799599, 0.345216041363357, -0.106755487403406, -0.160867577625892, 0.918445707304472, 0.345227998737107, -0.106854437908398, -0.161107004162945, 0.918387746206071, 0.345239930957378, -0.106953410249847, -0.16134646287572, 0.918329709472071, 0.345251838017358, -0.107052406085194, -0.161585957536644, 0.918271596170395, 0.345263719995328, -0.107151425278532, -0.161825487876963, 0.918213406318593, 0.345275576881669, -0.107250466196807, -0.162065050239296, 0.918155140736309, 0.345287408590279, -0.107349528802533, -0.162304644567616, 0.918096799394775, 0.34529921511455, -0.10744861306084, -0.162544270814418, 0.918038382262631, 0.345310996450045, -0.107547718927179, -0.162783928936973, 0.917979889293501, 0.34532275263309, -0.107646846360192, -0.163023618887489, 0.917921320448682, 0.345334483681082, -0.107745995341939, -0.163263340609718, 0.917862675724335, 0.345346189515527, -0.107845166545492, -0.163503095665497, 0.917803954706267, 0.345357870166746, -0.107944361776421, -0.163742888196471, 0.917745156361087, 0.345369525727912, -0.108043578442134, -0.163982712348351, 0.917686282042348, 0.345381156057462, -0.108142816508951, -0.164222568077361, 0.917627331719081, 0.345392761148389, -0.108242075938823, -0.164462455329078, 0.917568305362699, 0.345404340993871, -0.108341356696565, -0.164702374056587, 0.91750920294303, 0.345415895586925, -0.108440658747044, -0.164942324213418, 0.917450024429858, 0.34542742492054, -0.108539982051664, -0.16518230574473, 0.91739076979486, 0.345438928987851, -0.108639326576065, -0.165422318606641, 0.917331439007362, 0.34545040778176, -0.108738695239315, -0.16566236951658, 0.917272030402454, 0.34546186146254, -0.108838085303451, -0.165902452254366, 0.917212545437238, 0.345473289873486, -0.108937496467091, -0.166142566166524, 0.91715298422837, 0.345484692992439, -0.109036928695242, -0.166382711209084, 0.917093346745439, 0.345496070812206, -0.10913638194926, -0.166622887329248, 0.91703363296004, 0.345507423325754, -0.109235856191667, -0.16686309447747, 0.916973842843106, 0.345518750525964, -0.109335351386978, -0.167103332609525, 0.91691397636445, 0.34553005240559, -0.109434867494534, -0.167343601668545, 0.916854033496746, 0.345541328957623, -0.109534406447157, -0.16758390614816, 0.916794013100822, 0.345552580292616, -0.109633967445856, -0.167824244257551, 0.916733915569525, 0.345563806360027, -0.109733549233154, -0.168064613138768, 0.916673741559359, 0.34557500708063, -0.109833151773831, -0.168305012750134, 0.916613491039877, 0.345586182447003, -0.109932775028284, -0.16854544303931, 0.91655316398307, 0.345597332451926, -0.110032419018592, -0.168785904097259, 0.916492760325754, 0.345608457091935, -0.110132083444227, -0.169026395268342, 0.916432280188745, 0.345619556343216, -0.110231768374291, -0.169266916752385, 0.916371723482618, 0.345630630204724, -0.110331475936735, -0.169507473531508, 0.916311088935772, 0.345641678806141, -0.110431205318355, -0.169748063773713, 0.916250376956285, 0.34565270209341, -0.11053095507276, -0.16998868416371, 0.916189588321729, 0.345663699971308, -0.110630725162248, -0.170229334655651, 0.916128723003301, 0.345674672432204, -0.110730515549681, -0.170470015205429, 0.916067780971859, 0.345685619468408, -0.110830326195588, -0.170710725763416, 0.916006762199567, 0.34569654107233, -0.110930157058755, -0.170951466275936, 0.915945666659566, 0.345707437236445, -0.111030008430265, -0.171192237467852, 0.915884494131234, 0.345718307974425, -0.111129883136961, -0.171433046005394, 0.915823242908939, 0.345729153469927, -0.111229777930464, -0.171673884344055, 0.915761914831805, 0.345739973505162, -0.111329692772697, -0.171914752439625, 0.915700509871096, 0.345750768072283, -0.111429627621499, -0.172155650237997, 0.915639028000392, 0.345761537163643, -0.111529582437033, -0.172396577691223, 0.915577469191929, 0.345772280771433, -0.11162955718035, -0.172637534753913, 0.915515833417422, 0.345782998887763, -0.111729551808096, -0.172878521369978, 0.915454120651091, 0.345793691504963, -0.111829568293233, -0.173119542242654, 0.91539232966834, 0.345804358754212, -0.111929606046994, -0.173360596047292, 0.915330460759232, 0.345815000592202, -0.112029663549385, -0.173601679248715, 0.915268514773618, 0.345825616909931, -0.112129740761936, -0.173842791804713, 0.915206491682821, 0.345836207699289, -0.112229837642409, -0.174083933663968, 0.91514439146032, 0.345846772952356, -0.112329954148231, -0.174325104774672, 0.915082214079769, 0.345857312661196, -0.11243009023966, -0.174566305092448, 0.915019959513174, 0.345867826817677, -0.112530246091182, -0.174807535082946, 0.91495762760296, 0.345878315429063, -0.112630424660997, -0.175048801846578, 0.914895216502008, 0.345888778705676, -0.112730622678272, -0.175290097663954, 0.914832728131128, 0.345899216408028, -0.112830840097463, -0.175531422477828, 0.91477016246559, 0.345909628528161, -0.112931076876768, -0.175772776240684, 0.914707519478474, 0.345920015057863, -0.113031332975466, -0.176014158908062, 0.914644799142219, 0.345930375988822, -0.113131608351016, -0.176255570431291, 0.914582001430297, 0.345940711312797, -0.113231902957892, -0.176497010754574, 0.914519126317913, 0.345951021021698, -0.113332218611812, -0.176738484296779, 0.914456172632153, 0.345961305246635, -0.113432554933757, -0.176979990220182, 0.914393140545027, 0.345971563957309, -0.113532910344342, -0.177221524789604, 0.914330030975553, 0.345981797030185, -0.113633284801857, -0.177463087960515, 0.914266843896601, 0.34599200445676, -0.113733678261015, -0.17770467967978, 0.914203579283124, 0.346002186228715, -0.113834090677627, -0.17794629989737, 0.914140237109416, 0.34601234233763, -0.113934522009789, -0.178187948569336, 0.914076817348407, 0.346022472774904, -0.11403497231709, -0.178429625897885, 0.914013319909057, 0.346032577540621, -0.114135444835661, -0.178671339807006, 0.91394974269957, 0.346042656883692, -0.114235936016432, -0.178913081757433, 0.91388608788921, 0.346052710524081, -0.114336445817869, -0.179154851706573, 0.913822355451062, 0.346062738453025, -0.114436974197566, -0.179396649610057, 0.913758545358735, 0.346072740661673, -0.114537521110635, -0.179638475417641, 0.91369465758729, 0.346082717141294, -0.114638086510923, -0.179880329076252, 0.913630692112529, 0.346092667883206, -0.114738670895834, -0.180122211865626, 0.91356664856286, 0.346102592921979, -0.114839276830396, -0.180364130151001, 0.91350252523621, 0.34611249246309, -0.114939901101295, -0.180606076132154, 0.913438324128044, 0.346122366242231, -0.115040543665132, -0.180848049764662, 0.91337404521242, 0.346132214250348, -0.115141204474902, -0.181090050995416, 0.913309688465532, 0.346142036478582, -0.115241883484938, -0.181332079775018, 0.913245253862759, 0.34615183291795, -0.115342580651803, -0.181574136059996, 0.913180741378132, 0.346161603559284, -0.115443296881446, -0.181816222159084, 0.9131161503668, 0.346171348473926, -0.115544033856349, -0.182058342326603, 0.913051479669483, 0.346181067799584, -0.115644788828629, -0.182300489832666, 0.912986731016624, 0.346190761302393, -0.115745561753403, -0.182542664631956, 0.912921904383015, 0.346200428973078, -0.115846352585971, -0.18278486667998, 0.912856999743315, 0.346210070802312, -0.11594716127944, -0.183027095927101, 0.912792017073488, 0.346219686780872, -0.116047987784955, -0.183269352319129, 0.912726956350665, 0.346229276899631, -0.116148833417815, -0.183511639220769, 0.912661816646386, 0.346238841266988, -0.116249698985184, -0.183753958748301, 0.912596597359107, 0.346248379951101, -0.116350582207622, -0.18399630527016, 0.912531299943032, 0.346257892749259, -0.116451483035127, -0.184238678731097, 0.912465924375884, 0.346267379652202, -0.116552401420087, -0.1844810790822, 0.912400470633926, 0.346276840650466, -0.116653337316487, -0.184723506278924, 0.912334938692431, 0.346286275734434, -0.116754290677523, -0.184965960275114, 0.912269328527131, 0.346295684894501, -0.116855263198589, -0.185208445444686, 0.912203638933528, 0.346305068278216, -0.116956254856297, -0.185450961829727, 0.912137869860489, 0.34631442588028, -0.117057263810971, -0.18569350484711, 0.912072022493696, 0.346323757531798, -0.117158290016509, -0.185936074454273, 0.912006096808344, 0.346333063222892, -0.117259333423464, -0.186178670600642, 0.911940092781652, 0.346342342943878, -0.117360393981467, -0.186421293233713, 0.911874010391388, 0.34635159668509, -0.117461471643166, -0.186663942308896, 0.911807849613456, 0.34636082443661, -0.117562568482922, -0.186906623234586, 0.911741608957679, 0.346370026385086, -0.117663683784909, -0.187149334282154, 0.911675288848648, 0.346379202462629, -0.11776481590569, -0.187392071314303, 0.911608890362243, 0.346388352511679, -0.117865964809354, -0.187634834316167, 0.911542413466712, 0.346397476523698, -0.117967130447159, -0.187877623240176, 0.911475858139301, 0.346406574488576, -0.118068312771596, -0.18812043804219, 0.911409224356478, 0.346415646396069, -0.118169512467319, -0.1883632805825, 0.911342511579396, 0.346424692306413, -0.118270731800636, -0.188606156861452, 0.911275718146943, 0.346433712431497, -0.118371967645415, -0.188849058851744, 0.911208846192696, 0.346442706470693, -0.118473219953072, -0.189091986508405, 0.911141895693679, 0.346451674413599, -0.118574488675144, -0.189334939787126, 0.911074866626816, 0.346460616249761, -0.11867577376142, -0.189577918639572, 0.911007758970104, 0.346469531968807, -0.118777075158837, -0.189820923010639, 0.910940572703303, 0.346478421560535, -0.118878395917071, -0.190063961031489, 0.910873305577731, 0.346487285318095, -0.118979733494516, -0.190307026127614, 0.910805959343841, 0.346496122990983, -0.119081087209811, -0.19055011659109, 0.910738534431635, 0.346504934506523, -0.119182457010352, -0.190793232369834, 0.910671030820476, 0.346513719854233, -0.119283842844674, -0.191036373414984, 0.910603448489004, 0.346522479023501, -0.119385244663546, -0.191279539683628, 0.910535787414437, 0.346531212003501, -0.119486664123794, -0.191522735694776, 0.91046804632478, 0.346539918956093, -0.119588101368371, -0.191765962052511, 0.910400225024288, 0.346548599888832, -0.11968955432143, -0.192009213511304, 0.910332324929308, 0.34655725457983, -0.119791022990244, -0.192252489993837, 0.910264346011714, 0.346565883032342, -0.119892507358488, -0.192495791439684, 0.910196288245314, 0.346574485243443, -0.119994007375279, -0.192739117804238, 0.910128151608248, 0.346583061202103, -0.120095523357998, -0.192982470042173, 0.910059935803419, 0.34659161093608, -0.120197058100736, -0.193225855848646, 0.909991638676496, 0.346600134729277, -0.120298608305333, -0.193469266407057, 0.90992326261802, 0.346608632238572, -0.120400173921592, -0.193712701676454, 0.909854807605575, 0.346617103452617, -0.120501754895203, -0.193956161605975, 0.909786273619335, 0.346625548360329, -0.120603351171418, -0.194199646144027, 0.909717660639738, 0.346633966950616, -0.120704962698235, -0.19444315524627, 0.909648968645461, 0.346642359212118, -0.12080659203266, -0.194686696062329, 0.909580195623429, 0.346650725410223, -0.120908237401118, -0.19493026385408, 0.90951134284808, 0.346659065355309, -0.121009897921425, -0.195173856298186, 0.909442410928829, 0.346667378948035, -0.121111573305313, -0.195417472699152, 0.909373400025127, 0.346675666152281, -0.12121326354175, -0.19566111312618, 0.909304310084722, 0.346683926961045, -0.121314968579521, -0.195904777537306, 0.909235141086372, 0.346692161362576, -0.121416690920383, -0.196148473042008, 0.909165891018829, 0.346700369623643, -0.121518429186341, -0.196392195940223, 0.909096560875242, 0.346708551591488, -0.121620182059185, -0.196635942656629, 0.909027151616731, 0.346716707118366, -0.121721949486254, -0.196879713147596, 0.908957663222861, 0.346724836192365, -0.121823731413589, -0.1971235073666, 0.908888095674021, 0.346732938801626, -0.12192552778417, -0.197367325259817, 0.908818448952558, 0.346741014934496, -0.122027341322593, -0.197611174690587, 0.908748720828056, 0.346749064887734, -0.122129170133086, -0.197855050432728, 0.908678912725465, 0.346757088447999, -0.122231013191989, -0.198098949692037, 0.908609025392884, 0.346765085496744, -0.122332870445437, -0.198342872424552, 0.908539058810506, 0.346773056021771, -0.122434741838549, -0.198586818584131, 0.908469012959162, 0.346781000010911, -0.122536627313222, -0.198830788116933, 0.908398887821764, 0.346788917452218, -0.122638529801043, -0.199074789625898, 0.90832868095106, 0.346796808672385, -0.122740446907363, -0.199318816360022, 0.908258394206868, 0.346804673397841, -0.122842377898778, -0.199562866316185, 0.90818802811965, 0.346812511538992, -0.122944322717641, -0.199806939443685, 0.908117582671905, 0.346820323083558, -0.123046281306754, -0.200051035693297, 0.908047057845826, 0.34682810801917, -0.123148253612138, -0.200295155024219, 0.907976453621486, 0.346835866333133, -0.123250242748927, -0.200539306746763, 0.907905767342038, 0.346843598382505, -0.123352245862609, -0.200783482634704, 0.907835001292327, 0.346851303832479, -0.123454262486352, -0.201027681438453, 0.907764155793083, 0.346858982623634, -0.123556292563856, -0.201271903113413, 0.907693230825772, 0.346866634743169, -0.123658336038369, -0.201516147614227, 0.907622226372142, 0.346874260178265, -0.123760392849324, -0.201760414886354, 0.907551142416438, 0.346881858916382, -0.123862466296599, -0.202004714977955, 0.907479976083253, 0.346889431343099, -0.123964553079254, -0.202249038171149, 0.907408730089512, 0.346896977063863, -0.124066652991977, -0.20249338397991, 0.907337404541869, 0.346904496048926, -0.124168766023799, -0.202737752500869, 0.907265999382302, 0.34691198829077, -0.124270891902123, -0.202982143035463, 0.90719451477845, 0.346919453750397, -0.124373031310311, -0.20322655780019, 0.907122950070405, 0.346926892504656, -0.124475186588188, -0.203471004129963, 0.907051303142901, 0.346934304831542, -0.124577354570309, -0.203715472522104, 0.906979576662993, 0.34694169034519, -0.124679535200969, -0.203959962935739, 0.906907770612347, 0.346949049032079, -0.124781728421795, -0.204204475323658, 0.906835884974393, 0.346956380878877, -0.12488393417259, -0.204449009634423, 0.906763919733767, 0.346963685872361, -0.124986154676462, -0.204693572944081, 0.906691872844022, 0.34697096427969, -0.125088388951073, -0.204938162406294, 0.906619745083906, 0.346978215977819, -0.125190635544283, -0.205182773640765, 0.906547537671804, 0.346985440781438, -0.12529289439562, -0.205427406597381, 0.906475250592421, 0.346992638677033, -0.125395165445142, -0.205672061227702, 0.906402883830095, 0.346999809650986, -0.125497448863633, -0.205916738215057, 0.906330437160242, 0.347006953717813, -0.12559974770211, -0.206161447463707, 0.906257907720919, 0.347014071256682, -0.12570205852401, -0.206406178235691, 0.906185298551024, 0.3470211618316, -0.125804381266752, -0.206650930477996, 0.906112609636552, 0.347028225428863, -0.125906715870647, -0.206895704145187, 0.906039840961541, 0.347035262034452, -0.126009062277069, -0.207140499194844, 0.905966992509297, 0.347042271634197, -0.126111422187275, -0.207385321320506, 0.905894062618401, 0.347049254440091, -0.126213795476764, -0.207630170348407, 0.90582105130818, 0.347056210431947, -0.126316180344539, -0.207875040595147, 0.905747960178797, 0.347063139374784, -0.126418576731156, -0.2081199320183, 0.905674789213987, 0.347070041254165, -0.126520984575879, -0.208364844572556, 0.905601538398347, 0.347076916055723, -0.126623403814759, -0.208609778204917, 0.90552820771865, 0.347083763765332, -0.126725837604767, -0.208854743615601, 0.905454794070109, 0.347090584787441, -0.126828282803786, -0.209099730587402, 0.905381300360004, 0.347097378710568, -0.126930739174031, -0.209344738487518, 0.905307726742324, 0.347104145496669, -0.127033206652647, -0.209589767267748, 0.905234073202976, 0.347110885131172, -0.127135685189595, -0.209834816924665, 0.905160339715035, 0.347117597601343, -0.12723817609088, -0.210079892077671, 0.9050865249195, 0.347124283072854, -0.127340679835266, -0.210324994621025, 0.905012628241305, 0.347130941606367, -0.127443194305395, -0.210570117528125, 0.904938651677542, 0.347137572915207, -0.127545719438378, -0.210815260749449, 0.904864595215079, 0.347144176984634, -0.127648255172048, -0.211060424237589, 0.904790458840287, 0.347150753799791, -0.127750802126115, -0.211305610322242, 0.904716241853257, 0.347157303436638, -0.127853362364748, -0.211550826467592, 0.9046419420701, 0.347163826169355, -0.127955932974977, -0.211796062730453, 0.904567562334772, 0.347170321600379, -0.128058513892472, -0.212041319060017, 0.90449310263502, 0.347176789714713, -0.128161105054695, -0.212286595410293, 0.904418562957349, 0.347183230497138, -0.12826370640156, -0.212531891741741, 0.904343943286559, 0.347189643932144, -0.128366321106506, -0.212777219652137, 0.904269240239515, 0.347196030448705, -0.128468945982283, -0.213022568001395, 0.904194457012399, 0.347202389606329, -0.128571580804459, -0.213267936170278, 0.904119593757948, 0.347208721368107, -0.128674225510127, -0.213513324114208, 0.9040446504628, 0.34721502571845, -0.128776880037753, -0.213758731792376, 0.903969627112629, 0.347221302641575, -0.128879546678742, -0.214004167850667, 0.903894521174905, 0.347227552449996, -0.128982223917737, -0.214249627019358, 0.903819334150436, 0.347233774928598, -0.129084910736967, -0.214495105761047, 0.903744067038564, 0.347239969930279, -0.129187607073151, -0.214740604032589, 0.903668719826065, 0.347246137439068, -0.129290312863307, -0.214986121791901, 0.903593292499495, 0.347252277438908, -0.129393029561677, -0.215231664751253, 0.903517783374798, 0.347258390128658, -0.12949575723368, -0.215477233474917, 0.903442192262236, 0.347264475512364, -0.129598494114439, -0.215722821525439, 0.903366521005083, 0.347270533336111, -0.129701240140299, -0.215968428861103, 0.903290769590249, 0.347276563583539, -0.129803995246822, -0.216214055438561, 0.903214938005183, 0.34728256623831, -0.129906760097067, -0.216459704054605, 0.903139025411727, 0.347288541388902, -0.130009536243898, -0.216705381071412, 0.903063029935327, 0.347294489251366, -0.130112321222675, -0.216951077169441, 0.902986954260055, 0.347300409468829, -0.130215115009962, -0.21719679246976, 0.902910798326036, 0.347306302030399, -0.1303179173702, -0.217442526253002, 0.902834562317888, 0.347312166894962, -0.130420728695786, -0.217688280307562, 0.902758245690594, 0.347318004112712, -0.130523551328571, -0.217934064354835, 0.902681845590829, 0.347323814016685, -0.130626382329428, -0.218179866906059, 0.902605365337567, 0.347329596176626, -0.130729221635554, -0.218425687921906, 0.902528804918124, 0.34733535057559, -0.130832069182348, -0.218671527358821, 0.902452164321088, 0.347341077196766, -0.130934925419054, -0.218917387307527, 0.902375442913456, 0.347346776099473, -0.131037792366416, -0.219163276483045, 0.902298638133329, 0.347352447574063, -0.131140667300248, -0.219409183920752, 0.902221753150589, 0.347358091215899, -0.131243550156787, -0.219655109581183, 0.902144787953122, 0.34736370700771, -0.131346440870647, -0.219901053421096, 0.902067742529968, 0.347369294932344, -0.13144933998506, -0.220147018010806, 0.901990616108494, 0.347374855063894, -0.13155224921526, -0.220393011065215, 0.901913406417395, 0.347380387651038, -0.131655166045091, -0.220639022140605, 0.901836116477512, 0.347385892314636, -0.131758090409822, -0.220885051197373, 0.901758746277312, 0.347391369037086, -0.131861022229628, -0.221131098198396, 0.901681295811488, 0.347396817788885, -0.13196396208904, -0.221377166209219, 0.901603764185332, 0.347402238619412, -0.13206691139408, -0.221623261959189, 0.901526149424638, 0.347407631719543, -0.132169867903535, -0.221869375495575, 0.901448454372618, 0.347412996798888, -0.132272831553811, -0.22211550676916, 0.901370679018521, 0.347418333844239, -0.132375802277531, -0.22236165573608, 0.901292823352636, 0.34742364283785, -0.132478780784808, -0.222607825931078, 0.901214886321664, 0.347428923879748, -0.132581768220178, -0.222854023066631, 0.901136866238238, 0.347434177140011, -0.132684762469223, -0.2231002377494, 0.901058765820356, 0.347439402289008, -0.132787763462, -0.223346469931093, 0.900980585060064, 0.347444599308876, -0.132890771141591, -0.223592719624029, 0.900902323931827, 0.347449768183485, -0.132993786330905, -0.223838991053499, 0.900823981181394, 0.34745490903141, -0.133096809810032, -0.224085288438595, 0.900745555557946, 0.34746002196856, -0.133199839628178, -0.224331602780904, 0.90066704966496, 0.347465106686406, -0.133302875717397, -0.224577934034073, 0.900588463494398, 0.347470163166938, -0.13340591800967, -0.224824282151804, 0.900509797038287, 0.347475191392115, -0.133508968201381, -0.225070655917235, 0.900431047714304, 0.347480191618039, -0.133612025414178, -0.225317051485613, 0.900352216624423, 0.347485163703487, -0.133715088564851, -0.225563463773422, 0.900273305230262, 0.347490107471293, -0.133818157586008, -0.225809892737857, 0.900194313523295, 0.347495022902958, -0.133921232408974, -0.226056338333135, 0.900115241495949, 0.347499909980084, -0.134024315377056, -0.226302813174364, 0.900036085451004, 0.347504769065281, -0.134127404169051, -0.226549305699606, 0.89995684874024, 0.347509599786013, -0.13423049849155, -0.226795814704337, 0.899877531694312, 0.347514402088688, -0.134333598276078, -0.2270423401452, 0.899798134305414, 0.347519175954492, -0.134436703954812, -0.227288884697522, 0.899718655773726, 0.347523921443462, -0.134539816950456, -0.227535456658097, 0.899639093663932, 0.347528638776529, -0.134642935136639, -0.227782044910481, 0.899559451196057, 0.347533327607639, -0.134746058442638, -0.228028649407597, 0.899479728363873, 0.347537987917831, -0.134849186798457, -0.228275270104434, 0.899399925160621, 0.347542619688021, -0.13495232128047, -0.228521913521614, 0.899320039668486, 0.347547223082139, -0.135055461874673, -0.228768580222993, 0.899240071706681, 0.347551798092801, -0.135158607243728, -0.229015262980223, 0.899160023360725, 0.347556344496796, -0.13526175731757, -0.229261961750049, 0.899079894623827, 0.347560862274638, -0.135364912025147, -0.22950867648697, 0.898999685489942, 0.347565351406912, -0.135468073003349, -0.229755417519277, 0.898919392937097, 0.347569812151318, -0.135571238963473, -0.230002177745633, 0.898839019014693, 0.347574244291604, -0.135674409276141, -0.230248953788771, 0.898758564686321, 0.347578647718371, -0.135777583884406, -0.230495745692054, 0.898678029920602, 0.347583022413932, -0.135880762825711, -0.230742554091357, 0.898597414513964, 0.347587368375377, -0.135983947907265, -0.230989391125785, 0.898516714924231, 0.347591685891165, -0.136087136932643, -0.231236243425876, 0.898435935018933, 0.347595974594674, -0.136190329831544, -0.231483110945509, 0.898355074793004, 0.347600234466292, -0.136293526534428, -0.231729993640666, 0.898274134240823, 0.347604465486286, -0.136396728245067, -0.231976900096324, 0.898193110854318, 0.347608667842998, -0.136499934449835, -0.232223827661276, 0.898112005388887, 0.347612841445608, -0.136603144173868, -0.232470770254114, 0.898030819591382, 0.34761698612597, -0.13670635734865, -0.232717727835214, 0.897949553455345, 0.347621101863834, -0.136809574077074, -0.232964701587364, 0.897868206620272, 0.34762518866684, -0.136912795943041, -0.233211703625849, 0.897786775562805, 0.347629246789637, -0.13701602097437, -0.233458720510706, 0.897705264161065, 0.347633275897702, -0.137119249099293, -0.233705752195938, 0.897623672410993, 0.347637275970772, -0.137222480246858, -0.233952798637792, 0.89754200030793, 0.347641246988451, -0.137325715438682, -0.234199868232861, 0.897460245407743, 0.347645189110448, -0.137428954244065, -0.234446958628869, 0.897378408378648, 0.347649102258098, -0.13753219578116, -0.234694063634704, 0.897296490994547, 0.347652986276711, -0.137635439980033, -0.234941183210988, 0.897214493249943, 0.347656841145363, -0.137738686901679, -0.235188318392226, 0.897132414829477, 0.347660666864501, -0.137841937930093, -0.235435481512809, 0.897050252161368, 0.347664463656748, -0.137945191328721, -0.235682659062857, 0.896968009130818, 0.347668231223734, -0.138048447024337, -0.235929850996514, 0.89688568573479, 0.347671969544524, -0.13815170494458, -0.236177057270289, 0.896803281969599, 0.347675678598041, -0.138254965930591, -0.236424286094541, 0.896720795456108, 0.34767935851411, -0.138358229622834, -0.236671535407876, 0.896638226777876, 0.347683009225271, -0.138461495244764, -0.236918798920852, 0.896555577730666, 0.347686630592143, -0.138564762724314, -0.237166076592535, 0.896472848310506, 0.347690222593197, -0.138668032082495, -0.237413369302872, 0.896390038249059, 0.347693785222682, -0.138771304488533, -0.237660689607481, 0.89630714392907, 0.347697318666051, -0.138874578475031, -0.237908024153012, 0.896224169174374, 0.347700822668994, -0.138977853898447, -0.238155372188342, 0.896141114185343, 0.347704297198448, -0.139081130698172, -0.238402733769372, 0.896057978930466, 0.34770774223485, -0.139184409778396, -0.238650119556771, 0.895974760342214, 0.347711157916871, -0.139287690451514, -0.23889752354578, 0.895891460132731, 0.347714544121497, -0.139390972200858, -0.239144940936866, 0.895808079662543, 0.347717900753628, -0.13949425495654, -0.239392371690761, 0.89572461892789, 0.347721227791572, -0.139597539130172, -0.239639821610811, 0.895641076256397, 0.34772452529182, -0.139700824891364, -0.23988729436778, 0.895557450592267, 0.347727793272636, -0.139804111357858, -0.240134780348763, 0.895473744669201, 0.347731031578159, -0.139907398458005, -0.240382279511716, 0.895389958484775, 0.347734240186521, -0.140010686192537, -0.240629792815089, 0.895306091751741, 0.34773741908786, -0.140113975425636, -0.240877333584951, 0.895222140665577, 0.347740568409225, -0.140217264986613, -0.24112488739323, 0.895138109326948, 0.347743687951129, -0.140320554803062, -0.241372454197629, 0.895053997734003, 0.347746777691402, -0.140423844803041, -0.241620033957148, 0.894969805884551, 0.347749837607795, -0.140527135626375, -0.241867638164026, 0.894885530504623, 0.347752867788408, -0.140630426641483, -0.242115259030514, 0.894801173799895, 0.347755868122382, -0.140733717533158, -0.242362892714275, 0.894716736848104, 0.347758838548133, -0.140837008229871, -0.242610539177011, 0.894632219646701, 0.347761779042949, -0.140940299009258, -0.242858205078579, 0.894547620299123, 0.34776468963707, -0.141043589828234, -0.243105892247156, 0.894462938283893, 0.347767570310435, -0.141146880140622, -0.243353592052221, 0.894378176031862, 0.347770420967296, -0.141250169873043, -0.243601304452433, 0.894293333541924, 0.347773241584777, -0.141353459032801, -0.243849031306287, 0.894208410277642, 0.347776032151701, -0.141456747991877, -0.244096784024548, 0.894123403016565, 0.3477787927038, -0.141560036055143, -0.244344549191911, 0.894038315533447, 0.347781523129659, -0.14166332315066, -0.244592326772323, 0.893953147826013, 0.3477842234058, -0.141766609206399, -0.244840116729628, 0.893867899892084, 0.347786893508738, -0.141869894526645, -0.245087931363348, 0.893782568269874, 0.347789533459449, -0.141973178658024, -0.245335761138911, 0.893697155633584, 0.347792143184073, -0.14207646143142, -0.245583603147905, 0.893611662788221, 0.347794722646693, -0.142179742774285, -0.245831457400042, 0.893526089719374, 0.34779727182371, -0.142283022775081, -0.246079331626396, 0.893440434255265, 0.347799790704444, -0.142386301278192, -0.246327225281169, 0.893354696547062, 0.34780227924915, -0.142489578022758, -0.24657513059454, 0.893268878757748, 0.347804737417503, -0.142592852937154, -0.24682304752579, 0.893182980887075, 0.347807165186407, -0.142696126019943, -0.24707098220844, 0.89309700121657, 0.347809562530168, -0.142799397174685, -0.247318938422338, 0.893010938692931, 0.347811929408645, -0.142902666179886, -0.247566906113447, 0.89292479610801, 0.347814265796508, -0.143005932964724, -0.247814885244555, 0.892838573460917, 0.34781657167017, -0.143109197466115, -0.248062879653155, 0.892752269676849, 0.347818846995995, -0.143212459558127, -0.248310897680975, 0.892665882443063, 0.347821091715738, -0.143315719107522, -0.24855892700762, 0.892579415169289, 0.347823305828641, -0.143418976043512, -0.248806967597428, 0.892492867854615, 0.347825489310728, -0.143522230282765, -0.249055020992524, 0.892406240062795, 0.347827642130496, -0.143625481581656, -0.249303100084768, 0.89231952823597, 0.347829764191188, -0.143728729944926, -0.249551190305851, 0.892232736390185, 0.347831855526539, -0.143831975299537, -0.249799291615855, 0.892145864526365, 0.347833916112495, -0.14393521757222, -0.25004740397434, 0.892058912645666, 0.347835945925034, -0.144038456351939, -0.250295542686736, 0.891971876543545, 0.347837944822428, -0.144141691784342, -0.250543693060566, 0.891884760253267, 0.347839912869546, -0.144244923808073, -0.250791854344574, 0.891797563971744, 0.347841850046938, -0.144348152353755, -0.25104002649657, 0.89171028770187, 0.347843756326469, -0.144451376999446, -0.251288222511767, 0.891622927900582, 0.347845631497412, -0.144554597822115, -0.251536432282974, 0.891535487319708, 0.347847475673533, -0.144657814833094, -0.251784652786593, 0.891447966776485, 0.347849288857861, -0.14476102795873, -0.252032883984147, 0.891360366272397, 0.347851071025666, -0.144864236670656, -0.252281136588394, 0.891272682891893, 0.347852822018426, -0.144967441035154, -0.252529405037822, 0.891184918150441, 0.347854541859318, -0.145070641182525, -0.252777684044182, 0.891097073477236, 0.347856230584499, -0.1451738370389, -0.253025973569857, 0.89100914887397, 0.34785788816888, -0.145277028083418, -0.253274282039055, 0.890921142058968, 0.347859514461219, -0.14538021420387, -0.253522608428551, 0.890833053314947, 0.347861109431896, -0.14548339570076, -0.253770945204875, 0.890744884670487, 0.347862673160778, -0.145586572499833, -0.254019292330828, 0.890656636127621, 0.347864205622432, -0.145689744131058, -0.254267655943064, 0.890568306032407, 0.347865706684083, -0.145792910212441, -0.254516039545919, 0.89047989345074, 0.347867176240598, -0.145896071259341, -0.254764433361925, 0.890391401003581, 0.347868614427556, -0.145999227196162, -0.255012837351847, 0.890302828694119, 0.347870021219325, -0.146102377653882, -0.255261255381714, 0.89021417548444, 0.347871396512264, -0.146205521888698, -0.255509695473814, 0.89012543923986, 0.347872740102151, -0.146308660674278, -0.255758145603367, 0.890036623167881, 0.347874052192947, -0.146411793934234, -0.256006605730492, 0.889947727272398, 0.347875332758741, -0.146514921450742, -0.256255077466079, 0.889858751119912, 0.347876581736177, -0.146618042015498, -0.25650357331651, 0.889769691400086, 0.347877798798944, -0.146721157466956, -0.256752070763944, 0.889680554076579, 0.347878984429895, -0.146824268910584, -0.25700055713544, 0.889591342492824, 0.347880138916785, -0.146927377489741, -0.257249019403072, 0.889502060097969, 0.347881262561832, -0.147030483195371, -0.257497457547177, 0.889412706900211, 0.347882355362434, -0.147133586018413, -0.257745871548091, 0.889323282907754, 0.347883417315992, -0.14723668594981, -0.257994261386156, 0.889233788128805, 0.347884448419909, -0.147339782980501, -0.258242627041713, 0.889144222571579, 0.347885448671593, -0.147442877101426, -0.258490968495108, 0.889054586244297, 0.347886418068452, -0.147545968303524, -0.258739285726686, 0.888964879155183, 0.3478873566079, -0.147649056577735, -0.258987578716796, 0.888875101312469, 0.347888264287349, -0.147752141914997, -0.259235847445791, 0.888785252724392, 0.347889141104219, -0.147855224306247, -0.259484091894024, 0.888695333399196, 0.347889987055929, -0.147958303742424, -0.25973231204185, 0.888605343345129, 0.347890802139902, -0.148061380214464, -0.259980507869627, 0.888515282570445, 0.347891586353565, -0.148164453713305, -0.260228679357717, 0.888425151083405, 0.347892339694346, -0.148267524229881, -0.260476826486481, 0.888334948892273, 0.347893062159675, -0.148370591755129, -0.260724949236284, 0.888244676005322, 0.347893753746988, -0.148473656279985, -0.260973047587494, 0.888154332430829, 0.34789441445372, -0.148576717795382, -0.261221121520479, 0.888063918177076, 0.347895044277313, -0.148679776292255, -0.261469171015612, 0.887973433252353, 0.347895643215206, -0.148782831761538, -0.261717196053266, 0.887882877664954, 0.347896211264847, -0.148885884194165, -0.261965196613818, 0.887792251423178, 0.347896748423682, -0.148988933581068, -0.262213172677645, 0.887701554535331, 0.347897254689163, -0.14909197991318, -0.26246112422513, 0.887610787009725, 0.347897730058742, -0.149195023181432, -0.262709051236653, 0.887519948854678, 0.347898174529876, -0.149298063376758, -0.262956953692602, 0.887429040078511, 0.347898588100022, -0.149401100490086, -0.263204831573362, 0.887338060689554, 0.347898970766645, -0.149504134512349, -0.263452684859325, 0.887247010696141, 0.347899322527206, -0.149607165434476, -0.263700513530882, 0.887155890106612, 0.347899643379173, -0.149710193247398, -0.263948317568427, 0.887064698929312, 0.347899933320017, -0.149813217942043, -0.264196096952358, 0.886973437172594, 0.347900192347209, -0.149916239509341, -0.264443851663073, 0.886882104844813, 0.347900420458226, -0.150019257940219, -0.264691581680973, 0.886790701954334, 0.347900617650545, -0.150122273225606, -0.264939286986462, 0.886699228509524, 0.347900783921647],
-	"STA_REFERENCE_DATE_AND_TIME": "UNKNOWN",
-	"STA_REFERENCE_POINT_XYZ": [0.0, 0.0, 0.0],
-	"STA_REF_ELEVATION": 0.0,
-	"STA_SEMI_MAJOR_AXIS": 3396190,
-	"STA_SEMI_MINOR_AXIS": 3376200.00000009,
-	"STA_SENSOR_IDENTIFIER": "USGS_LINE_SCANNER",
-	"STA_SENSOR_MODEL_NAME": "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL",
-	"STA_SENSOR_TYPE": "USGSAstroLineScannerKLEv",
-	"STA_STARTING_EPHEMERIS_TIME": 182681232.947185,
-	"STA_STARTING_SAMPLE": 1,
-	"STA_T0_EPHEM": -168.365124046803,
-	"STA_T0_QUAT": -123.137019187212,
-	"STA_TOTAL_LINES": 28704,
-	"STA_TOTAL_SAMPLES": 2584,
-	"STA_TRAJECTORY_IDENTIFIER": "UNKNOWN"
-}
diff --git a/tests/nac_state.json b/tests/nac_state.json
deleted file mode 100644
index 3258272e446ee8e634ceb25159bfcbac37828a3d..0000000000000000000000000000000000000000
--- a/tests/nac_state.json
+++ /dev/null
@@ -1,132 +0,0 @@
-{
-    "m_boresight": [
-        0.0,
-        0.0,
-        1
-    ],
-    "m_ccdCenter": [
-        512.5,
-        512.5
-    ],
-    "m_currentParameterCovariance": [
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0,
-            0.0
-    ],
-    "m_currentParameterValue": [
-        1728181.03407928,
-        -2088202.59129735,
-        2082707.60899282,
-        2.25613869898165,
-        0.0943461617903765,
-        -0.963008015000929
-    ],
-    "m_ephemerisTime": 418855170.49265,
-    "m_focalLength": 549.23479652106,
-    "m_focalLengthEpsilon": 0.5,
-    "m_iTransL": [
-        0.0,
-        0.0,
-        71.42857143
-    ],
-    "m_iTransS": [
-        0.0,
-        71.42857143,
-        0.0
-    ],
-    "m_ifov": 25.44,
-    "m_instrumentID": "MDIS-NAC",
-    "m_line_pp": 0.0,
-    "m_majorAxis": 2439400,
-    "m_minorAxis": 2439400,
-    "m_minElevation": -100,
-    "m_maxElevation": 100,
-    "m_nLines": 1024,
-    "m_nSamples": 1024,
-    "m_odtX": [
-        0.0,
-        1.0018542696238,
-        0.0,
-        0.0,
-        -0.000509444047494111,
-        0.0,
-        1.00401047146886e-05,
-        0.0,
-        1.00401047146886e-05,
-        0.0
-    ],
-    "m_odtY": [
-        0.0,
-        0.0,
-        1,
-        0.000906001059499675,
-        0.0,
-        0.000357484262662076,
-        0.0,
-        1.00401047146886e-05,
-        0.0,
-        1.00401047146886e-05
-    ],
-    "m_originalHalfLines": 512,
-    "m_originalHalfSamples": 512,
-    "m_pixelPitch": 0.014,
-    "m_sample_pp": 0.0,
-    "m_spacecraftName": "Messenger",
-    "m_spacecraftVelocity": [
-        0.0,
-        0.0,
-        0.0
-    ],
-    "m_startingDetectorLine": 1,
-    "m_startingDetectorSample": 9,
-    "m_sunPosition": [
-        -31648725087.5887,
-        -60633907522.7286,
-        -38729485.7733473
-    ],
-    "m_targetName": "Mercury",
-    "m_transX": [
-        0.0,
-        0.014,
-        0.0
-    ],
-    "m_transY": [
-        0.0,
-        0.0,
-        0.014
-    ],
-    "model_name": "USGS_ASTRO_FRAME_SENSOR_MODEL"
-}
diff --git a/tests/test_genericls.py b/tests/test_genericls.py
deleted file mode 100644
index 4f44b752db84bbf369a7b3e65d03491971bb892b..0000000000000000000000000000000000000000
--- a/tests/test_genericls.py
+++ /dev/null
@@ -1,176 +0,0 @@
-import os
-import json
-import pytest
-
-from cycsm import isd
-import cycsm.csm as csm
-import usgscam as cam
-
-data_path = os.path.dirname(__file__)
-
-@pytest.fixture
-def hrsc_nadir_model():
-    path = os.path.join(data_path, 'h0232_0000_nd2_keywords.lis')
-    csm_isd = isd.Isd.read_socet_file(path)
-    plugin = cam.genericls.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
-
-@pytest.fixture
-def hrsc_stereo_1_model():
-    path = os.path.join(data_path, 'h0232_0000_s12_keywords.lis')
-    csm_isd = isd.Isd.read_socet_file(path)
-    plugin = cam.genericls.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
-
-@pytest.fixture
-def hrsc_stereo_2_model():
-    path = os.path.join(data_path, 'h0232_0000_s22_keywords.lis')
-    csm_isd = isd.Isd.read_socet_file(path)
-    plugin = cam.genericls.Plugin()
-    return plugin.from_isd(csm_isd, plugin.modelname(1))
-
-class TestCTX:
-
-    @pytest.mark.parametrize('image, ground',[
-                              ((2500, 9216, 0), (-73589.5516508502, 562548.342040933, 2372508.44060771))
-    ])
-    def test_image_to_ground(self, ctx_model, image, ground):
-        gx, gy, gz = ground
-        x, y, z = ctx_model.imageToGround(*image)
-        #TODO: Get this test up and running.
-        #print(x, y, z)
-        #assert False
-        #assert x == pytest.approx(gx, rel=1)
-        #assert y == pytest.approx(gy, rel=1)
-        #assert z == pytest.approx(gz, rel=1)
-
-    #@pytest.mark.parametrize('image, ground',[
-    #                          ((512, 512, 0), (-73589.5516508502, 562548.342040933, 2372508.44060771)),
-    #                          ((100, 100, 0), (-48020.2164819883, 539322.805489926, 2378549.41724731))
-    #])
-    #def test_ground_to_image(self, model, image, ground):
-    #    y, x = model.groundToImage(*ground)
-    #    ix, iy, _ = image
-#
-    #    assert x == pytest.approx(ix)
-    #    assert y == pytest.approx(iy)
-
-class TestHRSCNadir:
-
-    @pytest.mark.parametrize('image, ground',[
-          # ((0.5, 0.5, 0), (985377.89225802, 3243484.7261571, 206009.0045894)),
-          # ((0.5, 5175.5, 0), (849592.95667544, 3281524.2988248, 208281.94748872)),
-          # ((25503.5, 0.5, 0), (995812.30843397, 3161653.5178064, 734845.5368816)),
-          # ((25503.5, 5175.5, 0), (817255.33536118, 3211512.2358805, 738854.37876771)),
-          # ((12751.5, 2587.5, 0), (914645.41695902, 3237864.2204448, 459626.50243137))
-            ((12751.5, 2587.5, 0), (914645.4170054727, 3237864.2203280977, 459626.5031521894)),
-            ((0.5, 0.5, 0), (985377.8921162762, 3243484.7262333957, 206009.00407163633)),
-            ((0.5, 5175.5, 0), (849592.9565413876, 3281524.298893377, 208281.94696064907)),
-            ((25503.5, 0.5, 0), (995811.943316327, 3161654.168981308, 734843.2570738876)),
-            ((25503.5, 5175.5, 0), (817254.9608542051, 3211512.854057241, 738852.1327129134))
-    ])
-    def test_image_to_ground(self, hrsc_nadir_model, image, ground):
-        gx, gy, gz = ground
-        x, y, z = hrsc_nadir_model.imageToGround(*image)
-        assert x == pytest.approx(gx)
-        assert y == pytest.approx(gy)
-        assert z == pytest.approx(gz)
-
-    @pytest.mark.parametrize('image, ground',[
-          # ((0.5, 0.5, 0), (985377.89225802, 3243484.7261571, 206009.0045894)),
-          # ((0.5, 5175.5, 0), (849592.95667544, 3281524.2988248, 208281.94748872)),
-          # ((25503.5, 0.5, 0), (995812.30843397, 3161653.5178064, 734845.5368816)),
-          # ((25503.5, 5175.5, 0), (817255.33536118, 3211512.2358805, 738854.37876771)),
-          # ((12751.5, 2587.5, 0), (914645.41695902, 3237864.2204448, 459626.50243137))
-            ((12751.5, 2587.5, 0), (914645.4170054727, 3237864.2203280977, 459626.5031521894)),
-            ((0.5, 0.5, 0), (985377.8921162762, 3243484.7262333957, 206009.00407163633)),
-            ((0.5, 5175.5, 0), (849592.9565413876, 3281524.298893377, 208281.94696064907)),
-            ((25503.5, 0.5, 0), (995811.943316327, 3161654.168981308, 734843.2570738876)),
-            ((25503.5, 5175.5, 0), (817254.9608542051, 3211512.854057241, 738852.1327129134))
-    ])
-    def test_ground_to_image(self, hrsc_nadir_model, image, ground):
-        y, x = hrsc_nadir_model.groundToImage(*ground)
-        iy, ix, _ = image
-
-        assert x == pytest.approx(ix, abs=0.001)
-        assert y == pytest.approx(iy, abs=0.001)
-
-class TestHRSCStereo1:
-
-    @pytest.mark.parametrize('image, ground',[
-          # ((0.5, 0.5, 0), (979590.30174957, 3242179.3919958, 249088.83886381)),
-          # ((0.5, 2583.5, 0), (855179.96698611, 3277243.42159, 248427.66616907)),
-          # ((12503.5, 0.5, 0), (984596.8817312, 3152386.5706555, 787256.94481508)),
-          # ((12503.5, 2583.5, 0), (824462.92414568, 3197824.047306, 787981.15939371)),
-          # ((6251.5, 1291.5, 0), (913762.62459356, 3231516.1914323, 503425.73182682))
-          ((6251.5, 1291.5, 0), (913776.1812336871, 3231512.357457191, 503425.7355612734)),
-          ((0.5, 0.5, 0), (979602.4581277388, 3242175.7082415046, 249088.97789060202)),
-          ((0.5, 2583.5, 0), (855191.9410074502, 3277240.29787523, 248427.65484663288)),
-          ((12503.5, 0.5, 0), (984612.2803597612, 3152382.0160443066, 787255.9359414595)),
-          ((12503.5, 2583.5, 0), (824478.2804830034, 3197820.3642705963, 787980.0517643926))
-    ])
-    def test_image_to_ground(self, hrsc_stereo_1_model, image, ground):
-        gx, gy, gz = ground
-        x, y, z = hrsc_stereo_1_model.imageToGround(*image)
-        assert x == pytest.approx(gx)
-        assert y == pytest.approx(gy)
-        assert z == pytest.approx(gz)
-
-    @pytest.mark.parametrize('image, ground',[
-          # ((0.5, 0.5, 0), (979590.30174957, 3242179.3919958, 249088.83886381)),
-          # ((0.5, 2583.5, 0), (855179.96698611, 3277243.42159, 248427.66616907)),
-          # ((12503.5, 0.5, 0), (984596.8817312, 3152386.5706555, 787256.94481508)),
-          # ((12503.5, 2583.5, 0), (824462.92414568, 3197824.047306, 787981.15939371)),
-          # ((6251.5, 1291.5, 0), (913762.62459356, 3231516.1914323, 503425.73182682))
-          ((6251.5, 1291.5, 0), (913776.1812336871, 3231512.357457191, 503425.7355612734)),
-          ((0.5, 0.5, 0), (979602.4581277388, 3242175.7082415046, 249088.97789060202)),
-          ((0.5, 2583.5, 0), (855191.9410074502, 3277240.29787523, 248427.65484663288)),
-          ((12503.5, 0.5, 0), (984612.2803597612, 3152382.0160443066, 787255.9359414595)),
-          ((12503.5, 2583.5, 0), (824478.2804830034, 3197820.3642705963, 787980.0517643926))
-    ])
-    def test_ground_to_image(self, hrsc_stereo_1_model, image, ground):
-        y, x = hrsc_stereo_1_model.groundToImage(*ground)
-        iy, ix, _ = image
-
-        assert x == pytest.approx(ix, abs=0.001)
-        assert y == pytest.approx(iy, abs=0.001)
-
-class TestHRSCStereo2:
-
-    @pytest.mark.parametrize('image, ground',[
-          # ((0.5, 0.5, 0), (994968.78141471, 3243624.373581, 150910.83677465)),
-          # ((0.5, 2583.5, 0), (840154.182443, 3286852.5036334, 156704.92657188)),
-          # ((14263.5, 0.5, 0), (1015683.4735728, 3170802.9252193, 665761.34487006)),
-          # ((14263.5, 2583.5, 0), (802816.11887483, 3229529.8393814, 674042.87178595)),
-          # ((7131.5, 1291.5, 0), (915544.01372502, 3243112.89855, 419540.13516932))
-          ((7131.5, 1291.5, 0), (915561.6002628063, 3243108.0221202467, 419539.4600493548)),
-          ((0.5, 0.5, 0), (994983.8770025282, 3243619.7787126494, 150910.07885617757)),
-          ((0.5, 2583.5, 0), (840169.1316321647, 3286848.7002639165, 156704.55683200277)),
-          ((14263.5, 0.5, 0), (1015704.1721659054, 3170796.569969528, 665760.0501533676)),
-          ((14263.5, 2583.5, 0), (802836.7715344077, 3229524.77329203, 674042.5500676908))
-    ])
-    def test_image_to_ground(self, hrsc_stereo_2_model, image, ground):
-        gx, gy, gz = ground
-        x, y, z = hrsc_stereo_2_model.imageToGround(*image)
-        assert x == pytest.approx(gx)
-        assert y == pytest.approx(gy)
-        assert z == pytest.approx(gz)
-
-    @pytest.mark.parametrize('image, ground',[
-          # ((0.5, 0.5, 0), (994968.78141471, 3243624.373581, 150910.83677465)),
-          # ((0.5, 2583.5, 0), (840154.182443, 3286852.5036334, 156704.92657188)),
-          # ((14263.5, 0.5, 0), (1015683.4735728, 3170802.9252193, 665761.34487006)),
-          # ((14263.5, 2583.5, 0), (802816.11887483, 3229529.8393814, 674042.87178595)),
-          # ((7131.5, 1291.5, 0), (915544.01372502, 3243112.89855, 419540.13516932))
-          ((7131.5, 1291.5, 0), (915561.6002628063, 3243108.0221202467, 419539.4600493548)),
-          ((0.5, 0.5, 0), (994983.8770025282, 3243619.7787126494, 150910.07885617757)),
-          ((0.5, 2583.5, 0), (840169.1316321647, 3286848.7002639165, 156704.55683200277)),
-          ((14263.5, 0.5, 0), (1015704.1721659054, 3170796.569969528, 665760.0501533676)),
-          ((14263.5, 2583.5, 0), (802836.7715344077, 3229524.77329203, 674042.5500676908))
-    ])
-    def test_ground_to_image(self, hrsc_stereo_2_model, image, ground):
-        y, x = hrsc_stereo_2_model.groundToImage(*ground)
-        iy, ix, _ = image
-
-        assert x == pytest.approx(ix, abs=0.001)
-        assert y == pytest.approx(iy, abs=0.001)
diff --git a/tests/test_plugins.py b/tests/test_plugins.py
deleted file mode 100644
index 71653be4671bdb249951265ee03f68349ee4dcf5..0000000000000000000000000000000000000000
--- a/tests/test_plugins.py
+++ /dev/null
@@ -1,183 +0,0 @@
-import json
-import os
-
-import pytest
-
-import usgscam as cam
-from cycsm import isd
-import cycsm.csm as csm
-
-data_path = os.path.dirname(__file__)
-
-
-@pytest.fixture(scope="session")
-def genericframe_plugin():
-    return cam.genericframe.Plugin()
-
-@pytest.fixture(scope="session")
-def genericls_plugin():
-    return cam.genericls.Plugin()
-
-@pytest.fixture
-def mdis_isd(scope="session"):
-    isd_file = os.path.join(data_path, 'EN1007907102M.json')
-    with open(isd_file, 'r') as f:
-        return isd.Isd.load(f)
-
-@pytest.fixture
-def ctx_isd(scope="session"):
-    isd_file = os.path.join(data_path, 'J03_046060_1986_XN_18N282W_8bit_keywords.lis')
-    return isd.Isd.read_socet_file(isd_file)
-
-@pytest.fixture
-def hrsc_isd(scope="session"):
-    isd_file = os.path.join(data_path, 'h2254_0000_s12_keywords.lis')
-    return isd.Isd.read_socet_file(isd_file)
-
-@pytest.fixture
-def nac_state(scope="session"):
-    with open(os.path.join(data_path,'nac_state.json'), 'r') as f:
-        return json.load(f)
-
-@pytest.fixture
-def ctx_state(scope="session"):
-    path = os.path.join(data_path, 'J03_046060_1986_XN_18N282W_8bit_state.json')
-    with open(path, 'r') as f:
-        return json.load(f)
-
-@pytest.fixture
-def hrsc_state(scope="session"):
-    path = os.path.join(data_path, 'h2254_0000_s12_state.json')
-    with open(path, 'r') as f:
-        return json.load(f)
-
-@pytest.mark.parametrize('plugin, expected', [(genericframe_plugin(), 1),
-                                              (genericls_plugin(), 1)])
-def test_nmodels(plugin, expected):
-    assert plugin.nmodels == expected
-
-
-@pytest.mark.parametrize('plugin, expected', [(genericframe_plugin(), "20170425"),
-                                              (genericls_plugin(), "20171230")])
-def test_releasedate(plugin, expected):
-    assert plugin.releasedate == expected
-
-
-@pytest.mark.parametrize('plugin, expected',
-                         [(genericframe_plugin(), "UsgsAstroFramePluginCSM"),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_PLUGIN")])
-def test_plugin_name(plugin, expected):
-    assert plugin.name == expected
-
-
-@pytest.mark.parametrize('plugin, expected',
-                         [(genericframe_plugin(), "USGS_ASTRO_FRAME_SENSOR_MODEL"),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL")])
-def test_modelname(plugin, expected):
-    assert plugin.modelname(1) == expected
-
-
-@pytest.mark.parametrize('plugin, expected', [(genericframe_plugin(), "Raster"),
-                                              (genericls_plugin(), "Raster")])
-def test_modelfamily(plugin, expected):
-    assert plugin.modelfamily(1) == expected
-
-
-@pytest.mark.parametrize('plugin, state',
-                         [(genericframe_plugin(), {'model_name':'USGS_ASTRO_FRAME_SENSOR_MODEL'}),
-                          (genericls_plugin(), {"STA_SENSOR_MODEL_NAME":"USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL"})])
-def test_modelname_from_state(plugin, state):
-    name = plugin.modelname_from_state(json.dumps(state))
-    assert name == state[list(state)[0]]
-
-
-@pytest.mark.parametrize('plugin, state',
-                         [(genericframe_plugin(), {'bad_name':'USGS_ASTRO_FRAME_SENSOR_MODEL'}),
-                          (genericls_plugin(), {"BADKEY_GOODVALUE":"USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL"})])
-def test_modelname_from_state_bad_key(plugin, state):
-    with pytest.raises(RuntimeError) as err:
-        name = plugin.modelname_from_state(json.dumps(state))
-    assert "key in the model" in str(err.value)
-
-
-@pytest.mark.parametrize('plugin, state',
-                         [(genericframe_plugin(), {'model_name':'foo'}),
-                          (genericls_plugin(), {"STA_SENSOR_MODEL_NAME":"foo"})])
-def test_modelname_from_state_bad_name(plugin, state):
-    with pytest.raises(RuntimeError) as err:
-        name = plugin.modelname_from_state(json.dumps(state))
-    assert "Sensor model not supported." in str(err.value)
-
-
-@pytest.mark.parametrize('plugin, name, state',
-                         [(genericframe_plugin(), "USGS_ASTRO_FRAME_SENSOR_MODEL", nac_state()),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL", ctx_state()),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL", hrsc_state())])
-def test_can_model_be_constructed_from_state(plugin, name, state):
-    try:
-        state = json.dumps(state)
-    except: pass
-    constructible = plugin.can_model_be_constructed_from_state(name, state)
-    assert constructible == True
-
-    name = 'foo'
-    constructible = plugin.can_model_be_constructed_from_state(name, state)
-    assert constructible == False
-
-
-@pytest.mark.parametrize('plugin, name, i',
-                         [(genericframe_plugin(), 'USGS_ASTRO_FRAME_SENSOR_MODEL', mdis_isd()),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL", ctx_isd()),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL", hrsc_isd())])
-def test_can_isd_be_converted_to_model_state(plugin, name, i):
-    res = plugin.can_isd_be_converted_to_model_state(i, name)
-    assert res == True
-
-
-@pytest.mark.parametrize('plugin, name, i, state',
-                         [(genericframe_plugin(), 'USGS_ASTRO_FRAME_SENSOR_MODEL', mdis_isd(), nac_state()),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_PLUGIN", ctx_isd(), ctx_state()),
-                          (genericls_plugin(), "USGS_ASTRO_LINE_SCANNER_PLUGIN", hrsc_isd(), hrsc_state())])
-def test_convert_isd_to_model_state(plugin, name, i, state):
-    pstate = plugin.convert_isd_to_state(i, name)
-    for k, v in pstate.items():
-        v2 = state.get(k, None)
-        assert v == v2
-
-@pytest.mark.parametrize('plugin, i, name, param',
-                         [(genericframe_plugin(), mdis_isd(),
-                           'USGS_ASTRO_FRAME_SENSOR_MODEL', "focal_length"),
-                          (genericls_plugin(), ctx_isd(),
-                           "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL", "FOCAL")])
-def test_convert_isd_to_model_state_bad(plugin, i, name, param):
-    # Trash the isd and check error handling
-    i.clear_params(param)
-    with pytest.raises(RuntimeError) as err:
-        state = plugin.convert_isd_to_state(i, name)
-    assert "Sensor model support data" in str(err.value)
-
-
-@pytest.mark.parametrize('plugin, state, instance', [(genericframe_plugin(), nac_state(), cam.genericframe.SensorModel),
-                                               (genericls_plugin(), ctx_state(), cam.genericls.SensorModel),
-                                               (genericls_plugin(), hrsc_state(), cam.genericls.SensorModel)])
-def test_construct_model_from_state(plugin, state, instance):
-    camera = plugin.from_state(json.dumps(state))
-    assert isinstance(camera, instance)
-
-@pytest.mark.parametrize('plugin, state, instance', [(genericframe_plugin(), nac_state(), cam.genericframe.SensorModel),
-                                              (genericls_plugin(), ctx_state(), cam.genericls.SensorModel),
-                                              (genericls_plugin(), hrsc_state(), cam.genericls.SensorModel)])
-def test_construct_model_from_bad_state(plugin, state, instance):
-    # Remove the an entry from the state, making it invalid
-    k = list(state.keys())[0]
-    state.pop(k, None)
-    with pytest.raises(RuntimeError) as err:
-        camera = plugin.from_state(json.dumps(state))
-    assert "Model state is not" in str(err.value)
-
-@pytest.mark.parametrize('plugin, isd, modelname',
-                         [(genericframe_plugin(), mdis_isd(), 'USGS_ASTRO_FRAME_SENSOR_MODEL'),
-                          (genericls_plugin(), ctx_isd(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL"),
-                          (genericls_plugin(), hrsc_isd(), "USGS_ASTRO_LINE_SCANNER_SENSOR_MODEL")])
-def test_can_mode_be_constructed_from_isd(plugin, isd, modelname):
-    assert plugin.check_isd_construction(isd, modelname)
diff --git a/tests/test_serialization.py b/tests/test_serialization.py
deleted file mode 100644
index 81df0f7ced41fdc53415a2cee16109fdba8926b0..0000000000000000000000000000000000000000
--- a/tests/test_serialization.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import pickle
-
-import pytest
-
-import usgscam as cam
-
-def test_pickle_io(generic_model):
-    pfile = pickle.dumps(generic_model, 2)
-    loaded_model = pickle.loads(pfile)
-    assert generic_model.name == loaded_model.name
-    assert isinstance(loaded_model, cam.genericframe.SensorModel)
-
-def test_ls_pickle_io(ctx_model):
-    pfile = pickle.dumps(ctx_model, 2)
-    loaded_model = pickle.loads(pfile)
-    assert ctx_model.name == loaded_model.name
-    assert isinstance(loaded_model, cam.genericls.SensorModel)
diff --git a/usgscam/__init__.py b/usgscam/__init__.py
deleted file mode 100644
index c0b14c512b52578fa3535b277fd301843a1e29ad..0000000000000000000000000000000000000000
--- a/usgscam/__init__.py
+++ /dev/null
@@ -1,20 +0,0 @@
-
-from pkg_resources import get_distribution, DistributionNotFound
-import os.path
-
-try:
-    _dist = get_distribution('autocnet')
-    # Normalize case for Windows systems
-    dist_loc = os.path.normcase(_dist.location)
-    here = os.path.normcase(__file__)
-    if not here.startswith(os.path.join(dist_loc, 'autocnet')):
-        # not installed, but there is another version that *is*
-        raise DistributionNotFound
-except DistributionNotFound:
-    __version__ = 'Please install this project with setup.py'
-else:
-    __version__ = _dist.version
-
-import usgscam.genericframe
-import usgscam.genericls
-import usgscam.orex
diff --git a/usgscam/genericframe.pxd b/usgscam/genericframe.pxd
deleted file mode 100644
index b88152d161720b98d64e146cd3e65721fe3e6d7e..0000000000000000000000000000000000000000
--- a/usgscam/genericframe.pxd
+++ /dev/null
@@ -1,88 +0,0 @@
-from libcpp.string cimport string
-from libcpp.cast cimport dynamic_cast
-from libcpp cimport bool
-from libcpp.pair cimport pair
-from libcpp.vector cimport vector
-
-from cycsm.isd cimport CppIsd
-from cycsm.csm cimport CppEcefCoord, CppImageCoord, CppImageVector, CppEcefVector, CppEcefLocus, CppSet, CppType
-from cycsm.model cimport CppModel
-from cycsm.version cimport CppVersion
-from cycsm.correlationmodel cimport CppNoCorrelationModel
-from cycsm.rastergm cimport CppSensorPartials
-
-cdef extern from "UsgsAstroFrameSensorModel.h":
-    cdef cppclass CppFrameSensorModel "UsgsAstroFrameSensorModel":
-        CppUsgsAstroFrameNacSensorModel() except +
-        CppEcefCoord imageToGround(CppImageCoord imagePt, double height, double precision) except +
-        CppImageCoord groundToImage(CppEcefCoord groundPt, double desiredPrecision) except +
-        CppImageCoord getImageStart()
-        CppImageVector getImageSize()
-
-        string getModelState()
-        CppEcefVector getIlluminationDirection(CppEcefCoord &groundPoint)
-        CppEcefCoord getSensorPosition(CppImageCoord &imagePt)
-        CppEcefVector getSensorVelocity(CppImageCoord &imagePt)
-        CppEcefLocus imageToProximateImagingLocus(CppImageCoord &imagePt,
-                                                   CppEcefCoord &groundPt,
-                                                   double desiredPrecision)
-        CppEcefLocus imageToRemoteImagingLocus(CppImageCoord &imagePt,
-                                                  double desiredPrecision)
-        CppSensorPartials computeSensorPartials(int index,
-                                                CppImageCoord &imagePt,
-                                                CppEcefCoord &groundPt,
-                                                double desiredPrecision) except +
-
-        # Newly implemented
-        CppSensorPartials computeSensorPartials(int index,
-                                                CppEcefCoord &groundPt,
-                                                double desiredPrecision) except +
-
-
-        vector[CppSensorPartials] computeAllSensorPartials(CppEcefCoord &groundPt,
-                                                           CppSet pset,
-                                                           double desiredPrecision) except +
-
-        vector[CppSensorPartials] computeAllSensorPartials(CppImageCoord &imagePt,
-                                                           CppEcefCoord &groundPt,
-                                                           CppSet pset,
-                                                           double desiredPrecision) except +
-
-        CppType getParameterType(int index) except +
-        void setParameterType(int index, CppType pType) except +
-
-        vector[double] computeGroundPartials(CppEcefCoord &groundPt)
-
-        pair[CppImageCoord, CppImageCoord] getValidImageRange()
-        pair[double, double] getValidHeightRange()
-        CppEcefVector getSensorVelocity(double time) except +
-        CppEcefCoord getSensorPosition(double time) except +
-        CppVersion getVersion()
-        string getModelName()
-        string getSensorType()
-        string getSensorMode()
-        #CppNoCorrelationModel getCorrelationModel() # Not wrapped
-        void replaceModelState(const string& argState);
-
-cdef extern from "UsgsAstroFramePlugin.h":
-    cdef cppclass CppUsgsAstroFramePlugin "UsgsAstroFramePlugin":
-        CppUsgsAstroFramePlugin() except +
-
-        string getPluginName()
-        string getManufacturer()
-        string getModelNameFromModelState(const string modelState) except +
-        string getReleaseDate()
-        CppVersion getCsmVersion()
-        size_t getNumModels()
-        string getModelName(size_t modelIndex)
-        string getModelFamily(size_t modelIndex)
-        bool canModelBeConstructedFromISD(CppIsd isd, const string modelname) except +
-        bool canModelBeConstructedFromState(const string modelName, const string modelState) except +
-        bool canISDBeConvertedToModelState(CppIsd isd, const string modelName) except *
-        string convertISDToModelState(CppIsd isd, const string modelname) except +
-        CppModel *constructModelFromISD(CppIsd &isd, string &modelname) except +
-        CppModel *constructModelFromState(string modelState) except +
-
-#  For casting from the CSM Model into our specific camera model - I hope.
-cdef extern from *:
-    CppFrameSensorModel* dynamic_cast_model_ptr "dynamic_cast<UsgsAstroFrameSensorModel*>"(CppModel*) except NULL
diff --git a/usgscam/genericframe.pyx b/usgscam/genericframe.pyx
deleted file mode 100644
index 17e3859d1c52278fe9b46ca3f599ac012bde8b48..0000000000000000000000000000000000000000
--- a/usgscam/genericframe.pyx
+++ /dev/null
@@ -1,389 +0,0 @@
-import numpy as np
-import ast
-import json
-from cython.operator cimport dereference as deref
-
-from cycsm.csm import EcefCoord, ImageCoord, Set, Type
-from cycsm.isd cimport Isd
-from cycsm.version import Version
-#from cycsm.correlationmodel cimport NoCorrelationModel, CppNoCorrelationModel
-
-cdef class SensorModel:
-    cdef:
-        CppFrameSensorModel *thisptr
-
-    def __cinit__(self, _raw=False):
-        if _raw is False:
-            self.thisptr = new CppFrameSensorModel()
-        else:
-            self.thisptr = NULL
-
-    def __dealloc__(self):
-        del self.thisptr
-
-    def __getstate__(self):
-        """
-        Get the object state to support serialization via pickle.
-        """
-        return self.state.encode()
-
-    def __setstate__(self, state):
-        self.state = state
-
-    @staticmethod
-    cdef factory(CppFrameSensorModel *obj):
-        py_obj = result = SensorModel.__new__(SensorModel, _raw=True)
-        (<SensorModel>py_obj).thisptr = obj
-        return result
-
-    def imageToGround(self, line, sample, double height, double precision=0.001):
-        """
-        Given an image line/sample and a height, compute the Ellipse Centered
-        Ellipse Fixed coordinate intersection.
-
-        In the case of MDIS NAC and WAC this is computed using the collinearity
-        equations.
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-        sample : numeric
-                 The sample number in the image
-
-        height : numeric
-                 the height above the sphere/ellipsoid at which to compute
-                 the look vector intersection
-
-        Returns
-        -------
-         : list
-           The x, y, z ground intersection coordinate in ECEF
-        """
-        pt = ImageCoord(line, sample)
-        e = self.thisptr.imageToGround(pt._ptr, height, precision)
-        return [e.x, e.y, e.z]
-
-    def groundToImage(self, x, y, z, double precision=0.001):
-        """
-        Given an Earth Centered Earth Fixed (ECEF) ground coordinate,
-        compute the look intersection into the image.
-
-        This utilizes the collinearity equations.
-
-        Parameters
-        ----------
-        x : numeric
-            The 'ground' x coordinate
-
-        y : numeric
-            The 'ground' y coordinate
-
-        z : numeric
-            The 'ground' z coordinate
-
-        Returns
-        -------
-         : list
-           of line/sample coordinates in the image
-        """
-        ground = EcefCoord(x,y,z)
-        pt = ImageCoord()
-        e = self.thisptr.groundToImage(ground._ptr, precision)
-        return [e.line, e.samp]
-
-    def image_to_proximate_imaging_locus(self, line, sample, x, y, z, double precision=0.001):
-        """
-        Compute a proximate imaging locus, a vector approximation of the imaging locus for the
-        given line/sample nearest the given ECEF x, y, z.  Precision refers to the point (location)
-        but not the orientation (direction).
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-
-        sample : numeric
-                 The sample number in the image
-
-        x : numeric
-            The 'ground' x coordinate
-
-        y : numeric
-            The 'ground' y coordinate
-
-        z : numeric
-            The 'ground' z coordinate
-
-        Returns
-        -------
-        res.point : dict
-                    containing 'x', 'y', 'z' coordinates
-        res.direction : dict
-                        containing 'x', 'y', 'z' vector orientations
-        """
-        i = ImageCoord(line, sample)
-        g = EcefCoord(x, y, z)
-        res = self.thisptr.imageToProximateImagingLocus(i._ptr, g._ptr, precision)
-        return res.point, res.direction
-
-    def image_to_remote_imaging_locus(self, line, sample, double precision=0.001):
-        """
-        Compute a proximate imaging locus, a vector approximation of the imaging locus for the
-        given line/sample nearest the given ECEF x, y, z.  Precision refers to the point (location)
-        but not the orientation (direction).
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-
-        sample : numeric
-                 The sample number in the image
-
-        Returns
-        -------
-        res.point : dict
-                    containing 'x', 'y', 'z' coordinates
-        res.direction : dict
-                        containing 'x', 'y', 'z' vector orientations
-        """
-        i = ImageCoord(line, sample)
-        res = self.thisptr.imageToRemoteImagingLocus(i._ptr, precision)
-        return res.point, res.direction
-
-    def compute_sensor_partials(self, index, x, y, z, line=None, sample=None, double precision=0.001):
-        g = EcefCoord(x, y, z)
-        if line != None and sample != None:
-            i = ImageCoord(line, sample)
-            partials = self.thisptr.computeSensorPartials(<int>index, <CppImageCoord>i._ptr, <CppEcefCoord>g._ptr, <double>precision)
-        else:
-            partials = self.thisptr.computeSensorPartials(<int>index, <CppEcefCoord>g._ptr, <double>precision)
-        return partials
-
-    def compute_all_sensor_partials(self, x, y, z, param=0, line=None, sample=None, double precision=0.001):
-        g = EcefCoord(x,y,z)
-        pset = Set(param)
-        if line != None and sample != None:
-            i = ImageCoord(line, sample)
-            partials = self.thisptr.computeAllSensorPartials(<CppImageCoord>i._ptr, <CppEcefCoord>g._ptr, <CppSet>pset, <double>precision)
-        else:
-            partials = self.thisptr.computeAllSensorPartials(<CppEcefCoord>g._ptr, pset, <double>precision)
-        return partials
-
-    def compute_ground_partials(self, x, y, z):
-        g = EcefCoord(x,y,z)
-        return self.thisptr.computeGroundPartials(g._ptr)
-
-    def get_parameter_type(self, index):
-        return Type(self.thisptr.getParameterType(index))
-
-    def set_parameter_type(self, int index, ptype):
-        ptype = Type(ptype)
-        self.thisptr.setParameterType(index, ptype);
-
-    @property
-    def imagesize(self):
-        """
-        The total number of lines/samples in the image.
-
-        Returns:
-         : list
-            lines / sample count
-        """
-        res = self.thisptr.getImageSize()
-        return res.line, res.samp
-
-    @property
-    def imagestart(self):
-        """
-        The line and sample start.
-
-        Returns
-        -------
-         : list
-           line/sample start locations
-        """
-        res = self.thisptr.getImageStart()
-        return res.line, res.samp
-
-    @property
-    def state(self):
-        """
-        The current state of the model, as a JSON string.
-        """
-        return self.thisptr.getModelState().decode()
-
-    @state.setter
-    def state(self, state):
-        """
-        Replace the current current model state with the passed model state
-        """
-        self.thisptr.replaceModelState(state)
-
-    @property
-    def name(self):
-        """
-        Name of the model.
-        """
-        return self.thisptr.getModelName().decode()
-
-    @property
-    def sensortype(self):
-        return self.thisptr.getSensorType().decode()
-
-    @property
-    def sensormode(self):
-        return self.thisptr.getSensorMode().decode()
-
-    @property
-    def imagerange(self):
-        """
-        Get the start and stop pixel counts as a tuple in
-        the form: ((min_pt.line, min_pt.sample), (max_pt.line, max_pt.sample))
-        """
-        min_pt, max_pt = self.thisptr.getValidImageRange()
-        return (min_pt['line'], min_pt['samp']),\
-               (max_pt['line'], max_pt['samp'])
-
-    @property
-    def heightrange(self):
-        return self.thisptr.getValidHeightRange()
-
-    #@property
-    #def version(self):
-    #    return self.thisptr.getVersion().major#.version
-
-    def sensor_time_position(self, time):
-        """
-        Compute the sensor position given an image time.
-
-        Parameters
-        ----------
-        time : numeric
-               The image time
-
-        Returns
-        -------
-         : list
-           The sensor position vector in ECEF coordinates (m).
-        """
-        res = self.thisptr.getSensorPosition(<double> time)
-        return [res.x, res.y, res.z]
-
-    def sensor_coordinate_position(self, line, sample):
-        """
-        Compute the sensor position given a line/sample in the image.
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-        sample : numeric
-                 The sample number in the image
-
-        Returns
-        -------
-         : list
-           The sensor position vector in ECEF coordinates (m).
-        """
-        i = ImageCoord(line, sample)
-        res = self.thisptr.getSensorPosition(<CppImageCoord> i._ptr)
-        return [res.x, res.y, res.z]
-
-    def sensor_time_velocity(self, time):
-        res = self.thisptr.getSensorVelocity(<double> time)
-        return [res.x, res.y, res.z]
-
-    def sensor_coordinate_velocity(self, line, sample):
-        i = ImageCoord(line, sample)
-        res = self.thisptr.getSensorVelocity(<CppImageCoord> i._ptr)
-        return [res.x, res.y, res.z]
-
-    def illumination_direction(self, ground_point):
-        """
-        Given an ellipse centered ellipse fixed coordinate, compute the
-        illumination direction.
-
-        Parameters
-        ----------
-        ground_point : list
-                       of x, y, z ECEF coordiantes
-
-        Returns
-        -------
-         : list
-           x, y, z, vector describing the illumination direction
-        """
-        pt = EcefCoord(*ground_point)
-        res = self.thisptr.getIlluminationDirection(pt._ptr)
-        return [res.x, res.y, res.z]
-
-cdef class Plugin:
-    cdef:
-        CppUsgsAstroFramePlugin *thisptr
-
-    def __cinit__(self):
-        self.thisptr = new CppUsgsAstroFramePlugin()
-
-    def __dealloc__(self):
-        del self.thisptr
-
-    @property
-    def name(self):
-        return self.thisptr.getPluginName().decode()
-
-    @property
-    def manufacturer(self):
-        return self.thisptr.getManufacturer().decode()
-
-    @property
-    def releasedate(self):
-        return self.thisptr.getReleaseDate().decode()
-
-    #@property
-    #def csmversion(self):
-    #    return self.thisptr.getCsmVersion().major#.version
-
-    @property
-    def nmodels(self):
-        return self.thisptr.getNumModels()
-
-
-    def modelfamily(self, modelindex):
-        return self.thisptr.getModelFamily(modelindex).decode()
-
-    def modelname_from_state(self, state):
-        state = state.encode()
-        res = self.thisptr.getModelNameFromModelState(state).decode()
-        return res
-
-    def modelname(self, modelindex):
-        return self.thisptr.getModelName(modelindex).decode()
-
-    def can_model_be_constructed_from_state(self, name, state):
-        name = name.encode()
-        state = state.encode()
-        return self.thisptr.canModelBeConstructedFromState(name, state)
-
-    def can_isd_be_converted_to_model_state(self, Isd isd, modelname):
-        print(modelname, type(isd))
-        modelname = modelname.encode()
-        return self.thisptr.canISDBeConvertedToModelState(isd.thisptr[0], modelname)
-
-    def convert_isd_to_state(self, Isd isd, modelname):
-        modelname = modelname.encode()
-        return json.loads(self.thisptr.convertISDToModelState(isd.thisptr[0], modelname).decode())
-
-    def check_isd_construction(self, Isd isd, modelname):
-        modelname = str(modelname).encode()
-        return self.thisptr.canModelBeConstructedFromISD(isd.thisptr[0], modelname)
-
-    def from_isd(self, Isd isd, modelname):
-        modelname = str(modelname).encode()
-        return SensorModel.factory(dynamic_cast_model_ptr(self.thisptr.constructModelFromISD(isd.thisptr[0], modelname)))
-
-    def from_state(self, state):
-        state = state.encode()
-        #self.thisptr.constructModelFromState(state)
-        return SensorModel.factory(dynamic_cast_model_ptr(self.thisptr.constructModelFromState(state)))
diff --git a/usgscam/genericls.pxd b/usgscam/genericls.pxd
deleted file mode 100644
index 3bd14069ded653d080d36e7ee369987bf8137863..0000000000000000000000000000000000000000
--- a/usgscam/genericls.pxd
+++ /dev/null
@@ -1,91 +0,0 @@
-from libcpp.string cimport string
-from libcpp.cast cimport dynamic_cast
-from libcpp cimport bool
-from libcpp.pair cimport pair
-from libcpp.vector cimport vector
-
-from cycsm.isd cimport CppIsd
-from cycsm.csm cimport CppEcefCoord, CppImageCoord, CppImageVector, CppEcefVector, CppEcefLocus, CppSet, CppType
-from cycsm.model cimport CppModel
-from cycsm.version cimport CppVersion
-from cycsm.correlationmodel cimport CppNoCorrelationModel
-from cycsm.rastergm cimport CppSensorPartials
-from cycsm.ellipsoid cimport CppEllipsoid
-
-cdef extern from "UsgsAstroLsSensorModel.h":
-    cdef cppclass CppGenericLsSensorModel "UsgsAstroLsSensorModel":
-        CppGenericLsSensorModel() except +
-        CppEcefCoord imageToGround(CppImageCoord imagePt, double height, double precision) except +
-        CppImageCoord groundToImage(CppEcefCoord groundPt, double desiredPrecision) except +
-        CppImageCoord getImageStart()
-        CppImageVector getImageSize()
-
-        string getModelState()
-        CppEcefVector getIlluminationDirection(CppEcefCoord &groundPoint) except +
-        CppEcefCoord getSensorPosition(CppImageCoord &imagePt)
-        CppEcefVector getSensorVelocity(CppImageCoord &imagePt)
-        CppEcefLocus imageToProximateImagingLocus(CppImageCoord &imagePt,
-                                                   CppEcefCoord &groundPt,
-                                                   double desiredPrecision)
-        CppEcefLocus imageToRemoteImagingLocus(CppImageCoord &imagePt,
-                                                  double desiredPrecision)
-        CppSensorPartials computeSensorPartials(int index,
-                                                CppImageCoord &imagePt,
-                                                CppEcefCoord &groundPt,
-                                                double desiredPrecision) except +
-
-        # Newly implemented
-        CppSensorPartials computeSensorPartials(int index,
-                                                CppEcefCoord &groundPt,
-                                                double desiredPrecision) except +
-
-
-        vector[CppSensorPartials] computeAllSensorPartials(CppEcefCoord &groundPt,
-                                                           CppSet pset,
-                                                           double desiredPrecision) except +
-
-        vector[CppSensorPartials] computeAllSensorPartials(CppImageCoord &imagePt,
-                                                           CppEcefCoord &groundPt,
-                                                           CppSet pset,
-                                                           double desiredPrecision) except +
-
-        CppType getParameterType(int index) except +
-        void setParameterType(int index, CppType pType) except +
-
-        vector[double] computeGroundPartials(CppEcefCoord &groundPt)
-
-        pair[CppImageCoord, CppImageCoord] getValidImageRange()
-        pair[double, double] getValidHeightRange()
-        CppEcefVector getSensorVelocity(double time) except +
-        CppEcefCoord getSensorPosition(double time) except +
-        CppVersion getVersion()
-        string getModelName()
-        string getSensorType()
-        string getSensorMode()
-        CppEllipsoid getEllipsoid()
-        void setEllipsoid(const CppEllipsoid &ellipsoid)
-        void replaceModelState(const string& argState);
-
-cdef extern from "UsgsAstroLsPlugin.h":
-    cdef cppclass CppGenericLsPlugin "UsgsAstroLsPlugin":
-        # Private constructor...
-        CppGenericLsPlugin() except +
-
-        string getPluginName()
-        string getManufacturer()
-        string getModelNameFromModelState(const string modelState) except +
-        string getReleaseDate()
-        CppVersion getCsmVersion()
-        size_t getNumModels()
-        string getModelName(size_t modelIndex)
-        string getModelFamily(size_t modelIndex)
-        bool canModelBeConstructedFromISD(CppIsd isd, const string modelname) except +
-        bool canModelBeConstructedFromState(const string modelName, const string modelState) except +
-        bool canISDBeConvertedToModelState(CppIsd isd, const string modelName) except *
-        string convertISDToModelState(CppIsd isd, const string modelname) except +
-        CppModel *constructModelFromISD(CppIsd &isd, string &modelname) except +
-        CppModel *constructModelFromState(string modelState) except +
-
-#  For casting from the CSM Model into our specific camera model - I hope.
-cdef extern from *:
-    CppGenericLsSensorModel* dynamic_cast_model_ptr "dynamic_cast<UsgsAstroLsSensorModel*>"(CppModel*) except NULL
diff --git a/usgscam/genericls.pyx b/usgscam/genericls.pyx
deleted file mode 100644
index 913d18be20d6f9610e45f0da5a85e1b78bb36b33..0000000000000000000000000000000000000000
--- a/usgscam/genericls.pyx
+++ /dev/null
@@ -1,393 +0,0 @@
-import numpy as np
-import ast
-import json
-from cython.operator cimport dereference as deref
-
-from cycsm.csm import EcefCoord, ImageCoord, Set, Type
-from cycsm.ellipsoid import Ellipsoid
-from cycsm.ellipsoid cimport CppEllipsoid
-from cycsm.isd cimport Isd
-from cycsm.version import Version
-
-
-cdef class SensorModel:
-    cdef:
-        CppGenericLsSensorModel *thisptr
-
-    def __cinit__(self, _raw=False):
-        if _raw is False:
-            self.thisptr = new CppGenericLsSensorModel()
-        else:
-            self.thisptr = NULL
-
-    def __dealloc__(self):
-        del self.thisptr
-
-    def __getstate__(self):
-        return self.state.encode()
-
-    def __setstate__(self, state):
-        self.state = state
-
-    @staticmethod
-    cdef factory(CppGenericLsSensorModel *obj):
-        py_obj = result = SensorModel.__new__(SensorModel, _raw=True)
-        (<SensorModel>py_obj).thisptr = obj
-        return result
-
-    def imageToGround(self, line, sample, double height, double precision=0.001):
-        """
-        Given an image line/sample and a height, compute the Ellipse Centered
-        Ellipse Fixed coordinate intersection.
-
-        In the case of MDIS NAC and WAC this is computed using the collinearity
-        equations.
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-        sample : numeric
-                 The sample number in the image
-
-        height : numeric
-                 the height above the sphere/ellipsoid at which to compute
-                 the look vector intersection
-
-        Returns
-        -------
-         : list
-           The x, y, z ground intersection coordinate in ECEF
-        """
-        pt = ImageCoord(line, sample)
-        e = self.thisptr.imageToGround(pt._ptr, height, precision)
-        return [e.x, e.y, e.z]
-
-    def groundToImage(self, x, y, z, double precision=0.001):
-        """
-        Given an Earth Centered Earth Fixed (ECEF) ground coordinate,
-        compute the look intersection into the image.
-
-        This utilizes the collinearity equations.
-
-        Parameters
-        ----------
-        x : numeric
-            The 'ground' x coordinate
-
-        y : numeric
-            The 'ground' y coordinate
-
-        z : numeric
-            The 'ground' z coordinate
-
-        Returns
-        -------
-         : list
-           of line/sample coordinates in the image
-        """
-        ground = EcefCoord(x,y,z)
-        pt = ImageCoord()
-        e = self.thisptr.groundToImage(ground._ptr, precision)
-        return [e.line, e.samp]
-
-    def image_to_proximate_imaging_locus(self, line, sample, x, y, z, double precision=0.001):
-        """
-        Compute a proximate imaging locus, a vector approximation of the imaging locus for the
-        given line/sample nearest the given ECEF x, y, z.  Precision refers to the point (location)
-        but not the orientation (direction).
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-
-        sample : numeric
-                 The sample number in the image
-
-        x : numeric
-            The 'ground' x coordinate
-
-        y : numeric
-            The 'ground' y coordinate
-
-        z : numeric
-            The 'ground' z coordinate
-
-        Returns
-        -------
-        res.point : dict
-                    containing 'x', 'y', 'z' coordinates
-        res.direction : dict
-                        containing 'x', 'y', 'z' vector orientations
-        """
-        i = ImageCoord(line, sample)
-        g = EcefCoord(x, y, z)
-        res = self.thisptr.imageToProximateImagingLocus(i._ptr, g._ptr, precision)
-        return res.point, res.direction
-
-    def image_to_remote_imaging_locus(self, line, sample, double precision=0.001):
-        """
-        Compute a proximate imaging locus, a vector approximation of the imaging locus for the
-        given line/sample nearest the given ECEF x, y, z.  Precision refers to the point (location)
-        but not the orientation (direction).
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-
-        sample : numeric
-                 The sample number in the image
-
-        Returns
-        -------
-        res.point : dict
-                    containing 'x', 'y', 'z' coordinates
-        res.direction : dict
-                        containing 'x', 'y', 'z' vector orientations
-        """
-        i = ImageCoord(line, sample)
-        res = self.thisptr.imageToRemoteImagingLocus(i._ptr, precision)
-        return res.point, res.direction
-
-    def compute_sensor_partials(self, index, x, y, z, line=None, sample=None, double precision=0.001):
-        g = EcefCoord(x, y, z)
-        if line != None and sample != None:
-            i = ImageCoord(line, sample)
-            partials = self.thisptr.computeSensorPartials(<int>index, <CppImageCoord>i._ptr, <CppEcefCoord>g._ptr, <double>precision)
-        else:
-            partials = self.thisptr.computeSensorPartials(<int>index, <CppEcefCoord>g._ptr, <double>precision)
-        return partials
-
-    def compute_all_sensor_partials(self, x, y, z, param=0, line=None, sample=None, double precision=0.001):
-        g = EcefCoord(x,y,z)
-        pset = Set(param)
-        if line != None and sample != None:
-            i = ImageCoord(line, sample)
-            partials = self.thisptr.computeAllSensorPartials(<CppImageCoord>i._ptr, <CppEcefCoord>g._ptr, <CppSet>pset, <double>precision)
-        else:
-            partials = self.thisptr.computeAllSensorPartials(<CppEcefCoord>g._ptr, pset, <double>precision)
-        return partials
-
-    def compute_ground_partials(self, x, y, z):
-        g = EcefCoord(x,y,z)
-        return self.thisptr.computeGroundPartials(g._ptr)
-
-    def get_parameter_type(self, index):
-        return Type(self.thisptr.getParameterType(index))
-
-    def set_parameter_type(self, int index, ptype):
-        ptype = Type(ptype)
-        self.thisptr.setParameterType(index, ptype);
-
-    @property
-    def imagesize(self):
-        """
-        The total number of lines/samples in the image.
-
-        Returns:
-         : list
-            lines / sample count
-        """
-        res = self.thisptr.getImageSize()
-        return res.line, res.samp
-
-    @property
-    def imagestart(self):
-        """
-        The line and sample start.
-
-        Returns
-        -------
-         : list
-           line/sample start locations
-        """
-        res = self.thisptr.getImageStart()
-        return res.line, res.samp
-
-    @property
-    def state(self):
-        """
-        The current state of the model, as a string, that can be used to
-        reinstantiate the model using the replace_model_state method.
-        """
-        return self.thisptr.getModelState().decode()
-
-    @state.setter
-    def state(self, state):
-        self.thisptr.replaceModelState(state)
-
-    @property
-    def name(self):
-        """
-        Name of the model.
-        """
-        return self.thisptr.getModelName().decode()
-
-    @property
-    def sensortype(self):
-        return self.thisptr.getSensorType().decode()
-
-    @property
-    def sensormode(self):
-        return self.thisptr.getSensorMode().decode()
-
-    @property
-    def imagerange(self):
-        """
-        Get the start and stop pixel counts as a tuple in
-        the form: ((min_pt.line, min_pt.sample), (max_pt.line, max_pt.sample))
-        """
-        min_pt, max_pt = self.thisptr.getValidImageRange()
-        return (min_pt['line'], min_pt['samp']),\
-               (max_pt['line'], max_pt['samp'])
-
-    @property
-    def heightrange(self):
-        return self.thisptr.getValidHeightRange()
-
-    @property
-    def ellipsoid(self):
-        #TODO: Return a proper obj
-        smajor = self.thisptr.getEllipsoid().getSemiMajorRadius()
-        sminor = self.thisptr.getEllipsoid().getSemiMinorRadius()
-        return smajor, sminor
-
-
-    #@property
-    #def version(self):
-    #    return self.thisptr.getVersion().major#.version
-
-    def sensor_time_position(self, time):
-        """
-        Compute the sensor position given an image time.
-
-        Parameters
-        ----------
-        time : numeric
-               The image time
-
-        Returns
-        -------
-         : list
-           The sensor position vector in ECEF coordinates (m).
-        """
-        res = self.thisptr.getSensorPosition(<double> time)
-        return [res.x, res.y, res.z]
-
-    def sensor_coordinate_position(self, line, sample):
-        """
-        Compute the sensor position given a line/sample in the image.
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-        sample : numeric
-                 The sample number in the image
-
-        Returns
-        -------
-         : list
-           The sensor position vector in ECEF coordinates (m).
-        """
-        i = ImageCoord(line, sample)
-        res = self.thisptr.getSensorPosition(<CppImageCoord> i._ptr)
-        return [res.x, res.y, res.z]
-
-    def sensor_time_velocity(self, time):
-        res = self.thisptr.getSensorVelocity(<double> time)
-        return [res.x, res.y, res.z]
-
-    def sensor_coordinate_velocity(self, line, sample):
-        i = ImageCoord(line, sample)
-        res = self.thisptr.getSensorVelocity(<CppImageCoord> i._ptr)
-        return [res.x, res.y, res.z]
-
-    def illumination_direction(self, ground_point):
-        """
-        Given an ellipse centered ellipse fixed coordinate, compute the
-        illumination direction.
-
-        Parameters
-        ----------
-        ground_point : list
-                       of x, y, z ECEF coordiantes
-
-        Returns
-        -------
-         : list
-           x, y, z, vector describing the illumination direction
-        """
-        pt = EcefCoord(*ground_point)
-        res = self.thisptr.getIlluminationDirection(pt._ptr)
-        return [res.x, res.y, res.z]
-
-
-cdef class Plugin:
-    cdef:
-        CppGenericLsPlugin *thisptr
-
-    def __cinit__(self):
-        self.thisptr = new CppGenericLsPlugin()
-
-    def __dealloc__(self):
-        del self.thisptr
-
-    @property
-    def name(self):
-        return self.thisptr.getPluginName().decode()
-
-    @property
-    def manufacturer(self):
-        return self.thisptr.getManufacturer().decode()
-
-    @property
-    def releasedate(self):
-        return self.thisptr.getReleaseDate().decode()
-
-    #@property
-    #def csmversion(self):
-    #    return self.thisptr.getCsmVersion().major#.version
-
-    @property
-    def nmodels(self):
-        return self.thisptr.getNumModels()
-
-    def modelfamily(self, modelindex):
-        return self.thisptr.getModelFamily(modelindex).decode()
-
-    def modelname_from_state(self, state):
-        state = state.encode()
-        res = self.thisptr.getModelNameFromModelState(state).decode()
-        return res
-
-    def modelname(self, modelindex):
-        return self.thisptr.getModelName(modelindex).decode()
-
-    def can_model_be_constructed_from_state(self, name, state):
-        name = name.encode()
-        state = state.encode()
-        return self.thisptr.canModelBeConstructedFromState(name, state)
-
-    def can_isd_be_converted_to_model_state(self, Isd isd, modelname):
-        modelname = modelname.encode()
-        return self.thisptr.canISDBeConvertedToModelState(isd.thisptr[0], modelname)
-
-    def convert_isd_to_state(self, Isd isd, modelname):
-        modelname = modelname.encode()
-        return json.loads(self.thisptr.convertISDToModelState(isd.thisptr[0], modelname).decode())
-
-    def check_isd_construction(self, Isd isd, modelname):
-        modelname = str(modelname).encode()
-        return self.thisptr.canModelBeConstructedFromISD(isd.thisptr[0], modelname)
-
-    def from_isd(self, Isd isd, modelname):
-        modelname = str(modelname).encode()
-        return SensorModel.factory(dynamic_cast_model_ptr(self.thisptr.constructModelFromISD(isd.thisptr[0], modelname)))
-
-    def from_state(self, state):
-        state = state.encode()
-        #self.thisptr.constructModelFromState(state)
-        return SensorModel.factory(dynamic_cast_model_ptr(self.thisptr.constructModelFromState(state)))
diff --git a/usgscam/orex.pxd b/usgscam/orex.pxd
deleted file mode 100644
index 391b428e5e0b206facba6a42fc411c879ae50bde..0000000000000000000000000000000000000000
--- a/usgscam/orex.pxd
+++ /dev/null
@@ -1,55 +0,0 @@
-from libcpp.string cimport string
-from libcpp.cast cimport dynamic_cast
-from libcpp cimport bool
-from libcpp.pair cimport pair
-
-from cycsm.isd cimport CppIsd
-from cycsm.csm cimport CppEcefCoord, CppImageCoord, CppImageVector, CppEcefVector, CppEcefLocus
-from cycsm.model cimport CppModel
-
-cdef extern from "ORexSensorModel.h":
-    cdef cppclass CppORexSensorModel "ORexSensorModel":
-        CppORexSensorModel() except +
-        CppEcefCoord imageToGround(CppImageCoord imagePt, double height, double precision)
-        CppImageCoord groundToImage(CppEcefCoord groundPt, double desiredPrecision)
-        CppImageCoord getImageStart()
-        CppImageVector getImageSize()
-
-        string getModelState()
-        string getModelName()
-        CppEcefVector getIlluminationDirection(CppEcefCoord &groundPoint)
-        CppEcefCoord getSensorPosition(CppImageCoord &imagePt)
-        CppEcefCoord getSensorPosition(double time)
-        CppEcefVector getSensorVelocity(CppImageCoord &imagePt)
-        CppEcefVector getSensorVelocity(double time)
-        CppEcefLocus imageToProximateImagingLocus(CppImageCoord &imagePt,
-                                                   CppEcefCoord &groundPt,
-                                                   double desiredPrecision)
-        CppEcefLocus imageToRemoteImagingLocus(CppImageCoord &imagePt,
-                                                  double desiredPrecision)
-
-        #TODO: IMPLEMENT FOR CYTHON
-        # CppSensorPartials computeSensorPartials(int index, CppEcefCoord &groundPt)
-        # CppVersion getVersion()
-
-        #TODO: IMPLEMENT FOR CYTHON AND CPP
-        pair[CppImageCoord, CppImageCoord] getValidImageRange()
-        pair[double, double] getValidHeightRange()
-
-cdef extern from "ORexPlugin.h":
-    cdef cppclass CppORexPlugin "ORexPlugin":
-        CppORexPlugin() except +
-
-        string getPluginName()
-        string getManufacturer()
-        #string getReleaseDate()
-        #string getCsmVersion
-        size_t getNumModels()
-        string getModelName(size_t modelIndex)
-        bool canModelBeConstructedFromISD(CppIsd isd, const string modelname)
-        string convertISDToModelState(CppIsd isd, const string modelname)
-        CppModel *constructModelFromISD(CppIsd &isd, string &modelname)
-
-#  For casting from the CSM Model into our specific camera model - I hope.
-cdef extern from *:
-    CppORexSensorModel* dynamic_cast_model_ptr "dynamic_cast<ORexSensorModel*>"(CppModel*) except NULL
diff --git a/usgscam/orex.pyx b/usgscam/orex.pyx
deleted file mode 100644
index 04fe5ca000b68d15ca3457868064a714ec4823e7..0000000000000000000000000000000000000000
--- a/usgscam/orex.pyx
+++ /dev/null
@@ -1,282 +0,0 @@
-import numpy as np
-import ast
-from cython.operator cimport dereference as deref
-
-from cycsm.csm import EcefCoord, ImageCoord
-from cycsm.isd cimport Isd
-
-cdef class ORexSensorModel:
-    cdef:
-        CppORexSensorModel *thisptr
-
-    def __cinit__(self, _raw=False):
-        if _raw is False:
-            self.thisptr = new CppORexSensorModel()
-        else:
-            self.thisptr = NULL
-
-    def __dealloc__(self):
-        del self.thisptr
-
-    @staticmethod
-    cdef factory(CppORexSensorModel *obj):
-        py_obj = result = ORexSensorModel.__new__(ORexSensorModel, _raw=True)
-        (<ORexSensorModel>py_obj).thisptr = obj
-        return result
-
-    def imageToGround(self, line, sample, double height, double precision=0.001):
-        """
-        Given an image line/sample and a height, compute the Ellipse Centered
-        Ellipse Fixed coordinate intersection.
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-        sample : numeric
-                 The sample number in the image
-
-        height : numeric
-                 the height above the sphere/ellipsoid at which to compute
-                 the look vector intersection
-
-        Returns
-        -------
-         : list
-           The x, y, z ground intersection coordinate in ECEF
-        """
-        pt = ImageCoord(line, sample)
-        #TODO: Return the straight floats without the update to an EcefCoord
-        e = self.thisptr.imageToGround(pt._ptr, height, precision)
-        return [e.x, e.y, e.z]
-
-    def groundToImage(self, x, y, z, double precision=0.001):
-        """
-        Given an Earth Centered Earth Fixed (ECEF) ground coordinate,
-        compute the look intersection into the image.
-
-        This utilizes the collinearity equations.
-
-        Parameters
-        ----------
-        x : numeric
-            The 'ground' x coordinate
-
-        y : numeric
-            The 'ground' y coordinate
-
-        z : numeric
-            The 'ground' z coordinate
-
-        Returns
-        -------
-         : list
-           of line/sample coordinates in the image
-        """
-        ground = EcefCoord(x,y,z)
-        pt = ImageCoord()
-        e = self.thisptr.groundToImage(ground._ptr, precision)
-        return [e.line, e.samp]
-
-    def image_to_proximate_imaging_locus(self, line, sample, x, y, z, double precision=0.001):
-        """
-        Compute a proximate imaging locus, a vector approximation of the imaging locus for the
-        given line/sample nearest the given ECEF x, y, z.  Precision refers to the point (location)
-        but not the orientation (direction).
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-
-        sample : numeric
-                 The sample number in the image
-
-        x : numeric
-            The 'ground' x coordinate
-
-        y : numeric
-            The 'ground' y coordinate
-
-        z : numeric
-            The 'ground' z coordinate
-
-        Returns
-        -------
-        res.point : dict
-                    containing 'x', 'y', 'z' coordinates
-        res.direction : dict
-                        containing 'x', 'y', 'z' vector orientations
-        """
-        i = ImageCoord(line, sample)
-        g = EcefCoord(x, y, z)
-        res = self.thisptr.imageToProximateImagingLocus(i._ptr, g._ptr, precision)
-        return res.point, res.direction
-
-    def image_to_remote_imaging_locus(self, line, sample, double precision=0.001):
-        """
-        Compute a proximate imaging locus, a vector approximation of the imaging locus for the
-        given line/sample nearest the given ECEF x, y, z.  Precision refers to the point (location)
-        but not the orientation (direction).
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-
-        sample : numeric
-                 The sample number in the image
-
-        Returns
-        -------
-        res.point : dict
-                    containing 'x', 'y', 'z' coordinates
-        res.direction : dict
-                        containing 'x', 'y', 'z' vector orientations
-        """
-        i = ImageCoord(line, sample)
-        res = self.thisptr.imageToRemoteImagingLocus(i._ptr, precision)
-        return res.point, res.direction
-
-    @property
-    def imagesize(self):
-        """
-        The total number of lines/samples in the image.
-
-        Returns:
-         : list
-            lines / sample count
-        """
-        res = self.thisptr.getImageSize()
-        return res.line, res.samp
-
-    @property
-    def imagestart(self):
-        """
-        The line and sample start.
-
-        Returns
-        -------
-         : list
-           line/sample start locations
-        """
-        res = self.thisptr.getImageStart()
-        return res.line, res.samp
-
-    @property
-    def state(self):
-        """
-        The current state of the model, as a string, that can be used to
-        reinstantiate the model using the replace_model_state method.
-        """
-        return self.thisptr.getModelState().decode()
-
-    @property
-    def name(self):
-        """
-        Name of the model.
-        """
-        return self.thisptr.getModelName().decode()
-
-    @property
-    def imagerange(self):
-        raise NotImplementedError
-        #self.thisptr.getValidImageRange()
-
-    @property
-    def heightrange(self):
-        raise NotImplementedError
-        #return self.thisptr.getValidHeightRange()
-
-    def sensor_time_position(self, time):
-        raise NotImplementedError
-        #res = self.thisptr.getSensorPosition(<double> time)
-        #return [res.x, res.y, res.z]
-
-    def sensor_coordinate_position(self, line, sample):
-        """
-        Compute the sensor position given a line/sample in the image.
-
-        Parameters
-        ----------
-        line : numeric
-               The line number in the image
-        sample : numeric
-                 The sample number in the image
-
-        Returns
-        -------
-         : list
-           The sensor position vector in ECEF coordinates (m).
-        """
-        i = ImageCoord(line, sample)
-        res = self.thisptr.getSensorPosition(<CppImageCoord> i._ptr)
-        return [res.x, res.y, res.z]
-
-    def sensor_time_velocity(self, time):
-        raise NotImplementedError
-
-    def sensor_coordinate_velocity(self, line, sample):
-        i = ImageCoord(line, sample)
-        res = self.thisptr.getSensorVelocity(<CppImageCoord> i._ptr)
-        return [res.x, res.y, res.z]
-
-    def illumination_direction(self, ground_point):
-        """
-        Given an ellipse centered ellipse fixed coordinate, compute the
-        illumination direction.
-
-        Parameters
-        ----------
-        ground_point : list
-                       of x, y, z ECEF coordiantes
-
-        Returns
-        -------
-         : list
-           x, y, z, vector describing the illumination direction
-        """
-        pt = EcefCoord(*ground_point)
-        res = self.thisptr.getIlluminationDirection(pt._ptr)
-        return [res.x, res.y, res.z]
-
-cdef class ORexPlugin:
-    cdef:
-        CppORexPlugin *thisptr
-
-    def __cinit__(self):
-        self.thisptr = new CppORexPlugin()
-
-    def __dealloc__(self):
-        del self.thisptr
-
-    @property
-    def name(self):
-        return self.thisptr.getPluginName().decode()
-
-    @property
-    def manufacturer(self):
-        return self.thisptr.getManufacturer().decode()
-
-    #@property
-    #def releasedate(self):
-    #    return self.thisptr.getReleaseDate()
-
-    #@property
-    #def version(self):
-    #    return self.thisptr.getCsmVersion()
-
-    @property
-    def nmodels(self):
-        return self.thisptr.getNumModels()
-
-    def modelname(self, modelindex):
-        return self.thisptr.getModelName(modelindex).decode()
-
-    def check_isd_construction(self, Isd isd, modelname):
-        modelname = str(modelname).encode()
-        return self.thisptr.canModelBeConstructedFromISD(isd.thisptr[0], modelname)
-
-    def from_isd(self, Isd isd, modelname):
-        modelname = str(modelname).encode()
-        return ORexSensorModel.factory(dynamic_cast_model_ptr(self.thisptr.constructModelFromISD(isd.thisptr[0], modelname)))