diff --git a/src/main/java/gov/usgs/earthquake/nshmp/calc/HazardExport.java b/src/main/java/gov/usgs/earthquake/nshmp/calc/HazardExport.java index 8a62bce2c709d3a6813632596cedba6a4118b184..085e51b26828b36e20945afccd6e678b991265cd 100644 --- a/src/main/java/gov/usgs/earthquake/nshmp/calc/HazardExport.java +++ b/src/main/java/gov/usgs/earthquake/nshmp/calc/HazardExport.java @@ -389,4 +389,27 @@ public final class HazardExport { } }; + /** + * Create the directory at the supplied path, incrementing the path with + * {@code -#} if the directory already exists. This avoids clobbering and + * existing directories and their contents. This method is commonly used by + * calculators prior to supplying an output directory to + * {@link #create(HazardModel, CalcConfig, boolean, Path)}. Methods either + * returns the supplied or pissibly incremented path. + * + * @param dir to create + * @return the (possibly) incremented path + * @throws IOException if an I/O error occurs + */ + public static Path createDirectory(Path dir) throws IOException { + int i = 1; + Path outDir = dir; + while (Files.exists(outDir)) { + outDir = outDir.resolveSibling(dir.getFileName() + "-" + i); + i++; + } + Files.createDirectories(outDir); + return outDir; + } + } diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java index 887b47b5e3b0f35210b5847ab9454e53290b36be..b82de79c01890217206976752a5e0c0b5296e125 100644 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java +++ b/src/main/java/gov/usgs/earthquake/nshmp/gmm/Gmm.java @@ -250,13 +250,6 @@ public enum Gmm { SadighEtAl_1997.COEFFS_BC_HI, SadighEtAl_1997.CONSTRAINTS), - /** @see Grazier_2018 */ - GRAIZER_2018( - Graizer_2018.class, - Graizer_2018.NAME, - Graizer_2018.COEFFS, - Graizer_2018.CONSTRAINTS), - /* Subduction Interface and Slab WUS 2008 2014 2018, AK 2007 */ /** @see AtkinsonBoore_2003 */ @@ -850,13 +843,6 @@ public enum Gmm { Atkinson_2015.COEFFS, Atkinson_2015.CONSTRAINTS), - /** @see GraizerKalkan_2015 */ - GK_15( - GraizerKalkan_2015.class, - GraizerKalkan_2015.NAME, - GraizerKalkan_2015.COEFFS, - GraizerKalkan_2015.CONSTRAINTS), - /** @see WongEtAl_2015 */ WONG_15( WongEtAl_2015.class, @@ -864,62 +850,6 @@ public enum Gmm { WongEtAl_2015.COEFFS_760, WongEtAl_2015.CONSTRAINTS), - /** @see ZhaoEtAl_2016 */ - ZHAO_16_SHALLOW_CRUST( - ZhaoEtAl_2016.ShallowCrust.class, - ZhaoEtAl_2016.ShallowCrust.NAME, - ZhaoEtAl_2016.SITE_AMP, - ZhaoEtAl_2016.CONSTRAINTS), - - /** @see ZhaoEtAl_2016 */ - ZHAO_16_UPPER_MANTLE( - ZhaoEtAl_2016.UpperMantle.class, - ZhaoEtAl_2016.UpperMantle.NAME, - ZhaoEtAl_2016.SITE_AMP, - ZhaoEtAl_2016.CONSTRAINTS), - - /** @see ZhaoEtAl_2016 */ - ZHAO_16_INTERFACE( - ZhaoEtAl_2016.Interface.class, - ZhaoEtAl_2016.Interface.NAME, - ZhaoEtAl_2016.SITE_AMP, - ZhaoEtAl_2016.CONSTRAINTS), - - /** @see ZhaoEtAl_2016 */ - ZHAO_16_SLAB( - ZhaoEtAl_2016.Slab.class, - ZhaoEtAl_2016.Slab.NAME, - ZhaoEtAl_2016.SITE_AMP, - ZhaoEtAl_2016.CONSTRAINTS), - - /** @see McVerryEtAl_2000 */ - MCVERRY_00_CRUSTAL( - McVerryEtAl_2000.Crustal.class, - McVerryEtAl_2000.Crustal.NAME, - McVerryEtAl_2000.COEFFS_GM, - McVerryEtAl_2000.CONSTRAINTS), - - /** @see McVerryEtAl_2000 */ - MCVERRY_00_INTERFACE( - McVerryEtAl_2000.Interface.class, - McVerryEtAl_2000.Interface.NAME, - McVerryEtAl_2000.COEFFS_GM, - McVerryEtAl_2000.CONSTRAINTS), - - /** @see McVerryEtAl_2000 */ - MCVERRY_00_SLAB( - McVerryEtAl_2000.Slab.class, - McVerryEtAl_2000.Slab.NAME, - McVerryEtAl_2000.COEFFS_GM, - McVerryEtAl_2000.CONSTRAINTS), - - /** @see McVerryEtAl_2000 */ - MCVERRY_00_VOLCANIC( - McVerryEtAl_2000.Volcanic.class, - McVerryEtAl_2000.Volcanic.NAME, - McVerryEtAl_2000.COEFFS_GM, - McVerryEtAl_2000.CONSTRAINTS), - /* NGA-East for USGS */ /** @see NgaEastUsgs_2017 */ @@ -1108,6 +1038,20 @@ public enum Gmm { NgaEastUsgs_2017.COEFFS_SIGMA_PANEL, NgaEastUsgs_2017.CONSTRAINTS), + /** @see PezeshkEtAl_2018 */ + NGA_EAST_SEED_PZCT18_1SS( + PezeshkEtAl_2018.PZCT18_1SS.class, + PezeshkEtAl_2018.PZCT18_1SS.NAME, + PezeshkEtAl_2018.COEFFS_1SS, + PezeshkEtAl_2018.CONSTRAINTS), + + /** @see PezeshkEtAl_2018 */ + NGA_EAST_SEED_PZCT18_2ES( + PezeshkEtAl_2018.PZCT18_2ES.class, + PezeshkEtAl_2018.PZCT18_2ES.NAME, + PezeshkEtAl_2018.COEFFS_2ES, + PezeshkEtAl_2018.CONSTRAINTS), + /** @see NgaEastUsgs_2017 */ NGA_EAST_SEED_SP15( NgaEastUsgs_2017.Seed_SP15.class, @@ -1129,20 +1073,6 @@ public enum Gmm { NgaEastUsgs_2017.COEFFS_SIGMA_PANEL, NgaEastUsgs_2017.CONSTRAINTS), - /** @see PezeshkEtAl_2018 */ - PZCT18_1SS( - PezeshkEtAl_2018.PZCT18_1SS.class, - PezeshkEtAl_2018.PZCT18_1SS.NAME, - PezeshkEtAl_2018.COEFFS_1SS, - PezeshkEtAl_2018.CONSTRAINTS), - - /** @see PezeshkEtAl_2018 */ - PZCT18_2ES( - PezeshkEtAl_2018.PZCT18_2ES.class, - PezeshkEtAl_2018.PZCT18_2ES.NAME, - PezeshkEtAl_2018.COEFFS_2ES, - PezeshkEtAl_2018.CONSTRAINTS), - /* Combined: must be declared after any dependent models above. */ /** @@ -1557,11 +1487,6 @@ public enum Gmm { OTHER( "Others", List.of( - GK_15, - ZHAO_16_SHALLOW_CRUST, - ZHAO_16_UPPER_MANTLE, - ZHAO_16_INTERFACE, - ZHAO_16_SLAB, ATKINSON_15, AB_03_CASCADIA_INTERFACE, BCHYDRO_18_NGA_INTERFACE, @@ -1569,11 +1494,7 @@ public enum Gmm { BCHYDRO_12_INTERFACE_BACKARC, BCHYDRO_12_INTERFACE_BASIN_BACKARC, BCHYDRO_12_SLAB_BACKARC, - BCHYDRO_12_SLAB_BASIN_BACKARC, - MCVERRY_00_CRUSTAL, - MCVERRY_00_INTERFACE, - MCVERRY_00_SLAB, - MCVERRY_00_VOLCANIC)), + BCHYDRO_12_SLAB_BASIN_BACKARC)), COMBINED( "Combined Models", @@ -1621,6 +1542,8 @@ public enum Gmm { NGA_EAST_SEED_PEER_GP, NGA_EAST_SEED_PZCT15_M1SS, NGA_EAST_SEED_PZCT15_M2ES, + NGA_EAST_SEED_PZCT18_1SS, + NGA_EAST_SEED_PZCT18_2ES, NGA_EAST_SEED_SP15, NGA_EAST_SEED_SP16, NGA_EAST_SEED_YA15)); diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/GraizerKalkan_2015.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/GraizerKalkan_2015.java deleted file mode 100644 index 4d1888509eef955f6223a71b31cfcb742a3e18ea..0000000000000000000000000000000000000000 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/GraizerKalkan_2015.java +++ /dev/null @@ -1,228 +0,0 @@ -package gov.usgs.earthquake.nshmp.gmm; - -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.REVERSE; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.MW; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RAKE; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RJB; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.VS30; -import static java.lang.Math.abs; -import static java.lang.Math.atan; -import static java.lang.Math.cos; -import static java.lang.Math.exp; -import static java.lang.Math.log; -import static java.lang.Math.max; -import static java.lang.Math.pow; -import static java.lang.Math.sqrt; - -import com.google.common.annotations.Beta; -import com.google.common.collect.Range; - -import gov.usgs.earthquake.nshmp.Faults; -import gov.usgs.earthquake.nshmp.data.Interpolator; -import gov.usgs.earthquake.nshmp.gmm.GmmInput.Constraints; -import gov.usgs.earthquake.nshmp.tree.LogicTree; - -/** - * Implementation of the updated Graizer & Kalkan (2015, 2016) ground motion - * model. The model computes spectral accelerations as a continuous function of - * spectral period. For consistency with the NGA-West2, this implementation - * supports the common set of (22) spectral periods supported by the NGA-West2 - * models; additional periods can be added at any time. - * - * <p><b>References:</b><ul> - * - * <li>Graizer, V., and E. Kalkan, 2015, Update of the Graizer–Kalkan - * ground-motion prediction equations for shallow crustal continental - * earthquakes: U.S. Geol. Surv. Open-File Report 2015-1009. <b>doi:</b> <a - * href="http://dx.doi.org/10.3133/ofr20151009"> 10.3133/ofr20151009</a></li> - * - * <li>Graizer, V., and E. Kalkan, 2016, Summary of the GK15 ground-motion - * prediction equation for horizontal PGA and 5% damped PSA from shallow crustal - * continental earthquakes: Bulletin of the Seismological Society of America, v. - * 106, n. 2, p. 687-707. <b>doi:</b> <a - * href="http://dx.doi.org/10.1785/0120150194"> 10.1785/0120150194</a></li> - * - * </ul> - * - * <p><b>Component:</b> geometric mean of two randomly oriented horizontal - * components - * - * @author U.S. Geological Survey - * @see Gmm#GK_15 - */ -@Beta -public final class GraizerKalkan_2015 implements GroundMotionModel { - - /* - * Developer notes: - * - * This model does not support specific periods as most other GMMs do; it can - * handle any frequency. Currently the referenced coefficient file contains - * only those periods that match the NGAW2 set, but more can be added at any - * time. - * - * Basin term is a function of z1p5. Current implementation linearly - * interpolates between z1p0 and z2p5 if they are not NaN, otherwise uses a - * default value of 0.15 km. - */ - - static final String NAME = "Graizer & Kalkan (2015)"; - - static final CoefficientContainer COEFFS = new CoefficientContainer("GK15.csv"); - - static final Constraints CONSTRAINTS = Constraints.builder() - .set(MW, Range.closed(5.0, 8.5)) - .set(RJB, Range.closed(0.0, 250.0)) - .set(RAKE, Faults.RAKE_RANGE) - .set(VS30, Range.closed(200.0, 1300.0)) - .build(); - - private final Imt imt; - private final double period; - - GraizerKalkan_2015(Imt imt) { - this.imt = imt; - this.period = imt.equals(Imt.PGA) ? 0.01 : imt.period(); - } - - @Override - public LogicTree<GroundMotion> calc(GmmInput in) { - double z1p5 = z1p5(in.z1p0, in.z2p5); - double μ = lnPga(in.Mw, in.rRup, in.rake, in.vs30, z1p5); - double σ = stdDev(period); - if (imt.isSA()) { - double sa = spectralShape(period, in.Mw, in.rRup, in.vs30, z1p5); - μ += log(sa); - } - return GroundMotions.createTree(μ, σ); - } - - /* Default basin depth per pers. comm w/ Vladimir circa 2012 */ - private static final double Z1P5_DEFAULT = 0.15; - - private static double z1p5(double z1p0, double z2p5) { - if (Double.isNaN(z1p0) || Double.isNaN(z2p5)) { - return Z1P5_DEFAULT; - } - return Interpolator.findY(1.0, z1p0, 2.5, z2p5, 1.5); - } - - private static final double m1 = -0.0012; - private static final double m2 = -0.38; - private static final double m3 = 0.0006; - private static final double m4 = 3.9; - - private static final double a1 = 0.01686; - private static final double a2 = 1.2695; - private static final double a3 = 0.0001; - - private static final double Dsp = 0.75; - - private static final double t1 = 0.001; - private static final double t2 = 0.59; - private static final double t3 = -0.0005; - private static final double t4 = -2.3; - - private static final double s1 = 0.001; - private static final double s2 = 0.077; - private static final double s3 = 0.3251; - - private static final double spectralShape( - double T, - double Mw, - double rRup, - double vs30, - double z1p5) { - - /* Equations 9b-f */ - double mu = m1 * rRup + m2 * Mw + m3 * vs30 + m4; - double I = (a1 * Mw + a2) * exp(a3 * rRup); - double S = s1 * rRup - (s2 * Mw + s3); - double Tsp0 = max(0.3, abs(t1 * rRup + t2 * Mw + t3 * vs30 + t4)); - double ζ = 1.763 - 0.25 * atan(1.4 * (z1p5 - 1.0)); - - /* Equation 8 */ - double F1A = (log(T) + mu) / S; - double F1 = I * exp(-0.5 * F1A * F1A); - double F2A = pow(T / Tsp0, ζ); - double F2 = 1.0 / sqrt((1.0 - F2A) * (1.0 - F2A) + 4.0 * Dsp * Dsp * F2A); - - return F1 + F2; - } - - /* - * Models and coefficients for inter- and intra-event terms, τ and φ, are - * provided in the USGS Open-File reference; here we only compute total σ. - */ - private static final double stdDev(double T) { - double σ1 = 0.668 + 0.0047 * log(T); - double σ2 = 0.8 + 0.13 * log(T); - return max(σ1, σ2); - } - - private static final double c1 = 0.14; - private static final double c2 = -6.25; - private static final double c3 = 0.37; - private static final double c4 = 2.237; - private static final double c5 = -7.542; - private static final double c6 = -0.125; - private static final double c7 = 1.19; - private static final double c8 = -6.15; - private static final double c9 = 0.6; - private static final double c10 = 0.345; - private static final double c11 = 1.077; - private static final double c12 = 1.5; - private static final double c13 = 0.7; - private static final double c14 = 40.0; - - private static final double bv = -0.24; - private static final double VA = 484.5; - - /* - * Regional quality factor; California value is 150; see Graizer & Kalkan - * (2016) for other regionalizations. - */ - private static final double Qo = 150.0; - - private static final double lnPga( - double Mw, - double rRup, - double rake, - double vs30, - double z1p5) { - - /* Magnitude and style-of-faulting; equation 3 */ - double F = (GmmUtils.rakeToFaultStyle_NSHMP(rake) == REVERSE) ? 1.28 : 1.0; - double G1 = log((c1 * atan(Mw + c2) + c3) * F); - - /* Distance attenuation; equation 4 */ - double Ro = c4 * Mw + c5; - double RRo = rRup / Ro; - double Do = c6 * cos(c7 * (Mw + c8)) + c9; - double G2 = -0.5 * log((1.0 - RRo) * (1.0 - RRo) + 4 * Do * Do * RRo); - - /* Anelastic attenuation; equation 5 */ - double G3 = -c10 * rRup / Qo; - - /* Site correction; equation 6 */ - double G4 = bv * log(vs30 / VA); - - /* Basin depth; equation 7b */ - double ABz1 = c12 / (z1p5 + 0.1); - double ABz1sq = ABz1 * ABz1; - double ABz2 = (1.0 - ABz1sq) * (1.0 - ABz1sq); - double ABz = c11 / sqrt(ABz2 + 4.0 * c13 * c13 * ABz1sq); - - /* Basin distance; equation 7c */ - double ABr1 = c14 / (rRup + 0.1); - double ABr1sq = ABr1 * ABr1; - double ABr2 = (1.0 - ABr1sq) * (1.0 - ABr1sq); - double ABr = 1.0 / sqrt(ABr2 + 4.0 * c13 * c13 * ABr1sq); - - /* Basin effect; equation 7a */ - double G5 = log(1 + ABr * ABz); - - return G1 + G2 + G3 + G4 + G5; - } - -} diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/Graizer_2018.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/Graizer_2018.java deleted file mode 100644 index 5f8e799b8a7e60028ae5cc06671da9a750964777..0000000000000000000000000000000000000000 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/Graizer_2018.java +++ /dev/null @@ -1,451 +0,0 @@ -/** - * - */ -package gov.usgs.earthquake.nshmp.gmm; - -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.REVERSE; -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.REVERSE_OBLIQUE; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.MW; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RAKE; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RRUP; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.VS30; -import static java.lang.Math.abs; -import static java.lang.Math.atan; -import static java.lang.Math.cos; -import static java.lang.Math.exp; -import static java.lang.Math.log; -import static java.lang.Math.max; -import static java.lang.Math.min; -import static java.lang.Math.pow; -import static java.lang.Math.sqrt; - -import java.util.Map; - -import com.google.common.annotations.Beta; -import com.google.common.collect.Range; - -import gov.usgs.earthquake.nshmp.Faults; -import gov.usgs.earthquake.nshmp.gmm.GmmInput.Constraints; -import gov.usgs.earthquake.nshmp.tree.LogicTree; - -/** - * Outstanding questions: - * - * * is Q_SA, for G3, defined by Eq. 8? - * - * * coefficients c21 and c22 are not defined in G18 or GK16 papers. - * coefficients b1, b2, b3, and λ are not defined in G18 or GK16 papers, - * inferred from matlab script - * - * * Do we want basin and non-basin flavors? - * - * * Better to interpolate GM instead of coefficients (since they may not be - * monotonic), so use the set of 16 periods in Table 1 and Matlab - * - * * Attempt to compute values in Table S1 and/or S2 using the manual regression - * code blocks in Matlab (so far, the matlab code does not reproduce the tables) - * - * * "Residuals" calculated in matlab are not documented in published paper - * (they are mentioned) - */ - -/** - * Implementation of the GK17 ground motion model for shallow crustal - * continental earthquakes by Grazier (2018). This model computes the average - * (RotD50) horizontal components of PGA and 5% damped PSA at periods from 0.01 - * to 10 s. The model includes a number of significant changes from the previous - * GK15 (Graizer and Kalkan, 2016). - * - * <p><b>References:</b><ul> - * - * <li>Graizer, V., 2018, GK17 Ground-Motion prediction equation for horizontal - * PGA and 5% damped PSA from shallow crustal continental earthquakes: Bulletin - * of the Seismological Society of America, v. 108, n. 1, p. 380-398. - * <b>doi:</b> <a href="http://dx.doi.org/10.1785/0120170158"> - * 10.1785/0120170158</a></li> - * - * <li>Graizer, V., and E. Kalkan, 2016, Summary of the GK15 ground-motion - * prediction equation for horizontal PGA and 5% damped PSA from shallow crustal - * continental earthquakes: Bulletin of the Seismological Society of America, v. - * 106, n. 2, p. 687-707. <b>doi:</b> <a - * href="http://dx.doi.org/10.1785/0120150194"> 10.1785/0120150194</a></li> - * - * </ul> - * - * <p><b>Component:</b> RotD50 average horizontal components - * - * @author U.S. Geological Survey - * @see Gmm#GRAIZER_2018 - */ -@Beta -public final class Graizer_2018 implements GroundMotionModel { - - public static void main(String[] args) { - for (Imt imt : Imt.mprsImts()) { - double t = (imt.equals(Imt.PGA)) ? 0.01 : imt.period(); - System.out.printf("%.3f, %.3f\n", t, imt.period()); - } - - } - - static final String NAME = "Graizer 2018 (GK17)"; - - static final CoefficientContainer COEFFS = new CoefficientContainer("GK17.csv"); - - static final Constraints CONSTRAINTS = Constraints.builder() - .set(MW, Range.closed(4.0, 8.5)) - .set(RRUP, Range.closed(0.0, 400.0)) - .set(RAKE, Faults.RAKE_RANGE) - .set(VS30, Range.closed(150.0, 1500.0)) - .build(); - - private static final class Coefficients { - final Imt imt; - final double σ; - final double τ; - final double φ; - - Coefficients(Imt imt, CoefficientContainer cc) { - this.imt = imt; - Map<String, Double> coeffs = cc.get(imt); - - this.σ = coeffs.get("sigma"); - this.τ = coeffs.get("tau"); - this.φ = coeffs.get("phi"); - } - } - - private final Imt imt; - private final double period; - private final Coefficients coeffs; - - public Graizer_2018(Imt imt) { - this.imt = imt; - this.period = imt.equals(Imt.PGA) ? 0.01 : imt.period(); - - coeffs = new Coefficients(imt, COEFFS); - } - - /** - * G18 provides table of sigmas at 16 periods that do not correspond exactly - * with USGS MPRS. The defined sigma values are interpolated in Matlab using - * the "shape-preserving piecewise cubic interpolation", and the resulting - * values are hard-coded here. - * - * The following Matlab code was used to compute sigma values at the MPRS - * periods: - * - * <pre> - * % From Table 1 in Graizer (2018) - * t = [0.010 0.020 0.040 0.075 0.100 0.150 0.200 0.400 0.500 0.750 1.000 2.000 3.000 4.000 5.000 8.000 10.0 ]; - * sigma = [0.631 0.633 0.653 0.713 0.734 0.720 0.693 0.673 0.693 0.732 0.738 0.783 0.774 0.733 0.746 0.789 0.736]; - * tau = [0.375 0.375 0.386 0.456 0.477 0.451 0.407 0.365 0.398 0.465 0.492 0.501 0.512 0.448 0.464 0.528 0.451]; - * phi = [0.507 0.511 0.527 0.549 0.557 0.562 0.560 0.565 0.568 0.565 0.549 0.601 0.580 0.581 0.584 0.587 0.582]; - * - * % MSRS periods - * t_nga = [0.01 0.02 0.03 0.05 0.075 0.1 0.15 0.2 0.25 0.3 0.4 0.5 0.75 1.0 1.5 2.0 3.0 4.0 5.0 7.5 10.0]; - * - * % interpolate at MSRS periods - * sigma_nga = interp1(t,sigma,t_nga,'pchip','extrap'); - * tau_nga = interp1(t,tau,t_nga,'pchip','extrap'); - * phi_nga = interp1(t,phi,t_nga,'pchip','extrap'); - * - * fprintf('%6s,%7s,%7s,%7s\n','T','sigma','tau','phi'); - * for i=1:length(t_nga) - * fprintf('%6.3f,%.5f,%.5f,%.5f\n',t_nga(i),sigma_nga(i),tau_nga(i),phi_nga(i)); - * end - * </pre> - */ - - @Override - public LogicTree<GroundMotion> calc(GmmInput in) { - - var fault_style = GmmUtils.rakeToFaultStyle_NSHMP(in.rake); - - double sa_norm = spectralShape(period, in.Mw, in.rRup); - double G1 = filterG1(in.Mw, fault_style); // M-scaling - double G2 = filterG2(in.Mw, in.rRup); // R-scaling - - // Matlab code GK17PGA.m returns G1 * G2 - - double G3 = filterG3(period, in.rRup); // Apparent attenuation scaling - double G4 = filterG4(period, in.Mw, in.rRup, fault_style); // Style of - // faulting style - double G5 = filterG5(period, in.vs30, in.z2p5); // Site-scaling - - /* Eq. 1 */ - // SA = G1 * G2 * G3 * G4 * G5 * SA_NORM * εγ - double μ = log(G1 * G2 * G3 * G4 * G5 * sa_norm); - double σ = coeffs.σ; - - return GroundMotions.createTree(μ, σ); - } - - /* Spectral shape constants (Figure 3) */ - private static final double m1 = -0.0012; - private static final double m2 = -0.38; - private static final double m3 = 4.08; - - private static final double a1 = 0.017; - private static final double a2 = 1.27; - private static final double a3 = 0.0001; - - private static final double Dsp = 0.75; - - private static final double t1 = 0.001; - private static final double t2 = 0.59; - private static final double t3 = -2.45; - - private static final double s1 = 0.0; - private static final double s2 = 0.077; - private static final double s3 = 0.3251; - - private static final double ζ = 2; - - /* 5% damped response spectral shape, SA_norm (Figure 3) */ - private static final double spectralShape(double T, double Mw, double rRup) { - /* - * Matlab code GK17SA.m uses truncated M and R values when calculating the - * spectral shape, this is not mentioned in the paper - */ - double μ_mr = m1 * rRup + m2 * Mw + m3; - double I_mr = (a1 * Mw + a2) * exp(a3 * rRup); - double S_mr = s1 * rRup - (s2 * Mw + s3); - double Tsp0 = max(0.3, abs(t1 * rRup + t2 * Mw + t3)); - - double t_ratio = pow(T / Tsp0, ζ); - double t_μ_S = (log(T) + μ_mr) / S_mr; - return I_mr * exp(-0.5 * t_μ_S * t_μ_S) + - sqrt((1.0 - t_ratio) * (1.0 - t_ratio) + 4.0 * Dsp * Dsp * t_ratio); - } - - /* Model coefficients from Graizer & Kalkan (2016) Table 3 and GK17PGA.m */ - private static final double c1 = 0.14; - private static final double c2 = -6.25; - private static final double c3 = 0.37; - private static final double c4 = 2.237; - private static final double c5 = -7.542; - private static final double c6 = -0.125; - private static final double c7 = 1.19; - private static final double c8 = -6.15; - private static final double c9 = 0.6; - - /* Constants from Graizer (2018) */ - private static final double β = 3.5; // defined p. 385 - private static final double b1 = 0.79; // inferred from matlab code - private static final double b2 = 0.27; // inferred from matlab code - private static final double b3 = 0.444; // inferred from matlab code - private static final double λ = 1.36; // inferred from matlab code - private static final double c21 = 0.000854; // inferred from matlab GK17PGA.m - private static final double c22 = 1.0513; // inferred from matlab GK17PGA.m - - /* Filter G1 - magnitude-scaling */ - private static final double filterG1(double Mw, FaultStyle fault_style) { - /* - * Magnitude scaling filter is from previous model (Graizer and Kalkan - * (2016) Eq. 3) for larger magnitudes with new small-magnitude scaling. - * - * Paper implies k_scale is style-of-faulting factor from Graizer and Kalkan - * (2016) and does not define new coefficients c21 and c22, which must be - * inferred from matlab code GK17PGA.m (F1 term in matlab). - * - * "k_scale" as used in matlab code GK17PGA.m differs from Graizer and - * Kalkan (2016), which was dependent on fault style. - */ - double k_scale = - (fault_style == REVERSE) ? 1.28 : (fault_style == REVERSE_OBLIQUE) ? 1.14 : 1.0; - - double F_matlab = 1.0; // F = 1.0 for geomean and RotD50 - double k_scale_matlab = F_matlab / 1.12; - - /* matlab code GK17PGA.m uses M <= 5.5 and M > 5.5 */ - return (Mw < 5.5) ? (c21 * exp(c22 * Mw) * k_scale) : (c1 * atan(Mw + c2) + c3) * k_scale; - } - - /* Filter G2 - distance scaling */ - private double filterG2(double Mw, double rRup) { - /* Eq. 4 */ - double R2 = c4 * Mw + c5; - double D2 = c6 * cos(c7 * (Mw + c8)) + c9; - - /* Eq. 3 */ - double w1 = (1 - sqrt(50 / R2)) * (1 - sqrt(50 / R2)); - double w2 = 4 * D2 * D2 * sqrt(50. / R2); - double w3 = (1 - 50. / R2) * (1 - 50. / R2); - double w4 = 4 * D2 * D2 * 50. / R2; - double w = sqrt((w1 + w2) / (w3 + w4)); - - // /* - // * w from Matlab GK17PGA.m uses 1.96 instead of Mw-dependent "4 * D2 * D2" - // * and pulls -sqrt out into log-space - // */ - // double ml_w2 = 1.96 * sqrt(50. / R2); // matlab - // double w_matlab = exp(-0.5 * log((w3 + w4) / (w1 + ml_w2))); - // System.out.printf("Paper w = %.6e\nMatlab w = %.6e\n", w, w_matlab); - - /* Eq. 3 */ - double g1 = (1 - sqrt(rRup / R2)) * (1 - sqrt(rRup / R2)); - double g2 = 4 * D2 * D2 * (rRup / R2); - double g3 = 4 * D2 * D2 * sqrt(rRup / R2); - - return (rRup < 50.0) ? 1 / sqrt(g1 + g2) : w / sqrt(g1 + g3); - } - - /* Filter G3 - Apparent Attenuation of Spectral Accelerations */ - private double filterG3(double T, double rRup) { - double freq = 1.0 / T; - - /* Qsa from Eq. 8 (as a function of freq) */ - double p = (freq < 1.0) ? 0.90 : (freq < 10.0) ? 0.91 : 0.95; - double rRef = 120.0; - - double Qsa = rRef * pow(freq, p); - - /* - * Q-term (Qsa factor) in matlab code GK17SA.m has only a slight resemblance - * to Eq. 8 (and the G3 filter too, for that matter) and includes an added - * dependence on magnitude (Eq. 10?) - * - * β, with a value of 3.5 km defined in the paper does not appear in the - * matlab code - */ - // double p_matlab = (freq <= 1.0) ? 0.90 : (freq <= 10.0) ? 0.91 : 0.95; - // double rRef_matlab = (rRup <= 140.0) ? 120.0 : 120. + (140. - rRup) / - // 100.; - // double Qsa_matlab = (0.2759 + 0.1379 * Mw) * rRef * pow(freq, p); - - return exp(-freq * rRup / β / Qsa); - } - - /* Filter G4 - Fault-style scaling */ - private double filterG4(double T, double Mw, double rRup, FaultStyle fault_style) { - /* Eqs. 13 and 14 */ - if ((fault_style != FaultStyle.REVERSE) || (Mw < 4.0)) { - return 1.0; - } - double dist = (rRup <= 90.0) ? rRup : 90; - - /* Eq. 12 - coefficients b1, b2, b3, and λ inferred from matlab code */ - double CSoF0 = (b1 + b2 / (1 + (T / 7.0) * (T / 7.0))) * - (b3 + 1 / (1 + pow(dist / 100.0, λ))); - - return (Mw >= 5.5) ? CSoF0 : 1 + (CSoF0 - 1) * exp(Mw - 5.5); - } - - /* Filter G5 - Site-response term */ - private double filterG5(double T, double vs30, double z2p5) { - /** - * <pre> - * Questions: - * 1. is f in Eq. 15 frequency or something else that doesn't seem to be defined? - * - * 2. Should Eq. 15 reproduce Table S1: VS30 site amplification factors relative - * to the western hard rock of VS30 = 1100 m/s? (it doesn't seem to) - * - * 3. Should basin effects (sediment thickness) be added here to this term? Sediment - * thickness effects appear be calculated based on residuals in matlab code GK17SA.m - * </pre> - */ - double freq = 1.0 / T; - - /* - * Eq. 15 - * - * amplification coefficient constant for vs30 below 180 m/s and above 1100 - * m/s - */ - double vs = max(180.0, min(1100.0, vs30)); - double vss = max(275.0, vs); - - /* Eq. 15 */ - double kvs = -0.5 * log(vs / 1100.0); - double fvs = vss / 120.0 - 2.0; - - double g5_vs30 = 1 + kvs / sqrt((1 - (fvs / freq)) * (1 - (fvs / freq)) + 1.96 * (fvs / freq)); - - /* - * Matlab code in GK17SA.m, "Reducing to hard rock", has a vague similarity - * to Eq. 15. Terms Amp_Va and Amp_Vs are calculated and, in the formulation - * for Y, Amp_vs is divided by Amp_Va and the vs30 correction (residuals) - */ - double basinAmp = basinAmplification(vs30, z2p5); - - return g5_vs30 * basinAmp; - } - - /* Basin amplification */ - private double basinAmplification(double vs30, double z2p5) { - /* - * The paper does not define an equation for the sediment thickness term - * - * Eq. 16 is a Z2.5 - Vs30 relation: ln(z2p5) = 7.108 - 1.145 * ln(vs30) - * - * Matlab code GK17SA.m uses Z2.5 directly and has a different Z2.5 - Vs30 - * relation in a comment: ln(Z25) = 7.521 - 1.233 * ln(VS30) - * - * Paper refers to Table S2 for basin amplification (as a function of Vs30 - * and period, T), which is specified as relative to the site amplification - * due to Vs30. - */ - if (Double.isNaN(z2p5)) { - return 1.0; - } - - /* - * Look up value from table of ratios (vs30_amp / basin_amp?) for vs30 and - * z2p5? Or calculate using residuals calculations (BasAmp term) in matlab - * code GK17SA.m? - * - * From matlab, 5 period-dependent coefs: ba0, ba1, ba2, ba3, ba4: - * - * - BasAmp = ba0 for 0 <= z2p5 <= 0.18 - * - * - BasAmp = ba1 * z2p5^ba2 for 0.18 < z2p5 <= 0.67 - * - * - BasAmp = 1 for 0.67 < z2p5 < 3.15 *** Does this interval make sense? - * - * - BasAmp = ba3 * z2p5^ba4 for z2p5 >= 3.15 - * - * where BasAmp = ba1 * z2p5^ba2 or BasAmp = ba3 * z2p5^ba4, depending on - * value of z2p5 - */ - return 1.0; - } - - // private static final double getPGA_matlab(double Mw, double rRup) { - // double F = 1.0; // F = 1.0 for geomean and RotD50 - // double F1 = 0; - // double F2 = 0; - // - // // This is Equation 2 [G1(M,kscale)], but with kscale replaced with F/1.12 - // // (instead of style-of-faulting factor from GK16) - // // c21 = 0.000854 - // // c22 = 1.0513 - // if (Mw > 5.5) { // Eq. 2 (M >= 5.5) - // F1 = log((c1 * atan(Mw + c2) + c3) * F / 1.12); - // } else { - // F1 = log((0.000854 * exp(1.0513 * Mw) * F / 1.12)); - // } - // - // // This is Eq. 4 in the paper, Ro is R2, and Do is D2 - // double Ro = c4 * Mw + c5; - // double Do = c6 * cos(c7 * (Mw + c8)) + c9; - // - // // Bottom of Eq. 3 in the paper ??? in log space without sqrt - // // Conversion from body to surface waves W - // double W = log((pow((1.0 - 50.0 / Ro), 2) + 4 * (Do * Do) * 50.0 / Ro) / - // (pow(1 - sqrt(50 / Ro), 2) + 1.96 * sqrt(50.0 / Ro))); - // - // if (rRup <= 50.0) { - // // attenuation of the order R-1 - // F2 = -0.5 * log(pow(1 - (rRup / Ro), 2) + 4.0 * Do * Do * (rRup / Ro)); - // } else { - // // attenuation of the order R-0.5 - // F2 = -0.5 * log(pow(1 - sqrt(rRup / Ro), 2) + 1.96 * sqrt(rRup / Ro)) - 0.5 - // * W; - // } - // - // return F1 + F2; - // } - -} diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/McVerryEtAl_2000.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/McVerryEtAl_2000.java deleted file mode 100644 index 7b1a36821e0cd7771c06732e225af58e789e37eb..0000000000000000000000000000000000000000 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/McVerryEtAl_2000.java +++ /dev/null @@ -1,430 +0,0 @@ -package gov.usgs.earthquake.nshmp.gmm; - -import static com.google.common.base.Preconditions.checkArgument; -import static com.google.common.base.Preconditions.checkState; -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.NORMAL; -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.REVERSE; -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.REVERSE_OBLIQUE; -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.STRIKE_SLIP; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.MW; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RAKE; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RRUP; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.VS30; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.ZHYP; -import static gov.usgs.earthquake.nshmp.gmm.Imt.PGA; -import static gov.usgs.earthquake.nshmp.model.TectonicSetting.ACTIVE_CRUST; -import static gov.usgs.earthquake.nshmp.model.TectonicSetting.VOLCANIC; -import static java.lang.Math.exp; -import static java.lang.Math.log; -import static java.lang.Math.sqrt; - -import java.util.Map; - -import com.google.common.collect.Range; - -import gov.usgs.earthquake.nshmp.Faults; -import gov.usgs.earthquake.nshmp.gmm.GmmInput.Constraints; -import gov.usgs.earthquake.nshmp.model.SourceType; -import gov.usgs.earthquake.nshmp.model.TectonicSetting; -import gov.usgs.earthquake.nshmp.tree.LogicTree; - -/** - * Abstract implementation of the ground motion model by McVerry et al. (2000). - * - * <p><b>Implementation details:</b><ul><li>McVerry proposes a hanging wall term - * but it was not specifically modeled and is not implemented here.</li><li> New - * Zealand uses site classes that do not strictly correspond to fixed ranges of - * Vs30, in contrast with the US model; NZ soil site classes C and D consider - * stratification and site-specific response period. This implementation uses - * the following New Zealend site class to Vs30 values for convenience and - * consistency with the majority of other ground motion models:<ul><li>Class A: - * 1500 < Vs30</li><li>Class B: 360 < Vs30 ≤ 1500</li><li>Class C: 250 - * < Vs30 ≤ 360</li><li>Class D: 150 < Vs30 ≤ 250</li><li>Class E: s30 ≤ - * 150 (not supported)</li></ul></li></ul> - * - * <p><b>Model applicability:</b> Prior implementations restricted distance to - * 400km, foacl depths to 100km, and Magnitudes between 5.0 and 8.5. However the - * model supports a range of tectonic settings and McVerry et al. (2006) - * restrict magnitude to 7.5 and distance to 400km for curstal earthquakes, and - * restrict magnitudes to 8.0 and distances to 500km for subduction - * earthquake.<p> - * - * <p><b>Reference:</b> McVerry, G.H., Zhao, J.X., Abrahamson, N.A., and - * Somerville, P.G., 2000, Crustal and subduction zone attenuation realations - * for New Zealand earthquakes: Proc 12th World conference on earthquake - * engineering, Auckland, New Zealand, February, 2000. - * - * <p><b>Reference:</b> McVerry, G.H., Zhao, J.X., Abrahamson, N.A., and - * Somerville, P.G., 2000, New Zealand acceleration response spectrum - * attenuation relations for crustal and subduction zone earthquakes: Bulletin - * of the New Zealand Society of Earthquake Engineering, v. 39, n. 4, p. 1-58. - * - * <p><b>doi:</b> <a href="http://doi.org/10.5459/BNZSEE.39.1.1-58"> - * 10.5459/BNZSEE.39.1.1-58</a> - * - * <p><b>Component:</b> Model supports geometric mean or maximum of two - * horizontal components; only concrete implementations of max-horizontal - * component are provided at this time. - * - * @author Brendon A. Bradley - * @author U.S. Geological Survey - * @see Gmm#MCVERRY_00_CRUSTAL - * @see Gmm#MCVERRY_00_INTERFACE - * @see Gmm#MCVERRY_00_SLAB - * @see Gmm#MCVERRY_00_VOLCANIC - */ -public abstract class McVerryEtAl_2000 implements GroundMotionModel { - - // Need hypocentral depth for subduction - - // NOTE: Changed rake cutoffs to be symmetric and conform with 2006 pub. - // NOTE: updated NZ_SourceID to collapse SR RS keys - - static final String NAME = "McVerry et al. (2000)"; - - // Probably want to have constraints per-implementation - // (e.g. zHyp only used by subduction) - - static final Constraints CONSTRAINTS = Constraints.builder() - .set(MW, Range.closed(4.0, 8.0)) - .set(RRUP, Range.closed(0.0, 200.0)) - .set(ZHYP, Range.closed(0.0, 20.0)) - .set(RAKE, Faults.RAKE_RANGE) - .set(VS30, Range.closed(150.0, 1500.0)) - .build(); - - // geomean and max-horizontal coefficients - static final CoefficientContainer COEFFS_GM = new CoefficientContainer("McVerry00_gm.csv"); - static final CoefficientContainer COEFFS_MH = new CoefficientContainer("McVerry00_mh.csv"); - - private static final double C4AS = -0.144; - private static final double C6AS = 0.17; - private static final double C12Y = 1.414; - private static final double C18Y = 1.7818; - private static final double C19Y = 0.554; - private static final double C32 = -0.2; - - private static final class Coefficients { - - // 'as' and 'y' suffixes indicate attribution to - // Abrahamson & Silva or Youngs et al. - - final Imt imt; - final double c1, c3as, c5, c8, c10as, c11, c13y, c15, c17, c20, c24, c29, c30as, c33as, - c43, c46, σ6, σSlope, τ; - - Coefficients(Imt imt, CoefficientContainer cc) { - this.imt = imt; - Map<String, Double> coeffs = cc.get(imt); - c1 = coeffs.get("c1"); - c3as = coeffs.get("c3as"); - c5 = coeffs.get("c5"); - c8 = coeffs.get("c8"); - c10as = coeffs.get("c10as"); - c11 = coeffs.get("c11"); - c13y = coeffs.get("c13y"); - c15 = coeffs.get("c15"); - c17 = coeffs.get("c17"); - c20 = coeffs.get("c20"); - c24 = coeffs.get("c24"); - c29 = coeffs.get("c29"); - c30as = coeffs.get("c30as"); - c33as = coeffs.get("c33as"); - c43 = coeffs.get("c43"); - c46 = coeffs.get("c46"); - σ6 = coeffs.get("sigma6"); - σSlope = coeffs.get("sigSlope"); - τ = coeffs.get("tau"); - } - - // pga' - Coefficients(boolean geomean) { - imt = PGA; - if (geomean) { - c1 = 0.07713; - c3as = 0.0; - c5 = -0.00898; - c8 = -0.73728; - c10as = 5.6; - c11 = 8.08611; - c13y = 0.0; - c15 = -2.552; - c17 = -2.49894; - c20 = 0.0159; - c24 = -0.43223; - c29 = 0.3873; - c30as = -0.23; - c33as = 0.26; - c43 = -0.31036; - c46 = -0.0325; - σ6 = 0.5099; - σSlope = -0.0259; - τ = 0.2469; - } else { - // max horizontal - c1 = 0.1813; - c3as = 0.0; - c5 = -0.00846; - c8 = -0.75519; - c10as = 5.6; - c11 = 8.10697; - c13y = 0.0; - c15 = -2.552; - c17 = -2.48795; - c20 = 0.01622; - c24 = -0.41369; - c29 = 0.44307; - c30as = -0.23; - c33as = 0.26; - c43 = -0.29648; - c46 = -0.03301; - σ6 = 0.5035; - σSlope = -0.0635; - τ = 0.2598; - } - } - } - - private final Coefficients coeffs; - private final Coefficients coeffsPGA; - private final Coefficients coeffsPGAprime; - - McVerryEtAl_2000(Imt imt) { - coeffs = new Coefficients(imt, isGeomean() ? COEFFS_GM : COEFFS_MH); - coeffsPGA = new Coefficients(PGA, isGeomean() ? COEFFS_GM : COEFFS_MH); - coeffsPGAprime = new Coefficients(isGeomean()); - } - - @Override - public final LogicTree<GroundMotion> calc(GmmInput in) { - double μ = calcMean(coeffs, coeffsPGA, coeffsPGAprime, tectonicSetting(), sourceType(), in); - double σ = calcStdDev(coeffs, in.Mw); - return GroundMotions.createTree(μ, σ); - } - - /* as opposed to greatest horizontal */ - abstract boolean isGeomean(); - - /* as opposed to subduction */ - abstract TectonicSetting tectonicSetting(); - - abstract SourceType sourceType(); - - private static double calcMean(Coefficients c, Coefficients cPGA, - Coefficients cPGAp, TectonicSetting tect, SourceType type, GmmInput in) { - - double pgaMean = calcMeanBase(cPGA, tect, type, in); - - if (c.imt == PGA) { - return pgaMean; - } - - double pga_prime = exp(calcMeanBase(cPGAp, tect, type, in)); - double sa_prime = exp(calcMeanBase(c, tect, type, in)); - return log(sa_prime * exp(pgaMean) / pga_prime); - } - - private static double calcMeanBase(Coefficients c, TectonicSetting tect, - SourceType type, GmmInput in) { - - double lnSA_AB = (tect == ACTIVE_CRUST || tect == VOLCANIC) - ? calcCrustal(c, tect, in) : calcSubduction(c, type, in); - - double lnSA_CD = calcSiteTerm(c, in.vs30, lnSA_AB); - - return lnSA_AB + lnSA_CD; - } - - private static double calcCrustal(Coefficients c, TectonicSetting tect, - GmmInput in) { - - double Mw = in.Mw; - double rRup = in.rRup; - - double rVol = (tect == VOLCANIC) ? rRup : 0.0; - - FaultStyle style = rakeToFaultStyle(in.rake); - double faultTerm = (style == REVERSE) ? c.c33as : (style == REVERSE_OBLIQUE) - ? c.c33as * 0.5 : (style == NORMAL) ? C32 : 0.0; - - return c.c1 + - C4AS * (Mw - 6.0) + - c.c3as * (8.5 - Mw) * (8.5 - Mw) + - c.c5 * rRup + - (c.c8 + C6AS * (Mw - 6.0)) * log(sqrt(rRup * rRup + c.c10as * c.c10as)) + - c.c46 * rVol + faultTerm; - } - - private static double calcSubduction(Coefficients c, SourceType type, - GmmInput in) { - - double Mw = in.Mw; - double magTerm = 10 - Mw; - - double subTerm = (type == SourceType.INTERFACE) ? c.c24 : 0.0; - - return c.c11 + - (C12Y + (c.c15 - c.c17) * C19Y) * (Mw - 6) + - c.c13y * magTerm * magTerm * magTerm + - c.c17 * log(in.rRup + C18Y * exp(C19Y * Mw)) + - c.c20 * in.zHyp + subTerm; - - // NOTE: tectonic setting terms from publication: - // c.c24 * SI + c.c46 * rVol * (1 - DS); - // - // volcanic sources will always be fed to calcCrustal so rVol will - // alwyas be 0.0 here; only interface (or not) matters. - } - - private static double calcSiteTerm(Coefficients c, double vs30, - double lnSA_AB) { - SiteClass siteClass = SiteClass.fromVs30(vs30); - checkState(siteClass != SiteClass.E); - return (siteClass == SiteClass.C) ? c.c29 - : (siteClass == SiteClass.D) ? c.c30as * log(exp(lnSA_AB) + 0.03) + c.c43 : 0.0; - } - - private double calcStdDev(Coefficients c, double Mw) { - double sigma = c.σ6 + - ((Mw >= 7.0) ? c.σSlope : (Mw <= 5.0) ? -c.σSlope : c.σSlope * (Mw - 6.0)); - return sqrt(sigma * sigma + c.τ * c.τ); - } - - // @formatter:on - - /* - * New Zealand site classes; these do not stricly correspond to ranges of vs30 - * values - */ - private static enum SiteClass { - A(1500.0), - B(360.0), - C(250.0), - D(150.0), - E(0.0); - - private double min; - - private SiteClass(double min) { - this.min = min; - } - - static SiteClass fromVs30(double vs30) { - checkArgument(vs30 > 0.0); - for (SiteClass siteClass : values()) { - if (vs30 > siteClass.min) { - return siteClass; - } - } - throw new IllegalStateException("Shouldn't be here"); - } - } - - private static FaultStyle rakeToFaultStyle(double rake) { - if ((rake > 33 && rake <= 56) || (rake >= 124 && rake < 147)) { - return REVERSE_OBLIQUE; - } else if (rake > 56 && rake < 124) { - return REVERSE; - } else if (rake > -147 && rake < -33) { - return NORMAL; - } else { - // rake <= -147 || rake >= 147 - // rake <= 33 && rake >= -33 - return STRIKE_SLIP; - } - } - - static final class Crustal extends McVerryEtAl_2000 { - final static String NAME = McVerryEtAl_2000.NAME + " : Crustal"; - - Crustal(Imt imt) { - super(imt); - } - - @Override - boolean isGeomean() { - return false; - } - - @Override - TectonicSetting tectonicSetting() { - return TectonicSetting.ACTIVE_CRUST; - } - - @Override - SourceType sourceType() { - // irrelevant to implementation - return SourceType.FAULT; - } - } - - static final class Volcanic extends McVerryEtAl_2000 { - final static String NAME = McVerryEtAl_2000.NAME + " : Volcanic"; - - Volcanic(Imt imt) { - super(imt); - } - - @Override - boolean isGeomean() { - return false; - } - - @Override - TectonicSetting tectonicSetting() { - return TectonicSetting.VOLCANIC; - } - - @Override - SourceType sourceType() { - // irrelevant to implementation - return SourceType.GRID; - } - } - - static final class Interface extends McVerryEtAl_2000 { - final static String NAME = McVerryEtAl_2000.NAME + " : Interface"; - - Interface(Imt imt) { - super(imt); - } - - @Override - boolean isGeomean() { - return false; - } - - @Override - TectonicSetting tectonicSetting() { - return TectonicSetting.SUBDUCTION; - } - - @Override - SourceType sourceType() { - return SourceType.INTERFACE; - } - } - - static final class Slab extends McVerryEtAl_2000 { - final static String NAME = McVerryEtAl_2000.NAME + " : Slab"; - - Slab(Imt imt) { - super(imt); - } - - @Override - boolean isGeomean() { - return false; - } - - @Override - TectonicSetting tectonicSetting() { - return TectonicSetting.SUBDUCTION; - } - - @Override - SourceType sourceType() { - return SourceType.SLAB; - } - } -} diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2006.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2006.java index 51b8d595b8ede8076f3fda66e89fad1508870532..b46893692d060e49b93987d379221687476dfd19 100644 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2006.java +++ b/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2006.java @@ -31,9 +31,7 @@ import com.google.common.collect.Range; import com.google.common.collect.Sets; import gov.usgs.earthquake.nshmp.Earthquakes; -import gov.usgs.earthquake.nshmp.data.Interpolator; import gov.usgs.earthquake.nshmp.gmm.GmmInput.Constraints; -import gov.usgs.earthquake.nshmp.gmm.ZhaoEtAl_2016.SiteClass; import gov.usgs.earthquake.nshmp.tree.LogicTree; /** @@ -286,36 +284,6 @@ public abstract class ZhaoEtAl_2006 implements GroundMotionModel { : c.C3; } - private static final double siteTermSmooth(Coefficients c, double vs30) { - Range<SiteClass> siteRange = ZhaoEtAl_2016.siteRange(vs30); - SiteClass lower = siteRange.upperEndpoint(); - SiteClass upper = siteRange.lowerEndpoint(); - if (lower == upper) { - return siteCoeff(c, lower); - } - double fsLower = siteCoeff(c, lower); - double fsUpper = siteCoeff(c, upper); - return Interpolator.findY( - lower.vs30, fsLower, - upper.vs30, fsUpper, - vs30); - } - - private static double siteCoeff(Coefficients c, SiteClass siteClass) { - switch (siteClass) { - case I: - return c.C1; - case II: - return c.C2; - case III: - return c.C3; - case IV: - return c.C4; - default: - throw new IllegalStateException(); - } - } - /* * Developer note: In most GMMs, subtype constructors, if present, need only * the IMT argument to initialize their parent. To support several diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2016.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2016.java deleted file mode 100644 index 0a1caacaf69aaead92c01b3be4d2d8b4dfffbb98..0000000000000000000000000000000000000000 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/ZhaoEtAl_2016.java +++ /dev/null @@ -1,704 +0,0 @@ -package gov.usgs.earthquake.nshmp.gmm; - -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.NORMAL; -import static gov.usgs.earthquake.nshmp.gmm.FaultStyle.REVERSE; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.MW; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.RRUP; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.VS30; -import static gov.usgs.earthquake.nshmp.gmm.GmmInput.Field.ZTOR; -import static java.lang.Math.exp; -import static java.lang.Math.log; -import static java.lang.Math.min; -import static java.lang.Math.sqrt; - -import java.util.Map; - -import com.google.common.annotations.Beta; -import com.google.common.collect.ImmutableMap; -import com.google.common.collect.Maps; -import com.google.common.collect.Range; - -import gov.usgs.earthquake.nshmp.Earthquakes; -import gov.usgs.earthquake.nshmp.data.Interpolator; -import gov.usgs.earthquake.nshmp.gmm.GmmInput.Constraints; -import gov.usgs.earthquake.nshmp.tree.LogicTree; - -/** - * Abstract implementation of the shallow crustal, upper mantle, subduction - * interface, and subduction slab ground motion models by Zhao et al. (2016). - * - * <p><b>Implementation notes:</b><ul> - * - * <li>All models supply site-class specific sigma, however, only the total - * sigma is used here as reported in the various coefficient tables.</li> - * - * <li>All models currently ignore volcanic path terms.</li> - * - * <li>The interface model handles shallow, {@code zHyp ≤ 25 km}, and deep, - * {@code zHyp > 25 km}, events differently.</li> - * - * <li>THe site amplification term is handled via interpolation of terms - * computed for discrete Vs30 values that correspond to the Zhao site classes: - * I, II, III, and IV.</li> - * - * </ul> - * - * <p><b>References:</b><ul> - * - * <li>Zhao, J.X., Liang, X., Jiang, F., Xing, H., Zhu, M., Hou, R., Zhang, Y., - * Lan, X., Rhoades, D.A., Irikura, K., Fukushima, Y., and Somerville, P.G., - * 2016, Ground-motion prediction equations for subduction interface earthquakes - * in Japan using site class and simple geometric attenuation functions: - * Bulletin of the Seismological Society of America, v. 106, p. - * 1518-1534.<b>doi:</b> <a href="http://dx.doi.org/10.1785/0120150034"> - * 10.1785/0120150034</a></li> - * - * <li>Zhao, J.X., Jiang, F., Shi, P., Xing, H., Huang, H., Hou, R., Zhang, Y., - * Yu, P., Lan, X., Rhoades, D.A., Somerville, P.G., Irikura, K., and Fukushima, - * Y., 2016, Ground-motion prediction equations for subduction slab earthquakes - * in Japan using site class and simple geometric attenuation functions: - * Bulletin of the Seismological Society of America, v. 106, p. - * 1535-1551.<b>doi:</b> <a href="http://dx.doi.org/10.1785/0120150056"> - * 10.1785/0120150056</a></li> - * - * <li>Zhao, J.X., Zhou, S.L., Gao, P.J., Zhang, Y.B., Zhou, J., Lu, M., and - * Rhoades, D.A., 2016, Ground-motion prediction equations for shallow crustal - * and upper mantle earthquakes in Japan using site class and simple geometric - * attenuation functions: Bulletin of the Seismological Society of America, v. - * 106, p. 1552-1569.<b>doi:</b> <a href="http://dx.doi.org/10.1785/0120150063"> - * 10.1785/0120150063</a></li> - * - * </ul> - * - * <p><b>Component:</b> geometric mean of two randomly oriented horizontal - * components - * - * @author U.S. Geological Survey - * @see Gmm#ZHAO_16_SHALLOW_CRUST - * @see Gmm#ZHAO_16_UPPER_MANTLE - * @see Gmm#ZHAO_16_INTERFACE - * @see Gmm#ZHAO_16_SLAB - */ -@Beta -public abstract class ZhaoEtAl_2016 implements GroundMotionModel { - - /* - * Implementation notes: - * - * Site amplification terms shared by all models, Table 3, Zhao, Zhou et al. - * (2016) stored in Zhao16_siteamp.csv. The 'rock-site factor' (AmSCI) was - * removed from this table because the values were independently smoothed in - * the interface model; AmSCI is included as a coefficient with the values in - * the curstal and slab tables being the same. - * - * See notes in nonlinCrossover(). - */ - - static final String NAME = "Zhao et al. (2016)"; - - static final Constraints CONSTRAINTS = Constraints.builder() - .set(MW, Range.closed(5.0, 9.5)) - .set(RRUP, Range.closed(0.0, 1000.0)) - .set(ZTOR, Earthquakes.SLAB_DEPTH_RANGE) - .set(VS30, Range.closed(150.0, 1000.0)) - .build(); - - static final CoefficientContainer COEFFS_CRUST = new CoefficientContainer("Zhao16_crust.csv"); - static final CoefficientContainer COEFFS_INTER = new CoefficientContainer("Zhao16_interface.csv"); - static final CoefficientContainer COEFFS_SLAB = new CoefficientContainer("Zhao16_slab.csv"); - static final CoefficientContainer SITE_AMP = new CoefficientContainer("Zhao16_siteamp.csv"); - - private final SiteAmp siteAmp; - - private static final double MC = 7.1; - private static final double X_0_CR = 2.0; - private static final double X_0_INT = 10.0; - - ZhaoEtAl_2016(Imt imt) { - siteAmp = new SiteAmp(imt, SITE_AMP); - } - - /* - * Compute the natural-log "hard-rock" ground motion. This is the basic ground - * motion model without the site term, ln(A). - */ - abstract double saRock(GmmInput in); - - /* - * The elastic site amplification ratio, aNmax, is unique to each site class - * and model. The interface model has depth dependent values; zTor is ignored - * by other implementations. - */ - abstract double elasticSiteAmpRatio(SiteClass siteClass, double zTor); - - /* - * Model and site-class dependent nonlinear soil site smoothing factor. - */ - abstract double smoothingFactor(SiteClass siteClass); - - abstract double sigma(); - - @Override - public LogicTree<GroundMotion> calc(GmmInput in) { - double lnSaRock = saRock(in); - double siteTerm = siteTerm(in, exp(lnSaRock)); - return GroundMotions.createTree( - lnSaRock + siteTerm, - sigma()); - } - - private double siteTerm(GmmInput in, double saRock) { - Range<SiteClass> siteRange = siteRange(in.vs30); - /* - * Reverse range values here because lower site classes correspond to higher - * Vs30 values. - */ - SiteClass lower = siteRange.upperEndpoint(); - SiteClass upper = siteRange.lowerEndpoint(); - if (lower == upper) { - return siteTerm(lower, in.zTor, saRock); - } - double fsLower = siteTerm(lower, in.zTor, saRock); - double fsUpper = siteTerm(upper, in.zTor, saRock); - return Interpolator.findY( - lower.vs30, fsLower, - upper.vs30, fsUpper, - in.vs30); - } - - private double siteTerm(SiteClass siteClass, double zTor, double saRock) { - double aNmax = elasticSiteAmpRatio(siteClass, zTor); - double aMax = siteAmp.aMax.get(siteClass); - double sRC = siteAmp.sRc.get(siteClass); - double Imf = siteClass.impedance; - double fSR = smoothingFactor(siteClass); - return siteTerm(aNmax, aMax, sRC, Imf, fSR, saRock); - } - - /* - * Zhao, Zhou, et al. (2016) - */ - static final class ShallowCrust extends ZhaoEtAl_2016 { - - static final String NAME = ZhaoEtAl_2016.NAME + " : Shallow Crust"; - - /* Tables 4, 5, 6 */ - static final class Coefficients { - - final double c1, c2, c, d, fN, b, g, gL, gN, e, γ, σ; - - /* Site amplification */ - final double AmSCI, s2, s3, s4; - final Map<SiteClass, Double> fsr; - - /* Unused or constant: FumRV, FumNS, gum, eum, evcr, sigma, tau */ - - Coefficients(Imt imt, CoefficientContainer cc) { - - Map<String, Double> coeffs = cc.get(imt); - c1 = coeffs.get("c1"); - c2 = coeffs.get("c2"); - c = coeffs.get("ccr"); - d = coeffs.get("dcr"); - fN = coeffs.get("FcrN"); - b = coeffs.get("bcr"); - g = coeffs.get("gcr"); - gL = coeffs.get("gcrL"); - gN = coeffs.get("gcrN"); - e = coeffs.get("ecr"); - γ = coeffs.get("gamma"); - σ = coeffs.get("sigmaT"); - - AmSCI = coeffs.get("AmSCI"); - s2 = coeffs.get("S2"); - s3 = coeffs.get("S3"); - s4 = coeffs.get("S4"); - - fsr = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, coeffs.get("FsrCrI"), - SiteClass.II, coeffs.get("FsrCrII"), - SiteClass.III, coeffs.get("FsrCrIII"), - SiteClass.IV, coeffs.get("FsrCrIV"))); - } - } - - private final Coefficients c; - private final Map<SiteClass, Double> aNmax; - - ShallowCrust(Imt imt) { - super(imt); - c = new Coefficients(imt, COEFFS_CRUST); - aNmax = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, c.AmSCI, - SiteClass.II, c.AmSCI * exp(c.s2), - SiteClass.III, c.AmSCI * exp(c.s3), - SiteClass.IV, c.AmSCI * exp(c.s4))); - } - - @Override - final double saRock(GmmInput in) { - - FaultStyle style = GmmUtils.rakeToFaultStyle_NSHMP(in.rake); - double Mw = in.Mw; - double rRup = in.rRup; - - /* Source term; equation 1 */ - double mTerm = (Mw > MC) ? c.c * MC + c.d * (Mw - MC) : c.c * Mw; - double fm = c.b * in.zTor + mTerm + (style == NORMAL ? c.fN : 0.0); - - /* Geometric spreading distance; equation 4 */ - double r = X_0_CR + rRup + exp(c.c1 + c.c2 * min(Mw, MC)); - - /* Geometric attenuation terms; equations 3, 6 */ - double fg = c.g * log(r) + - c.gL * log(in.rRup + 200.0) + - c.gN * log(min(rRup, 30.0) + exp(c.c1 + 6.5 * c.c2)); - - /* Anelastic attenuation term; volcanic ignored (eV * rRup) */ - double fe = c.e * in.rRup; - - return fm + fg + fe + c.γ; - } - - @Override - final double elasticSiteAmpRatio(SiteClass siteClass, double zTor) { - return aNmax.get(siteClass); - } - - @Override - double smoothingFactor(SiteClass siteClass) { - return c.fsr.get(siteClass); - } - - @Override - final double sigma() { - return c.σ; - } - } - - /* - * Zhao, Zhou, et al. (2016) - */ - static final class UpperMantle extends ZhaoEtAl_2016 { - - static final String NAME = ZhaoEtAl_2016.NAME + " : Upper Mantle"; - - /* Tables 4, 5, 6 */ - static final class Coefficients { - - final double c1, c2, c, d, fRV, fNS, g, gL, gN, e, γ, σ; - - /* Site amplification */ - final double AmSCI, s2, s3, s4; - final Map<SiteClass, Double> fsr; - - /* Unused or constant: FcrN, bcr, gcr, ecr, evcr, sigma, tau */ - - Coefficients(Imt imt, CoefficientContainer cc) { - - Map<String, Double> coeffs = cc.get(imt); - c1 = coeffs.get("c1"); - c2 = coeffs.get("c2"); - c = coeffs.get("ccr"); - d = coeffs.get("dcr"); - fRV = coeffs.get("FumRV"); - fNS = coeffs.get("FumNS"); - g = coeffs.get("gum"); - gL = coeffs.get("gcrL"); - gN = coeffs.get("gcrN"); - e = coeffs.get("eum"); - γ = coeffs.get("gamma"); - σ = coeffs.get("sigmaT"); - - AmSCI = coeffs.get("AmSCI"); - s2 = coeffs.get("S2"); - s3 = coeffs.get("S3"); - s4 = coeffs.get("S4"); - - fsr = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, coeffs.get("FsrUmI"), - SiteClass.II, coeffs.get("FsrUmII"), - SiteClass.III, coeffs.get("FsrUmIII"), - SiteClass.IV, coeffs.get("FsrUmIV"))); - } - } - - private final Coefficients c; - private final Map<SiteClass, Double> aNmax; - - UpperMantle(Imt imt) { - super(imt); - c = new Coefficients(imt, COEFFS_CRUST); - aNmax = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, c.AmSCI, - SiteClass.II, c.AmSCI * exp(c.s2), - SiteClass.III, c.AmSCI * exp(c.s3), - SiteClass.IV, c.AmSCI * exp(c.s4))); - } - - @Override - final double saRock(GmmInput in) { - - FaultStyle style = GmmUtils.rakeToFaultStyle_NSHMP(in.rake); - double Mw = in.Mw; - double rRup = in.rRup; - - /* Source term; equation 2 */ - double mTerm = (Mw > MC) ? c.c * MC + c.d * (Mw - MC) : c.c * Mw; - double fm = mTerm + (style == REVERSE ? c.fRV : c.fNS); - - /* Geometric spreading distance; equation 4 */ - double r = X_0_CR + rRup + exp(c.c1 + c.c2 * min(Mw, MC)); - - /* Geometric attenuation terms; equations 6, 7 */ - double fg = c.g * log(r) + - c.gL * log(in.rRup + 200.0) + - c.gN * log(min(rRup, 30.0) + exp(c.c1 + 6.5 * c.c2)); - - /* Anelastic attenuation term; volcanic ignored (eV * rRup) */ - double fe = c.e * in.rRup; - - return fm + fg + fe + c.γ; - } - - @Override - final double elasticSiteAmpRatio(SiteClass siteClass, double zTor) { - return aNmax.get(siteClass); - } - - @Override - double smoothingFactor(SiteClass siteClass) { - return c.fsr.get(siteClass); - } - - @Override - final double sigma() { - return c.σ; - } - } - - /* - * Zhao, Liang, et al. (2016) - * - * Notes: use x_ij = rRup iff fault plane known, otherwise rHyp - */ - static final class Interface extends ZhaoEtAl_2016 { - - static final String NAME = ZhaoEtAl_2016.NAME + " : Interface"; - - private static final double C2 = 1.151; - - /* Tables 2, 3, 4, 5 */ - static final class Coefficients { - - final double c1, cD, cS, d, γS, b, g, gDL, gSL, eS, γ, σ; - - /* Site amplification */ - final double AmSCI, s2, s3, s4, s5, s6, s7; - final Map<SiteClass, Double> fsr; - - /* Unused or constant: c2, eV, sigma, tau */ - - Coefficients(Imt imt, CoefficientContainer cc) { - - Map<String, Double> coeffs = cc.get(imt); - c1 = coeffs.get("c1"); - cD = coeffs.get("cD"); - cS = coeffs.get("cS"); - d = coeffs.get("d"); - γS = coeffs.get("gammaS"); - b = coeffs.get("b"); - g = coeffs.get("g"); - gDL = coeffs.get("gDL"); - gSL = coeffs.get("gSL"); - eS = coeffs.get("eS"); - γ = coeffs.get("gamma"); - σ = coeffs.get("sigmaT"); - - AmSCI = coeffs.get("AmSCI"); - s2 = coeffs.get("S2"); - s3 = coeffs.get("S3"); - s4 = coeffs.get("S4"); - s5 = coeffs.get("S5"); - s6 = coeffs.get("S6"); - s7 = coeffs.get("S7"); - - fsr = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, coeffs.get("FsrI"), - SiteClass.II, coeffs.get("FsrII"), - SiteClass.III, coeffs.get("FsrIII"), - SiteClass.IV, coeffs.get("FsrIV"))); - } - } - - private final Coefficients c; - private final Map<SiteClass, Double> aNmax_shallow; - private final Map<SiteClass, Double> aNmax_deep; - - Interface(Imt imt) { - super(imt); - c = new Coefficients(imt, COEFFS_INTER); - aNmax_shallow = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, c.AmSCI, - SiteClass.II, c.AmSCI * exp(c.s2), - SiteClass.III, c.AmSCI * exp(c.s3), - SiteClass.IV, c.AmSCI * exp(c.s4))); - aNmax_deep = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, c.AmSCI, - SiteClass.II, c.AmSCI * exp(c.s5), - SiteClass.III, c.AmSCI * exp(c.s6), - SiteClass.IV, c.AmSCI * exp(c.s7))); - } - - @Override - final double saRock(GmmInput in) { - - double Mw = in.Mw; - double rRup = in.rRup; - boolean deep = in.zHyp > 25.0; - - /* Source term; equations 1, 2 */ - double cDepth = deep ? c.cD : c.cS; - double mTerm = (Mw > MC) ? cDepth * MC + c.d * (Mw - MC) : cDepth * Mw; - double fm = c.b * in.zTor + c.γS + mTerm; - - /* Geometric spreading distance; equation 4 */ - double r = X_0_INT + rRup + exp(c.c1 + C2 * min(Mw, MC)); - - /* Geometric attenuation terms; equations 3a, 6 */ - double fg = c.g * log(r) + (deep ? c.gDL : c.gSL) * log(rRup + 200.0); - - /* Anelastic attenuation (shallow only); volcanic ignored (eV * rV) */ - double fe = deep ? 0.0 : c.eS * rRup; - - return fm + fg + fe + c.γ; - } - - @Override - final double elasticSiteAmpRatio(SiteClass siteClass, double zTor) { - return (zTor > 25.0 ? aNmax_deep : aNmax_shallow).get(siteClass); - } - - @Override - double smoothingFactor(SiteClass siteClass) { - return c.fsr.get(siteClass); - } - - @Override - final double sigma() { - return c.σ; - } - } - - /* - * Zhao, Jiang, et al. (2016) - */ - static final class Slab extends ZhaoEtAl_2016 { - - static final String NAME = ZhaoEtAl_2016.NAME + " : Slab"; - - private static final double MSC = 6.3; - private static final double ΔMC = MC - MSC; - private static final double ΔMCSQ = ΔMC * ΔMC; - private static final double C2 = 1.151; - - /* Tables 4, 5, 6, 7 */ - static final class Coefficients { - - final double c1, csl1, csl2, d, b, g, gL, e, eH, γ, σ; - - /* Site amplification */ - final double AmSCI, s2, s3, s4; - final Map<SiteClass, Double> fsr; - - /* Unused or constant: c2, eV, sigma, tau */ - - Coefficients(Imt imt, CoefficientContainer cc) { - - Map<String, Double> coeffs = cc.get(imt); - c1 = coeffs.get("c1"); - csl1 = coeffs.get("cSL1"); - csl2 = coeffs.get("cSL2"); - d = coeffs.get("d"); - b = coeffs.get("b"); - g = coeffs.get("g"); - gL = coeffs.get("gL"); - e = coeffs.get("e"); - eH = coeffs.get("eH"); - γ = coeffs.get("gamma"); - σ = coeffs.get("sigmaT"); - - AmSCI = coeffs.get("AmSCI"); - s2 = coeffs.get("S2"); - s3 = coeffs.get("S3"); - s4 = coeffs.get("S4"); - - fsr = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, coeffs.get("FsrI"), - SiteClass.II, coeffs.get("FsrII"), - SiteClass.III, coeffs.get("FsrIII"), - SiteClass.IV, coeffs.get("FsrIV"))); - } - } - - private final Coefficients c; - private final Map<SiteClass, Double> aNmax; - - Slab(Imt imt) { - super(imt); - c = new Coefficients(imt, COEFFS_SLAB); - aNmax = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, c.AmSCI, - SiteClass.II, c.AmSCI * exp(c.s2), - SiteClass.III, c.AmSCI * exp(c.s3), - SiteClass.IV, c.AmSCI * exp(c.s4))); - } - - @Override - final double saRock(GmmInput in) { - - double Mw = in.Mw; - double rRup = in.rRup; - double zTor = in.zTor; - - /* Source term; equation 1 */ - double fm = c.b * zTor; - if (Mw > MC) { - fm += c.csl1 * MC + c.csl2 * ΔMCSQ + c.d * (Mw - MC); - } else { - double Δmsc = Mw - MSC; - fm += c.csl1 * Mw + c.csl2 * Δmsc * Δmsc; - } - - /* Geometric spreading distance; equation 3 */ - double r = rRup + exp(c.c1 + C2 * min(Mw, MC)); - - /* Geometric attenuation terms; equation 2a */ - double fg = c.g * log(r) + c.gL * log(rRup + 200.0); - - /* Anelastic atten. term; volc. ignored (eV * rV) equations 2a, 5 */ - double fe = c.e * rRup + (zTor < 50.0 ? 0.0 : c.eH * (0.02 * zTor - 1.0)); - - return fm + fg + fe + c.γ; - } - - @Override - final double elasticSiteAmpRatio(SiteClass siteClass, double zTor) { - return aNmax.get(siteClass); - } - - @Override - double smoothingFactor(SiteClass siteClass) { - return c.fsr.get(siteClass); - } - - @Override - final double sigma() { - return c.σ; - } - } - - static class SiteAmp { - - final Map<SiteClass, Double> aMax; - final Map<SiteClass, Double> sRc; - - SiteAmp(Imt imt, CoefficientContainer cc) { - Map<String, Double> coeffs = cc.get(imt); - - aMax = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, coeffs.get("AmaxI"), - SiteClass.II, coeffs.get("AmaxII"), - SiteClass.III, coeffs.get("AmaxIII"), - SiteClass.IV, coeffs.get("AmaxIV"))); - - sRc = Maps.immutableEnumMap(ImmutableMap.of( - SiteClass.I, coeffs.get("SrcI"), - SiteClass.II, coeffs.get("SrcII"), - SiteClass.III, coeffs.get("SrcIII"), - SiteClass.IV, coeffs.get("SrcIV"))); - } - } - - static double siteTerm( - double aNmax, - double aMax, - double sRC, - double Imf, - double fSR, - double saRock) { - - double sReff = saRock * Imf; - double sReffC = sRC * Imf; - double sNC = nonlinCrossover(aNmax, aMax, sReffC); - double sMR = sReff * fSR * sNC / sReffC; - return nonlinAmpRatio(aNmax, aMax, sMR, sReffC); - } - - private static double nonlinAmpRatio(double aNmax, double aMax, double sMR, double sReffC) { - return log(aNmax) - log(aMax) * lnSqββ(sMR) / lnSqββ(sReffC); - } - - private static double lnSqβ(double x) { - return log(x * x + β); - } - - private static double lnSqββ(double x) { - return lnSqβ(x) - lnβ; - } - - /* α = 2.0 exponent is handled via in-place multiplication */ - private static final double β = 0.6; - private static final double lnβ = log(β); - - /* Identical in all models. */ - private static double nonlinCrossover(double aNmax, double aMax, double sReffC) { - /* Zhao, Ziang, et al. (2016); slab; equation 14. */ - double sF = aNmax / aMax; - double t = exp((log(aNmax) * log(sReffC * sReffC + β) - log(sF) * lnβ) / log(aMax)); - /* - * For some short periods, exp(t) - β < 0 ==> NaN. These are cases where - * aNmax and aMax are below 1.25, which are circumstances Zhao has special - * cased to use approximate functional forms defined in Xhao, Hu et al. - * (2015), but these are difficult to follow (e.g. θ can be any - * "arbitrarily large" number). Zhao, Hu et al. also state that for Table 5, - * those periods not listed for each site class do not require nonlinear - * site terms, but this listing is inconsistent with the fSR tables in each - * implementation. - * - * For now, we are preventing the expression below from falling below 0, - * which almost certainly incorrect. - */ - return (t < β) ? 0.0 : sqrt(t - β); - } - - static Range<SiteClass> siteRange(double vs30) { - if (vs30 >= SiteClass.I.vs30) { - return Range.singleton(SiteClass.I); - } else if (vs30 >= SiteClass.II.vs30) { - return Range.closedOpen(SiteClass.I, SiteClass.II); - } else if (vs30 >= SiteClass.III.vs30) { - return Range.closedOpen(SiteClass.II, SiteClass.III); - } else if (vs30 >= SiteClass.IV.vs30) { - return Range.closedOpen(SiteClass.III, SiteClass.IV); - } else { - return Range.singleton(SiteClass.IV); - } - } - - static enum SiteClass { - I(760.0, 0.91), - II(450.0, 1.023), - III(250.0, 1.034), - IV(150.0, 0.737); - - final double vs30; - final double impedance; - - private SiteClass(double vs30, double impedance) { - this.vs30 = vs30; - this.impedance = impedance; - } - } - -} diff --git a/src/main/resources/gmm/coeffs/GK15.csv b/src/main/resources/gmm/coeffs/GK15.csv deleted file mode 100644 index 0c338efce01f98c7f8d18e504261e0f327fc6ae6..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/GK15.csv +++ /dev/null @@ -1,23 +0,0 @@ -T,dummy -0.01,0.0 -0.02,0.0 -0.03,0.0 -0.05,0.0 -0.075,0.0 -0.1,0.0 -0.15,0.0 -0.2,0.0 -0.25,0.0 -0.3,0.0 -0.4,0.0 -0.5,0.0 -0.75,0.0 -1.0,0.0 -1.5,0.0 -2.0,0.0 -3.0,0.0 -4.0,0.0 -5.0,0.0 -7.5,0.0 -10.0,0.0 -PGA,0.0 diff --git a/src/main/resources/gmm/coeffs/GK17.csv b/src/main/resources/gmm/coeffs/GK17.csv deleted file mode 100644 index 7e65a8a2e365fc0bc5fa9e1585c58e6b7c2dc0dc..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/GK17.csv +++ /dev/null @@ -1,23 +0,0 @@ - T, sigma, tau, phi - PGA,0.63100,0.37500,0.50700 - 0.010,0.63100,0.37500,0.50700 - 0.020,0.63300,0.37500,0.51100 - 0.030,0.64069,0.37845,0.51851 - 0.050,0.66893,0.40170,0.53414 - 0.075,0.71300,0.45600,0.54900 - 0.100,0.73400,0.47700,0.55700 - 0.150,0.72000,0.45100,0.56200 - 0.200,0.69300,0.40700,0.56000 - 0.250,0.68437,0.38956,0.56052 - 0.300,0.67811,0.37633,0.56181 - 0.400,0.67300,0.36500,0.56500 - 0.500,0.69300,0.39800,0.56800 - 0.750,0.73200,0.46500,0.56500 - 1.000,0.73800,0.49200,0.54900 - 1.500,0.76419,0.49776,0.57500 - 2.000,0.78300,0.50100,0.60100 - 3.000,0.77400,0.51200,0.58000 - 4.000,0.73300,0.44800,0.58100 - 5.000,0.74600,0.46400,0.58400 - 7.500,0.78675,0.52450,0.58689 -10.000,0.73600,0.45100,0.58200 diff --git a/src/main/resources/gmm/coeffs/McVerry00_gm.csv b/src/main/resources/gmm/coeffs/McVerry00_gm.csv deleted file mode 100644 index 19d7bb703e9b74c669f07a0ae208d379ab060d80..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/McVerry00_gm.csv +++ /dev/null @@ -1,13 +0,0 @@ -T,c1,c3as,c5,c8,c10as,c11,c13y,c15,c17,c20,c24,c29,c30as,c33as,c43,c46,sigma6,sigSlope,tau -PGA,0.14274,0,-0.00989,-0.68744,5.6,8.57343,0,-2.552,-2.56592,0.01545,-0.49963,0.27315,-0.23,0.26,-0.33716,-0.03255,0.4871,-0.1011,0.2677 -0.075,1.2205,0.03,-0.00914,-0.93059,5.58,8.69303,0,-2.707,-2.55903,0.01821,-0.52504,0.27879,-0.28,0.26,-0.49068,-0.03441,0.5297,-0.0703,0.3139 -0.1,1.53365,0.028,-0.00903,-0.96506,5.5,9.304,-0.0011,-2.655,-2.61372,0.01737,-0.61452,0.28619,-0.28,0.26,-0.46604,-0.03594,0.5401,-0.0292,0.3017 -0.2,1.22565,-0.0138,-0.00975,-0.75855,5.1,10.4163,-0.0027,-2.528,-2.70038,0.01531,-0.65966,0.34064,-0.245,0.26,-0.31282,-0.03823,0.5599,0.0172,0.2583 -0.3,0.21124,-0.036,-0.01032,-0.524,4.8,9.21783,-0.0036,-2.454,-2.47356,0.01304,-0.56604,0.53213,-0.195,0.198,-0.07565,-0.03535,0.5456,-0.0566,0.1967 -0.4,-0.10541,-0.0518,-0.00941,-0.50802,4.52,8.0115,-0.0043,-2.401,-2.30457,0.01426,-0.33169,0.63272,-0.16,0.154,0.17615,-0.03354,0.5556,-0.1064,0.1802 -0.5,-0.1426,-0.0635,-0.00878,-0.52214,4.3,7.87495,-0.0048,-2.36,-2.31991,0.01277,-0.24374,0.58809,-0.121,0.119,0.34775,-0.03211,0.5658,-0.1123,0.144 -0.75,-0.65968,-0.0862,-0.00802,-0.47264,3.9,7.26785,-0.0057,-2.286,-2.2846,0.01055,-0.01583,0.50708,-0.05,0.057,0.7238,-0.02857,0.5611,-0.0836,0.1871 -1,-0.51404,-0.102,-0.00647,-0.58672,3.7,6.98741,-0.0064,-2.234,-2.28256,0.00927,0.02009,0.33002,0,0.013,0.89239,-0.025,0.5573,-0.062,0.2073 -1.5,-0.95399,-0.12,-0.00713,-0.49268,3.55,6.77543,-0.0073,-2.16,-2.27895,0.00748,-0.07051,0.07445,0.04,-0.049,0.77743,-0.02008,0.5419,0.0385,0.2405 -2,-1.24167,-0.12,-0.00713,-0.49268,3.55,6.48775,-0.0073,-2.16,-2.27895,0.00748,-0.07051,0.07445,0.04,-0.049,0.77743,-0.02008,0.5419,0.0385,0.2405 -3,-1.5657,-0.1726,-0.00623,-0.52257,3.5,5.05424,-0.0089,-2.033,-2.0556,-0.00273,-0.23967,0.09869,0.04,-0.156,0.60938,-0.01587,0.5809,0.1403,0.2053 diff --git a/src/main/resources/gmm/coeffs/McVerry00_mh.csv b/src/main/resources/gmm/coeffs/McVerry00_mh.csv deleted file mode 100644 index 01a46c6f4749cecdd2a9ddd52b5b1c52bc92fef3..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/McVerry00_mh.csv +++ /dev/null @@ -1,13 +0,0 @@ -T,c1,c3as,c5,c8,c10as,c11,c13y,c15,c17,c20,c24,c29,c30as,c33as,c43,c46,sigma6,sigSlope,tau -PGA,0.28815,0,-0.00967,-0.70494,5.6,8.68354,0,-2.552,-2.56727,0.0155,-0.50962,0.30206,-0.23,0.26,-0.31769,-0.03279,0.4865,-0.1261,0.2687 -0.075,1.36561,0.03,-0.00889,-0.94568,5.58,8.68782,0,-2.707,-2.54215,0.0185,-0.48652,0.31139,-0.28,0.26,-0.43866,-0.03452,0.5281,-0.097,0.3217 -0.1,1.77717,0.028,-0.00837,-1.01852,5.5,9.37929,-0.0011,-2.655,-2.60945,0.0174,-0.61973,0.34059,-0.28,0.26,-0.43854,-0.03595,0.5398,-0.0673,0.3088 -0.2,1.39535,-0.0138,-0.0094,-0.78199,5.1,10.61479,-0.0027,-2.528,-2.70851,0.01542,-0.67672,0.37235,-0.245,0.26,-0.29906,-0.03853,0.5703,-0.0243,0.2726 -0.3,0.44591,-0.036,-0.00987,-0.56098,4.8,9.40776,-0.0036,-2.454,-2.47668,0.01278,-0.59339,0.56648,-0.195,0.198,-0.05184,-0.03604,0.5505,-0.0861,0.2112 -0.4,0.01645,-0.0518,-0.00923,-0.51281,4.52,8.50343,-0.0043,-2.401,-2.36895,0.01426,-0.30579,0.69911,-0.16,0.154,0.20301,-0.03364,0.5627,-0.1405,0.2005 -0.5,0.14826,-0.0635,-0.00823,-0.56716,4.3,8.46463,-0.0048,-2.36,-2.4063,0.01287,-0.24839,0.63188,-0.121,0.119,0.37026,-0.0326,0.568,-0.1444,0.1476 -0.75,-0.21246,-0.0862,-0.00738,-0.55384,3.9,7.30176,-0.0057,-2.286,-2.26512,0.0108,-0.01298,0.51577,-0.05,0.057,0.73517,-0.02877,0.5562,-0.0932,0.1794 -1,-0.10451,-0.102,-0.00588,-0.65892,3.7,7.08727,-0.0064,-2.234,-2.27668,0.00946,0.06672,0.34048,0,0.013,0.87764,-0.02561,0.5629,-0.0749,0.2053 -1.5,-0.48665,-0.12,-0.0063,-0.58222,3.55,6.93264,-0.0073,-2.16,-2.28347,0.00788,-0.02289,0.12468,0.04,-0.049,0.75438,-0.02034,0.5394,-0.0056,0.2411 -2,-0.77433,-0.12,-0.0063,-0.58222,3.55,6.64496,-0.0073,-2.16,-2.28347,0.00788,-0.02289,0.12468,0.04,-0.049,0.75438,-0.02034,0.5394,-0.0056,0.2411 -3,-1.30916,-0.1726,-0.00553,-0.57009,3.5,5.05488,-0.0089,-2.033,-2.0305,-0.00265,-0.20537,0.14593,0.04,-0.156,0.61545,-0.01673,0.5701,0.0934,0.2406 diff --git a/src/main/resources/gmm/coeffs/Zhao16_crust.csv b/src/main/resources/gmm/coeffs/Zhao16_crust.csv deleted file mode 100644 index 2c5cbe96cb446236644829e785cd9aea3d3a045f..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/Zhao16_crust.csv +++ /dev/null @@ -1,38 +0,0 @@ -T,c1,c2,ccr,dcr,FcrN,FumRV,FumNS,bcr,gcr,gum,gcrN,gcrL,ecr,eum,evcr,gamma,sigma,tau,sigmaT,AmSCI,S2,S3,S4,FsrCrI,FsrCrII,FsrCrIII,FsrCrIV,FsrUmI,FsrUmII,FsrUmIII,FsrUmIV -PGA,-3.224,0.900,1.0731,0.200,0.3128,-0.2024,0.2519,0.00907,-1.2603,-1.0999,-0.4992,1.2656,-0.00794,-0.01083,-0.00628,-9.0872,0.556,0.391,0.680,1.381,0.2888,0.1221,0.2081,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 -0.01,-3.357,0.909,1.0785,0.200,0.3157,-0.2143,0.2585,0.00907,-1.2695,-1.1072,-0.4868,1.2415,-0.00772,-0.01058,-0.00629,-9.0521,0.556,0.390,0.679,1.228,0.2999,0.1032,0.2193,1.0,1.2,1.0,1.0,1.0,1.0,1.0,1.0 -0.02,-3.552,0.927,1.0725,0.200,0.3185,-0.2213,0.2607,0.00907,-1.2878,-1.1177,-0.4465,1.1989,-0.00756,-0.01051,-0.00634,-8.8578,0.555,0.396,0.682,1.087,0.2978,0.1111,0.2171,1.0,1.3,1.0,0.949,1.0,1.0,1.0,1.150 -0.03,-3.640,0.937,1.0574,0.200,0.3202,-0.2231,0.2603,0.00907,-1.2962,-1.1139,-0.4218,1.1865,-0.00788,-0.01101,-0.00647,-8.6279,0.553,0.408,0.687,1.042,0.2254,0.0897,0.1595,1.0,1.253,1.0,0.550,1.0,1.0,1.0,0.800 -0.04,-3.758,0.944,1.0357,0.200,0.3214,-0.2233,0.2589,0.00907,-1.2515,-1.0797,-0.3762,1.1421,-0.00863,-0.01149,-0.00681,-8.3982,0.558,0.438,0.710,1.035,0.1587,0.0404,0.0703,1.0,1.064,1.0,0.477,1.0,1.0,1.0,0.613 -0.05,-3.826,0.948,1.0058,0.200,0.3219,-0.2230,0.2576,0.00907,-1.1472,-0.9861,-0.4358,1.1414,-0.00988,-0.01229,-0.00710,-8.1531,0.564,0.460,0.728,1.047,0.0826,-0.0593,-0.0353,1.0,1.120,1.0,0.492,1.0,1.0,1.0,0.542 -0.06,-3.890,0.956,0.9841,0.200,0.3247,-0.2223,0.2561,0.00907,-1.0913,-0.9390,-0.4679,1.1575,-0.01075,-0.01274,-0.00724,-8.0033,0.577,0.481,0.751,1.071,0.0554,-0.1096,-0.0902,1.0,1.207,1.0,0.531,1.0,1.0,1.0,0.534 -0.07,-3.965,0.967,0.9806,0.200,0.3286,-0.2215,0.2546,0.00907,-1.0468,-0.9004,-0.5026,1.1868,-0.01130,-0.01308,-0.00734,-8.0478,0.599,0.488,0.772,1.103,0.0418,-0.1326,-0.0958,1.0,1.238,1.0,0.613,1.0,1.0,1.0,0.583 -0.08,-4.055,0.980,0.9863,0.200,0.3398,-0.2205,0.2530,0.00907,-1.0136,-0.8706,-0.5380,1.2234,-0.01164,-0.01331,-0.00741,-8.1969,0.616,0.481,0.782,1.141,0.0604,-0.1354,-0.0732,1.0,1.360,1.0,0.693,1.0,1.0,0.830,0.643 -0.09,-4.153,0.995,0.9912,0.200,0.3304,-0.2196,0.2556,0.00907,-0.9923,-0.8508,-0.5730,1.2640,-0.01182,-0.01345,-0.00746,-8.3508,0.629,0.477,0.789,1.184,0.0930,-0.1251,-0.0363,1.0,1.355,1.0,0.780,1.0,1.0,0.706,0.674 -0.10,-4.255,1.009,1.0003,0.200,0.3460,-0.2186,0.2402,0.00907,-0.9832,-0.8418,-0.6084,1.3053,-0.01184,-0.01348,-0.00749,-8.5243,0.641,0.460,0.789,1.231,0.1521,-0.0709,0.0111,1.0,1.341,1.080,0.816,1.0,1.0,0.800,0.694 -0.12,-4.466,1.040,1.0344,0.200,0.3456,-0.2166,0.2478,0.00958,-0.9731,-0.8293,-0.6701,1.3928,-0.01174,-0.01349,-0.00751,-9.0548,0.657,0.437,0.789,1.334,0.2616,0.0026,0.1030,0.0,1.195,1.093,0.998,0.0,1.0,0.759,0.763 -0.14,-4.677,1.070,1.0839,0.200,0.3460,-0.2147,0.2452,0.01055,-0.9832,-0.8348,-0.7252,1.4777,-0.01142,-0.01334,-0.00748,-9.6764,0.663,0.414,0.782,1.448,0.3547,0.1120,0.2143,0.0,0.835,0.948,0.954,0.0,0.767,0.715,0.684 -0.15,-4.781,1.085,1.1060,0.200,0.3450,-0.2137,0.2441,0.01122,-0.9926,-0.8415,-0.7498,1.5188,-0.01123,-0.01323,-0.00746,-9.9660,0.666,0.402,0.778,1.510,0.3941,0.1567,0.2557,0.0,0.781,0.908,0.942,0.0,0.708,0.686,0.645 -0.16,-4.883,1.100,1.1267,0.200,0.3435,-0.2128,0.2431,0.01170,-1.0042,-0.8503,-0.7724,1.5588,-0.01101,-0.01311,-0.00743,-10.2416,0.671,0.384,0.773,1.573,0.4252,0.1968,0.2981,0.0,0.738,0.862,0.927,0.0,0.657,0.644,0.610 -0.18,-5.085,1.129,1.1646,0.200,0.3391,-0.2110,0.2410,0.01233,-1.0330,-0.8733,-0.8129,1.6348,-0.01054,-0.01284,-0.00735,-10.7520,0.680,0.380,0.779,1.707,0.4764,0.2741,0.3636,0.0,0.684,0.745,0.927,0.0,0.568,0.549,0.532 -0.20,-5.233,1.151,1.1984,0.200,0.3335,-0.2093,0.2389,0.01346,-1.0649,-0.8995,-0.8463,1.7060,-0.01007,-0.01256,-0.00725,-11.2249,0.692,0.359,0.780,1.833,0.5117,0.3379,0.4257,0.0,0.654,0.623,0.949,0.0,0.509,0.434,0.468 -0.25,-5.229,1.151,1.2700,0.200,0.3169,-0.2053,0.2345,0.01617,-1.1514,-0.9728,-0.9058,1.8625,-0.00890,-0.01182,-0.00696,-12.2628,0.694,0.340,0.773,1.954,0.5518,0.4787,0.5564,0.0,0.683,0.436,0.970,0.0,0.433,0.292,0.291 -0.30,-5.226,1.151,1.3285,0.200,0.2991,-0.2016,0.2305,0.01831,-1.2372,-1.0481,-0.9393,1.9916,-0.00784,-0.01110,-0.00661,-13.1418,0.688,0.344,0.770,2.034,0.5533,0.5739,0.6584,0.0,0.691,0.400,0.961,0.0,0.337,0.275,0.275 -0.35,-5.223,1.151,1.3780,0.200,0.2817,-0.1982,0.2267,0.01980,-1.3174,-1.1203,-0.9540,2.0982,-0.00691,-0.01044,-0.00624,-13.9025,0.675,0.353,0.762,2.052,0.5356,0.6382,0.7354,0.0,0.800,0.433,0.948,0.0,0.337,0.295,0.295 -0.40,-5.221,1.151,1.4209,0.200,0.2652,-0.1951,0.2236,0.02078,-1.3899,-1.1874,-0.9548,2.1863,-0.00610,-0.00983,-0.00586,-14.5736,0.667,0.363,0.759,2.025,0.5086,0.6795,0.7933,0.0,0.876,0.460,0.965,0.0,0.337,0.293,0.293 -0.45,-5.218,1.151,1.4587,0.200,0.2500,-0.1922,0.2204,0.02138,-1.4546,-1.2486,-0.9451,2.2593,-0.00541,-0.00929,-0.00548,-15.1738,0.665,0.359,0.756,1.999,0.4791,0.7052,0.8385,0.0,0.966,0.496,0.958,0.0,0.0,0.0,0.0 -0.50,-5.216,1.151,1.4925,0.190,0.2360,-0.1895,0.2176,0.02168,-1.5122,-1.3044,-0.9277,2.3197,-0.00482,-0.00879,-0.00511,-15.7157,0.664,0.361,0.756,1.975,0.4509,0.7207,0.8751,0.0,1.034,0.529,0.984,0.0,0.0,0.0,0.0 -0.60,-5.213,1.151,1.5510,0.178,0.2116,-0.1845,0.2125,0.02161,-1.6083,-1.4010,-0.8766,2.4107,-0.00387,-0.00792,-0.00439,-16.6622,0.669,0.362,0.761,1.931,0.3985,0.7282,0.9262,0.0,1.206,0.578,1.055,0.0,0.0,0.0,0.0 -0.70,-5.210,1.151,1.6005,0.162,0.1913,-0.1801,0.2081,0.02094,-1.6837,-1.4807,-0.8116,2.4718,-0.00315,-0.00719,-0.00374,-17.4673,0.670,0.370,0.765,1.891,0.3525,0.7158,0.9563,0.0,1.314,0.578,1.114,0.0,0.0,0.0,0.0 -0.80,-5.208,1.151,1.6434,0.148,0.1746,-0.1760,0.2040,0.01987,-1.7431,-1.5471,-0.7389,2.5110,-0.00261,-0.00657,-0.00315,-18.1645,0.674,0.378,0.773,1.855,0.3171,0.6966,0.9762,0.0,1.357,0.578,1.175,0.0,0.0,0.0,0.0 -0.90,-5.206,1.151,1.6812,0.136,0.1606,-0.1723,0.2003,0.01854,-1.7897,-1.6026,-0.6621,2.5342,-0.00220,-0.00603,-0.00261,-18.7780,0.673,0.386,0.775,1.822,0.2890,0.6737,0.9882,0.0,1.357,0.578,1.216,0.0,0.0,0.0,0.0 -1.00,-5.204,1.151,1.7150,0.125,0.1490,-0.1688,0.1967,0.01704,-1.8260,-1.6491,-0.5835,2.5454,-0.00189,-0.00555,-0.00214,-19.3256,0.670,0.390,0.776,1.791,0.2669,0.6499,0.9949,0.0,1.357,0.000,1.230,0.0,0.0,0.0,0.0 -1.25,-5.200,1.151,1.7866,0.101,0.1276,-0.1611,0.1891,0.01292,-1.8867,-1.7381,-0.4024,2.5471,-0.00139,-0.00458,-0.00119,-20.4671,0.660,0.399,0.771,1.724,0.2289,0.5939,0.9964,0.0,0.0,0.0,1.192,0.0,0.0,0.0,0.0 -1.50,-5.196,1.151,1.8452,0.083,0.1138,-0.1545,0.1827,0.00863,-1.9171,-1.7980,-0.2405,2.5258,-0.00116,-0.00384,-0.00054,-21.3882,0.656,0.397,0.767,1.667,0.2078,0.5512,0.9881,0.0,0.0,0.0,0.942,0.0,0.0,0.0,0.0 -2.00,-5.191,1.151,1.9375,0.053,0.0992,-0.1433,0.1717,0.00042,-1.9318,-1.8691,-0.0359,2.4975,-0.00109,-0.00284,0.0,-22.8117,0.631,0.381,0.737,1.574,0.1868,0.5025,0.9600,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2.50,-5.187,1.151,2.0091,0.030,0.0933,-0.1340,0.1629,-0.00687,-1.9179,-1.9039,0.0874,2.4789,-0.00125,-0.00223,0.0,-23.9051,0.605,0.376,0.713,1.500,0.1775,0.4888,0.9290,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3.00,-5.183,1.151,2.0677,0.011,0.0911,-0.1260,0.1553,-0.01315,-1.8963,-1.9224,0.1741,2.4647,-0.00144,-0.00184,0.0,-24.7945,0.591,0.363,0.694,1.439,0.1681,0.4825,0.8935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -3.50,-5.181,1.151,2.1236,0.000,0.0900,-0.1191,0.1485,-0.01849,-1.8770,-1.9347,0.2450,2.4527,-0.00159,-0.00160,0.0,-25.5887,0.578,0.363,0.682,1.387,0.1599,0.4761,0.8560,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4.00,-5.178,1.151,2.1373,0.000,0.0890,-0.1128,0.1426,-0.02298,-1.8617,-1.9436,0.3117,2.4427,-0.00171,-0.00149,0.0,-26.0464,0.556,0.376,0.671,1.341,0.1543,0.4698,0.8168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -4.50,-5.176,1.151,2.1373,0.000,0.0872,-0.1071,0.1372,-0.02672,-1.8542,-1.9534,0.3795,2.4339,-0.00176,-0.00145,0.0,-26.3701,0.542,0.377,0.661,1.301,0.1512,0.4634,0.7738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -5.00,-5.174,1.151,2.1373,0.000,0.0844,-0.1019,0.1325,-0.02980,-1.8529,-1.9635,0.4520,2.4267,-0.00177,-0.00150,0.0,-26.6780,0.538,0.395,0.667,1.265,0.1528,0.4571,0.7280,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/src/main/resources/gmm/coeffs/Zhao16_interface.csv b/src/main/resources/gmm/coeffs/Zhao16_interface.csv deleted file mode 100644 index 0713d06a6aebe04c7f2f4bb1873da3d3a36d42a1..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/Zhao16_interface.csv +++ /dev/null @@ -1,38 +0,0 @@ -T,c1,c2,cD,cS,d,gammaS,b,g,gDL,gSL,eV,eS,gamma,sigma,tau,sigmaT,AmSCI,S2,S3,S4,S5,S6,S7,FsrI,FsrII,FsrIII,FsrIV -PGA,-5.301,1.151,1.0997,1.3148,0.553,-3.8953,0.0200,-2.0559,0.5454,1.1336,-0.01123,-0.00628,-4.4986,0.553,0.378,0.670,1.358,0.3129,-0.0043,0.2284,0.3129,-0.0043,0.2284,1.0,1.0,1.165,1.0 -0.01,-5.288,1.151,1.0985,1.3174,0.553,-3.8953,0.0200,-2.0657,0.5498,1.1336,-0.01125,-0.00625,-4.4589,0.553,0.377,0.670,1.247,0.3085,-0.0112,0.2231,0.3085,-0.0112,0.2231,1.0,1.0,0.944,1.0 -0.02,-5.276,1.151,1.0923,1.3192,0.553,-3.8953,0.0200,-2.1023,0.5617,1.1336,-0.01127,-0.00616,-4.2581,0.553,0.383,0.672,1.149,0.2930,-0.0217,0.2089,0.2930,-0.0217,0.2089,1.0,1.0,1.012,1.0 -0.03,-5.268,1.151,1.1069,1.3410,0.553,-3.8953,0.0207,-2.1923,0.5789,1.1336,-0.01158,-0.00572,-3.9180,0.554,0.397,0.682,1.097,0.2287,-0.1129,0.1331,0.2287,-0.0829,0.1631,1.0,1.0,1.100,1.000 -0.04,-5.263,1.151,1.1158,1.3805,0.553,-3.8953,0.0231,-2.2464,0.4933,0.9881,-0.01203,-0.00532,-3.1142,0.564,0.428,0.708,1.065,0.1632,-0.1887,0.0696,0.1632,-0.1887,0.0596,1.0,0.843,0.959,0.557 -0.05,-5.259,1.151,1.1023,1.4325,0.553,-3.8953,0.0271,-2.2934,0.4910,0.9044,-0.01256,-0.00503,-2.7604,0.569,0.463,0.734,1.037,0.1213,-0.2283,0.0285,0.1213,-0.2283,0.0085,1.0,0.663,0.889,0.543 -0.06,-5.255,1.151,1.0861,1.4624,0.553,-3.8953,0.0297,-2.3117,0.5085,0.8877,-0.01312,-0.00528,-2.6409,0.583,0.487,0.759,1.038,0.1235,-0.2192,0.0007,0.1235,-0.2192,0.0007,1.0,0.841,0.946,0.574 -0.07,-5.253,1.151,1.0729,1.4712,0.553,-3.8953,0.0321,-2.3110,0.5275,0.9049,-0.01359,-0.00569,-2.6562,0.602,0.501,0.783,1.050,0.1397,-0.1901,-0.0095,0.1397,-0.1901,0.0055,1.0,1.029,1.006,0.648 -0.08,-5.250,1.151,1.0638,1.4643,0.553,-3.8946,0.0320,-2.2878,0.5460,0.9421,-0.01382,-0.00619,-2.7527,0.614,0.501,0.793,1.103,0.1639,-0.1550,-0.0049,0.1639,-0.1550,0.0141,1.0,1.235,1.065,0.721 -0.09,-5.248,1.151,1.0586,1.4470,0.553,-3.9018,0.0297,-2.2468,0.5631,0.9865,-0.01393,-0.00673,-2.8992,0.625,0.495,0.797,1.192,0.2050,-0.1125,0.0305,0.2050,-0.1125,0.0405,1.0,1.144,1.093,0.809 -0.10,-5.246,1.151,1.0567,1.4232,0.553,-3.9077,0.0279,-2.2041,0.5762,1.0355,-0.01395,-0.00718,-3.0770,0.637,0.478,0.796,1.277,0.2445,-0.0751,0.0608,0.2445,-0.0751,0.0708,1.0,1.092,1.077,1.015 -0.12,-5.243,1.151,1.0605,1.3683,0.553,-3.9164,0.0247,-2.1201,0.5926,1.1353,-0.01381,-0.00793,-3.4828,0.646,0.453,0.789,1.400,0.3228,0.0150,0.1423,0.3228,0.0150,0.1403,0.0,0.945,1.036,0.972 -0.14,-5.240,1.151,1.0714,1.3156,0.553,-3.9227,0.0212,-2.0434,0.6098,1.2342,-0.01351,-0.00853,-3.9161,0.654,0.412,0.773,1.525,0.4012,0.0970,0.2270,0.4012,0.0970,0.2020,0.0,0.624,0.895,0.967 -0.15,-5.239,1.151,1.0786,1.2928,0.553,-3.9253,0.0195,-2.0109,0.6196,1.2813,-0.01333,-0.00879,-4.1348,0.659,0.404,0.773,1.578,0.4362,0.1459,0.2576,0.4362,0.1359,0.2326,0.0,0.577,0.860,0.963 -0.16,-5.237,1.151,1.0866,1.2732,0.553,-3.9275,0.0179,-1.9830,0.6308,1.3266,-0.01312,-0.00902,-4.3524,0.664,0.398,0.774,1.625,0.4674,0.1879,0.3075,0.4674,0.1729,0.2625,0.0,0.545,0.822,0.953 -0.18,-5.235,1.151,1.1047,1.2483,0.553,-3.9313,0.0151,-1.9461,0.6620,1.4113,-0.01269,-0.00927,-4.7803,0.672,0.387,0.776,1.705,0.5120,0.2515,0.3597,0.5120,0.2415,0.3197,0.0,0.527,0.743,0.967 -0.20,-5.233,1.151,1.1244,1.2372,0.553,-3.9345,0.0126,-1.9270,0.6998,1.4885,-0.01223,-0.00942,-5.1944,0.678,0.382,0.778,1.768,0.5393,0.3030,0.4031,0.5393,0.3030,0.3731,0.0,0.546,0.663,1.005 -0.25,-5.229,1.151,1.1769,1.2239,0.553,-3.9407,0.0077,-1.8988,0.7845,1.6521,-0.01108,-0.00959,-6.1580,0.659,0.365,0.753,1.868,0.5860,0.4269,0.5077,0.5860,0.4269,0.4877,0.0,0.596,0.487,1.045 -0.30,-5.226,1.151,1.2297,1.2285,0.553,-3.9455,0.0044,-1.8914,0.8594,1.7813,-0.00998,-0.00952,-7.0200,0.640,0.348,0.729,1.917,0.6047,0.5162,0.5778,0.6047,0.5162,0.5778,0.0,0.623,0.447,1.035 -0.35,-5.223,1.151,1.2806,1.2422,0.553,-3.9494,0.0022,-1.8930,0.9234,1.8844,-0.00898,-0.00933,-7.7915,0.634,0.360,0.729,1.938,0.6064,0.5695,0.6382,0.6064,0.5795,0.6482,0.0,0.701,0.473,1.008 -0.40,-5.221,1.151,1.3287,1.2608,0.553,-3.9527,0.0000,-1.8953,0.9801,1.9676,-0.00808,-0.00911,-8.4955,0.627,0.354,0.720,1.944,0.6028,0.6237,0.7032,0.6028,0.6337,0.7132,0.0,0.708,0.487,1.007 -0.45,-5.218,1.151,1.3739,1.2819,0.553,-3.9556,0.0000,-1.9058,1.0222,2.0355,-0.00727,-0.00888,-9.1135,0.620,0.363,0.719,1.945,0.5804,0.6581,0.7508,0.5804,0.6581,0.7508,0.0,0.737,0.511,0.981 -0.50,-5.216,1.151,1.4163,1.3043,0.553,-3.9580,0.0000,-1.9147,1.0587,2.0914,-0.00656,-0.00866,-9.6852,0.612,0.364,0.712,1.942,0.5569,0.6867,0.7938,0.5569,0.6867,0.7938,0.0,0.748,0.536,0.990 -0.60,-5.213,1.151,1.4931,1.3502,0.553,-3.9618,0.0000,-1.9274,1.1180,2.1764,-0.00534,-0.00824,-10.6895,0.612,0.379,0.720,1.928,0.5097,0.7122,0.8495,0.5097,0.7122,0.8495,0.0,0.728,0.540,1.016 -0.70,-5.210,1.151,1.5607,1.3952,0.560,-3.9648,0.0000,-1.9345,1.1630,2.2360,-0.00437,-0.00787,-11.5460,0.624,0.393,0.738,1.911,0.4650,0.7124,0.8798,0.4650,0.7124,0.8798,0.0,0.634,0.477,1.022 -0.80,-5.208,1.151,1.6206,1.4382,0.580,-3.9673,0.0000,-1.9374,1.1973,2.2783,-0.00359,-0.00755,-12.2872,0.628,0.396,0.742,1.892,0.4244,0.6994,0.8954,0.4244,0.6994,0.8954,0.0,0.0,0.0,1.023 -0.90,-5.206,1.151,1.6739,1.4788,0.602,-3.9696,0.0000,-1.9373,1.2236,2.3085,-0.00296,-0.00726,-12.9363,0.628,0.397,0.743,1.873,0.3884,0.6800,0.9026,0.3884,0.6800,0.9026,0.0,0.0,0.0,0.997 -1.00,-5.204,1.151,1.7217,1.5169,0.622,-3.9720,0.0000,-1.9351,1.2437,2.3299,-0.00244,-0.00700,-13.5100,0.632,0.404,0.750,1.853,0.3570,0.6583,0.9053,0.3570,0.6583,0.9053,0.0,0.0,0.0,0.948 -1.25,-5.200,1.151,1.8219,1.6015,0.667,-3.9795,0.0000,-1.9247,1.2725,2.3585,-0.00153,-0.00644,-14.6903,0.635,0.404,0.752,1.799,0.2967,0.6193,0.9179,0.2967,0.6193,0.9179,0.0,0.0,0.0,0.802 -1.50,-5.196,1.151,1.9008,1.6728,0.705,-3.9905,0.0000,-1.9119,1.2854,2.3665,-0.00097,-0.00597,-15.6030,0.643,0.392,0.753,1.740,0.2579,0.5829,0.9213,0.2579,0.5829,0.9213,0.0,0.0,0.0,0.0 -2.00,-5.191,1.151,2.0148,1.7837,0.768,-4.0265,0.0000,-1.8886,1.2883,2.3554,-0.00043,-0.00518,-16.9001,0.634,0.382,0.741,1.620,0.2226,0.5262,0.9171,0.2226,0.5262,0.9171,0.0,0.0,0.0,0.0 -2.50,-5.187,1.151,2.0889,1.8624,0.820,-4.0830,0.0000,-1.8725,1.2773,2.3311,-0.00023,-0.00451,-17.7366,0.619,0.393,0.733,1.508,0.2184,0.4872,0.9055,0.2184,0.4872,0.9055,0.0,0.0,0.0,0.0 -3.00,-5.183,1.151,2.1357,1.9171,0.863,-4.1594,0.0000,-1.8635,1.2605,2.3041,-0.00016,-0.00393,-18.2714,0.599,0.385,0.712,1.416,0.2160,0.4570,0.8867,0.2160,0.4570,0.8867,0.0,0.0,0.0,0.0 -3.50,-5.181,1.151,2.1625,1.9532,0.902,-4.2542,0.0000,-1.8597,1.2411,2.2779,0.0,-0.00344,-18.5926,0.580,0.376,0.692,1.347,0.2160,0.4281,0.8588,0.2160,0.4281,0.8588,0.0,0.0,0.0,0.0 -4.00,-5.178,1.151,2.1739,1.9745,0.935,-4.3658,0.0000,-1.8595,1.2203,2.2537,0.0,-0.00302,-18.7547,0.568,0.377,0.682,1.304,0.2160,0.3952,0.8203,0.2160,0.3952,0.8203,0.0,0.0,0.0,0.0 -4.50,-5.176,1.151,2.1730,1.9836,0.966,-4.4927,0.0000,-1.8615,1.1986,2.2316,0.0,-0.00267,-18.7935,0.552,0.376,0.668,1.285,0.2160,0.3549,0.7699,0.2160,0.3549,0.7699,0.0,0.0,0.0,0.0 -5.00,-5.174,1.151,2.1620,1.9826,0.994,-4.6331,0.0000,-1.8645,1.1763,2.2115,0.0,-0.00240,-18.7339,0.563,0.374,0.676,1.267,0.2160,0.3047,0.7071,0.2160,0.3047,0.7071,0.0,0.0,0.0,0.0 diff --git a/src/main/resources/gmm/coeffs/Zhao16_siteamp.csv b/src/main/resources/gmm/coeffs/Zhao16_siteamp.csv deleted file mode 100644 index 9437f6b5cdc864f2fb4c7b6fa676107bc7e912b5..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/Zhao16_siteamp.csv +++ /dev/null @@ -1,38 +0,0 @@ -T,AmaxI,SrcI,AmaxII,SrcII,AmaxIII,SrcIII,AmaxIV,SrcIV -PGA,1.916,8.429,2.033,1.914,1.905,1.117,1.498,0.836 -0.01,1.919,8.090,2.027,1.883,1.908,1.114,1.498,0.836 -0.02,1.922,6.992,2.003,1.779,1.894,1.124,1.474,0.830 -0.03,1.925,6.350,1.989,1.718,1.886,1.130,1.460,0.826 -0.04,1.921,4.883,2.012,2.052,1.833,1.151,1.374,0.768 -0.05,1.959,5.043,2.017,2.387,1.854,1.240,1.363,0.786 -0.06,2.013,6.271,2.064,2.834,1.893,1.348,1.384,0.838 -0.07,2.049,7.667,2.103,3.294,1.924,1.452,1.425,0.926 -0.08,2.046,9.034,2.195,3.991,1.974,1.583,1.481,1.022 -0.09,2.066,11.251,2.219,4.466,2.032,1.733,1.525,1.118 -0.10,2.100,14.817,2.263,5.046,2.052,1.841,1.549,1.166 -0.12,2.143,14.817,2.329,5.900,2.066,2.030,1.603,1.286 -0.14,2.122,14.817,2.188,5.054,2.107,2.281,1.670,1.398 -0.15,2.092,14.817,2.214,5.205,2.140,2.444,1.706,1.443 -0.16,2.053,14.817,2.245,5.387,2.156,2.580,1.734,1.472 -0.18,1.923,14.817,2.324,5.872,2.132,2.742,1.773,1.547 -0.20,1.793,14.817,2.405,6.574,2.050,2.826,1.816,1.644 -0.25,1.793,14.817,2.554,8.500,1.925,2.719,1.843,1.790 -0.30,1.793,14.817,2.586,10.67,2.006,2.418,1.871,1.823 -0.35,1.793,14.817,2.718,10.67,2.179,2.304,1.878,1.790 -0.40,1.793,14.817,2.718,10.67,2.288,2.236,1.911,1.768 -0.45,1.793,14.817,2.718,10.67,2.402,2.217,1.899,1.675 -0.50,1.793,14.817,2.718,10.67,2.522,2.243,1.927,1.625 -0.60,1.793,14.817,2.718,10.67,2.648,2.805,1.987,1.525 -0.70,1.793,14.817,2.718,10.67,2.780,6.658,2.025,1.397 -0.80,1.793,14.817,2.718,10.67,2.919,30.0,2.043,1.320 -0.90,1.793,14.817,2.718,10.67,3.065,30.0,2.022,1.266 -1.00,1.793,14.817,2.718,10.67,3.217,30.0,1.970,1.227 -1.25,1.793,14.817,2.718,10.67,3.378,30.0,1.843,1.221 -1.50,1.793,14.817,2.718,10.67,3.547,30.0,1.729,1.318 -2.00,1.793,14.817,2.718,10.67,3.724,30.0,1.583,2.125 -2.50,1.793,14.817,2.718,10.67,3.909,30.0,1.504,14.382 -3.00,1.793,14.817,2.718,10.67,4.104,30.0,1.439,14.382 -3.50,1.793,14.817,2.718,10.67,4.309,30.0,1.391,14.382 -4.00,1.793,14.817,2.718,10.67,4.524,30.0,1.362,14.382 -4.50,1.793,14.817,2.718,10.67,4.750,30.0,1.340,14.382 -5.00,1.793,14.817,2.718,10.67,4.987,30.0,1.729,14.382 diff --git a/src/main/resources/gmm/coeffs/Zhao16_slab.csv b/src/main/resources/gmm/coeffs/Zhao16_slab.csv deleted file mode 100644 index 298f553ed077527aa9fed9192404a4e8b37378da..0000000000000000000000000000000000000000 --- a/src/main/resources/gmm/coeffs/Zhao16_slab.csv +++ /dev/null @@ -1,38 +0,0 @@ -T,c1,cSL1,cSL2,d,b,g,gL,eV,e,eH,gamma,sigma,tau,sigmaT,AmSCI,S2,S3,S4,FsrI,FsrII,FsrIII,FsrIV -PGA,-5.30119,1.44758,0.37625,0.42646,0.01826,-1.98471,1.12071,-0.01499,-0.00340,-0.00050,-9.880,0.587,0.457,0.744,1.381,0.2320,0.1437,0.1470,1.0,1.0,1.0,1.0 -0.01,-5.28844,1.45400,0.38099,0.42075,0.01826,-1.96360,1.03278,-0.01503,-0.00331,-0.00050,-9.513,0.587,0.458,0.745,1.228,0.2289,0.1398,0.1328,1.0,1.0,1.0,1.0 -0.02,-5.27568,1.46625,0.39101,0.40055,0.01826,-1.91839,0.94715,-0.01517,-0.00345,-0.00050,-9.266,0.587,0.465,0.749,1.087,0.2183,0.1260,0.1443,1.0,1.0,1.0,1.05 -0.03,-5.26822,1.49246,0.41976,0.36433,0.01826,-1.89271,0.93420,-0.01567,-0.00391,-0.00050,-9.332,0.588,0.480,0.759,1.042,0.1874,0.0616,0.0660,1.0,1.0,1.0,0.58 -0.04,-5.26293,1.50129,0.45746,0.32072,0.01826,-1.87260,0.97168,-0.01616,-0.00454,-0.00050,-9.508,0.599,0.521,0.794,1.035,0.1233,-0.0171,-0.0171,1.0,1.006,1.0,0.482 -0.05,-5.25882,1.51051,0.48601,0.30000,0.01826,-1.85351,1.01492,-0.01676,-0.00510,-0.00050,-9.729,0.607,0.555,0.823,1.047,0.0721,-0.0633,-0.0731,1.0,0.851,1.0,0.472 -0.06,-5.25547,1.51380,0.50311,0.31147,0.01826,-1.83395,1.06854,-0.01722,-0.00552,-0.00050,-9.966,0.623,0.584,0.854,1.071,0.0270,-0.1010,-0.1196,1.0,0.803,1.044,0.506 -0.07,-5.25263,1.51111,0.50704,0.32673,0.01826,-1.81345,1.13401,-0.01752,-0.00588,-0.00049,-10.226,0.638,0.600,0.876,1.103,-0.0062,-0.1468,-0.1601,1.0,0.918,0.975,0.587 -0.08,-5.25017,1.50406,0.50004,0.34289,0.01826,-1.79189,1.20364,-0.01768,-0.00615,-0.00048,-10.551,0.651,0.598,0.884,1.141,0.0157,-0.1448,-0.1243,1.0,1.062,0.964,0.683 -0.09,-5.24801,1.49423,0.48071,0.35921,0.01826,-1.76931,1.25808,-0.01772,-0.00635,-0.00048,-10.807,0.662,0.585,0.883,1.184,0.0509,-0.1267,-0.0729,1.0,1.106,0.980,0.782 -0.10,-5.24607,1.48300,0.45759,0.37000,0.01826,-1.74581,1.30112,-0.01768,-0.00652,-0.00048,-11.022,0.674,0.567,0.881,1.231,0.0956,-0.0932,-0.0146,1.0,1.071,0.970,0.823 -0.12,-5.24271,1.45559,0.41355,0.40606,0.01826,-1.73746,1.39137,-0.01742,-0.00660,-0.00049,-11.365,0.689,0.534,0.872,1.334,0.2004,-0.0088,0.0825,0.0,0.952,1.022,1.029 -0.14,-5.23988,1.44277,0.37828,0.43450,0.01826,-1.74463,1.47084,-0.01700,-0.00652,-0.00051,-11.730,0.692,0.504,0.856,1.448,0.3037,0.0893,0.1715,0.0,0.672,0.889,0.991 -0.15,-5.23861,1.43314,0.36308,0.45000,0.01826,-1.74972,1.50784,-0.01676,-0.00647,-0.00052,-11.880,0.696,0.486,0.849,1.510,0.3428,0.1360,0.2093,0.0,0.631,0.861,0.983 -0.16,-5.23742,1.43253,0.34919,0.46055,0.01826,-1.76259,1.54326,-0.01649,-0.00636,-0.00053,-12.056,0.697,0.465,0.838,1.573,0.3740,0.1775,0.2412,0.0,0.600,0.831,0.973 -0.18,-5.23525,1.43710,0.32464,0.48439,0.01826,-1.78989,1.60985,-0.01594,-0.00614,-0.00056,-12.420,0.704,0.430,0.825,1.707,0.4270,0.2531,0.2990,0.0,0.571,0.748,0.979 -0.20,-5.23331,1.44781,0.30358,0.50900,0.01826,-1.82110,1.67146,-0.01537,-0.00590,-0.00059,-12.785,0.713,0.406,0.821,1.833,0.4630,0.3201,0.3459,0.0,0.565,0.650,1.006 -0.25,-5.22921,1.48260,0.26174,0.55500,0.01826,-1.90412,1.80738,-0.01395,-0.00526,-0.00067,-13.635,0.711,0.385,0.808,1.954,0.5086,0.4530,0.4423,0.0,0.601,0.479,1.027 -0.30,-5.22585,1.51881,0.23036,0.59300,0.01826,-1.98439,1.92242,-0.01261,-0.00468,-0.00075,-14.381,0.684,0.365,0.775,2.034,0.5078,0.5488,0.5178,0.0,0.579,0.449,1.021 -0.35,-5.22302,1.55291,0.20580,0.62500,0.01826,-2.05756,2.02102,-0.01139,-0.00415,-0.00083,-15.035,0.665,0.371,0.762,2.052,0.4971,0.6171,0.5760,0.0,0.679,0.482,1.003 -0.40,-5.22056,1.58443,0.18597,0.65200,0.01826,-2.12282,2.10642,-0.01029,-0.00369,-0.00091,-15.616,0.657,0.383,0.761,2.025,0.4807,0.6663,0.6224,0.0,0.655,0.499,1.010 -0.45,-5.21839,1.61360,0.16960,0.67500,0.01826,-2.18047,2.18097,-0.00931,-0.00327,-0.00099,-16.138,0.647,0.391,0.756,1.999,0.4616,0.7011,0.6598,0.0,0.615,0.515,0.985 -0.50,-5.21645,1.64075,0.15585,0.69500,0.01826,-2.23118,2.24651,-0.00843,-0.00290,-0.00107,-16.613,0.640,0.403,0.756,1.975,0.4422,0.7256,0.6907,0.0,0.550,0.530,0.990 -0.60,-5.21310,1.69020,0.13405,0.72900,0.01826,-2.31475,2.35602,-0.00694,-0.00227,-0.00124,-17.453,0.633,0.412,0.755,1.931,0.4054,0.7529,0.7380,0.0,0.0,0.530,1.006 -0.70,-5.21026,1.73450,0.11757,0.75600,0.01826,-2.37885,2.44331,-0.00574,-0.00178,-0.00139,-18.181,0.632,0.432,0.766,1.891,0.3734,0.7625,0.7723,0.0,0.0,0.499,1.000 -0.80,-5.20781,1.77474,0.10476,0.77800,0.01826,-2.42769,2.51391,-0.00477,-0.00139,-0.00154,-18.825,0.635,0.438,0.772,1.855,0.3462,0.7612,0.7974,0.0,0.0,0.369,1.000 -0.90,-5.20564,1.81162,0.09458,0.79600,0.01826,-2.46450,2.57166,-0.00398,-0.00109,-0.00166,-19.403,0.636,0.438,0.772,1.822,0.3236,0.7538,0.8162,0.0,0.0,0.3,0.960 -1.00,-5.20370,1.84561,0.08636,0.81200,0.01826,-2.49170,2.61931,-0.00333,-0.00086,-0.00178,-19.928,0.636,0.439,0.773,1.791,0.3048,0.7428,0.8301,0.0,0.0,0.2,0.904 -1.25,-5.19959,1.92015,0.07173,0.84100,0.01808,-2.52758,2.70638,-0.00215,-0.00052,-0.00199,-21.058,0.635,0.444,0.775,1.724,0.2703,0.7083,0.8504,0.0,0.0,0.0,0.738 -1.50,-5.19624,1.98274,0.06258,0.86100,0.01786,-2.53359,2.76244,-0.00142,-0.00043,-0.00213,-21.996,0.645,0.448,0.786,1.667,0.2483,0.6726,0.8573,0.0,0.0,0.0,0.535 -2.00,-5.19095,2.08214,0.05327,0.88400,0.01718,-2.49565,2.82205,-0.00067,-0.00070,-0.00225,-23.488,0.633,0.425,0.762,1.574,0.2253,0.6107,0.8499,0.0,0.0,0.0,0.358 -2.50,-5.18684,2.15841,0.05036,0.90000,0.01628,-2.42623,2.84475,-0.00039,-0.00127,-0.00219,-24.647,0.607,0.413,0.735,1.500,0.2154,0.5640,0.8276,0.0,0.0,0.0,0.0 -3.00,-5.18349,2.22046,0.04536,0.90000,0.01549,-2.34726,2.84988,-0.00030,-0.00198,-0.00207,-25.597,0.582,0.407,0.710,1.439,0.2115,0.5261,0.7991,0.0,0.0,0.0,0.0 -3.50,-5.18065,2.27406,0.04536,0.90000,0.01489,-2.27002,2.84667,-0.00026,-0.00271,-0.00193,-26.410,0.562,0.395,0.687,1.387,0.2098,0.4977,0.7678,0.0,0.0,0.0,0.0 -4.00,-5.17819,2.32307,0.04536,0.90000,0.01458,-2.19947,2.83992,-0.00021,-0.00341,-0.00180,-27.132,0.540,0.381,0.661,1.341,0.2088,0.4769,0.7359,0.0,0.0,0.0,0.0 -4.50,-5.17602,2.37009,0.04536,0.90000,0.01459,-2.12528,2.82802,-0.00021,-0.00421,-0.00170,-27.793,0.526,0.367,0.641,1.301,0.2077,0.4622,0.7041,0.0,0.0,0.0,0.0 -5.00,-5.17409,2.37009,0.04536,0.90000,0.01459,-2.02646,2.82521,-0.00021,-0.00500,-0.00158,-28.313,0.522,0.378,0.645,1.265,0.2067,0.4527,0.6722,0.0,0.0,0.0,0.0 diff --git a/src/test/java/gov/usgs/earthquake/nshmp/gmm/Graizer18Test.java b/src/test/java/gov/usgs/earthquake/nshmp/gmm/Graizer18Test.java deleted file mode 100644 index 30285325936c6e145fe5897a45e7d5d6ae8828d8..0000000000000000000000000000000000000000 --- a/src/test/java/gov/usgs/earthquake/nshmp/gmm/Graizer18Test.java +++ /dev/null @@ -1,39 +0,0 @@ -// package gov.usgs.earthquake.nshmp.gmm; -// -// import static gov.usgs.earthquake.nshmp.gmm.Gmm.GRAIZER_2018; -// -// import java.io.IOException; -// import java.util.EnumSet; -// import java.util.Set; -// import java.util.stream.Stream; -// -// import org.junit.jupiter.api.extension.ExtensionContext; -// import org.junit.jupiter.params.provider.Arguments; -// import org.junit.jupiter.params.provider.ArgumentsProvider; -// -// public class Graizer18Test implements ArgumentsProvider { -// -// private static String GMM_INPUTS = "/gmm/graizer_2018_inputs.csv"; -// private static String GMM_RESULTS = "/gmm/graizer_2018_results.csv"; -// -// // @ParameterizedTest(name = "({index}) {0} {2} {1}") -// // @ArgumentsSource(Graizer18Test.class) -// // void test(int index, Gmm gmm, Imt imt, double exMedian, double exSigma, -// // String inputs) { -// // GmmTest.test(index, gmm, imt, exMedian, exSigma, inputs); -// // } -// -// @Override -// public Stream<? extends Arguments> provideArguments(ExtensionContext context) -// throws Exception { -// return GmmTest.loadResults(GMM_RESULTS, GMM_INPUTS); -// } -// -// /* Result generation sets */ -// private static Set<Gmm> gmms = EnumSet.of(GRAIZER_2018); -// -// public static void main(String[] args) throws IOException { -// GmmTest.generateResults(gmms, Imt.mprsImts(), GMM_INPUTS, GMM_RESULTS); -// } -// -// } diff --git a/src/test/java/gov/usgs/earthquake/nshmp/gmm/PezeshkEtAl_2018Tests.java b/src/test/java/gov/usgs/earthquake/nshmp/gmm/PezeshkEtAl_2018Tests.java index 8476d32fb23ec3ce8f695c97d1fd34d4231ac25f..54d2da31bcecacdaa3fe21a7c3fcd52cd619b11a 100644 --- a/src/test/java/gov/usgs/earthquake/nshmp/gmm/PezeshkEtAl_2018Tests.java +++ b/src/test/java/gov/usgs/earthquake/nshmp/gmm/PezeshkEtAl_2018Tests.java @@ -1,7 +1,7 @@ package gov.usgs.earthquake.nshmp.gmm; -import static gov.usgs.earthquake.nshmp.gmm.Gmm.PZCT18_1SS; -import static gov.usgs.earthquake.nshmp.gmm.Gmm.PZCT18_2ES; +import static gov.usgs.earthquake.nshmp.gmm.Gmm.NGA_EAST_SEED_PZCT18_1SS; +import static gov.usgs.earthquake.nshmp.gmm.Gmm.NGA_EAST_SEED_PZCT18_2ES; import java.io.IOException; import java.util.EnumSet; @@ -32,8 +32,8 @@ public class PezeshkEtAl_2018Tests implements ArgumentsProvider { /* Result generation sets */ private static Set<Gmm> gmms = EnumSet.of( - PZCT18_1SS, - PZCT18_2ES); + NGA_EAST_SEED_PZCT18_1SS, + NGA_EAST_SEED_PZCT18_2ES); private static Set<Imt> imts = PezeshkEtAl_2018.COEFFS_1SS.imts(); diff --git a/src/test/java/gov/usgs/earthquake/nshmp/model/LoaderTests.java b/src/test/java/gov/usgs/earthquake/nshmp/model/LoaderTests.java index 3d8f9526a88202b0c281ef76f467f6edafd08f3e..bb9ce4fd423d2017221eed3db0800233899620b1 100644 --- a/src/test/java/gov/usgs/earthquake/nshmp/model/LoaderTests.java +++ b/src/test/java/gov/usgs/earthquake/nshmp/model/LoaderTests.java @@ -211,7 +211,8 @@ class LoaderTests { exec = Executors.newFixedThreadPool(cores); ExecutorService exec = Executors.newFixedThreadPool(cores); boolean namedSites = sites.get(0).name() != Site.NO_NAME; - HazardExport handler = HazardExport.create(model, config, namedSites, config.output.directory); + Path out = HazardExport.createDirectory(config.output.directory); + HazardExport handler = HazardExport.create(model, config, namedSites, out); for (Site site : sites) { Hazard hazard = HazardCalcs.hazard(model, config, site, exec); handler.write(hazard); diff --git a/src/test/resources/gmm/graizer_2018_inputs.csv b/src/test/resources/gmm/graizer_2018_inputs.csv deleted file mode 100644 index e369c0a4097d54f8d63b035aff38c83db4cde0fc..0000000000000000000000000000000000000000 --- a/src/test/resources/gmm/graizer_2018_inputs.csv +++ /dev/null @@ -1,102 +0,0 @@ -#Mw,rjB,rRup,rX,dip,width,zTor,zHyp,rake,vs30,vsInf,z1p0,z2p5 -4.5,5,6.4,-5,45,2.4,4,5,90,760,1,NaN,NaN -4.5,0,4,0,45,2.4,4,5,90,760,1,NaN,NaN -4.5,2.6,6.2,5,45,2.4,4,5,90,760,1,NaN,NaN -4.5,12.6,13.8,15,45,2.4,4,5,90,760,1,NaN,NaN -5,5,5.8,-5,45,5,3,4.5,90,760,1,NaN,NaN -5,0,3,0,45,5,3,4.5,90,760,1,NaN,NaN -5,1.5,5.7,5,45,5,3,4.5,90,760,1,NaN,NaN -5,11.5,13.2,15,45,5,3,4.5,90,760,1,NaN,NaN -5,26.5,27.3,30,45,5,3,4.5,90,760,1,NaN,NaN -5.5,5,5.8,-5,45,5,3,4.5,90,760,1,NaN,NaN -5.5,0,3,0,45,5,3,4.5,90,760,1,NaN,NaN -5.5,1.5,5.7,5,45,5,3,4.5,90,760,1,NaN,NaN -5.5,11.5,13.2,15,45,5,3,4.5,90,760,1,NaN,NaN -5.5,26.5,27.3,30,45,5,3,4.5,90,760,1,NaN,NaN -6,5,5.4,-5,45,10,2,5.5,90,760,1,NaN,NaN -6,0,2,0,45,10,2,5.5,90,760,1,NaN,NaN -6,0,5,5,45,10,2,5.5,90,760,1,NaN,NaN -6,8,12.1,15,45,10,2,5.5,90,760,1,NaN,NaN -6,23,24.7,30,45,10,2,5.5,90,760,1,NaN,NaN -6,93,93.4,100,45,10,2,5.5,90,760,1,NaN,NaN -6.5,5,5.4,-5,45,10,2,5.5,90,760,1,NaN,NaN -6.5,0,2,0,45,10,2,5.5,90,760,1,NaN,NaN -6.5,0,5,5,45,10,2,5.5,90,760,1,NaN,NaN -6.5,8,12.1,15,45,10,2,5.5,90,760,1,NaN,NaN -6.5,23,24.7,30,45,10,2,5.5,90,760,1,NaN,NaN -6.5,93,93.4,100,45,10,2,5.5,90,760,1,NaN,NaN -7,10,10.1,-10,45,15,1,6.2,90,760,1,NaN,NaN -7,5,5.1,-5,45,15,1,6.2,90,760,1,NaN,NaN -7,0,1,0,45,15,1,6.2,90,760,1,NaN,NaN -7,0,4.2,5,45,15,1,6.2,90,760,1,NaN,NaN -7,4.5,11.3,15,45,15,1,6.2,90,760,1,NaN,NaN -7,19.5,22.6,30,45,15,1,6.2,90,760,1,NaN,NaN -7,89.5,90.2,100,45,15,1,6.2,90,760,1,NaN,NaN -7,139.5,140,150,45,15,1,6.2,90,760,1,NaN,NaN -7.5,10,10,-10,45,20,0,7,90,760,1,NaN,NaN -7.5,5,5,-5,45,20,0,7,90,760,1,NaN,NaN -7.5,0,0,0,45,20,0,7,90,760,1,NaN,NaN -7.5,0,3.6,5,45,20,0,7,90,760,1,NaN,NaN -7.5,1,10.7,15,45,20,0,7,90,760,1,NaN,NaN -7.5,16,21.3,30,45,20,0,7,90,760,1,NaN,NaN -7.5,86,87.1,100,45,20,0,7,90,760,1,NaN,NaN -7.5,136,136.7,150,45,20,0,7,90,760,1,NaN,NaN -7.5,286,286.3,300,45,20,0,7,90,760,1,NaN,NaN -8,10,10,-10,45,20,0,7,90,760,1,NaN,NaN -8,5,5,-5,45,20,0,7,90,760,1,NaN,NaN -8,0,0,0,45,20,0,7,90,760,1,NaN,NaN -8,0,3.6,5,45,20,0,7,90,760,1,NaN,NaN -8,1,10.7,15,45,20,0,7,90,760,1,NaN,NaN -8,16,21.3,30,45,20,0,7,90,760,1,NaN,NaN -8,86,87.1,100,45,20,0,7,90,760,1,NaN,NaN -8,136,136.7,150,45,20,0,7,90,760,1,NaN,NaN -8,286,286.3,300,45,20,0,7,90,760,1,NaN,NaN -6,0,2,5,20,8,2,5,90,760,1,NaN,NaN -3.5,2.6,6.2,5,45,2.4,4,5,-90,760,1,NaN,NaN -4.5,2.6,6.2,5,45,2.4,4,5,-90,760,1,NaN,NaN -4.5,5,6.4,-5,45,2.4,4,5,-90,760,1,NaN,NaN -5.5,1.5,5.7,5,45,5,3,4.5,-90,760,1,NaN,NaN -5.5,5,5.8,-5,45,5,3,4.5,-90,760,1,NaN,NaN -6.5,0,5,5,45,10,2,5.5,-90,760,1,NaN,NaN -6.5,5,5.4,-5,45,10,2,5.5,-90,760,1,NaN,NaN -7.5,1,10.7,15,45,20,0,7,-90,760,1,NaN,NaN -7.5,5,5,-5,45,20,0,7,-90,760,1,NaN,NaN -7,0,0,0,90,12,0,6,0,760,1,NaN,NaN -7,2,2,-2,90,12,0,6,0,760,1,NaN,NaN -7,10,10,-10,90,12,0,6,0,760,1,NaN,NaN -7,30,30,-30,90,12,0,6,0,760,1,NaN,NaN -7,0,8,0,90,12,8,14,0,760,1,NaN,NaN -7,2,8.3,-2,90,12,8,14,0,760,1,NaN,NaN -7,10,12.8,-10,90,12,8,14,0,760,1,NaN,NaN -7,30,31,-30,90,12,8,14,0,760,1,NaN,NaN -7,0,12,0,90,12,12,18,0,760,1,NaN,NaN -7,10,15.6,-10,90,12,12,18,0,760,1,NaN,NaN -7,0,16,0,90,12,16,22,0,760,1,NaN,NaN -7,10,18.9,-10,90,12,16,22,0,760,1,NaN,NaN -7,0,21,0,90,12,21,27,0,760,1,NaN,NaN -7,10,23.3,-10,90,12,21,27,0,760,1,NaN,NaN -5,2,2.8,-2,90,5,2,4.5,0,760,1,NaN,NaN -5,2,2.8,-2,90,5,2,4.5,NaN,760,1,NaN,NaN -6.5,2,2.8,-2,90,10,2,7,NaN,760,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,180,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,259,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,360,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,537,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,760,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,1150,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,1600,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,2000,1,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,259,0,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,760,0,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,1600,0,NaN,NaN -3.5,5,6.4,-5,90,2.4,4,5,0,760,0,NaN,NaN -5.5,5,5.8,-5,90,5,3,5.5,0,760,0,NaN,NaN -7,5,5.1,-5,90,12,1,7,0,180,0,0.04,0.5 -7,5,5.1,-5,90,12,1,7,0,180,0,0.1,2 -7,5,5.1,-5,90,12,1,7,0,180,0,0.8,4 -7,5,5.1,-5,90,12,1,7,0,360,0,0.04,0.5 -7,5,5.1,-5,90,12,1,7,0,360,0,0.1,2 -7,5,5.1,-5,90,12,1,7,0,360,0,0.8,4 -7,5,5.1,-5,90,12,1,7,0,760,0,0.04,0.5 -7,5,5.1,-5,90,12,1,7,0,760,0,0.1,2 -7,5,5.1,-5,90,12,1,7,0,760,0,0.8,4 diff --git a/src/test/resources/gmm/graizer_2018_results.csv b/src/test/resources/gmm/graizer_2018_results.csv deleted file mode 100644 index 39ee44b014e9e4f9abb779667bfa6b367c4de480..0000000000000000000000000000000000000000 --- a/src/test/resources/gmm/graizer_2018_results.csv +++ /dev/null @@ -1,2222 +0,0 @@ -0-GRAIZER_2018-PGA,4.9471167219,0.6310000000 -1-GRAIZER_2018-PGA,5.0981526408,0.6310000000 -2-GRAIZER_2018-PGA,4.9565040363,0.6310000000 -3-GRAIZER_2018-PGA,4.7457803355,0.6310000000 -4-GRAIZER_2018-PGA,5.3682707591,0.6310000000 -5-GRAIZER_2018-PGA,5.6606483757,0.6310000000 -6-GRAIZER_2018-PGA,5.3755012883,0.6310000000 -7-GRAIZER_2018-PGA,5.0651678456,0.6310000000 -8-GRAIZER_2018-PGA,4.8254815628,0.6310000000 -9-GRAIZER_2018-PGA,5.9214961903,0.6310000000 -10-GRAIZER_2018-PGA,6.2545867012,0.6310000000 -11-GRAIZER_2018-PGA,5.9306086518,0.6310000000 -12-GRAIZER_2018-PGA,5.5221510921,0.6310000000 -13-GRAIZER_2018-PGA,5.1982769701,0.6310000000 -14-GRAIZER_2018-PGA,6.2045462908,0.6310000000 -15-GRAIZER_2018-PGA,6.5749452661,0.6310000000 -16-GRAIZER_2018-PGA,6.2472720462,0.6310000000 -17-GRAIZER_2018-PGA,5.7515522364,0.6310000000 -18-GRAIZER_2018-PGA,5.3888737066,0.6310000000 -19-GRAIZER_2018-PGA,4.4991159370,0.6310000000 -20-GRAIZER_2018-PGA,6.3594243074,0.6310000000 -21-GRAIZER_2018-PGA,6.6578141196,0.6310000000 -22-GRAIZER_2018-PGA,6.3991527122,0.6310000000 -23-GRAIZER_2018-PGA,5.9026015665,0.6310000000 -24-GRAIZER_2018-PGA,5.5193594386,0.6310000000 -25-GRAIZER_2018-PGA,4.6046821732,0.6310000000 -26-GRAIZER_2018-PGA,6.0671444762,0.6310000000 -27-GRAIZER_2018-PGA,6.4205603576,0.6310000000 -28-GRAIZER_2018-PGA,6.6354096904,0.6310000000 -29-GRAIZER_2018-PGA,6.5026868094,0.6310000000 -30-GRAIZER_2018-PGA,6.0067026966,0.6310000000 -31-GRAIZER_2018-PGA,5.6421102722,0.6310000000 -32-GRAIZER_2018-PGA,4.7035087100,0.6310000000 -33-GRAIZER_2018-PGA,4.5712445582,0.6310000000 -34-GRAIZER_2018-PGA,6.0715559144,0.6310000000 -35-GRAIZER_2018-PGA,6.3960028986,0.6310000000 -36-GRAIZER_2018-PGA,6.3509609227,0.6310000000 -37-GRAIZER_2018-PGA,6.5149017553,0.6310000000 -38-GRAIZER_2018-PGA,6.0380902232,0.6310000000 -39-GRAIZER_2018-PGA,5.6978346014,0.6310000000 -40-GRAIZER_2018-PGA,4.7868666091,0.6310000000 -41-GRAIZER_2018-PGA,4.6391859288,0.6310000000 -42-GRAIZER_2018-PGA,4.3624136066,0.6310000000 -43-GRAIZER_2018-PGA,6.0598307316,0.6310000000 -44-GRAIZER_2018-PGA,6.3614468453,0.6310000000 -45-GRAIZER_2018-PGA,6.3786331243,0.6310000000 -46-GRAIZER_2018-PGA,6.4747605213,0.6310000000 -47-GRAIZER_2018-PGA,6.0286060256,0.6310000000 -48-GRAIZER_2018-PGA,5.7062137829,0.6310000000 -49-GRAIZER_2018-PGA,4.8296023779,0.6310000000 -50-GRAIZER_2018-PGA,4.6806282642,0.6310000000 -51-GRAIZER_2018-PGA,4.4011113193,0.6310000000 -52-GRAIZER_2018-PGA,6.5749452661,0.6310000000 -53-GRAIZER_2018-PGA,4.3408340297,0.6310000000 -54-GRAIZER_2018-PGA,4.7428657022,0.6310000000 -55-GRAIZER_2018-PGA,4.7338527938,0.6310000000 -56-GRAIZER_2018-PGA,5.3427080691,0.6310000000 -57-GRAIZER_2018-PGA,5.3340906488,0.6310000000 -58-GRAIZER_2018-PGA,5.7730351458,0.6310000000 -59-GRAIZER_2018-PGA,5.7352262651,0.6310000000 -60-GRAIZER_2018-PGA,5.4171389611,0.6310000000 -61-GRAIZER_2018-PGA,5.7443631247,0.6310000000 -62-GRAIZER_2018-PGA,5.6465115355,0.6310000000 -63-GRAIZER_2018-PGA,6.0085416744,0.6310000000 -64-GRAIZER_2018-PGA,5.4573859988,0.6310000000 -65-GRAIZER_2018-PGA,5.0047799479,0.6310000000 -66-GRAIZER_2018-PGA,5.5664576103,0.6310000000 -67-GRAIZER_2018-PGA,5.5483376278,0.6310000000 -68-GRAIZER_2018-PGA,5.3416300016,0.6310000000 -69-GRAIZER_2018-PGA,4.9935082315,0.6310000000 -70-GRAIZER_2018-PGA,5.3711922488,0.6310000000 -71-GRAIZER_2018-PGA,5.2546060152,0.6310000000 -72-GRAIZER_2018-PGA,5.2438750027,0.6310000000 -73-GRAIZER_2018-PGA,5.1755733129,0.6310000000 -74-GRAIZER_2018-PGA,5.1343660021,0.6310000000 -75-GRAIZER_2018-PGA,5.0951271151,0.6310000000 -76-GRAIZER_2018-PGA,5.3289910950,0.6310000000 -77-GRAIZER_2018-PGA,5.3289910950,0.6310000000 -78-GRAIZER_2018-PGA,5.9794912204,0.6310000000 -79-GRAIZER_2018-PGA,6.4995393374,0.6310000000 -80-GRAIZER_2018-PGA,6.3175938921,0.6310000000 -81-GRAIZER_2018-PGA,6.1530005889,0.6310000000 -82-GRAIZER_2018-PGA,5.9530374476,0.6310000000 -83-GRAIZER_2018-PGA,5.7792962465,0.6310000000 -84-GRAIZER_2018-PGA,5.5944360843,0.6310000000 -85-GRAIZER_2018-PGA,5.5944360843,0.6310000000 -86-GRAIZER_2018-PGA,5.5944360843,0.6310000000 -87-GRAIZER_2018-PGA,6.3175938921,0.6310000000 -88-GRAIZER_2018-PGA,5.7792962465,0.6310000000 -89-GRAIZER_2018-PGA,5.5944360843,0.6310000000 -90-GRAIZER_2018-PGA,4.3380506329,0.6310000000 -91-GRAIZER_2018-PGA,5.3340906488,0.6310000000 -92-GRAIZER_2018-PGA,6.4995393374,0.6310000000 -93-GRAIZER_2018-PGA,6.4995393374,0.6310000000 -94-GRAIZER_2018-PGA,6.4995393374,0.6310000000 -95-GRAIZER_2018-PGA,6.1530005889,0.6310000000 -96-GRAIZER_2018-PGA,6.1530005889,0.6310000000 -97-GRAIZER_2018-PGA,6.1530005889,0.6310000000 -98-GRAIZER_2018-PGA,5.7792962465,0.6310000000 -99-GRAIZER_2018-PGA,5.7792962465,0.6310000000 -100-GRAIZER_2018-PGA,5.7792962465,0.6310000000 -0-GRAIZER_2018-SA0P01,4.9471167219,0.6310000000 -1-GRAIZER_2018-SA0P01,5.0981526408,0.6310000000 -2-GRAIZER_2018-SA0P01,4.9565040363,0.6310000000 -3-GRAIZER_2018-SA0P01,4.7457803355,0.6310000000 -4-GRAIZER_2018-SA0P01,5.3682707591,0.6310000000 -5-GRAIZER_2018-SA0P01,5.6606483757,0.6310000000 -6-GRAIZER_2018-SA0P01,5.3755012883,0.6310000000 -7-GRAIZER_2018-SA0P01,5.0651678456,0.6310000000 -8-GRAIZER_2018-SA0P01,4.8254815628,0.6310000000 -9-GRAIZER_2018-SA0P01,5.9214961903,0.6310000000 -10-GRAIZER_2018-SA0P01,6.2545867012,0.6310000000 -11-GRAIZER_2018-SA0P01,5.9306086518,0.6310000000 -12-GRAIZER_2018-SA0P01,5.5221510921,0.6310000000 -13-GRAIZER_2018-SA0P01,5.1982769701,0.6310000000 -14-GRAIZER_2018-SA0P01,6.2045462908,0.6310000000 -15-GRAIZER_2018-SA0P01,6.5749452661,0.6310000000 -16-GRAIZER_2018-SA0P01,6.2472720462,0.6310000000 -17-GRAIZER_2018-SA0P01,5.7515522364,0.6310000000 -18-GRAIZER_2018-SA0P01,5.3888737066,0.6310000000 -19-GRAIZER_2018-SA0P01,4.4991159370,0.6310000000 -20-GRAIZER_2018-SA0P01,6.3594243074,0.6310000000 -21-GRAIZER_2018-SA0P01,6.6578141196,0.6310000000 -22-GRAIZER_2018-SA0P01,6.3991527122,0.6310000000 -23-GRAIZER_2018-SA0P01,5.9026015665,0.6310000000 -24-GRAIZER_2018-SA0P01,5.5193594386,0.6310000000 -25-GRAIZER_2018-SA0P01,4.6046821732,0.6310000000 -26-GRAIZER_2018-SA0P01,6.0671444762,0.6310000000 -27-GRAIZER_2018-SA0P01,6.4205603576,0.6310000000 -28-GRAIZER_2018-SA0P01,6.6354096904,0.6310000000 -29-GRAIZER_2018-SA0P01,6.5026868094,0.6310000000 -30-GRAIZER_2018-SA0P01,6.0067026966,0.6310000000 -31-GRAIZER_2018-SA0P01,5.6421102722,0.6310000000 -32-GRAIZER_2018-SA0P01,4.7035087100,0.6310000000 -33-GRAIZER_2018-SA0P01,4.5712445582,0.6310000000 -34-GRAIZER_2018-SA0P01,6.0715559144,0.6310000000 -35-GRAIZER_2018-SA0P01,6.3960028986,0.6310000000 -36-GRAIZER_2018-SA0P01,6.3509609227,0.6310000000 -37-GRAIZER_2018-SA0P01,6.5149017553,0.6310000000 -38-GRAIZER_2018-SA0P01,6.0380902232,0.6310000000 -39-GRAIZER_2018-SA0P01,5.6978346014,0.6310000000 -40-GRAIZER_2018-SA0P01,4.7868666091,0.6310000000 -41-GRAIZER_2018-SA0P01,4.6391859288,0.6310000000 -42-GRAIZER_2018-SA0P01,4.3624136066,0.6310000000 -43-GRAIZER_2018-SA0P01,6.0598307316,0.6310000000 -44-GRAIZER_2018-SA0P01,6.3614468453,0.6310000000 -45-GRAIZER_2018-SA0P01,6.3786331243,0.6310000000 -46-GRAIZER_2018-SA0P01,6.4747605213,0.6310000000 -47-GRAIZER_2018-SA0P01,6.0286060256,0.6310000000 -48-GRAIZER_2018-SA0P01,5.7062137829,0.6310000000 -49-GRAIZER_2018-SA0P01,4.8296023779,0.6310000000 -50-GRAIZER_2018-SA0P01,4.6806282642,0.6310000000 -51-GRAIZER_2018-SA0P01,4.4011113193,0.6310000000 -52-GRAIZER_2018-SA0P01,6.5749452661,0.6310000000 -53-GRAIZER_2018-SA0P01,4.3408340297,0.6310000000 -54-GRAIZER_2018-SA0P01,4.7428657022,0.6310000000 -55-GRAIZER_2018-SA0P01,4.7338527938,0.6310000000 -56-GRAIZER_2018-SA0P01,5.3427080691,0.6310000000 -57-GRAIZER_2018-SA0P01,5.3340906488,0.6310000000 -58-GRAIZER_2018-SA0P01,5.7730351458,0.6310000000 -59-GRAIZER_2018-SA0P01,5.7352262651,0.6310000000 -60-GRAIZER_2018-SA0P01,5.4171389611,0.6310000000 -61-GRAIZER_2018-SA0P01,5.7443631247,0.6310000000 -62-GRAIZER_2018-SA0P01,5.6465115355,0.6310000000 -63-GRAIZER_2018-SA0P01,6.0085416744,0.6310000000 -64-GRAIZER_2018-SA0P01,5.4573859988,0.6310000000 -65-GRAIZER_2018-SA0P01,5.0047799479,0.6310000000 -66-GRAIZER_2018-SA0P01,5.5664576103,0.6310000000 -67-GRAIZER_2018-SA0P01,5.5483376278,0.6310000000 -68-GRAIZER_2018-SA0P01,5.3416300016,0.6310000000 -69-GRAIZER_2018-SA0P01,4.9935082315,0.6310000000 -70-GRAIZER_2018-SA0P01,5.3711922488,0.6310000000 -71-GRAIZER_2018-SA0P01,5.2546060152,0.6310000000 -72-GRAIZER_2018-SA0P01,5.2438750027,0.6310000000 -73-GRAIZER_2018-SA0P01,5.1755733129,0.6310000000 -74-GRAIZER_2018-SA0P01,5.1343660021,0.6310000000 -75-GRAIZER_2018-SA0P01,5.0951271151,0.6310000000 -76-GRAIZER_2018-SA0P01,5.3289910950,0.6310000000 -77-GRAIZER_2018-SA0P01,5.3289910950,0.6310000000 -78-GRAIZER_2018-SA0P01,5.9794912204,0.6310000000 -79-GRAIZER_2018-SA0P01,6.4995393374,0.6310000000 -80-GRAIZER_2018-SA0P01,6.3175938921,0.6310000000 -81-GRAIZER_2018-SA0P01,6.1530005889,0.6310000000 -82-GRAIZER_2018-SA0P01,5.9530374476,0.6310000000 -83-GRAIZER_2018-SA0P01,5.7792962465,0.6310000000 -84-GRAIZER_2018-SA0P01,5.5944360843,0.6310000000 -85-GRAIZER_2018-SA0P01,5.5944360843,0.6310000000 -86-GRAIZER_2018-SA0P01,5.5944360843,0.6310000000 -87-GRAIZER_2018-SA0P01,6.3175938921,0.6310000000 -88-GRAIZER_2018-SA0P01,5.7792962465,0.6310000000 -89-GRAIZER_2018-SA0P01,5.5944360843,0.6310000000 -90-GRAIZER_2018-SA0P01,4.3380506329,0.6310000000 -91-GRAIZER_2018-SA0P01,5.3340906488,0.6310000000 -92-GRAIZER_2018-SA0P01,6.4995393374,0.6310000000 -93-GRAIZER_2018-SA0P01,6.4995393374,0.6310000000 -94-GRAIZER_2018-SA0P01,6.4995393374,0.6310000000 -95-GRAIZER_2018-SA0P01,6.1530005889,0.6310000000 -96-GRAIZER_2018-SA0P01,6.1530005889,0.6310000000 -97-GRAIZER_2018-SA0P01,6.1530005889,0.6310000000 -98-GRAIZER_2018-SA0P01,5.7792962465,0.6310000000 -99-GRAIZER_2018-SA0P01,5.7792962465,0.6310000000 -100-GRAIZER_2018-SA0P01,5.7792962465,0.6310000000 -0-GRAIZER_2018-SA0P02,5.0367575029,0.6330000000 -1-GRAIZER_2018-SA0P02,5.1883949375,0.6330000000 -2-GRAIZER_2018-SA0P02,5.0461948388,0.6330000000 -3-GRAIZER_2018-SA0P02,4.8335838097,0.6330000000 -4-GRAIZER_2018-SA0P02,5.4323890654,0.6330000000 -5-GRAIZER_2018-SA0P02,5.7251960031,0.6330000000 -6-GRAIZER_2018-SA0P02,5.4396348989,0.6330000000 -7-GRAIZER_2018-SA0P02,5.1281596214,0.6330000000 -8-GRAIZER_2018-SA0P02,4.8863604809,0.6330000000 -9-GRAIZER_2018-SA0P02,5.9681462200,0.6330000000 -10-GRAIZER_2018-SA0P02,6.3014719372,0.6330000000 -11-GRAIZER_2018-SA0P02,5.9772670810,0.6330000000 -12-GRAIZER_2018-SA0P02,5.5681798322,0.6330000000 -13-GRAIZER_2018-SA0P02,5.2431246620,0.6330000000 -14-GRAIZER_2018-SA0P02,6.2391181017,0.6330000000 -15-GRAIZER_2018-SA0P02,6.6096372342,0.6330000000 -16-GRAIZER_2018-SA0P02,6.2818580815,0.6330000000 -17-GRAIZER_2018-SA0P02,5.7858824081,0.6330000000 -18-GRAIZER_2018-SA0P02,5.4227333311,0.6330000000 -19-GRAIZER_2018-SA0P02,4.5301453056,0.6330000000 -20-GRAIZER_2018-SA0P02,6.3854650133,0.6330000000 -21-GRAIZER_2018-SA0P02,6.6838577223,0.6330000000 -22-GRAIZER_2018-SA0P02,6.4251939140,0.6330000000 -23-GRAIZER_2018-SA0P02,5.9286279568,0.6330000000 -24-GRAIZER_2018-SA0P02,5.5453295281,0.6330000000 -25-GRAIZER_2018-SA0P02,4.6297951701,0.6330000000 -26-GRAIZER_2018-SA0P02,6.0871851057,0.6330000000 -27-GRAIZER_2018-SA0P02,6.4404882712,0.6330000000 -28-GRAIZER_2018-SA0P02,6.6552388809,0.6330000000 -29-GRAIZER_2018-SA0P02,6.5225935434,0.6330000000 -30-GRAIZER_2018-SA0P02,6.0267691465,0.6330000000 -31-GRAIZER_2018-SA0P02,5.6623972540,0.6330000000 -32-GRAIZER_2018-SA0P02,4.7243828855,0.6330000000 -33-GRAIZER_2018-SA0P02,4.5919326891,0.6330000000 -34-GRAIZER_2018-SA0P02,6.0872377420,0.6330000000 -35-GRAIZER_2018-SA0P02,6.4114834367,0.6330000000 -36-GRAIZER_2018-SA0P02,6.3662302235,0.6330000000 -37-GRAIZER_2018-SA0P02,6.5303241604,0.6330000000 -38-GRAIZER_2018-SA0P02,6.0537994518,0.6330000000 -39-GRAIZER_2018-SA0P02,5.7139360156,0.6330000000 -40-GRAIZER_2018-SA0P02,4.8045681448,0.6330000000 -41-GRAIZER_2018-SA0P02,4.6573380632,0.6330000000 -42-GRAIZER_2018-SA0P02,4.3795611415,0.6330000000 -43-GRAIZER_2018-SA0P02,6.0722983495,0.6330000000 -44-GRAIZER_2018-SA0P02,6.3736483367,0.6330000000 -45-GRAIZER_2018-SA0P02,6.3905574395,0.6330000000 -46-GRAIZER_2018-SA0P02,6.4868855284,0.6330000000 -47-GRAIZER_2018-SA0P02,6.0411100346,0.6330000000 -48-GRAIZER_2018-SA0P02,5.7192435335,0.6330000000 -49-GRAIZER_2018-SA0P02,4.8449600595,0.6330000000 -50-GRAIZER_2018-SA0P02,4.6968823571,0.6330000000 -51-GRAIZER_2018-SA0P02,4.4172916047,0.6330000000 -52-GRAIZER_2018-SA0P02,6.6096372342,0.6330000000 -53-GRAIZER_2018-SA0P02,4.5238100717,0.6330000000 -54-GRAIZER_2018-SA0P02,4.8325573692,0.6330000000 -55-GRAIZER_2018-SA0P02,4.8234944389,0.6330000000 -56-GRAIZER_2018-SA0P02,5.3893688524,0.6330000000 -57-GRAIZER_2018-SA0P02,5.3807430318,0.6330000000 -58-GRAIZER_2018-SA0P02,5.7990787069,0.6330000000 -59-GRAIZER_2018-SA0P02,5.7612693274,0.6330000000 -60-GRAIZER_2018-SA0P02,5.4328505012,0.6330000000 -61-GRAIZER_2018-SA0P02,5.7598460222,0.6330000000 -62-GRAIZER_2018-SA0P02,5.6663181583,0.6330000000 -63-GRAIZER_2018-SA0P02,6.0283978535,0.6330000000 -64-GRAIZER_2018-SA0P02,5.4774267732,0.6330000000 -65-GRAIZER_2018-SA0P02,5.0251921549,0.6330000000 -66-GRAIZER_2018-SA0P02,5.5864542489,0.6330000000 -67-GRAIZER_2018-SA0P02,5.5683409712,0.6330000000 -68-GRAIZER_2018-SA0P02,5.3617303581,0.6330000000 -69-GRAIZER_2018-SA0P02,5.0139358200,0.6330000000 -70-GRAIZER_2018-SA0P02,5.3912758427,0.6330000000 -71-GRAIZER_2018-SA0P02,5.2747634158,0.6330000000 -72-GRAIZER_2018-SA0P02,5.2640403477,0.6330000000 -73-GRAIZER_2018-SA0P02,5.1957947416,0.6330000000 -74-GRAIZER_2018-SA0P02,5.1546264006,0.6330000000 -75-GRAIZER_2018-SA0P02,5.1154286343,0.6330000000 -76-GRAIZER_2018-SA0P02,5.3935708918,0.6330000000 -77-GRAIZER_2018-SA0P02,5.3935708918,0.6330000000 -78-GRAIZER_2018-SA0P02,6.0055367858,0.6330000000 -79-GRAIZER_2018-SA0P02,6.5198702397,0.6330000000 -80-GRAIZER_2018-SA0P02,6.3379165012,0.6330000000 -81-GRAIZER_2018-SA0P02,6.1733181744,0.6330000000 -82-GRAIZER_2018-SA0P02,5.9731751427,0.6330000000 -83-GRAIZER_2018-SA0P02,5.7992265187,0.6330000000 -84-GRAIZER_2018-SA0P02,5.6147257311,0.6330000000 -85-GRAIZER_2018-SA0P02,5.6147257311,0.6330000000 -86-GRAIZER_2018-SA0P02,5.6147257311,0.6330000000 -87-GRAIZER_2018-SA0P02,6.3379165012,0.6330000000 -88-GRAIZER_2018-SA0P02,5.7992265187,0.6330000000 -89-GRAIZER_2018-SA0P02,5.6147257311,0.6330000000 -90-GRAIZER_2018-SA0P02,4.5209101072,0.6330000000 -91-GRAIZER_2018-SA0P02,5.3807430318,0.6330000000 -92-GRAIZER_2018-SA0P02,6.5198702397,0.6330000000 -93-GRAIZER_2018-SA0P02,6.5198702397,0.6330000000 -94-GRAIZER_2018-SA0P02,6.5198702397,0.6330000000 -95-GRAIZER_2018-SA0P02,6.1733181744,0.6330000000 -96-GRAIZER_2018-SA0P02,6.1733181744,0.6330000000 -97-GRAIZER_2018-SA0P02,6.1733181744,0.6330000000 -98-GRAIZER_2018-SA0P02,5.7992265187,0.6330000000 -99-GRAIZER_2018-SA0P02,5.7992265187,0.6330000000 -100-GRAIZER_2018-SA0P02,5.7992265187,0.6330000000 -0-GRAIZER_2018-SA0P03,5.2587351367,0.6406900000 -1-GRAIZER_2018-SA0P03,5.4115609203,0.6406900000 -2-GRAIZER_2018-SA0P03,5.2682714623,0.6406900000 -3-GRAIZER_2018-SA0P03,5.0519042767,0.6406900000 -4-GRAIZER_2018-SA0P03,5.5971594532,0.6406900000 -5-GRAIZER_2018-SA0P03,5.8910494158,0.6406900000 -6-GRAIZER_2018-SA0P03,5.6044439253,0.6406900000 -7-GRAIZER_2018-SA0P03,5.2900793815,0.6406900000 -8-GRAIZER_2018-SA0P03,5.0428987535,0.6406900000 -9-GRAIZER_2018-SA0P03,6.0905395665,0.6406900000 -10-GRAIZER_2018-SA0P03,6.4246759195,0.6406900000 -11-GRAIZER_2018-SA0P03,6.0996893411,0.6406900000 -12-GRAIZER_2018-SA0P03,5.6884414594,0.6406900000 -13-GRAIZER_2018-SA0P03,5.3593694850,0.6406900000 -14-GRAIZER_2018-SA0P03,6.3306279031,0.6406900000 -15-GRAIZER_2018-SA0P03,6.7018640154,0.6406900000 -16-GRAIZER_2018-SA0P03,6.3734521112,0.6406900000 -17-GRAIZER_2018-SA0P03,5.8759863270,0.6406900000 -18-GRAIZER_2018-SA0P03,5.5102195935,0.6406900000 -19-GRAIZER_2018-SA0P03,4.6040485313,0.6406900000 -20-GRAIZER_2018-SA0P03,6.4543460920,0.6406900000 -21-GRAIZER_2018-SA0P03,6.7532460568,0.6406900000 -22-GRAIZER_2018-SA0P03,6.4941345997,0.6406900000 -23-GRAIZER_2018-SA0P03,5.9965134722,0.6406900000 -24-GRAIZER_2018-SA0P03,5.6113581908,0.6406900000 -25-GRAIZER_2018-SA0P03,4.6861253379,0.6406900000 -26-GRAIZER_2018-SA0P03,6.1390230912,0.6406900000 -27-GRAIZER_2018-SA0P03,6.4928348389,0.6406900000 -28-GRAIZER_2018-SA0P03,6.7080031499,0.6406900000 -29-GRAIZER_2018-SA0P03,6.5750317529,0.6406900000 -30-GRAIZER_2018-SA0P03,6.0784852162,0.6406900000 -31-GRAIZER_2018-SA0P03,5.7129684039,0.6406900000 -32-GRAIZER_2018-SA0P03,4.7682821580,0.6406900000 -33-GRAIZER_2018-SA0P03,4.6311946539,0.6406900000 -34-GRAIZER_2018-SA0P03,6.1270540052,0.6406900000 -35-GRAIZER_2018-SA0P03,6.4516296787,0.6406900000 -36-GRAIZER_2018-SA0P03,6.4067055492,0.6406900000 -37-GRAIZER_2018-SA0P03,6.5705626403,0.6406900000 -38-GRAIZER_2018-SA0P03,6.0935694529,0.6406900000 -39-GRAIZER_2018-SA0P03,5.7530038268,0.6406900000 -40-GRAIZER_2018-SA0P03,4.8392634294,0.6406900000 -41-GRAIZER_2018-SA0P03,4.6888071069,0.6406900000 -42-GRAIZER_2018-SA0P03,4.4022522912,0.6406900000 -43-GRAIZER_2018-SA0P03,6.1031911121,0.6406900000 -44-GRAIZER_2018-SA0P03,6.4047357261,0.6406900000 -45-GRAIZER_2018-SA0P03,6.4218370962,0.6406900000 -46-GRAIZER_2018-SA0P03,6.5180269950,0.6406900000 -47-GRAIZER_2018-SA0P03,6.0719753677,0.6406900000 -48-GRAIZER_2018-SA0P03,5.7496883671,0.6406900000 -49-GRAIZER_2018-SA0P03,4.8726372926,0.6406900000 -50-GRAIZER_2018-SA0P03,4.7223859076,0.6406900000 -51-GRAIZER_2018-SA0P03,4.4364630628,0.6406900000 -52-GRAIZER_2018-SA0P03,6.7018640154,0.6406900000 -53-GRAIZER_2018-SA0P03,4.9143410034,0.6406900000 -54-GRAIZER_2018-SA0P03,5.0546354337,0.6406900000 -55-GRAIZER_2018-SA0P03,5.0454735126,0.6406900000 -56-GRAIZER_2018-SA0P03,5.5117950359,0.6406900000 -57-GRAIZER_2018-SA0P03,5.5031403003,0.6406900000 -58-GRAIZER_2018-SA0P03,5.8680233249,0.6406900000 -59-GRAIZER_2018-SA0P03,5.8301543332,0.6406900000 -60-GRAIZER_2018-SA0P03,5.4726243547,0.6406900000 -61-GRAIZER_2018-SA0P03,5.7999961963,0.6406900000 -62-GRAIZER_2018-SA0P03,5.7191883689,0.6406900000 -63-GRAIZER_2018-SA0P03,6.0810641573,0.6406900000 -64-GRAIZER_2018-SA0P03,5.5292787840,0.6406900000 -65-GRAIZER_2018-SA0P03,5.0750205404,0.6406900000 -66-GRAIZER_2018-SA0P03,5.6385096165,0.6406900000 -67-GRAIZER_2018-SA0P03,5.6203658255,0.6406900000 -68-GRAIZER_2018-SA0P03,5.4132979362,0.6406900000 -69-GRAIZER_2018-SA0P03,5.0636635735,0.6406900000 -70-GRAIZER_2018-SA0P03,5.4429246545,0.6406900000 -71-GRAIZER_2018-SA0P03,5.3260468920,0.6406900000 -72-GRAIZER_2018-SA0P03,5.3152832661,0.6406900000 -73-GRAIZER_2018-SA0P03,5.2467438367,0.6406900000 -74-GRAIZER_2018-SA0P03,5.2053629778,0.6406900000 -75-GRAIZER_2018-SA0P03,5.1659327068,0.6406900000 -76-GRAIZER_2018-SA0P03,5.5595041533,0.6406900000 -77-GRAIZER_2018-SA0P03,5.5595041533,0.6406900000 -78-GRAIZER_2018-SA0P03,6.0748096024,0.6406900000 -79-GRAIZER_2018-SA0P03,6.5729536833,0.6406900000 -80-GRAIZER_2018-SA0P03,6.3909931988,0.6406900000 -81-GRAIZER_2018-SA0P03,6.2263401207,0.6406900000 -82-GRAIZER_2018-SA0P03,6.0258542791,0.6406900000 -83-GRAIZER_2018-SA0P03,5.8515770174,0.6406900000 -84-GRAIZER_2018-SA0P03,5.6677756161,0.6406900000 -85-GRAIZER_2018-SA0P03,5.6677756161,0.6406900000 -86-GRAIZER_2018-SA0P03,5.6677756161,0.6406900000 -87-GRAIZER_2018-SA0P03,6.3909931988,0.6406900000 -88-GRAIZER_2018-SA0P03,5.8515770174,0.6406900000 -89-GRAIZER_2018-SA0P03,5.6677756161,0.6406900000 -90-GRAIZER_2018-SA0P03,4.9113109733,0.6406900000 -91-GRAIZER_2018-SA0P03,5.5031403003,0.6406900000 -92-GRAIZER_2018-SA0P03,6.5729536833,0.6406900000 -93-GRAIZER_2018-SA0P03,6.5729536833,0.6406900000 -94-GRAIZER_2018-SA0P03,6.5729536833,0.6406900000 -95-GRAIZER_2018-SA0P03,6.2263401207,0.6406900000 -96-GRAIZER_2018-SA0P03,6.2263401207,0.6406900000 -97-GRAIZER_2018-SA0P03,6.2263401207,0.6406900000 -98-GRAIZER_2018-SA0P03,5.8515770174,0.6406900000 -99-GRAIZER_2018-SA0P03,5.8515770174,0.6406900000 -100-GRAIZER_2018-SA0P03,5.8515770174,0.6406900000 -0-GRAIZER_2018-SA0P05,5.8073821597,0.6689300000 -1-GRAIZER_2018-SA0P05,5.9610899068,0.6689300000 -2-GRAIZER_2018-SA0P05,5.8169925793,0.6689300000 -3-GRAIZER_2018-SA0P05,5.5977344633,0.6689300000 -4-GRAIZER_2018-SA0P05,6.0565145674,0.6689300000 -5-GRAIZER_2018-SA0P05,6.3518184124,0.6689300000 -6-GRAIZER_2018-SA0P05,6.0638497372,0.6689300000 -7-GRAIZER_2018-SA0P05,5.7456421534,0.6689300000 -8-GRAIZER_2018-SA0P05,5.4910225301,0.6689300000 -9-GRAIZER_2018-SA0P05,6.4633082701,0.6689300000 -10-GRAIZER_2018-SA0P05,6.7988917907,0.6689300000 -11-GRAIZER_2018-SA0P05,6.4725098287,0.6689300000 -12-GRAIZER_2018-SA0P05,6.0573583285,0.6689300000 -13-GRAIZER_2018-SA0P05,5.7208458835,0.6689300000 -14-GRAIZER_2018-SA0P05,6.6278200565,0.6689300000 -15-GRAIZER_2018-SA0P05,7.0006527825,0.6689300000 -16-GRAIZER_2018-SA0P05,6.6708322797,0.6689300000 -17-GRAIZER_2018-SA0P05,6.1700225336,0.6689300000 -18-GRAIZER_2018-SA0P05,5.7982902724,0.6689300000 -19-GRAIZER_2018-SA0P05,4.8592605918,0.6689300000 -20-GRAIZER_2018-SA0P05,6.6887681201,0.6689300000 -21-GRAIZER_2018-SA0P05,6.9890246140,0.6689300000 -22-GRAIZER_2018-SA0P05,6.7287162642,0.6689300000 -23-GRAIZER_2018-SA0P05,6.2282600762,0.6689300000 -24-GRAIZER_2018-SA0P05,5.8380683570,0.6689300000 -25-GRAIZER_2018-SA0P05,4.8855208233,0.6689300000 -26-GRAIZER_2018-SA0P05,6.3215793752,0.6689300000 -27-GRAIZER_2018-SA0P05,6.6770125097,0.6689300000 -28-GRAIZER_2018-SA0P05,6.8935106496,0.6689300000 -29-GRAIZER_2018-SA0P05,6.7595013210,0.6689300000 -30-GRAIZER_2018-SA0P05,6.2606524558,0.6689300000 -31-GRAIZER_2018-SA0P05,5.8914748481,0.6689300000 -32-GRAIZER_2018-SA0P05,4.9251583078,0.6689300000 -33-GRAIZER_2018-SA0P05,4.7726852960,0.6689300000 -34-GRAIZER_2018-SA0P05,6.2703227133,0.6689300000 -35-GRAIZER_2018-SA0P05,6.5961739331,0.6689300000 -36-GRAIZER_2018-SA0P05,6.5525260060,0.6689300000 -37-GRAIZER_2018-SA0P05,6.7154641730,0.6689300000 -38-GRAIZER_2018-SA0P05,6.2366596490,0.6689300000 -39-GRAIZER_2018-SA0P05,5.8933934071,0.6689300000 -40-GRAIZER_2018-SA0P05,4.9631150727,0.6689300000 -41-GRAIZER_2018-SA0P05,4.8006388341,0.6689300000 -42-GRAIZER_2018-SA0P05,4.4815582541,0.6689300000 -43-GRAIZER_2018-SA0P05,6.2158288283,0.6689300000 -44-GRAIZER_2018-SA0P05,6.5183497818,0.6689300000 -45-GRAIZER_2018-SA0P05,6.5364274821,0.6689300000 -46-GRAIZER_2018-SA0P05,6.6319144299,0.6689300000 -47-GRAIZER_2018-SA0P05,6.1844764053,0.6689300000 -48-GRAIZER_2018-SA0P05,5.8601204898,0.6689300000 -49-GRAIZER_2018-SA0P05,4.9703583347,0.6689300000 -50-GRAIZER_2018-SA0P05,4.8108320536,0.6689300000 -51-GRAIZER_2018-SA0P05,4.4996930968,0.6689300000 -52-GRAIZER_2018-SA0P05,7.0006527825,0.6689300000 -53-GRAIZER_2018-SA0P05,5.5462544999,0.6689300000 -54-GRAIZER_2018-SA0P05,5.6033611616,0.6689300000 -55-GRAIZER_2018-SA0P05,5.5941251434,0.6689300000 -56-GRAIZER_2018-SA0P05,5.8846280778,0.6689300000 -57-GRAIZER_2018-SA0P05,5.8759215542,0.6689300000 -58-GRAIZER_2018-SA0P05,6.1026175718,0.6689300000 -59-GRAIZER_2018-SA0P05,6.0645889278,0.6689300000 -60-GRAIZER_2018-SA0P05,5.6157268782,0.6689300000 -61-GRAIZER_2018-SA0P05,5.9445530332,0.6689300000 -62-GRAIZER_2018-SA0P05,5.9050329730,0.6689300000 -63-GRAIZER_2018-SA0P05,6.2662599799,0.6689300000 -64-GRAIZER_2018-SA0P05,5.7118798514,0.6689300000 -65-GRAIZER_2018-SA0P05,5.2511447362,0.6689300000 -66-GRAIZER_2018-SA0P05,5.8217592735,0.6689300000 -67-GRAIZER_2018-SA0P05,5.8035181885,0.6689300000 -68-GRAIZER_2018-SA0P05,5.5949911538,0.6689300000 -69-GRAIZER_2018-SA0P05,5.2394645610,0.6689300000 -70-GRAIZER_2018-SA0P05,5.6248772340,0.6689300000 -71-GRAIZER_2018-SA0P05,5.5068325172,0.6689300000 -72-GRAIZER_2018-SA0P05,5.4959392596,0.6689300000 -73-GRAIZER_2018-SA0P05,5.4264602078,0.6689300000 -74-GRAIZER_2018-SA0P05,5.3843991842,0.6689300000 -75-GRAIZER_2018-SA0P05,5.3442242446,0.6689300000 -76-GRAIZER_2018-SA0P05,6.0203813703,0.6689300000 -77-GRAIZER_2018-SA0P05,6.0203813703,0.6689300000 -78-GRAIZER_2018-SA0P05,6.3102817184,0.6689300000 -79-GRAIZER_2018-SA0P05,6.7595556690,0.6689300000 -80-GRAIZER_2018-SA0P05,6.5775863361,0.6689300000 -81-GRAIZER_2018-SA0P05,6.4126747307,0.6689300000 -82-GRAIZER_2018-SA0P05,6.2110236524,0.6689300000 -83-GRAIZER_2018-SA0P05,6.0357672667,0.6689300000 -84-GRAIZER_2018-SA0P05,5.8543335848,0.6689300000 -85-GRAIZER_2018-SA0P05,5.8543335848,0.6689300000 -86-GRAIZER_2018-SA0P05,5.8543335848,0.6689300000 -87-GRAIZER_2018-SA0P05,6.5775863361,0.6689300000 -88-GRAIZER_2018-SA0P05,6.0357672667,0.6689300000 -89-GRAIZER_2018-SA0P05,5.8543335848,0.6689300000 -90-GRAIZER_2018-SA0P05,5.5433459585,0.6689300000 -91-GRAIZER_2018-SA0P05,5.8759215542,0.6689300000 -92-GRAIZER_2018-SA0P05,6.7595556690,0.6689300000 -93-GRAIZER_2018-SA0P05,6.7595556690,0.6689300000 -94-GRAIZER_2018-SA0P05,6.7595556690,0.6689300000 -95-GRAIZER_2018-SA0P05,6.4126747307,0.6689300000 -96-GRAIZER_2018-SA0P05,6.4126747307,0.6689300000 -97-GRAIZER_2018-SA0P05,6.4126747307,0.6689300000 -98-GRAIZER_2018-SA0P05,6.0357672667,0.6689300000 -99-GRAIZER_2018-SA0P05,6.0357672667,0.6689300000 -100-GRAIZER_2018-SA0P05,6.0357672667,0.6689300000 -0-GRAIZER_2018-SA0P075,6.2173347021,0.7130000000 -1-GRAIZER_2018-SA0P075,6.3691642536,0.7130000000 -2-GRAIZER_2018-SA0P075,6.2267893621,0.7130000000 -3-GRAIZER_2018-SA0P075,6.0133531463,0.7130000000 -4-GRAIZER_2018-SA0P075,6.5018220974,0.7130000000 -5-GRAIZER_2018-SA0P075,6.7962320138,0.7130000000 -6-GRAIZER_2018-SA0P075,6.5091257472,0.7130000000 -7-GRAIZER_2018-SA0P075,6.1931989156,0.7130000000 -8-GRAIZER_2018-SA0P075,5.9424125583,0.7130000000 -9-GRAIZER_2018-SA0P075,6.8950736931,0.7130000000 -10-GRAIZER_2018-SA0P075,7.2306369139,0.7130000000 -11-GRAIZER_2018-SA0P075,6.9042748415,0.7130000000 -12-GRAIZER_2018-SA0P075,6.4890897831,0.7130000000 -13-GRAIZER_2018-SA0P075,6.1521662130,0.7130000000 -14-GRAIZER_2018-SA0P075,7.0186990420,0.7130000000 -15-GRAIZER_2018-SA0P075,7.3921368893,0.7130000000 -16-GRAIZER_2018-SA0P075,7.0617834306,0.7130000000 -17-GRAIZER_2018-SA0P075,6.5596544627,0.7130000000 -18-GRAIZER_2018-SA0P075,6.1853851241,0.7130000000 -19-GRAIZER_2018-SA0P075,5.2285285577,0.7130000000 -20-GRAIZER_2018-SA0P075,7.0276219610,0.7130000000 -21-GRAIZER_2018-SA0P075,7.3287901034,0.7130000000 -22-GRAIZER_2018-SA0P075,7.0676779884,0.7130000000 -23-GRAIZER_2018-SA0P075,6.5652821957,0.7130000000 -24-GRAIZER_2018-SA0P075,6.1715230371,0.7130000000 -25-GRAIZER_2018-SA0P075,5.1970682137,0.7130000000 -26-GRAIZER_2018-SA0P075,6.6058951164,0.7130000000 -27-GRAIZER_2018-SA0P075,6.9628153776,0.7130000000 -28-GRAIZER_2018-SA0P075,7.1805210553,0.7130000000 -29-GRAIZER_2018-SA0P075,7.0455701854,0.7130000000 -30-GRAIZER_2018-SA0P075,6.5446089535,0.7130000000 -31-GRAIZER_2018-SA0P075,6.1720056464,0.7130000000 -32-GRAIZER_2018-SA0P075,5.1838354193,0.7130000000 -33-GRAIZER_2018-SA0P075,5.0141987409,0.7130000000 -34-GRAIZER_2018-SA0P075,6.5056724823,0.7130000000 -35-GRAIZER_2018-SA0P075,6.8329548435,0.7130000000 -36-GRAIZER_2018-SA0P075,6.7907287024,0.7130000000 -37-GRAIZER_2018-SA0P075,6.9526441359,0.7130000000 -38-GRAIZER_2018-SA0P075,6.4718083281,0.7130000000 -39-GRAIZER_2018-SA0P075,6.1254760049,0.7130000000 -40-GRAIZER_2018-SA0P075,5.1754674526,0.7130000000 -41-GRAIZER_2018-SA0P075,4.9976427843,0.7130000000 -42-GRAIZER_2018-SA0P075,4.6326758097,0.7130000000 -43-GRAIZER_2018-SA0P075,6.4085185739,0.7130000000 -44-GRAIZER_2018-SA0P075,6.7123228118,0.7130000000 -45-GRAIZER_2018-SA0P075,6.7316783872,0.7130000000 -46-GRAIZER_2018-SA0P075,6.8262458163,0.7130000000 -47-GRAIZER_2018-SA0P075,6.3769860715,0.7130000000 -48-GRAIZER_2018-SA0P075,6.0498913538,0.7130000000 -49-GRAIZER_2018-SA0P075,5.1427739142,0.7130000000 -50-GRAIZER_2018-SA0P075,4.9700086648,0.7130000000 -51-GRAIZER_2018-SA0P075,4.6202859649,0.7130000000 -52-GRAIZER_2018-SA0P075,7.3921368893,0.7130000000 -53-GRAIZER_2018-SA0P075,5.6177069709,0.7130000000 -54-GRAIZER_2018-SA0P075,6.0131669490,0.7130000000 -55-GRAIZER_2018-SA0P075,6.0040866843,0.7130000000 -56-GRAIZER_2018-SA0P075,6.3164176083,0.7130000000 -57-GRAIZER_2018-SA0P075,6.3077114868,0.7130000000 -58-GRAIZER_2018-SA0P075,6.4416038687,0.7130000000 -59-GRAIZER_2018-SA0P075,6.4034673104,0.7130000000 -60-GRAIZER_2018-SA0P075,5.8508996316,0.7130000000 -61-GRAIZER_2018-SA0P075,6.1813585164,0.7130000000 -62-GRAIZER_2018-SA0P075,6.1923611186,0.7130000000 -63-GRAIZER_2018-SA0P075,6.5530016412,0.7130000000 -64-GRAIZER_2018-SA0P075,5.9962496296,0.7130000000 -65-GRAIZER_2018-SA0P075,5.5294139344,0.7130000000 -66-GRAIZER_2018-SA0P075,6.1067258524,0.7130000000 -67-GRAIZER_2018-SA0P075,6.0883954080,0.7130000000 -68-GRAIZER_2018-SA0P075,5.8785212151,0.7130000000 -69-GRAIZER_2018-SA0P075,5.5174227064,0.7130000000 -70-GRAIZER_2018-SA0P075,5.9086477098,0.7130000000 -71-GRAIZER_2018-SA0P075,5.7895180421,0.7130000000 -72-GRAIZER_2018-SA0P075,5.7785037480,0.7130000000 -73-GRAIZER_2018-SA0P075,5.7081443129,0.7130000000 -74-GRAIZER_2018-SA0P075,5.6654426596,0.7130000000 -75-GRAIZER_2018-SA0P075,5.6245631261,0.7130000000 -76-GRAIZER_2018-SA0P075,6.4647452161,0.7130000000 -77-GRAIZER_2018-SA0P075,6.4647452161,0.7130000000 -78-GRAIZER_2018-SA0P075,6.6498585261,0.7130000000 -79-GRAIZER_2018-SA0P075,7.0499646057,0.7130000000 -80-GRAIZER_2018-SA0P075,6.8679929223,0.7130000000 -81-GRAIZER_2018-SA0P075,6.7024799762,0.7130000000 -82-GRAIZER_2018-SA0P075,6.4985147158,0.7130000000 -83-GRAIZER_2018-SA0P075,6.3215946997,0.7130000000 -84-GRAIZER_2018-SA0P075,6.1447308285,0.7130000000 -85-GRAIZER_2018-SA0P075,6.1447308285,0.7130000000 -86-GRAIZER_2018-SA0P075,6.1447308285,0.7130000000 -87-GRAIZER_2018-SA0P075,6.8679929223,0.7130000000 -88-GRAIZER_2018-SA0P075,6.3215946997,0.7130000000 -89-GRAIZER_2018-SA0P075,6.1447308285,0.7130000000 -90-GRAIZER_2018-SA0P075,5.6151566486,0.7130000000 -91-GRAIZER_2018-SA0P075,6.3077114868,0.7130000000 -92-GRAIZER_2018-SA0P075,7.0499646057,0.7130000000 -93-GRAIZER_2018-SA0P075,7.0499646057,0.7130000000 -94-GRAIZER_2018-SA0P075,7.0499646057,0.7130000000 -95-GRAIZER_2018-SA0P075,6.7024799762,0.7130000000 -96-GRAIZER_2018-SA0P075,6.7024799762,0.7130000000 -97-GRAIZER_2018-SA0P075,6.7024799762,0.7130000000 -98-GRAIZER_2018-SA0P075,6.3215946997,0.7130000000 -99-GRAIZER_2018-SA0P075,6.3215946997,0.7130000000 -100-GRAIZER_2018-SA0P075,6.3215946997,0.7130000000 -0-GRAIZER_2018-SA0P1,6.2918262276,0.7340000000 -1-GRAIZER_2018-SA0P1,6.4411840704,0.7340000000 -2-GRAIZER_2018-SA0P1,6.3010750557,0.7340000000 -3-GRAIZER_2018-SA0P1,6.0954412796,0.7340000000 -4-GRAIZER_2018-SA0P1,6.6912585941,0.7340000000 -5-GRAIZER_2018-SA0P1,6.9835176852,0.7340000000 -6-GRAIZER_2018-SA0P1,6.6984856319,0.7340000000 -7-GRAIZER_2018-SA0P1,6.3882623401,0.7340000000 -8-GRAIZER_2018-SA0P1,6.1479600860,0.7340000000 -9-GRAIZER_2018-SA0P1,7.1538874292,0.7340000000 -10-GRAIZER_2018-SA0P1,7.4880829964,0.7340000000 -11-GRAIZER_2018-SA0P1,7.1630399828,0.7340000000 -12-GRAIZER_2018-SA0P1,6.7514479625,0.7340000000 -13-GRAIZER_2018-SA0P1,6.4209946574,0.7340000000 -14-GRAIZER_2018-SA0P1,7.3046330516,0.7340000000 -15-GRAIZER_2018-SA0P1,7.6772552759,0.7340000000 -16-GRAIZER_2018-SA0P1,7.3476225106,0.7340000000 -17-GRAIZER_2018-SA0P1,6.8471378747,0.7340000000 -18-GRAIZER_2018-SA0P1,6.4755750657,0.7340000000 -19-GRAIZER_2018-SA0P1,5.5288228591,0.7340000000 -20-GRAIZER_2018-SA0P1,7.3110221490,0.7340000000 -21-GRAIZER_2018-SA0P1,7.6120018552,0.7340000000 -22-GRAIZER_2018-SA0P1,7.3510568393,0.7340000000 -23-GRAIZER_2018-SA0P1,6.8490069038,0.7340000000 -24-GRAIZER_2018-SA0P1,6.4556915094,0.7340000000 -25-GRAIZER_2018-SA0P1,5.4800224378,0.7340000000 -26-GRAIZER_2018-SA0P1,6.8687155857,0.7340000000 -27-GRAIZER_2018-SA0P1,7.2259744743,0.7340000000 -28-GRAIZER_2018-SA0P1,7.4439385508,0.7340000000 -29-GRAIZER_2018-SA0P1,7.3087874952,0.7340000000 -30-GRAIZER_2018-SA0P1,6.8073443309,0.7340000000 -31-GRAIZER_2018-SA0P1,6.4338681427,0.7340000000 -32-GRAIZER_2018-SA0P1,5.4379563075,0.7340000000 -33-GRAIZER_2018-SA0P1,5.2601842019,0.7340000000 -34-GRAIZER_2018-SA0P1,6.7393552086,0.7340000000 -35-GRAIZER_2018-SA0P1,7.0673030717,0.7340000000 -36-GRAIZER_2018-SA0P1,7.0257242083,0.7340000000 -37-GRAIZER_2018-SA0P1,7.1871754422,0.7340000000 -38-GRAIZER_2018-SA0P1,6.7053964401,0.7340000000 -39-GRAIZER_2018-SA0P1,6.3575887413,0.7340000000 -40-GRAIZER_2018-SA0P1,5.3967881094,0.7340000000 -41-GRAIZER_2018-SA0P1,5.2092560100,0.7340000000 -42-GRAIZER_2018-SA0P1,4.8097974086,0.7340000000 -43-GRAIZER_2018-SA0P1,6.6106440931,0.7340000000 -44-GRAIZER_2018-SA0P1,6.9152563912,0.7340000000 -45-GRAIZER_2018-SA0P1,6.9354076480,0.7340000000 -46-GRAIZER_2018-SA0P1,7.0294034362,0.7340000000 -47-GRAIZER_2018-SA0P1,6.5789974826,0.7340000000 -48-GRAIZER_2018-SA0P1,6.2501460459,0.7340000000 -49-GRAIZER_2018-SA0P1,5.3310506013,0.7340000000 -50-GRAIZER_2018-SA0P1,5.1482791988,0.7340000000 -51-GRAIZER_2018-SA0P1,4.7657144519,0.7340000000 -52-GRAIZER_2018-SA0P1,7.6772552759,0.7340000000 -53-GRAIZER_2018-SA0P1,5.3417183450,0.7340000000 -54-GRAIZER_2018-SA0P1,6.0874652471,0.7340000000 -55-GRAIZER_2018-SA0P1,6.0785908059,0.7340000000 -56-GRAIZER_2018-SA0P1,6.5752170692,0.7340000000 -57-GRAIZER_2018-SA0P1,6.5665595313,0.7340000000 -58-GRAIZER_2018-SA0P1,6.7250171163,0.7340000000 -59-GRAIZER_2018-SA0P1,6.6869018514,0.7340000000 -60-GRAIZER_2018-SA0P1,6.0845214424,0.7340000000 -61-GRAIZER_2018-SA0P1,6.4157411412,0.7340000000 -62-GRAIZER_2018-SA0P1,6.4558738063,0.7340000000 -63-GRAIZER_2018-SA0P1,6.8163924001,0.7340000000 -64-GRAIZER_2018-SA0P1,6.2591109150,0.7340000000 -65-GRAIZER_2018-SA0P1,5.7906666775,0.7340000000 -66-GRAIZER_2018-SA0P1,6.3697257274,0.7340000000 -67-GRAIZER_2018-SA0P1,6.3513747575,0.7340000000 -68-GRAIZER_2018-SA0P1,6.1411815716,0.7340000000 -69-GRAIZER_2018-SA0P1,5.7785846107,0.7340000000 -70-GRAIZER_2018-SA0P1,6.1713662936,0.7340000000 -71-GRAIZER_2018-SA0P1,6.0519694686,0.7340000000 -72-GRAIZER_2018-SA0P1,6.0409246775,0.7340000000 -73-GRAIZER_2018-SA0P1,5.9703393080,0.7340000000 -74-GRAIZER_2018-SA0P1,5.9274687706,0.7340000000 -75-GRAIZER_2018-SA0P1,5.8863992163,0.7340000000 -76-GRAIZER_2018-SA0P1,6.6518978022,0.7340000000 -77-GRAIZER_2018-SA0P1,6.6518978022,0.7340000000 -78-GRAIZER_2018-SA0P1,6.9331506729,0.7340000000 -79-GRAIZER_2018-SA0P1,7.3191023364,0.7340000000 -80-GRAIZER_2018-SA0P1,7.1371379808,0.7340000000 -81-GRAIZER_2018-SA0P1,6.9707177860,0.7340000000 -82-GRAIZER_2018-SA0P1,6.7635723051,0.7340000000 -83-GRAIZER_2018-SA0P1,6.5847881822,0.7340000000 -84-GRAIZER_2018-SA0P1,6.4139050125,0.7340000000 -85-GRAIZER_2018-SA0P1,6.4139050125,0.7340000000 -86-GRAIZER_2018-SA0P1,6.4139050125,0.7340000000 -87-GRAIZER_2018-SA0P1,7.1371379808,0.7340000000 -88-GRAIZER_2018-SA0P1,6.5847881822,0.7340000000 -89-GRAIZER_2018-SA0P1,6.4139050125,0.7340000000 -90-GRAIZER_2018-SA0P1,5.3393465530,0.7340000000 -91-GRAIZER_2018-SA0P1,6.5665595313,0.7340000000 -92-GRAIZER_2018-SA0P1,7.3191023364,0.7340000000 -93-GRAIZER_2018-SA0P1,7.3191023364,0.7340000000 -94-GRAIZER_2018-SA0P1,7.3191023364,0.7340000000 -95-GRAIZER_2018-SA0P1,6.9707177860,0.7340000000 -96-GRAIZER_2018-SA0P1,6.9707177860,0.7340000000 -97-GRAIZER_2018-SA0P1,6.9707177860,0.7340000000 -98-GRAIZER_2018-SA0P1,6.5847881822,0.7340000000 -99-GRAIZER_2018-SA0P1,6.5847881822,0.7340000000 -100-GRAIZER_2018-SA0P1,6.5847881822,0.7340000000 -0-GRAIZER_2018-SA0P15,6.0351211862,0.7200000000 -1-GRAIZER_2018-SA0P15,6.1822738984,0.7200000000 -2-GRAIZER_2018-SA0P15,6.0441854743,0.7200000000 -3-GRAIZER_2018-SA0P15,5.8456626970,0.7200000000 -4-GRAIZER_2018-SA0P15,6.6087965607,0.7200000000 -5-GRAIZER_2018-SA0P15,6.8981701949,0.7200000000 -6-GRAIZER_2018-SA0P15,6.6159202626,0.7200000000 -7-GRAIZER_2018-SA0P15,6.3135037435,0.7200000000 -8-GRAIZER_2018-SA0P15,6.0881696624,0.7200000000 -9-GRAIZER_2018-SA0P15,7.2512381698,0.7200000000 -10-GRAIZER_2018-SA0P15,7.5827568583,0.7200000000 -11-GRAIZER_2018-SA0P15,7.2602950813,0.7200000000 -12-GRAIZER_2018-SA0P15,6.8558829557,0.7200000000 -13-GRAIZER_2018-SA0P15,6.5389508922,0.7200000000 -14-GRAIZER_2018-SA0P15,7.5379542994,0.7200000000 -15-GRAIZER_2018-SA0P15,7.9081969603,0.7200000000 -16-GRAIZER_2018-SA0P15,7.5806641524,0.7200000000 -17-GRAIZER_2018-SA0P15,7.0851280224,0.7200000000 -18-GRAIZER_2018-SA0P15,6.7222637743,0.7200000000 -19-GRAIZER_2018-SA0P15,5.8204018586,0.7200000000 -20-GRAIZER_2018-SA0P15,7.6280141304,0.7200000000 -21-GRAIZER_2018-SA0P15,7.9276239408,0.7200000000 -22-GRAIZER_2018-SA0P15,7.6678881690,0.7200000000 -23-GRAIZER_2018-SA0P15,7.1686688012,0.7200000000 -24-GRAIZER_2018-SA0P15,6.7802618535,0.7200000000 -25-GRAIZER_2018-SA0P15,5.8283535184,0.7200000000 -26-GRAIZER_2018-SA0P15,7.2242725806,0.7200000000 -27-GRAIZER_2018-SA0P15,7.5808682763,0.7200000000 -28-GRAIZER_2018-SA0P15,7.7982741489,0.7200000000 -29-GRAIZER_2018-SA0P15,7.6635598540,0.7200000000 -30-GRAIZER_2018-SA0P15,7.1630575465,0.7200000000 -31-GRAIZER_2018-SA0P15,6.7909947279,0.7200000000 -32-GRAIZER_2018-SA0P15,5.8011409511,0.7200000000 -33-GRAIZER_2018-SA0P15,5.6249277823,0.7200000000 -34-GRAIZER_2018-SA0P15,7.0981884355,0.7200000000 -35-GRAIZER_2018-SA0P15,7.4265091524,0.7200000000 -36-GRAIZER_2018-SA0P15,7.3852908686,0.7200000000 -37-GRAIZER_2018-SA0P15,7.5464836803,0.7200000000 -38-GRAIZER_2018-SA0P15,7.0641764486,0.7200000000 -39-GRAIZER_2018-SA0P15,6.7155312369,0.7200000000 -40-GRAIZER_2018-SA0P15,5.7480728326,0.7200000000 -41-GRAIZER_2018-SA0P15,5.5537028704,0.7200000000 -42-GRAIZER_2018-SA0P15,5.1239698283,0.7200000000 -43-GRAIZER_2018-SA0P15,6.9512401325,0.7200000000 -44-GRAIZER_2018-SA0P15,7.2569471356,0.7200000000 -45-GRAIZER_2018-SA0P15,7.2781890097,0.7200000000 -46-GRAIZER_2018-SA0P15,7.3713999260,0.7200000000 -47-GRAIZER_2018-SA0P15,6.9194399014,0.7200000000 -48-GRAIZER_2018-SA0P15,6.5882504510,0.7200000000 -49-GRAIZER_2018-SA0P15,5.6540434702,0.7200000000 -50-GRAIZER_2018-SA0P15,5.4590772856,0.7200000000 -51-GRAIZER_2018-SA0P15,5.0354512955,0.7200000000 -52-GRAIZER_2018-SA0P15,7.9081969603,0.7200000000 -53-GRAIZER_2018-SA0P15,4.8190609688,0.7200000000 -54-GRAIZER_2018-SA0P15,5.8306116664,0.7200000000 -55-GRAIZER_2018-SA0P15,5.8219217407,0.7200000000 -56-GRAIZER_2018-SA0P15,6.6725701899,0.7200000000 -57-GRAIZER_2018-SA0P15,6.6640082620,0.7200000000 -58-GRAIZER_2018-SA0P15,7.0419466883,0.7200000000 -59-GRAIZER_2018-SA0P15,7.0039919504,0.7200000000 -60-GRAIZER_2018-SA0P15,6.4433977005,0.7200000000 -61-GRAIZER_2018-SA0P15,6.7750454642,0.7200000000 -62-GRAIZER_2018-SA0P15,6.8101707889,0.7200000000 -63-GRAIZER_2018-SA0P15,7.1709643631,0.7200000000 -64-GRAIZER_2018-SA0P15,6.6147513538,0.7200000000 -65-GRAIZER_2018-SA0P15,6.1487487830,0.7200000000 -66-GRAIZER_2018-SA0P15,6.7251038200,0.7200000000 -67-GRAIZER_2018-SA0P15,6.7067924067,0.7200000000 -68-GRAIZER_2018-SA0P15,6.4971838671,0.7200000000 -69-GRAIZER_2018-SA0P15,6.1367798705,0.7200000000 -70-GRAIZER_2018-SA0P15,6.5272658512,0.7200000000 -71-GRAIZER_2018-SA0P15,6.4083272218,0.7200000000 -72-GRAIZER_2018-SA0P15,6.3973326839,0.7200000000 -73-GRAIZER_2018-SA0P15,6.3271076812,0.7200000000 -74-GRAIZER_2018-SA0P15,6.2844937153,0.7200000000 -75-GRAIZER_2018-SA0P15,6.2437009039,0.7200000000 -76-GRAIZER_2018-SA0P15,6.5664048091,0.7200000000 -77-GRAIZER_2018-SA0P15,6.5664048091,0.7200000000 -78-GRAIZER_2018-SA0P15,7.2491948322,0.7200000000 -79-GRAIZER_2018-SA0P15,7.6883179548,0.7200000000 -80-GRAIZER_2018-SA0P15,7.5063972719,0.7200000000 -81-GRAIZER_2018-SA0P15,7.3372673768,0.7200000000 -82-GRAIZER_2018-SA0P15,7.1216710835,0.7200000000 -83-GRAIZER_2018-SA0P15,6.9397801956,0.7200000000 -84-GRAIZER_2018-SA0P15,6.7833378844,0.7200000000 -85-GRAIZER_2018-SA0P15,6.7833378844,0.7200000000 -86-GRAIZER_2018-SA0P15,6.7833378844,0.7200000000 -87-GRAIZER_2018-SA0P15,7.5063972719,0.7200000000 -88-GRAIZER_2018-SA0P15,6.9397801956,0.7200000000 -89-GRAIZER_2018-SA0P15,6.7833378844,0.7200000000 -90-GRAIZER_2018-SA0P15,4.8166559660,0.7200000000 -91-GRAIZER_2018-SA0P15,6.6640082620,0.7200000000 -92-GRAIZER_2018-SA0P15,7.6883179548,0.7200000000 -93-GRAIZER_2018-SA0P15,7.6883179548,0.7200000000 -94-GRAIZER_2018-SA0P15,7.6883179548,0.7200000000 -95-GRAIZER_2018-SA0P15,7.3372673768,0.7200000000 -96-GRAIZER_2018-SA0P15,7.3372673768,0.7200000000 -97-GRAIZER_2018-SA0P15,7.3372673768,0.7200000000 -98-GRAIZER_2018-SA0P15,6.9397801956,0.7200000000 -99-GRAIZER_2018-SA0P15,6.9397801956,0.7200000000 -100-GRAIZER_2018-SA0P15,6.9397801956,0.7200000000 -0-GRAIZER_2018-SA0P2,5.7622899638,0.6930000000 -1-GRAIZER_2018-SA0P2,5.9090559049,0.6930000000 -2-GRAIZER_2018-SA0P2,5.7713215844,0.6930000000 -3-GRAIZER_2018-SA0P2,5.5740963337,0.6930000000 -4-GRAIZER_2018-SA0P2,6.3425778408,0.6930000000 -5-GRAIZER_2018-SA0P2,6.6307033633,0.6930000000 -6-GRAIZER_2018-SA0P2,6.3496566259,0.6930000000 -7-GRAIZER_2018-SA0P2,6.0506780866,0.6930000000 -8-GRAIZER_2018-SA0P2,5.8321776345,0.6930000000 -9-GRAIZER_2018-SA0P2,7.0900966548,0.6930000000 -10-GRAIZER_2018-SA0P2,7.4195063022,0.6930000000 -11-GRAIZER_2018-SA0P2,7.0990781132,0.6930000000 -12-GRAIZER_2018-SA0P2,6.7003510975,0.6930000000 -13-GRAIZER_2018-SA0P2,6.3942451000,0.6930000000 -14-GRAIZER_2018-SA0P2,7.4998702831,0.6930000000 -15-GRAIZER_2018-SA0P2,7.8673499031,0.6930000000 -16-GRAIZER_2018-SA0P2,7.5422550833,0.6930000000 -17-GRAIZER_2018-SA0P2,7.0524876062,0.6930000000 -18-GRAIZER_2018-SA0P2,6.6998511590,0.6930000000 -19-GRAIZER_2018-SA0P2,5.8532016389,0.6930000000 -20-GRAIZER_2018-SA0P2,7.6988048011,0.6930000000 -21-GRAIZER_2018-SA0P2,7.9959190770,0.6930000000 -22-GRAIZER_2018-SA0P2,7.7383856949,0.6930000000 -23-GRAIZER_2018-SA0P2,7.2443513854,0.6930000000 -24-GRAIZER_2018-SA0P2,6.8650475176,0.6930000000 -25-GRAIZER_2018-SA0P2,5.9603159894,0.6930000000 -26-GRAIZER_2018-SA0P2,7.3789453511,0.6930000000 -27-GRAIZER_2018-SA0P2,7.7326385010,0.6930000000 -28-GRAIZER_2018-SA0P2,7.9476425247,0.6930000000 -29-GRAIZER_2018-SA0P2,7.8148045049,0.6930000000 -30-GRAIZER_2018-SA0P2,7.3184225302,0.6930000000 -31-GRAIZER_2018-SA0P2,6.9527935712,0.6930000000 -32-GRAIZER_2018-SA0P2,5.9981487967,0.6930000000 -33-GRAIZER_2018-SA0P2,5.8441560055,0.6930000000 -34-GRAIZER_2018-SA0P2,7.3033191453,0.6930000000 -35-GRAIZER_2018-SA0P2,7.6295720066,0.6930000000 -36-GRAIZER_2018-SA0P2,7.5862531759,0.6930000000 -37-GRAIZER_2018-SA0P2,7.7489616372,0.6930000000 -38-GRAIZER_2018-SA0P2,7.2695940202,0.6930000000 -39-GRAIZER_2018-SA0P2,6.9252131679,0.6930000000 -40-GRAIZER_2018-SA0P2,5.9808940330,0.6930000000 -41-GRAIZER_2018-SA0P2,5.8002202300,0.6930000000 -42-GRAIZER_2018-SA0P2,5.3934287167,0.6930000000 -43-GRAIZER_2018-SA0P2,7.1809925073,0.6930000000 -44-GRAIZER_2018-SA0P2,7.4853903476,0.6930000000 -45-GRAIZER_2018-SA0P2,7.5052912070,0.6930000000 -46-GRAIZER_2018-SA0P2,7.5994708308,0.6930000000 -47-GRAIZER_2018-SA0P2,7.1493729952,0.6930000000 -48-GRAIZER_2018-SA0P2,6.8208431656,0.6930000000 -49-GRAIZER_2018-SA0P2,5.8999857042,0.6930000000 -50-GRAIZER_2018-SA0P2,5.7116441560,0.6930000000 -51-GRAIZER_2018-SA0P2,5.2922690317,0.6930000000 -52-GRAIZER_2018-SA0P2,7.8673499031,0.6930000000 -53-GRAIZER_2018-SA0P2,4.5762661605,0.6930000000 -54-GRAIZER_2018-SA0P2,5.5577981465,0.6930000000 -55-GRAIZER_2018-SA0P2,5.5491408544,0.6930000000 -56-GRAIZER_2018-SA0P2,6.5114903691,0.6930000000 -57-GRAIZER_2018-SA0P2,6.5030038492,0.6930000000 -58-GRAIZER_2018-SA0P2,7.1125816692,0.6930000000 -59-GRAIZER_2018-SA0P2,7.0749199017,0.6930000000 -60-GRAIZER_2018-SA0P2,6.6489499389,0.6930000000 -61-GRAIZER_2018-SA0P2,6.9782457734,0.6930000000 -62-GRAIZER_2018-SA0P2,6.9590895514,0.6930000000 -63-GRAIZER_2018-SA0P2,7.3210589265,0.6930000000 -64-GRAIZER_2018-SA0P2,6.7695014001,0.6930000000 -65-GRAIZER_2018-SA0P2,6.3148007885,0.6930000000 -66-GRAIZER_2018-SA0P2,6.8786971692,0.6930000000 -67-GRAIZER_2018-SA0P2,6.8605595659,0.6930000000 -68-GRAIZER_2018-SA0P2,6.6535452313,0.6930000000 -69-GRAIZER_2018-SA0P2,6.3033842491,0.6930000000 -70-GRAIZER_2018-SA0P2,6.6831677992,0.6930000000 -71-GRAIZER_2018-SA0P2,6.5662904839,0.6930000000 -72-GRAIZER_2018-SA0P2,6.5555240183,0.6930000000 -73-GRAIZER_2018-SA0P2,6.4869467721,0.6930000000 -74-GRAIZER_2018-SA0P2,6.4455196717,0.6930000000 -75-GRAIZER_2018-SA0P2,6.4060206409,0.6930000000 -76-GRAIZER_2018-SA0P2,6.2989334885,0.6930000000 -77-GRAIZER_2018-SA0P2,6.2989334885,0.6930000000 -78-GRAIZER_2018-SA0P2,7.3182162476,0.6930000000 -79-GRAIZER_2018-SA0P2,7.8551479131,0.6930000000 -80-GRAIZER_2018-SA0P2,7.6733095147,0.6930000000 -81-GRAIZER_2018-SA0P2,7.5003310896,0.6930000000 -82-GRAIZER_2018-SA0P2,7.2744854439,0.6930000000 -83-GRAIZER_2018-SA0P2,7.0916878321,0.6930000000 -84-GRAIZER_2018-SA0P2,6.9505771739,0.6930000000 -85-GRAIZER_2018-SA0P2,6.9505771739,0.6930000000 -86-GRAIZER_2018-SA0P2,6.9505771739,0.6930000000 -87-GRAIZER_2018-SA0P2,7.6733095147,0.6930000000 -88-GRAIZER_2018-SA0P2,7.0916878321,0.6930000000 -89-GRAIZER_2018-SA0P2,6.9505771739,0.6930000000 -90-GRAIZER_2018-SA0P2,4.5738241879,0.6930000000 -91-GRAIZER_2018-SA0P2,6.5030038492,0.6930000000 -92-GRAIZER_2018-SA0P2,7.8551479131,0.6930000000 -93-GRAIZER_2018-SA0P2,7.8551479131,0.6930000000 -94-GRAIZER_2018-SA0P2,7.8551479131,0.6930000000 -95-GRAIZER_2018-SA0P2,7.5003310896,0.6930000000 -96-GRAIZER_2018-SA0P2,7.5003310896,0.6930000000 -97-GRAIZER_2018-SA0P2,7.5003310896,0.6930000000 -98-GRAIZER_2018-SA0P2,7.0916878321,0.6930000000 -99-GRAIZER_2018-SA0P2,7.0916878321,0.6930000000 -100-GRAIZER_2018-SA0P2,7.0916878321,0.6930000000 -0-GRAIZER_2018-SA0P25,5.6408549155,0.6843700000 -1-GRAIZER_2018-SA0P25,5.7880903055,0.6843700000 -2-GRAIZER_2018-SA0P25,5.6499254932,0.6843700000 -3-GRAIZER_2018-SA0P25,5.4512412232,0.6843700000 -4-GRAIZER_2018-SA0P25,6.1001576060,0.6843700000 -5-GRAIZER_2018-SA0P25,6.3885556466,0.6843700000 -6-GRAIZER_2018-SA0P25,6.1072457593,0.6843700000 -7-GRAIZER_2018-SA0P25,5.8076382546,0.6843700000 -8-GRAIZER_2018-SA0P25,5.5883471805,0.6843700000 -9-GRAIZER_2018-SA0P25,6.8712763969,0.6843700000 -10-GRAIZER_2018-SA0P25,7.1998141433,0.6843700000 -11-GRAIZER_2018-SA0P25,6.8802265375,0.6843700000 -12-GRAIZER_2018-SA0P25,6.4838846222,0.6843700000 -13-GRAIZER_2018-SA0P25,6.1824594751,0.6843700000 -14-GRAIZER_2018-SA0P25,7.3537371126,0.6843700000 -15-GRAIZER_2018-SA0P25,7.7195076105,0.6843700000 -16-GRAIZER_2018-SA0P25,7.3959203834,0.6843700000 -17-GRAIZER_2018-SA0P25,6.9097476064,0.6843700000 -18-GRAIZER_2018-SA0P25,6.5635792416,0.6843700000 -19-GRAIZER_2018-SA0P25,5.7540054229,0.6843700000 -20-GRAIZER_2018-SA0P25,7.6392737788,0.6843700000 -21-GRAIZER_2018-SA0P25,7.9344486295,0.6843700000 -22-GRAIZER_2018-SA0P25,7.6786264095,0.6843700000 -23-GRAIZER_2018-SA0P25,7.1886469747,0.6843700000 -24-GRAIZER_2018-SA0P25,6.8165525282,0.6843700000 -25-GRAIZER_2018-SA0P25,5.9512104131,0.6843700000 -26-GRAIZER_2018-SA0P25,7.4028688445,0.6843700000 -27-GRAIZER_2018-SA0P25,7.7538514964,0.6843700000 -28-GRAIZER_2018-SA0P25,7.9666263207,0.6843700000 -29-GRAIZER_2018-SA0P25,7.8355286477,0.6843700000 -30-GRAIZER_2018-SA0P25,7.3429951488,0.6843700000 -31-GRAIZER_2018-SA0P25,6.9834508715,0.6843700000 -32-GRAIZER_2018-SA0P25,6.0639987290,0.6843700000 -33-GRAIZER_2018-SA0P25,5.9343628750,0.6843700000 -34-GRAIZER_2018-SA0P25,7.3914667628,0.6843700000 -35-GRAIZER_2018-SA0P25,7.7154352368,0.6843700000 -36-GRAIZER_2018-SA0P25,7.6698150799,0.6843700000 -37-GRAIZER_2018-SA0P25,7.8341821455,0.6843700000 -38-GRAIZER_2018-SA0P25,7.3580600526,0.6843700000 -39-GRAIZER_2018-SA0P25,7.0184580005,0.6843700000 -40-GRAIZER_2018-SA0P25,6.1019172633,0.6843700000 -41-GRAIZER_2018-SA0P25,5.9399126332,0.6843700000 -42-GRAIZER_2018-SA0P25,5.5768614182,0.6843700000 -43-GRAIZER_2018-SA0P25,7.3136320965,0.6843700000 -44-GRAIZER_2018-SA0P25,7.6162833558,0.6843700000 -45-GRAIZER_2018-SA0P25,7.6344167001,0.6843700000 -46-GRAIZER_2018-SA0P25,7.7298709915,0.6843700000 -47-GRAIZER_2018-SA0P25,7.2822553939,0.6843700000 -48-GRAIZER_2018-SA0P25,6.9573503800,0.6843700000 -49-GRAIZER_2018-SA0P25,6.0567830970,0.6843700000 -50-GRAIZER_2018-SA0P25,5.8812039490,0.6843700000 -51-GRAIZER_2018-SA0P25,5.4875517160,0.6843700000 -52-GRAIZER_2018-SA0P25,7.7195076105,0.6843700000 -53-GRAIZER_2018-SA0P25,4.5127731040,0.6843700000 -54-GRAIZER_2018-SA0P25,5.4364667640,0.6843700000 -55-GRAIZER_2018-SA0P25,5.4277704711,0.6843700000 -56-GRAIZER_2018-SA0P25,6.2928149817,0.6843700000 -57-GRAIZER_2018-SA0P25,6.2843597218,0.6843700000 -58-GRAIZER_2018-SA0P25,7.0529989677,0.6843700000 -59-GRAIZER_2018-SA0P25,7.0155652392,0.6843700000 -60-GRAIZER_2018-SA0P25,6.7375889733,0.6843700000 -61-GRAIZER_2018-SA0P25,7.0642855875,0.6843700000 -62-GRAIZER_2018-SA0P25,6.9777075400,0.6843700000 -63-GRAIZER_2018-SA0P25,7.3407649825,0.6843700000 -64-GRAIZER_2018-SA0P25,6.7935442529,0.6843700000 -65-GRAIZER_2018-SA0P25,6.3495726969,0.6843700000 -66-GRAIZER_2018-SA0P25,6.9016581699,0.6843700000 -67-GRAIZER_2018-SA0P25,6.8836829450,0.6843700000 -68-GRAIZER_2018-SA0P25,6.6791000085,0.6843700000 -69-GRAIZER_2018-SA0P25,6.3386882050,0.6843700000 -70-GRAIZER_2018-SA0P25,6.7082909174,0.6843700000 -71-GRAIZER_2018-SA0P25,6.5933540393,0.6843700000 -72-GRAIZER_2018-SA0P25,6.5828028545,0.6843700000 -73-GRAIZER_2018-SA0P25,6.5157844418,0.6843700000 -74-GRAIZER_2018-SA0P25,6.4754839938,0.6843700000 -75-GRAIZER_2018-SA0P25,6.4372168151,0.6843700000 -76-GRAIZER_2018-SA0P25,6.0569138351,0.6843700000 -77-GRAIZER_2018-SA0P25,6.0569138351,0.6843700000 -78-GRAIZER_2018-SA0P25,7.2573796649,0.6843700000 -79-GRAIZER_2018-SA0P25,7.8903824828,0.6843700000 -80-GRAIZER_2018-SA0P25,7.7086648237,0.6843700000 -81-GRAIZER_2018-SA0P25,7.5307860619,0.6843700000 -82-GRAIZER_2018-SA0P25,7.2940672716,0.6843700000 -83-GRAIZER_2018-SA0P25,7.1130773559,0.6843700000 -84-GRAIZER_2018-SA0P25,6.9864123713,0.6843700000 -85-GRAIZER_2018-SA0P25,6.9864123713,0.6843700000 -86-GRAIZER_2018-SA0P25,6.9864123713,0.6843700000 -87-GRAIZER_2018-SA0P25,7.7086648237,0.6843700000 -88-GRAIZER_2018-SA0P25,7.1130773559,0.6843700000 -89-GRAIZER_2018-SA0P25,6.9864123713,0.6843700000 -90-GRAIZER_2018-SA0P25,4.5103791084,0.6843700000 -91-GRAIZER_2018-SA0P25,6.2843597218,0.6843700000 -92-GRAIZER_2018-SA0P25,7.8903824828,0.6843700000 -93-GRAIZER_2018-SA0P25,7.8903824828,0.6843700000 -94-GRAIZER_2018-SA0P25,7.8903824828,0.6843700000 -95-GRAIZER_2018-SA0P25,7.5307860619,0.6843700000 -96-GRAIZER_2018-SA0P25,7.5307860619,0.6843700000 -97-GRAIZER_2018-SA0P25,7.5307860619,0.6843700000 -98-GRAIZER_2018-SA0P25,7.1130773559,0.6843700000 -99-GRAIZER_2018-SA0P25,7.1130773559,0.6843700000 -100-GRAIZER_2018-SA0P25,7.1130773559,0.6843700000 -0-GRAIZER_2018-SA0P3,5.6771948257,0.6781100000 -1-GRAIZER_2018-SA0P3,5.8250360922,0.6781100000 -2-GRAIZER_2018-SA0P3,5.6863158975,0.6781100000 -3-GRAIZER_2018-SA0P3,5.4857125362,0.6781100000 -4-GRAIZER_2018-SA0P3,5.9299462342,0.6781100000 -5-GRAIZER_2018-SA0P3,6.2194318284,0.6781100000 -6-GRAIZER_2018-SA0P3,5.9370728436,0.6781100000 -7-GRAIZER_2018-SA0P3,5.6346582950,0.6781100000 -8-GRAIZER_2018-SA0P3,5.4104937870,0.6781100000 -9-GRAIZER_2018-SA0P3,6.6695952170,0.6781100000 -10-GRAIZER_2018-SA0P3,6.9980210563,0.6781100000 -11-GRAIZER_2018-SA0P3,6.6785412100,0.6781100000 -12-GRAIZER_2018-SA0P3,6.2825410217,0.6781100000 -13-GRAIZER_2018-SA0P3,5.9819253490,0.6781100000 -14-GRAIZER_2018-SA0P3,7.1813811157,0.6781100000 -15-GRAIZER_2018-SA0P3,7.5462945241,0.6781100000 -16-GRAIZER_2018-SA0P3,7.2234630185,0.6781100000 -17-GRAIZER_2018-SA0P3,6.7391102084,0.6781100000 -18-GRAIZER_2018-SA0P3,6.3962777723,0.6781100000 -19-GRAIZER_2018-SA0P3,5.6072311526,0.6781100000 -20-GRAIZER_2018-SA0P3,7.5231343525,0.6781100000 -21-GRAIZER_2018-SA0P3,7.8170114539,0.6781100000 -22-GRAIZER_2018-SA0P3,7.5623339833,0.6781100000 -23-GRAIZER_2018-SA0P3,7.0750825439,0.6781100000 -24-GRAIZER_2018-SA0P3,6.7078905223,0.6781100000 -25-GRAIZER_2018-SA0P3,5.8705163618,0.6781100000 -26-GRAIZER_2018-SA0P3,7.3539591321,0.6781100000 -27-GRAIZER_2018-SA0P3,7.7027854427,0.6781100000 -28-GRAIZER_2018-SA0P3,7.9137943660,0.6781100000 -29-GRAIZER_2018-SA0P3,7.7840747515,0.6781100000 -30-GRAIZER_2018-SA0P3,7.2946033286,0.6781100000 -31-GRAIZER_2018-SA0P3,6.9399414519,0.6781100000 -32-GRAIZER_2018-SA0P3,6.0497699348,0.6781100000 -33-GRAIZER_2018-SA0P3,5.9415607887,0.6781100000 -34-GRAIZER_2018-SA0P3,7.4037847784,0.6781100000 -35-GRAIZER_2018-SA0P3,7.7256833203,0.6781100000 -36-GRAIZER_2018-SA0P3,7.6779877379,0.6781100000 -37-GRAIZER_2018-SA0P3,7.8438495927,0.6781100000 -38-GRAIZER_2018-SA0P3,7.3706673620,0.6781100000 -39-GRAIZER_2018-SA0P3,7.0354300135,0.6781100000 -40-GRAIZER_2018-SA0P3,6.1452004783,0.6781100000 -41-GRAIZER_2018-SA0P3,6.0019675895,0.6781100000 -42-GRAIZER_2018-SA0P3,5.6886207310,0.6781100000 -43-GRAIZER_2018-SA0P3,7.3757457200,0.6781100000 -44-GRAIZER_2018-SA0P3,7.6766167650,0.6781100000 -45-GRAIZER_2018-SA0P3,7.6929584072,0.6781100000 -46-GRAIZER_2018-SA0P3,7.7897038137,0.6781100000 -47-GRAIZER_2018-SA0P3,7.3446172761,0.6781100000 -48-GRAIZER_2018-SA0P3,7.0234414918,0.6781100000 -49-GRAIZER_2018-SA0P3,6.1446852511,0.6781100000 -50-GRAIZER_2018-SA0P3,5.9839255949,0.6781100000 -51-GRAIZER_2018-SA0P3,5.6260406338,0.6781100000 -52-GRAIZER_2018-SA0P3,7.5462945241,0.6781100000 -53-GRAIZER_2018-SA0P3,4.5538153267,0.6781100000 -54-GRAIZER_2018-SA0P3,5.4729361762,0.6781100000 -55-GRAIZER_2018-SA0P3,5.4641893358,0.6781100000 -56-GRAIZER_2018-SA0P3,6.0913447761,0.6781100000 -57-GRAIZER_2018-SA0P3,6.0828935934,0.6781100000 -58-GRAIZER_2018-SA0P3,6.9369221464,0.6781100000 -59-GRAIZER_2018-SA0P3,6.8996411442,0.6781100000 -60-GRAIZER_2018-SA0P3,6.7504075142,0.6781100000 -61-GRAIZER_2018-SA0P3,7.0747492759,0.6781100000 -62-GRAIZER_2018-SA0P3,6.9246634972,0.6781100000 -63-GRAIZER_2018-SA0P3,7.2885808880,0.6781100000 -64-GRAIZER_2018-SA0P3,6.7448032013,0.6781100000 -65-GRAIZER_2018-SA0P3,6.3094584605,0.6781100000 -66-GRAIZER_2018-SA0P3,6.8520558898,0.6781100000 -67-GRAIZER_2018-SA0P3,6.8342098300,0.6781100000 -68-GRAIZER_2018-SA0P3,6.6315651706,0.6781100000 -69-GRAIZER_2018-SA0P3,6.2990058965,0.6781100000 -70-GRAIZER_2018-SA0P3,6.6604113897,0.6781100000 -71-GRAIZER_2018-SA0P3,6.5470259658,0.6781100000 -72-GRAIZER_2018-SA0P3,6.5366472192,0.6781100000 -73-GRAIZER_2018-SA0P3,6.4708792947,0.6781100000 -74-GRAIZER_2018-SA0P3,6.4314847017,0.6781100000 -75-GRAIZER_2018-SA0P3,6.3942099508,0.6781100000 -76-GRAIZER_2018-SA0P3,5.8880001625,0.6781100000 -77-GRAIZER_2018-SA0P3,5.8880001625,0.6781100000 -78-GRAIZER_2018-SA0P3,7.1404642438,0.6781100000 -79-GRAIZER_2018-SA0P3,7.8515812645,0.6781100000 -80-GRAIZER_2018-SA0P3,7.6700225696,0.6781100000 -81-GRAIZER_2018-SA0P3,7.4862985344,0.6781100000 -82-GRAIZER_2018-SA0P3,7.2390576175,0.6781100000 -83-GRAIZER_2018-SA0P3,7.0622268392,0.6781100000 -84-GRAIZER_2018-SA0P3,6.9484019339,0.6781100000 -85-GRAIZER_2018-SA0P3,6.9484019339,0.6781100000 -86-GRAIZER_2018-SA0P3,6.9484019339,0.6781100000 -87-GRAIZER_2018-SA0P3,7.6700225696,0.6781100000 -88-GRAIZER_2018-SA0P3,7.0622268392,0.6781100000 -89-GRAIZER_2018-SA0P3,6.9484019339,0.6781100000 -90-GRAIZER_2018-SA0P3,4.5515608534,0.6781100000 -91-GRAIZER_2018-SA0P3,6.0828935934,0.6781100000 -92-GRAIZER_2018-SA0P3,7.8515812645,0.6781100000 -93-GRAIZER_2018-SA0P3,7.8515812645,0.6781100000 -94-GRAIZER_2018-SA0P3,7.8515812645,0.6781100000 -95-GRAIZER_2018-SA0P3,7.4862985344,0.6781100000 -96-GRAIZER_2018-SA0P3,7.4862985344,0.6781100000 -97-GRAIZER_2018-SA0P3,7.4862985344,0.6781100000 -98-GRAIZER_2018-SA0P3,7.0622268392,0.6781100000 -99-GRAIZER_2018-SA0P3,7.0622268392,0.6781100000 -100-GRAIZER_2018-SA0P3,7.0622268392,0.6781100000 -0-GRAIZER_2018-SA0P4,6.1309358330,0.6730000000 -1-GRAIZER_2018-SA0P4,6.2796837762,0.6730000000 -2-GRAIZER_2018-SA0P4,6.1401326328,0.6730000000 -3-GRAIZER_2018-SA0P4,5.9366296637,0.6730000000 -4-GRAIZER_2018-SA0P4,5.8014422437,0.6730000000 -5-GRAIZER_2018-SA0P4,6.0944073966,0.6730000000 -6-GRAIZER_2018-SA0P4,5.8086921674,0.6730000000 -7-GRAIZER_2018-SA0P4,5.4972194025,0.6730000000 -8-GRAIZER_2018-SA0P4,5.2570085784,0.6730000000 -9-GRAIZER_2018-SA0P4,6.3827131366,0.6730000000 -10-GRAIZER_2018-SA0P4,6.7119489819,0.6730000000 -11-GRAIZER_2018-SA0P4,6.3916878483,0.6730000000 -12-GRAIZER_2018-SA0P4,5.9935757772,0.6730000000 -13-GRAIZER_2018-SA0P4,5.6892153645,0.6730000000 -14-GRAIZER_2018-SA0P4,6.8743965477,0.6730000000 -15-GRAIZER_2018-SA0P4,7.2390706630,0.6730000000 -16-GRAIZER_2018-SA0P4,6.9164494626,0.6730000000 -17-GRAIZER_2018-SA0P4,6.4326432432,0.6730000000 -18-GRAIZER_2018-SA0P4,6.0909450967,0.6730000000 -19-GRAIZER_2018-SA0P4,5.3118518611,0.6730000000 -20-GRAIZER_2018-SA0P4,7.2573213272,0.6730000000 -21-GRAIZER_2018-SA0P4,7.5500253270,0.6730000000 -22-GRAIZER_2018-SA0P4,7.2963822063,0.6730000000 -23-GRAIZER_2018-SA0P4,6.8116217133,0.6730000000 -24-GRAIZER_2018-SA0P4,6.4489924166,0.6730000000 -25-GRAIZER_2018-SA0P4,5.6396073738,0.6730000000 -26-GRAIZER_2018-SA0P4,7.1680058468,0.6730000000 -27-GRAIZER_2018-SA0P4,7.5141686642,0.6730000000 -28-GRAIZER_2018-SA0P4,7.7230085017,0.6730000000 -29-GRAIZER_2018-SA0P4,7.5949806114,0.6730000000 -30-GRAIZER_2018-SA0P4,7.1092920769,0.6730000000 -31-GRAIZER_2018-SA0P4,6.7607264269,0.6730000000 -32-GRAIZER_2018-SA0P4,5.9087569647,0.6730000000 -33-GRAIZER_2018-SA0P4,5.8303378302,0.6730000000 -34-GRAIZER_2018-SA0P4,7.3102094529,0.6730000000 -35-GRAIZER_2018-SA0P4,7.6290384874,0.6730000000 -36-GRAIZER_2018-SA0P4,7.5782810417,0.6730000000 -37-GRAIZER_2018-SA0P4,7.7463464941,0.6730000000 -38-GRAIZER_2018-SA0P4,7.2775222389,0.6730000000 -39-GRAIZER_2018-SA0P4,6.9488111119,0.6730000000 -40-GRAIZER_2018-SA0P4,6.0993876691,0.6730000000 -41-GRAIZER_2018-SA0P4,5.9869569329,0.6730000000 -42-GRAIZER_2018-SA0P4,5.7643332442,0.6730000000 -43-GRAIZER_2018-SA0P4,7.3717496709,0.6730000000 -44-GRAIZER_2018-SA0P4,7.6695822209,0.6730000000 -45-GRAIZER_2018-SA0P4,7.6828812374,0.6730000000 -46-GRAIZER_2018-SA0P4,7.7818175779,0.6730000000 -47-GRAIZER_2018-SA0P4,7.3410461485,0.6730000000 -48-GRAIZER_2018-SA0P4,7.0262884642,0.6730000000 -49-GRAIZER_2018-SA0P4,6.1864977141,0.6730000000 -50-GRAIZER_2018-SA0P4,6.0538589645,0.6730000000 -51-GRAIZER_2018-SA0P4,5.7726189268,0.6730000000 -52-GRAIZER_2018-SA0P4,7.2390706630,0.6730000000 -53-GRAIZER_2018-SA0P4,4.8417696910,0.6730000000 -54-GRAIZER_2018-SA0P4,5.9269536234,0.6730000000 -55-GRAIZER_2018-SA0P4,5.9181309195,0.6730000000 -56-GRAIZER_2018-SA0P4,5.8050379115,0.6730000000 -57-GRAIZER_2018-SA0P4,5.7965578308,0.6730000000 -58-GRAIZER_2018-SA0P4,6.6715180933,0.6730000000 -59-GRAIZER_2018-SA0P4,6.6343751479,0.6730000000 -60-GRAIZER_2018-SA0P4,6.6577990047,0.6730000000 -61-GRAIZER_2018-SA0P4,6.9786521668,0.6730000000 -62-GRAIZER_2018-SA0P4,6.7339051975,0.6730000000 -63-GRAIZER_2018-SA0P4,7.0988749758,0.6730000000 -64-GRAIZER_2018-SA0P4,6.5593345512,0.6730000000 -65-GRAIZER_2018-SA0P4,6.1347749482,0.6730000000 -66-GRAIZER_2018-SA0P4,6.6655237776,0.6730000000 -67-GRAIZER_2018-SA0P4,6.6478370612,0.6730000000 -68-GRAIZER_2018-SA0P4,6.4475899950,0.6730000000 -69-GRAIZER_2018-SA0P4,6.1248687572,0.6730000000 -70-GRAIZER_2018-SA0P4,6.4760089569,0.6730000000 -71-GRAIZER_2018-SA0P4,6.3645496491,0.6730000000 -72-GRAIZER_2018-SA0P4,6.3543854637,0.6730000000 -73-GRAIZER_2018-SA0P4,6.2901763798,0.6730000000 -74-GRAIZER_2018-SA0P4,6.2519141839,0.6730000000 -75-GRAIZER_2018-SA0P4,6.2158831191,0.6730000000 -76-GRAIZER_2018-SA0P4,5.7635607336,0.6730000000 -77-GRAIZER_2018-SA0P4,5.7635607336,0.6730000000 -78-GRAIZER_2018-SA0P4,6.8743040336,0.6730000000 -79-GRAIZER_2018-SA0P4,7.6819954959,0.6730000000 -80-GRAIZER_2018-SA0P4,7.5008681290,0.6730000000 -81-GRAIZER_2018-SA0P4,7.3031117063,0.6730000000 -82-GRAIZER_2018-SA0P4,7.0383408610,0.6730000000 -83-GRAIZER_2018-SA0P4,6.8741576125,0.6730000000 -84-GRAIZER_2018-SA0P4,6.7809618441,0.6730000000 -85-GRAIZER_2018-SA0P4,6.7809618441,0.6730000000 -86-GRAIZER_2018-SA0P4,6.7809618441,0.6730000000 -87-GRAIZER_2018-SA0P4,7.5008681290,0.6730000000 -88-GRAIZER_2018-SA0P4,6.8741576125,0.6730000000 -89-GRAIZER_2018-SA0P4,6.7809618441,0.6730000000 -90-GRAIZER_2018-SA0P4,4.8400132558,0.6730000000 -91-GRAIZER_2018-SA0P4,5.7965578308,0.6730000000 -92-GRAIZER_2018-SA0P4,7.6819954959,0.6730000000 -93-GRAIZER_2018-SA0P4,7.6819954959,0.6730000000 -94-GRAIZER_2018-SA0P4,7.6819954959,0.6730000000 -95-GRAIZER_2018-SA0P4,7.3031117063,0.6730000000 -96-GRAIZER_2018-SA0P4,7.3031117063,0.6730000000 -97-GRAIZER_2018-SA0P4,7.3031117063,0.6730000000 -98-GRAIZER_2018-SA0P4,6.8741576125,0.6730000000 -99-GRAIZER_2018-SA0P4,6.8741576125,0.6730000000 -100-GRAIZER_2018-SA0P4,6.8741576125,0.6730000000 -0-GRAIZER_2018-SA0P5,6.9663319762,0.6930000000 -1-GRAIZER_2018-SA0P5,7.1155439843,0.6930000000 -2-GRAIZER_2018-SA0P5,6.9755676207,0.6930000000 -3-GRAIZER_2018-SA0P5,6.7705660972,0.6930000000 -4-GRAIZER_2018-SA0P5,5.8965660630,0.6930000000 -5-GRAIZER_2018-SA0P5,6.1941709576,0.6930000000 -6-GRAIZER_2018-SA0P5,5.9039804559,0.6930000000 -7-GRAIZER_2018-SA0P5,5.5804188682,0.6930000000 -8-GRAIZER_2018-SA0P5,5.3187549591,0.6930000000 -9-GRAIZER_2018-SA0P5,6.2393791294,0.6930000000 -10-GRAIZER_2018-SA0P5,6.5699354652,0.6930000000 -11-GRAIZER_2018-SA0P5,6.2484008270,0.6930000000 -12-GRAIZER_2018-SA0P5,5.8467987410,0.6930000000 -13-GRAIZER_2018-SA0P5,5.5360517770,0.6930000000 -14-GRAIZER_2018-SA0P5,6.6592319925,0.6930000000 -15-GRAIZER_2018-SA0P5,7.0245294556,0.6930000000 -16-GRAIZER_2018-SA0P5,6.7013577398,0.6930000000 -17-GRAIZER_2018-SA0P5,6.2162772124,0.6930000000 -18-GRAIZER_2018-SA0P5,5.8724094101,0.6930000000 -19-GRAIZER_2018-SA0P5,5.0835983393,0.6930000000 -20-GRAIZER_2018-SA0P5,7.0275490547,0.6930000000 -21-GRAIZER_2018-SA0P5,7.3201515014,0.6930000000 -22-GRAIZER_2018-SA0P5,7.0665974162,0.6930000000 -23-GRAIZER_2018-SA0P5,6.5820802372,0.6930000000 -24-GRAIZER_2018-SA0P5,6.2199881430,0.6930000000 -25-GRAIZER_2018-SA0P5,5.4159069476,0.6930000000 -26-GRAIZER_2018-SA0P5,6.9637518683,0.6930000000 -27-GRAIZER_2018-SA0P5,7.3088138721,0.6930000000 -28-GRAIZER_2018-SA0P5,7.5167675885,0.6930000000 -29-GRAIZER_2018-SA0P5,7.3894299501,0.6930000000 -30-GRAIZER_2018-SA0P5,6.9053053707,0.6930000000 -31-GRAIZER_2018-SA0P5,6.5593123233,0.6930000000 -32-GRAIZER_2018-SA0P5,5.7247634753,0.6930000000 -33-GRAIZER_2018-SA0P5,5.6613546778,0.6930000000 -34-GRAIZER_2018-SA0P5,7.1573223806,0.6930000000 -35-GRAIZER_2018-SA0P5,7.4743713777,0.6930000000 -36-GRAIZER_2018-SA0P5,7.4218509179,0.6930000000 -37-GRAIZER_2018-SA0P5,7.5911838111,0.6930000000 -38-GRAIZER_2018-SA0P5,7.1248855642,0.6930000000 -39-GRAIZER_2018-SA0P5,6.7999993996,0.6930000000 -40-GRAIZER_2018-SA0P5,5.9755692058,0.6930000000 -41-GRAIZER_2018-SA0P5,5.8832325988,0.6930000000 -42-GRAIZER_2018-SA0P5,5.7268715400,0.6930000000 -43-GRAIZER_2018-SA0P5,7.2828171780,0.6930000000 -44-GRAIZER_2018-SA0P5,7.5785099948,0.6930000000 -45-GRAIZER_2018-SA0P5,7.5896783036,0.6930000000 -46-GRAIZER_2018-SA0P5,7.6901476275,0.6930000000 -47-GRAIZER_2018-SA0P5,7.2524137683,0.6930000000 -48-GRAIZER_2018-SA0P5,6.9422144135,0.6930000000 -49-GRAIZER_2018-SA0P5,6.1311201083,0.6930000000 -50-GRAIZER_2018-SA0P5,6.0203503776,0.6930000000 -51-GRAIZER_2018-SA0P5,5.8051640413,0.6930000000 -52-GRAIZER_2018-SA0P5,7.0245294556,0.6930000000 -53-GRAIZER_2018-SA0P5,5.3449449223,0.6930000000 -54-GRAIZER_2018-SA0P5,6.7626458312,0.6930000000 -55-GRAIZER_2018-SA0P5,6.7537841089,0.6930000000 -56-GRAIZER_2018-SA0P5,5.6624512468,0.6930000000 -57-GRAIZER_2018-SA0P5,5.6539239505,0.6930000000 -58-GRAIZER_2018-SA0P5,6.4424352317,0.6930000000 -59-GRAIZER_2018-SA0P5,6.4053039135,0.6930000000 -60-GRAIZER_2018-SA0P5,6.5058500205,0.6930000000 -61-GRAIZER_2018-SA0P5,6.8246869858,0.6930000000 -62-GRAIZER_2018-SA0P5,6.5281610956,0.6930000000 -63-GRAIZER_2018-SA0P5,6.8935564251,0.6930000000 -64-GRAIZER_2018-SA0P5,6.3557479353,0.6930000000 -65-GRAIZER_2018-SA0P5,5.9357289243,0.6930000000 -66-GRAIZER_2018-SA0P5,6.4614997024,0.6930000000 -67-GRAIZER_2018-SA0P5,6.4438784142,0.6930000000 -68-GRAIZER_2018-SA0P5,6.2446208580,0.6930000000 -69-GRAIZER_2018-SA0P5,5.9260577538,0.6930000000 -70-GRAIZER_2018-SA0P5,6.2728627968,0.6930000000 -71-GRAIZER_2018-SA0P5,6.1622038850,0.6930000000 -72-GRAIZER_2018-SA0P5,6.1521292353,0.6930000000 -73-GRAIZER_2018-SA0P5,6.0885728989,0.6930000000 -74-GRAIZER_2018-SA0P5,6.0507873564,0.6930000000 -75-GRAIZER_2018-SA0P5,6.0152821812,0.6930000000 -76-GRAIZER_2018-SA0P5,5.8640869188,0.6930000000 -77-GRAIZER_2018-SA0P5,5.8640869188,0.6930000000 -78-GRAIZER_2018-SA0P5,6.6451594666,0.6930000000 -79-GRAIZER_2018-SA0P5,7.4895852148,0.6930000000 -80-GRAIZER_2018-SA0P5,7.3090375632,0.6930000000 -81-GRAIZER_2018-SA0P5,7.0950005074,0.6930000000 -82-GRAIZER_2018-SA0P5,6.8190170738,0.6930000000 -83-GRAIZER_2018-SA0P5,6.6695045285,0.6930000000 -84-GRAIZER_2018-SA0P5,6.5914354064,0.6930000000 -85-GRAIZER_2018-SA0P5,6.5914354064,0.6930000000 -86-GRAIZER_2018-SA0P5,6.5914354064,0.6930000000 -87-GRAIZER_2018-SA0P5,7.3090375632,0.6930000000 -88-GRAIZER_2018-SA0P5,6.6695045285,0.6930000000 -89-GRAIZER_2018-SA0P5,6.5914354064,0.6930000000 -90-GRAIZER_2018-SA0P5,5.3438942392,0.6930000000 -91-GRAIZER_2018-SA0P5,5.6539239505,0.6930000000 -92-GRAIZER_2018-SA0P5,7.4895852148,0.6930000000 -93-GRAIZER_2018-SA0P5,7.4895852148,0.6930000000 -94-GRAIZER_2018-SA0P5,7.4895852148,0.6930000000 -95-GRAIZER_2018-SA0P5,7.0950005074,0.6930000000 -96-GRAIZER_2018-SA0P5,7.0950005074,0.6930000000 -97-GRAIZER_2018-SA0P5,7.0950005074,0.6930000000 -98-GRAIZER_2018-SA0P5,6.6695045285,0.6930000000 -99-GRAIZER_2018-SA0P5,6.6695045285,0.6930000000 -100-GRAIZER_2018-SA0P5,6.6695045285,0.6930000000 -0-GRAIZER_2018-SA0P75,10.2767313262,0.7320000000 -1-GRAIZER_2018-SA0P75,10.4262372774,0.7320000000 -2-GRAIZER_2018-SA0P75,10.2859916917,0.7320000000 -3-GRAIZER_2018-SA0P75,10.0800202443,0.7320000000 -4-GRAIZER_2018-SA0P75,6.8012994210,0.7320000000 -5-GRAIZER_2018-SA0P75,7.1141610886,0.7320000000 -6-GRAIZER_2018-SA0P75,6.8092546874,0.7320000000 -7-GRAIZER_2018-SA0P75,6.4459279814,0.7320000000 -8-GRAIZER_2018-SA0P75,6.1136539185,0.7320000000 -9-GRAIZER_2018-SA0P75,6.3023436161,0.7320000000 -10-GRAIZER_2018-SA0P75,6.6371334496,0.7320000000 -11-GRAIZER_2018-SA0P75,6.3115158756,0.7320000000 -12-GRAIZER_2018-SA0P75,5.8987443715,0.7320000000 -13-GRAIZER_2018-SA0P75,5.5676208481,0.7320000000 -14-GRAIZER_2018-SA0P75,6.4470686566,0.7320000000 -15-GRAIZER_2018-SA0P75,6.8147912296,0.7320000000 -16-GRAIZER_2018-SA0P75,6.4894788315,0.7320000000 -17-GRAIZER_2018-SA0P75,5.9993788433,0.7320000000 -18-GRAIZER_2018-SA0P75,5.6467326473,0.7320000000 -19-GRAIZER_2018-SA0P75,4.8124657158,0.7320000000 -20-GRAIZER_2018-SA0P75,6.6896419568,0.7320000000 -21-GRAIZER_2018-SA0P75,6.9834852780,0.7320000000 -22-GRAIZER_2018-SA0P75,6.7288355021,0.7320000000 -23-GRAIZER_2018-SA0P75,6.2417676931,0.7320000000 -24-GRAIZER_2018-SA0P75,5.8752675312,0.7320000000 -25-GRAIZER_2018-SA0P75,5.0496072544,0.7320000000 -26-GRAIZER_2018-SA0P75,6.5797792387,0.7320000000 -27-GRAIZER_2018-SA0P75,6.9250955171,0.7320000000 -28-GRAIZER_2018-SA0P75,7.1332864042,0.7320000000 -29-GRAIZER_2018-SA0P75,7.0057611783,0.7320000000 -30-GRAIZER_2018-SA0P75,6.5212766734,0.7320000000 -31-GRAIZER_2018-SA0P75,6.1748410401,0.7320000000 -32-GRAIZER_2018-SA0P75,5.3406995278,0.7320000000 -33-GRAIZER_2018-SA0P75,5.2810353125,0.7320000000 -34-GRAIZER_2018-SA0P75,6.7913206828,0.7320000000 -35-GRAIZER_2018-SA0P75,7.1071478549,0.7320000000 -36-GRAIZER_2018-SA0P75,7.0534477129,0.7320000000 -37-GRAIZER_2018-SA0P75,7.2236250091,0.7320000000 -38-GRAIZER_2018-SA0P75,6.7590577323,0.7320000000 -39-GRAIZER_2018-SA0P75,6.4368808483,0.7320000000 -40-GRAIZER_2018-SA0P75,5.6321842385,0.7320000000 -41-GRAIZER_2018-SA0P75,5.5579038008,0.7320000000 -42-GRAIZER_2018-SA0P75,5.4754692993,0.7320000000 -43-GRAIZER_2018-SA0P75,6.9817777912,0.7320000000 -44-GRAIZER_2018-SA0P75,7.2750407106,0.7320000000 -45-GRAIZER_2018-SA0P75,7.2838159867,0.7320000000 -46-GRAIZER_2018-SA0P75,7.3860038491,0.7320000000 -47-GRAIZER_2018-SA0P75,6.9517169448,0.7320000000 -48-GRAIZER_2018-SA0P75,6.6467679099,0.7320000000 -49-GRAIZER_2018-SA0P75,5.8705086294,0.7320000000 -50-GRAIZER_2018-SA0P75,5.7882215839,0.7320000000 -51-GRAIZER_2018-SA0P75,5.6714989867,0.7320000000 -52-GRAIZER_2018-SA0P75,6.8147912296,0.7320000000 -53-GRAIZER_2018-SA0P75,7.3694083460,0.7320000000 -54-GRAIZER_2018-SA0P75,10.0739557738,0.7320000000 -55-GRAIZER_2018-SA0P75,10.0650687322,0.7320000000 -56-GRAIZER_2018-SA0P75,5.7279783400,0.7320000000 -57-GRAIZER_2018-SA0P75,5.7192996907,0.7320000000 -58-GRAIZER_2018-SA0P75,6.1070907769,0.7320000000 -59-GRAIZER_2018-SA0P75,6.0698112075,0.7320000000 -60-GRAIZER_2018-SA0P75,6.1423906111,0.7320000000 -61-GRAIZER_2018-SA0P75,6.4598809221,0.7320000000 -62-GRAIZER_2018-SA0P75,6.1471892598,0.7320000000 -63-GRAIZER_2018-SA0P75,6.5124520414,0.7320000000 -64-GRAIZER_2018-SA0P75,5.9741549998,0.7320000000 -65-GRAIZER_2018-SA0P75,5.5532171763,0.7320000000 -66-GRAIZER_2018-SA0P75,6.0800225947,0.7320000000 -67-GRAIZER_2018-SA0P75,6.0623836620,0.7320000000 -68-GRAIZER_2018-SA0P75,5.8628729275,0.7320000000 -69-GRAIZER_2018-SA0P75,5.5435118055,0.7320000000 -70-GRAIZER_2018-SA0P75,5.8911582936,0.7320000000 -71-GRAIZER_2018-SA0P75,5.7803093956,0.7320000000 -72-GRAIZER_2018-SA0P75,5.7702145026,0.7320000000 -73-GRAIZER_2018-SA0P75,5.7065166270,0.7320000000 -74-GRAIZER_2018-SA0P75,5.6686343595,0.7320000000 -75-GRAIZER_2018-SA0P75,5.6330288551,0.7320000000 -76-GRAIZER_2018-SA0P75,6.7866513801,0.7320000000 -77-GRAIZER_2018-SA0P75,6.7866513801,0.7320000000 -78-GRAIZER_2018-SA0P75,6.3106325749,0.7320000000 -79-GRAIZER_2018-SA0P75,7.1213882950,0.7320000000 -80-GRAIZER_2018-SA0P75,6.9429086467,0.7320000000 -81-GRAIZER_2018-SA0P75,6.6846624184,0.7320000000 -82-GRAIZER_2018-SA0P75,6.4050081242,0.7320000000 -83-GRAIZER_2018-SA0P75,6.2882028727,0.7320000000 -84-GRAIZER_2018-SA0P75,6.2335259470,0.7320000000 -85-GRAIZER_2018-SA0P75,6.2335259470,0.7320000000 -86-GRAIZER_2018-SA0P75,6.2335259470,0.7320000000 -87-GRAIZER_2018-SA0P75,6.9429086467,0.7320000000 -88-GRAIZER_2018-SA0P75,6.2882028727,0.7320000000 -89-GRAIZER_2018-SA0P75,6.2335259470,0.7320000000 -90-GRAIZER_2018-SA0P75,7.3707682886,0.7320000000 -91-GRAIZER_2018-SA0P75,5.7192996907,0.7320000000 -92-GRAIZER_2018-SA0P75,7.1213882950,0.7320000000 -93-GRAIZER_2018-SA0P75,7.1213882950,0.7320000000 -94-GRAIZER_2018-SA0P75,7.1213882950,0.7320000000 -95-GRAIZER_2018-SA0P75,6.6846624184,0.7320000000 -96-GRAIZER_2018-SA0P75,6.6846624184,0.7320000000 -97-GRAIZER_2018-SA0P75,6.6846624184,0.7320000000 -98-GRAIZER_2018-SA0P75,6.2882028727,0.7320000000 -99-GRAIZER_2018-SA0P75,6.2882028727,0.7320000000 -100-GRAIZER_2018-SA0P75,6.2882028727,0.7320000000 -0-GRAIZER_2018-SA1P0,15.0824278521,0.7380000000 -1-GRAIZER_2018-SA1P0,15.2318891272,0.7380000000 -2-GRAIZER_2018-SA1P0,15.0916845589,0.7380000000 -3-GRAIZER_2018-SA1P0,14.8858416483,0.7380000000 -4-GRAIZER_2018-SA1P0,8.3866942828,0.7380000000 -5-GRAIZER_2018-SA1P0,8.7194892042,0.7380000000 -6-GRAIZER_2018-SA1P0,8.3953560140,0.7380000000 -7-GRAIZER_2018-SA1P0,7.9801282833,0.7380000000 -8-GRAIZER_2018-SA1P0,7.5558866140,0.7380000000 -9-GRAIZER_2018-SA1P0,6.7669615332,0.7380000000 -10-GRAIZER_2018-SA1P0,7.1072144419,0.7380000000 -11-GRAIZER_2018-SA1P0,6.7763279643,0.7380000000 -12-GRAIZER_2018-SA1P0,6.3491759340,0.7380000000 -13-GRAIZER_2018-SA1P0,5.9919472086,0.7380000000 -14-GRAIZER_2018-SA1P0,6.5365032704,0.7380000000 -15-GRAIZER_2018-SA1P0,6.9071097340,0.7380000000 -16-GRAIZER_2018-SA1P0,6.5792514220,0.7380000000 -17-GRAIZER_2018-SA1P0,6.0831956732,0.7380000000 -18-GRAIZER_2018-SA1P0,5.7201701265,0.7380000000 -19-GRAIZER_2018-SA1P0,4.8323825147,0.7380000000 -20-GRAIZER_2018-SA1P0,6.6014047770,0.7380000000 -21-GRAIZER_2018-SA1P0,6.8969407535,0.7380000000 -22-GRAIZER_2018-SA1P0,6.6407967914,0.7380000000 -23-GRAIZER_2018-SA1P0,6.1502247387,0.7380000000 -24-GRAIZER_2018-SA1P0,5.7775718753,0.7380000000 -25-GRAIZER_2018-SA1P0,4.9191415863,0.7380000000 -26-GRAIZER_2018-SA1P0,6.3898028028,0.7380000000 -27-GRAIZER_2018-SA1P0,6.7366476665,0.7380000000 -28-GRAIZER_2018-SA1P0,6.9461102859,0.7380000000 -29-GRAIZER_2018-SA1P0,6.8175907012,0.7380000000 -30-GRAIZER_2018-SA1P0,6.3309359412,0.7380000000 -31-GRAIZER_2018-SA1P0,5.9811052776,0.7380000000 -32-GRAIZER_2018-SA1P0,5.1275759633,0.7380000000 -33-GRAIZER_2018-SA1P0,5.0545179925,0.7380000000 -34-GRAIZER_2018-SA1P0,6.5504759002,0.7380000000 -35-GRAIZER_2018-SA1P0,6.8669382384,0.7380000000 -36-GRAIZER_2018-SA1P0,6.8139056420,0.7380000000 -37-GRAIZER_2018-SA1P0,6.9835980449,0.7380000000 -38-GRAIZER_2018-SA1P0,6.5181258440,0.7380000000 -39-GRAIZER_2018-SA1P0,6.1946734034,0.7380000000 -40-GRAIZER_2018-SA1P0,5.3834656657,0.7380000000 -41-GRAIZER_2018-SA1P0,5.3057219671,0.7380000000 -42-GRAIZER_2018-SA1P0,5.2260707760,0.7380000000 -43-GRAIZER_2018-SA1P0,6.7308366686,0.7380000000 -44-GRAIZER_2018-SA1P0,7.0238116746,0.7380000000 -45-GRAIZER_2018-SA1P0,7.0323347260,0.7380000000 -46-GRAIZER_2018-SA1P0,7.1346995925,0.7380000000 -47-GRAIZER_2018-SA1P0,6.7008182070,0.7380000000 -48-GRAIZER_2018-SA1P0,6.3965620310,0.7380000000 -49-GRAIZER_2018-SA1P0,5.6262791917,0.7380000000 -50-GRAIZER_2018-SA1P0,5.5501457491,0.7380000000 -51-GRAIZER_2018-SA1P0,5.4649378358,0.7380000000 -52-GRAIZER_2018-SA1P0,6.9071097340,0.7380000000 -53-GRAIZER_2018-SA1P0,10.3547856718,0.7380000000 -54-GRAIZER_2018-SA1P0,14.8808702578,0.7380000000 -55-GRAIZER_2018-SA1P0,14.8719860500,0.7380000000 -56-GRAIZER_2018-SA1P0,6.1961166382,0.7380000000 -57-GRAIZER_2018-SA1P0,6.1872427265,0.7380000000 -58-GRAIZER_2018-SA1P0,6.0223857423,0.7380000000 -59-GRAIZER_2018-SA1P0,5.9849034743,0.7380000000 -60-GRAIZER_2018-SA1P0,5.9047247774,0.7380000000 -61-GRAIZER_2018-SA1P0,6.2230049819,0.7380000000 -62-GRAIZER_2018-SA1P0,5.9637010641,0.7380000000 -63-GRAIZER_2018-SA1P0,6.3283248748,0.7380000000 -64-GRAIZER_2018-SA1P0,5.7874840021,0.7380000000 -65-GRAIZER_2018-SA1P0,5.3602780687,0.7380000000 -66-GRAIZER_2018-SA1P0,5.8939857065,0.7380000000 -67-GRAIZER_2018-SA1P0,5.8762515774,0.7380000000 -68-GRAIZER_2018-SA1P0,5.6753163078,0.7380000000 -69-GRAIZER_2018-SA1P0,5.3502629811,0.7380000000 -70-GRAIZER_2018-SA1P0,5.7038544523,0.7380000000 -71-GRAIZER_2018-SA1P0,5.5918696910,0.7380000000 -72-GRAIZER_2018-SA1P0,5.5816488533,0.7380000000 -73-GRAIZER_2018-SA1P0,5.5170394764,0.7380000000 -74-GRAIZER_2018-SA1P0,5.4784989332,0.7380000000 -75-GRAIZER_2018-SA1P0,5.4421742040,0.7380000000 -76-GRAIZER_2018-SA1P0,8.3954503005,0.7380000000 -77-GRAIZER_2018-SA1P0,8.3954503005,0.7380000000 -78-GRAIZER_2018-SA1P0,6.2270432997,0.7380000000 -79-GRAIZER_2018-SA1P0,6.9348948023,0.7380000000 -80-GRAIZER_2018-SA1P0,6.7592900185,0.7380000000 -81-GRAIZER_2018-SA1P0,6.4602485097,0.7380000000 -82-GRAIZER_2018-SA1P0,6.1965897247,0.7380000000 -83-GRAIZER_2018-SA1P0,6.1030876505,0.7380000000 -84-GRAIZER_2018-SA1P0,6.0613337143,0.7380000000 -85-GRAIZER_2018-SA1P0,6.0613337143,0.7380000000 -86-GRAIZER_2018-SA1P0,6.0613337143,0.7380000000 -87-GRAIZER_2018-SA1P0,6.7592900185,0.7380000000 -88-GRAIZER_2018-SA1P0,6.1030876505,0.7380000000 -89-GRAIZER_2018-SA1P0,6.0613337143,0.7380000000 -90-GRAIZER_2018-SA1P0,10.3594277648,0.7380000000 -91-GRAIZER_2018-SA1P0,6.1872427265,0.7380000000 -92-GRAIZER_2018-SA1P0,6.9348948023,0.7380000000 -93-GRAIZER_2018-SA1P0,6.9348948023,0.7380000000 -94-GRAIZER_2018-SA1P0,6.9348948023,0.7380000000 -95-GRAIZER_2018-SA1P0,6.4602485097,0.7380000000 -96-GRAIZER_2018-SA1P0,6.4602485097,0.7380000000 -97-GRAIZER_2018-SA1P0,6.4602485097,0.7380000000 -98-GRAIZER_2018-SA1P0,6.1030876505,0.7380000000 -99-GRAIZER_2018-SA1P0,6.1030876505,0.7380000000 -100-GRAIZER_2018-SA1P0,6.1030876505,0.7380000000 -0-GRAIZER_2018-SA1P5,28.9283493543,0.7641900000 -1-GRAIZER_2018-SA1P5,29.0776005711,0.7641900000 -2-GRAIZER_2018-SA1P5,28.9375885360,0.7641900000 -3-GRAIZER_2018-SA1P5,28.7324078971,0.7641900000 -4-GRAIZER_2018-SA1P5,13.1781855167,0.7641900000 -5-GRAIZER_2018-SA1P5,13.5660287187,0.7641900000 -6-GRAIZER_2018-SA1P5,13.1887976390,0.7641900000 -7-GRAIZER_2018-SA1P5,12.6304041215,0.7641900000 -8-GRAIZER_2018-SA1P5,11.9531144602,0.7641900000 -9-GRAIZER_2018-SA1P5,8.5240686504,0.7641900000 -10-GRAIZER_2018-SA1P5,8.8787036490,0.7641900000 -11-GRAIZER_2018-SA1P5,8.5339460814,0.7641900000 -12-GRAIZER_2018-SA1P5,8.0689838162,0.7641900000 -13-GRAIZER_2018-SA1P5,7.6433010309,0.7641900000 -14-GRAIZER_2018-SA1P5,7.2928590182,0.7641900000 -15-GRAIZER_2018-SA1P5,7.6707572131,0.7641900000 -16-GRAIZER_2018-SA1P5,7.3364609156,0.7641900000 -17-GRAIZER_2018-SA1P5,6.8253906338,0.7641900000 -18-GRAIZER_2018-SA1P5,6.4363466511,0.7641900000 -19-GRAIZER_2018-SA1P5,5.4173377869,0.7641900000 -20-GRAIZER_2018-SA1P5,6.8858259781,0.7641900000 -21-GRAIZER_2018-SA1P5,7.1853007505,0.7641900000 -22-GRAIZER_2018-SA1P5,6.9256792760,0.7641900000 -23-GRAIZER_2018-SA1P5,6.4269806873,0.7641900000 -24-GRAIZER_2018-SA1P5,6.0401358005,0.7641900000 -25-GRAIZER_2018-SA1P5,5.1070396057,0.7641900000 -26-GRAIZER_2018-SA1P5,6.4012448909,0.7641900000 -27-GRAIZER_2018-SA1P5,6.7517794504,0.7641900000 -28-GRAIZER_2018-SA1P5,6.9643089696,0.7641900000 -29-GRAIZER_2018-SA1P5,6.8333914602,0.7641900000 -30-GRAIZER_2018-SA1P5,6.3414976717,0.7641900000 -31-GRAIZER_2018-SA1P5,5.9834358293,0.7641900000 -32-GRAIZER_2018-SA1P5,5.0812885474,0.7641900000 -33-GRAIZER_2018-SA1P5,4.9719914663,0.7641900000 -34-GRAIZER_2018-SA1P5,6.3934377277,0.7641900000 -35-GRAIZER_2018-SA1P5,6.7123593801,0.7641900000 -36-GRAIZER_2018-SA1P5,6.6618466542,0.7641900000 -37-GRAIZER_2018-SA1P5,6.8297158665,0.7641900000 -38-GRAIZER_2018-SA1P5,6.3607460485,0.7641900000 -39-GRAIZER_2018-SA1P5,6.0321687706,0.7641900000 -40-GRAIZER_2018-SA1P5,5.1897367471,0.7641900000 -41-GRAIZER_2018-SA1P5,5.0882170903,0.7641900000 -42-GRAIZER_2018-SA1P5,4.9476454516,0.7641900000 -43-GRAIZER_2018-SA1P5,6.4718490057,0.7641900000 -44-GRAIZER_2018-SA1P5,6.7661698894,0.7641900000 -45-GRAIZER_2018-SA1P5,6.7761044414,0.7641900000 -46-GRAIZER_2018-SA1P5,6.8774436364,0.7641900000 -47-GRAIZER_2018-SA1P5,6.4416452109,0.7641900000 -48-GRAIZER_2018-SA1P5,6.1346433369,0.7641900000 -49-GRAIZER_2018-SA1P5,5.3484588912,0.7641900000 -50-GRAIZER_2018-SA1P5,5.2607666452,0.7641900000 -51-GRAIZER_2018-SA1P5,5.1548472766,0.7641900000 -52-GRAIZER_2018-SA1P5,7.6707572131,0.7641900000 -53-GRAIZER_2018-SA1P5,19.0152838556,0.7641900000 -54-GRAIZER_2018-SA1P5,28.7301496432,0.7641900000 -55-GRAIZER_2018-SA1P5,28.7212806809,0.7641900000 -56-GRAIZER_2018-SA1P5,7.9629252924,0.7641900000 -57-GRAIZER_2018-SA1P5,7.9535373668,0.7641900000 -58-GRAIZER_2018-SA1P5,6.3164793948,0.7641900000 -59-GRAIZER_2018-SA1P5,6.2785241566,0.7641900000 -60-GRAIZER_2018-SA1P5,5.7563693072,0.7641900000 -61-GRAIZER_2018-SA1P5,6.0776372915,0.7641900000 -62-GRAIZER_2018-SA1P5,5.9919795015,0.7641900000 -63-GRAIZER_2018-SA1P5,6.3550577704,0.7641900000 -64-GRAIZER_2018-SA1P5,5.8080486824,0.7641900000 -65-GRAIZER_2018-SA1P5,5.3655214297,0.7641900000 -66-GRAIZER_2018-SA1P5,5.9160903397,0.7641900000 -67-GRAIZER_2018-SA1P5,5.8981251282,0.7641900000 -68-GRAIZER_2018-SA1P5,5.6937274200,0.7641900000 -69-GRAIZER_2018-SA1P5,5.3547440604,0.7641900000 -70-GRAIZER_2018-SA1P5,5.7228805874,0.7641900000 -71-GRAIZER_2018-SA1P5,5.6081300065,0.7641900000 -72-GRAIZER_2018-SA1P5,5.5976021391,0.7641900000 -73-GRAIZER_2018-SA1P5,5.5307685000,0.7641900000 -74-GRAIZER_2018-SA1P5,5.4906191584,0.7641900000 -75-GRAIZER_2018-SA1P5,5.4525342263,0.7641900000 -76-GRAIZER_2018-SA1P5,13.2515791693,0.7641900000 -77-GRAIZER_2018-SA1P5,13.2515791693,0.7641900000 -78-GRAIZER_2018-SA1P5,6.5237420643,0.7641900000 -79-GRAIZER_2018-SA1P5,6.9345611965,0.7641900000 -80-GRAIZER_2018-SA1P5,6.7666417504,0.7641900000 -81-GRAIZER_2018-SA1P5,6.4119206509,0.7641900000 -82-GRAIZER_2018-SA1P5,6.1929544680,0.7641900000 -83-GRAIZER_2018-SA1P5,6.1274277070,0.7641900000 -84-GRAIZER_2018-SA1P5,6.0992314818,0.7641900000 -85-GRAIZER_2018-SA1P5,6.0992314818,0.7641900000 -86-GRAIZER_2018-SA1P5,6.0992314818,0.7641900000 -87-GRAIZER_2018-SA1P5,6.7666417504,0.7641900000 -88-GRAIZER_2018-SA1P5,6.1274277070,0.7641900000 -89-GRAIZER_2018-SA1P5,6.0992314818,0.7641900000 -90-GRAIZER_2018-SA1P5,19.0291889392,0.7641900000 -91-GRAIZER_2018-SA1P5,7.9535373668,0.7641900000 -92-GRAIZER_2018-SA1P5,6.9345611965,0.7641900000 -93-GRAIZER_2018-SA1P5,6.9345611965,0.7641900000 -94-GRAIZER_2018-SA1P5,6.9345611965,0.7641900000 -95-GRAIZER_2018-SA1P5,6.4119206509,0.7641900000 -96-GRAIZER_2018-SA1P5,6.4119206509,0.7641900000 -97-GRAIZER_2018-SA1P5,6.4119206509,0.7641900000 -98-GRAIZER_2018-SA1P5,6.1274277070,0.7641900000 -99-GRAIZER_2018-SA1P5,6.1274277070,0.7641900000 -100-GRAIZER_2018-SA1P5,6.1274277070,0.7641900000 -0-GRAIZER_2018-SA2P0,48.3530175828,0.7830000000 -1-GRAIZER_2018-SA2P0,48.5020868830,0.7830000000 -2-GRAIZER_2018-SA2P0,48.3622414921,0.7830000000 -3-GRAIZER_2018-SA2P0,48.1576473071,0.7830000000 -4-GRAIZER_2018-SA2P0,19.9793471433,0.7830000000 -5-GRAIZER_2018-SA2P0,20.4435966825,0.7830000000 -6-GRAIZER_2018-SA2P0,19.9926661003,0.7830000000 -7-GRAIZER_2018-SA2P0,19.2356396419,0.7830000000 -8-GRAIZER_2018-SA2P0,18.2075813929,0.7830000000 -9-GRAIZER_2018-SA2P0,11.1720248136,0.7830000000 -10-GRAIZER_2018-SA2P0,11.5459938715,0.7830000000 -11-GRAIZER_2018-SA2P0,11.1825890103,0.7830000000 -12-GRAIZER_2018-SA2P0,10.6668480483,0.7830000000 -13-GRAIZER_2018-SA2P0,10.1494326683,0.7830000000 -14-GRAIZER_2018-SA2P0,8.6211138629,0.7830000000 -15-GRAIZER_2018-SA2P0,9.0084386725,0.7830000000 -16-GRAIZER_2018-SA2P0,8.6658189275,0.7830000000 -17-GRAIZER_2018-SA2P0,8.1353683226,0.7830000000 -18-GRAIZER_2018-SA2P0,7.7128452108,0.7830000000 -19-GRAIZER_2018-SA2P0,6.5271681118,0.7830000000 -20-GRAIZER_2018-SA2P0,7.6058450993,0.7830000000 -21-GRAIZER_2018-SA2P0,7.9101900020,0.7830000000 -22-GRAIZER_2018-SA2P0,7.6462682213,0.7830000000 -23-GRAIZER_2018-SA2P0,7.1375500325,0.7830000000 -24-GRAIZER_2018-SA2P0,6.7332985460,0.7830000000 -25-GRAIZER_2018-SA2P0,5.7103534433,0.7830000000 -26-GRAIZER_2018-SA2P0,6.7730796806,0.7830000000 -27-GRAIZER_2018-SA2P0,7.1279499881,0.7830000000 -28-GRAIZER_2018-SA2P0,7.3440958809,0.7830000000 -29-GRAIZER_2018-SA2P0,7.2103497211,0.7830000000 -30-GRAIZER_2018-SA2P0,6.7122999583,0.7830000000 -31-GRAIZER_2018-SA2P0,6.3446156306,0.7830000000 -32-GRAIZER_2018-SA2P0,5.3863653896,0.7830000000 -33-GRAIZER_2018-SA2P0,5.2354910858,0.7830000000 -34-GRAIZER_2018-SA2P0,6.5457860101,0.7830000000 -35-GRAIZER_2018-SA2P0,6.8676829017,0.7830000000 -36-GRAIZER_2018-SA2P0,6.8202235537,0.7830000000 -37-GRAIZER_2018-SA2P0,6.9858827674,0.7830000000 -38-GRAIZER_2018-SA2P0,6.5126811665,0.7830000000 -39-GRAIZER_2018-SA2P0,6.1779049056,0.7830000000 -40-GRAIZER_2018-SA2P0,5.2972808111,0.7830000000 -41-GRAIZER_2018-SA2P0,5.1656891667,0.7830000000 -42-GRAIZER_2018-SA2P0,4.9393962679,0.7830000000 -43-GRAIZER_2018-SA2P0,6.4743122690,0.7830000000 -44-GRAIZER_2018-SA2P0,6.7707318404,0.7830000000 -45-GRAIZER_2018-SA2P0,6.7828406062,0.7830000000 -46-GRAIZER_2018-SA2P0,6.8826030709,0.7830000000 -47-GRAIZER_2018-SA2P0,6.4438178277,0.7830000000 -48-GRAIZER_2018-SA2P0,6.1324666668,0.7830000000 -49-GRAIZER_2018-SA2P0,5.3194165430,0.7830000000 -50-GRAIZER_2018-SA2P0,5.2101481404,0.7830000000 -51-GRAIZER_2018-SA2P0,5.0451294831,0.7830000000 -52-GRAIZER_2018-SA2P0,9.0084386725,0.7830000000 -53-GRAIZER_2018-SA2P0,31.1912039904,0.7830000000 -54-GRAIZER_2018-SA2P0,48.1592606857,0.7830000000 -55-GRAIZER_2018-SA2P0,48.1504039851,0.7830000000 -56-GRAIZER_2018-SA2P0,10.6237066664,0.7830000000 -57-GRAIZER_2018-SA2P0,10.6136279945,0.7830000000 -58-GRAIZER_2018-SA2P0,7.0492340337,0.7830000000 -59-GRAIZER_2018-SA2P0,7.0106935359,0.7830000000 -60-GRAIZER_2018-SA2P0,5.9202233453,0.7830000000 -61-GRAIZER_2018-SA2P0,6.2451265066,0.7830000000 -62-GRAIZER_2018-SA2P0,6.3849742867,0.7830000000 -63-GRAIZER_2018-SA2P0,6.7462216489,0.7830000000 -64-GRAIZER_2018-SA2P0,6.1919213477,0.7830000000 -65-GRAIZER_2018-SA2P0,5.7313869095,0.7830000000 -66-GRAIZER_2018-SA2P0,6.3017809815,0.7830000000 -67-GRAIZER_2018-SA2P0,6.2835428696,0.7830000000 -68-GRAIZER_2018-SA2P0,6.0750602714,0.7830000000 -69-GRAIZER_2018-SA2P0,5.7197172502,0.7830000000 -70-GRAIZER_2018-SA2P0,6.1049384649,0.7830000000 -71-GRAIZER_2018-SA2P0,5.9869292466,0.7830000000 -72-GRAIZER_2018-SA2P0,5.9760399383,0.7830000000 -73-GRAIZER_2018-SA2P0,5.9065895978,0.7830000000 -74-GRAIZER_2018-SA2P0,5.8645494922,0.7830000000 -75-GRAIZER_2018-SA2P0,5.8243976386,0.7830000000 -76-GRAIZER_2018-SA2P0,20.1420796665,0.7830000000 -77-GRAIZER_2018-SA2P0,20.1420796665,0.7830000000 -78-GRAIZER_2018-SA2P0,7.2597222993,0.7830000000 -79-GRAIZER_2018-SA2P0,7.2831827185,0.7830000000 -80-GRAIZER_2018-SA2P0,7.1246445003,0.7830000000 -81-GRAIZER_2018-SA2P0,6.7463032782,0.7830000000 -82-GRAIZER_2018-SA2P0,6.5657947193,0.7830000000 -83-GRAIZER_2018-SA2P0,6.5157601144,0.7830000000 -84-GRAIZER_2018-SA2P0,6.4945207277,0.7830000000 -85-GRAIZER_2018-SA2P0,6.4945207277,0.7830000000 -86-GRAIZER_2018-SA2P0,6.4945207277,0.7830000000 -87-GRAIZER_2018-SA2P0,7.1246445003,0.7830000000 -88-GRAIZER_2018-SA2P0,6.5157601144,0.7830000000 -89-GRAIZER_2018-SA2P0,6.4945207277,0.7830000000 -90-GRAIZER_2018-SA2P0,31.2180245286,0.7830000000 -91-GRAIZER_2018-SA2P0,10.6136279945,0.7830000000 -92-GRAIZER_2018-SA2P0,7.2831827185,0.7830000000 -93-GRAIZER_2018-SA2P0,7.2831827185,0.7830000000 -94-GRAIZER_2018-SA2P0,7.2831827185,0.7830000000 -95-GRAIZER_2018-SA2P0,6.7463032782,0.7830000000 -96-GRAIZER_2018-SA2P0,6.7463032782,0.7830000000 -97-GRAIZER_2018-SA2P0,6.7463032782,0.7830000000 -98-GRAIZER_2018-SA2P0,6.5157601144,0.7830000000 -99-GRAIZER_2018-SA2P0,6.5157601144,0.7830000000 -100-GRAIZER_2018-SA2P0,6.5157601144,0.7830000000 -0-GRAIZER_2018-SA3P0,103.8846773260,0.7740000000 -1-GRAIZER_2018-SA3P0,104.0334545157,0.7740000000 -2-GRAIZER_2018-SA3P0,103.8938765259,0.7740000000 -3-GRAIZER_2018-SA3P0,103.6902471063,0.7740000000 -4-GRAIZER_2018-SA3P0,39.4805635225,0.7740000000 -5-GRAIZER_2018-SA3P0,40.1628013590,0.7740000000 -6-GRAIZER_2018-SA3P0,39.5016049738,0.7740000000 -7-GRAIZER_2018-SA3P0,38.1779204837,0.7740000000 -8-GRAIZER_2018-SA3P0,36.1494039205,0.7740000000 -9-GRAIZER_2018-SA3P0,18.8875760454,0.7740000000 -10-GRAIZER_2018-SA3P0,19.3161684040,0.7740000000 -11-GRAIZER_2018-SA3P0,18.9000803978,0.7740000000 -12-GRAIZER_2018-SA3P0,18.2409189465,0.7740000000 -13-GRAIZER_2018-SA3P0,17.4646276128,0.7740000000 -14-GRAIZER_2018-SA3P0,12.6679283052,0.7740000000 -15-GRAIZER_2018-SA3P0,13.0811894623,0.7740000000 -16-GRAIZER_2018-SA3P0,12.7156681189,0.7740000000 -17-GRAIZER_2018-SA3P0,12.1319295041,0.7740000000 -18-GRAIZER_2018-SA3P0,11.6175127807,0.7740000000 -19-GRAIZER_2018-SA3P0,9.9783963674,0.7740000000 -20-GRAIZER_2018-SA3P0,10.0206336529,0.7740000000 -21-GRAIZER_2018-SA3P0,10.3378055756,0.7740000000 -22-GRAIZER_2018-SA3P0,10.0625570187,0.7740000000 -23-GRAIZER_2018-SA3P0,9.5274845492,0.7740000000 -24-GRAIZER_2018-SA3P0,9.0775932774,0.7740000000 -25-GRAIZER_2018-SA3P0,7.8224497104,0.7740000000 -26-GRAIZER_2018-SA3P0,8.2882194214,0.7740000000 -27-GRAIZER_2018-SA3P0,8.6538890666,0.7740000000 -28-GRAIZER_2018-SA3P0,8.8790626068,0.7740000000 -29-GRAIZER_2018-SA3P0,8.7382536412,0.7740000000 -30-GRAIZER_2018-SA3P0,8.2248718128,0.7740000000 -31-GRAIZER_2018-SA3P0,7.8333263112,0.7740000000 -32-GRAIZER_2018-SA3P0,6.7383621151,0.7740000000 -33-GRAIZER_2018-SA3P0,6.4884014238,0.7740000000 -34-GRAIZER_2018-SA3P0,7.5067047589,0.7740000000 -35-GRAIZER_2018-SA3P0,7.8356914993,0.7740000000 -36-GRAIZER_2018-SA3P0,7.7955332995,0.7740000000 -37-GRAIZER_2018-SA3P0,7.9559050543,0.7740000000 -38-GRAIZER_2018-SA3P0,7.4726169393,0.7740000000 -39-GRAIZER_2018-SA3P0,7.1231327136,0.7740000000 -40-GRAIZER_2018-SA3P0,6.1530700728,0.7740000000 -41-GRAIZER_2018-SA3P0,5.9517190822,0.7740000000 -42-GRAIZER_2018-SA3P0,5.5277134881,0.7740000000 -43-GRAIZER_2018-SA3P0,7.0521803877,0.7740000000 -44-GRAIZER_2018-SA3P0,7.3536618034,0.7740000000 -45-GRAIZER_2018-SA3P0,7.3710256476,0.7740000000 -46-GRAIZER_2018-SA3P0,7.4669756588,0.7740000000 -47-GRAIZER_2018-SA3P0,7.0209854679,0.7740000000 -48-GRAIZER_2018-SA3P0,6.6991622894,0.7740000000 -49-GRAIZER_2018-SA3P0,5.8213731757,0.7740000000 -50-GRAIZER_2018-SA3P0,5.6594347514,0.7740000000 -51-GRAIZER_2018-SA3P0,5.3431198048,0.7740000000 -52-GRAIZER_2018-SA3P0,13.0811894623,0.7740000000 -53-GRAIZER_2018-SA3P0,66.0207345901,0.7740000000 -54-GRAIZER_2018-SA3P0,103.7021507405,0.7740000000 -55-GRAIZER_2018-SA3P0,103.6933111484,0.7740000000 -56-GRAIZER_2018-SA3P0,18.3718431434,0.7740000000 -57-GRAIZER_2018-SA3P0,18.3598142659,0.7740000000 -58-GRAIZER_2018-SA3P0,9.4962367125,0.7740000000 -59-GRAIZER_2018-SA3P0,9.4561570025,0.7740000000 -60-GRAIZER_2018-SA3P0,6.9102499879,0.7740000000 -61-GRAIZER_2018-SA3P0,7.2438489857,0.7740000000 -62-GRAIZER_2018-SA3P0,7.9532635356,0.7740000000 -63-GRAIZER_2018-SA3P0,8.3099344704,0.7740000000 -64-GRAIZER_2018-SA3P0,7.7374491052,0.7740000000 -65-GRAIZER_2018-SA3P0,7.2322742943,0.7740000000 -66-GRAIZER_2018-SA3P0,7.8518370372,0.7740000000 -67-GRAIZER_2018-SA3P0,7.8329189212,0.7740000000 -68-GRAIZER_2018-SA3P0,7.6142683418,0.7740000000 -69-GRAIZER_2018-SA3P0,7.2184026640,0.7740000000 -70-GRAIZER_2018-SA3P0,7.6459497960,0.7740000000 -71-GRAIZER_2018-SA3P0,7.5198407252,0.7740000000 -72-GRAIZER_2018-SA3P0,7.5080537791,0.7740000000 -73-GRAIZER_2018-SA3P0,7.4321095084,0.7740000000 -74-GRAIZER_2018-SA3P0,7.3853821277,0.7740000000 -75-GRAIZER_2018-SA3P0,7.3401111716,0.7740000000 -76-GRAIZER_2018-SA3P0,39.8957428573,0.7740000000 -77-GRAIZER_2018-SA3P0,39.8957428573,0.7740000000 -78-GRAIZER_2018-SA3P0,9.7152118143,0.7740000000 -79-GRAIZER_2018-SA3P0,8.7461783170,0.7740000000 -80-GRAIZER_2018-SA3P0,8.6078802170,0.7740000000 -81-GRAIZER_2018-SA3P0,8.2358789179,0.7740000000 -82-GRAIZER_2018-SA3P0,8.1061849426,0.7740000000 -83-GRAIZER_2018-SA3P0,8.0724034204,0.7740000000 -84-GRAIZER_2018-SA3P0,8.0582025336,0.7740000000 -85-GRAIZER_2018-SA3P0,8.0582025336,0.7740000000 -86-GRAIZER_2018-SA3P0,8.0582025336,0.7740000000 -87-GRAIZER_2018-SA3P0,8.6078802170,0.7740000000 -88-GRAIZER_2018-SA3P0,8.0724034204,0.7740000000 -89-GRAIZER_2018-SA3P0,8.0582025336,0.7740000000 -90-GRAIZER_2018-SA3P0,66.0844076270,0.7740000000 -91-GRAIZER_2018-SA3P0,18.3598142659,0.7740000000 -92-GRAIZER_2018-SA3P0,8.7461783170,0.7740000000 -93-GRAIZER_2018-SA3P0,8.7461783170,0.7740000000 -94-GRAIZER_2018-SA3P0,8.7461783170,0.7740000000 -95-GRAIZER_2018-SA3P0,8.2358789179,0.7740000000 -96-GRAIZER_2018-SA3P0,8.2358789179,0.7740000000 -97-GRAIZER_2018-SA3P0,8.2358789179,0.7740000000 -98-GRAIZER_2018-SA3P0,8.0724034204,0.7740000000 -99-GRAIZER_2018-SA3P0,8.0724034204,0.7740000000 -100-GRAIZER_2018-SA3P0,8.0724034204,0.7740000000 -0-GRAIZER_2018-SA4P0,181.6443060900,0.7330000000 -1-GRAIZER_2018-SA4P0,181.7928433363,0.7330000000 -2-GRAIZER_2018-SA4P0,181.6534848355,0.7330000000 -3-GRAIZER_2018-SA4P0,181.4506672579,0.7330000000 -4-GRAIZER_2018-SA4P0,66.8115757870,0.7330000000 -5-GRAIZER_2018-SA4P0,67.7990056956,0.7330000000 -6-GRAIZER_2018-SA4P0,66.8434291084,0.7330000000 -7-GRAIZER_2018-SA4P0,64.7263902080,0.7330000000 -8-GRAIZER_2018-SA4P0,61.2971958158,0.7330000000 -9-GRAIZER_2018-SA4P0,29.7497410839,0.7330000000 -10-GRAIZER_2018-SA4P0,30.2547163528,0.7330000000 -11-GRAIZER_2018-SA4P0,29.7649586104,0.7330000000 -12-GRAIZER_2018-SA4P0,28.9052216856,0.7330000000 -13-GRAIZER_2018-SA4P0,27.7669096680,0.7330000000 -14-GRAIZER_2018-SA4P0,18.4345395845,0.7330000000 -15-GRAIZER_2018-SA4P0,18.8838344646,0.7330000000 -16-GRAIZER_2018-SA4P0,18.4864962762,0.7330000000 -17-GRAIZER_2018-SA4P0,17.8287039571,0.7330000000 -18-GRAIZER_2018-SA4P0,17.1866100796,0.7330000000 -19-GRAIZER_2018-SA4P0,14.9197566552,0.7330000000 -20-GRAIZER_2018-SA4P0,13.5552670197,0.7330000000 -21-GRAIZER_2018-SA4P0,13.8899416474,0.7330000000 -22-GRAIZER_2018-SA4P0,13.5992379859,0.7330000000 -23-GRAIZER_2018-SA4P0,13.0281925906,0.7330000000 -24-GRAIZER_2018-SA4P0,12.5160495260,0.7330000000 -25-GRAIZER_2018-SA4P0,10.9467248575,0.7330000000 -26-GRAIZER_2018-SA4P0,10.6265648266,0.7330000000 -27-GRAIZER_2018-SA4P0,11.0064546764,0.7330000000 -28-GRAIZER_2018-SA4P0,11.2435104771,0.7330000000 -29-GRAIZER_2018-SA4P0,11.0934063844,0.7330000000 -30-GRAIZER_2018-SA4P0,10.5598366906,0.7330000000 -31-GRAIZER_2018-SA4P0,10.1369162675,0.7330000000 -32-GRAIZER_2018-SA4P0,8.8644857250,0.7330000000 -33-GRAIZER_2018-SA4P0,8.4890154452,0.7330000000 -34-GRAIZER_2018-SA4P0,9.1353956958,0.7330000000 -35-GRAIZER_2018-SA4P0,9.4732521097,0.7330000000 -36-GRAIZER_2018-SA4P0,9.4422255497,0.7330000000 -37-GRAIZER_2018-SA4P0,9.5959854532,0.7330000000 -38-GRAIZER_2018-SA4P0,9.1000787270,0.7330000000 -39-GRAIZER_2018-SA4P0,8.7322325429,0.7330000000 -40-GRAIZER_2018-SA4P0,7.6522359084,0.7330000000 -41-GRAIZER_2018-SA4P0,7.3673136969,0.7330000000 -42-GRAIZER_2018-SA4P0,6.7135716380,0.7330000000 -43-GRAIZER_2018-SA4P0,8.2058480462,0.7330000000 -44-GRAIZER_2018-SA4P0,8.5133837607,0.7330000000 -45-GRAIZER_2018-SA4P0,8.5370342383,0.7330000000 -46-GRAIZER_2018-SA4P0,8.6284238058,0.7330000000 -47-GRAIZER_2018-SA4P0,8.1738157864,0.7330000000 -48-GRAIZER_2018-SA4P0,7.8394943701,0.7330000000 -49-GRAIZER_2018-SA4P0,6.8854405852,0.7330000000 -50-GRAIZER_2018-SA4P0,6.6625200016,0.7330000000 -51-GRAIZER_2018-SA4P0,6.1731304272,0.7330000000 -52-GRAIZER_2018-SA4P0,18.8838344646,0.7330000000 -53-GRAIZER_2018-SA4P0,114.7982199907,0.7330000000 -54-GRAIZER_2018-SA4P0,181.4746070895,0.7330000000 -55-GRAIZER_2018-SA4P0,181.4657792752,0.7330000000 -56-GRAIZER_2018-SA4P0,29.2717039043,0.7330000000 -57-GRAIZER_2018-SA4P0,29.2569503802,0.7330000000 -58-GRAIZER_2018-SA4P0,13.0679787567,0.7330000000 -59-GRAIZER_2018-SA4P0,13.0258069621,0.7330000000 -60-GRAIZER_2018-SA4P0,8.5720616607,0.7330000000 -61-GRAIZER_2018-SA4P0,8.9164706730,0.7330000000 -62-GRAIZER_2018-SA4P0,10.3561384048,0.7330000000 -63-GRAIZER_2018-SA4P0,10.7068104164,0.7330000000 -64-GRAIZER_2018-SA4P0,10.1105211191,0.7330000000 -65-GRAIZER_2018-SA4P0,9.5471458362,0.7330000000 -66-GRAIZER_2018-SA4P0,10.2308314614,0.7330000000 -67-GRAIZER_2018-SA4P0,10.2110237759,0.7330000000 -68-GRAIZER_2018-SA4P0,9.9790806963,0.7330000000 -69-GRAIZER_2018-SA4P0,9.5304121139,0.7330000000 -70-GRAIZER_2018-SA4P0,10.0131182901,0.7330000000 -71-GRAIZER_2018-SA4P0,9.8764301879,0.7330000000 -72-GRAIZER_2018-SA4P0,9.8634715295,0.7330000000 -73-GRAIZER_2018-SA4P0,9.7790545602,0.7330000000 -74-GRAIZER_2018-SA4P0,9.7262160430,0.7330000000 -75-GRAIZER_2018-SA4P0,9.6742751839,0.7330000000 -76-GRAIZER_2018-SA4P0,67.5753440946,0.7330000000 -77-GRAIZER_2018-SA4P0,67.5753440946,0.7330000000 -78-GRAIZER_2018-SA4P0,13.2984915185,0.7330000000 -79-GRAIZER_2018-SA4P0,11.0442687308,0.7330000000 -80-GRAIZER_2018-SA4P0,10.9246788812,0.7330000000 -81-GRAIZER_2018-SA4P0,10.5854521691,0.7330000000 -82-GRAIZER_2018-SA4P0,10.4854631915,0.7330000000 -83-GRAIZER_2018-SA4P0,10.4600190869,0.7330000000 -84-GRAIZER_2018-SA4P0,10.4493587465,0.7330000000 -85-GRAIZER_2018-SA4P0,10.4493587465,0.7330000000 -86-GRAIZER_2018-SA4P0,10.4493587465,0.7330000000 -87-GRAIZER_2018-SA4P0,10.9246788812,0.7330000000 -88-GRAIZER_2018-SA4P0,10.4600190869,0.7330000000 -89-GRAIZER_2018-SA4P0,10.4493587465,0.7330000000 -90-GRAIZER_2018-SA4P0,114.9134635741,0.7330000000 -91-GRAIZER_2018-SA4P0,29.2569503802,0.7330000000 -92-GRAIZER_2018-SA4P0,11.0442687308,0.7330000000 -93-GRAIZER_2018-SA4P0,11.0442687308,0.7330000000 -94-GRAIZER_2018-SA4P0,11.0442687308,0.7330000000 -95-GRAIZER_2018-SA4P0,10.5854521691,0.7330000000 -96-GRAIZER_2018-SA4P0,10.5854521691,0.7330000000 -97-GRAIZER_2018-SA4P0,10.5854521691,0.7330000000 -98-GRAIZER_2018-SA4P0,10.4600190869,0.7330000000 -99-GRAIZER_2018-SA4P0,10.4600190869,0.7330000000 -100-GRAIZER_2018-SA4P0,10.4600190869,0.7330000000 -0-GRAIZER_2018-SA5P0,281.6285318590,0.7460000000 -1-GRAIZER_2018-SA5P0,281.7768629498,0.7460000000 -2-GRAIZER_2018-SA5P0,281.6376929472,0.7460000000 -3-GRAIZER_2018-SA5P0,281.4355830692,0.7460000000 -4-GRAIZER_2018-SA5P0,101.9646177736,0.7460000000 -5-GRAIZER_2018-SA5P0,103.3445195809,0.7460000000 -6-GRAIZER_2018-SA5P0,102.0103751429,0.7460000000 -7-GRAIZER_2018-SA5P0,98.8730632224,0.7460000000 -8-GRAIZER_2018-SA5P0,93.6425151688,0.7460000000 -9-GRAIZER_2018-SA5P0,43.7399714397,0.7460000000 -10-GRAIZER_2018-SA5P0,44.3432340739,0.7460000000 -11-GRAIZER_2018-SA5P0,43.7586804638,0.7460000000 -12-GRAIZER_2018-SA5P0,42.6407973779,0.7460000000 -13-GRAIZER_2018-SA5P0,41.0364859807,0.7460000000 -14-GRAIZER_2018-SA5P0,25.8846637175,0.7460000000 -15-GRAIZER_2018-SA5P0,26.3803317893,0.7460000000 -16-GRAIZER_2018-SA5P0,25.9420485686,0.7460000000 -17-GRAIZER_2018-SA5P0,25.1889024497,0.7460000000 -18-GRAIZER_2018-SA5P0,24.3823493758,0.7460000000 -19-GRAIZER_2018-SA5P0,21.3078368057,0.7460000000 -20-GRAIZER_2018-SA5P0,18.1515691386,0.7460000000 -21-GRAIZER_2018-SA5P0,18.5087236040,0.7460000000 -22-GRAIZER_2018-SA5P0,18.1981711996,0.7460000000 -23-GRAIZER_2018-SA5P0,17.5808757679,0.7460000000 -24-GRAIZER_2018-SA5P0,16.9886498389,0.7460000000 -25-GRAIZER_2018-SA5P0,15.0163298691,0.7460000000 -26-GRAIZER_2018-SA5P0,13.7065976959,0.7460000000 -27-GRAIZER_2018-SA5P0,14.1046264000,0.7460000000 -28-GRAIZER_2018-SA5P0,14.3568094925,0.7460000000 -29-GRAIZER_2018-SA5P0,14.1948750740,0.7460000000 -30-GRAIZER_2018-SA5P0,13.6355547492,0.7460000000 -31-GRAIZER_2018-SA5P0,13.1725765328,0.7460000000 -32-GRAIZER_2018-SA5P0,11.6747939292,0.7460000000 -33-GRAIZER_2018-SA5P0,11.1425738554,0.7460000000 -34-GRAIZER_2018-SA5P0,11.3313613734,0.7460000000 -35-GRAIZER_2018-SA5P0,11.6803135728,0.7460000000 -36-GRAIZER_2018-SA5P0,11.6606701321,0.7460000000 -37-GRAIZER_2018-SA5P0,11.8061944705,0.7460000000 -38-GRAIZER_2018-SA5P0,11.2945055479,0.7460000000 -39-GRAIZER_2018-SA5P0,10.9036645085,0.7460000000 -40-GRAIZER_2018-SA5P0,9.6872125856,0.7460000000 -41-GRAIZER_2018-SA5P0,9.3010551378,0.7460000000 -42-GRAIZER_2018-SA5P0,8.3748854147,0.7460000000 -43-GRAIZER_2018-SA5P0,9.8247007920,0.7460000000 -44-GRAIZER_2018-SA5P0,10.1395740002,0.7460000000 -45-GRAIZER_2018-SA5P0,10.1708106978,0.7460000000 -46-GRAIZER_2018-SA5P0,10.2567023787,0.7460000000 -47-GRAIZER_2018-SA5P0,9.7916527809,0.7460000000 -48-GRAIZER_2018-SA5P0,9.4421672430,0.7460000000 -49-GRAIZER_2018-SA5P0,8.3966823973,0.7460000000 -50-GRAIZER_2018-SA5P0,8.1027549325,0.7460000000 -51-GRAIZER_2018-SA5P0,7.4162604342,0.7460000000 -52-GRAIZER_2018-SA5P0,26.3803317893,0.7460000000 -53-GRAIZER_2018-SA5P0,177.5171707179,0.7460000000 -54-GRAIZER_2018-SA5P0,281.4717624533,0.7460000000 -55-GRAIZER_2018-SA5P0,281.4629435526,0.7460000000 -56-GRAIZER_2018-SA5P0,43.3006784414,0.7460000000 -57-GRAIZER_2018-SA5P0,43.2824218589,0.7460000000 -58-GRAIZER_2018-SA5P0,17.7022437891,0.7460000000 -59-GRAIZER_2018-SA5P0,17.6573960724,0.7460000000 -60-GRAIZER_2018-SA5P0,10.8011036169,0.7460000000 -61-GRAIZER_2018-SA5P0,11.1588639549,0.7460000000 -62-GRAIZER_2018-SA5P0,13.5089343790,0.7460000000 -63-GRAIZER_2018-SA5P0,13.8520163160,0.7460000000 -64-GRAIZER_2018-SA5P0,13.2256245412,0.7460000000 -65-GRAIZER_2018-SA5P0,12.5887549520,0.7460000000 -66-GRAIZER_2018-SA5P0,13.3534220786,0.7460000000 -67-GRAIZER_2018-SA5P0,13.3324896890,0.7460000000 -68-GRAIZER_2018-SA5P0,13.0837447079,0.7460000000 -69-GRAIZER_2018-SA5P0,12.5684110658,0.7460000000 -70-GRAIZER_2018-SA5P0,13.1207599279,0.7460000000 -71-GRAIZER_2018-SA5P0,12.9707042589,0.7460000000 -72-GRAIZER_2018-SA5P0,12.9562653422,0.7460000000 -73-GRAIZER_2018-SA5P0,12.8611464017,0.7460000000 -74-GRAIZER_2018-SA5P0,12.8005908465,0.7460000000 -75-GRAIZER_2018-SA5P0,12.7402292934,0.7460000000 -76-GRAIZER_2018-SA5P0,103.1707103015,0.7460000000 -77-GRAIZER_2018-SA5P0,103.1707103015,0.7460000000 -78-GRAIZER_2018-SA5P0,17.9475149030,0.7460000000 -79-GRAIZER_2018-SA5P0,14.1016563088,0.7460000000 -80-GRAIZER_2018-SA5P0,13.9977931524,0.7460000000 -81-GRAIZER_2018-SA5P0,13.6949308948,0.7460000000 -82-GRAIZER_2018-SA5P0,13.6139048782,0.7460000000 -83-GRAIZER_2018-SA5P0,13.5935115239,0.7460000000 -84-GRAIZER_2018-SA5P0,13.5849801117,0.7460000000 -85-GRAIZER_2018-SA5P0,13.5849801117,0.7460000000 -86-GRAIZER_2018-SA5P0,13.5849801117,0.7460000000 -87-GRAIZER_2018-SA5P0,13.9977931524,0.7460000000 -88-GRAIZER_2018-SA5P0,13.5935115239,0.7460000000 -89-GRAIZER_2018-SA5P0,13.5849801117,0.7460000000 -90-GRAIZER_2018-SA5P0,177.6987100979,0.7460000000 -91-GRAIZER_2018-SA5P0,43.2824218589,0.7460000000 -92-GRAIZER_2018-SA5P0,14.1016563088,0.7460000000 -93-GRAIZER_2018-SA5P0,14.1016563088,0.7460000000 -94-GRAIZER_2018-SA5P0,14.1016563088,0.7460000000 -95-GRAIZER_2018-SA5P0,13.6949308948,0.7460000000 -96-GRAIZER_2018-SA5P0,13.6949308948,0.7460000000 -97-GRAIZER_2018-SA5P0,13.6949308948,0.7460000000 -98-GRAIZER_2018-SA5P0,13.5935115239,0.7460000000 -99-GRAIZER_2018-SA5P0,13.5935115239,0.7460000000 -100-GRAIZER_2018-SA5P0,13.5935115239,0.7460000000 -0-GRAIZER_2018-SA7P5,628.8196922087,0.7867500000 -1-GRAIZER_2018-SA7P5,628.9676222954,0.7867500000 -2-GRAIZER_2018-SA7P5,628.8288188381,0.7867500000 -3-GRAIZER_2018-SA7P5,628.6280993898,0.7867500000 -4-GRAIZER_2018-SA7P5,224.0632988785,0.7867500000 -5-GRAIZER_2018-SA7P5,226.8063266674,0.7867500000 -6-GRAIZER_2018-SA7P5,224.1573483707,0.7867500000 -7-GRAIZER_2018-SA7P5,217.4762707458,0.7867500000 -8-GRAIZER_2018-SA7P5,205.9886931468,0.7867500000 -9-GRAIZER_2018-SA7P5,92.3856437160,0.7867500000 -10-GRAIZER_2018-SA7P5,93.3306674097,0.7867500000 -11-GRAIZER_2018-SA7P5,92.4164945846,0.7867500000 -12-GRAIZER_2018-SA7P5,90.4007252814,0.7867500000 -13-GRAIZER_2018-SA7P5,87.1751464766,0.7867500000 -14-GRAIZER_2018-SA7P5,51.8372879033,0.7867500000 -15-GRAIZER_2018-SA7P5,52.4944729430,0.7867500000 -16-GRAIZER_2018-SA7P5,51.9135856676,0.7867500000 -17-GRAIZER_2018-SA7P5,50.8280495063,0.7867500000 -18-GRAIZER_2018-SA7P5,49.4478360472,0.7867500000 -19-GRAIZER_2018-SA7P5,43.5583838393,0.7867500000 -20-GRAIZER_2018-SA7P5,34.2168748425,0.7867500000 -21-GRAIZER_2018-SA7P5,34.6524933735,0.7867500000 -22-GRAIZER_2018-SA7P5,34.2726671834,0.7867500000 -23-GRAIZER_2018-SA7P5,33.4936703231,0.7867500000 -24-GRAIZER_2018-SA7P5,32.6211001319,0.7867500000 -25-GRAIZER_2018-SA7P5,29.2409572684,0.7867500000 -26-GRAIZER_2018-SA7P5,24.5373127393,0.7867500000 -27-GRAIZER_2018-SA7P5,24.9988684128,0.7867500000 -28-GRAIZER_2018-SA7P5,25.3038563957,0.7867500000 -29-GRAIZER_2018-SA7P5,25.1006445404,0.7867500000 -30-GRAIZER_2018-SA7P5,24.4511394061,0.7867500000 -31-GRAIZER_2018-SA7P5,23.8475402665,0.7867500000 -32-GRAIZER_2018-SA7P5,21.5614643926,0.7867500000 -33-GRAIZER_2018-SA7P5,20.4906245453,0.7867500000 -34-GRAIZER_2018-SA7P5,19.1363416935,0.7867500000 -35-GRAIZER_2018-SA7P5,19.5240392412,0.7867500000 -36-GRAIZER_2018-SA7P5,19.5438798998,0.7867500000 -37-GRAIZER_2018-SA7P5,19.6608781052,0.7867500000 -38-GRAIZER_2018-SA7P5,19.0941024434,0.7867500000 -39-GRAIZER_2018-SA7P5,18.6226897542,0.7867500000 -40-GRAIZER_2018-SA7P5,16.9311122883,0.7867500000 -41-GRAIZER_2018-SA7P5,16.2024576605,0.7867500000 -42-GRAIZER_2018-SA7P5,14.3680970581,0.7867500000 -43-GRAIZER_2018-SA7P5,15.6856197671,0.7867500000 -44-GRAIZER_2018-SA7P5,16.0257897580,0.7867500000 -45-GRAIZER_2018-SA7P5,16.0829299049,0.7867500000 -46-GRAIZER_2018-SA7P5,16.1500869007,0.7867500000 -47-GRAIZER_2018-SA7P5,15.6490606770,0.7867500000 -48-GRAIZER_2018-SA7P5,15.2470462407,0.7867500000 -49-GRAIZER_2018-SA7P5,13.8882383976,0.7867500000 -50-GRAIZER_2018-SA7P5,13.3610554764,0.7867500000 -51-GRAIZER_2018-SA7P5,12.0410492678,0.7867500000 -52-GRAIZER_2018-SA7P5,52.4944729430,0.7867500000 -53-GRAIZER_2018-SA7P5,395.2993154872,0.7867500000 -54-GRAIZER_2018-SA7P5,628.6906519819,0.7867500000 -55-GRAIZER_2018-SA7P5,628.6818487903,0.7867500000 -56-GRAIZER_2018-SA7P5,92.0340871930,0.7867500000 -57-GRAIZER_2018-SA7P5,92.0036639751,0.7867500000 -58-GRAIZER_2018-SA7P5,33.8525040982,0.7867500000 -59-GRAIZER_2018-SA7P5,33.7983699747,0.7867500000 -60-GRAIZER_2018-SA7P5,18.6749280061,0.7867500000 -61-GRAIZER_2018-SA7P5,19.0783539485,0.7867500000 -62-GRAIZER_2018-SA7P5,24.5456679436,0.7867500000 -63-GRAIZER_2018-SA7P5,24.8625016489,0.7867500000 -64-GRAIZER_2018-SA7P5,24.1320340647,0.7867500000 -65-GRAIZER_2018-SA7P5,23.2412446700,0.7867500000 -66-GRAIZER_2018-SA7P5,24.2857138584,0.7867500000 -67-GRAIZER_2018-SA7P5,24.2608933498,0.7867500000 -68-GRAIZER_2018-SA7P5,23.9540708665,0.7867500000 -69-GRAIZER_2018-SA7P5,23.2084345888,0.7867500000 -70-GRAIZER_2018-SA7P5,24.0013776057,0.7867500000 -71-GRAIZER_2018-SA7P5,23.8051230844,0.7867500000 -72-GRAIZER_2018-SA7P5,23.7855688506,0.7867500000 -73-GRAIZER_2018-SA7P5,23.6534702775,0.7867500000 -74-GRAIZER_2018-SA7P5,23.5662526295,0.7867500000 -75-GRAIZER_2018-SA7P5,23.4768011484,0.7867500000 -76-GRAIZER_2018-SA7P5,226.7770043835,0.7867500000 -77-GRAIZER_2018-SA7P5,226.7770043835,0.7867500000 -78-GRAIZER_2018-SA7P5,34.1489933374,0.7867500000 -79-GRAIZER_2018-SA7P5,24.9369683175,0.7867500000 -80-GRAIZER_2018-SA7P5,24.8607482063,0.7867500000 -81-GRAIZER_2018-SA7P5,24.6318098671,0.7867500000 -82-GRAIZER_2018-SA7P5,24.5771125568,0.7867500000 -83-GRAIZER_2018-SA7P5,24.5634940478,0.7867500000 -84-GRAIZER_2018-SA7P5,24.5578048241,0.7867500000 -85-GRAIZER_2018-SA7P5,24.5578048241,0.7867500000 -86-GRAIZER_2018-SA7P5,24.5578048241,0.7867500000 -87-GRAIZER_2018-SA7P5,24.8607482063,0.7867500000 -88-GRAIZER_2018-SA7P5,24.5634940478,0.7867500000 -89-GRAIZER_2018-SA7P5,24.5578048241,0.7867500000 -90-GRAIZER_2018-SA7P5,395.7110292139,0.7867500000 -91-GRAIZER_2018-SA7P5,92.0036639751,0.7867500000 -92-GRAIZER_2018-SA7P5,24.9369683175,0.7867500000 -93-GRAIZER_2018-SA7P5,24.9369683175,0.7867500000 -94-GRAIZER_2018-SA7P5,24.9369683175,0.7867500000 -95-GRAIZER_2018-SA7P5,24.6318098671,0.7867500000 -96-GRAIZER_2018-SA7P5,24.6318098671,0.7867500000 -97-GRAIZER_2018-SA7P5,24.6318098671,0.7867500000 -98-GRAIZER_2018-SA7P5,24.5634940478,0.7867500000 -99-GRAIZER_2018-SA7P5,24.5634940478,0.7867500000 -100-GRAIZER_2018-SA7P5,24.5634940478,0.7867500000 -0-GRAIZER_2018-SA10P0,1114.9100946978,0.7360000000 -1-GRAIZER_2018-SA10P0,1115.0577477630,0.7360000000 -2-GRAIZER_2018-SA10P0,1114.9191975154,0.7360000000 -3-GRAIZER_2018-SA10P0,1114.7194395181,0.7360000000 -4-GRAIZER_2018-SA10P0,395.0389124224,0.7360000000 -5-GRAIZER_2018-SA10P0,399.6907140694,0.7360000000 -6-GRAIZER_2018-SA10P0,395.2005859471,0.7360000000 -7-GRAIZER_2018-SA10P0,383.5570022109,0.7360000000 -8-GRAIZER_2018-SA10P0,363.3070486054,0.7360000000 -9-GRAIZER_2018-SA10P0,160.5524053688,0.7360000000 -10-GRAIZER_2018-SA10P0,161.9764493253,0.7360000000 -11-GRAIZER_2018-SA10P0,160.6002760808,0.7360000000 -12-GRAIZER_2018-SA10P0,157.3256944822,0.7360000000 -13-GRAIZER_2018-SA10P0,151.8266326398,0.7360000000 -14-GRAIZER_2018-SA10P0,88.2403022531,0.7360000000 -15-GRAIZER_2018-SA10P0,89.1242284369,0.7360000000 -16-GRAIZER_2018-SA10P0,88.3431581754,0.7360000000 -17-GRAIZER_2018-SA10P0,86.7906857294,0.7360000000 -18-GRAIZER_2018-SA10P0,84.6041447469,0.7360000000 -19-GRAIZER_2018-SA10P0,74.7600387075,0.7360000000 -20-GRAIZER_2018-SA10P0,56.7864429752,0.7360000000 -21-GRAIZER_2018-SA10P0,57.3324962404,0.7360000000 -22-GRAIZER_2018-SA10P0,56.8551779727,0.7360000000 -23-GRAIZER_2018-SA10P0,55.8482769762,0.7360000000 -24-GRAIZER_2018-SA10P0,54.5801446922,0.7360000000 -25-GRAIZER_2018-SA10P0,49.2160334512,0.7360000000 -26-GRAIZER_2018-SA10P0,39.7897623841,0.7360000000 -27-GRAIZER_2018-SA10P0,40.3412211715,0.7360000000 -28-GRAIZER_2018-SA10P0,40.7207315716,0.7360000000 -29-GRAIZER_2018-SA10P0,40.4592877225,0.7360000000 -30-GRAIZER_2018-SA10P0,39.6821535980,0.7360000000 -31-GRAIZER_2018-SA10P0,38.8791294818,0.7360000000 -32-GRAIZER_2018-SA10P0,35.4771354042,0.7360000000 -33-GRAIZER_2018-SA10P0,33.6535668990,0.7360000000 -34-GRAIZER_2018-SA10P0,30.1706935516,0.7360000000 -35-GRAIZER_2018-SA10P0,30.6134553929,0.7360000000 -36-GRAIZER_2018-SA10P0,30.6890905557,0.7360000000 -37-GRAIZER_2018-SA10P0,30.7658269476,0.7360000000 -38-GRAIZER_2018-SA10P0,30.1207909137,0.7360000000 -39-GRAIZER_2018-SA10P0,29.5345018936,0.7360000000 -40-GRAIZER_2018-SA10P0,27.1675686319,0.7360000000 -41-GRAIZER_2018-SA10P0,25.9620819362,0.7360000000 -42-GRAIZER_2018-SA10P0,22.8708915418,0.7360000000 -43-GRAIZER_2018-SA10P0,24.0246955141,0.7360000000 -44-GRAIZER_2018-SA10P0,24.4008849883,0.7360000000 -45-GRAIZER_2018-SA10P0,24.4945919079,0.7360000000 -46-GRAIZER_2018-SA10P0,24.5353495878,0.7360000000 -47-GRAIZER_2018-SA10P0,23.9831248342,0.7360000000 -48-GRAIZER_2018-SA10P0,23.5059608019,0.7360000000 -49-GRAIZER_2018-SA10P0,21.7014230212,0.7360000000 -50-GRAIZER_2018-SA10P0,20.8529189902,0.7360000000 -51-GRAIZER_2018-SA10P0,18.6695546534,0.7360000000 -52-GRAIZER_2018-SA10P0,89.1242284369,0.7360000000 -53-GRAIZER_2018-SA10P0,700.1981686269,0.7360000000 -54-GRAIZER_2018-SA10P0,1114.8003347723,0.7360000000 -55-GRAIZER_2018-SA10P0,1114.7915423559,0.7360000000 -56-GRAIZER_2018-SA10P0,160.2704297881,0.7360000000 -57-GRAIZER_2018-SA10P0,160.2229694896,0.7360000000 -58-GRAIZER_2018-SA10P0,56.4876939753,0.7360000000 -59-GRAIZER_2018-SA10P0,56.4205503582,0.7360000000 -60-GRAIZER_2018-SA10P0,29.7532270023,0.7360000000 -61-GRAIZER_2018-SA10P0,30.2204491881,0.7360000000 -62-GRAIZER_2018-SA10P0,40.0341658720,0.7360000000 -63-GRAIZER_2018-SA10P0,40.3142388459,0.7360000000 -64-GRAIZER_2018-SA10P0,39.4380248936,0.7360000000 -65-GRAIZER_2018-SA10P0,38.1917340204,0.7360000000 -66-GRAIZER_2018-SA10P0,39.6279480237,0.7360000000 -67-GRAIZER_2018-SA10P0,39.5976828421,0.7360000000 -68-GRAIZER_2018-SA10P0,39.2095356314,0.7360000000 -69-GRAIZER_2018-SA10P0,38.1414737895,0.7360000000 -70-GRAIZER_2018-SA10P0,39.2712529209,0.7360000000 -71-GRAIZER_2018-SA10P0,39.0103106652,0.7360000000 -72-GRAIZER_2018-SA10P0,38.9835941976,0.7360000000 -73-GRAIZER_2018-SA10P0,38.7997198887,0.7360000000 -74-GRAIZER_2018-SA10P0,38.6751738498,0.7360000000 -75-GRAIZER_2018-SA10P0,38.5449964226,0.7360000000 -76-GRAIZER_2018-SA10P0,399.8311109996,0.7360000000 -77-GRAIZER_2018-SA10P0,399.8311109996,0.7360000000 -78-GRAIZER_2018-SA10P0,56.8559362615,0.7360000000 -79-GRAIZER_2018-SA10P0,40.2495911325,0.7360000000 -80-GRAIZER_2018-SA10P0,40.1902195697,0.7360000000 -81-GRAIZER_2018-SA10P0,40.0099234687,0.7360000000 -82-GRAIZER_2018-SA10P0,39.9687282825,0.7360000000 -83-GRAIZER_2018-SA10P0,39.9585093365,0.7360000000 -84-GRAIZER_2018-SA10P0,39.9542421913,0.7360000000 -85-GRAIZER_2018-SA10P0,39.9542421913,0.7360000000 -86-GRAIZER_2018-SA10P0,39.9542421913,0.7360000000 -87-GRAIZER_2018-SA10P0,40.1902195697,0.7360000000 -88-GRAIZER_2018-SA10P0,39.9585093365,0.7360000000 -89-GRAIZER_2018-SA10P0,39.9542421913,0.7360000000 -90-GRAIZER_2018-SA10P0,700.9321134859,0.7360000000 -91-GRAIZER_2018-SA10P0,160.2229694896,0.7360000000 -92-GRAIZER_2018-SA10P0,40.2495911325,0.7360000000 -93-GRAIZER_2018-SA10P0,40.2495911325,0.7360000000 -94-GRAIZER_2018-SA10P0,40.2495911325,0.7360000000 -95-GRAIZER_2018-SA10P0,40.0099234687,0.7360000000 -96-GRAIZER_2018-SA10P0,40.0099234687,0.7360000000 -97-GRAIZER_2018-SA10P0,40.0099234687,0.7360000000 -98-GRAIZER_2018-SA10P0,39.9585093365,0.7360000000 -99-GRAIZER_2018-SA10P0,39.9585093365,0.7360000000 -100-GRAIZER_2018-SA10P0,39.9585093365,0.7360000000 diff --git a/src/test/resources/model/test-model/active-crust/fault/CA/ucerf3/fault-model-3.1/ruptures2.csv b/src/test/resources/model/test-model/active-crust/fault/CA/ucerf3/fault-model-3.1/ruptures2.csv deleted file mode 100644 index bb6e50aac39b47d3d6e9565621b72af6fb66c38f..0000000000000000000000000000000000000000 --- a/src/test/resources/model/test-model/active-crust/fault/CA/ucerf3/fault-model-3.1/ruptures2.csv +++ /dev/null @@ -1,211 +0,0 @@ -m,rate,depth,dip,width,rake,indices -5.849,0.00017160497,2.375,85.0,7.152,180.0,217:218 -6.027,4.3915695e-05,2.375,85.0,7.152,180.0,217:219 -6.117,0.00028040072,2.837,85.0,6.688,180.0,217:220 -6.162,0.00023878636,3.199,85.0,6.325,180.0,217:221 -6.203,0.0013488945,3.504,85.0,6.019,180.0,217:222 -6.283,2.2944464e-05,4.125,84.2,5.557,180.0,217:222-191:192 -6.36,2.8833858e-06,4.259,82.9,5.687,180.0,217:222-191:193 -6.445,4.2597063e-06,4.189,81.9,5.972,180.0,217:222-191:194 -6.517,1.3137070e-05,4.139,81.2,6.173,180.0,217:222-191:195 -6.583,2.8615028e-06,4.099,80.6,6.326,180.0,217:222-191:196 -6.657,9.6483061e-06,3.747,80.1,6.795,180.0,217:222-191:197 -6.72,9.2501478e-07,3.484,79.7,7.147,180.0,217:222-191:198 -6.782,9.7862983e-07,3.185,79.4,7.521,180.0,217:222-191:199 -6.84,6.8639777e-05,2.895,79.1,7.874,180.0,217:222-191:200 -6.973,3.5273405e-07,2.88,84.0,8.681,180.0,217:222-191:200-207-206 -7.023,2.8451673e-07,2.985,85.5,8.822,180.0,217:222-191:200-207:205 -7.057,7.0904264e-07,3.211,86.5,8.754,180.0,217:222-191:200-207:204 -7.063,1.6703380e-06,3.34,86.7,8.654,180.0,217:222-191:200-207:203 -7.098,2.6933873e-06,3.493,87.6,8.646,180.0,217:222-191:200-207:202 -7.139,5.5437129e-05,3.493,88.6,8.804,180.0,217:222-191:200-207:201 -5.849,0.00014320207,2.375,85.0,7.152,180.0,218:219 -5.966,2.8323557e-05,3.014,85.0,6.511,180.0,218:220 -6.023,4.6909951e-06,3.477,85.0,6.046,180.0,218:221 -6.075,0.00021776362,3.847,85.0,5.675,180.0,218:222 -6.175,3.5164806e-06,4.587,83.9,5.136,180.0,218:222-191:192 -6.268,1.9504443e-06,4.649,82.4,5.384,180.0,218:222-191:193 -6.369,2.8141425e-06,4.489,81.3,5.776,180.0,218:222-191:194 -6.452,1.4859438e-06,4.382,80.6,6.038,180.0,218:222-191:195 -6.527,7.8340253e-07,4.302,80.1,6.229,180.0,218:222-191:196 -6.609,8.0284644e-07,3.883,79.6,6.76,180.0,218:222-191:197 -6.679,5.5948390e-07,3.579,79.3,7.147,180.0,218:222-191:198 -6.745,2.5931276e-07,3.246,79.0,7.549,180.0,218:222-191:199 -6.807,1.4121231e-05,2.929,78.7,7.921,180.0,218:222-191:200 -6.947,1.7756696e-07,2.906,83.9,8.757,180.0,218:222-191:200-207-206 -6.999,2.8541431e-07,3.013,85.5,8.897,180.0,218:222-191:200-207:205 -7.034,1.5118974e-07,3.246,86.6,8.82,180.0,218:222-191:200-207:204 -7.041,2.8338159e-07,3.379,86.7,8.715,180.0,218:222-191:200-207:203 -7.077,5.9779201e-07,3.536,87.7,8.703,180.0,218:222-191:200-207:202 -7.12,3.3915426e-05,3.533,88.7,8.862,180.0,218:222-191:200-207:201 -5.757,0.0001070608,3.407,85.0,6.116,180.0,219:220 -5.839,5.5962231e-05,4.041,85.0,5.48,180.0,219:221 -5.907,8.0058904e-05,4.49,85.0,5.029,180.0,219:222 -6.043,4.4379393e-06,5.379,83.6,4.414,180.0,219:222-191:192 -6.158,2.4449174e-06,5.243,81.8,4.922,180.0,219:222-191:193 -6.278,6.2566246e-06,4.907,80.6,5.504,180.0,219:222-191:194 -6.377,4.5162134e-05,4.702,79.9,5.86,180.0,219:222-191:195 -6.463,7.1689241e-07,4.559,79.4,6.105,180.0,219:222-191:196 -6.556,5.5876868e-07,4.049,79.0,6.717,180.0,219:222-191:197 -6.633,4.3142690e-07,3.692,78.7,7.146,180.0,219:222-191:198 -6.705,2.8403196e-07,3.316,78.5,7.581,180.0,219:222-191:199 -6.771,8.6442734e-06,2.968,78.3,7.975,180.0,219:222-191:200 -6.92,1.7505358e-07,2.933,83.9,8.841,180.0,219:222-191:200-207-206 -6.974,1.9276348e-07,3.043,85.6,8.979,180.0,219:222-191:200-207:205 -7.011,1.4936725e-07,3.284,86.6,8.893,180.0,219:222-191:200-207:204 -7.018,2.7442204e-07,3.422,86.8,8.783,180.0,219:222-191:200-207:203 -7.056,6.3200065e-07,3.582,87.8,8.765,180.0,219:222-191:200-207:202 -7.101,1.7465538e-05,3.575,88.8,8.925,180.0,219:222-191:200-207:201 -5.52,5.1006447e-09,5.784,85.0,3.73,180.0,220:221 -5.647,6.5093804e-05,6.131,85.0,3.382,180.0,220:222 -5.854,2.2899912e-06,7.055,82.8,2.887,180.0,220:222-191:192 -6.02,1.9435206e-06,6.255,80.6,4.135,180.0,220:222-191:193 -6.172,3.9479924e-06,5.533,79.5,5.097,180.0,220:222-191:194 -6.287,3.3642294e-05,5.144,79.0,5.614,180.0,220:222-191:195 -6.389,9.6258948e-07,4.896,78.6,5.944,180.0,220:222-191:196 -6.496,6.1821968e-07,4.257,78.3,6.663,180.0,220:222-191:197 -6.582,5.7958775e-07,3.828,78.1,7.145,180.0,220:222-191:198 -6.662,3.4506481e-07,3.399,77.9,7.618,180.0,220:222-191:199 -6.734,3.9784422e-06,3.014,77.8,8.038,180.0,220:222-191:200 -6.891,1.4902648e-07,2.964,83.8,8.935,180.0,220:222-191:200-207-206 -6.948,1.8778219e-07,3.076,85.6,9.069,180.0,220:222-191:200-207:205 -6.987,1.8048607e-07,3.325,86.7,8.972,180.0,220:222-191:200-207:204 -6.994,2.0026641e-07,3.469,86.9,8.856,180.0,220:222-191:200-207:203 -7.034,3.3222819e-07,3.632,87.9,8.832,180.0,220:222-191:200-207:202 -7.08,1.6511291e-05,3.62,89.0,8.991,180.0,220:222-191:200-207:201 -5.347,5.9162117e-09,7.125,85.0,2.384,180.0,221:222 -5.689,3.0566467e-06,8.114,81.6,2.054,180.0,221:222-191:192 -5.909,1.4205254e-06,6.59,79.4,4.046,180.0,221:222-191:193 -6.095,3.3529678e-06,5.618,78.6,5.214,180.0,221:222-191:194 -6.226,7.2536644e-05,5.155,78.1,5.77,180.0,221:222-191:195 -6.338,1.5463824e-06,4.878,77.9,6.102,180.0,221:222-191:196 -6.455,1.0478951e-06,4.189,77.7,6.848,180.0,221:222-191:197 -6.548,5.9307674e-07,3.743,77.6,7.331,180.0,221:222-191:198 -6.633,3.7614175e-07,3.302,77.5,7.802,180.0,221:222-191:199 -6.709,9.6563190e-06,2.912,77.4,8.216,180.0,221:222-191:200 -6.873,2.7383310e-07,2.889,83.8,9.095,180.0,221:222-191:200-207-206 -6.93,5.6879460e-07,3.013,85.6,9.215,180.0,221:222-191:200-207:205 -6.971,2.8319308e-07,3.274,86.7,9.104,180.0,221:222-191:200-207:204 -6.978,2.4207017e-07,3.423,87.0,8.982,180.0,221:222-191:200-207:203 -7.019,3.7681384e-07,3.594,88.0,8.947,180.0,221:222-191:200-207:202 -7.067,1.6796930e-05,3.585,89.1,9.101,180.0,221:222-191:200-207:201 -5.405,2.0030522e-07,9.425,77.0,1.617,180.0,191:192 -5.752,2.1847724e-06,6.359,77.0,4.764,180.0,191:193 -5.993,2.8641744e-06,5.253,77.0,5.898,180.0,191:194 -6.151,2.7550233e-05,4.824,77.0,6.338,180.0,191:195 -6.274,4.4407738e-06,4.589,77.0,6.579,180.0,191:196 -6.403,1.3065114e-05,3.901,77.0,7.286,180.0,191:197 -6.505,1.2754772e-06,3.473,77.0,7.725,180.0,191:198 -6.597,6.3964184e-07,3.049,77.0,8.16,180.0,191:199 -6.678,3.1419296e-05,2.675,77.0,8.544,180.0,191:200 -6.849,2.4372700e-06,2.721,83.7,9.362,180.0,191:200-207-206 -6.909,2.1341257e-06,2.868,85.6,9.455,180.0,191:200-207:205 -6.951,1.5072455e-06,3.15,86.8,9.321,180.0,191:200-207:204 -6.958,7.5794236e-07,3.306,87.0,9.191,180.0,191:200-207:203 -7.001,5.1297605e-07,3.491,88.1,9.139,180.0,191:200-207:202 -7.05,8.7038450e-06,3.492,89.2,9.279,180.0,191:200-207:201 -5.65,5.9315221e-07,5.87,77.0,5.265,180.0,192:193 -5.934,1.5903875e-06,4.916,77.0,6.245,180.0,192:194 -6.107,0.00011023913,4.574,77.0,6.595,180.0,192:195 -6.24,0.0002418604,4.391,77.0,6.783,180.0,192:196 -6.375,0.00015216308,3.731,77.0,7.461,180.0,192:197 -6.482,0.00015720218,3.327,77.0,7.875,180.0,192:198 -6.578,2.4013694e-06,2.92,77.0,8.293,180.0,192:199 -6.661,9.5231589e-05,2.559,77.0,8.663,180.0,192:200 -6.837,6.8799224e-06,2.64,83.8,9.455,180.0,192:200-207-206 -6.898,5.1069707e-06,2.798,85.7,9.538,180.0,192:200-207:205 -6.94,4.7050763e-06,3.088,86.9,9.396,180.0,192:200-207:204 -6.948,2.8830281e-06,3.247,87.1,9.264,180.0,192:200-207:203 -6.992,1.6811660e-06,3.438,88.2,9.205,180.0,192:200-207:202 -7.041,2.5825539e-05,3.444,89.3,9.34,180.0,192:200-207:201 -5.853,2.1395583e-06,4.324,77.0,6.852,180.0,193:194 -6.049,5.4112012e-05,4.158,77.0,7.022,180.0,193:195 -6.194,9.2079348e-06,4.071,77.0,7.111,180.0,193:196 -6.34,2.6176404e-06,3.459,77.0,7.74,180.0,193:197 -6.453,1.8284728e-05,3.093,77.0,8.115,180.0,193:198 -6.553,9.4040296e-07,2.715,77.0,8.503,180.0,193:199 -6.641,7.0114424e-06,2.376,77.0,8.851,180.0,193:200 -6.822,2.5560874e-06,2.514,83.9,9.602,180.0,193:200-207-206 -6.884,1.3450656e-06,2.69,85.9,9.669,180.0,193:200-207:205 -6.928,2.1041868e-06,2.993,87.0,9.513,180.0,193:200-207:204 -6.935,1.0121152e-06,3.156,87.3,9.377,180.0,193:200-207:203 -6.98,4.0020667e-07,3.357,88.3,9.308,180.0,193:200-207:202 -7.031,1.9618317e-05,3.371,89.4,9.435,180.0,193:200-207:201 -5.908,9.2491047e-06,3.85,77.0,7.338,180.0,194:195 -6.09,3.6844152e-06,3.842,77.0,7.347,180.0,194:196 -6.258,2.1839159e-06,3.177,77.0,8.029,180.0,194:197 -6.388,2.6904235e-06,2.821,77.0,8.394,180.0,194:198 -6.501,9.1812964e-07,2.451,77.0,8.774,180.0,194:199 -6.597,8.7262708e-06,2.123,77.0,9.11,180.0,194:200 -6.792,1.1616254e-06,2.352,84.4,9.829,180.0,194:200-207-206 -6.857,7.8597636e-07,2.559,86.4,9.871,180.0,194:200-207:205 -6.902,1.4236751e-06,2.891,87.6,9.689,180.0,194:200-207:204 -6.911,7.2252215e-07,3.064,87.8,9.542,180.0,194:200-207:203 -6.957,2.7829062e-07,3.283,88.9,9.455,180.0,194:200-207:202 -7.01,1.8135511e-05,3.304,90.0,9.573,180.0,194:200-207:201 -5.912,2.2556028e-06,3.837,77.0,7.351,180.0,195:196 -6.134,2.7844606e-06,2.973,77.0,8.238,180.0,195:197 -6.292,1.7445519e-06,2.599,77.0,8.622,180.0,195:198 -6.424,1.1064105e-06,2.219,77.0,9.012,180.0,195:199 -6.535,1.4848135e-05,1.893,77.0,9.347,180.0,195:200 -6.751,7.0524577e-07,2.222,85.1,10.045,180.0,195:200-207-206 -6.821,8.1365384e-07,2.462,87.1,10.061,180.0,195:200-207:205 -6.869,3.6757233e-07,2.826,88.3,9.849,180.0,195:200-207:204 -6.878,3.6541122e-07,3.012,88.5,9.689,180.0,195:200-207:203 -6.927,3.1352933e-07,3.249,89.6,9.583,180.0,195:200-207:202 -6.983,1.2229774e-05,3.275,89.3,9.695,180.0,195:200-207:201 -5.966,3.1754812e-06,2.594,77.0,8.627,180.0,196:197 -6.168,4.8193961e-06,2.253,77.0,8.977,180.0,196:198 -6.334,1.3465125e-06,1.894,77.0,9.346,180.0,196:199 -6.464,9.5386062e-06,1.591,77.0,9.657,180.0,196:200 -6.707,3.9421828e-07,2.067,85.8,10.302,180.0,196:200-207-206 -6.783,3.6564268e-07,2.35,87.9,10.282,180.0,196:200-207:205 -6.834,6.2888964e-07,2.751,89.1,10.032,180.0,196:200-207:204 -6.843,5.0836128e-07,2.952,89.4,9.857,180.0,196:200-207:203 -6.895,3.3001256e-07,3.21,89.6,9.728,180.0,196:200-207:202 -6.954,1.0672871e-05,3.242,88.5,9.83,180.0,196:200-207:201 -6.028,2.8123195e-06,1.65,77.0,9.596,180.0,197:198 -6.229,1.9586807e-06,1.412,77.0,9.841,180.0,197:199 -6.384,6.2223133e-06,1.182,77.0,10.076,180.0,197:200 -6.658,3.7000006e-07,1.881,86.8,10.612,180.0,197:200-207-206 -6.742,6.7631569e-07,2.219,88.9,10.541,180.0,197:200-207:205 -6.796,4.6984157e-07,2.666,89.9,10.242,180.0,197:200-207:204 -6.806,4.7532873e-07,2.885,89.7,10.049,180.0,197:200-207:203 -6.861,5.8229586e-07,3.168,88.7,9.891,180.0,197:200-207:202 -6.923,9.0245112e-06,3.206,87.7,9.98,180.0,197:200-207:201 -6.052,2.2454863e-06,1.297,77.0,9.959,180.0,198:199 -6.254,4.3373835e-05,1.035,77.0,10.227,180.0,198:200 -6.587,5.9383514e-07,1.918,88.3,10.774,180.0,198:200-207-206 -6.682,5.2869073e-07,2.293,89.6,10.664,180.0,198:200-207:205 -6.743,4.9269931e-07,2.783,88.4,10.316,180.0,198:200-207:204 -6.754,3.8447984e-07,3.022,88.2,10.1,180.0,198:200-207:203 -6.814,4.4170863e-07,3.318,87.3,9.92,180.0,198:200-207:202 -6.88,1.2148322e-05,3.341,86.3,10.014,180.0,198:200-207:201 -6.084,0.0003650048,0.754,77.0,10.515,180.0,199:200 -6.503,1.2667279e-06,1.969,89.6,10.998,180.0,199:200-207-206 -6.613,5.5948227e-07,2.39,87.6,10.824,180.0,199:200-207:205 -6.683,4.9672853e-07,2.929,86.5,10.409,180.0,199:200-207:204 -6.696,4.2233704e-07,3.195,86.3,10.163,180.0,199:200-207:203 -6.762,4.7486357e-07,3.501,85.5,9.956,180.0,199:200-207:202 -6.834,1.2935347e-05,3.501,84.8,10.053,180.0,199:200-207:201 -6.252,2.2427568e-05,2.832,80.0,11.34,180.0,207-206 -6.414,4.0370624e-06,3.191,80.0,10.976,180.0,207:205 -6.515,6.1569206e-07,3.79,80.0,10.368,180.0,207:204 -6.535,6.9238451e-07,4.123,80.0,10.029,180.0,207:203 -6.624,6.8890355e-07,4.37,80.0,9.779,180.0,207:202 -6.717,9.9194511e-06,4.219,80.0,9.932,180.0,207:201 -6.202,3.0704655e-06,3.739,80.0,10.42,180.0,206-205 -6.339,1.2961138e-06,4.438,80.0,9.71,180.0,206:204 -6.365,2.4159043e-06,4.868,80.0,9.273,180.0,206:203 -6.485,2.6375708e-06,5.026,80.0,9.112,180.0,206:202 -6.604,0.00042926989,4.697,80.0,9.446,180.0,206:201 -6.134,1.2987300e-05,4.994,80.0,9.145,180.0,205-204 -6.173,2.3943444e-05,5.611,80.0,8.519,180.0,205:203 -6.332,4.5299787e-06,5.604,80.0,8.526,180.0,205:202 -6.485,2.4583342e-05,5.026,80.0,9.112,180.0,205:201 -5.854,4.6937456e-07,7.354,80.0,6.748,180.0,204-203 -6.137,7.9446712e-06,6.516,80.0,7.6,180.0,204:202 -6.341,1.8785499e-05,5.394,80.0,8.739,180.0,204:201 -5.893,7.0497025e-07,6.681,80.0,7.432,180.0,203-202 -6.203,3.3921364e-05,5.054,80.0,9.084,180.0,203:201 -6.167,3.9730969e-05,4.429,80.0,9.719,180.0,202-201 diff --git a/src/test/resources/model/test-model/active-crust/fault/CA/ucerf3/fault-model-3.1/sections2.geojson b/src/test/resources/model/test-model/active-crust/fault/CA/ucerf3/fault-model-3.1/sections2.geojson deleted file mode 100644 index 52885776ab97afde455539c63b85ff3eefb9d1b1..0000000000000000000000000000000000000000 --- a/src/test/resources/model/test-model/active-crust/fault/CA/ucerf3/fault-model-3.1/sections2.geojson +++ /dev/null @@ -1,522 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "id": 310191, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.51742, 37.05689], - [-121.54156, 37.09971] - ] - }, - "properties": { - "name": "Calaveras (center) (0)", - "state": "CA", - "index": 191, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.9 - } - }, - { - "type": "Feature", - "id": 310192, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.54156, 37.09971], - [-121.55998, 37.13236], - [-121.56911, 37.14082] - ] - }, - "properties": { - "name": "Calaveras (center) (1)", - "state": "CA", - "index": 192, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.8312 - } - }, - { - "type": "Feature", - "id": 310193, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.56911, 37.14082], - [-121.60502, 37.17406], - [-121.60717, 37.17663] - ] - }, - "properties": { - "name": "Calaveras (center) (2)", - "state": "CA", - "index": 193, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.4434 - } - }, - { - "type": "Feature", - "id": 310194, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.60717, 37.17663], - [-121.63984, 37.21572] - ] - }, - "properties": { - "name": "Calaveras (center) (3)", - "state": "CA", - "index": 194, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.35 - } - }, - { - "type": "Feature", - "id": 310195, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.63984, 37.21572], - [-121.67024, 37.25205], - [-121.67125, 37.25526] - ] - }, - "properties": { - "name": "Calaveras (center) (4)", - "state": "CA", - "index": 195, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.35 - } - }, - { - "type": "Feature", - "id": 310196, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.67125, 37.25526], - [-121.68551, 37.30027], - [-121.68592, 37.3007] - ] - }, - "properties": { - "name": "Calaveras (center) (5)", - "state": "CA", - "index": 196, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.3477 - } - }, - { - "type": "Feature", - "id": 310197, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.68592, 37.3007], - [-121.7216, 37.33811] - ] - }, - "properties": { - "name": "Calaveras (center) (6)", - "state": "CA", - "index": 197, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.15 - } - }, - { - "type": "Feature", - "id": 310198, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.7216, 37.33811], - [-121.75732, 37.37551] - ] - }, - "properties": { - "name": "Calaveras (center) (7)", - "state": "CA", - "index": 198, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.15 - } - }, - { - "type": "Feature", - "id": 310199, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.75732, 37.37551], - [-121.77087, 37.3897], - [-121.78828, 37.41535] - ] - }, - "properties": { - "name": "Calaveras (center) (8)", - "state": "CA", - "index": 199, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.0879 - } - }, - { - "type": "Feature", - "id": 310200, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.78828, 37.41535], - [-121.81635, 37.45668] - ] - }, - "properties": { - "name": "Calaveras (center) (9)", - "state": "CA", - "index": 200, - "parent-id": 922, - "upper-depth": 0.0, - "lower-depth": 11.0, - "dip": 77.0, - "dip-direction": 59.332, - "aseismicity": 0.05 - } - }, - { - "type": "Feature", - "id": 310201, - "geometry": { - "type": "LineString", - "coordinates": [ - [-122.04275, 37.84409], - [-121.99676, 37.79451] - ] - }, - "properties": { - "name": "Calaveras (north) (0)", - "state": "CA", - "index": 201, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.25 - } - }, - { - "type": "Feature", - "id": 310202, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.99676, 37.79451], - [-121.96061, 37.75548], - [-121.95515, 37.74312] - ] - }, - "properties": { - "name": "Calaveras (north) (1)", - "state": "CA", - "index": 202, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.3991 - } - }, - { - "type": "Feature", - "id": 310203, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.95515, 37.74312], - [-121.93287, 37.69265], - [-121.92858, 37.68539] - ] - }, - "properties": { - "name": "Calaveras (north) (2)", - "state": "CA", - "index": 203, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.8848 - } - }, - { - "type": "Feature", - "id": 310204, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.92858, 37.68539], - [-121.89578, 37.62968] - ] - }, - "properties": { - "name": "Calaveras (north) (3)", - "state": "CA", - "index": 204, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.45 - } - }, - { - "type": "Feature", - "id": 310205, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.89578, 37.62968], - [-121.89005, 37.61995], - [-121.86624, 37.57286] - ] - }, - "properties": { - "name": "Calaveras (north) (4)", - "state": "CA", - "index": 205, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.2849 - } - }, - { - "type": "Feature", - "id": 310206, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.86624, 37.57286], - [-121.83743, 37.51579] - ] - }, - "properties": { - "name": "Calaveras (north) (5)", - "state": "CA", - "index": 206, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.25 - } - }, - { - "type": "Feature", - "id": 310207, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.83743, 37.51579], - [-121.83463, 37.51025], - [-121.81635, 37.45669] - ] - }, - "properties": { - "name": "Calaveras (north) (6)", - "state": "CA", - "index": 207, - "parent-id": 923, - "upper-depth": 0.0, - "lower-depth": 14.0, - "dip": 80.0, - "dip-direction": 245.101, - "aseismicity": 0.1597 - } - }, - { - "type": "Feature", - "id": 310217, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.39613, 36.83948], - [-121.41374, 36.87652] - ] - }, - "properties": { - "name": "Calaveras (south) (0)", - "state": "CA", - "index": 217, - "parent-id": 921, - "upper-depth": 0.0, - "lower-depth": 9.5, - "dip": 85.0, - "dip-direction": 65.928, - "aseismicity": 0.25 - } - }, - { - "type": "Feature", - "id": 310218, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.41374, 36.87652], - [-121.42202, 36.89392], - [-121.43156, 36.91349] - ] - }, - "properties": { - "name": "Calaveras (south) (1)", - "state": "CA", - "index": 218, - "parent-id": 921, - "upper-depth": 0.0, - "lower-depth": 9.5, - "dip": 85.0, - "dip-direction": 65.928, - "aseismicity": 0.25 - } - }, - { - "type": "Feature", - "id": 310219, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.43156, 36.91349], - [-121.44956, 36.9504] - ] - }, - "properties": { - "name": "Calaveras (south) (2)", - "state": "CA", - "index": 219, - "parent-id": 921, - "upper-depth": 0.0, - "lower-depth": 9.5, - "dip": 85.0, - "dip-direction": 65.928, - "aseismicity": 0.25 - } - }, - { - "type": "Feature", - "id": 310220, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.44956, 36.9504], - [-121.45737, 36.96641], - [-121.47061, 36.9862] - ] - }, - "properties": { - "name": "Calaveras (south) (3)", - "state": "CA", - "index": 220, - "parent-id": 921, - "upper-depth": 0.0, - "lower-depth": 9.5, - "dip": 85.0, - "dip-direction": 65.928, - "aseismicity": 0.5333 - } - }, - { - "type": "Feature", - "id": 310221, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.47061, 36.9862], - [-121.494, 37.02115] - ] - }, - "properties": { - "name": "Calaveras (south) (4)", - "state": "CA", - "index": 221, - "parent-id": 921, - "upper-depth": 0.0, - "lower-depth": 9.5, - "dip": 85.0, - "dip-direction": 65.928, - "aseismicity": 0.75 - } - }, - { - "type": "Feature", - "id": 310222, - "geometry": { - "type": "LineString", - "coordinates": [ - [-121.494, 37.02115], - [-121.51742, 37.05609] - ] - }, - "properties": { - "name": "Calaveras (south) (5)", - "state": "CA", - "index": 222, - "parent-id": 921, - "upper-depth": 0.0, - "lower-depth": 9.5, - "dip": 85.0, - "dip-direction": 65.928, - "aseismicity": 0.75 - } - } - ] -} diff --git a/src/test/resources/model/test-model/results/SA1P0/curves-truncated.csv b/src/test/resources/model/test-model/results/SA1P0/curves-truncated.csv index df526e8aaf70edd310ea2bdb47284d3dd4b4f52d..d4972059020212bac0bae3a59a9f32ececec380d 100644 --- a/src/test/resources/model/test-model/results/SA1P0/curves-truncated.csv +++ b/src/test/resources/model/test-model/results/SA1P0/curves-truncated.csv @@ -2,5 +2,5 @@ name,lon,lat,0.0025,0.0045,0.0075,0.0113,0.0169,0.0253,0.038,0.057,0.0854,0.128, Hilo HI,-155.06,19.7,2.82381690e-02,2.82371786e-02,2.82237852e-02,2.81542868e-02,2.78701773e-02,2.69676049e-02,2.47605359e-02,2.07284995e-02,1.51910059e-02,9.42421743e-03,4.84037886e-03,2.02986783e-03,6.79798464e-04,1.71940694e-04,3.01207332e-05,,,,, Salt Lake City UT,-111.9,40.75,8.02585413e-03,7.93123425e-03,7.64387128e-03,7.15851576e-03,6.42561694e-03,5.50708579e-03,4.53720466e-03,3.64900257e-03,2.88090694e-03,2.20227672e-03,1.57831878e-03,1.01637617e-03,5.62271425e-04,2.56315000e-04,9.36692959e-05,,,,, San Jose CA,-121.9,37.35,3.71852425e-01,2.48748489e-01,1.58651219e-01,1.03530436e-01,6.43562972e-02,3.77647438e-02,2.08071478e-02,1.08138760e-02,5.28231727e-03,2.38996689e-03,9.76480049e-04,3.49012736e-04,1.04283956e-04,2.40948511e-05,,,,,, -Seattle WA,-122.3,47.6,1.23613336e-01,9.05063883e-02,6.41726720e-02,4.65149570e-02,3.27132976e-02,2.22634988e-02,1.46523873e-02,9.32702575e-03,5.65709653e-03,3.18317212e-03,1.61555302e-03,7.25570097e-04,2.85174788e-04,9.64128453e-05,,,,,, +Seattle WA,-122.3,47.6,1.40591613e-01,1.08950621e-01,8.12444174e-02,6.11921705e-02,4.45557364e-02,3.13126883e-02,2.12780602e-02,1.40658332e-02,8.99951489e-03,5.47362275e-03,3.07850325e-03,1.55453451e-03,6.87484758e-04,2.60837441e-04,8.41139157e-05,,,,, Memphis TN,-90.05,35.15,2.27044433e-03,2.26798438e-03,2.25923522e-03,2.24105750e-03,2.20456603e-03,2.13497784e-03,2.00483811e-03,1.78008977e-03,1.44880358e-03,1.05170593e-03,6.68479458e-04,3.68005934e-04,1.73950945e-04,6.99234203e-05,,,,,, diff --git a/src/test/resources/model/test-model/results/SA1P0/curves.csv b/src/test/resources/model/test-model/results/SA1P0/curves.csv index e16cc5666a2a0bd6669eff4fb1bed65abed98631..f37ae50f9e053ec2790f0d5cbd92c6a94e088c7a 100644 --- a/src/test/resources/model/test-model/results/SA1P0/curves.csv +++ b/src/test/resources/model/test-model/results/SA1P0/curves.csv @@ -2,5 +2,5 @@ name,lon,lat,0.0025,0.0045,0.0075,0.0113,0.0169,0.0253,0.038,0.057,0.0854,0.128, Hilo HI,-155.06,19.7,2.82381690e-02,2.82371786e-02,2.82237852e-02,2.81542868e-02,2.78701773e-02,2.69676049e-02,2.47605359e-02,2.07284995e-02,1.51910059e-02,9.42421743e-03,4.84037886e-03,2.02986783e-03,6.79798464e-04,1.71940694e-04,3.01207332e-05,2.79833961e-06,5.66396779e-08,0.0,0.0,0.0 Salt Lake City UT,-111.9,40.75,8.02585413e-03,7.93123425e-03,7.64387128e-03,7.15851576e-03,6.42561694e-03,5.50708579e-03,4.53720466e-03,3.64900257e-03,2.88090694e-03,2.20227672e-03,1.57831878e-03,1.01637617e-03,5.62271425e-04,2.56315000e-04,9.36692959e-05,2.59219939e-05,4.79979142e-06,4.07501349e-07,5.88995429e-09,0.0 San Jose CA,-121.9,37.35,3.71852425e-01,2.48748489e-01,1.58651219e-01,1.03530436e-01,6.43562972e-02,3.77647438e-02,2.08071478e-02,1.08138760e-02,5.28231727e-03,2.38996689e-03,9.76480049e-04,3.49012736e-04,1.04283956e-04,2.40948511e-05,3.90527252e-06,3.37522013e-07,1.30837346e-08,4.30843171e-10,1.46021113e-12,0.0 -Seattle WA,-122.3,47.6,1.23613336e-01,9.05063883e-02,6.41726720e-02,4.65149570e-02,3.27132976e-02,2.22634988e-02,1.46523873e-02,9.32702575e-03,5.65709653e-03,3.18317212e-03,1.61555302e-03,7.25570097e-04,2.85174788e-04,9.64128453e-05,2.75782350e-05,6.63832945e-06,1.22286797e-06,1.23542658e-07,2.94158114e-09,5.74207754e-13 +Seattle WA,-122.3,47.6,1.40591613e-01,1.08950621e-01,8.12444174e-02,6.11921705e-02,4.45557364e-02,3.13126883e-02,2.12780602e-02,1.40658332e-02,8.99951489e-03,5.47362275e-03,3.07850325e-03,1.55453451e-03,6.87484758e-04,2.60837441e-04,8.41139157e-05,2.21053125e-05,4.82767071e-06,8.03167078e-07,6.68029269e-08,6.61710822e-10 Memphis TN,-90.05,35.15,2.27044433e-03,2.26798438e-03,2.25923522e-03,2.24105750e-03,2.20456603e-03,2.13497784e-03,2.00483811e-03,1.78008977e-03,1.44880358e-03,1.05170593e-03,6.68479458e-04,3.68005934e-04,1.73950945e-04,6.99234203e-05,2.40180086e-05,7.03378545e-06,1.74984579e-06,3.79010267e-07,6.80203379e-08,8.67908336e-09 diff --git a/src/test/resources/model/test-model/results/SA5P0/curves-truncated.csv b/src/test/resources/model/test-model/results/SA5P0/curves-truncated.csv index 801261279cc7cb3ae3ea88ed4012576cc28c56b7..cb54f321b42e0ed37bd5adb9ee313eae7ada5a16 100644 --- a/src/test/resources/model/test-model/results/SA5P0/curves-truncated.csv +++ b/src/test/resources/model/test-model/results/SA5P0/curves-truncated.csv @@ -2,5 +2,5 @@ name,lon,lat,0.0025,0.0045,0.0075,0.0113,0.0169,0.0253,0.038,0.057,0.0854,0.128, Hilo HI,-155.06,19.7,2.77259896e-02,2.57842368e-02,2.16223103e-02,1.65214519e-02,1.09322441e-02,6.05432162e-03,2.72074513e-03,9.73942539e-04,2.67058984e-04,5.19360804e-05,,,,,,,,,, Salt Lake City UT,-111.9,40.75,6.31012297e-03,4.98193945e-03,3.82023095e-03,2.96345101e-03,2.18533650e-03,1.47407976e-03,8.71400413e-04,4.37580590e-04,1.81114015e-04,5.95902778e-05,,,,,,,,,, San Jose CA,-121.9,37.35,2.09944202e-02,9.42044567e-03,4.56394761e-03,2.52463174e-03,1.37209165e-03,6.93928531e-04,3.07214537e-04,1.14003037e-04,3.36195322e-05,,,,,,,,,,, -Seattle WA,-122.3,47.6,1.86908661e-02,1.12123853e-02,6.94166345e-03,4.60137417e-03,2.97549660e-03,1.83110110e-03,1.04302639e-03,5.35799837e-04,2.39002006e-04,8.80862509e-05,,,,,,,,,, +Seattle WA,-122.3,47.6,2.75539751e-02,1.71639866e-02,1.09488537e-02,7.44615690e-03,4.98270050e-03,3.23038069e-03,1.99184609e-03,1.14691816e-03,5.98153123e-04,2.71478917e-04,1.02371345e-04,3.07066693e-05,,,,,,,, Memphis TN,-90.05,35.15,2.18573657e-03,2.06587577e-03,1.85746177e-03,1.58802130e-03,1.24973965e-03,8.88947210e-04,5.60041599e-04,3.07707417e-04,1.45402740e-04,5.86029258e-05,,,,,,,,,, diff --git a/src/test/resources/model/test-model/results/SA5P0/curves.csv b/src/test/resources/model/test-model/results/SA5P0/curves.csv index 4b524526e5ec94686fb8dee406b93c56d6a98307..129869353c4b796dd45e8ddfaeb527eaa55f2e83 100644 --- a/src/test/resources/model/test-model/results/SA5P0/curves.csv +++ b/src/test/resources/model/test-model/results/SA5P0/curves.csv @@ -2,5 +2,5 @@ name,lon,lat,0.0025,0.0045,0.0075,0.0113,0.0169,0.0253,0.038,0.057,0.0854,0.128, Hilo HI,-155.06,19.7,2.77259896e-02,2.57842368e-02,2.16223103e-02,1.65214519e-02,1.09322441e-02,6.05432162e-03,2.72074513e-03,9.73942539e-04,2.67058984e-04,5.19360804e-05,5.98511410e-06,2.67799513e-07,1.10833595e-09,0.0,0.0,0.0,0.0,0.0,0.0,0.0 Salt Lake City UT,-111.9,40.75,6.31012297e-03,4.98193945e-03,3.82023095e-03,2.96345101e-03,2.18533650e-03,1.47407976e-03,8.71400413e-04,4.37580590e-04,1.81114015e-04,5.95902778e-05,1.46696585e-05,2.35353431e-06,2.02179821e-07,3.32178149e-09,0.0,0.0,0.0,0.0,0.0,0.0 San Jose CA,-121.9,37.35,2.09944202e-02,9.42044567e-03,4.56394761e-03,2.52463174e-03,1.37209165e-03,6.93928531e-04,3.07214537e-04,1.14003037e-04,3.36195322e-05,7.03439516e-06,6.69339326e-07,2.70954964e-08,1.05342353e-09,2.77148913e-11,2.42923054e-13,0.0,0.0,0.0,0.0,0.0 -Seattle WA,-122.3,47.6,1.86908661e-02,1.12123853e-02,6.94166345e-03,4.60137417e-03,2.97549660e-03,1.83110110e-03,1.04302639e-03,5.35799837e-04,2.39002006e-04,8.80862509e-05,2.56237203e-05,5.33512155e-06,4.14216851e-07,4.96887268e-09,2.33556153e-11,1.91703421e-14,0.0,0.0,0.0,0.0 +Seattle WA,-122.3,47.6,2.75539751e-02,1.71639866e-02,1.09488537e-02,7.44615690e-03,4.98270050e-03,3.23038069e-03,1.99184609e-03,1.14691816e-03,5.98153123e-04,2.71478917e-04,1.02371345e-04,3.07066693e-05,6.76006864e-06,6.31167440e-07,1.90548125e-08,3.93313932e-10,9.14563624e-12,0.0,0.0,0.0 Memphis TN,-90.05,35.15,2.18573657e-03,2.06587577e-03,1.85746177e-03,1.58802130e-03,1.24973965e-03,8.88947210e-04,5.60041599e-04,3.07707417e-04,1.45402740e-04,5.86029258e-05,1.99563706e-05,5.69554640e-06,1.35477074e-06,2.56628557e-07,3.60474541e-08,2.91340530e-09,4.54502246e-11,0.0,0.0,0.0 diff --git a/src/test/resources/model/test-model/site-data/basin/puget-lowland.csv b/src/test/resources/model/test-model/site-data/basin/puget-lowland.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a802d78d20df87b5bc6940d04f687e4b64a993d --- /dev/null +++ b/src/test/resources/model/test-model/site-data/basin/puget-lowland.csv @@ -0,0 +1,10 @@ +lon,lat,z1p0,z2p5 +-122.31,47.59,0.889,6.496 +-122.31,47.60,0.903,6.636 +-122.31,47.61,0.913,6.733 +-122.30,47.59,0.889,6.494 +-122.30,47.60,0.911,6.709 +-122.30,47.61,0.913,6.731 +-122.29,47.59,0.888,6.493 +-122.29,47.60,0.911,6.708 +-122.29,47.61,0.913,6.728 diff --git a/src/test/resources/model/test-model/site-data/basin/puget-lowland.geojson b/src/test/resources/model/test-model/site-data/basin/puget-lowland.geojson new file mode 100644 index 0000000000000000000000000000000000000000..a884750d7495122c5e4de11cb86b848536884ece --- /dev/null +++ b/src/test/resources/model/test-model/site-data/basin/puget-lowland.geojson @@ -0,0 +1,19 @@ +{ + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [[ + [ -122.31, 47.59 ], + [ -122.29, 47.59 ], + [ -122.29, 47.61 ], + [ -122.31, 47.61 ], + [ -122.31, 47.59 ] + ]] + }, + "properties": { + "name": "Puget Lowland", + "id": "puget-lowland", + "model": "Seattle", + "spacing": 0.01 + } +} diff --git a/src/test/resources/model/test-model/~site-data/basin/basins.geojson b/src/test/resources/model/test-model/~site-data/basin/basins.geojson deleted file mode 100644 index d0593097509d7a3ea3c7243b9adf7f1f247c9a29..0000000000000000000000000000000000000000 --- a/src/test/resources/model/test-model/~site-data/basin/basins.geojson +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [[ - [ -123.50, 48.20 ], - [ -123.50, 48.00 ], - [ -123.30, 47.95 ], - [ -123.05, 47.95 ], - [ -122.95, 47.85 ], - [ -122.95, 47.70 ], - [ -123.25, 47.40 ], - [ -123.25, 47.20 ], - [ -122.90, 46.95 ], - [ -122.60, 46.95 ], - [ -122.40, 47.05 ], - [ -122.30, 47.05 ], - [ -122.20, 47.00 ], - [ -121.90, 47.00 ], - [ -121.75, 47.20 ], - [ -121.75, 47.40 ], - [ -122.05, 48.20 ], - [ -122.60, 48.40 ], - [ -123.50, 48.20 ] - ]] - }, - "properties": { - "name": "Puget Lowland", - "id": "puget-lowland", - "model": "Seattle", - "spacing": 0.01 - } - } - ] -} diff --git a/src/test/resources/model/test-model/~site-data/basin/puget-lowland.csv b/src/test/resources/model/test-model/~site-data/basin/puget-lowland.csv deleted file mode 100644 index 80b9974af3b49d93b473c8256f8df54245d58071..0000000000000000000000000000000000000000 --- a/src/test/resources/model/test-model/~site-data/basin/puget-lowland.csv +++ /dev/null @@ -1,17414 +0,0 @@ -lon,lat,z1p0,z2p5 --123.50,48.00,0.287,0.711 --123.50,48.01,0.311,0.937 --123.50,48.02,0.334,1.164 --123.50,48.03,0.348,1.296 --123.50,48.04,0.362,1.428 --123.50,48.05,0.386,1.659 --123.50,48.06,0.394,1.734 --123.50,48.07,0.415,1.937 --123.50,48.08,0.416,1.949 --123.50,48.09,0.419,1.976 --123.50,48.10,0.425,2.036 --123.50,48.11,0.434,2.125 --123.50,48.12,0.434,2.12 --123.50,48.13,0.432,2.099 --123.50,48.14,0.413,1.922 --123.50,48.15,0.413,1.916 --123.50,48.16,0.404,1.834 --123.50,48.17,0.39,1.702 --123.50,48.18,0.385,1.651 --123.50,48.19,0.367,1.475 --123.50,48.20,0.358,1.388 --123.49,48.00,0.287,0.707 --123.49,48.01,0.311,0.934 --123.49,48.02,0.334,1.162 --123.49,48.03,0.348,1.295 --123.49,48.04,0.362,1.428 --123.49,48.05,0.386,1.66 --123.49,48.06,0.394,1.737 --123.49,48.07,0.415,1.941 --123.49,48.08,0.418,1.963 --123.49,48.09,0.421,1.996 --123.49,48.10,0.436,2.136 --123.49,48.11,0.435,2.131 --123.49,48.12,0.434,2.126 --123.49,48.13,0.434,2.12 --123.49,48.14,0.425,2.032 --123.49,48.15,0.413,1.921 --123.49,48.16,0.412,1.913 --123.49,48.17,0.391,1.706 --123.49,48.18,0.386,1.657 --123.49,48.19,0.367,1.48 --123.49,48.20,0.358,1.394 --123.48,48.00,0.287,0.703 --123.48,48.01,0.31,0.93 --123.48,48.02,0.334,1.159 --123.48,48.03,0.348,1.294 --123.48,48.04,0.362,1.426 --123.48,48.05,0.386,1.661 --123.48,48.06,0.394,1.74 --123.48,48.07,0.416,1.946 --123.48,48.08,0.418,1.968 --123.48,48.09,0.436,2.143 --123.48,48.10,0.436,2.142 --123.48,48.11,0.436,2.137 --123.48,48.12,0.435,2.132 --123.48,48.13,0.434,2.126 --123.48,48.14,0.434,2.119 --123.48,48.15,0.417,1.961 --123.48,48.16,0.413,1.919 --123.48,48.17,0.391,1.712 --123.48,48.18,0.387,1.673 --123.48,48.19,0.368,1.487 --123.48,48.20,0.36,1.414 --123.47,48.00,0.286,0.698 --123.47,48.01,0.31,0.926 --123.47,48.02,0.334,1.156 --123.47,48.03,0.348,1.293 --123.47,48.04,0.362,1.426 --123.47,48.05,0.386,1.662 --123.47,48.06,0.395,1.743 --123.47,48.07,0.416,1.95 --123.47,48.08,0.418,1.972 --123.47,48.09,0.437,2.152 --123.47,48.10,0.437,2.148 --123.47,48.11,0.436,2.143 --123.47,48.12,0.436,2.138 --123.47,48.13,0.435,2.132 --123.47,48.14,0.434,2.125 --123.47,48.15,0.418,1.968 --123.47,48.16,0.414,1.925 --123.47,48.17,0.407,1.859 --123.47,48.18,0.39,1.697 --123.47,48.19,0.379,1.595 --123.47,48.20,0.367,1.478 --123.46,47.99,0.262,0.467 --123.46,48.00,0.286,0.693 --123.46,48.01,0.309,0.922 --123.46,48.02,0.333,1.153 --123.46,48.03,0.348,1.292 --123.46,48.04,0.362,1.425 --123.46,48.05,0.386,1.662 --123.46,48.06,0.395,1.745 --123.46,48.07,0.417,1.954 --123.46,48.08,0.419,1.977 --123.46,48.09,0.438,2.159 --123.46,48.10,0.437,2.154 --123.46,48.11,0.437,2.149 --123.46,48.12,0.436,2.144 --123.46,48.13,0.436,2.138 --123.46,48.14,0.435,2.131 --123.46,48.15,0.429,2.069 --123.46,48.16,0.414,1.93 --123.46,48.17,0.412,1.907 --123.46,48.18,0.391,1.704 --123.46,48.19,0.384,1.641 --123.46,48.20,0.368,1.486 --123.45,47.99,0.261,0.461 --123.45,48.00,0.285,0.688 --123.45,48.01,0.309,0.918 --123.45,48.02,0.333,1.15 --123.45,48.03,0.348,1.29 --123.45,48.04,0.362,1.424 --123.45,48.05,0.386,1.662 --123.45,48.06,0.399,1.789 --123.45,48.07,0.417,1.958 --123.45,48.08,0.423,2.016 --123.45,48.09,0.438,2.164 --123.45,48.10,0.442,2.196 --123.45,48.11,0.441,2.192 --123.45,48.12,0.441,2.188 --123.45,48.13,0.436,2.143 --123.45,48.14,0.436,2.136 --123.45,48.15,0.435,2.129 --123.45,48.16,0.421,2.0 --123.45,48.17,0.413,1.918 --123.45,48.18,0.394,1.736 --123.45,48.19,0.389,1.693 --123.45,48.20,0.369,1.494 --123.45,48.21,0.359,1.396 --123.44,47.99,0.261,0.456 --123.44,48.00,0.285,0.684 --123.44,48.01,0.309,0.915 --123.44,48.02,0.333,1.148 --123.44,48.03,0.348,1.29 --123.44,48.04,0.361,1.423 --123.44,48.05,0.386,1.663 --123.44,48.06,0.413,1.916 --123.44,48.07,0.418,1.967 --123.44,48.08,0.438,2.164 --123.44,48.09,0.439,2.168 --123.44,48.10,0.443,2.204 --123.44,48.11,0.455,2.32 --123.44,48.12,0.454,2.315 --123.44,48.13,0.444,2.215 --123.44,48.14,0.436,2.14 --123.44,48.15,0.435,2.133 --123.44,48.16,0.434,2.124 --123.44,48.17,0.413,1.922 --123.44,48.18,0.409,1.879 --123.44,48.19,0.39,1.699 --123.44,48.20,0.382,1.621 --123.44,48.21,0.36,1.411 --123.43,47.99,0.26,0.451 --123.43,48.00,0.284,0.68 --123.43,48.01,0.308,0.912 --123.43,48.02,0.333,1.146 --123.43,48.03,0.357,1.381 --123.43,48.04,0.363,1.441 --123.43,48.05,0.386,1.663 --123.43,48.06,0.413,1.916 --123.43,48.07,0.419,1.978 --123.43,48.08,0.44,2.175 --123.43,48.09,0.441,2.192 --123.43,48.10,0.451,2.285 --123.43,48.11,0.455,2.327 --123.43,48.12,0.455,2.322 --123.43,48.13,0.454,2.315 --123.43,48.14,0.449,2.263 --123.43,48.15,0.436,2.136 --123.43,48.16,0.435,2.127 --123.43,48.17,0.414,1.926 --123.43,48.18,0.409,1.884 --123.43,48.19,0.391,1.704 --123.43,48.20,0.383,1.627 --123.43,48.21,0.369,1.495 --123.42,47.99,0.26,0.447 --123.42,48.00,0.284,0.677 --123.42,48.01,0.308,0.91 --123.42,48.02,0.332,1.144 --123.42,48.03,0.357,1.38 --123.42,48.04,0.378,1.587 --123.42,48.05,0.386,1.663 --123.42,48.06,0.413,1.917 --123.42,48.07,0.428,2.066 --123.42,48.08,0.44,2.179 --123.42,48.09,0.447,2.248 --123.42,48.10,0.456,2.335 --123.42,48.11,0.456,2.33 --123.42,48.12,0.455,2.324 --123.42,48.13,0.454,2.318 --123.42,48.14,0.454,2.31 --123.42,48.15,0.439,2.173 --123.42,48.16,0.435,2.13 --123.42,48.17,0.423,2.019 --123.42,48.18,0.412,1.912 --123.42,48.19,0.397,1.761 --123.42,48.20,0.383,1.632 --123.42,48.21,0.369,1.498 --123.41,47.98,0.237,0.224 --123.41,47.99,0.26,0.446 --123.41,48.00,0.284,0.675 --123.41,48.01,0.308,0.907 --123.41,48.02,0.332,1.142 --123.41,48.03,0.357,1.378 --123.41,48.04,0.382,1.617 --123.41,48.05,0.393,1.725 --123.41,48.06,0.413,1.916 --123.41,48.07,0.438,2.158 --123.41,48.08,0.44,2.179 --123.41,48.09,0.457,2.342 --123.41,48.10,0.456,2.337 --123.41,48.11,0.456,2.332 --123.41,48.12,0.455,2.327 --123.41,48.13,0.455,2.32 --123.41,48.14,0.454,2.313 --123.41,48.15,0.444,2.214 --123.41,48.16,0.435,2.133 --123.41,48.17,0.433,2.116 --123.41,48.18,0.413,1.916 --123.41,48.19,0.407,1.858 --123.41,48.20,0.389,1.685 --123.41,48.21,0.37,1.501 --123.41,48.22,0.358,1.386 --123.40,47.98,0.237,0.223 --123.40,47.99,0.26,0.444 --123.40,48.00,0.283,0.673 --123.40,48.01,0.307,0.904 --123.40,48.02,0.332,1.14 --123.40,48.03,0.357,1.377 --123.40,48.04,0.381,1.616 --123.40,48.05,0.393,1.726 --123.40,48.06,0.413,1.916 --123.40,48.07,0.438,2.159 --123.40,48.08,0.44,2.179 --123.40,48.09,0.457,2.345 --123.40,48.10,0.457,2.339 --123.40,48.11,0.456,2.334 --123.40,48.12,0.456,2.329 --123.40,48.13,0.455,2.323 --123.40,48.14,0.454,2.315 --123.40,48.15,0.453,2.308 --123.40,48.16,0.437,2.15 --123.40,48.17,0.434,2.12 --123.40,48.18,0.413,1.919 --123.40,48.19,0.407,1.862 --123.40,48.20,0.39,1.702 --123.40,48.21,0.381,1.608 --123.40,48.22,0.358,1.391 --123.39,47.98,0.238,0.24 --123.39,47.99,0.259,0.442 --123.39,48.00,0.283,0.67 --123.39,48.01,0.307,0.902 --123.39,48.02,0.332,1.137 --123.39,48.03,0.356,1.375 --123.39,48.04,0.381,1.616 --123.39,48.05,0.407,1.861 --123.39,48.06,0.413,1.916 --123.39,48.07,0.438,2.159 --123.39,48.08,0.452,2.297 --123.39,48.09,0.457,2.347 --123.39,48.10,0.461,2.381 --123.39,48.11,0.469,2.456 --123.39,48.12,0.468,2.451 --123.39,48.13,0.468,2.445 --123.39,48.14,0.455,2.326 --123.39,48.15,0.454,2.311 --123.39,48.16,0.45,2.276 --123.39,48.17,0.434,2.124 --123.39,48.18,0.425,2.039 --123.39,48.19,0.408,1.867 --123.39,48.20,0.391,1.706 --123.39,48.21,0.381,1.611 --123.39,48.22,0.369,1.494 --123.38,47.98,0.245,0.306 --123.38,47.99,0.266,0.509 --123.38,48.00,0.288,0.716 --123.38,48.01,0.307,0.899 --123.38,48.02,0.331,1.135 --123.38,48.03,0.356,1.374 --123.38,48.04,0.381,1.616 --123.38,48.05,0.407,1.865 --123.38,48.06,0.426,2.043 --123.38,48.07,0.438,2.159 --123.38,48.08,0.458,2.354 --123.38,48.09,0.46,2.369 --123.38,48.10,0.465,2.419 --123.38,48.11,0.475,2.511 --123.38,48.12,0.474,2.505 --123.38,48.13,0.473,2.498 --123.38,48.14,0.469,2.455 --123.38,48.15,0.454,2.314 --123.38,48.16,0.453,2.307 --123.38,48.17,0.435,2.128 --123.38,48.18,0.431,2.093 --123.38,48.19,0.412,1.912 --123.38,48.20,0.394,1.74 --123.38,48.21,0.381,1.615 --123.38,48.22,0.369,1.496 --123.37,47.97,0.233,0.192 --123.37,47.98,0.255,0.402 --123.37,47.99,0.278,0.621 --123.37,48.00,0.302,0.85 --123.37,48.01,0.309,0.922 --123.37,48.02,0.334,1.159 --123.37,48.03,0.359,1.4 --123.37,48.04,0.381,1.615 --123.37,48.05,0.407,1.865 --123.37,48.06,0.434,2.117 --123.37,48.07,0.443,2.21 --123.37,48.08,0.458,2.356 --123.37,48.09,0.461,2.382 --123.37,48.10,0.475,2.52 --123.37,48.11,0.475,2.514 --123.37,48.12,0.474,2.508 --123.37,48.13,0.473,2.501 --123.37,48.14,0.473,2.493 --123.37,48.15,0.462,2.39 --123.37,48.16,0.454,2.31 --123.37,48.17,0.435,2.132 --123.37,48.18,0.431,2.097 --123.37,48.19,0.413,1.916 --123.37,48.20,0.405,1.841 --123.37,48.21,0.386,1.664 --123.37,48.22,0.369,1.499 --123.36,47.97,0.233,0.192 --123.36,47.98,0.255,0.4 --123.36,47.99,0.278,0.619 --123.36,48.00,0.302,0.847 --123.36,48.01,0.323,1.058 --123.36,48.02,0.349,1.299 --123.36,48.03,0.374,1.544 --123.36,48.04,0.388,1.682 --123.36,48.05,0.407,1.866 --123.36,48.06,0.434,2.118 --123.36,48.07,0.457,2.338 --123.36,48.08,0.459,2.358 --123.36,48.09,0.475,2.515 --123.36,48.10,0.476,2.523 --123.36,48.11,0.475,2.517 --123.36,48.12,0.475,2.511 --123.36,48.13,0.474,2.504 --123.36,48.14,0.473,2.496 --123.36,48.15,0.472,2.488 --123.36,48.16,0.455,2.327 --123.36,48.17,0.436,2.136 --123.36,48.18,0.432,2.102 --123.36,48.19,0.413,1.92 --123.36,48.20,0.405,1.846 --123.36,48.21,0.391,1.704 --123.36,48.22,0.378,1.586 --123.36,48.23,0.355,1.366 --123.35,47.97,0.234,0.198 --123.35,47.98,0.256,0.409 --123.35,47.99,0.279,0.627 --123.35,48.00,0.302,0.855 --123.35,48.01,0.327,1.089 --123.35,48.02,0.352,1.329 --123.35,48.03,0.377,1.572 --123.35,48.04,0.403,1.819 --123.35,48.05,0.421,1.996 --123.35,48.06,0.434,2.12 --123.35,48.07,0.457,2.341 --123.35,48.08,0.459,2.361 --123.35,48.09,0.477,2.533 --123.35,48.10,0.476,2.526 --123.35,48.11,0.475,2.519 --123.35,48.12,0.475,2.513 --123.35,48.13,0.474,2.505 --123.35,48.14,0.473,2.497 --123.35,48.15,0.472,2.489 --123.35,48.16,0.456,2.335 --123.35,48.17,0.448,2.257 --123.35,48.18,0.434,2.12 --123.35,48.19,0.423,2.015 --123.35,48.20,0.405,1.847 --123.35,48.21,0.391,1.703 --123.35,48.22,0.379,1.589 --123.35,48.23,0.368,1.488 --123.34,47.97,0.246,0.311 --123.34,47.98,0.264,0.484 --123.34,47.99,0.287,0.705 --123.34,48.00,0.311,0.935 --123.34,48.01,0.335,1.17 --123.34,48.02,0.353,1.346 --123.34,48.03,0.378,1.579 --123.34,48.04,0.403,1.824 --123.34,48.05,0.429,2.072 --123.34,48.06,0.446,2.238 --123.34,48.07,0.457,2.343 --123.34,48.08,0.467,2.436 --123.34,48.09,0.477,2.536 --123.34,48.10,0.48,2.566 --123.34,48.11,0.483,2.595 --123.34,48.12,0.483,2.588 --123.34,48.13,0.482,2.58 --123.34,48.14,0.473,2.499 --123.34,48.15,0.472,2.49 --123.34,48.16,0.456,2.337 --123.34,48.17,0.453,2.305 --123.34,48.18,0.434,2.121 --123.34,48.19,0.429,2.069 --123.34,48.20,0.412,1.907 --123.34,48.21,0.391,1.711 --123.34,48.22,0.379,1.589 --123.34,48.23,0.368,1.488 --123.33,47.96,0.241,0.263 --123.33,47.97,0.255,0.398 --123.33,47.98,0.277,0.613 --123.33,47.99,0.3,0.834 --123.33,48.00,0.324,1.064 --123.33,48.01,0.349,1.301 --123.33,48.02,0.369,1.5 --123.33,48.03,0.381,1.61 --123.33,48.04,0.406,1.855 --123.33,48.05,0.429,2.076 --123.33,48.06,0.454,2.309 --123.33,48.07,0.462,2.394 --123.33,48.08,0.478,2.544 --123.33,48.09,0.479,2.556 --123.33,48.10,0.48,2.568 --123.33,48.11,0.494,2.7 --123.33,48.12,0.493,2.691 --123.33,48.13,0.492,2.681 --123.33,48.14,0.483,2.591 --123.33,48.15,0.472,2.491 --123.33,48.16,0.46,2.369 --123.33,48.17,0.453,2.306 --123.33,48.18,0.436,2.14 --123.33,48.19,0.429,2.07 --123.33,48.20,0.412,1.907 --123.33,48.21,0.402,1.813 --123.33,48.22,0.383,1.629 --123.33,48.23,0.368,1.487 --123.32,47.96,0.253,0.376 --123.32,47.97,0.257,0.419 --123.32,47.98,0.278,0.623 --123.32,47.99,0.301,0.845 --123.32,48.00,0.325,1.075 --123.32,48.01,0.35,1.31 --123.32,48.02,0.375,1.549 --123.32,48.03,0.397,1.765 --123.32,48.04,0.422,2.009 --123.32,48.05,0.434,2.124 --123.32,48.06,0.454,2.312 --123.32,48.07,0.476,2.53 --123.32,48.08,0.478,2.548 --123.32,48.09,0.48,2.559 --123.32,48.10,0.494,2.695 --123.32,48.11,0.494,2.703 --123.32,48.12,0.493,2.693 --123.32,48.13,0.492,2.683 --123.32,48.14,0.491,2.672 --123.32,48.15,0.476,2.522 --123.32,48.16,0.472,2.484 --123.32,48.17,0.453,2.306 --123.32,48.18,0.449,2.267 --123.32,48.19,0.429,2.071 --123.32,48.20,0.412,1.906 --123.32,48.21,0.402,1.813 --123.32,48.22,0.389,1.688 --123.32,48.23,0.374,1.548 --123.32,48.24,0.367,1.475 --123.31,47.96,0.253,0.383 --123.31,47.97,0.272,0.567 --123.31,47.98,0.291,0.743 --123.31,47.99,0.314,0.968 --123.31,48.00,0.336,1.181 --123.31,48.01,0.351,1.319 --123.31,48.02,0.375,1.557 --123.31,48.03,0.4,1.798 --123.31,48.04,0.425,2.039 --123.31,48.05,0.449,2.267 --123.31,48.06,0.454,2.315 --123.31,48.07,0.477,2.533 --123.31,48.08,0.479,2.554 --123.31,48.09,0.49,2.662 --123.31,48.10,0.496,2.717 --123.31,48.11,0.495,2.706 --123.31,48.12,0.494,2.696 --123.31,48.13,0.493,2.685 --123.31,48.14,0.491,2.674 --123.31,48.15,0.477,2.536 --123.31,48.16,0.472,2.484 --123.31,48.17,0.454,2.312 --123.31,48.18,0.45,2.279 --123.31,48.19,0.433,2.108 --123.31,48.20,0.419,1.979 --123.31,48.21,0.402,1.813 --123.31,48.22,0.389,1.687 --123.31,48.23,0.375,1.556 --123.31,48.24,0.367,1.475 --123.30,47.95,0.247,0.318 --123.30,47.96,0.254,0.389 --123.30,47.97,0.277,0.608 --123.30,47.98,0.3,0.828 --123.30,47.99,0.323,1.054 --123.30,48.00,0.347,1.287 --123.30,48.01,0.359,1.395 --123.30,48.02,0.383,1.634 --123.30,48.03,0.401,1.803 --123.30,48.04,0.426,2.043 --123.30,48.05,0.45,2.275 --123.30,48.06,0.466,2.43 --123.30,48.07,0.477,2.534 --123.30,48.08,0.479,2.556 --123.30,48.09,0.497,2.729 --123.30,48.10,0.496,2.718 --123.30,48.11,0.495,2.708 --123.30,48.12,0.494,2.697 --123.30,48.13,0.493,2.686 --123.30,48.14,0.492,2.675 --123.30,48.15,0.484,2.607 --123.30,48.16,0.472,2.485 --123.30,48.17,0.461,2.383 --123.30,48.18,0.451,2.28 --123.30,48.19,0.433,2.108 --123.30,48.20,0.425,2.036 --123.30,48.21,0.41,1.89 --123.30,48.22,0.389,1.686 --123.30,48.23,0.384,1.64 --123.30,48.24,0.367,1.475 --123.29,47.95,0.251,0.365 --123.29,47.96,0.263,0.476 --123.29,47.97,0.279,0.63 --123.29,47.98,0.301,0.837 --123.29,47.99,0.324,1.063 --123.29,48.00,0.348,1.295 --123.29,48.01,0.373,1.53 --123.29,48.02,0.397,1.768 --123.29,48.03,0.416,1.944 --123.29,48.04,0.428,2.066 --123.29,48.05,0.45,2.276 --123.29,48.06,0.473,2.501 --123.29,48.07,0.48,2.559 --123.29,48.08,0.482,2.579 --123.29,48.09,0.497,2.73 --123.29,48.10,0.496,2.719 --123.29,48.11,0.498,2.733 --123.29,48.12,0.496,2.722 --123.29,48.13,0.493,2.686 --123.29,48.14,0.492,2.675 --123.29,48.15,0.491,2.665 --123.29,48.16,0.474,2.51 --123.29,48.17,0.471,2.475 --123.29,48.18,0.452,2.293 --123.29,48.19,0.433,2.108 --123.29,48.20,0.429,2.07 --123.29,48.21,0.41,1.89 --123.29,48.22,0.402,1.813 --123.29,48.23,0.388,1.676 --123.29,48.24,0.376,1.563 --123.28,47.95,0.252,0.369 --123.28,47.96,0.275,0.59 --123.28,47.97,0.294,0.778 --123.28,47.98,0.301,0.843 --123.28,47.99,0.325,1.069 --123.28,48.00,0.349,1.3 --123.28,48.01,0.373,1.534 --123.28,48.02,0.398,1.771 --123.28,48.03,0.422,2.009 --123.28,48.04,0.443,2.21 --123.28,48.05,0.454,2.317 --123.28,48.06,0.473,2.501 --123.28,48.07,0.479,2.558 --123.28,48.08,0.496,2.716 --123.28,48.09,0.497,2.73 --123.28,48.10,0.496,2.719 --123.28,48.11,0.501,2.762 --123.28,48.12,0.51,2.854 --123.28,48.13,0.499,2.751 --123.28,48.14,0.492,2.676 --123.28,48.15,0.491,2.665 --123.28,48.16,0.474,2.51 --123.28,48.17,0.471,2.475 --123.28,48.18,0.452,2.294 --123.28,48.19,0.446,2.234 --123.28,48.20,0.431,2.094 --123.28,48.21,0.42,1.989 --123.28,48.22,0.409,1.879 --123.28,48.23,0.394,1.738 --123.28,48.24,0.387,1.67 --123.27,47.95,0.253,0.378 --123.27,47.96,0.275,0.594 --123.27,47.97,0.298,0.817 --123.27,47.98,0.316,0.985 --123.27,47.99,0.337,1.188 --123.27,48.00,0.359,1.403 --123.27,48.01,0.373,1.538 --123.27,48.02,0.398,1.774 --123.27,48.03,0.423,2.011 --123.27,48.04,0.446,2.24 --123.27,48.05,0.457,2.344 --123.27,48.06,0.473,2.5 --123.27,48.07,0.479,2.558 --123.27,48.08,0.498,2.734 --123.27,48.09,0.497,2.73 --123.27,48.10,0.5,2.753 --123.27,48.11,0.507,2.821 --123.27,48.12,0.512,2.874 --123.27,48.13,0.511,2.862 --123.27,48.14,0.492,2.677 --123.27,48.15,0.491,2.665 --123.27,48.16,0.474,2.51 --123.27,48.17,0.471,2.475 --123.27,48.18,0.452,2.295 --123.27,48.19,0.447,2.251 --123.27,48.20,0.431,2.097 --123.27,48.21,0.422,2.008 --123.27,48.22,0.409,1.884 --123.27,48.23,0.408,1.875 --123.27,48.24,0.388,1.676 --123.27,48.25,0.384,1.637 --123.26,47.95,0.268,0.525 --123.26,47.96,0.276,0.598 --123.26,47.97,0.299,0.821 --123.26,47.98,0.322,1.047 --123.26,47.99,0.346,1.275 --123.26,48.00,0.37,1.506 --123.26,48.01,0.381,1.607 --123.26,48.02,0.399,1.783 --123.26,48.03,0.423,2.012 --123.26,48.04,0.446,2.241 --123.26,48.05,0.464,2.41 --123.26,48.06,0.473,2.5 --123.26,48.07,0.486,2.624 --123.26,48.08,0.498,2.734 --123.26,48.09,0.499,2.744 --123.26,48.10,0.503,2.786 --123.26,48.11,0.514,2.888 --123.26,48.12,0.512,2.874 --123.26,48.13,0.511,2.862 --123.26,48.14,0.498,2.741 --123.26,48.15,0.491,2.665 --123.26,48.16,0.481,2.577 --123.26,48.17,0.471,2.475 --123.26,48.18,0.458,2.351 --123.26,48.19,0.451,2.283 --123.26,48.20,0.434,2.12 --123.26,48.21,0.43,2.087 --123.26,48.22,0.41,1.889 --123.26,48.23,0.409,1.881 --123.26,48.24,0.402,1.814 --123.26,48.25,0.387,1.673 --123.25,47.20,0.266,0.509 --123.25,47.21,0.266,0.509 --123.25,47.22,0.276,0.6 --123.25,47.23,0.282,0.658 --123.25,47.24,0.282,0.658 --123.25,47.25,0.282,0.661 --123.25,47.26,0.286,0.696 --123.25,47.27,0.302,0.85 --123.25,47.28,0.302,0.852 --123.25,47.29,0.302,0.854 --123.25,47.30,0.302,0.853 --123.25,47.31,0.302,0.852 --123.25,47.32,0.302,0.851 --123.25,47.33,0.288,0.717 --123.25,47.34,0.285,0.687 --123.25,47.35,0.281,0.652 --123.25,47.36,0.281,0.648 --123.25,47.37,0.278,0.617 --123.25,47.38,0.263,0.48 --123.25,47.39,0.26,0.447 --123.25,47.40,0.259,0.439 --123.25,47.95,0.273,0.571 --123.25,47.96,0.284,0.683 --123.25,47.97,0.299,0.826 --123.25,47.98,0.323,1.052 --123.25,47.99,0.347,1.28 --123.25,48.00,0.37,1.51 --123.25,48.01,0.395,1.742 --123.25,48.02,0.415,1.934 --123.25,48.03,0.423,2.014 --123.25,48.04,0.447,2.242 --123.25,48.05,0.47,2.463 --123.25,48.06,0.478,2.548 --123.25,48.07,0.496,2.717 --123.25,48.08,0.498,2.741 --123.25,48.09,0.499,2.744 --123.25,48.10,0.515,2.902 --123.25,48.11,0.514,2.888 --123.25,48.12,0.512,2.874 --123.25,48.13,0.511,2.861 --123.25,48.14,0.501,2.763 --123.25,48.15,0.491,2.665 --123.25,48.16,0.489,2.655 --123.25,48.17,0.472,2.483 --123.25,48.18,0.469,2.454 --123.25,48.19,0.451,2.285 --123.25,48.20,0.447,2.25 --123.25,48.21,0.431,2.091 --123.25,48.22,0.423,2.015 --123.25,48.23,0.41,1.887 --123.25,48.24,0.409,1.879 --123.25,48.25,0.395,1.743 --123.24,47.20,0.277,0.611 --123.24,47.21,0.277,0.612 --123.24,47.22,0.277,0.613 --123.24,47.23,0.286,0.696 --123.24,47.24,0.297,0.801 --123.24,47.25,0.297,0.803 --123.24,47.26,0.297,0.805 --123.24,47.27,0.306,0.889 --123.24,47.28,0.306,0.891 --123.24,47.29,0.306,0.892 --123.24,47.30,0.306,0.892 --123.24,47.31,0.306,0.89 --123.24,47.32,0.306,0.888 --123.24,47.33,0.304,0.866 --123.24,47.34,0.297,0.805 --123.24,47.35,0.297,0.8 --123.24,47.36,0.296,0.795 --123.24,47.37,0.293,0.764 --123.24,47.38,0.276,0.599 --123.24,47.39,0.275,0.592 --123.24,47.40,0.274,0.583 --123.24,47.41,0.262,0.468 --123.24,47.95,0.273,0.574 --123.24,47.96,0.297,0.799 --123.24,47.97,0.301,0.843 --123.24,47.98,0.323,1.057 --123.24,47.99,0.347,1.285 --123.24,48.00,0.371,1.514 --123.24,48.01,0.395,1.746 --123.24,48.02,0.419,1.98 --123.24,48.03,0.432,2.099 --123.24,48.04,0.447,2.243 --123.24,48.05,0.47,2.464 --123.24,48.06,0.478,2.548 --123.24,48.07,0.496,2.716 --123.24,48.08,0.498,2.741 --123.24,48.09,0.499,2.744 --123.24,48.10,0.515,2.903 --123.24,48.11,0.514,2.889 --123.24,48.12,0.512,2.874 --123.24,48.13,0.511,2.861 --123.24,48.14,0.51,2.85 --123.24,48.15,0.493,2.69 --123.24,48.16,0.489,2.655 --123.24,48.17,0.472,2.484 --123.24,48.18,0.469,2.455 --123.24,48.19,0.451,2.287 --123.24,48.20,0.45,2.276 --123.24,48.21,0.44,2.18 --123.24,48.22,0.43,2.086 --123.24,48.23,0.416,1.946 --123.24,48.24,0.41,1.886 --123.24,48.25,0.409,1.88 --123.23,47.19,0.272,0.565 --123.23,47.20,0.286,0.696 --123.23,47.21,0.292,0.754 --123.23,47.22,0.292,0.755 --123.23,47.23,0.292,0.756 --123.23,47.24,0.3,0.83 --123.23,47.25,0.312,0.947 --123.23,47.26,0.312,0.951 --123.23,47.27,0.313,0.955 --123.23,47.28,0.313,0.959 --123.23,47.29,0.313,0.961 --123.23,47.30,0.313,0.962 --123.23,47.31,0.313,0.961 --123.23,47.32,0.313,0.96 --123.23,47.33,0.313,0.958 --123.23,47.34,0.313,0.955 --123.23,47.35,0.312,0.949 --123.23,47.36,0.311,0.939 --123.23,47.37,0.304,0.87 --123.23,47.38,0.291,0.746 --123.23,47.39,0.29,0.738 --123.23,47.40,0.282,0.66 --123.23,47.41,0.277,0.611 --123.23,47.42,0.268,0.524 --123.23,47.95,0.274,0.578 --123.23,47.96,0.297,0.803 --123.23,47.97,0.305,0.883 --123.23,47.98,0.324,1.062 --123.23,47.99,0.347,1.289 --123.23,48.00,0.371,1.518 --123.23,48.01,0.395,1.749 --123.23,48.02,0.42,1.982 --123.23,48.03,0.435,2.134 --123.23,48.04,0.447,2.244 --123.23,48.05,0.47,2.464 --123.23,48.06,0.478,2.548 --123.23,48.07,0.496,2.716 --123.23,48.08,0.498,2.741 --123.23,48.09,0.499,2.744 --123.23,48.10,0.515,2.903 --123.23,48.11,0.514,2.889 --123.23,48.12,0.512,2.874 --123.23,48.13,0.511,2.861 --123.23,48.14,0.51,2.85 --123.23,48.15,0.495,2.712 --123.23,48.16,0.489,2.655 --123.23,48.17,0.483,2.591 --123.23,48.18,0.47,2.467 --123.23,48.19,0.459,2.366 --123.23,48.20,0.451,2.28 --123.23,48.21,0.449,2.269 --123.23,48.22,0.433,2.116 --123.23,48.23,0.43,2.087 --123.23,48.24,0.41,1.893 --123.23,48.25,0.41,1.888 --123.23,48.26,0.403,1.824 --123.22,47.18,0.286,0.695 --123.22,47.19,0.287,0.706 --123.22,47.20,0.287,0.707 --123.22,47.21,0.293,0.767 --123.22,47.22,0.305,0.885 --123.22,47.23,0.307,0.899 --123.22,47.24,0.307,0.901 --123.22,47.25,0.322,1.043 --123.22,47.26,0.328,1.098 --123.22,47.27,0.328,1.104 --123.22,47.28,0.329,1.108 --123.22,47.29,0.329,1.112 --123.22,47.30,0.329,1.113 --123.22,47.31,0.329,1.112 --123.22,47.32,0.329,1.112 --123.22,47.33,0.329,1.11 --123.22,47.34,0.328,1.106 --123.22,47.35,0.328,1.1 --123.22,47.36,0.327,1.09 --123.22,47.37,0.307,0.899 --123.22,47.38,0.306,0.894 --123.22,47.39,0.305,0.885 --123.22,47.40,0.295,0.788 --123.22,47.41,0.284,0.678 --123.22,47.42,0.283,0.667 --123.22,47.43,0.279,0.631 --123.22,47.95,0.274,0.579 --123.22,47.96,0.297,0.805 --123.22,47.97,0.306,0.886 --123.22,47.98,0.324,1.064 --123.22,47.99,0.348,1.291 --123.22,48.00,0.372,1.52 --123.22,48.01,0.396,1.751 --123.22,48.02,0.42,1.983 --123.22,48.03,0.435,2.135 --123.22,48.04,0.447,2.244 --123.22,48.05,0.47,2.464 --123.22,48.06,0.478,2.547 --123.22,48.07,0.496,2.715 --123.22,48.08,0.498,2.74 --123.22,48.09,0.504,2.794 --123.22,48.10,0.515,2.903 --123.22,48.11,0.514,2.889 --123.22,48.12,0.512,2.874 --123.22,48.13,0.511,2.861 --123.22,48.14,0.51,2.85 --123.22,48.15,0.502,2.776 --123.22,48.16,0.49,2.656 --123.22,48.17,0.489,2.647 --123.22,48.18,0.47,2.469 --123.22,48.19,0.469,2.461 --123.22,48.20,0.453,2.301 --123.22,48.21,0.45,2.276 --123.22,48.22,0.447,2.25 --123.22,48.23,0.431,2.096 --123.22,48.24,0.424,2.029 --123.22,48.25,0.419,1.973 --123.22,48.26,0.41,1.891 --123.21,47.18,0.286,0.696 --123.21,47.19,0.289,0.724 --123.21,47.20,0.302,0.85 --123.21,47.21,0.302,0.852 --123.21,47.22,0.306,0.888 --123.21,47.23,0.318,1.001 --123.21,47.24,0.322,1.048 --123.21,47.25,0.323,1.052 --123.21,47.26,0.343,1.25 --123.21,47.27,0.344,1.256 --123.21,47.28,0.345,1.261 --123.21,47.29,0.345,1.265 --123.21,47.30,0.345,1.266 --123.21,47.31,0.345,1.266 --123.21,47.32,0.345,1.266 --123.21,47.33,0.345,1.263 --123.21,47.34,0.344,1.259 --123.21,47.35,0.344,1.253 --123.21,47.36,0.343,1.243 --123.21,47.37,0.323,1.051 --123.21,47.38,0.322,1.046 --123.21,47.39,0.321,1.038 --123.21,47.40,0.311,0.94 --123.21,47.41,0.3,0.828 --123.21,47.42,0.298,0.816 --123.21,47.43,0.282,0.662 --123.21,47.44,0.28,0.636 --123.21,47.95,0.274,0.579 --123.21,47.96,0.297,0.804 --123.21,47.97,0.306,0.886 --123.21,47.98,0.324,1.063 --123.21,47.99,0.348,1.291 --123.21,48.00,0.371,1.519 --123.21,48.01,0.395,1.75 --123.21,48.02,0.42,1.983 --123.21,48.03,0.435,2.135 --123.21,48.04,0.447,2.243 --123.21,48.05,0.469,2.462 --123.21,48.06,0.478,2.546 --123.21,48.07,0.495,2.712 --123.21,48.08,0.498,2.738 --123.21,48.09,0.516,2.913 --123.21,48.10,0.515,2.9 --123.21,48.11,0.514,2.887 --123.21,48.12,0.512,2.872 --123.21,48.13,0.511,2.86 --123.21,48.14,0.51,2.85 --123.21,48.15,0.509,2.839 --123.21,48.16,0.495,2.704 --123.21,48.17,0.489,2.649 --123.21,48.18,0.472,2.482 --123.21,48.19,0.47,2.466 --123.21,48.20,0.466,2.433 --123.21,48.21,0.451,2.284 --123.21,48.22,0.45,2.279 --123.21,48.23,0.442,2.195 --123.21,48.24,0.432,2.103 --123.21,48.25,0.432,2.1 --123.21,48.26,0.415,1.941 --123.20,47.17,0.286,0.697 --123.20,47.18,0.287,0.705 --123.20,47.19,0.297,0.805 --123.20,47.20,0.305,0.885 --123.20,47.21,0.313,0.958 --123.20,47.22,0.318,1.001 --123.20,47.23,0.318,1.006 --123.20,47.24,0.338,1.199 --123.20,47.25,0.339,1.204 --123.20,47.26,0.346,1.273 --123.20,47.27,0.36,1.409 --123.20,47.28,0.361,1.415 --123.20,47.29,0.361,1.419 --123.20,47.30,0.361,1.421 --123.20,47.31,0.361,1.421 --123.20,47.32,0.361,1.421 --123.20,47.33,0.361,1.418 --123.20,47.34,0.36,1.413 --123.20,47.35,0.36,1.407 --123.20,47.36,0.347,1.282 --123.20,47.37,0.339,1.205 --123.20,47.38,0.338,1.201 --123.20,47.39,0.338,1.193 --123.20,47.40,0.327,1.094 --123.20,47.41,0.316,0.982 --123.20,47.42,0.314,0.97 --123.20,47.43,0.298,0.815 --123.20,47.44,0.294,0.77 --123.20,47.45,0.293,0.761 --123.20,47.95,0.273,0.576 --123.20,47.96,0.297,0.801 --123.20,47.97,0.305,0.882 --123.20,47.98,0.324,1.059 --123.20,47.99,0.347,1.287 --123.20,48.00,0.371,1.516 --123.20,48.01,0.395,1.748 --123.20,48.02,0.419,1.981 --123.20,48.03,0.435,2.134 --123.20,48.04,0.446,2.241 --123.20,48.05,0.469,2.46 --123.20,48.06,0.478,2.544 --123.20,48.07,0.495,2.709 --123.20,48.08,0.498,2.735 --123.20,48.09,0.516,2.909 --123.20,48.10,0.515,2.897 --123.20,48.11,0.513,2.883 --123.20,48.12,0.512,2.87 --123.20,48.13,0.511,2.858 --123.20,48.14,0.51,2.849 --123.20,48.15,0.509,2.839 --123.20,48.16,0.508,2.83 --123.20,48.17,0.489,2.651 --123.20,48.18,0.485,2.613 --123.20,48.19,0.47,2.472 --123.20,48.20,0.47,2.467 --123.20,48.21,0.46,2.375 --123.20,48.22,0.452,2.29 --123.20,48.23,0.451,2.289 --123.20,48.24,0.436,2.142 --123.20,48.25,0.433,2.114 --123.20,48.26,0.432,2.098 --123.19,47.16,0.286,0.699 --123.19,47.17,0.293,0.76 --123.19,47.18,0.293,0.76 --123.19,47.19,0.309,0.914 --123.19,47.20,0.312,0.95 --123.19,47.21,0.313,0.96 --123.19,47.22,0.333,1.148 --123.19,47.23,0.333,1.153 --123.19,47.24,0.341,1.226 --123.19,47.25,0.355,1.357 --123.19,47.26,0.355,1.363 --123.19,47.27,0.369,1.5 --123.19,47.28,0.377,1.57 --123.19,47.29,0.377,1.575 --123.19,47.30,0.377,1.577 --123.19,47.31,0.377,1.577 --123.19,47.32,0.378,1.578 --123.19,47.33,0.377,1.574 --123.19,47.34,0.376,1.568 --123.19,47.35,0.376,1.562 --123.19,47.36,0.355,1.363 --123.19,47.37,0.355,1.36 --123.19,47.38,0.354,1.355 --123.19,47.39,0.354,1.348 --123.19,47.40,0.344,1.251 --123.19,47.41,0.332,1.137 --123.19,47.42,0.331,1.126 --123.19,47.43,0.314,0.969 --123.19,47.44,0.309,0.922 --123.19,47.45,0.308,0.911 --123.19,47.46,0.289,0.726 --123.19,47.95,0.273,0.573 --123.19,47.96,0.286,0.693 --123.19,47.97,0.305,0.879 --123.19,47.98,0.323,1.055 --123.19,47.99,0.347,1.283 --123.19,48.00,0.371,1.513 --123.19,48.01,0.395,1.745 --123.19,48.02,0.413,1.922 --123.19,48.03,0.432,2.101 --123.19,48.04,0.446,2.239 --123.19,48.05,0.469,2.458 --123.19,48.06,0.478,2.541 --123.19,48.07,0.495,2.705 --123.19,48.08,0.497,2.732 --123.19,48.09,0.515,2.905 --123.19,48.10,0.514,2.893 --123.19,48.11,0.513,2.88 --123.19,48.12,0.512,2.868 --123.19,48.13,0.51,2.857 --123.19,48.14,0.51,2.848 --123.19,48.15,0.509,2.84 --123.19,48.16,0.508,2.831 --123.19,48.17,0.49,2.664 --123.19,48.18,0.489,2.651 --123.19,48.19,0.479,2.552 --123.19,48.20,0.471,2.475 --123.19,48.21,0.47,2.472 --123.19,48.22,0.455,2.32 --123.19,48.23,0.453,2.3 --123.19,48.24,0.451,2.282 --123.19,48.25,0.446,2.233 --123.19,48.26,0.434,2.121 --123.18,47.16,0.288,0.716 --123.18,47.17,0.304,0.874 --123.18,47.18,0.307,0.904 --123.18,47.19,0.309,0.915 --123.18,47.20,0.327,1.093 --123.18,47.21,0.328,1.099 --123.18,47.22,0.336,1.179 --123.18,47.23,0.349,1.304 --123.18,47.24,0.35,1.31 --123.18,47.25,0.367,1.473 --123.18,47.26,0.371,1.517 --123.18,47.27,0.372,1.523 --123.18,47.28,0.393,1.727 --123.18,47.29,0.394,1.732 --123.18,47.30,0.394,1.735 --123.18,47.31,0.394,1.736 --123.18,47.32,0.394,1.737 --123.18,47.33,0.394,1.733 --123.18,47.34,0.393,1.725 --123.18,47.35,0.392,1.717 --123.18,47.36,0.371,1.518 --123.18,47.37,0.371,1.514 --123.18,47.38,0.37,1.51 --123.18,47.39,0.37,1.502 --123.18,47.40,0.36,1.406 --123.18,47.41,0.348,1.293 --123.18,47.42,0.347,1.283 --123.18,47.43,0.33,1.125 --123.18,47.44,0.325,1.075 --123.18,47.45,0.324,1.062 --123.18,47.46,0.304,0.873 --123.18,47.47,0.3,0.835 --123.18,47.95,0.273,0.57 --123.18,47.96,0.283,0.673 --123.18,47.97,0.299,0.824 --123.18,47.98,0.323,1.051 --123.18,47.99,0.346,1.279 --123.18,48.00,0.37,1.51 --123.18,48.01,0.391,1.707 --123.18,48.02,0.413,1.918 --123.18,48.03,0.423,2.012 --123.18,48.04,0.446,2.238 --123.18,48.05,0.469,2.455 --123.18,48.06,0.477,2.539 --123.18,48.07,0.494,2.701 --123.18,48.08,0.497,2.728 --123.18,48.09,0.515,2.9 --123.18,48.10,0.514,2.889 --123.18,48.11,0.513,2.877 --123.18,48.12,0.511,2.865 --123.18,48.13,0.51,2.855 --123.18,48.14,0.509,2.847 --123.18,48.15,0.509,2.84 --123.18,48.16,0.508,2.832 --123.18,48.17,0.497,2.724 --123.18,48.18,0.489,2.655 --123.18,48.19,0.489,2.654 --123.18,48.20,0.473,2.495 --123.18,48.21,0.471,2.481 --123.18,48.22,0.469,2.457 --123.18,48.23,0.46,2.371 --123.18,48.24,0.454,2.31 --123.18,48.25,0.454,2.31 --123.18,48.26,0.443,2.209 --123.18,48.27,0.435,2.13 --123.17,47.15,0.3,0.835 --123.17,47.16,0.303,0.86 --123.17,47.17,0.305,0.876 --123.17,47.18,0.322,1.047 --123.17,47.19,0.322,1.048 --123.17,47.20,0.331,1.127 --123.17,47.21,0.343,1.247 --123.17,47.22,0.344,1.255 --123.17,47.23,0.359,1.403 --123.17,47.24,0.366,1.463 --123.17,47.25,0.383,1.627 --123.17,47.26,0.387,1.672 --123.17,47.27,0.388,1.679 --123.17,47.28,0.394,1.739 --123.17,47.29,0.41,1.892 --123.17,47.30,0.41,1.895 --123.17,47.31,0.411,1.898 --123.17,47.32,0.411,1.9 --123.17,47.33,0.41,1.894 --123.17,47.34,0.409,1.883 --123.17,47.35,0.408,1.874 --123.17,47.36,0.387,1.673 --123.17,47.37,0.387,1.668 --123.17,47.38,0.386,1.663 --123.17,47.39,0.386,1.656 --123.17,47.40,0.376,1.56 --123.17,47.41,0.364,1.447 --123.17,47.42,0.363,1.438 --123.17,47.43,0.347,1.281 --123.17,47.44,0.341,1.229 --123.17,47.45,0.34,1.216 --123.17,47.46,0.32,1.021 --123.17,47.47,0.314,0.968 --123.17,47.48,0.301,0.84 --123.17,47.95,0.272,0.561 --123.17,47.96,0.283,0.67 --123.17,47.97,0.299,0.82 --123.17,47.98,0.322,1.046 --123.17,47.99,0.345,1.267 --123.17,48.00,0.369,1.497 --123.17,48.01,0.391,1.704 --123.17,48.02,0.398,1.775 --123.17,48.03,0.422,2.01 --123.17,48.04,0.446,2.236 --123.17,48.05,0.467,2.443 --123.17,48.06,0.477,2.536 --123.17,48.07,0.494,2.697 --123.17,48.08,0.497,2.725 --123.17,48.09,0.514,2.894 --123.17,48.10,0.513,2.884 --123.17,48.11,0.512,2.873 --123.17,48.12,0.512,2.874 --123.17,48.13,0.511,2.866 --123.17,48.14,0.511,2.859 --123.17,48.15,0.509,2.84 --123.17,48.16,0.508,2.833 --123.17,48.17,0.508,2.829 --123.17,48.18,0.491,2.665 --123.17,48.19,0.49,2.66 --123.17,48.20,0.487,2.63 --123.17,48.21,0.474,2.506 --123.17,48.22,0.472,2.49 --123.17,48.23,0.472,2.491 --123.17,48.24,0.462,2.388 --123.17,48.25,0.455,2.321 --123.17,48.26,0.455,2.319 --123.17,48.27,0.438,2.159 --123.16,47.14,0.298,0.816 --123.16,47.15,0.301,0.837 --123.16,47.16,0.306,0.893 --123.16,47.17,0.318,1.004 --123.16,47.18,0.326,1.085 --123.16,47.19,0.338,1.193 --123.16,47.20,0.338,1.196 --123.16,47.21,0.354,1.349 --123.16,47.22,0.36,1.405 --123.16,47.23,0.372,1.526 --123.16,47.24,0.381,1.615 --123.16,47.25,0.386,1.659 --123.16,47.26,0.403,1.826 --123.16,47.27,0.404,1.835 --123.16,47.28,0.405,1.842 --123.16,47.29,0.418,1.972 --123.16,47.30,0.427,2.051 --123.16,47.31,0.427,2.053 --123.16,47.32,0.427,2.056 --123.16,47.33,0.426,2.049 --123.16,47.34,0.425,2.037 --123.16,47.35,0.424,2.027 --123.16,47.36,0.404,1.828 --123.16,47.37,0.403,1.822 --123.16,47.38,0.402,1.816 --123.16,47.39,0.401,1.808 --123.16,47.40,0.392,1.713 --123.16,47.41,0.38,1.601 --123.16,47.42,0.379,1.592 --123.16,47.43,0.363,1.436 --123.16,47.44,0.357,1.383 --123.16,47.45,0.356,1.369 --123.16,47.46,0.335,1.171 --123.16,47.47,0.329,1.115 --123.16,47.48,0.314,0.967 --123.16,47.49,0.306,0.888 --123.16,47.95,0.262,0.465 --123.16,47.96,0.28,0.635 --123.16,47.97,0.298,0.815 --123.16,47.98,0.322,1.04 --123.16,47.99,0.329,1.115 --123.16,48.00,0.353,1.345 --123.16,48.01,0.378,1.578 --123.16,48.02,0.398,1.771 --123.16,48.03,0.422,2.006 --123.16,48.04,0.446,2.232 --123.16,48.05,0.456,2.336 --123.16,48.06,0.475,2.517 --123.16,48.07,0.493,2.691 --123.16,48.08,0.496,2.719 --123.16,48.09,0.5,2.756 --123.16,48.10,0.513,2.879 --123.16,48.11,0.512,2.869 --123.16,48.12,0.517,2.923 --123.16,48.13,0.524,2.988 --123.16,48.14,0.524,2.983 --123.16,48.15,0.511,2.858 --123.16,48.16,0.508,2.835 --123.16,48.17,0.508,2.832 --123.16,48.18,0.504,2.797 --123.16,48.19,0.491,2.665 --123.16,48.20,0.491,2.668 --123.16,48.21,0.488,2.642 --123.16,48.22,0.48,2.56 --123.16,48.23,0.473,2.5 --123.16,48.24,0.473,2.501 --123.16,48.25,0.456,2.334 --123.16,48.26,0.455,2.326 --123.16,48.27,0.452,2.296 --123.15,47.13,0.296,0.797 --123.15,47.14,0.307,0.896 --123.15,47.15,0.313,0.962 --123.15,47.16,0.313,0.962 --123.15,47.17,0.325,1.068 --123.15,47.18,0.333,1.15 --123.15,47.19,0.349,1.299 --123.15,47.20,0.353,1.344 --123.15,47.21,0.354,1.353 --123.15,47.22,0.375,1.555 --123.15,47.23,0.38,1.606 --123.15,47.24,0.397,1.767 --123.15,47.25,0.398,1.776 --123.15,47.26,0.417,1.962 --123.15,47.27,0.42,1.988 --123.15,47.28,0.421,1.996 --123.15,47.29,0.426,2.048 --123.15,47.30,0.442,2.199 --123.15,47.31,0.442,2.2 --123.15,47.32,0.442,2.202 --123.15,47.33,0.442,2.197 --123.15,47.34,0.441,2.185 --123.15,47.35,0.44,2.176 --123.15,47.36,0.419,1.981 --123.15,47.37,0.419,1.974 --123.15,47.38,0.418,1.968 --123.15,47.39,0.417,1.961 --123.15,47.40,0.415,1.943 --123.15,47.41,0.396,1.756 --123.15,47.42,0.395,1.747 --123.15,47.43,0.387,1.669 --123.15,47.44,0.373,1.538 --123.15,47.45,0.372,1.523 --123.15,47.46,0.351,1.324 --123.15,47.47,0.345,1.267 --123.15,47.48,0.329,1.114 --123.15,47.49,0.321,1.032 --123.15,47.50,0.31,0.933 --123.15,47.95,0.261,0.459 --123.15,47.96,0.275,0.588 --123.15,47.97,0.287,0.707 --123.15,47.98,0.31,0.93 --123.15,47.99,0.325,1.075 --123.15,48.00,0.348,1.297 --123.15,48.01,0.373,1.53 --123.15,48.02,0.397,1.766 --123.15,48.03,0.413,1.924 --123.15,48.04,0.434,2.126 --123.15,48.05,0.456,2.331 --123.15,48.06,0.471,2.475 --123.15,48.07,0.482,2.586 --123.15,48.08,0.496,2.714 --123.15,48.09,0.496,2.717 --123.15,48.10,0.512,2.874 --123.15,48.11,0.511,2.866 --123.15,48.12,0.517,2.921 --123.15,48.13,0.527,3.017 --123.15,48.14,0.527,3.013 --123.15,48.15,0.524,2.984 --123.15,48.16,0.508,2.837 --123.15,48.17,0.508,2.835 --123.15,48.18,0.509,2.839 --123.15,48.19,0.501,2.77 --123.15,48.20,0.497,2.728 --123.15,48.21,0.492,2.677 --123.15,48.22,0.492,2.68 --123.15,48.23,0.485,2.61 --123.15,48.24,0.474,2.509 --123.15,48.25,0.47,2.47 --123.15,48.26,0.467,2.437 --123.15,48.27,0.455,2.327 --123.14,47.13,0.309,0.919 --123.14,47.14,0.309,0.92 --123.14,47.15,0.321,1.031 --123.14,47.16,0.329,1.109 --123.14,47.17,0.329,1.109 --123.14,47.18,0.349,1.299 --123.14,47.19,0.349,1.304 --123.14,47.20,0.369,1.494 --123.14,47.21,0.37,1.504 --123.14,47.22,0.38,1.604 --123.14,47.23,0.392,1.716 --123.14,47.24,0.407,1.859 --123.14,47.25,0.414,1.928 --123.14,47.26,0.43,2.087 --123.14,47.27,0.436,2.138 --123.14,47.28,0.437,2.146 --123.14,47.29,0.439,2.172 --123.14,47.30,0.457,2.341 --123.14,47.31,0.457,2.342 --123.14,47.32,0.457,2.343 --123.14,47.33,0.456,2.337 --123.14,47.34,0.456,2.329 --123.14,47.35,0.455,2.321 --123.14,47.36,0.438,2.158 --123.14,47.37,0.434,2.126 --123.14,47.38,0.434,2.12 --123.14,47.39,0.433,2.113 --123.14,47.40,0.432,2.105 --123.14,47.41,0.421,1.993 --123.14,47.42,0.411,1.904 --123.14,47.43,0.41,1.895 --123.14,47.44,0.392,1.715 --123.14,47.45,0.388,1.68 --123.14,47.46,0.367,1.48 --123.14,47.47,0.361,1.423 --123.14,47.48,0.345,1.268 --123.14,47.49,0.336,1.183 --123.14,47.50,0.326,1.079 --123.14,47.51,0.313,0.958 --123.14,47.95,0.251,0.362 --123.14,47.96,0.269,0.53 --123.14,47.97,0.282,0.662 --123.14,47.98,0.3,0.831 --123.14,47.99,0.323,1.058 --123.14,48.00,0.346,1.278 --123.14,48.01,0.366,1.468 --123.14,48.02,0.391,1.703 --123.14,48.03,0.413,1.919 --123.14,48.04,0.425,2.031 --123.14,48.05,0.448,2.255 --123.14,48.06,0.465,2.417 --123.14,48.07,0.476,2.529 --123.14,48.08,0.494,2.698 --123.14,48.09,0.495,2.712 --123.14,48.10,0.512,2.871 --123.14,48.11,0.511,2.865 --123.14,48.12,0.517,2.921 --123.14,48.13,0.527,3.017 --123.14,48.14,0.527,3.015 --123.14,48.15,0.527,3.012 --123.14,48.16,0.517,2.923 --123.14,48.17,0.509,2.84 --123.14,48.18,0.509,2.844 --123.14,48.19,0.51,2.849 --123.14,48.20,0.51,2.853 --123.14,48.21,0.493,2.684 --123.14,48.22,0.493,2.687 --123.14,48.23,0.493,2.689 --123.14,48.24,0.486,2.625 --123.14,48.25,0.475,2.517 --123.14,48.26,0.475,2.515 --123.14,48.27,0.461,2.385 --123.14,48.28,0.455,2.327 --123.13,47.12,0.307,0.904 --123.13,47.13,0.317,0.993 --123.13,47.14,0.324,1.067 --123.13,47.15,0.325,1.068 --123.13,47.16,0.343,1.245 --123.13,47.17,0.344,1.258 --123.13,47.18,0.364,1.45 --123.13,47.19,0.364,1.452 --123.13,47.20,0.372,1.527 --123.13,47.21,0.386,1.657 --123.13,47.22,0.396,1.757 --123.13,47.23,0.408,1.868 --123.13,47.24,0.422,2.01 --123.13,47.25,0.43,2.079 --123.13,47.26,0.431,2.091 --123.13,47.27,0.451,2.283 --123.13,47.28,0.452,2.29 --123.13,47.29,0.452,2.297 --123.13,47.30,0.461,2.383 --123.13,47.31,0.472,2.484 --123.13,47.32,0.472,2.485 --123.13,47.33,0.471,2.481 --123.13,47.34,0.471,2.475 --123.13,47.35,0.47,2.47 --123.13,47.36,0.468,2.447 --123.13,47.37,0.45,2.277 --123.13,47.38,0.45,2.273 --123.13,47.39,0.449,2.268 --123.13,47.40,0.449,2.262 --123.13,47.41,0.437,2.151 --123.13,47.42,0.428,2.063 --123.13,47.43,0.427,2.055 --123.13,47.44,0.408,1.875 --123.13,47.45,0.405,1.84 --123.13,47.46,0.384,1.639 --123.13,47.47,0.378,1.584 --123.13,47.48,0.362,1.427 --123.13,47.49,0.353,1.34 --123.13,47.50,0.342,1.232 --123.13,47.51,0.329,1.107 --123.13,47.52,0.322,1.041 --123.13,47.95,0.25,0.354 --123.13,47.96,0.261,0.457 --123.13,47.97,0.276,0.603 --123.13,47.98,0.299,0.818 --123.13,47.99,0.322,1.044 --123.13,48.00,0.346,1.27 --123.13,48.01,0.351,1.319 --123.13,48.02,0.375,1.554 --123.13,48.03,0.4,1.79 --123.13,48.04,0.424,2.025 --123.13,48.05,0.447,2.243 --123.13,48.06,0.456,2.334 --123.13,48.07,0.473,2.493 --123.13,48.08,0.493,2.692 --123.13,48.09,0.495,2.708 --123.13,48.10,0.512,2.867 --123.13,48.11,0.511,2.863 --123.13,48.12,0.517,2.922 --123.13,48.13,0.527,3.02 --123.13,48.14,0.527,3.018 --123.13,48.15,0.527,3.016 --123.13,48.16,0.527,3.014 --123.13,48.17,0.511,2.866 --123.13,48.18,0.51,2.853 --123.13,48.19,0.51,2.855 --123.13,48.20,0.511,2.86 --123.13,48.21,0.506,2.81 --123.13,48.22,0.495,2.705 --123.13,48.23,0.494,2.696 --123.13,48.24,0.494,2.698 --123.13,48.25,0.481,2.569 --123.13,48.26,0.475,2.52 --123.13,48.27,0.475,2.515 --123.13,48.28,0.456,2.33 --123.12,47.11,0.313,0.956 --123.12,47.12,0.32,1.024 --123.12,47.13,0.32,1.025 --123.12,47.14,0.339,1.206 --123.12,47.15,0.34,1.215 --123.12,47.16,0.344,1.251 --123.12,47.17,0.36,1.408 --123.12,47.18,0.368,1.486 --123.12,47.19,0.38,1.605 --123.12,47.20,0.386,1.657 --123.12,47.21,0.402,1.81 --123.12,47.22,0.412,1.909 --123.12,47.23,0.423,2.02 --123.12,47.24,0.425,2.038 --123.12,47.25,0.445,2.227 --123.12,47.26,0.446,2.234 --123.12,47.27,0.466,2.428 --123.12,47.28,0.467,2.435 --123.12,47.29,0.467,2.441 --123.12,47.30,0.474,2.508 --123.12,47.31,0.487,2.629 --123.12,47.32,0.487,2.629 --123.12,47.33,0.486,2.626 --123.12,47.34,0.486,2.622 --123.12,47.35,0.486,2.619 --123.12,47.36,0.485,2.616 --123.12,47.37,0.466,2.43 --123.12,47.38,0.466,2.427 --123.12,47.39,0.465,2.424 --123.12,47.40,0.465,2.421 --123.12,47.41,0.465,2.417 --123.12,47.42,0.445,2.223 --123.12,47.43,0.444,2.216 --123.12,47.44,0.425,2.034 --123.12,47.45,0.421,1.999 --123.12,47.46,0.4,1.798 --123.12,47.47,0.395,1.742 --123.12,47.48,0.378,1.585 --123.12,47.49,0.369,1.494 --123.12,47.50,0.357,1.383 --123.12,47.51,0.344,1.256 --123.12,47.52,0.324,1.063 --123.12,47.53,0.32,1.021 --123.12,47.95,0.24,0.255 --123.12,47.96,0.257,0.423 --123.12,47.97,0.275,0.594 --123.12,47.98,0.283,0.665 --123.12,47.99,0.306,0.89 --123.12,48.00,0.33,1.122 --123.12,48.01,0.35,1.311 --123.12,48.02,0.374,1.547 --123.12,48.03,0.399,1.784 --123.12,48.04,0.423,2.019 --123.12,48.05,0.435,2.132 --123.12,48.06,0.454,2.317 --123.12,48.07,0.472,2.487 --123.12,48.08,0.493,2.686 --123.12,48.09,0.495,2.704 --123.12,48.10,0.511,2.864 --123.12,48.11,0.511,2.862 --123.12,48.12,0.517,2.923 --123.12,48.13,0.528,3.022 --123.12,48.14,0.528,3.021 --123.12,48.15,0.527,3.02 --123.12,48.16,0.527,3.019 --123.12,48.17,0.525,2.997 --123.12,48.18,0.524,2.985 --123.12,48.19,0.511,2.861 --123.12,48.20,0.511,2.866 --123.12,48.21,0.512,2.871 --123.12,48.22,0.509,2.842 --123.12,48.23,0.498,2.74 --123.12,48.24,0.495,2.705 --123.12,48.25,0.495,2.708 --123.12,48.26,0.476,2.526 --123.12,48.27,0.475,2.52 --123.12,48.28,0.469,2.455 --123.11,47.10,0.311,0.939 --123.11,47.11,0.316,0.983 --123.11,47.12,0.335,1.168 --123.11,47.13,0.335,1.171 --123.11,47.14,0.339,1.211 --123.11,47.15,0.355,1.363 --123.11,47.16,0.355,1.366 --123.11,47.17,0.374,1.542 --123.11,47.18,0.376,1.562 --123.11,47.19,0.391,1.708 --123.11,47.20,0.397,1.762 --123.11,47.21,0.417,1.955 --123.11,47.22,0.42,1.985 --123.11,47.23,0.439,2.171 --123.11,47.24,0.44,2.179 --123.11,47.25,0.456,2.336 --123.11,47.26,0.461,2.381 --123.11,47.27,0.481,2.574 --123.11,47.28,0.482,2.581 --123.11,47.29,0.482,2.586 --123.11,47.30,0.483,2.588 --123.11,47.31,0.494,2.699 --123.11,47.32,0.502,2.774 --123.11,47.33,0.502,2.772 --123.11,47.34,0.501,2.77 --123.11,47.35,0.493,2.692 --123.11,47.36,0.493,2.692 --123.11,47.37,0.482,2.583 --123.11,47.38,0.482,2.583 --123.11,47.39,0.482,2.582 --123.11,47.40,0.482,2.58 --123.11,47.41,0.473,2.496 --123.11,47.42,0.468,2.446 --123.11,47.43,0.461,2.377 --123.11,47.44,0.442,2.195 --123.11,47.45,0.438,2.159 --123.11,47.46,0.417,1.956 --123.11,47.47,0.411,1.901 --123.11,47.48,0.388,1.681 --123.11,47.49,0.385,1.648 --123.11,47.50,0.365,1.455 --123.11,47.51,0.36,1.405 --123.11,47.52,0.338,1.196 --123.11,47.53,0.332,1.144 --123.11,47.54,0.313,0.956 --123.11,47.95,0.239,0.25 --123.11,47.96,0.252,0.371 --123.11,47.97,0.264,0.488 --123.11,47.98,0.28,0.642 --123.11,47.99,0.3,0.835 --123.11,48.00,0.324,1.067 --123.11,48.01,0.349,1.303 --123.11,48.02,0.374,1.54 --123.11,48.03,0.39,1.7 --123.11,48.04,0.412,1.911 --123.11,48.05,0.435,2.128 --123.11,48.06,0.45,2.272 --123.11,48.07,0.471,2.481 --123.11,48.08,0.483,2.588 --123.11,48.09,0.493,2.691 --123.11,48.10,0.504,2.798 --123.11,48.11,0.511,2.862 --123.11,48.12,0.517,2.924 --123.11,48.13,0.528,3.025 --123.11,48.14,0.528,3.024 --123.11,48.15,0.528,3.024 --123.11,48.16,0.528,3.024 --123.11,48.17,0.528,3.025 --123.11,48.18,0.529,3.031 --123.11,48.19,0.519,2.935 --123.11,48.20,0.512,2.872 --123.11,48.21,0.513,2.877 --123.11,48.22,0.513,2.882 --123.11,48.23,0.513,2.88 --123.11,48.24,0.495,2.711 --123.11,48.25,0.496,2.715 --123.11,48.26,0.489,2.647 --123.11,48.27,0.476,2.524 --123.11,48.28,0.472,2.491 --123.10,47.10,0.312,0.943 --123.10,47.11,0.331,1.129 --123.10,47.12,0.335,1.172 --123.10,47.13,0.351,1.318 --123.10,47.14,0.351,1.32 --123.10,47.15,0.362,1.427 --123.10,47.16,0.371,1.515 --123.10,47.17,0.387,1.665 --123.10,47.18,0.392,1.713 --123.10,47.19,0.395,1.743 --123.10,47.20,0.413,1.915 --123.10,47.21,0.42,1.991 --123.10,47.22,0.434,2.123 --123.10,47.23,0.446,2.24 --123.10,47.24,0.455,2.327 --123.10,47.25,0.472,2.483 --123.10,47.26,0.476,2.528 --123.10,47.27,0.494,2.694 --123.10,47.28,0.497,2.727 --123.10,47.29,0.497,2.732 --123.10,47.30,0.498,2.734 --123.10,47.31,0.498,2.735 --123.10,47.32,0.506,2.81 --123.10,47.33,0.514,2.888 --123.10,47.34,0.514,2.887 --123.10,47.35,0.5,2.754 --123.10,47.36,0.498,2.736 --123.10,47.37,0.498,2.738 --123.10,47.38,0.498,2.739 --123.10,47.39,0.498,2.74 --123.10,47.40,0.498,2.74 --123.10,47.41,0.487,2.632 --123.10,47.42,0.478,2.544 --123.10,47.43,0.477,2.539 --123.10,47.44,0.458,2.355 --123.10,47.45,0.455,2.319 --123.10,47.46,0.433,2.114 --123.10,47.47,0.428,2.059 --123.10,47.48,0.404,1.837 --123.10,47.49,0.39,1.699 --123.10,47.50,0.378,1.587 --123.10,47.51,0.365,1.457 --123.10,47.52,0.353,1.342 --123.10,47.53,0.344,1.254 --123.10,47.54,0.328,1.1 --123.10,47.55,0.308,0.905 --123.10,47.95,0.239,0.245 --123.10,47.96,0.246,0.315 --123.10,47.97,0.259,0.439 --123.10,47.98,0.276,0.6 --123.10,47.99,0.299,0.824 --123.10,48.00,0.323,1.057 --123.10,48.01,0.345,1.262 --123.10,48.02,0.367,1.48 --123.10,48.03,0.39,1.694 --123.10,48.04,0.402,1.811 --123.10,48.05,0.426,2.046 --123.10,48.06,0.449,2.267 --123.10,48.07,0.471,2.476 --123.10,48.08,0.475,2.512 --123.10,48.09,0.493,2.687 --123.10,48.10,0.496,2.716 --123.10,48.11,0.511,2.861 --123.10,48.12,0.518,2.925 --123.10,48.13,0.528,3.027 --123.10,48.14,0.528,3.027 --123.10,48.15,0.528,3.028 --123.10,48.16,0.528,3.028 --123.10,48.17,0.528,3.03 --123.10,48.18,0.529,3.037 --123.10,48.19,0.53,3.045 --123.10,48.20,0.513,2.883 --123.10,48.21,0.513,2.883 --123.10,48.22,0.514,2.889 --123.10,48.23,0.514,2.893 --123.10,48.24,0.507,2.825 --123.10,48.25,0.496,2.721 --123.10,48.26,0.496,2.719 --123.10,48.27,0.481,2.578 --123.10,48.28,0.476,2.521 --123.09,47.09,0.326,1.085 --123.09,47.10,0.326,1.086 --123.09,47.11,0.333,1.154 --123.09,47.12,0.346,1.275 --123.09,47.13,0.357,1.385 --123.09,47.14,0.366,1.467 --123.09,47.15,0.366,1.471 --123.09,47.16,0.385,1.646 --123.09,47.17,0.387,1.671 --123.09,47.18,0.407,1.864 --123.09,47.19,0.41,1.895 --123.09,47.20,0.428,2.067 --123.09,47.21,0.436,2.142 --123.09,47.22,0.45,2.273 --123.09,47.23,0.462,2.389 --123.09,47.24,0.471,2.476 --123.09,47.25,0.487,2.632 --123.09,47.26,0.492,2.676 --123.09,47.27,0.494,2.7 --123.09,47.28,0.512,2.875 --123.09,47.29,0.513,2.88 --123.09,47.30,0.513,2.882 --123.09,47.31,0.513,2.882 --123.09,47.32,0.513,2.883 --123.09,47.33,0.515,2.897 --123.09,47.34,0.515,2.897 --123.09,47.35,0.515,2.9 --123.09,47.36,0.514,2.89 --123.09,47.37,0.514,2.893 --123.09,47.38,0.515,2.896 --123.09,47.39,0.515,2.899 --123.09,47.40,0.515,2.901 --123.09,47.41,0.504,2.794 --123.09,47.42,0.495,2.706 --123.09,47.43,0.494,2.701 --123.09,47.44,0.475,2.517 --123.09,47.45,0.471,2.48 --123.09,47.46,0.45,2.274 --123.09,47.47,0.444,2.218 --123.09,47.48,0.421,1.994 --123.09,47.49,0.406,1.853 --123.09,47.50,0.394,1.738 --123.09,47.51,0.372,1.523 --123.09,47.52,0.365,1.456 --123.09,47.53,0.346,1.277 --123.09,47.54,0.343,1.244 --123.09,47.55,0.323,1.049 --123.09,47.56,0.317,1.0 --123.09,47.95,0.229,0.146 --123.09,47.96,0.239,0.241 --123.09,47.97,0.253,0.378 --123.09,47.98,0.275,0.588 --123.09,47.99,0.298,0.811 --123.09,48.00,0.322,1.043 --123.09,48.01,0.344,1.252 --123.09,48.02,0.351,1.327 --123.09,48.03,0.376,1.565 --123.09,48.04,0.401,1.805 --123.09,48.05,0.426,2.041 --123.09,48.06,0.449,2.261 --123.09,48.07,0.47,2.466 --123.09,48.08,0.474,2.507 --123.09,48.09,0.492,2.683 --123.09,48.10,0.496,2.714 --123.09,48.11,0.511,2.86 --123.09,48.12,0.517,2.921 --123.09,48.13,0.528,3.029 --123.09,48.14,0.528,3.03 --123.09,48.15,0.529,3.032 --123.09,48.16,0.529,3.033 --123.09,48.17,0.529,3.036 --123.09,48.18,0.53,3.043 --123.09,48.19,0.531,3.051 --123.09,48.20,0.527,3.019 --123.09,48.21,0.514,2.89 --123.09,48.22,0.514,2.895 --123.09,48.23,0.515,2.9 --123.09,48.24,0.515,2.905 --123.09,48.25,0.501,2.762 --123.09,48.26,0.497,2.725 --123.09,48.27,0.495,2.711 --123.09,48.28,0.476,2.525 --123.09,48.29,0.47,2.471 --123.08,47.08,0.322,1.043 --123.08,47.09,0.329,1.115 --123.08,47.10,0.341,1.231 --123.08,47.11,0.342,1.233 --123.08,47.12,0.356,1.367 --123.08,47.13,0.362,1.424 --123.08,47.14,0.38,1.602 --123.08,47.15,0.382,1.62 --123.08,47.16,0.398,1.777 --123.08,47.17,0.403,1.819 --123.08,47.18,0.423,2.016 --123.08,47.19,0.426,2.047 --123.08,47.20,0.444,2.219 --123.08,47.21,0.452,2.293 --123.08,47.22,0.465,2.423 --123.08,47.23,0.466,2.43 --123.08,47.24,0.486,2.626 --123.08,47.25,0.489,2.655 --123.08,47.26,0.507,2.826 --123.08,47.27,0.508,2.831 --123.08,47.28,0.517,2.921 --123.08,47.29,0.528,3.029 --123.08,47.30,0.529,3.031 --123.08,47.31,0.529,3.032 --123.08,47.32,0.529,3.032 --123.08,47.33,0.529,3.033 --123.08,47.34,0.529,3.035 --123.08,47.35,0.53,3.04 --123.08,47.36,0.53,3.045 --123.08,47.37,0.531,3.05 --123.08,47.38,0.531,3.055 --123.08,47.39,0.531,3.059 --123.08,47.40,0.523,2.976 --123.08,47.41,0.518,2.931 --123.08,47.42,0.512,2.869 --123.08,47.43,0.511,2.864 --123.08,47.44,0.492,2.677 --123.08,47.45,0.488,2.641 --123.08,47.46,0.464,2.413 --123.08,47.47,0.451,2.285 --123.08,47.48,0.437,2.15 --123.08,47.49,0.414,1.926 --123.08,47.50,0.407,1.861 --123.08,47.51,0.387,1.671 --123.08,47.52,0.366,1.467 --123.08,47.53,0.361,1.421 --123.08,47.54,0.344,1.26 --123.08,47.55,0.336,1.175 --123.08,47.56,0.319,1.015 --123.08,47.57,0.303,0.859 --123.08,47.95,0.228,0.143 --123.08,47.96,0.238,0.237 --123.08,47.97,0.252,0.373 --123.08,47.98,0.274,0.581 --123.08,47.99,0.297,0.804 --123.08,48.00,0.32,1.029 --123.08,48.01,0.331,1.133 --123.08,48.02,0.351,1.324 --123.08,48.03,0.376,1.562 --123.08,48.04,0.401,1.802 --123.08,48.05,0.425,2.037 --123.08,48.06,0.448,2.257 --123.08,48.07,0.456,2.333 --123.08,48.08,0.474,2.504 --123.08,48.09,0.492,2.68 --123.08,48.10,0.495,2.712 --123.08,48.11,0.511,2.859 --123.08,48.12,0.511,2.865 --123.08,48.13,0.524,2.985 --123.08,48.14,0.529,3.033 --123.08,48.15,0.529,3.035 --123.08,48.16,0.529,3.037 --123.08,48.17,0.53,3.041 --123.08,48.18,0.53,3.049 --123.08,48.19,0.531,3.057 --123.08,48.20,0.532,3.065 --123.08,48.21,0.522,2.968 --123.08,48.22,0.515,2.901 --123.08,48.23,0.516,2.906 --123.08,48.24,0.516,2.912 --123.08,48.25,0.501,2.767 --123.08,48.26,0.497,2.729 --123.08,48.27,0.496,2.715 --123.08,48.28,0.476,2.527 --123.08,48.29,0.471,2.473 --123.07,47.08,0.328,1.098 --123.07,47.09,0.337,1.189 --123.07,47.10,0.351,1.326 --123.07,47.11,0.357,1.379 --123.07,47.12,0.364,1.449 --123.07,47.13,0.377,1.572 --123.07,47.14,0.381,1.607 --123.07,47.15,0.397,1.77 --123.07,47.16,0.406,1.848 --123.07,47.17,0.418,1.971 --123.07,47.18,0.431,2.092 --123.07,47.19,0.439,2.173 --123.07,47.20,0.456,2.336 --123.07,47.21,0.461,2.377 --123.07,47.22,0.481,2.574 --123.07,47.23,0.482,2.581 --123.07,47.24,0.496,2.717 --123.07,47.25,0.503,2.783 --123.07,47.26,0.521,2.959 --123.07,47.27,0.523,2.982 --123.07,47.28,0.524,2.987 --123.07,47.29,0.54,3.143 --123.07,47.30,0.544,3.181 --123.07,47.31,0.544,3.182 --123.07,47.32,0.544,3.183 --123.07,47.33,0.544,3.183 --123.07,47.34,0.545,3.186 --123.07,47.35,0.545,3.191 --123.07,47.36,0.546,3.198 --123.07,47.37,0.547,3.204 --123.07,47.38,0.547,3.209 --123.07,47.39,0.541,3.154 --123.07,47.40,0.54,3.139 --123.07,47.41,0.529,3.034 --123.07,47.42,0.529,3.033 --123.07,47.43,0.519,2.938 --123.07,47.44,0.509,2.838 --123.07,47.45,0.496,2.713 --123.07,47.46,0.481,2.572 --123.07,47.47,0.457,2.344 --123.07,47.48,0.451,2.283 --123.07,47.49,0.43,2.08 --123.07,47.50,0.409,1.876 --123.07,47.51,0.403,1.821 --123.07,47.52,0.38,1.603 --123.07,47.53,0.366,1.463 --123.07,47.54,0.354,1.354 --123.07,47.55,0.344,1.255 --123.07,47.56,0.328,1.106 --123.07,47.57,0.306,0.891 --123.07,47.58,0.302,0.854 --123.07,47.95,0.228,0.143 --123.07,47.96,0.238,0.237 --123.07,47.97,0.252,0.374 --123.07,47.98,0.274,0.582 --123.07,47.99,0.297,0.806 --123.07,48.00,0.312,0.947 --123.07,48.01,0.327,1.089 --123.07,48.02,0.351,1.327 --123.07,48.03,0.376,1.563 --123.07,48.04,0.401,1.801 --123.07,48.05,0.425,2.035 --123.07,48.06,0.448,2.256 --123.07,48.07,0.455,2.32 --123.07,48.08,0.473,2.492 --123.07,48.09,0.492,2.68 --123.07,48.10,0.495,2.712 --123.07,48.11,0.511,2.859 --123.07,48.12,0.511,2.865 --123.07,48.13,0.52,2.949 --123.07,48.14,0.529,3.035 --123.07,48.15,0.529,3.038 --123.07,48.16,0.53,3.04 --123.07,48.17,0.53,3.045 --123.07,48.18,0.531,3.053 --123.07,48.19,0.532,3.062 --123.07,48.20,0.533,3.07 --123.07,48.21,0.527,3.012 --123.07,48.22,0.516,2.906 --123.07,48.23,0.516,2.912 --123.07,48.24,0.517,2.917 --123.07,48.25,0.512,2.87 --123.07,48.26,0.498,2.733 --123.07,48.27,0.496,2.717 --123.07,48.28,0.476,2.528 --123.07,48.29,0.471,2.473 --123.06,47.07,0.326,1.081 --123.06,47.08,0.333,1.147 --123.06,47.09,0.349,1.307 --123.06,47.10,0.352,1.335 --123.06,47.11,0.372,1.525 --123.06,47.12,0.376,1.564 --123.06,47.13,0.392,1.721 --123.06,47.14,0.393,1.725 --123.06,47.15,0.407,1.861 --123.06,47.16,0.414,1.925 --123.06,47.17,0.432,2.105 --123.06,47.18,0.435,2.132 --123.06,47.19,0.455,2.325 --123.06,47.20,0.461,2.377 --123.06,47.21,0.476,2.529 --123.06,47.22,0.486,2.624 --123.06,47.23,0.498,2.733 --123.06,47.24,0.512,2.87 --123.06,47.25,0.519,2.935 --123.06,47.26,0.533,3.077 --123.06,47.27,0.539,3.135 --123.06,47.28,0.54,3.139 --123.06,47.29,0.541,3.152 --123.06,47.30,0.556,3.297 --123.06,47.31,0.556,3.298 --123.06,47.32,0.56,3.333 --123.06,47.33,0.556,3.299 --123.06,47.34,0.557,3.302 --123.06,47.35,0.557,3.308 --123.06,47.36,0.558,3.314 --123.06,47.37,0.559,3.319 --123.06,47.38,0.559,3.325 --123.06,47.39,0.557,3.306 --123.06,47.40,0.545,3.19 --123.06,47.41,0.542,3.16 --123.06,47.42,0.542,3.159 --123.06,47.43,0.529,3.035 --123.06,47.44,0.519,2.937 --123.06,47.45,0.501,2.766 --123.06,47.46,0.495,2.712 --123.06,47.47,0.474,2.502 --123.06,47.48,0.452,2.297 --123.06,47.49,0.446,2.236 --123.06,47.50,0.423,2.012 --123.06,47.51,0.408,1.873 --123.06,47.52,0.396,1.753 --123.06,47.53,0.373,1.535 --123.06,47.54,0.365,1.46 --123.06,47.55,0.347,1.285 --123.06,47.56,0.34,1.213 --123.06,47.57,0.321,1.037 --123.06,47.58,0.303,0.861 --123.06,47.59,0.296,0.79 --123.06,47.95,0.228,0.144 --123.06,47.96,0.238,0.24 --123.06,47.97,0.253,0.377 --123.06,47.98,0.275,0.587 --123.06,47.99,0.298,0.813 --123.06,48.00,0.303,0.86 --123.06,48.01,0.327,1.096 --123.06,48.02,0.352,1.332 --123.06,48.03,0.376,1.568 --123.06,48.04,0.401,1.803 --123.06,48.05,0.425,2.035 --123.06,48.06,0.448,2.255 --123.06,48.07,0.455,2.32 --123.06,48.08,0.473,2.492 --123.06,48.09,0.492,2.68 --123.06,48.10,0.495,2.712 --123.06,48.11,0.511,2.859 --123.06,48.12,0.511,2.865 --123.06,48.13,0.52,2.949 --123.06,48.14,0.529,3.037 --123.06,48.15,0.53,3.04 --123.06,48.16,0.53,3.043 --123.06,48.17,0.53,3.048 --123.06,48.18,0.531,3.057 --123.06,48.19,0.532,3.066 --123.06,48.20,0.533,3.075 --123.06,48.21,0.532,3.066 --123.06,48.22,0.516,2.911 --123.06,48.23,0.517,2.916 --123.06,48.24,0.517,2.922 --123.06,48.25,0.518,2.927 --123.06,48.26,0.499,2.75 --123.06,48.27,0.496,2.719 --123.06,48.28,0.476,2.528 --123.06,48.29,0.471,2.473 --123.05,47.06,0.324,1.064 --123.05,47.07,0.328,1.106 --123.05,47.08,0.347,1.288 --123.05,47.09,0.35,1.311 --123.05,47.10,0.367,1.481 --123.05,47.11,0.374,1.545 --123.05,47.12,0.388,1.676 --123.05,47.13,0.399,1.783 --123.05,47.14,0.408,1.875 --123.05,47.15,0.423,2.012 --123.05,47.16,0.429,2.076 --123.05,47.17,0.448,2.256 --123.05,47.18,0.451,2.283 --123.05,47.19,0.471,2.476 --123.05,47.20,0.476,2.529 --123.05,47.21,0.492,2.681 --123.05,47.22,0.502,2.776 --123.05,47.23,0.513,2.886 --123.05,47.24,0.528,3.023 --123.05,47.25,0.535,3.089 --123.05,47.26,0.535,3.094 --123.05,47.27,0.555,3.286 --123.05,47.28,0.555,3.29 --123.05,47.29,0.556,3.294 --123.05,47.30,0.557,3.307 --123.05,47.31,0.557,3.308 --123.05,47.32,0.568,3.412 --123.05,47.33,0.563,3.361 --123.05,47.34,0.558,3.315 --123.05,47.35,0.559,3.321 --123.05,47.36,0.559,3.327 --123.05,47.37,0.56,3.333 --123.05,47.38,0.561,3.339 --123.05,47.39,0.561,3.346 --123.05,47.40,0.561,3.343 --123.05,47.41,0.551,3.248 --123.05,47.42,0.544,3.175 --123.05,47.43,0.543,3.165 --123.05,47.44,0.522,2.963 --123.05,47.45,0.518,2.928 --123.05,47.46,0.497,2.724 --123.05,47.47,0.49,2.661 --123.05,47.48,0.466,2.433 --123.05,47.49,0.452,2.295 --123.05,47.50,0.439,2.168 --123.05,47.51,0.416,1.945 --123.05,47.52,0.408,1.868 --123.05,47.53,0.389,1.684 --123.05,47.54,0.366,1.471 --123.05,47.55,0.362,1.432 --123.05,47.56,0.341,1.223 --123.05,47.57,0.324,1.064 --123.05,47.58,0.314,0.966 --123.05,47.59,0.302,0.855 --123.05,47.60,0.288,0.719 --123.05,47.95,0.229,0.146 --123.05,47.96,0.239,0.242 --123.05,47.97,0.253,0.381 --123.05,47.98,0.275,0.592 --123.05,47.99,0.299,0.819 --123.05,48.00,0.304,0.866 --123.05,48.01,0.328,1.103 --123.05,48.02,0.353,1.338 --123.05,48.03,0.377,1.572 --123.05,48.04,0.401,1.805 --123.05,48.05,0.425,2.036 --123.05,48.06,0.448,2.254 --123.05,48.07,0.455,2.319 --123.05,48.08,0.473,2.492 --123.05,48.09,0.492,2.681 --123.05,48.10,0.495,2.711 --123.05,48.11,0.511,2.86 --123.05,48.12,0.511,2.864 --123.05,48.13,0.52,2.949 --123.05,48.14,0.529,3.038 --123.05,48.15,0.53,3.042 --123.05,48.16,0.53,3.046 --123.05,48.17,0.531,3.052 --123.05,48.18,0.532,3.061 --123.05,48.19,0.533,3.071 --123.05,48.20,0.534,3.081 --123.05,48.21,0.535,3.09 --123.05,48.22,0.526,3.011 --123.05,48.23,0.517,2.921 --123.05,48.24,0.518,2.927 --123.05,48.25,0.518,2.932 --123.05,48.26,0.5,2.753 --123.05,48.27,0.496,2.721 --123.05,48.28,0.476,2.528 --123.05,48.29,0.471,2.473 --123.05,48.30,0.455,2.323 --123.04,47.06,0.325,1.069 --123.04,47.07,0.343,1.247 --123.04,47.08,0.348,1.292 --123.04,47.09,0.363,1.436 --123.04,47.10,0.372,1.524 --123.04,47.11,0.383,1.631 --123.04,47.12,0.397,1.763 --123.04,47.13,0.404,1.83 --123.04,47.14,0.422,2.004 --123.04,47.15,0.425,2.031 --123.04,47.16,0.445,2.227 --123.04,47.17,0.45,2.275 --123.04,47.18,0.466,2.431 --123.04,47.19,0.476,2.521 --123.04,47.20,0.487,2.635 --123.04,47.21,0.501,2.768 --123.04,47.22,0.509,2.841 --123.04,47.23,0.527,3.016 --123.04,47.24,0.53,3.047 --123.04,47.25,0.55,3.241 --123.04,47.26,0.551,3.245 --123.04,47.27,0.557,3.309 --123.04,47.28,0.571,3.44 --123.04,47.29,0.572,3.444 --123.04,47.30,0.572,3.446 --123.04,47.31,0.572,3.447 --123.04,47.32,0.572,3.449 --123.04,47.33,0.578,3.506 --123.04,47.34,0.573,3.455 --123.04,47.35,0.573,3.461 --123.04,47.36,0.574,3.467 --123.04,47.37,0.575,3.474 --123.04,47.38,0.571,3.44 --123.04,47.39,0.563,3.36 --123.04,47.40,0.563,3.367 --123.04,47.41,0.564,3.374 --123.04,47.42,0.559,3.32 --123.04,47.43,0.544,3.179 --123.04,47.44,0.539,3.129 --123.04,47.45,0.52,2.949 --123.04,47.46,0.51,2.857 --123.04,47.47,0.492,2.683 --123.04,47.48,0.475,2.517 --123.04,47.49,0.459,2.363 --123.04,47.50,0.441,2.192 --123.04,47.51,0.431,2.09 --123.04,47.52,0.409,1.884 --123.04,47.53,0.391,1.704 --123.04,47.54,0.381,1.615 --123.04,47.55,0.366,1.466 --123.04,47.56,0.355,1.362 --123.04,47.57,0.333,1.145 --123.04,47.58,0.323,1.058 --123.04,47.59,0.306,0.894 --123.04,47.60,0.289,0.731 --123.04,47.61,0.281,0.653 --123.04,47.95,0.229,0.147 --123.04,47.96,0.239,0.245 --123.04,47.97,0.253,0.384 --123.04,47.98,0.276,0.597 --123.04,47.99,0.299,0.825 --123.04,48.00,0.318,1.003 --123.04,48.01,0.329,1.108 --123.04,48.02,0.353,1.343 --123.04,48.03,0.377,1.574 --123.04,48.04,0.401,1.806 --123.04,48.05,0.425,2.035 --123.04,48.06,0.448,2.254 --123.04,48.07,0.455,2.319 --123.04,48.08,0.473,2.492 --123.04,48.09,0.492,2.681 --123.04,48.10,0.495,2.711 --123.04,48.11,0.511,2.86 --123.04,48.12,0.511,2.864 --123.04,48.13,0.52,2.95 --123.04,48.14,0.53,3.04 --123.04,48.15,0.53,3.045 --123.04,48.16,0.531,3.05 --123.04,48.17,0.531,3.055 --123.04,48.18,0.532,3.066 --123.04,48.19,0.533,3.076 --123.04,48.20,0.534,3.086 --123.04,48.21,0.535,3.096 --123.04,48.22,0.527,3.017 --123.04,48.23,0.518,2.927 --123.04,48.24,0.518,2.932 --123.04,48.25,0.519,2.937 --123.04,48.26,0.5,2.756 --123.04,48.27,0.496,2.722 --123.04,48.28,0.476,2.529 --123.04,48.29,0.47,2.472 --123.04,48.30,0.448,2.258 --123.03,47.05,0.323,1.051 --123.03,47.06,0.339,1.205 --123.03,47.07,0.346,1.273 --123.03,47.08,0.358,1.391 --123.03,47.09,0.37,1.503 --123.03,47.10,0.378,1.586 --123.03,47.11,0.394,1.741 --123.03,47.12,0.406,1.852 --123.03,47.13,0.419,1.979 --123.03,47.14,0.431,2.095 --123.03,47.15,0.44,2.181 --123.03,47.16,0.457,2.34 --123.03,47.17,0.461,2.384 --123.03,47.18,0.482,2.582 --123.03,47.19,0.485,2.614 --123.03,47.20,0.503,2.788 --123.03,47.21,0.511,2.862 --123.03,47.22,0.525,2.995 --123.03,47.23,0.528,3.025 --123.03,47.24,0.546,3.199 --123.03,47.25,0.553,3.267 --123.03,47.26,0.566,3.395 --123.03,47.27,0.567,3.399 --123.03,47.28,0.578,3.505 --123.03,47.29,0.578,3.509 --123.03,47.30,0.578,3.511 --123.03,47.31,0.579,3.512 --123.03,47.32,0.579,3.514 --123.03,47.33,0.579,3.516 --123.03,47.34,0.579,3.52 --123.03,47.35,0.58,3.526 --123.03,47.36,0.581,3.532 --123.03,47.37,0.581,3.538 --123.03,47.38,0.582,3.544 --123.03,47.39,0.566,3.393 --123.03,47.40,0.565,3.378 --123.03,47.41,0.565,3.384 --123.03,47.42,0.565,3.384 --123.03,47.43,0.549,3.231 --123.03,47.44,0.544,3.175 --123.03,47.45,0.521,2.96 --123.03,47.46,0.518,2.925 --123.03,47.47,0.498,2.736 --123.03,47.48,0.479,2.556 --123.03,47.49,0.466,2.432 --123.03,47.50,0.452,2.293 --123.03,47.51,0.432,2.105 --123.03,47.52,0.424,2.029 --123.03,47.53,0.401,1.804 --123.03,47.54,0.388,1.676 --123.03,47.55,0.374,1.545 --123.03,47.56,0.361,1.423 --123.03,47.57,0.345,1.263 --123.03,47.58,0.325,1.073 --123.03,47.59,0.321,1.038 --123.03,47.60,0.299,0.821 --123.03,47.61,0.282,0.658 --123.03,47.62,0.273,0.572 --123.03,47.93,0.219,0.049 --123.03,47.94,0.226,0.124 --123.03,47.95,0.229,0.148 --123.03,47.96,0.249,0.338 --123.03,47.97,0.254,0.387 --123.03,47.98,0.276,0.601 --123.03,47.99,0.3,0.83 --123.03,48.00,0.325,1.069 --123.03,48.01,0.339,1.207 --123.03,48.02,0.358,1.388 --123.03,48.03,0.378,1.578 --123.03,48.04,0.401,1.808 --123.03,48.05,0.425,2.036 --123.03,48.06,0.448,2.254 --123.03,48.07,0.455,2.319 --123.03,48.08,0.473,2.493 --123.03,48.09,0.492,2.682 --123.03,48.10,0.495,2.712 --123.03,48.11,0.511,2.861 --123.03,48.12,0.511,2.864 --123.03,48.13,0.52,2.951 --123.03,48.14,0.53,3.042 --123.03,48.15,0.53,3.047 --123.03,48.16,0.531,3.053 --123.03,48.17,0.531,3.059 --123.03,48.18,0.533,3.07 --123.03,48.19,0.534,3.081 --123.03,48.20,0.535,3.091 --123.03,48.21,0.536,3.101 --123.03,48.22,0.528,3.021 --123.03,48.23,0.518,2.93 --123.03,48.24,0.519,2.935 --123.03,48.25,0.519,2.94 --123.03,48.26,0.5,2.758 --123.03,48.27,0.497,2.723 --123.03,48.28,0.476,2.528 --123.03,48.29,0.47,2.471 --123.03,48.30,0.448,2.256 --123.02,47.04,0.32,1.024 --123.02,47.05,0.334,1.161 --123.02,47.06,0.344,1.252 --123.02,47.07,0.353,1.346 --123.02,47.08,0.367,1.481 --123.02,47.09,0.374,1.545 --123.02,47.10,0.393,1.731 --123.02,47.11,0.399,1.785 --123.02,47.12,0.417,1.961 --123.02,47.13,0.435,2.128 --123.02,47.14,0.443,2.206 --123.02,47.15,0.456,2.331 --123.02,47.16,0.468,2.451 --123.02,47.17,0.477,2.535 --123.02,47.18,0.494,2.697 --123.02,47.19,0.498,2.74 --123.02,47.20,0.519,2.94 --123.02,47.21,0.523,2.975 --123.02,47.22,0.541,3.147 --123.02,47.23,0.541,3.154 --123.02,47.24,0.555,3.288 --123.02,47.25,0.562,3.353 --123.02,47.26,0.576,3.486 --123.02,47.27,0.578,3.511 --123.02,47.28,0.583,3.552 --123.02,47.29,0.583,3.555 --123.02,47.30,0.583,3.557 --123.02,47.31,0.583,3.559 --123.02,47.32,0.584,3.561 --123.02,47.33,0.584,3.563 --123.02,47.34,0.584,3.567 --123.02,47.35,0.581,3.533 --123.02,47.36,0.581,3.539 --123.02,47.37,0.582,3.544 --123.02,47.38,0.582,3.549 --123.02,47.39,0.581,3.534 --123.02,47.40,0.565,3.381 --123.02,47.41,0.566,3.387 --123.02,47.42,0.566,3.387 --123.02,47.43,0.55,3.234 --123.02,47.44,0.544,3.179 --123.02,47.45,0.526,3.007 --123.02,47.46,0.518,2.931 --123.02,47.47,0.499,2.742 --123.02,47.48,0.491,2.668 --123.02,47.49,0.472,2.482 --123.02,47.50,0.455,2.319 --123.02,47.51,0.44,2.182 --123.02,47.52,0.431,2.097 --123.02,47.53,0.413,1.915 --123.02,47.54,0.393,1.731 --123.02,47.55,0.385,1.653 --123.02,47.56,0.366,1.471 --123.02,47.57,0.346,1.272 --123.02,47.58,0.34,1.219 --123.02,47.59,0.323,1.057 --123.02,47.60,0.31,0.925 --123.02,47.61,0.291,0.748 --123.02,47.62,0.281,0.649 --123.02,47.63,0.265,0.497 --123.02,47.92,0.219,0.049 --123.02,47.93,0.219,0.049 --123.02,47.94,0.226,0.125 --123.02,47.95,0.239,0.245 --123.02,47.96,0.251,0.365 --123.02,47.97,0.264,0.487 --123.02,47.98,0.276,0.606 --123.02,47.99,0.3,0.836 --123.02,48.00,0.325,1.075 --123.02,48.01,0.35,1.311 --123.02,48.02,0.373,1.535 --123.02,48.03,0.382,1.625 --123.02,48.04,0.402,1.811 --123.02,48.05,0.425,2.037 --123.02,48.06,0.448,2.255 --123.02,48.07,0.459,2.362 --123.02,48.08,0.473,2.495 --123.02,48.09,0.493,2.685 --123.02,48.10,0.496,2.713 --123.02,48.11,0.511,2.862 --123.02,48.12,0.511,2.865 --123.02,48.13,0.52,2.952 --123.02,48.14,0.53,3.044 --123.02,48.15,0.531,3.05 --123.02,48.16,0.531,3.056 --123.02,48.17,0.532,3.062 --123.02,48.18,0.533,3.073 --123.02,48.19,0.534,3.084 --123.02,48.20,0.535,3.094 --123.02,48.21,0.532,3.06 --123.02,48.22,0.528,3.023 --123.02,48.23,0.518,2.931 --123.02,48.24,0.519,2.935 --123.02,48.25,0.514,2.894 --123.02,48.26,0.5,2.757 --123.02,48.27,0.496,2.721 --123.02,48.28,0.476,2.526 --123.02,48.29,0.47,2.469 --123.02,48.30,0.448,2.253 --123.01,47.03,0.316,0.988 --123.01,47.04,0.329,1.108 --123.01,47.05,0.341,1.228 --123.01,47.06,0.349,1.299 --123.01,47.07,0.365,1.458 --123.01,47.08,0.369,1.492 --123.01,47.09,0.389,1.689 --123.01,47.10,0.409,1.878 --123.01,47.11,0.414,1.932 --123.01,47.12,0.43,2.081 --123.01,47.13,0.44,2.183 --123.01,47.14,0.451,2.284 --123.01,47.15,0.466,2.428 --123.01,47.16,0.472,2.487 --123.01,47.17,0.492,2.675 --123.01,47.18,0.494,2.703 --123.01,47.19,0.514,2.892 --123.01,47.20,0.52,2.952 --123.01,47.21,0.536,3.099 --123.01,47.22,0.546,3.2 --123.01,47.23,0.557,3.303 --123.01,47.24,0.571,3.436 --123.01,47.25,0.577,3.501 --123.01,47.26,0.578,3.504 --123.01,47.27,0.579,3.516 --123.01,47.28,0.598,3.698 --123.01,47.29,0.598,3.701 --123.01,47.30,0.598,3.703 --123.01,47.31,0.599,3.705 --123.01,47.32,0.599,3.707 --123.01,47.33,0.599,3.708 --123.01,47.34,0.599,3.71 --123.01,47.35,0.583,3.55 --123.01,47.36,0.581,3.539 --123.01,47.37,0.582,3.543 --123.01,47.38,0.582,3.547 --123.01,47.39,0.583,3.551 --123.01,47.40,0.574,3.47 --123.01,47.41,0.565,3.379 --123.01,47.42,0.565,3.378 --123.01,47.43,0.549,3.226 --123.01,47.44,0.543,3.172 --123.01,47.45,0.541,3.155 --123.01,47.46,0.518,2.929 --123.01,47.47,0.499,2.742 --123.01,47.48,0.491,2.669 --123.01,47.49,0.476,2.526 --123.01,47.50,0.463,2.405 --123.01,47.51,0.441,2.188 --123.01,47.52,0.432,2.106 --123.01,47.53,0.413,1.924 --123.01,47.54,0.409,1.881 --123.01,47.55,0.386,1.663 --123.01,47.56,0.367,1.479 --123.01,47.57,0.359,1.402 --123.01,47.58,0.345,1.265 --123.01,47.59,0.333,1.145 --123.01,47.60,0.31,0.932 --123.01,47.61,0.302,0.851 --123.01,47.62,0.284,0.674 --123.01,47.63,0.28,0.638 --123.01,47.64,0.259,0.442 --123.01,47.92,0.219,0.049 --123.01,47.93,0.219,0.05 --123.01,47.94,0.227,0.126 --123.01,47.95,0.239,0.247 --123.01,47.96,0.252,0.369 --123.01,47.97,0.274,0.585 --123.01,47.98,0.28,0.639 --123.01,47.99,0.301,0.842 --123.01,48.00,0.326,1.081 --123.01,48.01,0.35,1.317 --123.01,48.02,0.374,1.548 --123.01,48.03,0.398,1.772 --123.01,48.04,0.412,1.906 --123.01,48.05,0.426,2.04 --123.01,48.06,0.448,2.258 --123.01,48.07,0.47,2.47 --123.01,48.08,0.474,2.506 --123.01,48.09,0.493,2.688 --123.01,48.10,0.496,2.716 --123.01,48.11,0.511,2.865 --123.01,48.12,0.512,2.867 --123.01,48.13,0.52,2.953 --123.01,48.14,0.53,3.047 --123.01,48.15,0.531,3.053 --123.01,48.16,0.531,3.059 --123.01,48.17,0.532,3.066 --123.01,48.18,0.533,3.076 --123.01,48.19,0.534,3.086 --123.01,48.20,0.535,3.095 --123.01,48.21,0.529,3.036 --123.01,48.22,0.518,2.929 --123.01,48.23,0.518,2.927 --123.01,48.24,0.518,2.93 --123.01,48.25,0.502,2.779 --123.01,48.26,0.498,2.74 --123.01,48.27,0.496,2.717 --123.01,48.28,0.476,2.522 --123.01,48.29,0.47,2.465 --123.01,48.30,0.447,2.25 --123.00,47.03,0.316,0.986 --123.00,47.04,0.338,1.199 --123.00,47.05,0.344,1.253 --123.00,47.06,0.363,1.436 --123.00,47.07,0.365,1.462 --123.00,47.08,0.384,1.637 --123.00,47.09,0.404,1.83 --123.00,47.10,0.413,1.916 --123.00,47.11,0.425,2.033 --123.00,47.12,0.438,2.161 --123.00,47.13,0.446,2.237 --123.00,47.14,0.464,2.406 --123.00,47.15,0.467,2.44 --123.00,47.16,0.488,2.637 --123.00,47.17,0.492,2.68 --123.00,47.18,0.509,2.842 --123.00,47.19,0.518,2.927 --123.00,47.20,0.53,3.048 --123.00,47.21,0.544,3.175 --123.00,47.22,0.552,3.253 --123.00,47.23,0.569,3.419 --123.00,47.24,0.573,3.454 --123.00,47.25,0.578,3.51 --123.00,47.26,0.593,3.649 --123.00,47.27,0.593,3.653 --123.00,47.28,0.599,3.708 --123.00,47.29,0.599,3.712 --123.00,47.30,0.6,3.714 --123.00,47.31,0.6,3.716 --123.00,47.32,0.6,3.717 --123.00,47.33,0.6,3.718 --123.00,47.34,0.6,3.718 --123.00,47.35,0.597,3.688 --123.00,47.36,0.581,3.537 --123.00,47.37,0.581,3.538 --123.00,47.38,0.581,3.54 --123.00,47.39,0.575,3.482 --123.00,47.40,0.568,3.415 --123.00,47.41,0.564,3.368 --123.00,47.42,0.564,3.368 --123.00,47.43,0.548,3.217 --123.00,47.44,0.542,3.163 --123.00,47.45,0.526,3.008 --123.00,47.46,0.517,2.922 --123.00,47.47,0.498,2.737 --123.00,47.48,0.491,2.665 --123.00,47.49,0.476,2.524 --123.00,47.50,0.464,2.41 --123.00,47.51,0.454,2.311 --123.00,47.52,0.433,2.109 --123.00,47.53,0.428,2.064 --123.00,47.54,0.41,1.889 --123.00,47.55,0.389,1.687 --123.00,47.56,0.378,1.584 --123.00,47.57,0.367,1.475 --123.00,47.58,0.352,1.33 --123.00,47.59,0.334,1.161 --123.00,47.60,0.324,1.06 --123.00,47.61,0.303,0.862 --123.00,47.62,0.299,0.82 --123.00,47.63,0.281,0.647 --123.00,47.64,0.272,0.564 --123.00,47.65,0.258,0.43 --123.00,47.90,0.219,0.051 --123.00,47.91,0.219,0.052 --123.00,47.92,0.219,0.053 --123.00,47.93,0.225,0.107 --123.00,47.94,0.234,0.194 --123.00,47.95,0.25,0.348 --123.00,47.96,0.255,0.397 --123.00,47.97,0.275,0.594 --123.00,47.98,0.296,0.791 --123.00,47.99,0.316,0.99 --123.00,48.00,0.34,1.218 --123.00,48.01,0.351,1.324 --123.00,48.02,0.375,1.554 --123.00,48.03,0.399,1.783 --123.00,48.04,0.422,2.009 --123.00,48.05,0.428,2.068 --123.00,48.06,0.449,2.263 --123.00,48.07,0.471,2.476 --123.00,48.08,0.475,2.515 --123.00,48.09,0.494,2.694 --123.00,48.10,0.496,2.721 --123.00,48.11,0.512,2.87 --123.00,48.12,0.512,2.871 --123.00,48.13,0.521,2.958 --123.00,48.14,0.531,3.052 --123.00,48.15,0.531,3.058 --123.00,48.16,0.532,3.065 --123.00,48.17,0.533,3.071 --123.00,48.18,0.534,3.079 --123.00,48.19,0.534,3.087 --123.00,48.20,0.535,3.095 --123.00,48.21,0.529,3.035 --123.00,48.22,0.517,2.922 --123.00,48.23,0.517,2.923 --123.00,48.24,0.517,2.924 --123.00,48.25,0.502,2.773 --123.00,48.26,0.497,2.73 --123.00,48.27,0.482,2.582 --123.00,48.28,0.473,2.492 --123.00,48.29,0.46,2.374 --123.00,48.30,0.447,2.247 --123.00,48.31,0.424,2.025 --122.99,47.02,0.307,0.903 --122.99,47.03,0.325,1.073 --122.99,47.04,0.338,1.199 --122.99,47.05,0.35,1.316 --122.99,47.06,0.369,1.493 --122.99,47.07,0.375,1.553 --122.99,47.08,0.397,1.767 --122.99,47.09,0.41,1.887 --122.99,47.10,0.423,2.012 --122.99,47.11,0.431,2.091 --122.99,47.12,0.448,2.258 --122.99,47.13,0.462,2.386 --122.99,47.14,0.474,2.503 --122.99,47.15,0.483,2.589 --122.99,47.16,0.499,2.748 --122.99,47.17,0.504,2.793 --122.99,47.18,0.524,2.991 --122.99,47.19,0.528,3.023 --122.99,47.20,0.546,3.195 --122.99,47.21,0.553,3.269 --122.99,47.22,0.557,3.309 --122.99,47.23,0.578,3.503 --122.99,47.24,0.581,3.538 --122.99,47.25,0.588,3.602 --122.99,47.26,0.599,3.704 --122.99,47.27,0.599,3.708 --122.99,47.28,0.599,3.712 --122.99,47.29,0.6,3.716 --122.99,47.30,0.6,3.718 --122.99,47.31,0.6,3.72 --122.99,47.32,0.6,3.722 --122.99,47.33,0.6,3.722 --122.99,47.34,0.6,3.721 --122.99,47.35,0.6,3.719 --122.99,47.36,0.581,3.534 --122.99,47.37,0.581,3.533 --122.99,47.38,0.581,3.533 --122.99,47.39,0.575,3.473 --122.99,47.40,0.562,3.355 --122.99,47.41,0.563,3.358 --122.99,47.42,0.56,3.331 --122.99,47.43,0.542,3.164 --122.99,47.44,0.541,3.153 --122.99,47.45,0.52,2.946 --122.99,47.46,0.516,2.914 --122.99,47.47,0.497,2.731 --122.99,47.48,0.49,2.66 --122.99,47.49,0.475,2.52 --122.99,47.50,0.464,2.407 --122.99,47.51,0.454,2.31 --122.99,47.52,0.438,2.155 --122.99,47.53,0.431,2.096 --122.99,47.54,0.411,1.898 --122.99,47.55,0.399,1.783 --122.99,47.56,0.384,1.644 --122.99,47.57,0.377,1.572 --122.99,47.58,0.358,1.392 --122.99,47.59,0.335,1.172 --122.99,47.60,0.332,1.137 --122.99,47.61,0.313,0.96 --122.99,47.62,0.305,0.881 --122.99,47.63,0.291,0.743 --122.99,47.64,0.278,0.623 --122.99,47.65,0.268,0.523 --122.99,47.66,0.251,0.363 --122.99,47.89,0.219,0.054 --122.99,47.90,0.219,0.055 --122.99,47.91,0.219,0.056 --122.99,47.92,0.219,0.057 --122.99,47.93,0.234,0.201 --122.99,47.94,0.24,0.252 --122.99,47.95,0.26,0.443 --122.99,47.96,0.262,0.471 --122.99,47.97,0.282,0.655 --122.99,47.98,0.299,0.821 --122.99,47.99,0.323,1.053 --122.99,48.00,0.347,1.28 --122.99,48.01,0.361,1.42 --122.99,48.02,0.385,1.65 --122.99,48.03,0.399,1.789 --122.99,48.04,0.423,2.015 --122.99,48.05,0.436,2.138 --122.99,48.06,0.455,2.321 --122.99,48.07,0.471,2.481 --122.99,48.08,0.483,2.591 --122.99,48.09,0.494,2.699 --122.99,48.10,0.497,2.726 --122.99,48.11,0.512,2.875 --122.99,48.12,0.512,2.875 --122.99,48.13,0.521,2.961 --122.99,48.14,0.531,3.056 --122.99,48.15,0.532,3.063 --122.99,48.16,0.533,3.07 --122.99,48.17,0.533,3.076 --122.99,48.18,0.534,3.083 --122.99,48.19,0.535,3.09 --122.99,48.20,0.535,3.096 --122.99,48.21,0.529,3.034 --122.99,48.22,0.517,2.92 --122.99,48.23,0.517,2.92 --122.99,48.24,0.517,2.919 --122.99,48.25,0.501,2.768 --122.99,48.26,0.497,2.724 --122.99,48.27,0.476,2.525 --122.99,48.28,0.472,2.488 --122.99,48.29,0.454,2.318 --122.99,48.30,0.438,2.157 --122.99,48.31,0.424,2.022 --122.98,47.01,0.306,0.889 --122.98,47.02,0.317,0.994 --122.98,47.03,0.328,1.099 --122.98,47.04,0.343,1.243 --122.98,47.05,0.365,1.456 --122.98,47.06,0.369,1.495 --122.98,47.07,0.39,1.698 --122.98,47.08,0.409,1.884 --122.98,47.09,0.415,1.943 --122.98,47.10,0.431,2.089 --122.98,47.11,0.441,2.189 --122.98,47.12,0.464,2.407 --122.98,47.13,0.472,2.49 --122.98,47.14,0.489,2.652 --122.98,47.15,0.493,2.693 --122.98,47.16,0.514,2.89 --122.98,47.17,0.518,2.925 --122.98,47.18,0.535,3.095 --122.98,47.19,0.543,3.171 --122.98,47.20,0.556,3.297 --122.98,47.21,0.562,3.348 --122.98,47.22,0.571,3.442 --122.98,47.23,0.578,3.506 --122.98,47.24,0.596,3.682 --122.98,47.25,0.598,3.702 --122.98,47.26,0.601,3.732 --122.98,47.27,0.604,3.755 --122.98,47.28,0.604,3.759 --122.98,47.29,0.605,3.763 --122.98,47.30,0.605,3.765 --122.98,47.31,0.605,3.767 --122.98,47.32,0.605,3.769 --122.98,47.33,0.601,3.726 --122.98,47.34,0.601,3.724 --122.98,47.35,0.6,3.72 --122.98,47.36,0.581,3.531 --122.98,47.37,0.58,3.528 --122.98,47.38,0.58,3.525 --122.98,47.39,0.569,3.422 --122.98,47.40,0.561,3.344 --122.98,47.41,0.561,3.346 --122.98,47.42,0.544,3.18 --122.98,47.43,0.541,3.153 --122.98,47.44,0.538,3.121 --122.98,47.45,0.519,2.936 --122.98,47.46,0.516,2.907 --122.98,47.47,0.497,2.726 --122.98,47.48,0.49,2.656 --122.98,47.49,0.475,2.517 --122.98,47.50,0.464,2.406 --122.98,47.51,0.454,2.31 --122.98,47.52,0.438,2.157 --122.98,47.53,0.432,2.1 --122.98,47.54,0.411,1.903 --122.98,47.55,0.408,1.871 --122.98,47.56,0.389,1.69 --122.98,47.57,0.382,1.621 --122.98,47.58,0.359,1.401 --122.98,47.59,0.351,1.322 --122.98,47.60,0.333,1.147 --122.98,47.61,0.329,1.109 --122.98,47.62,0.308,0.908 --122.98,47.63,0.302,0.853 --122.98,47.64,0.285,0.687 --122.98,47.65,0.275,0.59 --122.98,47.66,0.262,0.464 --122.98,47.67,0.248,0.331 --122.98,47.88,0.219,0.057 --122.98,47.89,0.22,0.058 --122.98,47.90,0.22,0.059 --122.98,47.91,0.224,0.101 --122.98,47.92,0.227,0.134 --122.98,47.93,0.24,0.253 --122.98,47.94,0.252,0.372 --122.98,47.95,0.261,0.455 --122.98,47.96,0.278,0.621 --122.98,47.97,0.282,0.662 --122.98,47.98,0.304,0.872 --122.98,47.99,0.325,1.074 --122.98,48.00,0.348,1.298 --122.98,48.01,0.372,1.529 --122.98,48.02,0.391,1.707 --122.98,48.03,0.404,1.836 --122.98,48.04,0.423,2.02 --122.98,48.05,0.446,2.24 --122.98,48.06,0.455,2.326 --122.98,48.07,0.475,2.518 --122.98,48.08,0.493,2.692 --122.98,48.09,0.495,2.704 --122.98,48.10,0.501,2.768 --122.98,48.11,0.513,2.879 --122.98,48.12,0.513,2.879 --122.98,48.13,0.522,2.966 --122.98,48.14,0.532,3.061 --122.98,48.15,0.532,3.068 --122.98,48.16,0.533,3.076 --122.98,48.17,0.534,3.081 --122.98,48.18,0.534,3.086 --122.98,48.19,0.535,3.091 --122.98,48.20,0.535,3.096 --122.98,48.21,0.525,2.995 --122.98,48.22,0.517,2.918 --122.98,48.23,0.517,2.916 --122.98,48.24,0.516,2.914 --122.98,48.25,0.497,2.726 --122.98,48.26,0.496,2.718 --122.98,48.27,0.475,2.52 --122.98,48.28,0.468,2.446 --122.98,48.29,0.449,2.269 --122.98,48.30,0.434,2.121 --122.98,48.31,0.419,1.979 --122.97,47.00,0.305,0.876 --122.97,47.01,0.309,0.915 --122.97,47.02,0.326,1.084 --122.97,47.03,0.335,1.166 --122.97,47.04,0.357,1.383 --122.97,47.05,0.368,1.49 --122.97,47.06,0.383,1.628 --122.97,47.07,0.405,1.844 --122.97,47.08,0.41,1.888 --122.97,47.09,0.43,2.086 --122.97,47.10,0.434,2.12 --122.97,47.11,0.457,2.338 --122.97,47.12,0.472,2.488 --122.97,47.13,0.482,2.584 --122.97,47.14,0.493,2.692 --122.97,47.15,0.507,2.828 --122.97,47.16,0.514,2.895 --122.97,47.17,0.533,3.074 --122.97,47.18,0.536,3.101 --122.97,47.19,0.556,3.293 --122.97,47.20,0.561,3.344 --122.97,47.21,0.577,3.493 --122.97,47.22,0.577,3.501 --122.97,47.23,0.589,3.613 --122.97,47.24,0.598,3.7 --122.97,47.25,0.599,3.705 --122.97,47.26,0.616,3.875 --122.97,47.27,0.619,3.899 --122.97,47.28,0.619,3.903 --122.97,47.29,0.62,3.907 --122.97,47.30,0.62,3.91 --122.97,47.31,0.62,3.912 --122.97,47.32,0.61,3.811 --122.97,47.33,0.601,3.729 --122.97,47.34,0.601,3.725 --122.97,47.35,0.6,3.719 --122.97,47.36,0.58,3.529 --122.97,47.37,0.58,3.523 --122.97,47.38,0.575,3.48 --122.97,47.39,0.56,3.333 --122.97,47.40,0.56,3.333 --122.97,47.41,0.55,3.235 --122.97,47.42,0.541,3.148 --122.97,47.43,0.54,3.141 --122.97,47.44,0.521,2.962 --122.97,47.45,0.518,2.927 --122.97,47.46,0.515,2.899 --122.97,47.47,0.496,2.72 --122.97,47.48,0.489,2.651 --122.97,47.49,0.475,2.514 --122.97,47.50,0.463,2.405 --122.97,47.51,0.454,2.311 --122.97,47.52,0.438,2.159 --122.97,47.53,0.432,2.105 --122.97,47.54,0.412,1.909 --122.97,47.55,0.409,1.879 --122.97,47.56,0.39,1.698 --122.97,47.57,0.383,1.631 --122.97,47.58,0.368,1.485 --122.97,47.59,0.357,1.377 --122.97,47.60,0.346,1.273 --122.97,47.61,0.33,1.124 --122.97,47.62,0.323,1.058 --122.97,47.63,0.303,0.862 --122.97,47.64,0.299,0.822 --122.97,47.65,0.279,0.629 --122.97,47.66,0.271,0.556 --122.97,47.67,0.255,0.404 --122.97,47.68,0.244,0.296 --122.97,47.87,0.22,0.061 --122.97,47.88,0.22,0.061 --122.97,47.89,0.22,0.061 --122.97,47.90,0.22,0.062 --122.97,47.91,0.239,0.247 --122.97,47.92,0.24,0.255 --122.97,47.93,0.245,0.304 --122.97,47.94,0.261,0.453 --122.97,47.95,0.271,0.55 --122.97,47.96,0.282,0.662 --122.97,47.97,0.297,0.802 --122.97,47.98,0.32,1.025 --122.97,47.99,0.326,1.083 --122.97,48.00,0.349,1.305 --122.97,48.01,0.373,1.536 --122.97,48.02,0.396,1.757 --122.97,48.03,0.413,1.919 --122.97,48.04,0.424,2.025 --122.97,48.05,0.447,2.245 --122.97,48.06,0.468,2.452 --122.97,48.07,0.476,2.523 --122.97,48.08,0.494,2.697 --122.97,48.09,0.495,2.709 --122.97,48.10,0.513,2.885 --122.97,48.11,0.513,2.884 --122.97,48.12,0.513,2.884 --122.97,48.13,0.522,2.97 --122.97,48.14,0.532,3.066 --122.97,48.15,0.533,3.074 --122.97,48.16,0.534,3.081 --122.97,48.17,0.534,3.086 --122.97,48.18,0.535,3.09 --122.97,48.19,0.535,3.093 --122.97,48.20,0.531,3.058 --122.97,48.21,0.517,2.916 --122.97,48.22,0.517,2.915 --122.97,48.23,0.516,2.912 --122.97,48.24,0.503,2.789 --122.97,48.25,0.496,2.721 --122.97,48.26,0.495,2.712 --122.97,48.27,0.475,2.515 --122.97,48.28,0.455,2.32 --122.97,48.29,0.449,2.265 --122.97,48.30,0.427,2.058 --122.97,48.31,0.412,1.913 --122.96,47.00,0.304,0.875 --122.96,47.01,0.308,0.913 --122.96,47.02,0.326,1.087 --122.96,47.03,0.347,1.282 --122.96,47.04,0.357,1.384 --122.96,47.05,0.375,1.557 --122.96,47.06,0.389,1.688 --122.96,47.07,0.406,1.848 --122.96,47.08,0.424,2.021 --122.96,47.09,0.431,2.09 --122.96,47.10,0.449,2.269 --122.96,47.11,0.472,2.486 --122.96,47.12,0.475,2.515 --122.96,47.13,0.493,2.69 --122.96,47.14,0.5,2.76 --122.96,47.15,0.514,2.893 --122.96,47.16,0.526,3.004 --122.96,47.17,0.535,3.096 --122.96,47.18,0.551,3.247 --122.96,47.19,0.556,3.296 --122.96,47.20,0.576,3.488 --122.96,47.21,0.577,3.497 --122.96,47.22,0.582,3.543 --122.96,47.23,0.598,3.697 --122.96,47.24,0.598,3.703 --122.96,47.25,0.609,3.808 --122.96,47.26,0.619,3.899 --122.96,47.27,0.619,3.904 --122.96,47.28,0.62,3.909 --122.96,47.29,0.62,3.913 --122.96,47.30,0.621,3.916 --122.96,47.31,0.621,3.918 --122.96,47.32,0.61,3.815 --122.96,47.33,0.601,3.732 --122.96,47.34,0.601,3.728 --122.96,47.35,0.588,3.602 --122.96,47.36,0.58,3.526 --122.96,47.37,0.579,3.518 --122.96,47.38,0.56,3.334 --122.96,47.39,0.558,3.31 --122.96,47.40,0.545,3.186 --122.96,47.41,0.54,3.138 --122.96,47.42,0.531,3.056 --122.96,47.43,0.524,2.985 --122.96,47.44,0.518,2.926 --122.96,47.45,0.502,2.778 --122.96,47.46,0.499,2.751 --122.96,47.47,0.496,2.714 --122.96,47.48,0.475,2.519 --122.96,47.49,0.475,2.511 --122.96,47.50,0.463,2.403 --122.96,47.51,0.454,2.311 --122.96,47.52,0.438,2.161 --122.96,47.53,0.433,2.109 --122.96,47.54,0.412,1.914 --122.96,47.55,0.409,1.885 --122.96,47.56,0.405,1.845 --122.96,47.57,0.385,1.648 --122.96,47.58,0.381,1.607 --122.96,47.59,0.363,1.436 --122.96,47.60,0.354,1.354 --122.96,47.61,0.341,1.224 --122.96,47.62,0.328,1.098 --122.96,47.63,0.318,1.003 --122.96,47.64,0.3,0.831 --122.96,47.65,0.294,0.774 --122.96,47.66,0.273,0.569 --122.96,47.67,0.268,0.52 --122.96,47.68,0.248,0.33 --122.96,47.69,0.235,0.204 --122.96,47.86,0.22,0.065 --122.96,47.87,0.22,0.065 --122.96,47.88,0.229,0.148 --122.96,47.89,0.234,0.199 --122.96,47.90,0.234,0.201 --122.96,47.91,0.24,0.258 --122.96,47.92,0.241,0.26 --122.96,47.93,0.26,0.451 --122.96,47.94,0.261,0.458 --122.96,47.95,0.272,0.563 --122.96,47.96,0.289,0.73 --122.96,47.97,0.304,0.871 --122.96,47.98,0.322,1.042 --122.96,47.99,0.34,1.216 --122.96,48.00,0.364,1.448 --122.96,48.01,0.374,1.542 --122.96,48.02,0.398,1.771 --122.96,48.03,0.415,1.941 --122.96,48.04,0.435,2.128 --122.96,48.05,0.447,2.25 --122.96,48.06,0.47,2.465 --122.96,48.07,0.476,2.528 --122.96,48.08,0.494,2.703 --122.96,48.09,0.496,2.722 --122.96,48.10,0.514,2.891 --122.96,48.11,0.514,2.889 --122.96,48.12,0.514,2.888 --122.96,48.13,0.523,2.974 --122.96,48.14,0.533,3.07 --122.96,48.15,0.534,3.079 --122.96,48.16,0.534,3.086 --122.96,48.17,0.535,3.09 --122.96,48.18,0.535,3.093 --122.96,48.19,0.535,3.095 --122.96,48.20,0.517,2.924 --122.96,48.21,0.517,2.915 --122.96,48.22,0.516,2.914 --122.96,48.23,0.511,2.858 --122.96,48.24,0.496,2.72 --122.96,48.25,0.496,2.716 --122.96,48.26,0.483,2.595 --122.96,48.27,0.474,2.506 --122.96,48.28,0.454,2.317 --122.96,48.29,0.449,2.262 --122.96,48.30,0.426,2.044 --122.96,48.31,0.409,1.879 --122.96,48.32,0.39,1.699 --122.95,46.99,0.293,0.761 --122.95,47.00,0.304,0.873 --122.95,47.01,0.318,1.009 --122.95,47.02,0.331,1.131 --122.95,47.03,0.347,1.282 --122.95,47.04,0.368,1.482 --122.95,47.05,0.388,1.681 --122.95,47.06,0.394,1.732 --122.95,47.07,0.416,1.95 --122.95,47.08,0.43,2.086 --122.95,47.09,0.442,2.199 --122.95,47.10,0.465,2.418 --122.95,47.11,0.472,2.491 --122.95,47.12,0.49,2.664 --122.95,47.13,0.494,2.695 --122.95,47.14,0.516,2.909 --122.95,47.15,0.525,2.994 --122.95,47.16,0.535,3.093 --122.95,47.17,0.544,3.179 --122.95,47.18,0.556,3.293 --122.95,47.19,0.569,3.419 --122.95,47.20,0.576,3.492 --122.95,47.21,0.577,3.5 --122.95,47.22,0.597,3.686 --122.95,47.23,0.598,3.7 --122.95,47.24,0.602,3.74 --122.95,47.25,0.618,3.896 --122.95,47.26,0.619,3.902 --122.95,47.27,0.62,3.907 --122.95,47.28,0.62,3.912 --122.95,47.29,0.621,3.917 --122.95,47.30,0.621,3.92 --122.95,47.31,0.621,3.922 --122.95,47.32,0.61,3.819 --122.95,47.33,0.602,3.735 --122.95,47.34,0.596,3.677 --122.95,47.35,0.581,3.533 --122.95,47.36,0.58,3.523 --122.95,47.37,0.567,3.401 --122.95,47.38,0.559,3.319 --122.95,47.39,0.542,3.161 --122.95,47.40,0.539,3.127 --122.95,47.41,0.537,3.116 --122.95,47.42,0.518,2.926 --122.95,47.43,0.517,2.921 --122.95,47.44,0.509,2.844 --122.95,47.45,0.496,2.718 --122.95,47.46,0.496,2.713 --122.95,47.47,0.481,2.576 --122.95,47.48,0.475,2.515 --122.95,47.49,0.474,2.508 --122.95,47.50,0.454,2.317 --122.95,47.51,0.454,2.31 --122.95,47.52,0.438,2.163 --122.95,47.53,0.433,2.112 --122.95,47.54,0.422,2.008 --122.95,47.55,0.412,1.91 --122.95,47.56,0.407,1.865 --122.95,47.57,0.391,1.707 --122.95,47.58,0.381,1.616 --122.95,47.59,0.378,1.584 --122.95,47.60,0.358,1.388 --122.95,47.61,0.352,1.332 --122.95,47.62,0.335,1.173 --122.95,47.63,0.325,1.068 --122.95,47.64,0.312,0.945 --122.95,47.65,0.296,0.797 --122.95,47.66,0.287,0.711 --122.95,47.67,0.274,0.582 --122.95,47.68,0.258,0.425 --122.95,47.69,0.24,0.255 --122.95,47.70,0.224,0.098 --122.95,47.71,0.218,0.041 --122.95,47.72,0.217,0.038 --122.95,47.73,0.217,0.033 --122.95,47.74,0.219,0.055 --122.95,47.75,0.22,0.067 --122.95,47.76,0.223,0.092 --122.95,47.77,0.226,0.117 --122.95,47.78,0.227,0.128 --122.95,47.79,0.228,0.138 --122.95,47.80,0.229,0.146 --122.95,47.81,0.229,0.149 --122.95,47.82,0.229,0.151 --122.95,47.83,0.229,0.152 --122.95,47.84,0.23,0.154 --122.95,47.85,0.23,0.155 --122.95,47.86,0.23,0.155 --122.95,47.87,0.23,0.155 --122.95,47.88,0.24,0.257 --122.95,47.89,0.24,0.258 --122.95,47.90,0.24,0.259 --122.95,47.91,0.25,0.349 --122.95,47.92,0.253,0.384 --122.95,47.93,0.261,0.458 --122.95,47.94,0.271,0.55 --122.95,47.95,0.282,0.656 --122.95,47.96,0.296,0.793 --122.95,47.97,0.308,0.913 --122.95,47.98,0.326,1.083 --122.95,47.99,0.347,1.281 --122.95,48.00,0.37,1.502 --122.95,48.01,0.383,1.635 --122.95,48.02,0.407,1.864 --122.95,48.03,0.422,2.003 --122.95,48.04,0.435,2.132 --122.95,48.05,0.456,2.329 --122.95,48.06,0.47,2.47 --122.95,48.07,0.482,2.582 --122.95,48.08,0.496,2.72 --122.95,48.09,0.497,2.727 --122.95,48.10,0.515,2.896 --122.95,48.11,0.514,2.894 --122.95,48.12,0.514,2.892 --122.95,48.13,0.531,3.054 --122.95,48.14,0.533,3.075 --122.95,48.15,0.534,3.084 --122.95,48.16,0.535,3.091 --122.95,48.17,0.535,3.095 --122.95,48.18,0.535,3.095 --122.95,48.19,0.524,2.99 --122.95,48.20,0.516,2.914 --122.95,48.21,0.516,2.914 --122.95,48.22,0.516,2.912 --122.95,48.23,0.504,2.798 --122.95,48.24,0.496,2.716 --122.95,48.25,0.491,2.666 --122.95,48.26,0.475,2.517 --122.95,48.27,0.465,2.422 --122.95,48.28,0.454,2.313 --122.95,48.29,0.44,2.178 --122.95,48.30,0.417,1.958 --122.95,48.31,0.402,1.815 --122.95,48.32,0.39,1.695 --122.94,46.98,0.283,0.666 --122.94,46.99,0.302,0.848 --122.94,47.00,0.31,0.932 --122.94,47.01,0.325,1.069 --122.94,47.02,0.337,1.184 --122.94,47.03,0.36,1.405 --122.94,47.04,0.377,1.574 --122.94,47.05,0.389,1.685 --122.94,47.06,0.409,1.879 --122.94,47.07,0.426,2.046 --122.94,47.08,0.435,2.129 --122.94,47.09,0.458,2.348 --122.94,47.10,0.472,2.488 --122.94,47.11,0.483,2.595 --122.94,47.12,0.499,2.744 --122.94,47.13,0.509,2.84 --122.94,47.14,0.531,3.056 --122.94,47.15,0.535,3.091 --122.94,47.16,0.541,3.147 --122.94,47.17,0.555,3.29 --122.94,47.18,0.562,3.349 --122.94,47.19,0.576,3.487 --122.94,47.20,0.582,3.542 --122.94,47.21,0.589,3.615 --122.94,47.22,0.597,3.693 --122.94,47.23,0.598,3.701 --122.94,47.24,0.617,3.88 --122.94,47.25,0.619,3.897 --122.94,47.26,0.619,3.903 --122.94,47.27,0.62,3.909 --122.94,47.28,0.62,3.914 --122.94,47.29,0.621,3.919 --122.94,47.30,0.621,3.922 --122.94,47.31,0.621,3.924 --122.94,47.32,0.611,3.821 --122.94,47.33,0.602,3.737 --122.94,47.34,0.586,3.582 --122.94,47.35,0.581,3.531 --122.94,47.36,0.574,3.472 --122.94,47.37,0.559,3.322 --122.94,47.38,0.548,3.222 --122.94,47.39,0.538,3.117 --122.94,47.40,0.532,3.066 --122.94,47.41,0.521,2.955 --122.94,47.42,0.511,2.866 --122.94,47.43,0.511,2.862 --122.94,47.44,0.496,2.713 --122.94,47.45,0.49,2.664 --122.94,47.46,0.488,2.639 --122.94,47.47,0.475,2.513 --122.94,47.48,0.47,2.464 --122.94,47.49,0.461,2.379 --122.94,47.50,0.454,2.314 --122.94,47.51,0.453,2.308 --122.94,47.52,0.434,2.119 --122.94,47.53,0.433,2.114 --122.94,47.54,0.433,2.108 --122.94,47.55,0.412,1.914 --122.94,47.56,0.408,1.871 --122.94,47.57,0.396,1.758 --122.94,47.58,0.391,1.704 --122.94,47.59,0.379,1.593 --122.94,47.60,0.373,1.538 --122.94,47.61,0.353,1.341 --122.94,47.62,0.349,1.305 --122.94,47.63,0.33,1.117 --122.94,47.64,0.326,1.079 --122.94,47.65,0.305,0.885 --122.94,47.66,0.301,0.838 --122.94,47.67,0.284,0.675 --122.94,47.68,0.268,0.52 --122.94,47.69,0.25,0.351 --122.94,47.70,0.234,0.193 --122.94,47.71,0.224,0.103 --122.94,47.72,0.225,0.113 --122.94,47.73,0.228,0.138 --122.94,47.74,0.231,0.166 --122.94,47.75,0.234,0.198 --122.94,47.76,0.239,0.241 --122.94,47.77,0.241,0.263 --122.94,47.78,0.242,0.274 --122.94,47.79,0.243,0.284 --122.94,47.80,0.244,0.292 --122.94,47.81,0.244,0.294 --122.94,47.82,0.244,0.295 --122.94,47.83,0.244,0.297 --122.94,47.84,0.245,0.299 --122.94,47.85,0.245,0.3 --122.94,47.86,0.245,0.3 --122.94,47.87,0.245,0.3 --122.94,47.88,0.245,0.301 --122.94,47.89,0.245,0.301 --122.94,47.90,0.245,0.303 --122.94,47.91,0.261,0.457 --122.94,47.92,0.261,0.46 --122.94,47.93,0.271,0.556 --122.94,47.94,0.282,0.661 --122.94,47.95,0.287,0.709 --122.94,47.96,0.301,0.838 --122.94,47.97,0.324,1.065 --122.94,47.98,0.327,1.096 --122.94,47.99,0.351,1.325 --122.94,48.00,0.375,1.556 --122.94,48.01,0.395,1.747 --122.94,48.02,0.413,1.922 --122.94,48.03,0.426,2.045 --122.94,48.04,0.445,2.228 --122.94,48.05,0.456,2.333 --122.94,48.06,0.474,2.51 --122.94,48.07,0.493,2.688 --122.94,48.08,0.497,2.725 --122.94,48.09,0.501,2.766 --122.94,48.10,0.515,2.901 --122.94,48.11,0.515,2.899 --122.94,48.12,0.521,2.961 --122.94,48.13,0.533,3.072 --122.94,48.14,0.534,3.08 --122.94,48.15,0.534,3.088 --122.94,48.16,0.535,3.095 --122.94,48.17,0.536,3.098 --122.94,48.18,0.531,3.058 --122.94,48.19,0.517,2.915 --122.94,48.20,0.516,2.913 --122.94,48.21,0.516,2.912 --122.94,48.22,0.516,2.908 --122.94,48.23,0.501,2.761 --122.94,48.24,0.495,2.711 --122.94,48.25,0.479,2.556 --122.94,48.26,0.475,2.512 --122.94,48.27,0.454,2.318 --122.94,48.28,0.447,2.251 --122.94,48.29,0.428,2.066 --122.94,48.30,0.412,1.913 --122.94,48.31,0.398,1.778 --122.94,48.32,0.378,1.58 --122.93,46.98,0.283,0.665 --122.93,46.99,0.302,0.855 --122.93,47.00,0.323,1.056 --122.93,47.01,0.328,1.106 --122.93,47.02,0.351,1.32 --122.93,47.03,0.367,1.474 --122.93,47.04,0.378,1.586 --122.93,47.05,0.401,1.808 --122.93,47.06,0.41,1.889 --122.93,47.07,0.428,2.059 --122.93,47.08,0.45,2.278 --122.93,47.09,0.472,2.484 --122.93,47.10,0.476,2.526 --122.93,47.11,0.499,2.744 --122.93,47.12,0.514,2.887 --122.93,47.13,0.524,2.988 --122.93,47.14,0.534,3.088 --122.93,47.15,0.549,3.228 --122.93,47.16,0.555,3.286 --122.93,47.17,0.556,3.296 --122.93,47.18,0.575,3.481 --122.93,47.19,0.579,3.515 --122.93,47.20,0.596,3.676 --122.93,47.21,0.596,3.684 --122.93,47.22,0.598,3.695 --122.93,47.23,0.609,3.807 --122.93,47.24,0.618,3.888 --122.93,47.25,0.618,3.894 --122.93,47.26,0.619,3.901 --122.93,47.27,0.62,3.91 --122.93,47.28,0.62,3.913 --122.93,47.29,0.621,3.918 --122.93,47.30,0.621,3.921 --122.93,47.31,0.621,3.923 --122.93,47.32,0.61,3.818 --122.93,47.33,0.602,3.735 --122.93,47.34,0.585,3.578 --122.93,47.35,0.58,3.526 --122.93,47.36,0.559,3.326 --122.93,47.37,0.555,3.29 --122.93,47.38,0.537,3.112 --122.93,47.39,0.529,3.037 --122.93,47.40,0.515,2.905 --122.93,47.41,0.504,2.795 --122.93,47.42,0.495,2.707 --122.93,47.43,0.495,2.704 --122.93,47.44,0.494,2.7 --122.93,47.45,0.474,2.51 --122.93,47.46,0.474,2.506 --122.93,47.47,0.47,2.465 --122.93,47.48,0.454,2.316 --122.93,47.49,0.454,2.311 --122.93,47.50,0.453,2.307 --122.93,47.51,0.441,2.185 --122.93,47.52,0.433,2.116 --122.93,47.53,0.433,2.111 --122.93,47.54,0.433,2.107 --122.93,47.55,0.413,1.915 --122.93,47.56,0.412,1.909 --122.93,47.57,0.405,1.847 --122.93,47.58,0.391,1.708 --122.93,47.59,0.39,1.697 --122.93,47.60,0.377,1.569 --122.93,47.61,0.368,1.488 --122.93,47.62,0.35,1.315 --122.93,47.63,0.345,1.269 --122.93,47.64,0.342,1.233 --122.93,47.65,0.322,1.039 --122.93,47.66,0.313,0.962 --122.93,47.67,0.298,0.81 --122.93,47.68,0.288,0.721 --122.93,47.69,0.271,0.551 --122.93,47.70,0.254,0.385 --122.93,47.71,0.244,0.296 --122.93,47.72,0.246,0.317 --122.93,47.73,0.25,0.355 --122.93,47.74,0.254,0.393 --122.93,47.75,0.255,0.401 --122.93,47.76,0.256,0.41 --122.93,47.77,0.257,0.419 --122.93,47.78,0.258,0.428 --122.93,47.79,0.259,0.436 --122.93,47.80,0.259,0.442 --122.93,47.81,0.26,0.444 --122.93,47.82,0.26,0.445 --122.93,47.83,0.26,0.445 --122.93,47.84,0.26,0.446 --122.93,47.85,0.26,0.447 --122.93,47.86,0.26,0.447 --122.93,47.87,0.26,0.448 --122.93,47.88,0.26,0.449 --122.93,47.89,0.26,0.45 --122.93,47.90,0.26,0.451 --122.93,47.91,0.262,0.463 --122.93,47.92,0.264,0.489 --122.93,47.93,0.282,0.66 --122.93,47.94,0.29,0.732 --122.93,47.95,0.303,0.859 --122.93,47.96,0.316,0.988 --122.93,47.97,0.326,1.083 --122.93,47.98,0.343,1.244 --122.93,47.99,0.367,1.473 --122.93,48.00,0.391,1.703 --122.93,48.01,0.395,1.749 --122.93,48.02,0.418,1.966 --122.93,48.03,0.435,2.128 --122.93,48.04,0.445,2.231 --122.93,48.05,0.467,2.436 --122.93,48.06,0.477,2.531 --122.93,48.07,0.493,2.692 --122.93,48.08,0.497,2.728 --122.93,48.09,0.515,2.905 --122.93,48.10,0.516,2.906 --122.93,48.11,0.515,2.904 --122.93,48.12,0.522,2.967 --122.93,48.13,0.533,3.078 --122.93,48.14,0.534,3.085 --122.93,48.15,0.535,3.092 --122.93,48.16,0.535,3.097 --122.93,48.17,0.536,3.098 --122.93,48.18,0.517,2.922 --122.93,48.19,0.516,2.912 --122.93,48.20,0.516,2.908 --122.93,48.21,0.515,2.905 --122.93,48.22,0.507,2.827 --122.93,48.23,0.495,2.71 --122.93,48.24,0.494,2.703 --122.93,48.25,0.478,2.548 --122.93,48.26,0.474,2.503 --122.93,48.27,0.454,2.311 --122.93,48.28,0.434,2.117 --122.93,48.29,0.428,2.06 --122.93,48.30,0.406,1.853 --122.93,48.31,0.39,1.7 --122.93,48.32,0.377,1.573 --122.92,46.97,0.281,0.654 --122.92,46.98,0.294,0.779 --122.92,46.99,0.303,0.859 --122.92,47.00,0.323,1.057 --122.92,47.01,0.343,1.249 --122.92,47.02,0.351,1.322 --122.92,47.03,0.37,1.509 --122.92,47.04,0.394,1.734 --122.92,47.05,0.409,1.884 --122.92,47.06,0.42,1.989 --122.92,47.07,0.443,2.209 --122.92,47.08,0.466,2.427 --122.92,47.09,0.472,2.49 --122.92,47.10,0.492,2.676 --122.92,47.11,0.513,2.885 --122.92,47.12,0.517,2.92 --122.92,47.13,0.534,3.086 --122.92,47.14,0.542,3.161 --122.92,47.15,0.555,3.283 --122.92,47.16,0.567,3.396 --122.92,47.17,0.571,3.437 --122.92,47.18,0.575,3.481 --122.92,47.19,0.593,3.653 --122.92,47.20,0.595,3.674 --122.92,47.21,0.599,3.705 --122.92,47.22,0.612,3.829 --122.92,47.23,0.617,3.877 --122.92,47.24,0.617,3.885 --122.92,47.25,0.618,3.891 --122.92,47.26,0.631,4.02 --122.92,47.27,0.634,4.044 --122.92,47.28,0.62,3.911 --122.92,47.29,0.621,3.916 --122.92,47.30,0.621,3.92 --122.92,47.31,0.617,3.881 --122.92,47.32,0.602,3.737 --122.92,47.33,0.593,3.651 --122.92,47.34,0.581,3.535 --122.92,47.35,0.567,3.398 --122.92,47.36,0.559,3.319 --122.92,47.37,0.54,3.139 --122.92,47.38,0.536,3.098 --122.92,47.39,0.514,2.893 --122.92,47.40,0.51,2.85 --122.92,47.41,0.494,2.694 --122.92,47.42,0.485,2.611 --122.92,47.43,0.478,2.546 --122.92,47.44,0.478,2.545 --122.92,47.45,0.473,2.496 --122.92,47.46,0.458,2.355 --122.92,47.47,0.454,2.314 --122.92,47.48,0.453,2.306 --122.92,47.49,0.453,2.302 --122.92,47.50,0.447,2.246 --122.92,47.51,0.433,2.115 --122.92,47.52,0.433,2.111 --122.92,47.53,0.433,2.108 --122.92,47.54,0.418,1.968 --122.92,47.55,0.413,1.915 --122.92,47.56,0.412,1.913 --122.92,47.57,0.407,1.86 --122.92,47.58,0.403,1.822 --122.92,47.59,0.391,1.706 --122.92,47.60,0.385,1.649 --122.92,47.61,0.374,1.547 --122.92,47.62,0.363,1.438 --122.92,47.63,0.361,1.422 --122.92,47.64,0.343,1.25 --122.92,47.65,0.338,1.196 --122.92,47.66,0.316,0.988 --122.92,47.67,0.314,0.969 --122.92,47.68,0.304,0.868 --122.92,47.69,0.289,0.726 --122.92,47.70,0.277,0.609 --122.92,47.71,0.268,0.521 --122.92,47.72,0.268,0.528 --122.92,47.73,0.27,0.545 --122.92,47.74,0.272,0.558 --122.92,47.75,0.272,0.564 --122.92,47.76,0.273,0.571 --122.92,47.77,0.273,0.577 --122.92,47.78,0.274,0.583 --122.92,47.79,0.275,0.589 --122.92,47.80,0.275,0.594 --122.92,47.81,0.262,0.469 --122.92,47.82,0.262,0.462 --122.92,47.83,0.262,0.462 --122.92,47.84,0.262,0.463 --122.92,47.85,0.262,0.463 --122.92,47.86,0.262,0.464 --122.92,47.87,0.262,0.464 --122.92,47.88,0.262,0.465 --122.92,47.89,0.262,0.465 --122.92,47.90,0.262,0.467 --122.92,47.91,0.276,0.603 --122.92,47.92,0.28,0.638 --122.92,47.93,0.283,0.666 --122.92,47.94,0.303,0.865 --122.92,47.95,0.304,0.874 --122.92,47.96,0.318,1.002 --122.92,47.97,0.335,1.168 --122.92,47.98,0.348,1.291 --122.92,47.99,0.368,1.487 --122.92,48.00,0.391,1.707 --122.92,48.01,0.41,1.886 --122.92,48.02,0.419,1.979 --122.92,48.03,0.436,2.144 --122.92,48.04,0.455,2.328 --122.92,48.05,0.468,2.45 --122.92,48.06,0.477,2.533 --122.92,48.07,0.494,2.695 --122.92,48.08,0.497,2.731 --122.92,48.09,0.516,2.913 --122.92,48.10,0.516,2.911 --122.92,48.11,0.516,2.909 --122.92,48.12,0.523,2.973 --122.92,48.13,0.534,3.085 --122.92,48.14,0.535,3.09 --122.92,48.15,0.535,3.095 --122.92,48.16,0.536,3.099 --122.92,48.17,0.524,2.991 --122.92,48.18,0.516,2.913 --122.92,48.19,0.516,2.908 --122.92,48.20,0.515,2.904 --122.92,48.21,0.514,2.893 --122.92,48.22,0.495,2.71 --122.92,48.23,0.494,2.702 --122.92,48.24,0.487,2.629 --122.92,48.25,0.474,2.505 --122.92,48.26,0.462,2.39 --122.92,48.27,0.452,2.297 --122.92,48.28,0.433,2.11 --122.92,48.29,0.414,1.926 --122.92,48.30,0.404,1.828 --122.92,48.31,0.387,1.669 --122.92,48.32,0.363,1.438 --122.91,46.96,0.273,0.574 --122.91,46.97,0.281,0.652 --122.91,46.98,0.298,0.813 --122.91,46.99,0.312,0.95 --122.91,47.00,0.324,1.065 --122.91,47.01,0.344,1.259 --122.91,47.02,0.362,1.431 --122.91,47.03,0.386,1.657 --122.91,47.04,0.398,1.777 --122.91,47.05,0.413,1.917 --122.91,47.06,0.436,2.139 --122.91,47.07,0.451,2.289 --122.91,47.08,0.47,2.472 --122.91,47.09,0.484,2.606 --122.91,47.10,0.507,2.824 --122.91,47.11,0.514,2.89 --122.91,47.12,0.532,3.068 --122.91,47.13,0.535,3.094 --122.91,47.14,0.555,3.281 --122.91,47.15,0.56,3.329 --122.91,47.16,0.575,3.474 --122.91,47.17,0.575,3.478 --122.91,47.18,0.586,3.584 --122.91,47.19,0.595,3.667 --122.91,47.20,0.595,3.671 --122.91,47.21,0.612,3.838 --122.91,47.22,0.615,3.866 --122.91,47.23,0.616,3.874 --122.91,47.24,0.621,3.919 --122.91,47.25,0.627,3.981 --122.91,47.26,0.637,4.074 --122.91,47.27,0.638,4.079 --122.91,47.28,0.63,4.004 --122.91,47.29,0.62,3.915 --122.91,47.30,0.621,3.919 --122.91,47.31,0.612,3.836 --122.91,47.32,0.602,3.737 --122.91,47.33,0.588,3.605 --122.91,47.34,0.581,3.532 --122.91,47.35,0.562,3.348 --122.91,47.36,0.547,3.212 --122.91,47.37,0.536,3.103 --122.91,47.38,0.519,2.939 --122.91,47.39,0.502,2.777 --122.91,47.40,0.493,2.688 --122.91,47.41,0.482,2.579 --122.91,47.42,0.472,2.485 --122.91,47.43,0.466,2.431 --122.91,47.44,0.462,2.389 --122.91,47.45,0.462,2.389 --122.91,47.46,0.452,2.297 --122.91,47.47,0.452,2.297 --122.91,47.48,0.443,2.203 --122.91,47.49,0.442,2.201 --122.91,47.50,0.433,2.109 --122.91,47.51,0.433,2.108 --122.91,47.52,0.432,2.105 --122.91,47.53,0.432,2.104 --122.91,47.54,0.413,1.918 --122.91,47.55,0.413,1.915 --122.91,47.56,0.413,1.915 --122.91,47.57,0.412,1.913 --122.91,47.58,0.403,1.827 --122.91,47.59,0.401,1.806 --122.91,47.60,0.398,1.776 --122.91,47.61,0.38,1.603 --122.91,47.62,0.379,1.591 --122.91,47.63,0.368,1.488 --122.91,47.64,0.356,1.37 --122.91,47.65,0.35,1.315 --122.91,47.66,0.333,1.146 --122.91,47.67,0.331,1.129 --122.91,47.68,0.319,1.016 --122.91,47.69,0.308,0.91 --122.91,47.70,0.299,0.824 --122.91,47.71,0.294,0.773 --122.91,47.72,0.288,0.713 --122.91,47.73,0.288,0.715 --122.91,47.74,0.288,0.72 --122.91,47.75,0.289,0.726 --122.91,47.76,0.289,0.731 --122.91,47.77,0.29,0.735 --122.91,47.78,0.29,0.74 --122.91,47.79,0.291,0.744 --122.91,47.80,0.285,0.688 --122.91,47.81,0.272,0.558 --122.91,47.82,0.272,0.558 --122.91,47.83,0.272,0.558 --122.91,47.84,0.271,0.557 --122.91,47.85,0.271,0.557 --122.91,47.86,0.271,0.557 --122.91,47.87,0.271,0.557 --122.91,47.88,0.272,0.558 --122.91,47.89,0.272,0.558 --122.91,47.90,0.272,0.559 --122.91,47.91,0.283,0.667 --122.91,47.92,0.283,0.669 --122.91,47.93,0.298,0.812 --122.91,47.94,0.304,0.87 --122.91,47.95,0.305,0.878 --122.91,47.96,0.326,1.082 --122.91,47.97,0.342,1.232 --122.91,47.98,0.354,1.347 --122.91,47.99,0.37,1.501 --122.91,48.00,0.392,1.72 --122.91,48.01,0.413,1.918 --122.91,48.02,0.428,2.066 --122.91,48.03,0.443,2.205 --122.91,48.04,0.456,2.331 --122.91,48.05,0.476,2.526 --122.91,48.06,0.48,2.563 --122.91,48.07,0.497,2.731 --122.91,48.08,0.498,2.735 --122.91,48.09,0.517,2.918 --122.91,48.10,0.517,2.916 --122.91,48.11,0.516,2.914 --122.91,48.12,0.523,2.979 --122.91,48.13,0.535,3.091 --122.91,48.14,0.535,3.095 --122.91,48.15,0.536,3.099 --122.91,48.16,0.532,3.06 --122.91,48.17,0.517,2.918 --122.91,48.18,0.516,2.911 --122.91,48.19,0.515,2.905 --122.91,48.20,0.515,2.898 --122.91,48.21,0.499,2.751 --122.91,48.22,0.494,2.703 --122.91,48.23,0.494,2.694 --122.91,48.24,0.474,2.505 --122.91,48.25,0.469,2.458 --122.91,48.26,0.453,2.306 --122.91,48.27,0.444,2.217 --122.91,48.28,0.429,2.075 --122.91,48.29,0.411,1.9 --122.91,48.30,0.395,1.744 --122.91,48.31,0.379,1.594 --122.91,48.32,0.355,1.363 --122.91,48.33,0.343,1.249 --122.90,46.95,0.261,0.461 --122.90,46.96,0.273,0.573 --122.90,46.97,0.282,0.658 --122.90,46.98,0.301,0.844 --122.90,46.99,0.321,1.031 --122.90,47.00,0.331,1.127 --122.90,47.01,0.348,1.29 --122.90,47.02,0.371,1.517 --122.90,47.03,0.387,1.673 --122.90,47.04,0.405,1.842 --122.90,47.05,0.428,2.067 --122.90,47.06,0.445,2.228 --122.90,47.07,0.454,2.318 --122.90,47.08,0.477,2.536 --122.90,47.09,0.494,2.696 --122.90,47.10,0.514,2.888 --122.90,47.11,0.525,3.001 --122.90,47.12,0.535,3.089 --122.90,47.13,0.55,3.239 --122.90,47.14,0.555,3.284 --122.90,47.15,0.574,3.472 --122.90,47.16,0.577,3.494 --122.90,47.17,0.581,3.532 --122.90,47.18,0.594,3.662 --122.90,47.19,0.6,3.717 --122.90,47.20,0.605,3.763 --122.90,47.21,0.614,3.853 --122.90,47.22,0.615,3.861 --122.90,47.23,0.616,3.869 --122.90,47.24,0.634,4.046 --122.90,47.25,0.635,4.059 --122.90,47.26,0.636,4.069 --122.90,47.27,0.637,4.078 --122.90,47.28,0.636,4.064 --122.90,47.29,0.62,3.913 --122.90,47.30,0.621,3.917 --122.90,47.31,0.612,3.835 --122.90,47.32,0.602,3.736 --122.90,47.33,0.588,3.603 --122.90,47.34,0.579,3.518 --122.90,47.35,0.559,3.323 --122.90,47.36,0.537,3.114 --122.90,47.37,0.527,3.015 --122.90,47.38,0.502,2.776 --122.90,47.39,0.49,2.663 --122.90,47.40,0.476,2.524 --122.90,47.41,0.47,2.467 --122.90,47.42,0.465,2.417 --122.90,47.43,0.451,2.28 --122.90,47.44,0.448,2.253 --122.90,47.45,0.446,2.234 --122.90,47.46,0.446,2.236 --122.90,47.47,0.442,2.197 --122.90,47.48,0.432,2.101 --122.90,47.49,0.432,2.101 --122.90,47.50,0.432,2.101 --122.90,47.51,0.432,2.101 --122.90,47.52,0.432,2.099 --122.90,47.53,0.429,2.076 --122.90,47.54,0.412,1.914 --122.90,47.55,0.413,1.915 --122.90,47.56,0.413,1.917 --122.90,47.57,0.413,1.917 --122.90,47.58,0.413,1.915 --122.90,47.59,0.412,1.913 --122.90,47.60,0.399,1.785 --122.90,47.61,0.396,1.758 --122.90,47.62,0.393,1.726 --122.90,47.63,0.374,1.541 --122.90,47.64,0.372,1.526 --122.90,47.65,0.367,1.472 --122.90,47.66,0.349,1.305 --122.90,47.67,0.348,1.29 --122.90,47.68,0.336,1.176 --122.90,47.69,0.325,1.072 --122.90,47.70,0.323,1.056 --122.90,47.71,0.319,1.016 --122.90,47.72,0.308,0.913 --122.90,47.73,0.305,0.877 --122.90,47.74,0.305,0.883 --122.90,47.75,0.306,0.888 --122.90,47.76,0.306,0.892 --122.90,47.77,0.306,0.894 --122.90,47.78,0.307,0.896 --122.90,47.79,0.307,0.899 --122.90,47.80,0.287,0.711 --122.90,47.81,0.287,0.71 --122.90,47.82,0.287,0.709 --122.90,47.83,0.287,0.709 --122.90,47.84,0.287,0.708 --122.90,47.85,0.287,0.707 --122.90,47.86,0.287,0.707 --122.90,47.87,0.283,0.669 --122.90,47.88,0.283,0.67 --122.90,47.89,0.283,0.67 --122.90,47.90,0.286,0.7 --122.90,47.91,0.287,0.711 --122.90,47.92,0.291,0.746 --122.90,47.93,0.304,0.871 --122.90,47.94,0.304,0.875 --122.90,47.95,0.319,1.018 --122.90,47.96,0.326,1.086 --122.90,47.97,0.346,1.272 --122.90,47.98,0.365,1.461 --122.90,47.99,0.372,1.529 --122.90,48.00,0.393,1.724 --122.90,48.01,0.417,1.953 --122.90,48.02,0.434,2.126 --122.90,48.03,0.446,2.241 --122.90,48.04,0.466,2.426 --122.90,48.05,0.476,2.529 --122.90,48.06,0.491,2.673 --122.90,48.07,0.498,2.735 --122.90,48.08,0.5,2.758 --122.90,48.09,0.517,2.923 --122.90,48.10,0.517,2.921 --122.90,48.11,0.517,2.92 --122.90,48.12,0.524,2.986 --122.90,48.13,0.535,3.097 --122.90,48.14,0.536,3.1 --122.90,48.15,0.536,3.102 --122.90,48.16,0.518,2.928 --122.90,48.17,0.517,2.918 --122.90,48.18,0.516,2.909 --122.90,48.19,0.515,2.901 --122.90,48.20,0.506,2.818 --122.90,48.21,0.495,2.704 --122.90,48.22,0.494,2.695 --122.90,48.23,0.479,2.553 --122.90,48.24,0.473,2.496 --122.90,48.25,0.457,2.342 --122.90,48.26,0.452,2.297 --122.90,48.27,0.432,2.106 --122.90,48.28,0.426,2.041 --122.90,48.29,0.405,1.843 --122.90,48.30,0.389,1.689 --122.90,48.31,0.376,1.559 --122.90,48.32,0.352,1.329 --122.90,48.33,0.33,1.123 --122.89,46.95,0.261,0.46 --122.89,46.96,0.275,0.587 --122.89,46.97,0.294,0.779 --122.89,46.98,0.301,0.843 --122.89,46.99,0.322,1.043 --122.89,47.00,0.343,1.248 --122.89,47.01,0.349,1.308 --122.89,47.02,0.373,1.535 --122.89,47.03,0.397,1.764 --122.89,47.04,0.419,1.977 --122.89,47.05,0.431,2.089 --122.89,47.06,0.447,2.248 --122.89,47.07,0.47,2.467 --122.89,47.08,0.493,2.685 --122.89,47.09,0.496,2.715 --122.89,47.10,0.518,2.933 --122.89,47.11,0.535,3.089 --122.89,47.12,0.543,3.173 --122.89,47.13,0.555,3.283 --122.89,47.14,0.568,3.406 --122.89,47.15,0.575,3.474 --122.89,47.16,0.591,3.633 --122.89,47.17,0.594,3.659 --122.89,47.18,0.596,3.675 --122.89,47.19,0.612,3.838 --122.89,47.20,0.613,3.839 --122.89,47.21,0.613,3.847 --122.89,47.22,0.615,3.864 --122.89,47.23,0.626,3.97 --122.89,47.24,0.634,4.043 --122.89,47.25,0.635,4.052 --122.89,47.26,0.636,4.063 --122.89,47.27,0.637,4.073 --122.89,47.28,0.636,4.06 --122.89,47.29,0.62,3.912 --122.89,47.30,0.621,3.916 --122.89,47.31,0.611,3.827 --122.89,47.32,0.602,3.735 --122.89,47.33,0.587,3.595 --122.89,47.34,0.565,3.377 --122.89,47.35,0.558,3.316 --122.89,47.36,0.535,3.097 --122.89,47.37,0.511,2.86 --122.89,47.38,0.49,2.659 --122.89,47.39,0.481,2.571 --122.89,47.40,0.468,2.444 --122.89,47.41,0.457,2.338 --122.89,47.42,0.448,2.256 --122.89,47.43,0.448,2.258 --122.89,47.44,0.431,2.095 --122.89,47.45,0.43,2.078 --122.89,47.46,0.43,2.081 --122.89,47.47,0.43,2.085 --122.89,47.48,0.431,2.088 --122.89,47.49,0.431,2.089 --122.89,47.50,0.431,2.09 --122.89,47.51,0.431,2.091 --122.89,47.52,0.431,2.092 --122.89,47.53,0.414,1.932 --122.89,47.54,0.412,1.913 --122.89,47.55,0.413,1.916 --122.89,47.56,0.413,1.919 --122.89,47.57,0.413,1.921 --122.89,47.58,0.413,1.922 --122.89,47.59,0.413,1.922 --122.89,47.60,0.413,1.921 --122.89,47.61,0.413,1.916 --122.89,47.62,0.394,1.738 --122.89,47.63,0.39,1.697 --122.89,47.64,0.388,1.682 --122.89,47.65,0.383,1.629 --122.89,47.66,0.366,1.463 --122.89,47.67,0.364,1.45 --122.89,47.68,0.352,1.337 --122.89,47.69,0.342,1.236 --122.89,47.70,0.341,1.223 --122.89,47.71,0.34,1.216 --122.89,47.72,0.34,1.217 --122.89,47.73,0.322,1.041 --122.89,47.74,0.322,1.046 --122.89,47.75,0.323,1.051 --122.89,47.76,0.323,1.053 --122.89,47.77,0.323,1.054 --122.89,47.78,0.323,1.054 --122.89,47.79,0.309,0.921 --122.89,47.80,0.303,0.864 --122.89,47.81,0.303,0.863 --122.89,47.82,0.303,0.862 --122.89,47.83,0.303,0.861 --122.89,47.84,0.303,0.859 --122.89,47.85,0.303,0.859 --122.89,47.86,0.294,0.77 --122.89,47.87,0.284,0.677 --122.89,47.88,0.284,0.677 --122.89,47.89,0.284,0.677 --122.89,47.90,0.302,0.852 --122.89,47.91,0.303,0.862 --122.89,47.92,0.304,0.875 --122.89,47.93,0.305,0.877 --122.89,47.94,0.312,0.945 --122.89,47.95,0.326,1.083 --122.89,47.96,0.338,1.198 --122.89,47.97,0.348,1.294 --122.89,47.98,0.366,1.465 --122.89,47.99,0.388,1.679 --122.89,48.00,0.393,1.727 --122.89,48.01,0.417,1.956 --122.89,48.02,0.439,2.166 --122.89,48.03,0.455,2.327 --122.89,48.04,0.466,2.429 --122.89,48.05,0.477,2.533 --122.89,48.06,0.492,2.677 --122.89,48.07,0.498,2.739 --122.89,48.08,0.515,2.901 --122.89,48.09,0.518,2.927 --122.89,48.10,0.518,2.926 --122.89,48.11,0.518,2.925 --122.89,48.12,0.525,2.992 --122.89,48.13,0.536,3.104 --122.89,48.14,0.536,3.105 --122.89,48.15,0.525,2.995 --122.89,48.16,0.518,2.925 --122.89,48.17,0.517,2.918 --122.89,48.18,0.516,2.908 --122.89,48.19,0.514,2.889 --122.89,48.20,0.495,2.707 --122.89,48.21,0.494,2.697 --122.89,48.22,0.486,2.62 --122.89,48.23,0.473,2.497 --122.89,48.24,0.472,2.487 --122.89,48.25,0.456,2.334 --122.89,48.26,0.451,2.288 --122.89,48.27,0.432,2.098 --122.89,48.28,0.411,1.896 --122.89,48.29,0.404,1.835 --122.89,48.30,0.383,1.634 --122.89,48.31,0.36,1.407 --122.89,48.32,0.345,1.265 --122.89,48.33,0.329,1.113 --122.88,46.95,0.268,0.522 --122.88,46.96,0.28,0.642 --122.88,46.97,0.294,0.779 --122.88,46.98,0.314,0.968 --122.88,46.99,0.322,1.044 --122.88,47.00,0.343,1.25 --122.88,47.01,0.365,1.456 --122.88,47.02,0.389,1.685 --122.88,47.03,0.408,1.873 --122.88,47.04,0.42,1.983 --122.88,47.05,0.44,2.177 --122.88,47.06,0.463,2.398 --122.88,47.07,0.485,2.616 --122.88,47.08,0.493,2.692 --122.88,47.09,0.511,2.864 --122.88,47.10,0.534,3.082 --122.88,47.11,0.537,3.109 --122.88,47.12,0.555,3.283 --122.88,47.13,0.561,3.341 --122.88,47.14,0.575,3.473 --122.88,47.15,0.584,3.569 --122.88,47.16,0.594,3.657 --122.88,47.17,0.594,3.658 --122.88,47.18,0.609,3.805 --122.88,47.19,0.612,3.832 --122.88,47.20,0.612,3.832 --122.88,47.21,0.616,3.868 --122.88,47.22,0.628,3.983 --122.88,47.23,0.632,4.024 --122.88,47.24,0.633,4.033 --122.88,47.25,0.634,4.043 --122.88,47.26,0.635,4.054 --122.88,47.27,0.636,4.064 --122.88,47.28,0.635,4.052 --122.88,47.29,0.62,3.907 --122.88,47.30,0.617,3.885 --122.88,47.31,0.601,3.73 --122.88,47.32,0.594,3.665 --122.88,47.33,0.581,3.537 --122.88,47.34,0.564,3.374 --122.88,47.35,0.544,3.183 --122.88,47.36,0.519,2.943 --122.88,47.37,0.509,2.846 --122.88,47.38,0.487,2.635 --122.88,47.39,0.463,2.398 --122.88,47.40,0.45,2.274 --122.88,47.41,0.439,2.171 --122.88,47.42,0.431,2.09 --122.88,47.43,0.431,2.094 --122.88,47.44,0.427,2.056 --122.88,47.45,0.413,1.916 --122.88,47.46,0.413,1.921 --122.88,47.47,0.414,1.927 --122.88,47.48,0.414,1.931 --122.88,47.49,0.415,1.935 --122.88,47.50,0.415,1.939 --122.88,47.51,0.415,1.942 --122.88,47.52,0.416,1.945 --122.88,47.53,0.411,1.904 --122.88,47.54,0.412,1.908 --122.88,47.55,0.412,1.912 --122.88,47.56,0.413,1.916 --122.88,47.57,0.413,1.919 --122.88,47.58,0.413,1.922 --122.88,47.59,0.414,1.925 --122.88,47.60,0.414,1.927 --122.88,47.61,0.413,1.924 --122.88,47.62,0.407,1.864 --122.88,47.63,0.406,1.851 --122.88,47.64,0.404,1.836 --122.88,47.65,0.384,1.645 --122.88,47.66,0.382,1.619 --122.88,47.67,0.381,1.607 --122.88,47.68,0.369,1.495 --122.88,47.69,0.359,1.396 --122.88,47.70,0.357,1.384 --122.88,47.71,0.357,1.38 --122.88,47.72,0.357,1.385 --122.88,47.73,0.353,1.339 --122.88,47.74,0.339,1.209 --122.88,47.75,0.34,1.213 --122.88,47.76,0.34,1.215 --122.88,47.77,0.34,1.214 --122.88,47.78,0.34,1.213 --122.88,47.79,0.334,1.156 --122.88,47.80,0.322,1.047 --122.88,47.81,0.319,1.017 --122.88,47.82,0.319,1.015 --122.88,47.83,0.319,1.014 --122.88,47.84,0.319,1.012 --122.88,47.85,0.305,0.877 --122.88,47.86,0.299,0.819 --122.88,47.87,0.299,0.818 --122.88,47.88,0.299,0.818 --122.88,47.89,0.299,0.818 --122.88,47.90,0.305,0.878 --122.88,47.91,0.305,0.879 --122.88,47.92,0.305,0.881 --122.88,47.93,0.319,1.016 --122.88,47.94,0.326,1.081 --122.88,47.95,0.33,1.124 --122.88,47.96,0.348,1.291 --122.88,47.97,0.357,1.377 --122.88,47.98,0.369,1.5 --122.88,47.99,0.39,1.696 --122.88,48.00,0.407,1.861 --122.88,48.01,0.417,1.958 --122.88,48.02,0.44,2.182 --122.88,48.03,0.455,2.328 --122.88,48.04,0.466,2.43 --122.88,48.05,0.477,2.533 --122.88,48.06,0.492,2.678 --122.88,48.07,0.498,2.739 --122.88,48.08,0.517,2.917 --122.88,48.09,0.518,2.927 --122.88,48.10,0.518,2.926 --122.88,48.11,0.518,2.925 --122.88,48.12,0.524,2.987 --122.88,48.13,0.524,2.986 --122.88,48.14,0.524,2.987 --122.88,48.15,0.517,2.923 --122.88,48.16,0.517,2.922 --122.88,48.17,0.516,2.914 --122.88,48.18,0.515,2.903 --122.88,48.19,0.499,2.748 --122.88,48.20,0.494,2.7 --122.88,48.21,0.493,2.688 --122.88,48.22,0.473,2.5 --122.88,48.23,0.472,2.489 --122.88,48.24,0.465,2.419 --122.88,48.25,0.452,2.292 --122.88,48.26,0.44,2.182 --122.88,48.27,0.43,2.083 --122.88,48.28,0.41,1.888 --122.88,48.29,0.391,1.707 --122.88,48.30,0.368,1.483 --122.88,48.31,0.356,1.375 --122.88,48.32,0.34,1.218 --122.88,48.33,0.316,0.987 --122.87,46.95,0.271,0.552 --122.87,46.96,0.281,0.646 --122.87,46.97,0.295,0.783 --122.87,46.98,0.318,1.001 --122.87,46.99,0.333,1.153 --122.87,47.00,0.345,1.265 --122.87,47.01,0.369,1.494 --122.87,47.02,0.393,1.723 --122.87,47.03,0.409,1.881 --122.87,47.04,0.432,2.104 --122.87,47.05,0.455,2.328 --122.87,47.06,0.473,2.492 --122.87,47.07,0.489,2.655 --122.87,47.08,0.504,2.796 --122.87,47.09,0.527,3.013 --122.87,47.10,0.535,3.091 --122.87,47.11,0.552,3.253 --122.87,47.12,0.555,3.285 --122.87,47.13,0.574,3.47 --122.87,47.14,0.578,3.502 --122.87,47.15,0.593,3.654 --122.87,47.16,0.593,3.654 --122.87,47.17,0.602,3.74 --122.87,47.18,0.611,3.828 --122.87,47.19,0.611,3.826 --122.87,47.20,0.617,3.88 --122.87,47.21,0.626,3.966 --122.87,47.22,0.63,4.008 --122.87,47.23,0.631,4.018 --122.87,47.24,0.632,4.026 --122.87,47.25,0.633,4.037 --122.87,47.26,0.634,4.048 --122.87,47.27,0.635,4.059 --122.87,47.28,0.634,4.047 --122.87,47.29,0.619,3.903 --122.87,47.30,0.613,3.843 --122.87,47.31,0.601,3.727 --122.87,47.32,0.59,3.622 --122.87,47.33,0.577,3.494 --122.87,47.34,0.553,3.27 --122.87,47.35,0.538,3.121 --122.87,47.36,0.515,2.9 --122.87,47.37,0.498,2.738 --122.87,47.38,0.472,2.483 --122.87,47.39,0.447,2.247 --122.87,47.40,0.444,2.222 --122.87,47.41,0.425,2.034 --122.87,47.42,0.421,1.998 --122.87,47.43,0.415,1.938 --122.87,47.44,0.416,1.945 --122.87,47.45,0.407,1.861 --122.87,47.46,0.408,1.868 --122.87,47.47,0.408,1.875 --122.87,47.48,0.409,1.88 --122.87,47.49,0.409,1.884 --122.87,47.50,0.41,1.888 --122.87,47.51,0.41,1.891 --122.87,47.52,0.41,1.894 --122.87,47.53,0.411,1.899 --122.87,47.54,0.411,1.904 --122.87,47.55,0.412,1.908 --122.87,47.56,0.412,1.912 --122.87,47.57,0.422,2.006 --122.87,47.58,0.423,2.011 --122.87,47.59,0.423,2.016 --122.87,47.60,0.423,2.02 --122.87,47.61,0.423,2.019 --122.87,47.62,0.423,2.012 --122.87,47.63,0.421,2.0 --122.87,47.64,0.409,1.879 --122.87,47.65,0.399,1.787 --122.87,47.66,0.398,1.775 --122.87,47.67,0.397,1.763 --122.87,47.68,0.385,1.652 --122.87,47.69,0.375,1.554 --122.87,47.70,0.374,1.544 --122.87,47.71,0.374,1.541 --122.87,47.72,0.374,1.547 --122.87,47.73,0.373,1.537 --122.87,47.74,0.365,1.458 --122.87,47.75,0.356,1.373 --122.87,47.76,0.356,1.374 --122.87,47.77,0.356,1.373 --122.87,47.78,0.356,1.371 --122.87,47.79,0.356,1.369 --122.87,47.80,0.338,1.202 --122.87,47.81,0.335,1.172 --122.87,47.82,0.335,1.17 --122.87,47.83,0.335,1.167 --122.87,47.84,0.32,1.022 --122.87,47.85,0.314,0.971 --122.87,47.86,0.314,0.971 --122.87,47.87,0.314,0.97 --122.87,47.88,0.314,0.969 --122.87,47.89,0.314,0.969 --122.87,47.90,0.314,0.969 --122.87,47.91,0.314,0.969 --122.87,47.92,0.318,1.004 --122.87,47.93,0.326,1.082 --122.87,47.94,0.326,1.084 --122.87,47.95,0.346,1.275 --122.87,47.96,0.348,1.293 --122.87,47.97,0.363,1.442 --122.87,47.98,0.375,1.552 --122.87,47.99,0.391,1.707 --122.87,48.00,0.413,1.915 --122.87,48.01,0.426,2.04 --122.87,48.02,0.44,2.183 --122.87,48.03,0.455,2.328 --122.87,48.04,0.466,2.43 --122.87,48.05,0.477,2.536 --122.87,48.06,0.497,2.729 --122.87,48.07,0.498,2.738 --122.87,48.08,0.517,2.916 --122.87,48.09,0.518,2.926 --122.87,48.10,0.518,2.925 --122.87,48.11,0.517,2.924 --122.87,48.12,0.517,2.922 --122.87,48.13,0.517,2.921 --122.87,48.14,0.517,2.919 --122.87,48.15,0.517,2.918 --122.87,48.16,0.517,2.915 --122.87,48.17,0.516,2.907 --122.87,48.18,0.506,2.818 --122.87,48.19,0.494,2.703 --122.87,48.20,0.493,2.691 --122.87,48.21,0.478,2.546 --122.87,48.22,0.472,2.49 --122.87,48.23,0.471,2.479 --122.87,48.24,0.452,2.294 --122.87,48.25,0.447,2.251 --122.87,48.26,0.431,2.095 --122.87,48.27,0.422,2.006 --122.87,48.28,0.399,1.783 --122.87,48.29,0.383,1.627 --122.87,48.30,0.367,1.473 --122.87,48.31,0.349,1.299 --122.87,48.32,0.332,1.137 --122.87,48.33,0.308,0.908 --122.86,46.95,0.271,0.555 --122.86,46.96,0.281,0.65 --122.86,46.97,0.301,0.841 --122.86,46.98,0.318,1.009 --122.86,46.99,0.342,1.236 --122.86,47.00,0.353,1.343 --122.86,47.01,0.377,1.571 --122.86,47.02,0.401,1.8 --122.86,47.03,0.425,2.03 --122.86,47.04,0.441,2.189 --122.86,47.05,0.464,2.413 --122.86,47.06,0.475,2.512 --122.86,47.07,0.497,2.729 --122.86,47.08,0.514,2.893 --122.86,47.09,0.534,3.088 --122.86,47.10,0.545,3.186 --122.86,47.11,0.555,3.284 --122.86,47.12,0.568,3.415 --122.86,47.13,0.574,3.469 --122.86,47.14,0.592,3.637 --122.86,47.15,0.594,3.656 --122.86,47.16,0.599,3.708 --122.86,47.17,0.611,3.824 --122.86,47.18,0.611,3.822 --122.86,47.19,0.614,3.855 --122.86,47.20,0.62,3.909 --122.86,47.21,0.625,3.957 --122.86,47.22,0.628,3.992 --122.86,47.23,0.631,4.013 --122.86,47.24,0.632,4.022 --122.86,47.25,0.633,4.033 --122.86,47.26,0.634,4.044 --122.86,47.27,0.635,4.055 --122.86,47.28,0.634,4.042 --122.86,47.29,0.619,3.9 --122.86,47.30,0.613,3.84 --122.86,47.31,0.601,3.725 --122.86,47.32,0.584,3.566 --122.86,47.33,0.568,3.407 --122.86,47.34,0.544,3.183 --122.86,47.35,0.534,3.084 --122.86,47.36,0.509,2.841 --122.86,47.37,0.489,2.65 --122.86,47.38,0.463,2.396 --122.86,47.39,0.445,2.223 --122.86,47.40,0.43,2.081 --122.86,47.41,0.424,2.029 --122.86,47.42,0.405,1.846 --122.86,47.43,0.403,1.827 --122.86,47.44,0.4,1.794 --122.86,47.45,0.401,1.803 --122.86,47.46,0.402,1.812 --122.86,47.47,0.403,1.82 --122.86,47.48,0.403,1.826 --122.86,47.49,0.404,1.83 --122.86,47.50,0.404,1.834 --122.86,47.51,0.405,1.838 --122.86,47.52,0.41,1.889 --122.86,47.53,0.41,1.894 --122.86,47.54,0.411,1.899 --122.86,47.55,0.411,1.903 --122.86,47.56,0.42,1.99 --122.86,47.57,0.431,2.092 --122.86,47.58,0.432,2.101 --122.86,47.59,0.433,2.109 --122.86,47.60,0.433,2.116 --122.86,47.61,0.434,2.118 --122.86,47.62,0.433,2.112 --122.86,47.63,0.432,2.103 --122.86,47.64,0.416,1.95 --122.86,47.65,0.415,1.94 --122.86,47.66,0.414,1.93 --122.86,47.67,0.413,1.919 --122.86,47.68,0.402,1.809 --122.86,47.69,0.396,1.754 --122.86,47.70,0.391,1.704 --122.86,47.71,0.39,1.702 --122.86,47.72,0.391,1.708 --122.86,47.73,0.392,1.714 --122.86,47.74,0.388,1.682 --122.86,47.75,0.373,1.532 --122.86,47.76,0.373,1.533 --122.86,47.77,0.373,1.531 --122.86,47.78,0.372,1.529 --122.86,47.79,0.372,1.527 --122.86,47.80,0.352,1.33 --122.86,47.81,0.351,1.327 --122.86,47.82,0.351,1.324 --122.86,47.83,0.343,1.247 --122.86,47.84,0.33,1.125 --122.86,47.85,0.33,1.123 --122.86,47.86,0.33,1.122 --122.86,47.87,0.33,1.121 --122.86,47.88,0.326,1.084 --122.86,47.89,0.326,1.084 --122.86,47.90,0.326,1.084 --122.86,47.91,0.326,1.084 --122.86,47.92,0.326,1.084 --122.86,47.93,0.326,1.084 --122.86,47.94,0.338,1.2 --122.86,47.95,0.347,1.288 --122.86,47.96,0.348,1.293 --122.86,47.97,0.367,1.475 --122.86,47.98,0.387,1.665 --122.86,47.99,0.391,1.706 --122.86,48.00,0.414,1.927 --122.86,48.01,0.434,2.121 --122.86,48.02,0.44,2.183 --122.86,48.03,0.455,2.327 --122.86,48.04,0.469,2.459 --122.86,48.05,0.489,2.646 --122.86,48.06,0.497,2.728 --122.86,48.07,0.498,2.736 --122.86,48.08,0.517,2.915 --122.86,48.09,0.518,2.925 --122.86,48.10,0.517,2.923 --122.86,48.11,0.517,2.921 --122.86,48.12,0.517,2.92 --122.86,48.13,0.517,2.917 --122.86,48.14,0.516,2.914 --122.86,48.15,0.516,2.911 --122.86,48.16,0.516,2.907 --122.86,48.17,0.513,2.886 --122.86,48.18,0.495,2.704 --122.86,48.19,0.493,2.692 --122.86,48.20,0.485,2.611 --122.86,48.21,0.472,2.491 --122.86,48.22,0.471,2.48 --122.86,48.23,0.457,2.345 --122.86,48.24,0.451,2.284 --122.86,48.25,0.433,2.113 --122.86,48.26,0.43,2.08 --122.86,48.27,0.409,1.88 --122.86,48.28,0.388,1.683 --122.86,48.29,0.38,1.601 --122.86,48.30,0.359,1.398 --122.86,48.31,0.345,1.263 --122.86,48.32,0.329,1.113 --122.86,48.33,0.306,0.886 --122.86,48.34,0.284,0.68 --122.85,46.95,0.272,0.559 --122.85,46.96,0.293,0.766 --122.85,46.97,0.302,0.847 --122.85,46.98,0.322,1.04 --122.85,46.99,0.343,1.243 --122.85,47.00,0.367,1.472 --122.85,47.01,0.39,1.702 --122.85,47.02,0.414,1.931 --122.85,47.03,0.431,2.088 --122.85,47.04,0.444,2.219 --122.85,47.05,0.467,2.443 --122.85,47.06,0.49,2.664 --122.85,47.07,0.511,2.86 --122.85,47.08,0.516,2.907 --122.85,47.09,0.538,3.12 --122.85,47.10,0.555,3.282 --122.85,47.11,0.562,3.352 --122.85,47.12,0.574,3.468 --122.85,47.13,0.585,3.572 --122.85,47.14,0.593,3.647 --122.85,47.15,0.607,3.785 --122.85,47.16,0.611,3.82 --122.85,47.17,0.61,3.818 --122.85,47.18,0.611,3.821 --122.85,47.19,0.616,3.876 --122.85,47.20,0.616,3.873 --122.85,47.21,0.622,3.925 --122.85,47.22,0.627,3.978 --122.85,47.23,0.63,4.006 --122.85,47.24,0.631,4.018 --122.85,47.25,0.632,4.029 --122.85,47.26,0.633,4.04 --122.85,47.27,0.635,4.051 --122.85,47.28,0.633,4.038 --122.85,47.29,0.618,3.896 --122.85,47.30,0.612,3.837 --122.85,47.31,0.592,3.638 --122.85,47.32,0.582,3.541 --122.85,47.33,0.568,3.407 --122.85,47.34,0.544,3.184 --122.85,47.35,0.52,2.946 --122.85,47.36,0.495,2.707 --122.85,47.37,0.488,2.643 --122.85,47.38,0.462,2.392 --122.85,47.39,0.438,2.161 --122.85,47.40,0.425,2.03 --122.85,47.41,0.412,1.91 --122.85,47.42,0.404,1.83 --122.85,47.43,0.388,1.675 --122.85,47.44,0.385,1.649 --122.85,47.45,0.386,1.66 --122.85,47.46,0.387,1.669 --122.85,47.47,0.388,1.677 --122.85,47.48,0.389,1.684 --122.85,47.49,0.389,1.688 --122.85,47.50,0.389,1.691 --122.85,47.51,0.403,1.819 --122.85,47.52,0.409,1.882 --122.85,47.53,0.41,1.888 --122.85,47.54,0.41,1.893 --122.85,47.55,0.413,1.916 --122.85,47.56,0.43,2.078 --122.85,47.57,0.43,2.085 --122.85,47.58,0.431,2.097 --122.85,47.59,0.433,2.108 --122.85,47.60,0.433,2.116 --122.85,47.61,0.434,2.12 --122.85,47.62,0.434,2.117 --122.85,47.63,0.433,2.11 --122.85,47.64,0.432,2.1 --122.85,47.65,0.431,2.092 --122.85,47.66,0.43,2.084 --122.85,47.67,0.429,2.075 --122.85,47.68,0.428,2.062 --122.85,47.69,0.415,1.937 --122.85,47.70,0.407,1.865 --122.85,47.71,0.407,1.863 --122.85,47.72,0.408,1.869 --122.85,47.73,0.408,1.875 --122.85,47.74,0.405,1.842 --122.85,47.75,0.389,1.691 --122.85,47.76,0.389,1.692 --122.85,47.77,0.389,1.69 --122.85,47.78,0.389,1.688 --122.85,47.79,0.374,1.548 --122.85,47.80,0.368,1.487 --122.85,47.81,0.368,1.483 --122.85,47.82,0.367,1.474 --122.85,47.83,0.347,1.282 --122.85,47.84,0.346,1.278 --122.85,47.85,0.346,1.275 --122.85,47.86,0.346,1.274 --122.85,47.87,0.334,1.163 --122.85,47.88,0.327,1.09 --122.85,47.89,0.327,1.089 --122.85,47.90,0.327,1.089 --122.85,47.91,0.327,1.088 --122.85,47.92,0.327,1.088 --122.85,47.93,0.331,1.13 --122.85,47.94,0.347,1.285 --122.85,47.95,0.347,1.289 --122.85,47.96,0.359,1.399 --122.85,47.97,0.369,1.494 --122.85,47.98,0.387,1.665 --122.85,47.99,0.391,1.705 --122.85,48.00,0.414,1.927 --122.85,48.01,0.434,2.12 --122.85,48.02,0.44,2.183 --122.85,48.03,0.461,2.382 --122.85,48.04,0.476,2.522 --122.85,48.05,0.488,2.645 --122.85,48.06,0.497,2.727 --122.85,48.07,0.498,2.735 --122.85,48.08,0.516,2.914 --122.85,48.09,0.517,2.923 --122.85,48.10,0.517,2.921 --122.85,48.11,0.517,2.919 --122.85,48.12,0.517,2.917 --122.85,48.13,0.516,2.913 --122.85,48.14,0.516,2.909 --122.85,48.15,0.515,2.903 --122.85,48.16,0.515,2.897 --122.85,48.17,0.498,2.74 --122.85,48.18,0.493,2.693 --122.85,48.19,0.492,2.676 --122.85,48.20,0.472,2.491 --122.85,48.21,0.471,2.48 --122.85,48.22,0.464,2.408 --122.85,48.23,0.451,2.284 --122.85,48.24,0.44,2.177 --122.85,48.25,0.431,2.092 --122.85,48.26,0.415,1.935 --122.85,48.27,0.408,1.872 --122.85,48.28,0.388,1.677 --122.85,48.29,0.367,1.475 --122.85,48.30,0.358,1.392 --122.85,48.31,0.338,1.197 --122.85,48.32,0.314,0.97 --122.85,48.33,0.301,0.844 --122.85,48.34,0.284,0.677 --122.84,46.95,0.272,0.563 --122.84,46.96,0.294,0.772 --122.84,46.97,0.314,0.967 --122.84,46.98,0.323,1.054 --122.84,46.99,0.344,1.251 --122.84,47.00,0.367,1.48 --122.84,47.01,0.391,1.709 --122.84,47.02,0.415,1.939 --122.84,47.03,0.436,2.145 --122.84,47.04,0.46,2.372 --122.84,47.05,0.483,2.596 --122.84,47.06,0.495,2.706 --122.84,47.07,0.512,2.867 --122.84,47.08,0.531,3.056 --122.84,47.09,0.553,3.263 --122.84,47.10,0.555,3.288 --122.84,47.11,0.574,3.47 --122.84,47.12,0.578,3.509 --122.84,47.13,0.593,3.646 --122.84,47.14,0.6,3.721 --122.84,47.15,0.61,3.816 --122.84,47.16,0.61,3.813 --122.84,47.17,0.61,3.812 --122.84,47.18,0.613,3.84 --122.84,47.19,0.612,3.836 --122.84,47.20,0.612,3.838 --122.84,47.21,0.618,3.893 --122.84,47.22,0.624,3.952 --122.84,47.23,0.629,3.994 --122.84,47.24,0.631,4.014 --122.84,47.25,0.632,4.025 --122.84,47.26,0.633,4.036 --122.84,47.27,0.634,4.047 --122.84,47.28,0.633,4.034 --122.84,47.29,0.618,3.893 --122.84,47.30,0.612,3.834 --122.84,47.31,0.591,3.636 --122.84,47.32,0.581,3.54 --122.84,47.33,0.568,3.407 --122.84,47.34,0.544,3.184 --122.84,47.35,0.52,2.946 --122.84,47.36,0.495,2.708 --122.84,47.37,0.473,2.5 --122.84,47.38,0.448,2.257 --122.84,47.39,0.438,2.164 --122.84,47.40,0.419,1.981 --122.84,47.41,0.404,1.828 --122.84,47.42,0.394,1.734 --122.84,47.43,0.383,1.63 --122.84,47.44,0.384,1.641 --122.84,47.45,0.385,1.654 --122.84,47.46,0.387,1.665 --122.84,47.47,0.388,1.675 --122.84,47.48,0.388,1.682 --122.84,47.49,0.389,1.685 --122.84,47.50,0.389,1.689 --122.84,47.51,0.394,1.735 --122.84,47.52,0.404,1.837 --122.84,47.53,0.409,1.882 --122.84,47.54,0.41,1.887 --122.84,47.55,0.412,1.909 --122.84,47.56,0.429,2.069 --122.84,47.57,0.429,2.075 --122.84,47.58,0.431,2.092 --122.84,47.59,0.438,2.156 --122.84,47.60,0.447,2.245 --122.84,47.61,0.448,2.253 --122.84,47.62,0.448,2.253 --122.84,47.63,0.447,2.249 --122.84,47.64,0.447,2.243 --122.84,47.65,0.446,2.238 --122.84,47.66,0.446,2.233 --122.84,47.67,0.445,2.226 --122.84,47.68,0.444,2.22 --122.84,47.69,0.431,2.094 --122.84,47.70,0.424,2.024 --122.84,47.71,0.424,2.024 --122.84,47.72,0.424,2.029 --122.84,47.73,0.425,2.034 --122.84,47.74,0.422,2.001 --122.84,47.75,0.406,1.851 --122.84,47.76,0.406,1.851 --122.84,47.77,0.406,1.849 --122.84,47.78,0.405,1.847 --122.84,47.79,0.39,1.697 --122.84,47.80,0.384,1.644 --122.84,47.81,0.384,1.639 --122.84,47.82,0.368,1.483 --122.84,47.83,0.363,1.436 --122.84,47.84,0.362,1.431 --122.84,47.85,0.36,1.408 --122.84,47.86,0.348,1.293 --122.84,47.87,0.341,1.23 --122.84,47.88,0.341,1.228 --122.84,47.89,0.341,1.227 --122.84,47.90,0.328,1.101 --122.84,47.91,0.327,1.092 --122.84,47.92,0.327,1.091 --122.84,47.93,0.333,1.147 --122.84,47.94,0.347,1.287 --122.84,47.95,0.348,1.29 --122.84,47.96,0.361,1.416 --122.84,47.97,0.369,1.494 --122.84,47.98,0.386,1.664 --122.84,47.99,0.391,1.704 --122.84,48.00,0.414,1.927 --122.84,48.01,0.434,2.12 --122.84,48.02,0.44,2.183 --122.84,48.03,0.462,2.392 --122.84,48.04,0.466,2.429 --122.84,48.05,0.488,2.644 --122.84,48.06,0.497,2.726 --122.84,48.07,0.498,2.733 --122.84,48.08,0.516,2.913 --122.84,48.09,0.517,2.921 --122.84,48.10,0.517,2.919 --122.84,48.11,0.517,2.917 --122.84,48.12,0.517,2.915 --122.84,48.13,0.516,2.91 --122.84,48.14,0.515,2.903 --122.84,48.15,0.515,2.896 --122.84,48.16,0.514,2.887 --122.84,48.17,0.495,2.705 --122.84,48.18,0.492,2.681 --122.84,48.19,0.488,2.639 --122.84,48.20,0.471,2.479 --122.84,48.21,0.47,2.466 --122.84,48.22,0.451,2.284 --122.84,48.23,0.45,2.273 --122.84,48.24,0.436,2.141 --122.84,48.25,0.43,2.082 --122.84,48.26,0.411,1.9 --122.84,48.27,0.407,1.863 --122.84,48.28,0.384,1.642 --122.84,48.29,0.366,1.469 --122.84,48.30,0.346,1.276 --122.84,48.31,0.334,1.162 --122.84,48.32,0.311,0.936 --122.84,48.33,0.296,0.79 --122.84,48.34,0.28,0.64 --122.83,46.95,0.282,0.658 --122.83,46.96,0.294,0.777 --122.83,46.97,0.317,0.994 --122.83,46.98,0.333,1.153 --122.83,46.99,0.357,1.382 --122.83,47.00,0.381,1.611 --122.83,47.01,0.392,1.716 --122.83,47.02,0.416,1.947 --122.83,47.03,0.44,2.176 --122.83,47.04,0.463,2.404 --122.83,47.05,0.487,2.629 --122.83,47.06,0.502,2.779 --122.83,47.07,0.525,2.994 --122.83,47.08,0.536,3.101 --122.83,47.09,0.555,3.285 --122.83,47.10,0.57,3.428 --122.83,47.11,0.574,3.47 --122.83,47.12,0.593,3.646 --122.83,47.13,0.594,3.661 --122.83,47.14,0.61,3.815 --122.83,47.15,0.609,3.809 --122.83,47.16,0.609,3.806 --122.83,47.17,0.609,3.801 --122.83,47.18,0.609,3.809 --122.83,47.19,0.608,3.799 --122.83,47.20,0.609,3.805 --122.83,47.21,0.615,3.863 --122.83,47.22,0.622,3.925 --122.83,47.23,0.627,3.978 --122.83,47.24,0.631,4.019 --122.83,47.25,0.635,4.059 --122.83,47.26,0.633,4.039 --122.83,47.27,0.634,4.043 --122.83,47.28,0.632,4.03 --122.83,47.29,0.618,3.89 --122.83,47.30,0.612,3.831 --122.83,47.31,0.591,3.634 --122.83,47.32,0.579,3.514 --122.83,47.33,0.562,3.349 --122.83,47.34,0.544,3.184 --122.83,47.35,0.52,2.947 --122.83,47.36,0.495,2.707 --122.83,47.37,0.47,2.463 --122.83,47.38,0.448,2.26 --122.83,47.39,0.428,2.06 --122.83,47.40,0.415,1.941 --122.83,47.41,0.401,1.802 --122.83,47.42,0.382,1.622 --122.83,47.43,0.382,1.618 --122.83,47.44,0.375,1.55 --122.83,47.45,0.374,1.546 --122.83,47.46,0.376,1.559 --122.83,47.47,0.377,1.571 --122.83,47.48,0.378,1.579 --122.83,47.49,0.378,1.583 --122.83,47.50,0.389,1.686 --122.83,47.51,0.389,1.688 --122.83,47.52,0.398,1.778 --122.83,47.53,0.406,1.855 --122.83,47.54,0.409,1.879 --122.83,47.55,0.411,1.902 --122.83,47.56,0.427,2.057 --122.83,47.57,0.428,2.065 --122.83,47.58,0.43,2.086 --122.83,47.59,0.45,2.272 --122.83,47.60,0.454,2.317 --122.83,47.61,0.462,2.389 --122.83,47.62,0.462,2.392 --122.83,47.63,0.462,2.391 --122.83,47.64,0.462,2.388 --122.83,47.65,0.462,2.386 --122.83,47.66,0.461,2.383 --122.83,47.67,0.461,2.379 --122.83,47.68,0.46,2.375 --122.83,47.69,0.45,2.274 --122.83,47.70,0.445,2.227 --122.83,47.71,0.44,2.182 --122.83,47.72,0.441,2.186 --122.83,47.73,0.441,2.191 --122.83,47.74,0.438,2.156 --122.83,47.75,0.431,2.095 --122.83,47.76,0.422,2.009 --122.83,47.77,0.422,2.007 --122.83,47.78,0.42,1.986 --122.83,47.79,0.401,1.807 --122.83,47.80,0.401,1.802 --122.83,47.81,0.392,1.714 --122.83,47.82,0.379,1.595 --122.83,47.83,0.379,1.59 --122.83,47.84,0.369,1.499 --122.83,47.85,0.361,1.416 --122.83,47.86,0.357,1.384 --122.83,47.87,0.356,1.369 --122.83,47.88,0.348,1.296 --122.83,47.89,0.348,1.295 --122.83,47.90,0.336,1.181 --122.83,47.91,0.336,1.179 --122.83,47.92,0.336,1.177 --122.83,47.93,0.342,1.233 --122.83,47.94,0.347,1.289 --122.83,47.95,0.348,1.291 --122.83,47.96,0.361,1.416 --122.83,47.97,0.369,1.493 --122.83,47.98,0.386,1.663 --122.83,47.99,0.391,1.703 --122.83,48.00,0.414,1.926 --122.83,48.01,0.434,2.12 --122.83,48.02,0.44,2.183 --122.83,48.03,0.455,2.326 --122.83,48.04,0.466,2.428 --122.83,48.05,0.488,2.643 --122.83,48.06,0.491,2.673 --122.83,48.07,0.497,2.732 --122.83,48.08,0.51,2.85 --122.83,48.09,0.517,2.92 --122.83,48.10,0.517,2.917 --122.83,48.11,0.517,2.915 --122.83,48.12,0.516,2.912 --122.83,48.13,0.516,2.907 --122.83,48.14,0.515,2.898 --122.83,48.15,0.514,2.888 --122.83,48.16,0.509,2.842 --122.83,48.17,0.492,2.681 --122.83,48.18,0.491,2.667 --122.83,48.19,0.48,2.563 --122.83,48.20,0.47,2.465 --122.83,48.21,0.462,2.387 --122.83,48.22,0.45,2.271 --122.83,48.23,0.448,2.26 --122.83,48.24,0.43,2.082 --122.83,48.25,0.426,2.043 --122.83,48.26,0.409,1.88 --122.83,48.27,0.4,1.794 --122.83,48.28,0.383,1.634 --122.83,48.29,0.36,1.414 --122.83,48.30,0.345,1.263 --122.83,48.31,0.334,1.156 --122.83,48.32,0.31,0.932 --122.83,48.33,0.287,0.71 --122.83,48.34,0.28,0.637 --122.82,46.95,0.282,0.662 --122.82,46.96,0.295,0.782 --122.82,46.97,0.317,1.0 --122.82,46.98,0.341,1.227 --122.82,46.99,0.365,1.457 --122.82,47.00,0.388,1.676 --122.82,47.01,0.401,1.801 --122.82,47.02,0.425,2.031 --122.82,47.03,0.448,2.26 --122.82,47.04,0.472,2.487 --122.82,47.05,0.496,2.713 --122.82,47.06,0.511,2.858 --122.82,47.07,0.533,3.073 --122.82,47.08,0.543,3.165 --122.82,47.09,0.556,3.298 --122.82,47.10,0.574,3.471 --122.82,47.11,0.586,3.586 --122.82,47.12,0.593,3.646 --122.82,47.13,0.608,3.792 --122.82,47.14,0.61,3.81 --122.82,47.15,0.608,3.798 --122.82,47.16,0.606,3.778 --122.82,47.17,0.606,3.773 --122.82,47.18,0.605,3.768 --122.82,47.19,0.605,3.763 --122.82,47.20,0.606,3.773 --122.82,47.21,0.612,3.835 --122.82,47.22,0.619,3.9 --122.82,47.23,0.625,3.963 --122.82,47.24,0.632,4.023 --122.82,47.25,0.638,4.082 --122.82,47.26,0.633,4.034 --122.82,47.27,0.633,4.039 --122.82,47.28,0.632,4.026 --122.82,47.29,0.618,3.887 --122.82,47.30,0.611,3.828 --122.82,47.31,0.591,3.632 --122.82,47.32,0.57,3.434 --122.82,47.33,0.562,3.349 --122.82,47.34,0.544,3.184 --122.82,47.35,0.52,2.947 --122.82,47.36,0.495,2.707 --122.82,47.37,0.47,2.465 --122.82,47.38,0.444,2.218 --122.82,47.39,0.426,2.042 --122.82,47.40,0.409,1.878 --122.82,47.41,0.391,1.708 --122.82,47.42,0.381,1.612 --122.82,47.43,0.376,1.562 --122.82,47.44,0.362,1.433 --122.82,47.45,0.364,1.451 --122.82,47.46,0.366,1.466 --122.82,47.47,0.367,1.478 --122.82,47.48,0.368,1.487 --122.82,47.49,0.377,1.575 --122.82,47.50,0.383,1.63 --122.82,47.51,0.389,1.684 --122.82,47.52,0.389,1.685 --122.82,47.53,0.406,1.848 --122.82,47.54,0.408,1.871 --122.82,47.55,0.41,1.893 --122.82,47.56,0.426,2.044 --122.82,47.57,0.427,2.054 --122.82,47.58,0.442,2.195 --122.82,47.59,0.45,2.272 --122.82,47.60,0.468,2.449 --122.82,47.61,0.472,2.482 --122.82,47.62,0.475,2.511 --122.82,47.63,0.477,2.534 --122.82,47.64,0.477,2.534 --122.82,47.65,0.477,2.535 --122.82,47.66,0.477,2.534 --122.82,47.67,0.477,2.533 --122.82,47.68,0.476,2.53 --122.82,47.69,0.476,2.528 --122.82,47.70,0.461,2.384 --122.82,47.71,0.457,2.34 --122.82,47.72,0.457,2.343 --122.82,47.73,0.457,2.346 --122.82,47.74,0.458,2.349 --122.82,47.75,0.448,2.254 --122.82,47.76,0.439,2.165 --122.82,47.77,0.438,2.163 --122.82,47.78,0.425,2.036 --122.82,47.79,0.418,1.965 --122.82,47.80,0.417,1.959 --122.82,47.81,0.397,1.762 --122.82,47.82,0.396,1.751 --122.82,47.83,0.387,1.67 --122.82,47.84,0.374,1.544 --122.82,47.85,0.373,1.539 --122.82,47.86,0.37,1.501 --122.82,47.87,0.356,1.375 --122.82,47.88,0.352,1.336 --122.82,47.89,0.349,1.3 --122.82,47.90,0.348,1.298 --122.82,47.91,0.348,1.296 --122.82,47.92,0.348,1.294 --122.82,47.93,0.348,1.292 --122.82,47.94,0.348,1.291 --122.82,47.95,0.348,1.291 --122.82,47.96,0.361,1.416 --122.82,47.97,0.365,1.461 --122.82,47.98,0.386,1.662 --122.82,47.99,0.389,1.693 --122.82,48.00,0.414,1.926 --122.82,48.01,0.431,2.091 --122.82,48.02,0.44,2.183 --122.82,48.03,0.455,2.326 --122.82,48.04,0.466,2.428 --122.82,48.05,0.476,2.527 --122.82,48.06,0.491,2.672 --122.82,48.07,0.497,2.73 --122.82,48.08,0.497,2.731 --122.82,48.09,0.514,2.895 --122.82,48.10,0.517,2.916 --122.82,48.11,0.516,2.913 --122.82,48.12,0.516,2.91 --122.82,48.13,0.515,2.903 --122.82,48.14,0.514,2.893 --122.82,48.15,0.513,2.88 --122.82,48.16,0.494,2.697 --122.82,48.17,0.491,2.668 --122.82,48.18,0.486,2.625 --122.82,48.19,0.47,2.463 --122.82,48.20,0.468,2.449 --122.82,48.21,0.459,2.357 --122.82,48.22,0.448,2.257 --122.82,48.23,0.437,2.146 --122.82,48.24,0.429,2.07 --122.82,48.25,0.413,1.915 --122.82,48.26,0.408,1.871 --122.82,48.27,0.387,1.672 --122.82,48.28,0.383,1.626 --122.82,48.29,0.36,1.408 --122.82,48.30,0.344,1.257 --122.82,48.31,0.332,1.138 --122.82,48.32,0.31,0.928 --122.82,48.33,0.287,0.707 --122.82,48.34,0.279,0.634 --122.82,48.35,0.26,0.452 --122.81,46.95,0.283,0.666 --122.81,46.96,0.299,0.82 --122.81,46.97,0.318,1.006 --122.81,46.98,0.342,1.234 --122.81,46.99,0.366,1.463 --122.81,47.00,0.39,1.694 --122.81,47.01,0.413,1.924 --122.81,47.02,0.437,2.154 --122.81,47.03,0.461,2.383 --122.81,47.04,0.485,2.612 --122.81,47.05,0.496,2.721 --122.81,47.06,0.514,2.895 --122.81,47.07,0.537,3.109 --122.81,47.08,0.555,3.282 --122.81,47.09,0.559,3.327 --122.81,47.10,0.577,3.501 --122.81,47.11,0.593,3.651 --122.81,47.12,0.599,3.711 --122.81,47.13,0.61,3.814 --122.81,47.14,0.609,3.804 --122.81,47.15,0.604,3.752 --122.81,47.16,0.601,3.732 --122.81,47.17,0.601,3.732 --122.81,47.18,0.601,3.732 --122.81,47.19,0.601,3.731 --122.81,47.20,0.603,3.746 --122.81,47.21,0.61,3.81 --122.81,47.22,0.617,3.878 --122.81,47.23,0.623,3.943 --122.81,47.24,0.63,4.007 --122.81,47.25,0.636,4.066 --122.81,47.26,0.632,4.03 --122.81,47.27,0.633,4.036 --122.81,47.28,0.632,4.022 --122.81,47.29,0.617,3.884 --122.81,47.30,0.611,3.825 --122.81,47.31,0.591,3.631 --122.81,47.32,0.57,3.434 --122.81,47.33,0.562,3.35 --122.81,47.34,0.545,3.185 --122.81,47.35,0.52,2.948 --122.81,47.36,0.495,2.708 --122.81,47.37,0.47,2.467 --122.81,47.38,0.444,2.221 --122.81,47.39,0.419,1.975 --122.81,47.40,0.404,1.829 --122.81,47.41,0.39,1.701 --122.81,47.42,0.371,1.512 --122.81,47.43,0.361,1.42 --122.81,47.44,0.362,1.424 --122.81,47.45,0.364,1.445 --122.81,47.46,0.366,1.463 --122.81,47.47,0.367,1.477 --122.81,47.48,0.368,1.485 --122.81,47.49,0.368,1.489 --122.81,47.50,0.379,1.596 --122.81,47.51,0.388,1.68 --122.81,47.52,0.388,1.68 --122.81,47.53,0.405,1.84 --122.81,47.54,0.407,1.862 --122.81,47.55,0.41,1.886 --122.81,47.56,0.424,2.029 --122.81,47.57,0.431,2.096 --122.81,47.58,0.446,2.239 --122.81,47.59,0.46,2.367 --122.81,47.60,0.47,2.468 --122.81,47.61,0.472,2.488 --122.81,47.62,0.489,2.654 --122.81,47.63,0.492,2.678 --122.81,47.64,0.492,2.681 --122.81,47.65,0.493,2.684 --122.81,47.66,0.493,2.686 --122.81,47.67,0.493,2.686 --122.81,47.68,0.493,2.686 --122.81,47.69,0.493,2.685 --122.81,47.70,0.478,2.541 --122.81,47.71,0.473,2.497 --122.81,47.72,0.473,2.499 --122.81,47.73,0.473,2.501 --122.81,47.74,0.47,2.471 --122.81,47.75,0.454,2.317 --122.81,47.76,0.454,2.316 --122.81,47.77,0.454,2.314 --122.81,47.78,0.441,2.191 --122.81,47.79,0.434,2.122 --122.81,47.80,0.433,2.116 --122.81,47.81,0.413,1.92 --122.81,47.82,0.411,1.903 --122.81,47.83,0.391,1.705 --122.81,47.84,0.39,1.698 --122.81,47.85,0.382,1.624 --122.81,47.86,0.37,1.507 --122.81,47.87,0.368,1.49 --122.81,47.88,0.354,1.356 --122.81,47.89,0.349,1.305 --122.81,47.90,0.349,1.303 --122.81,47.91,0.349,1.3 --122.81,47.92,0.348,1.298 --122.81,47.93,0.348,1.294 --122.81,47.94,0.348,1.292 --122.81,47.95,0.348,1.292 --122.81,47.96,0.35,1.311 --122.81,47.97,0.363,1.439 --122.81,47.98,0.371,1.512 --122.81,47.99,0.389,1.692 --122.81,48.00,0.414,1.926 --122.81,48.01,0.417,1.958 --122.81,48.02,0.44,2.183 --122.81,48.03,0.455,2.325 --122.81,48.04,0.466,2.427 --122.81,48.05,0.476,2.526 --122.81,48.06,0.491,2.671 --122.81,48.07,0.497,2.729 --122.81,48.08,0.497,2.73 --122.81,48.09,0.5,2.752 --122.81,48.10,0.516,2.914 --122.81,48.11,0.516,2.911 --122.81,48.12,0.516,2.908 --122.81,48.13,0.515,2.9 --122.81,48.14,0.514,2.888 --122.81,48.15,0.501,2.768 --122.81,48.16,0.491,2.673 --122.81,48.17,0.489,2.652 --122.81,48.18,0.471,2.478 --122.81,48.19,0.468,2.446 --122.81,48.20,0.464,2.412 --122.81,48.21,0.448,2.253 --122.81,48.22,0.446,2.241 --122.81,48.23,0.435,2.131 --122.81,48.24,0.427,2.055 --122.81,48.25,0.412,1.905 --122.81,48.26,0.407,1.86 --122.81,48.27,0.387,1.665 --122.81,48.28,0.382,1.617 --122.81,48.29,0.359,1.4 --122.81,48.30,0.34,1.217 --122.81,48.31,0.323,1.05 --122.81,48.32,0.309,0.922 --122.81,48.33,0.287,0.703 --122.81,48.34,0.279,0.631 --122.81,48.35,0.26,0.449 --122.80,46.95,0.292,0.753 --122.80,46.96,0.303,0.864 --122.80,46.97,0.319,1.012 --122.80,46.98,0.342,1.239 --122.80,46.99,0.366,1.469 --122.80,47.00,0.39,1.698 --122.80,47.01,0.414,1.929 --122.80,47.02,0.438,2.159 --122.80,47.03,0.462,2.389 --122.80,47.04,0.486,2.618 --122.80,47.05,0.507,2.828 --122.80,47.06,0.53,3.049 --122.80,47.07,0.538,3.121 --122.80,47.08,0.555,3.287 --122.80,47.09,0.574,3.466 --122.80,47.10,0.578,3.503 --122.80,47.11,0.593,3.65 --122.80,47.12,0.599,3.71 --122.80,47.13,0.61,3.812 --122.80,47.14,0.608,3.791 --122.80,47.15,0.601,3.73 --122.80,47.16,0.599,3.713 --122.80,47.17,0.6,3.715 --122.80,47.18,0.6,3.718 --122.80,47.19,0.6,3.72 --122.80,47.20,0.602,3.736 --122.80,47.21,0.609,3.801 --122.80,47.22,0.616,3.869 --122.80,47.23,0.623,3.935 --122.80,47.24,0.629,4.0 --122.80,47.25,0.636,4.06 --122.80,47.26,0.632,4.028 --122.80,47.27,0.633,4.034 --122.80,47.28,0.631,4.02 --122.80,47.29,0.617,3.883 --122.80,47.30,0.611,3.823 --122.80,47.31,0.591,3.63 --122.80,47.32,0.571,3.436 --122.80,47.33,0.562,3.352 --122.80,47.34,0.545,3.188 --122.80,47.35,0.52,2.951 --122.80,47.36,0.495,2.712 --122.80,47.37,0.47,2.472 --122.80,47.38,0.445,2.228 --122.80,47.39,0.42,1.986 --122.80,47.40,0.405,1.84 --122.80,47.41,0.391,1.712 --122.80,47.42,0.378,1.586 --122.80,47.43,0.364,1.452 --122.80,47.44,0.362,1.432 --122.80,47.45,0.364,1.452 --122.80,47.46,0.366,1.469 --122.80,47.47,0.368,1.482 --122.80,47.48,0.368,1.49 --122.80,47.49,0.369,1.493 --122.80,47.50,0.38,1.6 --122.80,47.51,0.388,1.683 --122.80,47.52,0.388,1.683 --122.80,47.53,0.405,1.843 --122.80,47.54,0.407,1.865 --122.80,47.55,0.423,2.011 --122.80,47.56,0.425,2.032 --122.80,47.57,0.438,2.161 --122.80,47.58,0.45,2.278 --122.80,47.59,0.468,2.447 --122.80,47.60,0.478,2.548 --122.80,47.61,0.487,2.629 --122.80,47.62,0.493,2.684 --122.80,47.63,0.507,2.824 --122.80,47.64,0.508,2.829 --122.80,47.65,0.508,2.834 --122.80,47.66,0.508,2.837 --122.80,47.67,0.509,2.838 --122.80,47.68,0.509,2.838 --122.80,47.69,0.508,2.837 --122.80,47.70,0.494,2.694 --122.80,47.71,0.489,2.65 --122.80,47.72,0.489,2.65 --122.80,47.73,0.489,2.651 --122.80,47.74,0.485,2.614 --122.80,47.75,0.47,2.466 --122.80,47.76,0.47,2.465 --122.80,47.77,0.465,2.416 --122.80,47.78,0.45,2.273 --122.80,47.79,0.449,2.268 --122.80,47.80,0.438,2.158 --122.80,47.81,0.428,2.067 --122.80,47.82,0.412,1.909 --122.80,47.83,0.407,1.857 --122.80,47.84,0.392,1.715 --122.80,47.85,0.385,1.648 --122.80,47.86,0.38,1.603 --122.80,47.87,0.37,1.507 --122.80,47.88,0.363,1.44 --122.80,47.89,0.352,1.334 --122.80,47.90,0.349,1.304 --122.80,47.91,0.349,1.3 --122.80,47.92,0.348,1.297 --122.80,47.93,0.348,1.293 --122.80,47.94,0.348,1.29 --122.80,47.95,0.347,1.289 --122.80,47.96,0.347,1.289 --122.80,47.97,0.363,1.436 --122.80,47.98,0.368,1.488 --122.80,47.99,0.389,1.689 --122.80,48.00,0.399,1.783 --122.80,48.01,0.417,1.956 --122.80,48.02,0.44,2.181 --122.80,48.03,0.443,2.21 --122.80,48.04,0.466,2.425 --122.80,48.05,0.476,2.523 --122.80,48.06,0.484,2.602 --122.80,48.07,0.494,2.696 --122.80,48.08,0.497,2.726 --122.80,48.09,0.498,2.736 --122.80,48.10,0.504,2.795 --122.80,48.11,0.516,2.908 --122.80,48.12,0.515,2.904 --122.80,48.13,0.515,2.896 --122.80,48.14,0.509,2.843 --122.80,48.15,0.492,2.683 --122.80,48.16,0.491,2.665 --122.80,48.17,0.488,2.643 --122.80,48.18,0.468,2.452 --122.80,48.19,0.467,2.439 --122.80,48.20,0.461,2.379 --122.80,48.21,0.447,2.248 --122.80,48.22,0.445,2.226 --122.80,48.23,0.428,2.065 --122.80,48.24,0.427,2.054 --122.80,48.25,0.412,1.905 --122.80,48.26,0.407,1.862 --122.80,48.27,0.387,1.666 --122.80,48.28,0.371,1.519 --122.80,48.29,0.359,1.402 --122.80,48.30,0.336,1.183 --122.80,48.31,0.323,1.052 --122.80,48.32,0.31,0.925 --122.80,48.33,0.287,0.706 --122.80,48.34,0.28,0.635 --122.80,48.35,0.261,0.453 --122.79,46.95,0.293,0.769 --122.79,46.96,0.31,0.928 --122.79,46.97,0.333,1.15 --122.79,46.98,0.346,1.275 --122.79,46.99,0.367,1.473 --122.79,47.00,0.391,1.703 --122.79,47.01,0.414,1.933 --122.79,47.02,0.438,2.164 --122.79,47.03,0.462,2.393 --122.79,47.04,0.486,2.624 --122.79,47.05,0.51,2.853 --122.79,47.06,0.533,3.074 --122.79,47.07,0.548,3.215 --122.79,47.08,0.557,3.302 --122.79,47.09,0.575,3.477 --122.79,47.10,0.59,3.62 --122.79,47.11,0.593,3.65 --122.79,47.12,0.61,3.819 --122.79,47.13,0.61,3.81 --122.79,47.14,0.607,3.783 --122.79,47.15,0.6,3.717 --122.79,47.16,0.598,3.701 --122.79,47.17,0.599,3.706 --122.79,47.18,0.599,3.711 --122.79,47.19,0.6,3.715 --122.79,47.20,0.602,3.733 --122.79,47.21,0.608,3.797 --122.79,47.22,0.615,3.864 --122.79,47.23,0.622,3.931 --122.79,47.24,0.629,3.996 --122.79,47.25,0.635,4.057 --122.79,47.26,0.632,4.027 --122.79,47.27,0.633,4.034 --122.79,47.28,0.631,4.019 --122.79,47.29,0.617,3.882 --122.79,47.30,0.611,3.822 --122.79,47.31,0.591,3.63 --122.79,47.32,0.571,3.437 --122.79,47.33,0.557,3.304 --122.79,47.34,0.541,3.155 --122.79,47.35,0.521,2.954 --122.79,47.36,0.496,2.716 --122.79,47.37,0.471,2.477 --122.79,47.38,0.446,2.236 --122.79,47.39,0.421,1.996 --122.79,47.40,0.406,1.853 --122.79,47.41,0.393,1.725 --122.79,47.42,0.383,1.626 --122.79,47.43,0.366,1.466 --122.79,47.44,0.364,1.444 --122.79,47.45,0.365,1.462 --122.79,47.46,0.367,1.477 --122.79,47.47,0.368,1.489 --122.79,47.48,0.369,1.496 --122.79,47.49,0.369,1.498 --122.79,47.50,0.378,1.586 --122.79,47.51,0.383,1.626 --122.79,47.52,0.389,1.687 --122.79,47.53,0.406,1.849 --122.79,47.54,0.408,1.87 --122.79,47.55,0.425,2.037 --122.79,47.56,0.428,2.059 --122.79,47.57,0.442,2.194 --122.79,47.58,0.455,2.326 --122.79,47.59,0.47,2.467 --122.79,47.60,0.49,2.659 --122.79,47.61,0.498,2.733 --122.79,47.62,0.503,2.785 --122.79,47.63,0.513,2.882 --122.79,47.64,0.523,2.979 --122.79,47.65,0.524,2.985 --122.79,47.66,0.524,2.989 --122.79,47.67,0.524,2.99 --122.79,47.68,0.524,2.99 --122.79,47.69,0.524,2.99 --122.79,47.70,0.509,2.846 --122.79,47.71,0.505,2.801 --122.79,47.72,0.505,2.801 --122.79,47.73,0.505,2.801 --122.79,47.74,0.501,2.762 --122.79,47.75,0.485,2.614 --122.79,47.76,0.485,2.612 --122.79,47.77,0.474,2.508 --122.79,47.78,0.465,2.418 --122.79,47.79,0.46,2.375 --122.79,47.80,0.444,2.222 --122.79,47.81,0.436,2.136 --122.79,47.82,0.423,2.016 --122.79,47.83,0.409,1.884 --122.79,47.84,0.401,1.804 --122.79,47.85,0.392,1.713 --122.79,47.86,0.38,1.605 --122.79,47.87,0.378,1.579 --122.79,47.88,0.37,1.504 --122.79,47.89,0.358,1.388 --122.79,47.90,0.35,1.309 --122.79,47.91,0.349,1.299 --122.79,47.92,0.348,1.295 --122.79,47.93,0.348,1.29 --122.79,47.94,0.347,1.286 --122.79,47.95,0.347,1.285 --122.79,47.96,0.347,1.284 --122.79,47.97,0.362,1.431 --122.79,47.98,0.368,1.483 --122.79,47.99,0.389,1.685 --122.79,48.00,0.392,1.721 --122.79,48.01,0.417,1.953 --122.79,48.02,0.426,2.048 --122.79,48.03,0.443,2.206 --122.79,48.04,0.465,2.421 --122.79,48.05,0.468,2.45 --122.79,48.06,0.476,2.526 --122.79,48.07,0.493,2.692 --122.79,48.08,0.496,2.722 --122.79,48.09,0.496,2.72 --122.79,48.10,0.499,2.75 --122.79,48.11,0.508,2.837 --122.79,48.12,0.508,2.834 --122.79,48.13,0.507,2.826 --122.79,48.14,0.494,2.7 --122.79,48.15,0.492,2.678 --122.79,48.16,0.49,2.659 --122.79,48.17,0.483,2.588 --122.79,48.18,0.468,2.449 --122.79,48.19,0.467,2.437 --122.79,48.20,0.455,2.325 --122.79,48.21,0.447,2.25 --122.79,48.22,0.438,2.161 --122.79,48.23,0.429,2.069 --122.79,48.24,0.427,2.054 --122.79,48.25,0.409,1.88 --122.79,48.26,0.408,1.868 --122.79,48.27,0.386,1.663 --122.79,48.28,0.367,1.473 --122.79,48.29,0.36,1.407 --122.79,48.30,0.337,1.188 --122.79,48.31,0.323,1.057 --122.79,48.32,0.31,0.931 --122.79,48.33,0.288,0.712 --122.79,48.34,0.28,0.642 --122.79,48.35,0.261,0.46 --122.78,46.95,0.294,0.773 --122.78,46.96,0.317,0.991 --122.78,46.97,0.34,1.214 --122.78,46.98,0.352,1.336 --122.78,46.99,0.376,1.565 --122.78,47.00,0.4,1.794 --122.78,47.01,0.424,2.023 --122.78,47.02,0.448,2.253 --122.78,47.03,0.472,2.483 --122.78,47.04,0.496,2.715 --122.78,47.05,0.511,2.86 --122.78,47.06,0.534,3.082 --122.78,47.07,0.555,3.281 --122.78,47.08,0.564,3.37 --122.78,47.09,0.576,3.489 --122.78,47.10,0.593,3.653 --122.78,47.11,0.598,3.697 --122.78,47.12,0.61,3.817 --122.78,47.13,0.609,3.809 --122.78,47.14,0.606,3.777 --122.78,47.15,0.599,3.705 --122.78,47.16,0.597,3.691 --122.78,47.17,0.598,3.699 --122.78,47.18,0.599,3.706 --122.78,47.19,0.599,3.711 --122.78,47.20,0.601,3.73 --122.78,47.21,0.608,3.794 --122.78,47.22,0.615,3.861 --122.78,47.23,0.622,3.927 --122.78,47.24,0.628,3.992 --122.78,47.25,0.635,4.055 --122.78,47.26,0.632,4.027 --122.78,47.27,0.633,4.033 --122.78,47.28,0.631,4.018 --122.78,47.29,0.617,3.881 --122.78,47.30,0.604,3.761 --122.78,47.31,0.591,3.631 --122.78,47.32,0.571,3.438 --122.78,47.33,0.549,3.232 --122.78,47.34,0.542,3.158 --122.78,47.35,0.521,2.957 --122.78,47.36,0.496,2.72 --122.78,47.37,0.472,2.483 --122.78,47.38,0.447,2.244 --122.78,47.39,0.422,2.007 --122.78,47.40,0.407,1.866 --122.78,47.41,0.394,1.739 --122.78,47.42,0.384,1.641 --122.78,47.43,0.367,1.481 --122.78,47.44,0.365,1.456 --122.78,47.45,0.367,1.472 --122.78,47.46,0.368,1.485 --122.78,47.47,0.369,1.496 --122.78,47.48,0.37,1.502 --122.78,47.49,0.37,1.503 --122.78,47.50,0.37,1.504 --122.78,47.51,0.389,1.686 --122.78,47.52,0.389,1.692 --122.78,47.53,0.406,1.855 --122.78,47.54,0.409,1.876 --122.78,47.55,0.426,2.045 --122.78,47.56,0.434,2.122 --122.78,47.57,0.444,2.213 --122.78,47.58,0.461,2.379 --122.78,47.59,0.484,2.607 --122.78,47.60,0.491,2.669 --122.78,47.61,0.512,2.874 --122.78,47.62,0.516,2.912 --122.78,47.63,0.519,2.939 --122.78,47.64,0.534,3.085 --122.78,47.65,0.54,3.137 --122.78,47.66,0.54,3.142 --122.78,47.67,0.54,3.143 --122.78,47.68,0.54,3.143 --122.78,47.69,0.54,3.142 --122.78,47.70,0.521,2.956 --122.78,47.71,0.52,2.953 --122.78,47.72,0.52,2.951 --122.78,47.73,0.52,2.95 --122.78,47.74,0.512,2.87 --122.78,47.75,0.501,2.761 --122.78,47.76,0.5,2.758 --122.78,47.77,0.485,2.616 --122.78,47.78,0.48,2.564 --122.78,47.79,0.461,2.382 --122.78,47.80,0.458,2.353 --122.78,47.81,0.439,2.173 --122.78,47.82,0.433,2.111 --122.78,47.83,0.418,1.963 --122.78,47.84,0.407,1.858 --122.78,47.85,0.395,1.75 --122.78,47.86,0.391,1.71 --122.78,47.87,0.378,1.58 --122.78,47.88,0.373,1.537 --122.78,47.89,0.369,1.5 --122.78,47.90,0.349,1.308 --122.78,47.91,0.348,1.297 --122.78,47.92,0.348,1.292 --122.78,47.93,0.347,1.285 --122.78,47.94,0.347,1.28 --122.78,47.95,0.346,1.279 --122.78,47.96,0.346,1.279 --122.78,47.97,0.362,1.426 --122.78,47.98,0.367,1.478 --122.78,47.99,0.388,1.68 --122.78,48.00,0.392,1.717 --122.78,48.01,0.412,1.912 --122.78,48.02,0.419,1.98 --122.78,48.03,0.442,2.202 --122.78,48.04,0.455,2.32 --122.78,48.05,0.468,2.444 --122.78,48.06,0.476,2.522 --122.78,48.07,0.493,2.687 --122.78,48.08,0.495,2.709 --122.78,48.09,0.496,2.715 --122.78,48.10,0.496,2.713 --122.78,48.11,0.495,2.71 --122.78,48.12,0.495,2.707 --122.78,48.13,0.494,2.699 --122.78,48.14,0.493,2.687 --122.78,48.15,0.491,2.672 --122.78,48.16,0.489,2.655 --122.78,48.17,0.47,2.467 --122.78,48.18,0.468,2.448 --122.78,48.19,0.464,2.41 --122.78,48.20,0.449,2.262 --122.78,48.21,0.448,2.255 --122.78,48.22,0.439,2.166 --122.78,48.23,0.429,2.076 --122.78,48.24,0.415,1.943 --122.78,48.25,0.41,1.887 --122.78,48.26,0.409,1.877 --122.78,48.27,0.387,1.67 --122.78,48.28,0.367,1.48 --122.78,48.29,0.36,1.413 --122.78,48.30,0.338,1.194 --122.78,48.31,0.324,1.065 --122.78,48.32,0.311,0.938 --122.78,48.33,0.288,0.719 --122.78,48.34,0.281,0.652 --122.78,48.35,0.262,0.469 --122.78,48.36,0.242,0.272 --122.77,46.95,0.294,0.777 --122.77,46.96,0.317,0.996 --122.77,46.97,0.34,1.219 --122.77,46.98,0.364,1.447 --122.77,46.99,0.388,1.676 --122.77,47.00,0.412,1.906 --122.77,47.01,0.436,2.136 --122.77,47.02,0.46,2.367 --122.77,47.03,0.484,2.599 --122.77,47.04,0.498,2.735 --122.77,47.05,0.516,2.907 --122.77,47.06,0.535,3.091 --122.77,47.07,0.555,3.287 --122.77,47.08,0.575,3.476 --122.77,47.09,0.576,3.491 --122.77,47.10,0.593,3.653 --122.77,47.11,0.598,3.697 --122.77,47.12,0.61,3.816 --122.77,47.13,0.609,3.807 --122.77,47.14,0.605,3.766 --122.77,47.15,0.597,3.693 --122.77,47.16,0.596,3.681 --122.77,47.17,0.597,3.691 --122.77,47.18,0.598,3.7 --122.77,47.19,0.599,3.708 --122.77,47.20,0.601,3.728 --122.77,47.21,0.607,3.79 --122.77,47.22,0.614,3.857 --122.77,47.23,0.621,3.923 --122.77,47.24,0.628,3.988 --122.77,47.25,0.635,4.053 --122.77,47.26,0.632,4.026 --122.77,47.27,0.633,4.033 --122.77,47.28,0.631,4.017 --122.77,47.29,0.612,3.836 --122.77,47.30,0.599,3.711 --122.77,47.31,0.591,3.631 --122.77,47.32,0.571,3.44 --122.77,47.33,0.55,3.235 --122.77,47.34,0.542,3.161 --122.77,47.35,0.521,2.96 --122.77,47.36,0.497,2.723 --122.77,47.37,0.472,2.487 --122.77,47.38,0.447,2.251 --122.77,47.39,0.423,2.017 --122.77,47.40,0.41,1.892 --122.77,47.41,0.396,1.751 --122.77,47.42,0.385,1.654 --122.77,47.43,0.369,1.493 --122.77,47.44,0.366,1.467 --122.77,47.45,0.367,1.481 --122.77,47.46,0.369,1.492 --122.77,47.47,0.37,1.502 --122.77,47.48,0.37,1.508 --122.77,47.49,0.37,1.508 --122.77,47.50,0.381,1.616 --122.77,47.51,0.39,1.698 --122.77,47.52,0.39,1.696 --122.77,47.53,0.408,1.868 --122.77,47.54,0.41,1.886 --122.77,47.55,0.429,2.072 --122.77,47.56,0.444,2.214 --122.77,47.57,0.451,2.285 --122.77,47.58,0.475,2.515 --122.77,47.59,0.489,2.648 --122.77,47.60,0.505,2.801 --122.77,47.61,0.513,2.885 --122.77,47.62,0.532,3.063 --122.77,47.63,0.535,3.09 --122.77,47.64,0.538,3.117 --122.77,47.65,0.555,3.29 --122.77,47.66,0.556,3.295 --122.77,47.67,0.556,3.296 --122.77,47.68,0.556,3.294 --122.77,47.69,0.544,3.176 --122.77,47.70,0.537,3.108 --122.77,47.71,0.536,3.105 --122.77,47.72,0.536,3.102 --122.77,47.73,0.534,3.087 --122.77,47.74,0.516,2.912 --122.77,47.75,0.516,2.909 --122.77,47.76,0.508,2.833 --122.77,47.77,0.496,2.715 --122.77,47.78,0.484,2.599 --122.77,47.79,0.475,2.519 --122.77,47.80,0.459,2.36 --122.77,47.81,0.454,2.314 --122.77,47.82,0.434,2.122 --122.77,47.83,0.43,2.084 --122.77,47.84,0.412,1.908 --122.77,47.85,0.404,1.831 --122.77,47.86,0.391,1.712 --122.77,47.87,0.389,1.689 --122.77,47.88,0.375,1.552 --122.77,47.89,0.369,1.5 --122.77,47.90,0.349,1.306 --122.77,47.91,0.348,1.295 --122.77,47.92,0.347,1.288 --122.77,47.93,0.347,1.28 --122.77,47.94,0.346,1.274 --122.77,47.95,0.346,1.273 --122.77,47.96,0.346,1.273 --122.77,47.97,0.361,1.42 --122.77,47.98,0.366,1.471 --122.77,47.99,0.388,1.674 --122.77,48.00,0.391,1.712 --122.77,48.01,0.412,1.907 --122.77,48.02,0.419,1.975 --122.77,48.03,0.442,2.197 --122.77,48.04,0.454,2.315 --122.77,48.05,0.467,2.439 --122.77,48.06,0.475,2.517 --122.77,48.07,0.479,2.551 --122.77,48.08,0.495,2.705 --122.77,48.09,0.495,2.71 --122.77,48.10,0.495,2.708 --122.77,48.11,0.495,2.705 --122.77,48.12,0.494,2.702 --122.77,48.13,0.494,2.694 --122.77,48.14,0.492,2.682 --122.77,48.15,0.491,2.668 --122.77,48.16,0.489,2.65 --122.77,48.17,0.47,2.464 --122.77,48.18,0.468,2.447 --122.77,48.19,0.464,2.41 --122.77,48.20,0.449,2.264 --122.77,48.21,0.448,2.259 --122.77,48.22,0.439,2.17 --122.77,48.23,0.43,2.081 --122.77,48.24,0.416,1.948 --122.77,48.25,0.41,1.893 --122.77,48.26,0.409,1.884 --122.77,48.27,0.388,1.675 --122.77,48.28,0.368,1.485 --122.77,48.29,0.361,1.419 --122.77,48.30,0.338,1.2 --122.77,48.31,0.325,1.071 --122.77,48.32,0.312,0.945 --122.77,48.33,0.289,0.726 --122.77,48.34,0.282,0.66 --122.77,48.35,0.263,0.477 --122.77,48.36,0.242,0.278 --122.76,46.95,0.295,0.782 --122.76,46.96,0.318,1.001 --122.76,46.97,0.341,1.224 --122.76,46.98,0.364,1.452 --122.76,46.99,0.388,1.681 --122.76,47.00,0.412,1.91 --122.76,47.01,0.436,2.141 --122.76,47.02,0.46,2.372 --122.76,47.03,0.484,2.605 --122.76,47.04,0.508,2.835 --122.76,47.05,0.521,2.955 --122.76,47.06,0.536,3.1 --122.76,47.07,0.556,3.293 --122.76,47.08,0.575,3.48 --122.76,47.09,0.577,3.494 --122.76,47.10,0.593,3.654 --122.76,47.11,0.598,3.696 --122.76,47.12,0.61,3.814 --122.76,47.13,0.609,3.802 --122.76,47.14,0.604,3.755 --122.76,47.15,0.596,3.681 --122.76,47.16,0.595,3.671 --122.76,47.17,0.596,3.684 --122.76,47.18,0.597,3.694 --122.76,47.19,0.599,3.704 --122.76,47.20,0.601,3.725 --122.76,47.21,0.607,3.787 --122.76,47.22,0.614,3.853 --122.76,47.23,0.621,3.919 --122.76,47.24,0.628,3.985 --122.76,47.25,0.635,4.051 --122.76,47.26,0.632,4.025 --122.76,47.27,0.633,4.032 --122.76,47.28,0.631,4.017 --122.76,47.29,0.612,3.834 --122.76,47.30,0.599,3.711 --122.76,47.31,0.591,3.631 --122.76,47.32,0.571,3.442 --122.76,47.33,0.55,3.237 --122.76,47.34,0.542,3.164 --122.76,47.35,0.522,2.963 --122.76,47.36,0.497,2.726 --122.76,47.37,0.472,2.491 --122.76,47.38,0.448,2.257 --122.76,47.39,0.428,2.062 --122.76,47.40,0.42,1.99 --122.76,47.41,0.397,1.761 --122.76,47.42,0.387,1.666 --122.76,47.43,0.37,1.504 --122.76,47.44,0.367,1.476 --122.76,47.45,0.368,1.489 --122.76,47.46,0.369,1.499 --122.76,47.47,0.37,1.508 --122.76,47.48,0.371,1.513 --122.76,47.49,0.371,1.513 --122.76,47.50,0.382,1.621 --122.76,47.51,0.391,1.703 --122.76,47.52,0.402,1.809 --122.76,47.53,0.41,1.886 --122.76,47.54,0.424,2.025 --122.76,47.55,0.43,2.08 --122.76,47.56,0.445,2.224 --122.76,47.57,0.459,2.363 --122.76,47.58,0.476,2.525 --122.76,47.59,0.496,2.717 --122.76,47.60,0.52,2.95 --122.76,47.61,0.529,3.035 --122.76,47.62,0.548,3.217 --122.76,47.63,0.551,3.244 --122.76,47.64,0.554,3.271 --122.76,47.65,0.557,3.304 --122.76,47.66,0.572,3.448 --122.76,47.67,0.572,3.448 --122.76,47.68,0.566,3.393 --122.76,47.69,0.552,3.261 --122.76,47.70,0.552,3.258 --122.76,47.71,0.552,3.254 --122.76,47.72,0.551,3.249 --122.76,47.73,0.536,3.098 --122.76,47.74,0.532,3.061 --122.76,47.75,0.531,3.052 --122.76,47.76,0.512,2.868 --122.76,47.77,0.506,2.817 --122.76,47.78,0.491,2.673 --122.76,47.79,0.482,2.581 --122.76,47.80,0.47,2.469 --122.76,47.81,0.456,2.334 --122.76,47.82,0.449,2.261 --122.76,47.83,0.431,2.089 --122.76,47.84,0.427,2.054 --122.76,47.85,0.406,1.853 --122.76,47.86,0.401,1.804 --122.76,47.87,0.391,1.706 --122.76,47.88,0.375,1.552 --122.76,47.89,0.369,1.499 --122.76,47.90,0.362,1.426 --122.76,47.91,0.348,1.293 --122.76,47.92,0.347,1.284 --122.76,47.93,0.346,1.275 --122.76,47.94,0.345,1.266 --122.76,47.95,0.345,1.265 --122.76,47.96,0.345,1.266 --122.76,47.97,0.353,1.339 --122.76,47.98,0.363,1.436 --122.76,47.99,0.375,1.551 --122.76,48.00,0.391,1.706 --122.76,48.01,0.411,1.901 --122.76,48.02,0.418,1.97 --122.76,48.03,0.441,2.188 --122.76,48.04,0.444,2.221 --122.76,48.05,0.462,2.391 --122.76,48.06,0.47,2.464 --122.76,48.07,0.475,2.519 --122.76,48.08,0.483,2.596 --122.76,48.09,0.495,2.705 --122.76,48.10,0.494,2.702 --122.76,48.11,0.494,2.7 --122.76,48.12,0.494,2.697 --122.76,48.13,0.493,2.689 --122.76,48.14,0.492,2.677 --122.76,48.15,0.49,2.663 --122.76,48.16,0.481,2.573 --122.76,48.17,0.468,2.453 --122.76,48.18,0.468,2.446 --122.76,48.19,0.464,2.411 --122.76,48.20,0.449,2.266 --122.76,48.21,0.449,2.263 --122.76,48.22,0.439,2.174 --122.76,48.23,0.43,2.086 --122.76,48.24,0.416,1.952 --122.76,48.25,0.411,1.898 --122.76,48.26,0.41,1.89 --122.76,48.27,0.388,1.68 --122.76,48.28,0.368,1.49 --122.76,48.29,0.362,1.425 --122.76,48.30,0.339,1.205 --122.76,48.31,0.325,1.077 --122.76,48.32,0.312,0.952 --122.76,48.33,0.29,0.733 --122.76,48.34,0.283,0.668 --122.76,48.35,0.264,0.484 --122.76,48.36,0.243,0.284 --122.75,46.95,0.295,0.785 --122.75,46.96,0.318,1.006 --122.75,46.97,0.341,1.229 --122.75,46.98,0.365,1.456 --122.75,46.99,0.389,1.685 --122.75,47.00,0.412,1.914 --122.75,47.01,0.436,2.144 --122.75,47.02,0.46,2.375 --122.75,47.03,0.485,2.608 --122.75,47.04,0.509,2.847 --122.75,47.05,0.521,2.956 --122.75,47.06,0.536,3.102 --122.75,47.07,0.556,3.295 --122.75,47.08,0.575,3.481 --122.75,47.09,0.577,3.495 --122.75,47.10,0.593,3.653 --122.75,47.11,0.598,3.695 --122.75,47.12,0.61,3.812 --122.75,47.13,0.608,3.798 --122.75,47.14,0.603,3.743 --122.75,47.15,0.595,3.668 --122.75,47.16,0.594,3.661 --122.75,47.17,0.596,3.676 --122.75,47.18,0.597,3.689 --122.75,47.19,0.598,3.7 --122.75,47.20,0.601,3.723 --122.75,47.21,0.607,3.784 --122.75,47.22,0.614,3.85 --122.75,47.23,0.62,3.915 --122.75,47.24,0.627,3.981 --122.75,47.25,0.632,4.027 --122.75,47.26,0.631,4.021 --122.75,47.27,0.633,4.032 --122.75,47.28,0.62,3.908 --122.75,47.29,0.612,3.833 --122.75,47.30,0.599,3.709 --122.75,47.31,0.591,3.63 --122.75,47.32,0.571,3.44 --122.75,47.33,0.55,3.236 --122.75,47.34,0.542,3.164 --122.75,47.35,0.522,2.963 --122.75,47.36,0.497,2.728 --122.75,47.37,0.473,2.495 --122.75,47.38,0.449,2.261 --122.75,47.39,0.444,2.213 --122.75,47.40,0.421,1.997 --122.75,47.41,0.397,1.77 --122.75,47.42,0.388,1.675 --122.75,47.43,0.371,1.513 --122.75,47.44,0.368,1.485 --122.75,47.45,0.369,1.496 --122.75,47.46,0.37,1.505 --122.75,47.47,0.371,1.513 --122.75,47.48,0.371,1.518 --122.75,47.49,0.371,1.517 --122.75,47.50,0.383,1.626 --122.75,47.51,0.391,1.708 --122.75,47.52,0.406,1.855 --122.75,47.53,0.41,1.892 --122.75,47.54,0.429,2.069 --122.75,47.55,0.44,2.177 --122.75,47.56,0.448,2.257 --122.75,47.57,0.463,2.404 --122.75,47.58,0.486,2.625 --122.75,47.59,0.51,2.848 --122.75,47.60,0.526,3.005 --122.75,47.61,0.541,3.147 --122.75,47.62,0.556,3.295 --122.75,47.63,0.567,3.397 --122.75,47.64,0.567,3.403 --122.75,47.65,0.572,3.45 --122.75,47.66,0.578,3.507 --122.75,47.67,0.578,3.507 --122.75,47.68,0.568,3.411 --122.75,47.69,0.568,3.409 --122.75,47.70,0.567,3.405 --122.75,47.71,0.567,3.398 --122.75,47.72,0.558,3.31 --122.75,47.73,0.547,3.209 --122.75,47.74,0.538,3.123 --122.75,47.75,0.531,3.059 --122.75,47.76,0.527,3.013 --122.75,47.77,0.507,2.823 --122.75,47.78,0.504,2.797 --122.75,47.79,0.486,2.624 --122.75,47.80,0.479,2.552 --122.75,47.81,0.456,2.337 --122.75,47.82,0.453,2.303 --122.75,47.83,0.435,2.13 --122.75,47.84,0.427,2.056 --122.75,47.85,0.413,1.917 --122.75,47.86,0.401,1.804 --122.75,47.87,0.391,1.706 --122.75,47.88,0.378,1.583 --122.75,47.89,0.372,1.522 --122.75,47.90,0.368,1.49 --122.75,47.91,0.347,1.289 --122.75,47.92,0.346,1.279 --122.75,47.93,0.345,1.267 --122.75,47.94,0.344,1.257 --122.75,47.95,0.344,1.256 --122.75,47.96,0.344,1.257 --122.75,47.97,0.344,1.258 --122.75,47.98,0.362,1.429 --122.75,47.99,0.366,1.469 --122.75,48.00,0.39,1.699 --122.75,48.01,0.403,1.822 --122.75,48.02,0.418,1.964 --122.75,48.03,0.426,2.04 --122.75,48.04,0.444,2.215 --122.75,48.05,0.454,2.312 --122.75,48.06,0.467,2.442 --122.75,48.07,0.472,2.486 --122.75,48.08,0.475,2.515 --122.75,48.09,0.488,2.637 --122.75,48.10,0.494,2.697 --122.75,48.11,0.494,2.695 --122.75,48.12,0.493,2.692 --122.75,48.13,0.493,2.684 --122.75,48.14,0.491,2.672 --122.75,48.15,0.49,2.658 --122.75,48.16,0.473,2.492 --122.75,48.17,0.468,2.451 --122.75,48.18,0.468,2.446 --122.75,48.19,0.459,2.361 --122.75,48.20,0.449,2.269 --122.75,48.21,0.449,2.266 --122.75,48.22,0.44,2.178 --122.75,48.23,0.431,2.09 --122.75,48.24,0.417,1.956 --122.75,48.25,0.411,1.904 --122.75,48.26,0.411,1.896 --122.75,48.27,0.389,1.685 --122.75,48.28,0.369,1.496 --122.75,48.29,0.362,1.43 --122.75,48.30,0.339,1.21 --122.75,48.31,0.326,1.083 --122.75,48.32,0.313,0.958 --122.75,48.33,0.29,0.738 --122.75,48.34,0.284,0.675 --122.75,48.35,0.265,0.491 --122.75,48.36,0.244,0.29 --122.74,46.95,0.295,0.788 --122.74,46.96,0.318,1.009 --122.74,46.97,0.342,1.233 --122.74,46.98,0.365,1.459 --122.74,46.99,0.389,1.687 --122.74,47.00,0.413,1.915 --122.74,47.01,0.436,2.145 --122.74,47.02,0.46,2.375 --122.74,47.03,0.484,2.607 --122.74,47.04,0.509,2.845 --122.74,47.05,0.52,2.952 --122.74,47.06,0.536,3.099 --122.74,47.07,0.556,3.292 --122.74,47.08,0.575,3.48 --122.74,47.09,0.577,3.494 --122.74,47.10,0.593,3.652 --122.74,47.11,0.598,3.695 --122.74,47.12,0.61,3.812 --122.74,47.13,0.608,3.793 --122.74,47.14,0.602,3.741 --122.74,47.15,0.595,3.667 --122.74,47.16,0.594,3.662 --122.74,47.17,0.596,3.677 --122.74,47.18,0.597,3.691 --122.74,47.19,0.598,3.703 --122.74,47.20,0.601,3.726 --122.74,47.21,0.607,3.784 --122.74,47.22,0.613,3.846 --122.74,47.23,0.62,3.909 --122.74,47.24,0.626,3.971 --122.74,47.25,0.63,4.003 --122.74,47.26,0.631,4.019 --122.74,47.27,0.632,4.022 --122.74,47.28,0.616,3.868 --122.74,47.29,0.612,3.83 --122.74,47.30,0.599,3.707 --122.74,47.31,0.591,3.627 --122.74,47.32,0.571,3.437 --122.74,47.33,0.549,3.232 --122.74,47.34,0.542,3.162 --122.74,47.35,0.521,2.962 --122.74,47.36,0.497,2.728 --122.74,47.37,0.473,2.496 --122.74,47.38,0.454,2.313 --122.74,47.39,0.445,2.227 --122.74,47.40,0.422,2.003 --122.74,47.41,0.398,1.776 --122.74,47.42,0.395,1.743 --122.74,47.43,0.374,1.546 --122.74,47.44,0.37,1.509 --122.74,47.45,0.37,1.502 --122.74,47.46,0.371,1.511 --122.74,47.47,0.371,1.518 --122.74,47.48,0.372,1.522 --122.74,47.49,0.372,1.521 --122.74,47.50,0.389,1.689 --122.74,47.51,0.391,1.712 --122.74,47.52,0.411,1.9 --122.74,47.53,0.414,1.933 --122.74,47.54,0.43,2.079 --122.74,47.55,0.447,2.244 --122.74,47.56,0.456,2.329 --122.74,47.57,0.476,2.523 --122.74,47.58,0.497,2.723 --122.74,47.59,0.511,2.859 --122.74,47.60,0.532,3.065 --122.74,47.61,0.556,3.292 --122.74,47.62,0.56,3.334 --122.74,47.63,0.577,3.501 --122.74,47.64,0.583,3.554 --122.74,47.65,0.583,3.558 --122.74,47.66,0.584,3.561 --122.74,47.67,0.584,3.56 --122.74,47.68,0.583,3.557 --122.74,47.69,0.583,3.554 --122.74,47.70,0.582,3.548 --122.74,47.71,0.577,3.5 --122.74,47.72,0.562,3.355 --122.74,47.73,0.556,3.292 --122.74,47.74,0.543,3.165 --122.74,47.75,0.542,3.16 --122.74,47.76,0.529,3.036 --122.74,47.77,0.522,2.963 --122.74,47.78,0.504,2.799 --122.74,47.79,0.497,2.727 --122.74,47.80,0.479,2.553 --122.74,47.81,0.46,2.368 --122.74,47.82,0.453,2.302 --122.74,47.83,0.438,2.159 --122.74,47.84,0.427,2.054 --122.74,47.85,0.413,1.915 --122.74,47.86,0.401,1.801 --122.74,47.87,0.394,1.734 --122.74,47.88,0.389,1.693 --122.74,47.89,0.371,1.518 --122.74,47.90,0.368,1.486 --122.74,47.91,0.35,1.313 --122.74,47.92,0.346,1.273 --122.74,47.93,0.344,1.259 --122.74,47.94,0.343,1.247 --122.74,47.95,0.343,1.247 --122.74,47.96,0.343,1.249 --122.74,47.97,0.343,1.25 --122.74,47.98,0.361,1.421 --122.74,47.99,0.365,1.461 --122.74,48.00,0.388,1.675 --122.74,48.01,0.393,1.728 --122.74,48.02,0.411,1.898 --122.74,48.03,0.42,1.989 --122.74,48.04,0.443,2.208 --122.74,48.05,0.451,2.288 --122.74,48.06,0.454,2.315 --122.74,48.07,0.471,2.481 --122.74,48.08,0.474,2.51 --122.74,48.09,0.476,2.522 --122.74,48.10,0.492,2.677 --122.74,48.11,0.493,2.69 --122.74,48.12,0.493,2.687 --122.74,48.13,0.492,2.679 --122.74,48.14,0.491,2.667 --122.74,48.15,0.489,2.654 --122.74,48.16,0.472,2.489 --122.74,48.17,0.468,2.449 --122.74,48.18,0.467,2.435 --122.74,48.19,0.45,2.273 --122.74,48.20,0.45,2.272 --122.74,48.21,0.45,2.271 --122.74,48.22,0.44,2.182 --122.74,48.23,0.431,2.096 --122.74,48.24,0.417,1.961 --122.74,48.25,0.412,1.913 --122.74,48.26,0.411,1.902 --122.74,48.27,0.389,1.69 --122.74,48.28,0.37,1.502 --122.74,48.29,0.363,1.435 --122.74,48.30,0.34,1.215 --122.74,48.31,0.327,1.089 --122.74,48.32,0.314,0.963 --122.74,48.33,0.291,0.744 --122.74,48.34,0.284,0.682 --122.74,48.35,0.265,0.496 --122.74,48.36,0.244,0.295 --122.73,46.95,0.296,0.791 --122.73,46.96,0.319,1.011 --122.73,46.97,0.342,1.235 --122.73,46.98,0.365,1.461 --122.73,46.99,0.389,1.687 --122.73,47.00,0.413,1.915 --122.73,47.01,0.436,2.144 --122.73,47.02,0.46,2.373 --122.73,47.03,0.484,2.604 --122.73,47.04,0.509,2.839 --122.73,47.05,0.52,2.945 --122.73,47.06,0.535,3.092 --122.73,47.07,0.555,3.287 --122.73,47.08,0.572,3.447 --122.73,47.09,0.576,3.492 --122.73,47.10,0.593,3.651 --122.73,47.11,0.598,3.695 --122.73,47.12,0.61,3.812 --122.73,47.13,0.608,3.796 --122.73,47.14,0.603,3.75 --122.73,47.15,0.596,3.68 --122.73,47.16,0.596,3.675 --122.73,47.17,0.597,3.689 --122.73,47.18,0.598,3.701 --122.73,47.19,0.599,3.712 --122.73,47.20,0.601,3.732 --122.73,47.21,0.607,3.785 --122.73,47.22,0.613,3.841 --122.73,47.23,0.619,3.897 --122.73,47.24,0.624,3.953 --122.73,47.25,0.629,3.996 --122.73,47.26,0.631,4.015 --122.73,47.27,0.631,4.019 --122.73,47.28,0.615,3.865 --122.73,47.29,0.611,3.826 --122.73,47.30,0.598,3.703 --122.73,47.31,0.588,3.599 --122.73,47.32,0.57,3.43 --122.73,47.33,0.549,3.226 --122.73,47.34,0.542,3.157 --122.73,47.35,0.521,2.959 --122.73,47.36,0.497,2.727 --122.73,47.37,0.473,2.496 --122.73,47.38,0.456,2.334 --122.73,47.39,0.445,2.23 --122.73,47.40,0.422,2.007 --122.73,47.41,0.412,1.912 --122.73,47.42,0.395,1.749 --122.73,47.43,0.388,1.683 --122.73,47.44,0.371,1.514 --122.73,47.45,0.37,1.507 --122.73,47.46,0.371,1.514 --122.73,47.47,0.372,1.521 --122.73,47.48,0.372,1.525 --122.73,47.49,0.383,1.626 --122.73,47.50,0.392,1.717 --122.73,47.51,0.406,1.848 --122.73,47.52,0.412,1.905 --122.73,47.53,0.429,2.069 --122.73,47.54,0.431,2.094 --122.73,47.55,0.451,2.283 --122.73,47.56,0.469,2.46 --122.73,47.57,0.483,2.594 --122.73,47.58,0.498,2.74 --122.73,47.59,0.523,2.978 --122.73,47.60,0.548,3.217 --122.73,47.61,0.556,3.299 --122.73,47.62,0.576,3.485 --122.73,47.63,0.578,3.511 --122.73,47.64,0.598,3.703 --122.73,47.65,0.599,3.706 --122.73,47.66,0.599,3.708 --122.73,47.67,0.599,3.706 --122.73,47.68,0.598,3.701 --122.73,47.69,0.598,3.696 --122.73,47.70,0.583,3.553 --122.73,47.71,0.578,3.506 --122.73,47.72,0.577,3.493 --122.73,47.73,0.557,3.308 --122.73,47.74,0.557,3.301 --122.73,47.75,0.551,3.242 --122.73,47.76,0.537,3.108 --122.73,47.77,0.526,3.007 --122.73,47.78,0.504,2.796 --122.73,47.79,0.497,2.725 --122.73,47.80,0.479,2.55 --122.73,47.81,0.473,2.499 --122.73,47.82,0.453,2.303 --122.73,47.83,0.449,2.261 --122.73,47.84,0.426,2.047 --122.73,47.85,0.412,1.909 --122.73,47.86,0.409,1.881 --122.73,47.87,0.397,1.763 --122.73,47.88,0.389,1.687 --122.73,47.89,0.371,1.513 --122.73,47.90,0.367,1.48 --122.73,47.91,0.364,1.45 --122.73,47.92,0.345,1.269 --122.73,47.93,0.344,1.253 --122.73,47.94,0.343,1.241 --122.73,47.95,0.343,1.242 --122.73,47.96,0.343,1.245 --122.73,47.97,0.343,1.248 --122.73,47.98,0.361,1.418 --122.73,47.99,0.365,1.458 --122.73,48.00,0.387,1.669 --122.73,48.01,0.393,1.723 --122.73,48.02,0.41,1.891 --122.73,48.03,0.42,1.982 --122.73,48.04,0.435,2.133 --122.73,48.05,0.445,2.231 --122.73,48.06,0.453,2.308 --122.73,48.07,0.471,2.474 --122.73,48.08,0.474,2.504 --122.73,48.09,0.475,2.517 --122.73,48.10,0.477,2.536 --122.73,48.11,0.493,2.684 --122.73,48.12,0.492,2.681 --122.73,48.13,0.491,2.674 --122.73,48.14,0.49,2.664 --122.73,48.15,0.489,2.651 --122.73,48.16,0.472,2.49 --122.73,48.17,0.468,2.452 --122.73,48.18,0.467,2.438 --122.73,48.19,0.45,2.278 --122.73,48.20,0.45,2.278 --122.73,48.21,0.45,2.277 --122.73,48.22,0.441,2.189 --122.73,48.23,0.432,2.103 --122.73,48.24,0.428,2.059 --122.73,48.25,0.416,1.945 --122.73,48.26,0.412,1.91 --122.73,48.27,0.39,1.696 --122.73,48.28,0.385,1.646 --122.73,48.29,0.363,1.439 --122.73,48.30,0.343,1.243 --122.73,48.31,0.337,1.184 --122.73,48.32,0.314,0.965 --122.73,48.33,0.3,0.832 --122.73,48.34,0.288,0.716 --122.73,48.35,0.265,0.499 --122.73,48.36,0.258,0.432 --122.73,48.37,0.242,0.275 --122.72,46.95,0.296,0.792 --122.72,46.96,0.319,1.013 --122.72,46.97,0.342,1.236 --122.72,46.98,0.365,1.461 --122.72,46.99,0.389,1.687 --122.72,47.00,0.412,1.914 --122.72,47.01,0.436,2.142 --122.72,47.02,0.46,2.37 --122.72,47.03,0.484,2.6 --122.72,47.04,0.508,2.832 --122.72,47.05,0.519,2.937 --122.72,47.06,0.534,3.085 --122.72,47.07,0.555,3.282 --122.72,47.08,0.558,3.31 --122.72,47.09,0.576,3.49 --122.72,47.10,0.593,3.65 --122.72,47.11,0.598,3.696 --122.72,47.12,0.61,3.814 --122.72,47.13,0.609,3.805 --122.72,47.14,0.605,3.768 --122.72,47.15,0.599,3.704 --122.72,47.16,0.598,3.697 --122.72,47.17,0.599,3.708 --122.72,47.18,0.6,3.718 --122.72,47.19,0.601,3.726 --122.72,47.20,0.603,3.744 --122.72,47.21,0.607,3.787 --122.72,47.22,0.612,3.834 --122.72,47.23,0.617,3.881 --122.72,47.24,0.622,3.928 --122.72,47.25,0.628,3.986 --122.72,47.26,0.63,4.011 --122.72,47.27,0.631,4.014 --122.72,47.28,0.615,3.861 --122.72,47.29,0.611,3.822 --122.72,47.30,0.593,3.652 --122.72,47.31,0.58,3.526 --122.72,47.32,0.569,3.424 --122.72,47.33,0.548,3.22 --122.72,47.34,0.541,3.152 --122.72,47.35,0.521,2.955 --122.72,47.36,0.497,2.724 --122.72,47.37,0.473,2.496 --122.72,47.38,0.469,2.456 --122.72,47.39,0.445,2.231 --122.72,47.40,0.429,2.072 --122.72,47.41,0.419,1.977 --122.72,47.42,0.396,1.754 --122.72,47.43,0.389,1.689 --122.72,47.44,0.386,1.663 --122.72,47.45,0.371,1.511 --122.72,47.46,0.371,1.517 --122.72,47.47,0.372,1.523 --122.72,47.48,0.376,1.56 --122.72,47.49,0.392,1.72 --122.72,47.50,0.392,1.72 --122.72,47.51,0.406,1.853 --122.72,47.52,0.412,1.909 --122.72,47.53,0.429,2.076 --122.72,47.54,0.446,2.232 --122.72,47.55,0.466,2.425 --122.72,47.56,0.471,2.477 --122.72,47.57,0.49,2.656 --122.72,47.58,0.514,2.892 --122.72,47.59,0.539,3.131 --122.72,47.60,0.555,3.284 --122.72,47.61,0.568,3.413 --122.72,47.62,0.591,3.635 --122.72,47.63,0.594,3.66 --122.72,47.64,0.599,3.708 --122.72,47.65,0.614,3.853 --122.72,47.66,0.614,3.854 --122.72,47.67,0.614,3.851 --122.72,47.68,0.613,3.845 --122.72,47.69,0.605,3.766 --122.72,47.70,0.593,3.65 --122.72,47.71,0.592,3.64 --122.72,47.72,0.578,3.502 --122.72,47.73,0.572,3.444 --122.72,47.74,0.558,3.31 --122.72,47.75,0.551,3.25 --122.72,47.76,0.548,3.215 --122.72,47.77,0.526,3.006 --122.72,47.78,0.511,2.859 --122.72,47.79,0.501,2.763 --122.72,47.80,0.489,2.649 --122.72,47.81,0.474,2.509 --122.72,47.82,0.454,2.311 --122.72,47.83,0.448,2.254 --122.72,47.84,0.425,2.039 --122.72,47.85,0.422,2.002 --122.72,47.86,0.41,1.889 --122.72,47.87,0.396,1.755 --122.72,47.88,0.388,1.679 --122.72,47.89,0.38,1.602 --122.72,47.90,0.367,1.477 --122.72,47.91,0.364,1.446 --122.72,47.92,0.357,1.384 --122.72,47.93,0.343,1.25 --122.72,47.94,0.342,1.239 --122.72,47.95,0.343,1.241 --122.72,47.96,0.343,1.246 --122.72,47.97,0.351,1.321 --122.72,47.98,0.364,1.445 --122.72,47.99,0.365,1.459 --122.72,48.00,0.387,1.666 --122.72,48.01,0.392,1.719 --122.72,48.02,0.409,1.884 --122.72,48.03,0.419,1.976 --122.72,48.04,0.431,2.096 --122.72,48.05,0.445,2.224 --122.72,48.06,0.453,2.3 --122.72,48.07,0.462,2.387 --122.72,48.08,0.473,2.492 --122.72,48.09,0.473,2.496 --122.72,48.10,0.476,2.53 --122.72,48.11,0.481,2.575 --122.72,48.12,0.492,2.675 --122.72,48.13,0.491,2.669 --122.72,48.14,0.49,2.66 --122.72,48.15,0.484,2.599 --122.72,48.16,0.47,2.465 --122.72,48.17,0.469,2.457 --122.72,48.18,0.468,2.444 --122.72,48.19,0.451,2.284 --122.72,48.20,0.451,2.284 --122.72,48.21,0.451,2.284 --122.72,48.22,0.442,2.196 --122.72,48.23,0.433,2.11 --122.72,48.24,0.433,2.109 --122.72,48.25,0.416,1.952 --122.72,48.26,0.413,1.916 --122.72,48.27,0.392,1.713 --122.72,48.28,0.387,1.665 --122.72,48.29,0.363,1.442 --122.72,48.30,0.348,1.294 --122.72,48.31,0.337,1.186 --122.72,48.32,0.314,0.967 --122.72,48.33,0.305,0.884 --122.72,48.34,0.288,0.717 --122.72,48.35,0.265,0.5 --122.72,48.36,0.263,0.475 --122.72,48.37,0.244,0.296 --122.71,46.95,0.296,0.794 --122.71,46.96,0.319,1.015 --122.71,46.97,0.342,1.237 --122.71,46.98,0.365,1.462 --122.71,46.99,0.389,1.687 --122.71,47.00,0.412,1.914 --122.71,47.01,0.436,2.141 --122.71,47.02,0.46,2.368 --122.71,47.03,0.48,2.564 --122.71,47.04,0.492,2.681 --122.71,47.05,0.511,2.858 --122.71,47.06,0.533,3.078 --122.71,47.07,0.554,3.277 --122.71,47.08,0.557,3.301 --122.71,47.09,0.576,3.488 --122.71,47.10,0.58,3.522 --122.71,47.11,0.598,3.695 --122.71,47.12,0.599,3.71 --122.71,47.13,0.609,3.808 --122.71,47.14,0.606,3.778 --122.71,47.15,0.601,3.725 --122.71,47.16,0.6,3.718 --122.71,47.17,0.601,3.726 --122.71,47.18,0.602,3.733 --122.71,47.19,0.602,3.74 --122.71,47.20,0.604,3.755 --122.71,47.21,0.608,3.792 --122.71,47.22,0.612,3.83 --122.71,47.23,0.616,3.868 --122.71,47.24,0.62,3.906 --122.71,47.25,0.625,3.961 --122.71,47.26,0.63,4.004 --122.71,47.27,0.619,3.898 --122.71,47.28,0.614,3.857 --122.71,47.29,0.599,3.705 --122.71,47.30,0.591,3.628 --122.71,47.31,0.58,3.522 --122.71,47.32,0.569,3.418 --122.71,47.33,0.548,3.214 --122.71,47.34,0.541,3.148 --122.71,47.35,0.52,2.951 --122.71,47.36,0.496,2.722 --122.71,47.37,0.476,2.523 --122.71,47.38,0.469,2.456 --122.71,47.39,0.446,2.232 --122.71,47.40,0.432,2.104 --122.71,47.41,0.419,1.981 --122.71,47.42,0.396,1.758 --122.71,47.43,0.39,1.695 --122.71,47.44,0.39,1.7 --122.71,47.45,0.383,1.627 --122.71,47.46,0.372,1.52 --122.71,47.47,0.372,1.525 --122.71,47.48,0.391,1.709 --122.71,47.49,0.393,1.723 --122.71,47.50,0.396,1.751 --122.71,47.51,0.413,1.917 --122.71,47.52,0.419,1.979 --122.71,47.53,0.432,2.099 --122.71,47.54,0.45,2.277 --122.71,47.55,0.468,2.452 --122.71,47.56,0.483,2.595 --122.71,47.57,0.505,2.809 --122.71,47.58,0.52,2.948 --122.71,47.59,0.545,3.186 --122.71,47.60,0.56,3.332 --122.71,47.61,0.584,3.565 --122.71,47.62,0.599,3.707 --122.71,47.63,0.609,3.807 --122.71,47.64,0.612,3.833 --122.71,47.65,0.62,3.907 --122.71,47.66,0.62,3.908 --122.71,47.67,0.619,3.905 --122.71,47.68,0.619,3.899 --122.71,47.69,0.609,3.8 --122.71,47.70,0.608,3.791 --122.71,47.71,0.6,3.714 --122.71,47.72,0.587,3.591 --122.71,47.73,0.575,3.478 --122.71,47.74,0.566,3.394 --122.71,47.75,0.557,3.303 --122.71,47.76,0.548,3.215 --122.71,47.77,0.526,3.005 --122.71,47.78,0.523,2.974 --122.71,47.79,0.5,2.76 --122.71,47.80,0.494,2.703 --122.71,47.81,0.474,2.505 --122.71,47.82,0.461,2.382 --122.71,47.83,0.447,2.247 --122.71,47.84,0.431,2.09 --122.71,47.85,0.421,1.992 --122.71,47.86,0.409,1.88 --122.71,47.87,0.396,1.758 --122.71,47.88,0.391,1.712 --122.71,47.89,0.386,1.658 --122.71,47.90,0.366,1.47 --122.71,47.91,0.365,1.458 --122.71,47.92,0.36,1.408 --122.71,47.93,0.35,1.317 --122.71,47.94,0.342,1.237 --122.71,47.95,0.343,1.241 --122.71,47.96,0.344,1.251 --122.71,47.97,0.363,1.441 --122.71,47.98,0.364,1.447 --122.71,47.99,0.365,1.46 --122.71,48.00,0.386,1.664 --122.71,48.01,0.392,1.716 --122.71,48.02,0.409,1.877 --122.71,48.03,0.418,1.968 --122.71,48.04,0.43,2.087 --122.71,48.05,0.444,2.216 --122.71,48.06,0.447,2.247 --122.71,48.07,0.453,2.301 --122.71,48.08,0.472,2.485 --122.71,48.09,0.472,2.489 --122.71,48.10,0.472,2.489 --122.71,48.11,0.478,2.544 --122.71,48.12,0.485,2.614 --122.71,48.13,0.49,2.663 --122.71,48.14,0.49,2.656 --122.71,48.15,0.475,2.518 --122.71,48.16,0.47,2.468 --122.71,48.17,0.469,2.462 --122.71,48.18,0.468,2.449 --122.71,48.19,0.456,2.337 --122.71,48.20,0.452,2.291 --122.71,48.21,0.452,2.291 --122.71,48.22,0.442,2.202 --122.71,48.23,0.434,2.117 --122.71,48.24,0.433,2.116 --122.71,48.25,0.417,1.958 --122.71,48.26,0.413,1.923 --122.71,48.27,0.392,1.718 --122.71,48.28,0.387,1.67 --122.71,48.29,0.364,1.445 --122.71,48.30,0.348,1.296 --122.71,48.31,0.337,1.187 --122.71,48.32,0.314,0.967 --122.71,48.33,0.305,0.885 --122.71,48.34,0.288,0.717 --122.71,48.35,0.265,0.5 --122.71,48.36,0.263,0.475 --122.71,48.37,0.244,0.297 --122.70,46.95,0.296,0.796 --122.70,46.96,0.319,1.017 --122.70,46.97,0.342,1.239 --122.70,46.98,0.366,1.463 --122.70,46.99,0.389,1.687 --122.70,47.00,0.412,1.913 --122.70,47.01,0.425,2.038 --122.70,47.02,0.449,2.266 --122.70,47.03,0.464,2.413 --122.70,47.04,0.487,2.627 --122.70,47.05,0.51,2.852 --122.70,47.06,0.533,3.071 --122.70,47.07,0.547,3.21 --122.70,47.08,0.556,3.291 --122.70,47.09,0.575,3.473 --122.70,47.10,0.578,3.504 --122.70,47.11,0.593,3.646 --122.70,47.12,0.599,3.711 --122.70,47.13,0.601,3.727 --122.70,47.14,0.607,3.787 --122.70,47.15,0.603,3.745 --122.70,47.16,0.602,3.737 --122.70,47.17,0.603,3.743 --122.70,47.18,0.603,3.748 --122.70,47.19,0.604,3.753 --122.70,47.20,0.605,3.765 --122.70,47.21,0.608,3.794 --122.70,47.22,0.611,3.825 --122.70,47.23,0.614,3.855 --122.70,47.24,0.617,3.885 --122.70,47.25,0.623,3.935 --122.70,47.26,0.623,3.938 --122.70,47.27,0.613,3.844 --122.70,47.28,0.611,3.824 --122.70,47.29,0.597,3.687 --122.70,47.30,0.59,3.623 --122.70,47.31,0.579,3.517 --122.70,47.32,0.568,3.412 --122.70,47.33,0.547,3.208 --122.70,47.34,0.54,3.143 --122.70,47.35,0.52,2.947 --122.70,47.36,0.496,2.72 --122.70,47.37,0.476,2.522 --122.70,47.38,0.469,2.455 --122.70,47.39,0.446,2.234 --122.70,47.40,0.433,2.107 --122.70,47.41,0.42,1.984 --122.70,47.42,0.398,1.772 --122.70,47.43,0.394,1.736 --122.70,47.44,0.391,1.705 --122.70,47.45,0.391,1.704 --122.70,47.46,0.378,1.587 --122.70,47.47,0.384,1.641 --122.70,47.48,0.393,1.726 --122.70,47.49,0.393,1.726 --122.70,47.50,0.405,1.84 --122.70,47.51,0.413,1.921 --122.70,47.52,0.428,2.067 --122.70,47.53,0.436,2.142 --122.70,47.54,0.451,2.286 --122.70,47.55,0.472,2.488 --122.70,47.56,0.494,2.694 --122.70,47.57,0.509,2.847 --122.70,47.58,0.527,3.013 --122.70,47.59,0.551,3.249 --122.70,47.60,0.576,3.486 --122.70,47.61,0.599,3.705 --122.70,47.62,0.603,3.745 --122.70,47.63,0.62,3.908 --122.70,47.64,0.625,3.958 --122.70,47.65,0.625,3.96 --122.70,47.66,0.625,3.96 --122.70,47.67,0.625,3.956 --122.70,47.68,0.624,3.95 --122.70,47.69,0.623,3.943 --122.70,47.70,0.618,3.892 --122.70,47.71,0.602,3.741 --122.70,47.72,0.597,3.689 --122.70,47.73,0.581,3.54 --122.70,47.74,0.572,3.452 --122.70,47.75,0.561,3.341 --122.70,47.76,0.548,3.214 --122.70,47.77,0.54,3.14 --122.70,47.78,0.522,2.972 --122.70,47.79,0.5,2.757 --122.70,47.80,0.496,2.72 --122.70,47.81,0.473,2.501 --122.70,47.82,0.469,2.46 --122.70,47.83,0.446,2.24 --122.70,47.84,0.433,2.109 --122.70,47.85,0.42,1.982 --122.70,47.86,0.411,1.897 --122.70,47.87,0.406,1.855 --122.70,47.88,0.391,1.703 --122.70,47.89,0.385,1.648 --122.70,47.90,0.368,1.486 --122.70,47.91,0.364,1.452 --122.70,47.92,0.363,1.441 --122.70,47.93,0.356,1.369 --122.70,47.94,0.344,1.258 --122.70,47.95,0.345,1.263 --122.70,47.96,0.358,1.392 --122.70,47.97,0.363,1.442 --122.70,47.98,0.364,1.449 --122.70,47.99,0.367,1.477 --122.70,48.00,0.386,1.661 --122.70,48.01,0.391,1.712 --122.70,48.02,0.408,1.87 --122.70,48.03,0.417,1.959 --122.70,48.04,0.429,2.077 --122.70,48.05,0.431,2.091 --122.70,48.06,0.446,2.239 --122.70,48.07,0.452,2.293 --122.70,48.08,0.47,2.47 --122.70,48.09,0.472,2.482 --122.70,48.10,0.472,2.483 --122.70,48.11,0.472,2.483 --122.70,48.12,0.479,2.557 --122.70,48.13,0.489,2.651 --122.70,48.14,0.489,2.653 --122.70,48.15,0.475,2.512 --122.70,48.16,0.47,2.47 --122.70,48.17,0.47,2.467 --122.70,48.18,0.47,2.468 --122.70,48.19,0.467,2.436 --122.70,48.20,0.452,2.297 --122.70,48.21,0.452,2.298 --122.70,48.22,0.443,2.208 --122.70,48.23,0.434,2.124 --122.70,48.24,0.434,2.123 --122.70,48.25,0.418,1.964 --122.70,48.26,0.414,1.929 --122.70,48.27,0.393,1.723 --122.70,48.28,0.388,1.674 --122.70,48.29,0.364,1.448 --122.70,48.30,0.349,1.299 --122.70,48.31,0.337,1.188 --122.70,48.32,0.314,0.968 --122.70,48.33,0.306,0.886 --122.70,48.34,0.288,0.718 --122.70,48.35,0.266,0.501 --122.70,48.36,0.263,0.475 --122.70,48.37,0.244,0.297 --122.69,46.95,0.296,0.798 --122.69,46.96,0.313,0.96 --122.69,46.97,0.336,1.183 --122.69,46.98,0.36,1.407 --122.69,46.99,0.383,1.632 --122.69,47.00,0.405,1.841 --122.69,47.01,0.416,1.945 --122.69,47.02,0.439,2.17 --122.69,47.03,0.463,2.396 --122.69,47.04,0.486,2.622 --122.69,47.05,0.509,2.846 --122.69,47.06,0.532,3.064 --122.69,47.07,0.534,3.088 --122.69,47.08,0.555,3.287 --122.69,47.09,0.57,3.427 --122.69,47.10,0.578,3.504 --122.69,47.11,0.588,3.604 --122.69,47.12,0.592,3.642 --122.69,47.13,0.601,3.726 --122.69,47.14,0.604,3.761 --122.69,47.15,0.604,3.761 --122.69,47.16,0.604,3.755 --122.69,47.17,0.604,3.759 --122.69,47.18,0.605,3.763 --122.69,47.19,0.605,3.766 --122.69,47.20,0.606,3.775 --122.69,47.21,0.608,3.796 --122.69,47.22,0.61,3.819 --122.69,47.23,0.613,3.841 --122.69,47.24,0.615,3.863 --122.69,47.25,0.62,3.908 --122.69,47.26,0.612,3.83 --122.69,47.27,0.613,3.84 --122.69,47.28,0.608,3.792 --122.69,47.29,0.596,3.683 --122.69,47.30,0.587,3.591 --122.69,47.31,0.579,3.512 --122.69,47.32,0.565,3.38 --122.69,47.33,0.546,3.202 --122.69,47.34,0.54,3.138 --122.69,47.35,0.518,2.932 --122.69,47.36,0.496,2.717 --122.69,47.37,0.476,2.522 --122.69,47.38,0.469,2.455 --122.69,47.39,0.446,2.235 --122.69,47.40,0.433,2.11 --122.69,47.41,0.42,1.987 --122.69,47.42,0.411,1.902 --122.69,47.43,0.394,1.74 --122.69,47.44,0.391,1.71 --122.69,47.45,0.392,1.715 --122.69,47.46,0.392,1.72 --122.69,47.47,0.393,1.725 --122.69,47.48,0.393,1.728 --122.69,47.49,0.393,1.729 --122.69,47.50,0.407,1.858 --122.69,47.51,0.414,1.926 --122.69,47.52,0.43,2.084 --122.69,47.53,0.449,2.269 --122.69,47.54,0.453,2.303 --122.69,47.55,0.474,2.507 --122.69,47.56,0.496,2.717 --122.69,47.57,0.519,2.935 --122.69,47.58,0.542,3.162 --122.69,47.59,0.567,3.4 --122.69,47.60,0.592,3.637 --122.69,47.61,0.599,3.712 --122.69,47.62,0.619,3.897 --122.69,47.63,0.621,3.92 --122.69,47.64,0.641,4.108 --122.69,47.65,0.641,4.108 --122.69,47.66,0.64,4.107 --122.69,47.67,0.64,4.102 --122.69,47.68,0.639,4.095 --122.69,47.69,0.626,3.966 --122.69,47.70,0.619,3.899 --122.69,47.71,0.617,3.883 --122.69,47.72,0.597,3.694 --122.69,47.73,0.594,3.664 --122.69,47.74,0.576,3.488 --122.69,47.75,0.569,3.424 --122.69,47.76,0.555,3.286 --122.69,47.77,0.544,3.182 --122.69,47.78,0.522,2.969 --122.69,47.79,0.513,2.884 --122.69,47.80,0.496,2.717 --122.69,47.81,0.473,2.497 --122.69,47.82,0.469,2.455 --122.69,47.83,0.448,2.258 --122.69,47.84,0.441,2.186 --122.69,47.85,0.425,2.031 --122.69,47.86,0.415,1.936 --122.69,47.87,0.405,1.844 --122.69,47.88,0.389,1.693 --122.69,47.89,0.384,1.638 --122.69,47.90,0.381,1.609 --122.69,47.91,0.364,1.446 --122.69,47.92,0.363,1.435 --122.69,47.93,0.359,1.4 --122.69,47.94,0.358,1.393 --122.69,47.95,0.359,1.4 --122.69,47.96,0.363,1.434 --122.69,47.97,0.363,1.443 --122.69,47.98,0.364,1.451 --122.69,47.99,0.381,1.614 --122.69,48.00,0.386,1.659 --122.69,48.01,0.391,1.709 --122.69,48.02,0.407,1.863 --122.69,48.03,0.416,1.951 --122.69,48.04,0.428,2.066 --122.69,48.05,0.43,2.082 --122.69,48.06,0.445,2.229 --122.69,48.07,0.451,2.284 --122.69,48.08,0.455,2.326 --122.69,48.09,0.471,2.474 --122.69,48.10,0.471,2.475 --122.69,48.11,0.471,2.476 --122.69,48.12,0.475,2.515 --122.69,48.13,0.481,2.569 --122.69,48.14,0.481,2.576 --122.69,48.15,0.471,2.474 --122.69,48.16,0.471,2.473 --122.69,48.17,0.47,2.472 --122.69,48.18,0.47,2.472 --122.69,48.19,0.467,2.44 --122.69,48.20,0.453,2.302 --122.69,48.21,0.453,2.304 --122.69,48.22,0.444,2.213 --122.69,48.23,0.435,2.129 --122.69,48.24,0.435,2.129 --122.69,48.25,0.418,1.969 --122.69,48.26,0.415,1.935 --122.69,48.27,0.393,1.728 --122.69,48.28,0.388,1.678 --122.69,48.29,0.364,1.451 --122.69,48.30,0.349,1.301 --122.69,48.31,0.337,1.19 --122.69,48.32,0.314,0.968 --122.69,48.33,0.306,0.887 --122.69,48.34,0.288,0.718 --122.69,48.35,0.266,0.501 --122.69,48.36,0.263,0.476 --122.69,48.37,0.244,0.298 --122.68,46.95,0.284,0.682 --122.68,46.96,0.3,0.828 --122.68,46.97,0.323,1.05 --122.68,46.98,0.346,1.272 --122.68,46.99,0.369,1.495 --122.68,47.00,0.392,1.719 --122.68,47.01,0.415,1.943 --122.68,47.02,0.439,2.168 --122.68,47.03,0.462,2.393 --122.68,47.04,0.486,2.618 --122.68,47.05,0.508,2.836 --122.68,47.06,0.516,2.912 --122.68,47.07,0.534,3.082 --122.68,47.08,0.555,3.283 --122.68,47.09,0.557,3.305 --122.68,47.10,0.574,3.47 --122.68,47.11,0.58,3.522 --122.68,47.12,0.592,3.643 --122.68,47.13,0.592,3.64 --122.68,47.14,0.602,3.741 --122.68,47.15,0.606,3.778 --122.68,47.16,0.605,3.771 --122.68,47.17,0.606,3.774 --122.68,47.18,0.606,3.776 --122.68,47.19,0.606,3.779 --122.68,47.20,0.607,3.784 --122.68,47.21,0.608,3.798 --122.68,47.22,0.61,3.813 --122.68,47.23,0.611,3.827 --122.68,47.24,0.613,3.842 --122.68,47.25,0.612,3.829 --122.68,47.26,0.611,3.827 --122.68,47.27,0.612,3.836 --122.68,47.28,0.595,3.673 --122.68,47.29,0.592,3.645 --122.68,47.30,0.578,3.506 --122.68,47.31,0.571,3.436 --122.68,47.32,0.56,3.331 --122.68,47.33,0.546,3.196 --122.68,47.34,0.525,2.996 --122.68,47.35,0.518,2.929 --122.68,47.36,0.496,2.715 --122.68,47.37,0.476,2.521 --122.68,47.38,0.469,2.454 --122.68,47.39,0.446,2.236 --122.68,47.40,0.433,2.112 --122.68,47.41,0.42,1.99 --122.68,47.42,0.412,1.906 --122.68,47.43,0.395,1.745 --122.68,47.44,0.392,1.714 --122.68,47.45,0.392,1.719 --122.68,47.46,0.393,1.724 --122.68,47.47,0.393,1.728 --122.68,47.48,0.393,1.731 --122.68,47.49,0.4,1.792 --122.68,47.50,0.414,1.93 --122.68,47.51,0.424,2.027 --122.68,47.52,0.433,2.114 --122.68,47.53,0.45,2.276 --122.68,47.54,0.468,2.445 --122.68,47.55,0.489,2.654 --122.68,47.56,0.512,2.868 --122.68,47.57,0.532,3.062 --122.68,47.58,0.544,3.175 --122.68,47.59,0.568,3.41 --122.68,47.60,0.593,3.646 --122.68,47.61,0.612,3.83 --122.68,47.62,0.634,4.05 --122.68,47.63,0.637,4.072 --122.68,47.64,0.641,4.114 --122.68,47.65,0.656,4.256 --122.68,47.66,0.656,4.254 --122.68,47.67,0.651,4.21 --122.68,47.68,0.64,4.105 --122.68,47.69,0.634,4.049 --122.68,47.70,0.633,4.038 --122.68,47.71,0.62,3.911 --122.68,47.72,0.612,3.831 --122.68,47.73,0.595,3.668 --122.68,47.74,0.59,3.626 --122.68,47.75,0.571,3.435 --122.68,47.76,0.566,3.394 --122.68,47.77,0.544,3.181 --122.68,47.78,0.529,3.034 --122.68,47.79,0.518,2.932 --122.68,47.80,0.496,2.714 --122.68,47.81,0.485,2.616 --122.68,47.82,0.468,2.45 --122.68,47.83,0.449,2.265 --122.68,47.84,0.44,2.176 --122.68,47.85,0.425,2.035 --122.68,47.86,0.413,1.924 --122.68,47.87,0.404,1.833 --122.68,47.88,0.395,1.749 --122.68,47.89,0.384,1.644 --122.68,47.90,0.382,1.618 --122.68,47.91,0.374,1.546 --122.68,47.92,0.362,1.429 --122.68,47.93,0.361,1.418 --122.68,47.94,0.36,1.413 --122.68,47.95,0.361,1.422 --122.68,47.96,0.362,1.433 --122.68,47.97,0.364,1.444 --122.68,47.98,0.373,1.538 --122.68,47.99,0.384,1.644 --122.68,48.00,0.386,1.657 --122.68,48.01,0.401,1.807 --122.68,48.02,0.406,1.855 --122.68,48.03,0.415,1.941 --122.68,48.04,0.427,2.052 --122.68,48.05,0.429,2.071 --122.68,48.06,0.444,2.219 --122.68,48.07,0.45,2.273 --122.68,48.08,0.451,2.282 --122.68,48.09,0.47,2.466 --122.68,48.10,0.47,2.468 --122.68,48.11,0.47,2.47 --122.68,48.12,0.47,2.471 --122.68,48.13,0.479,2.554 --122.68,48.14,0.471,2.473 --122.68,48.15,0.471,2.474 --122.68,48.16,0.471,2.475 --122.68,48.17,0.471,2.476 --122.68,48.18,0.471,2.477 --122.68,48.19,0.468,2.445 --122.68,48.20,0.453,2.307 --122.68,48.21,0.454,2.309 --122.68,48.22,0.444,2.218 --122.68,48.23,0.435,2.134 --122.68,48.24,0.435,2.135 --122.68,48.25,0.419,1.973 --122.68,48.26,0.415,1.94 --122.68,48.27,0.394,1.732 --122.68,48.28,0.388,1.682 --122.68,48.29,0.365,1.454 --122.68,48.30,0.349,1.304 --122.68,48.31,0.337,1.191 --122.68,48.32,0.314,0.969 --122.68,48.33,0.306,0.888 --122.68,48.34,0.288,0.719 --122.68,48.35,0.273,0.574 --122.68,48.36,0.263,0.476 --122.68,48.37,0.245,0.299 --122.68,48.38,0.241,0.261 --122.67,46.95,0.277,0.608 --122.67,46.96,0.3,0.829 --122.67,46.97,0.323,1.051 --122.67,46.98,0.346,1.273 --122.67,46.99,0.369,1.495 --122.67,47.00,0.392,1.718 --122.67,47.01,0.415,1.942 --122.67,47.02,0.439,2.165 --122.67,47.03,0.462,2.389 --122.67,47.04,0.479,2.552 --122.67,47.05,0.493,2.685 --122.67,47.06,0.511,2.862 --122.67,47.07,0.533,3.077 --122.67,47.08,0.541,3.147 --122.67,47.09,0.557,3.301 --122.67,47.10,0.56,3.332 --122.67,47.11,0.578,3.511 --122.67,47.12,0.581,3.538 --122.67,47.13,0.592,3.639 --122.67,47.14,0.596,3.679 --122.67,47.15,0.603,3.746 --122.67,47.16,0.607,3.789 --122.67,47.17,0.608,3.791 --122.67,47.18,0.608,3.792 --122.67,47.19,0.608,3.794 --122.67,47.20,0.608,3.799 --122.67,47.21,0.609,3.804 --122.67,47.22,0.609,3.809 --122.67,47.23,0.61,3.813 --122.67,47.24,0.61,3.818 --122.67,47.25,0.61,3.814 --122.67,47.26,0.611,3.824 --122.67,47.27,0.611,3.822 --122.67,47.28,0.595,3.669 --122.67,47.29,0.59,3.626 --122.67,47.30,0.578,3.502 --122.67,47.31,0.568,3.413 --122.67,47.32,0.554,3.277 --122.67,47.33,0.54,3.141 --122.67,47.34,0.522,2.971 --122.67,47.35,0.518,2.925 --122.67,47.36,0.495,2.712 --122.67,47.37,0.475,2.519 --122.67,47.38,0.468,2.453 --122.67,47.39,0.446,2.236 --122.67,47.40,0.443,2.206 --122.67,47.41,0.42,1.991 --122.67,47.42,0.412,1.909 --122.67,47.43,0.404,1.83 --122.67,47.44,0.393,1.73 --122.67,47.45,0.393,1.722 --122.67,47.46,0.393,1.727 --122.67,47.47,0.393,1.731 --122.67,47.48,0.394,1.734 --122.67,47.49,0.404,1.83 --122.67,47.50,0.415,1.934 --122.67,47.51,0.428,2.066 --122.67,47.52,0.44,2.182 --122.67,47.53,0.452,2.294 --122.67,47.54,0.472,2.487 --122.67,47.55,0.494,2.7 --122.67,47.56,0.517,2.917 --122.67,47.57,0.533,3.072 --122.67,47.58,0.555,3.287 --122.67,47.59,0.58,3.522 --122.67,47.60,0.604,3.756 --122.67,47.61,0.628,3.984 --122.67,47.62,0.642,4.12 --122.67,47.63,0.652,4.217 --122.67,47.64,0.654,4.242 --122.67,47.65,0.661,4.309 --122.67,47.66,0.661,4.308 --122.67,47.67,0.652,4.216 --122.67,47.68,0.65,4.201 --122.67,47.69,0.646,4.162 --122.67,47.70,0.639,4.095 --122.67,47.71,0.628,3.986 --122.67,47.72,0.617,3.884 --122.67,47.73,0.606,3.778 --122.67,47.74,0.592,3.639 --122.67,47.75,0.576,3.49 --122.67,47.76,0.566,3.394 --122.67,47.77,0.544,3.181 --122.67,47.78,0.535,3.089 --122.67,47.79,0.518,2.93 --122.67,47.80,0.501,2.77 --122.67,47.81,0.491,2.67 --122.67,47.82,0.468,2.446 --122.67,47.83,0.456,2.334 --122.67,47.84,0.439,2.169 --122.67,47.85,0.431,2.093 --122.67,47.86,0.413,1.917 --122.67,47.87,0.408,1.873 --122.67,47.88,0.401,1.801 --122.67,47.89,0.386,1.66 --122.67,47.90,0.381,1.614 --122.67,47.91,0.379,1.589 --122.67,47.92,0.369,1.494 --122.67,47.93,0.368,1.485 --122.67,47.94,0.368,1.482 --122.67,47.95,0.369,1.492 --122.67,47.96,0.363,1.443 --122.67,47.97,0.371,1.512 --122.67,47.98,0.384,1.637 --122.67,47.99,0.385,1.648 --122.67,48.00,0.388,1.677 --122.67,48.01,0.405,1.842 --122.67,48.02,0.406,1.851 --122.67,48.03,0.415,1.934 --122.67,48.04,0.426,2.045 --122.67,48.05,0.428,2.064 --122.67,48.06,0.443,2.211 --122.67,48.07,0.449,2.266 --122.67,48.08,0.45,2.275 --122.67,48.09,0.469,2.459 --122.67,48.10,0.469,2.462 --122.67,48.11,0.47,2.465 --122.67,48.12,0.47,2.468 --122.67,48.13,0.47,2.47 --122.67,48.14,0.471,2.473 --122.67,48.15,0.471,2.475 --122.67,48.16,0.471,2.477 --122.67,48.17,0.471,2.48 --122.67,48.18,0.471,2.481 --122.67,48.19,0.468,2.449 --122.67,48.20,0.454,2.312 --122.67,48.21,0.454,2.313 --122.67,48.22,0.444,2.221 --122.67,48.23,0.44,2.178 --122.67,48.24,0.436,2.14 --122.67,48.25,0.419,1.977 --122.67,48.26,0.416,1.944 --122.67,48.27,0.394,1.736 --122.67,48.28,0.389,1.684 --122.67,48.29,0.365,1.456 --122.67,48.30,0.349,1.305 --122.67,48.31,0.337,1.191 --122.67,48.32,0.314,0.969 --122.67,48.33,0.306,0.889 --122.67,48.34,0.288,0.718 --122.67,48.35,0.284,0.681 --122.67,48.36,0.263,0.476 --122.67,48.37,0.248,0.329 --122.67,48.38,0.244,0.296 --122.66,46.95,0.277,0.608 --122.66,46.96,0.3,0.829 --122.66,46.97,0.323,1.05 --122.66,46.98,0.346,1.272 --122.66,46.99,0.369,1.493 --122.66,47.00,0.392,1.716 --122.66,47.01,0.404,1.831 --122.66,47.02,0.427,2.055 --122.66,47.03,0.45,2.279 --122.66,47.04,0.465,2.416 --122.66,47.05,0.488,2.637 --122.66,47.06,0.505,2.8 --122.66,47.07,0.522,2.97 --122.66,47.08,0.535,3.095 --122.66,47.09,0.545,3.189 --122.66,47.10,0.559,3.32 --122.66,47.11,0.564,3.374 --122.66,47.12,0.581,3.537 --122.66,47.13,0.583,3.555 --122.66,47.14,0.591,3.636 --122.66,47.15,0.6,3.716 --122.66,47.16,0.6,3.717 --122.66,47.17,0.608,3.795 --122.66,47.18,0.609,3.802 --122.66,47.19,0.609,3.803 --122.66,47.20,0.609,3.804 --122.66,47.21,0.609,3.805 --122.66,47.22,0.609,3.806 --122.66,47.23,0.609,3.807 --122.66,47.24,0.609,3.808 --122.66,47.25,0.61,3.813 --122.66,47.26,0.604,3.754 --122.66,47.27,0.603,3.744 --122.66,47.28,0.594,3.665 --122.66,47.29,0.582,3.546 --122.66,47.30,0.577,3.496 --122.66,47.31,0.56,3.332 --122.66,47.32,0.547,3.208 --122.66,47.33,0.539,3.134 --122.66,47.34,0.522,2.965 --122.66,47.35,0.51,2.856 --122.66,47.36,0.495,2.707 --122.66,47.37,0.475,2.516 --122.66,47.38,0.468,2.449 --122.66,47.39,0.453,2.304 --122.66,47.40,0.443,2.204 --122.66,47.41,0.42,1.991 --122.66,47.42,0.412,1.911 --122.66,47.43,0.412,1.907 --122.66,47.44,0.394,1.732 --122.66,47.45,0.393,1.725 --122.66,47.46,0.393,1.73 --122.66,47.47,0.394,1.734 --122.66,47.48,0.394,1.737 --122.66,47.49,0.411,1.9 --122.66,47.50,0.415,1.938 --122.66,47.51,0.434,2.126 --122.66,47.52,0.448,2.26 --122.66,47.53,0.457,2.34 --122.66,47.54,0.478,2.547 --122.66,47.55,0.501,2.761 --122.66,47.56,0.523,2.98 --122.66,47.57,0.547,3.206 --122.66,47.58,0.565,3.385 --122.66,47.59,0.59,3.62 --122.66,47.60,0.614,3.856 --122.66,47.61,0.638,4.085 --122.66,47.62,0.646,4.162 --122.66,47.63,0.662,4.316 --122.66,47.64,0.662,4.316 --122.66,47.65,0.667,4.362 --122.66,47.66,0.667,4.36 --122.66,47.67,0.666,4.353 --122.66,47.68,0.665,4.345 --122.66,47.69,0.647,4.168 --122.66,47.70,0.644,4.138 --122.66,47.71,0.638,4.088 --122.66,47.72,0.622,3.932 --122.66,47.73,0.614,3.856 --122.66,47.74,0.592,3.642 --122.66,47.75,0.58,3.529 --122.66,47.76,0.566,3.395 --122.66,47.77,0.544,3.18 --122.66,47.78,0.538,3.121 --122.66,47.79,0.518,2.928 --122.66,47.80,0.512,2.871 --122.66,47.81,0.491,2.668 --122.66,47.82,0.47,2.466 --122.66,47.83,0.463,2.396 --122.66,47.84,0.445,2.223 --122.66,47.85,0.434,2.117 --122.66,47.86,0.421,1.999 --122.66,47.87,0.409,1.877 --122.66,47.88,0.403,1.826 --122.66,47.89,0.392,1.714 --122.66,47.90,0.384,1.642 --122.66,47.91,0.384,1.639 --122.66,47.92,0.381,1.614 --122.66,47.93,0.381,1.611 --122.66,47.94,0.381,1.612 --122.66,47.95,0.372,1.524 --122.66,47.96,0.379,1.591 --122.66,47.97,0.384,1.642 --122.66,47.98,0.385,1.65 --122.66,47.99,0.387,1.673 --122.66,48.00,0.39,1.7 --122.66,48.01,0.406,1.848 --122.66,48.02,0.406,1.855 --122.66,48.03,0.416,1.947 --122.66,48.04,0.426,2.045 --122.66,48.05,0.428,2.063 --122.66,48.06,0.444,2.218 --122.66,48.07,0.449,2.263 --122.66,48.08,0.45,2.273 --122.66,48.09,0.469,2.457 --122.66,48.10,0.469,2.461 --122.66,48.11,0.47,2.465 --122.66,48.12,0.47,2.468 --122.66,48.13,0.47,2.472 --122.66,48.14,0.471,2.477 --122.66,48.15,0.471,2.479 --122.66,48.16,0.471,2.48 --122.66,48.17,0.472,2.483 --122.66,48.18,0.472,2.485 --122.66,48.19,0.468,2.451 --122.66,48.20,0.454,2.315 --122.66,48.21,0.454,2.316 --122.66,48.22,0.454,2.312 --122.66,48.23,0.443,2.204 --122.66,48.24,0.436,2.143 --122.66,48.25,0.419,1.98 --122.66,48.26,0.416,1.947 --122.66,48.27,0.394,1.737 --122.66,48.28,0.389,1.685 --122.66,48.29,0.365,1.455 --122.66,48.30,0.349,1.304 --122.66,48.31,0.337,1.189 --122.66,48.32,0.314,0.966 --122.66,48.33,0.306,0.887 --122.66,48.34,0.288,0.717 --122.66,48.35,0.284,0.681 --122.66,48.36,0.263,0.475 --122.66,48.37,0.26,0.451 --122.66,48.38,0.244,0.296 --122.65,46.95,0.277,0.608 --122.65,46.96,0.3,0.829 --122.65,46.97,0.32,1.029 --122.65,46.98,0.339,1.206 --122.65,46.99,0.362,1.428 --122.65,47.00,0.383,1.632 --122.65,47.01,0.395,1.744 --122.65,47.02,0.418,1.966 --122.65,47.03,0.441,2.189 --122.65,47.04,0.464,2.411 --122.65,47.05,0.481,2.574 --122.65,47.06,0.49,2.66 --122.65,47.07,0.512,2.876 --122.65,47.08,0.53,3.04 --122.65,47.09,0.537,3.115 --122.65,47.10,0.549,3.232 --122.65,47.11,0.561,3.34 --122.65,47.12,0.569,3.416 --122.65,47.13,0.583,3.555 --122.65,47.14,0.587,3.592 --122.65,47.15,0.587,3.592 --122.65,47.16,0.591,3.635 --122.65,47.17,0.605,3.765 --122.65,47.18,0.605,3.766 --122.65,47.19,0.605,3.767 --122.65,47.20,0.609,3.807 --122.65,47.21,0.609,3.808 --122.65,47.22,0.609,3.808 --122.65,47.23,0.609,3.809 --122.65,47.24,0.609,3.809 --122.65,47.25,0.606,3.779 --122.65,47.26,0.593,3.65 --122.65,47.27,0.593,3.655 --122.65,47.28,0.587,3.597 --122.65,47.29,0.576,3.49 --122.65,47.30,0.569,3.419 --122.65,47.31,0.558,3.311 --122.65,47.32,0.543,3.171 --122.65,47.33,0.539,3.127 --122.65,47.34,0.518,2.929 --122.65,47.35,0.498,2.737 --122.65,47.36,0.494,2.702 --122.65,47.37,0.475,2.513 --122.65,47.38,0.468,2.445 --122.65,47.39,0.453,2.301 --122.65,47.40,0.44,2.179 --122.65,47.41,0.42,1.99 --122.65,47.42,0.412,1.911 --122.65,47.43,0.412,1.909 --122.65,47.44,0.394,1.734 --122.65,47.45,0.393,1.728 --122.65,47.46,0.394,1.733 --122.65,47.47,0.394,1.738 --122.65,47.48,0.402,1.816 --122.65,47.49,0.415,1.94 --122.65,47.50,0.427,2.055 --122.65,47.51,0.435,2.13 --122.65,47.52,0.449,2.263 --122.65,47.53,0.47,2.464 --122.65,47.54,0.492,2.676 --122.65,47.55,0.514,2.894 --122.65,47.56,0.537,3.116 --122.65,47.57,0.554,3.275 --122.65,47.58,0.567,3.398 --122.65,47.59,0.591,3.633 --122.65,47.60,0.616,3.869 --122.65,47.61,0.639,4.097 --122.65,47.62,0.662,4.311 --122.65,47.63,0.663,4.325 --122.65,47.64,0.666,4.35 --122.65,47.65,0.682,4.506 --122.65,47.66,0.682,4.504 --122.65,47.67,0.681,4.497 --122.65,47.68,0.669,4.384 --122.65,47.69,0.66,4.297 --122.65,47.70,0.644,4.143 --122.65,47.71,0.639,4.094 --122.65,47.72,0.637,4.073 --122.65,47.73,0.615,3.859 --122.65,47.74,0.596,3.681 --122.65,47.75,0.589,3.611 --122.65,47.76,0.566,3.395 --122.65,47.77,0.554,3.272 --122.65,47.78,0.54,3.143 --122.65,47.79,0.518,2.926 --122.65,47.80,0.512,2.87 --122.65,47.81,0.491,2.667 --122.65,47.82,0.47,2.467 --122.65,47.83,0.463,2.399 --122.65,47.84,0.446,2.232 --122.65,47.85,0.435,2.13 --122.65,47.86,0.423,2.019 --122.65,47.87,0.42,1.983 --122.65,47.88,0.406,1.856 --122.65,47.89,0.4,1.796 --122.65,47.90,0.399,1.786 --122.65,47.91,0.399,1.787 --122.65,47.92,0.384,1.639 --122.65,47.93,0.384,1.639 --122.65,47.94,0.384,1.643 --122.65,47.95,0.382,1.624 --122.65,47.96,0.386,1.657 --122.65,47.97,0.386,1.664 --122.65,47.98,0.387,1.671 --122.65,47.99,0.403,1.825 --122.65,48.00,0.406,1.849 --122.65,48.01,0.407,1.865 --122.65,48.02,0.41,1.895 --122.65,48.03,0.426,2.044 --122.65,48.04,0.427,2.057 --122.65,48.05,0.437,2.151 --122.65,48.06,0.448,2.257 --122.65,48.07,0.449,2.269 --122.65,48.08,0.45,2.278 --122.65,48.09,0.47,2.463 --122.65,48.10,0.47,2.468 --122.65,48.11,0.47,2.472 --122.65,48.12,0.471,2.475 --122.65,48.13,0.476,2.53 --122.65,48.14,0.485,2.609 --122.65,48.15,0.476,2.523 --122.65,48.16,0.472,2.484 --122.65,48.17,0.472,2.486 --122.65,48.18,0.472,2.487 --122.65,48.19,0.468,2.453 --122.65,48.20,0.467,2.434 --122.65,48.21,0.454,2.317 --122.65,48.22,0.454,2.317 --122.65,48.23,0.443,2.204 --122.65,48.24,0.436,2.143 --122.65,48.25,0.419,1.98 --122.65,48.26,0.416,1.947 --122.65,48.27,0.394,1.737 --122.65,48.28,0.388,1.683 --122.65,48.29,0.364,1.452 --122.65,48.30,0.349,1.3 --122.65,48.31,0.336,1.182 --122.65,48.32,0.313,0.96 --122.65,48.33,0.305,0.883 --122.65,48.34,0.288,0.713 --122.65,48.35,0.284,0.678 --122.65,48.36,0.264,0.487 --122.65,48.37,0.26,0.449 --122.65,48.38,0.244,0.296 --122.64,46.95,0.277,0.608 --122.64,46.96,0.297,0.808 --122.64,46.97,0.305,0.882 --122.64,46.98,0.326,1.079 --122.64,46.99,0.349,1.299 --122.64,47.00,0.372,1.52 --122.64,47.01,0.393,1.725 --122.64,47.02,0.416,1.948 --122.64,47.03,0.439,2.171 --122.64,47.04,0.452,2.29 --122.64,47.05,0.467,2.435 --122.64,47.06,0.489,2.654 --122.64,47.07,0.511,2.86 --122.64,47.08,0.515,2.897 --122.64,47.09,0.534,3.086 --122.64,47.10,0.539,3.136 --122.64,47.11,0.554,3.277 --122.64,47.12,0.563,3.36 --122.64,47.13,0.573,3.46 --122.64,47.14,0.574,3.465 --122.64,47.15,0.587,3.595 --122.64,47.16,0.592,3.637 --122.64,47.17,0.592,3.638 --122.64,47.18,0.592,3.639 --122.64,47.19,0.595,3.672 --122.64,47.20,0.61,3.81 --122.64,47.21,0.61,3.81 --122.64,47.22,0.61,3.81 --122.64,47.23,0.61,3.81 --122.64,47.24,0.597,3.689 --122.64,47.25,0.593,3.649 --122.64,47.26,0.593,3.647 --122.64,47.27,0.593,3.648 --122.64,47.28,0.575,3.482 --122.64,47.29,0.576,3.484 --122.64,47.30,0.568,3.412 --122.64,47.31,0.549,3.227 --122.64,47.32,0.538,3.126 --122.64,47.33,0.525,2.998 --122.64,47.34,0.517,2.922 --122.64,47.35,0.497,2.732 --122.64,47.36,0.494,2.697 --122.64,47.37,0.474,2.509 --122.64,47.38,0.467,2.44 --122.64,47.39,0.447,2.247 --122.64,47.40,0.433,2.11 --122.64,47.41,0.42,1.989 --122.64,47.42,0.412,1.912 --122.64,47.43,0.412,1.91 --122.64,47.44,0.394,1.735 --122.64,47.45,0.393,1.731 --122.64,47.46,0.394,1.736 --122.64,47.47,0.394,1.741 --122.64,47.48,0.403,1.821 --122.64,47.49,0.416,1.944 --122.64,47.50,0.428,2.06 --122.64,47.51,0.435,2.134 --122.64,47.52,0.449,2.266 --122.64,47.53,0.47,2.467 --122.64,47.54,0.492,2.679 --122.64,47.55,0.515,2.897 --122.64,47.56,0.538,3.121 --122.64,47.57,0.558,3.312 --122.64,47.58,0.582,3.549 --122.64,47.59,0.607,3.786 --122.64,47.60,0.632,4.023 --122.64,47.61,0.655,4.248 --122.64,47.62,0.663,4.329 --122.64,47.63,0.678,4.471 --122.64,47.64,0.681,4.496 --122.64,47.65,0.683,4.513 --122.64,47.66,0.682,4.511 --122.64,47.67,0.682,4.505 --122.64,47.68,0.676,4.449 --122.64,47.69,0.667,4.362 --122.64,47.70,0.655,4.246 --122.64,47.71,0.641,4.115 --122.64,47.72,0.638,4.08 --122.64,47.73,0.615,3.863 --122.64,47.74,0.611,3.821 --122.64,47.75,0.589,3.613 --122.64,47.76,0.57,3.426 --122.64,47.77,0.563,3.359 --122.64,47.78,0.54,3.142 --122.64,47.79,0.526,3.01 --122.64,47.80,0.513,2.885 --122.64,47.81,0.491,2.666 --122.64,47.82,0.482,2.587 --122.64,47.83,0.463,2.401 --122.64,47.84,0.458,2.354 --122.64,47.85,0.438,2.157 --122.64,47.86,0.436,2.142 --122.64,47.87,0.429,2.069 --122.64,47.88,0.415,1.941 --122.64,47.89,0.411,1.903 --122.64,47.90,0.403,1.824 --122.64,47.91,0.401,1.808 --122.64,47.92,0.397,1.766 --122.64,47.93,0.397,1.769 --122.64,47.94,0.398,1.774 --122.64,47.95,0.398,1.779 --122.64,47.96,0.399,1.783 --122.64,47.97,0.399,1.788 --122.64,47.98,0.4,1.792 --122.64,47.99,0.408,1.87 --122.64,48.00,0.408,1.874 --122.64,48.01,0.409,1.878 --122.64,48.02,0.425,2.034 --122.64,48.03,0.427,2.058 --122.64,48.04,0.43,2.087 --122.64,48.05,0.448,2.253 --122.64,48.06,0.449,2.264 --122.64,48.07,0.45,2.274 --122.64,48.08,0.461,2.378 --122.64,48.09,0.47,2.469 --122.64,48.10,0.471,2.473 --122.64,48.11,0.471,2.478 --122.64,48.12,0.471,2.481 --122.64,48.13,0.49,2.656 --122.64,48.14,0.49,2.657 --122.64,48.15,0.481,2.572 --122.64,48.16,0.474,2.509 --122.64,48.17,0.472,2.489 --122.64,48.18,0.472,2.489 --122.64,48.19,0.472,2.489 --122.64,48.20,0.467,2.434 --122.64,48.21,0.454,2.317 --122.64,48.22,0.454,2.317 --122.64,48.23,0.443,2.204 --122.64,48.24,0.436,2.144 --122.64,48.25,0.419,1.98 --122.64,48.26,0.416,1.947 --122.64,48.27,0.394,1.736 --122.64,48.28,0.388,1.68 --122.64,48.29,0.364,1.448 --122.64,48.30,0.348,1.294 --122.64,48.31,0.336,1.174 --122.64,48.32,0.313,0.953 --122.64,48.33,0.305,0.877 --122.64,48.34,0.287,0.708 --122.64,48.35,0.284,0.675 --122.64,48.36,0.264,0.485 --122.64,48.37,0.26,0.447 --122.64,48.38,0.244,0.295 --122.64,48.39,0.239,0.244 --122.63,46.95,0.268,0.525 --122.63,46.96,0.282,0.661 --122.63,46.97,0.303,0.857 --122.63,46.98,0.326,1.078 --122.63,46.99,0.348,1.298 --122.63,47.00,0.371,1.517 --122.63,47.01,0.377,1.577 --122.63,47.02,0.401,1.799 --122.63,47.03,0.424,2.022 --122.63,47.04,0.443,2.21 --122.63,47.05,0.466,2.43 --122.63,47.06,0.477,2.538 --122.63,47.07,0.495,2.712 --122.63,47.08,0.514,2.892 --122.63,47.09,0.519,2.94 --122.63,47.10,0.539,3.132 --122.63,47.11,0.542,3.158 --122.63,47.12,0.559,3.322 --122.63,47.13,0.565,3.381 --122.63,47.14,0.574,3.465 --122.63,47.15,0.578,3.507 --122.63,47.16,0.589,3.617 --122.63,47.17,0.592,3.64 --122.63,47.18,0.592,3.64 --122.63,47.19,0.595,3.674 --122.63,47.20,0.597,3.685 --122.63,47.21,0.597,3.685 --122.63,47.22,0.597,3.686 --122.63,47.23,0.597,3.686 --122.63,47.24,0.592,3.639 --122.63,47.25,0.592,3.641 --122.63,47.26,0.592,3.645 --122.63,47.27,0.579,3.512 --122.63,47.28,0.575,3.477 --122.63,47.29,0.575,3.479 --122.63,47.30,0.557,3.3 --122.63,47.31,0.547,3.206 --122.63,47.32,0.538,3.118 --122.63,47.33,0.523,2.975 --122.63,47.34,0.517,2.916 --122.63,47.35,0.497,2.726 --122.63,47.36,0.481,2.571 --122.63,47.37,0.474,2.505 --122.63,47.38,0.454,2.318 --122.63,47.39,0.445,2.223 --122.63,47.40,0.433,2.109 --122.63,47.41,0.42,1.988 --122.63,47.42,0.412,1.913 --122.63,47.43,0.412,1.912 --122.63,47.44,0.405,1.845 --122.63,47.45,0.394,1.733 --122.63,47.46,0.394,1.739 --122.63,47.47,0.395,1.745 --122.63,47.48,0.415,1.942 --122.63,47.49,0.416,1.948 --122.63,47.50,0.428,2.064 --122.63,47.51,0.441,2.187 --122.63,47.52,0.459,2.366 --122.63,47.53,0.471,2.48 --122.63,47.54,0.492,2.682 --122.63,47.55,0.515,2.901 --122.63,47.56,0.538,3.125 --122.63,47.57,0.562,3.357 --122.63,47.58,0.587,3.596 --122.63,47.59,0.612,3.834 --122.63,47.60,0.637,4.074 --122.63,47.61,0.66,4.299 --122.63,47.62,0.673,4.42 --122.63,47.63,0.683,4.521 --122.63,47.64,0.683,4.52 --122.63,47.65,0.693,4.613 --122.63,47.66,0.693,4.609 --122.63,47.67,0.692,4.602 --122.63,47.68,0.682,4.503 --122.63,47.69,0.671,4.401 --122.63,47.70,0.664,4.336 --122.63,47.71,0.649,4.192 --122.63,47.72,0.638,4.084 --122.63,47.73,0.627,3.976 --122.63,47.74,0.612,3.831 --122.63,47.75,0.589,3.615 --122.63,47.76,0.584,3.564 --122.63,47.77,0.563,3.359 --122.63,47.78,0.542,3.163 --122.63,47.79,0.536,3.1 --122.63,47.80,0.513,2.883 --122.63,47.81,0.499,2.743 --122.63,47.82,0.486,2.624 --122.63,47.83,0.475,2.519 --122.63,47.84,0.459,2.359 --122.63,47.85,0.452,2.295 --122.63,47.86,0.444,2.213 --122.63,47.87,0.431,2.095 --122.63,47.88,0.427,2.051 --122.63,47.89,0.419,1.976 --122.63,47.90,0.411,1.903 --122.63,47.91,0.412,1.909 --122.63,47.92,0.413,1.915 --122.63,47.93,0.413,1.922 --122.63,47.94,0.407,1.863 --122.63,47.95,0.408,1.868 --122.63,47.96,0.408,1.872 --122.63,47.97,0.409,1.877 --122.63,47.98,0.409,1.881 --122.63,47.99,0.415,1.941 --122.63,48.00,0.415,1.942 --122.63,48.01,0.42,1.983 --122.63,48.02,0.428,2.064 --122.63,48.03,0.428,2.068 --122.63,48.04,0.445,2.226 --122.63,48.05,0.449,2.261 --122.63,48.06,0.45,2.271 --122.63,48.07,0.454,2.31 --122.63,48.08,0.47,2.468 --122.63,48.09,0.471,2.473 --122.63,48.10,0.471,2.478 --122.63,48.11,0.472,2.483 --122.63,48.12,0.484,2.607 --122.63,48.13,0.49,2.662 --122.63,48.14,0.49,2.662 --122.63,48.15,0.49,2.663 --122.63,48.16,0.477,2.532 --122.63,48.17,0.473,2.494 --122.63,48.18,0.473,2.492 --122.63,48.19,0.472,2.491 --122.63,48.20,0.467,2.435 --122.63,48.21,0.454,2.318 --122.63,48.22,0.454,2.317 --122.63,48.23,0.443,2.204 --122.63,48.24,0.436,2.145 --122.63,48.25,0.419,1.98 --122.63,48.26,0.416,1.947 --122.63,48.27,0.394,1.734 --122.63,48.28,0.388,1.677 --122.63,48.29,0.363,1.443 --122.63,48.30,0.347,1.287 --122.63,48.31,0.335,1.165 --122.63,48.32,0.312,0.945 --122.63,48.33,0.304,0.871 --122.63,48.34,0.287,0.703 --122.63,48.35,0.283,0.671 --122.63,48.36,0.264,0.483 --122.63,48.37,0.26,0.445 --122.63,48.38,0.244,0.294 --122.63,48.39,0.239,0.243 --122.62,46.95,0.26,0.446 --122.62,46.96,0.28,0.635 --122.62,46.97,0.303,0.857 --122.62,46.98,0.315,0.981 --122.62,46.99,0.336,1.18 --122.62,47.00,0.357,1.379 --122.62,47.01,0.374,1.544 --122.62,47.02,0.397,1.764 --122.62,47.03,0.419,1.979 --122.62,47.04,0.431,2.094 --122.62,47.05,0.454,2.314 --122.62,47.06,0.468,2.453 --122.62,47.07,0.482,2.586 --122.62,47.08,0.503,2.782 --122.62,47.09,0.517,2.916 --122.62,47.10,0.524,2.989 --122.62,47.11,0.541,3.155 --122.62,47.12,0.545,3.186 --122.62,47.13,0.564,3.368 --122.62,47.14,0.564,3.374 --122.62,47.15,0.57,3.427 --122.62,47.16,0.583,3.552 --122.62,47.17,0.583,3.553 --122.62,47.18,0.583,3.554 --122.62,47.19,0.592,3.642 --122.62,47.20,0.592,3.642 --122.62,47.21,0.592,3.642 --122.62,47.22,0.592,3.641 --122.62,47.23,0.592,3.64 --122.62,47.24,0.592,3.639 --122.62,47.25,0.592,3.64 --122.62,47.26,0.584,3.566 --122.62,47.27,0.574,3.47 --122.62,47.28,0.574,3.472 --122.62,47.29,0.561,3.341 --122.62,47.30,0.556,3.294 --122.62,47.31,0.538,3.122 --122.62,47.32,0.536,3.099 --122.62,47.33,0.517,2.92 --122.62,47.34,0.511,2.86 --122.62,47.35,0.496,2.713 --122.62,47.36,0.475,2.516 --122.62,47.37,0.47,2.467 --122.62,47.38,0.453,2.302 --122.62,47.39,0.444,2.219 --122.62,47.40,0.433,2.107 --122.62,47.41,0.42,1.987 --122.62,47.42,0.412,1.913 --122.62,47.43,0.412,1.913 --122.62,47.44,0.413,1.921 --122.62,47.45,0.394,1.736 --122.62,47.46,0.395,1.742 --122.62,47.47,0.401,1.803 --122.62,47.48,0.416,1.949 --122.62,47.49,0.416,1.951 --122.62,47.50,0.435,2.132 --122.62,47.51,0.448,2.259 --122.62,47.52,0.467,2.442 --122.62,47.53,0.476,2.529 --122.62,47.54,0.499,2.743 --122.62,47.55,0.521,2.962 --122.62,47.56,0.545,3.187 --122.62,47.57,0.569,3.42 --122.62,47.58,0.594,3.658 --122.62,47.59,0.619,3.897 --122.62,47.60,0.644,4.137 --122.62,47.61,0.667,4.359 --122.62,47.62,0.684,4.529 --122.62,47.63,0.689,4.577 --122.62,47.64,0.692,4.604 --122.62,47.65,0.703,4.711 --122.62,47.66,0.703,4.708 --122.62,47.67,0.693,4.613 --122.62,47.68,0.687,4.554 --122.62,47.69,0.681,4.502 --122.62,47.70,0.666,4.35 --122.62,47.71,0.661,4.307 --122.62,47.72,0.643,4.135 --122.62,47.73,0.635,4.052 --122.62,47.74,0.612,3.834 --122.62,47.75,0.6,3.72 --122.62,47.76,0.586,3.58 --122.62,47.77,0.563,3.359 --122.62,47.78,0.556,3.297 --122.62,47.79,0.536,3.099 --122.62,47.80,0.515,2.896 --122.62,47.81,0.509,2.841 --122.62,47.82,0.489,2.649 --122.62,47.83,0.482,2.583 --122.62,47.84,0.468,2.453 --122.62,47.85,0.455,2.326 --122.62,47.86,0.447,2.248 --122.62,47.87,0.446,2.238 --122.62,47.88,0.428,2.062 --122.62,47.89,0.425,2.038 --122.62,47.90,0.426,2.046 --122.62,47.91,0.427,2.055 --122.62,47.92,0.426,2.044 --122.62,47.93,0.42,1.989 --122.62,47.94,0.41,1.895 --122.62,47.95,0.411,1.898 --122.62,47.96,0.411,1.901 --122.62,47.97,0.411,1.903 --122.62,47.98,0.412,1.906 --122.62,47.99,0.429,2.073 --122.62,48.00,0.429,2.073 --122.62,48.01,0.429,2.074 --122.62,48.02,0.43,2.084 --122.62,48.03,0.439,2.165 --122.62,48.04,0.448,2.26 --122.62,48.05,0.449,2.268 --122.62,48.06,0.45,2.276 --122.62,48.07,0.468,2.451 --122.62,48.08,0.47,2.472 --122.62,48.09,0.471,2.478 --122.62,48.10,0.472,2.483 --122.62,48.11,0.478,2.547 --122.62,48.12,0.491,2.666 --122.62,48.13,0.491,2.668 --122.62,48.14,0.491,2.667 --122.62,48.15,0.491,2.667 --122.62,48.16,0.49,2.663 --122.62,48.17,0.473,2.496 --122.62,48.18,0.473,2.494 --122.62,48.19,0.473,2.492 --122.62,48.20,0.467,2.435 --122.62,48.21,0.454,2.318 --122.62,48.22,0.454,2.317 --122.62,48.23,0.443,2.204 --122.62,48.24,0.437,2.146 --122.62,48.25,0.419,1.981 --122.62,48.26,0.416,1.947 --122.62,48.27,0.394,1.733 --122.62,48.28,0.388,1.674 --122.62,48.29,0.363,1.437 --122.62,48.30,0.346,1.279 --122.62,48.31,0.333,1.154 --122.62,48.32,0.311,0.936 --122.62,48.33,0.303,0.864 --122.62,48.34,0.286,0.697 --122.62,48.35,0.283,0.667 --122.62,48.36,0.263,0.48 --122.62,48.37,0.26,0.443 --122.62,48.38,0.244,0.293 --122.62,48.39,0.239,0.243 --122.61,46.95,0.26,0.446 --122.61,46.96,0.278,0.623 --122.61,46.97,0.295,0.782 --122.61,46.98,0.305,0.885 --122.61,46.99,0.328,1.104 --122.61,47.00,0.344,1.252 --122.61,47.01,0.367,1.472 --122.61,47.02,0.389,1.692 --122.61,47.03,0.404,1.829 --122.61,47.04,0.422,2.01 --122.61,47.05,0.438,2.164 --122.61,47.06,0.461,2.384 --122.61,47.07,0.471,2.476 --122.61,47.08,0.487,2.635 --122.61,47.09,0.508,2.832 --122.61,47.10,0.513,2.881 --122.61,47.11,0.529,3.037 --122.61,47.12,0.538,3.122 --122.61,47.13,0.55,3.233 --122.61,47.14,0.55,3.24 --122.61,47.15,0.569,3.42 --122.61,47.16,0.569,3.422 --122.61,47.17,0.574,3.467 --122.61,47.18,0.576,3.486 --122.61,47.19,0.588,3.598 --122.61,47.20,0.588,3.598 --122.61,47.21,0.588,3.599 --122.61,47.22,0.588,3.599 --122.61,47.23,0.588,3.598 --122.61,47.24,0.588,3.598 --122.61,47.25,0.588,3.599 --122.61,47.26,0.574,3.466 --122.61,47.27,0.574,3.467 --122.61,47.28,0.567,3.396 --122.61,47.29,0.556,3.291 --122.61,47.30,0.544,3.181 --122.61,47.31,0.537,3.109 --122.61,47.32,0.521,2.954 --122.61,47.33,0.516,2.914 --122.61,47.34,0.496,2.721 --122.61,47.35,0.492,2.683 --122.61,47.36,0.475,2.512 --122.61,47.37,0.466,2.433 --122.61,47.38,0.452,2.298 --122.61,47.39,0.441,2.188 --122.61,47.40,0.432,2.104 --122.61,47.41,0.42,1.985 --122.61,47.42,0.412,1.913 --122.61,47.43,0.412,1.914 --122.61,47.44,0.413,1.922 --122.61,47.45,0.396,1.76 --122.61,47.46,0.395,1.744 --122.61,47.47,0.403,1.827 --122.61,47.48,0.416,1.951 --122.61,47.49,0.426,2.049 --122.61,47.50,0.436,2.144 --122.61,47.51,0.449,2.262 --122.61,47.52,0.467,2.443 --122.61,47.53,0.489,2.652 --122.61,47.54,0.512,2.871 --122.61,47.55,0.535,3.095 --122.61,47.56,0.559,3.325 --122.61,47.57,0.584,3.56 --122.61,47.58,0.609,3.801 --122.61,47.59,0.634,4.042 --122.61,47.60,0.659,4.281 --122.61,47.61,0.681,4.501 --122.61,47.62,0.685,4.535 --122.61,47.63,0.704,4.72 --122.61,47.64,0.704,4.719 --122.61,47.65,0.704,4.717 --122.61,47.66,0.704,4.715 --122.61,47.67,0.703,4.707 --122.61,47.68,0.691,4.59 --122.61,47.69,0.682,4.509 --122.61,47.70,0.681,4.493 --122.61,47.71,0.662,4.313 --122.61,47.72,0.658,4.275 --122.61,47.73,0.635,4.056 --122.61,47.74,0.616,3.876 --122.61,47.75,0.609,3.801 --122.61,47.76,0.586,3.581 --122.61,47.77,0.573,3.455 --122.61,47.78,0.558,3.318 --122.61,47.79,0.535,3.097 --122.61,47.80,0.528,3.026 --122.61,47.81,0.509,2.84 --122.61,47.82,0.489,2.65 --122.61,47.83,0.485,2.612 --122.61,47.84,0.478,2.542 --122.61,47.85,0.463,2.398 --122.61,47.86,0.462,2.39 --122.61,47.87,0.45,2.279 --122.61,47.88,0.441,2.193 --122.61,47.89,0.441,2.184 --122.61,47.90,0.441,2.193 --122.61,47.91,0.443,2.203 --122.61,47.92,0.427,2.057 --122.61,47.93,0.425,2.038 --122.61,47.94,0.426,2.044 --122.61,47.95,0.426,2.046 --122.61,47.96,0.426,2.047 --122.61,47.97,0.426,2.049 --122.61,47.98,0.427,2.05 --122.61,47.99,0.43,2.083 --122.61,48.00,0.43,2.083 --122.61,48.01,0.431,2.09 --122.61,48.02,0.445,2.226 --122.61,48.03,0.449,2.263 --122.61,48.04,0.449,2.268 --122.61,48.05,0.45,2.275 --122.61,48.06,0.461,2.385 --122.61,48.07,0.47,2.47 --122.61,48.08,0.471,2.476 --122.61,48.09,0.472,2.482 --122.61,48.10,0.472,2.487 --122.61,48.11,0.491,2.669 --122.61,48.12,0.491,2.672 --122.61,48.13,0.491,2.673 --122.61,48.14,0.491,2.672 --122.61,48.15,0.491,2.672 --122.61,48.16,0.491,2.671 --122.61,48.17,0.486,2.621 --122.61,48.18,0.473,2.496 --122.61,48.19,0.473,2.494 --122.61,48.20,0.467,2.44 --122.61,48.21,0.465,2.415 --122.61,48.22,0.454,2.317 --122.61,48.23,0.443,2.203 --122.61,48.24,0.437,2.146 --122.61,48.25,0.419,1.98 --122.61,48.26,0.416,1.946 --122.61,48.27,0.393,1.731 --122.61,48.28,0.387,1.67 --122.61,48.29,0.362,1.431 --122.61,48.30,0.346,1.27 --122.61,48.31,0.332,1.141 --122.61,48.32,0.31,0.924 --122.61,48.33,0.302,0.856 --122.61,48.34,0.285,0.691 --122.61,48.35,0.282,0.663 --122.61,48.36,0.263,0.478 --122.61,48.37,0.259,0.44 --122.61,48.38,0.244,0.292 --122.61,48.39,0.239,0.242 --122.60,46.96,0.264,0.484 --122.60,46.97,0.282,0.661 --122.60,46.98,0.305,0.876 --122.60,46.99,0.325,1.075 --122.60,47.00,0.331,1.129 --122.60,47.01,0.353,1.346 --122.60,47.02,0.374,1.542 --122.60,47.03,0.397,1.762 --122.60,47.04,0.409,1.877 --122.60,47.05,0.425,2.032 --122.60,47.06,0.446,2.233 --122.60,47.07,0.468,2.453 --122.60,47.08,0.472,2.485 --122.60,47.09,0.492,2.683 --122.60,47.10,0.499,2.747 --122.60,47.11,0.514,2.89 --122.60,47.12,0.525,2.992 --122.60,47.13,0.535,3.095 --122.60,47.14,0.549,3.227 --122.60,47.15,0.555,3.286 --122.60,47.16,0.556,3.294 --122.60,47.17,0.573,3.463 --122.60,47.18,0.574,3.465 --122.60,47.19,0.574,3.469 --122.60,47.20,0.574,3.469 --122.60,47.21,0.574,3.468 --122.60,47.22,0.574,3.468 --122.60,47.23,0.574,3.467 --122.60,47.24,0.574,3.466 --122.60,47.25,0.574,3.466 --122.60,47.26,0.574,3.464 --122.60,47.27,0.572,3.453 --122.60,47.28,0.555,3.288 --122.60,47.29,0.55,3.24 --122.60,47.30,0.537,3.109 --122.60,47.31,0.527,3.016 --122.60,47.32,0.517,2.915 --122.60,47.33,0.503,2.782 --122.60,47.34,0.496,2.715 --122.60,47.35,0.477,2.539 --122.60,47.36,0.474,2.506 --122.60,47.37,0.454,2.309 --122.60,47.38,0.448,2.255 --122.60,47.39,0.432,2.105 --122.60,47.40,0.432,2.1 --122.60,47.41,0.419,1.981 --122.60,47.42,0.412,1.911 --122.60,47.43,0.412,1.911 --122.60,47.44,0.413,1.92 --122.60,47.45,0.411,1.904 --122.60,47.46,0.396,1.752 --122.60,47.47,0.416,1.945 --122.60,47.48,0.416,1.95 --122.60,47.49,0.426,2.047 --122.60,47.50,0.436,2.142 --122.60,47.51,0.449,2.261 --122.60,47.52,0.468,2.445 --122.60,47.53,0.489,2.654 --122.60,47.54,0.512,2.873 --122.60,47.55,0.536,3.098 --122.60,47.56,0.559,3.328 --122.60,47.57,0.584,3.563 --122.60,47.58,0.609,3.804 --122.60,47.59,0.634,4.045 --122.60,47.60,0.659,4.283 --122.60,47.61,0.682,4.503 --122.60,47.62,0.699,4.672 --122.60,47.63,0.704,4.723 --122.60,47.64,0.704,4.722 --122.60,47.65,0.705,4.726 --122.60,47.66,0.716,4.833 --122.60,47.67,0.703,4.712 --122.60,47.68,0.697,4.656 --122.60,47.69,0.688,4.565 --122.60,47.70,0.681,4.501 --122.60,47.71,0.675,4.435 --122.60,47.72,0.658,4.279 --122.60,47.73,0.635,4.059 --122.60,47.74,0.631,4.017 --122.60,47.75,0.609,3.804 --122.60,47.76,0.589,3.616 --122.60,47.77,0.582,3.543 --122.60,47.78,0.559,3.319 --122.60,47.79,0.544,3.184 --122.60,47.80,0.531,3.055 --122.60,47.81,0.509,2.843 --122.60,47.82,0.501,2.769 --122.60,47.83,0.487,2.634 --122.60,47.84,0.479,2.551 --122.60,47.85,0.475,2.515 --122.60,47.86,0.465,2.422 --122.60,47.87,0.458,2.351 --122.60,47.88,0.457,2.345 --122.60,47.89,0.457,2.34 --122.60,47.90,0.446,2.234 --122.60,47.91,0.444,2.22 --122.60,47.92,0.44,2.182 --122.60,47.93,0.441,2.19 --122.60,47.94,0.442,2.195 --122.60,47.95,0.442,2.196 --122.60,47.96,0.442,2.197 --122.60,47.97,0.442,2.198 --122.60,47.98,0.442,2.198 --122.60,47.99,0.442,2.197 --122.60,48.00,0.442,2.195 --122.60,48.01,0.446,2.236 --122.60,48.02,0.45,2.273 --122.60,48.03,0.45,2.273 --122.60,48.04,0.452,2.297 --122.60,48.05,0.461,2.381 --122.60,48.06,0.47,2.472 --122.60,48.07,0.471,2.476 --122.60,48.08,0.471,2.481 --122.60,48.09,0.481,2.577 --122.60,48.10,0.486,2.622 --122.60,48.11,0.492,2.675 --122.60,48.12,0.492,2.678 --122.60,48.13,0.492,2.679 --122.60,48.14,0.492,2.677 --122.60,48.15,0.492,2.676 --122.60,48.16,0.492,2.675 --122.60,48.17,0.491,2.673 --122.60,48.18,0.481,2.576 --122.60,48.19,0.473,2.495 --122.60,48.20,0.473,2.492 --122.60,48.21,0.464,2.414 --122.60,48.22,0.454,2.315 --122.60,48.23,0.442,2.201 --122.60,48.24,0.436,2.143 --122.60,48.25,0.419,1.975 --122.60,48.26,0.415,1.942 --122.60,48.27,0.393,1.726 --122.60,48.28,0.386,1.663 --122.60,48.29,0.361,1.423 --122.60,48.30,0.344,1.26 --122.60,48.31,0.323,1.056 --122.60,48.32,0.309,0.914 --122.60,48.33,0.302,0.849 --122.60,48.34,0.285,0.685 --122.60,48.35,0.282,0.659 --122.60,48.36,0.263,0.475 --122.60,48.37,0.259,0.438 --122.60,48.38,0.244,0.291 --122.60,48.39,0.239,0.241 --122.59,46.96,0.261,0.461 --122.59,46.97,0.282,0.659 --122.59,46.98,0.289,0.725 --122.59,46.99,0.31,0.926 --122.59,47.00,0.33,1.125 --122.59,47.01,0.351,1.32 --122.59,47.02,0.358,1.393 --122.59,47.03,0.381,1.612 --122.59,47.04,0.401,1.805 --122.59,47.05,0.413,1.924 --122.59,47.06,0.43,2.082 --122.59,47.07,0.453,2.302 --122.59,47.08,0.456,2.334 --122.59,47.09,0.477,2.532 --122.59,47.10,0.497,2.73 --122.59,47.11,0.501,2.769 --122.59,47.12,0.519,2.936 --122.59,47.13,0.527,3.013 --122.59,47.14,0.54,3.138 --122.59,47.15,0.551,3.246 --122.59,47.16,0.555,3.288 --122.59,47.17,0.559,3.327 --122.59,47.18,0.56,3.329 --122.59,47.19,0.574,3.466 --122.59,47.20,0.574,3.467 --122.59,47.21,0.574,3.467 --122.59,47.22,0.574,3.467 --122.59,47.23,0.574,3.466 --122.59,47.24,0.574,3.465 --122.59,47.25,0.573,3.463 --122.59,47.26,0.573,3.462 --122.59,47.27,0.558,3.316 --122.59,47.28,0.555,3.284 --122.59,47.29,0.537,3.109 --122.59,47.30,0.536,3.103 --122.59,47.31,0.525,2.999 --122.59,47.32,0.516,2.907 --122.59,47.33,0.501,2.762 --122.59,47.34,0.495,2.707 --122.59,47.35,0.475,2.518 --122.59,47.36,0.472,2.484 --122.59,47.37,0.453,2.303 --122.59,47.38,0.446,2.233 --122.59,47.39,0.432,2.1 --122.59,47.40,0.428,2.064 --122.59,47.41,0.412,1.911 --122.59,47.42,0.412,1.908 --122.59,47.43,0.412,1.908 --122.59,47.44,0.413,1.917 --122.59,47.45,0.412,1.912 --122.59,47.46,0.411,1.897 --122.59,47.47,0.415,1.942 --122.59,47.48,0.416,1.947 --122.59,47.49,0.426,2.046 --122.59,47.50,0.44,2.177 --122.59,47.51,0.459,2.363 --122.59,47.52,0.471,2.476 --122.59,47.53,0.49,2.659 --122.59,47.54,0.513,2.878 --122.59,47.55,0.536,3.101 --122.59,47.56,0.571,3.439 --122.59,47.57,0.595,3.673 --122.59,47.58,0.62,3.913 --122.59,47.59,0.645,4.152 --122.59,47.60,0.67,4.387 --122.59,47.61,0.692,4.607 --122.59,47.62,0.705,4.728 --122.59,47.63,0.715,4.824 --122.59,47.64,0.715,4.821 --122.59,47.65,0.72,4.869 --122.59,47.66,0.716,4.835 --122.59,47.67,0.713,4.807 --122.59,47.68,0.71,4.779 --122.59,47.69,0.692,4.604 --122.59,47.70,0.685,4.536 --122.59,47.71,0.68,4.49 --122.59,47.72,0.659,4.282 --122.59,47.73,0.647,4.175 --122.59,47.74,0.632,4.026 --122.59,47.75,0.609,3.807 --122.59,47.76,0.604,3.756 --122.59,47.77,0.582,3.547 --122.59,47.78,0.562,3.348 --122.59,47.79,0.554,3.278 --122.59,47.80,0.531,3.059 --122.59,47.81,0.518,2.926 --122.59,47.82,0.506,2.81 --122.59,47.83,0.496,2.713 --122.59,47.84,0.486,2.623 --122.59,47.85,0.476,2.53 --122.59,47.86,0.474,2.505 --122.59,47.87,0.472,2.489 --122.59,47.88,0.466,2.433 --122.59,47.89,0.466,2.432 --122.59,47.90,0.455,2.321 --122.59,47.91,0.456,2.329 --122.59,47.92,0.456,2.337 --122.59,47.93,0.457,2.344 --122.59,47.94,0.458,2.348 --122.59,47.95,0.458,2.349 --122.59,47.96,0.451,2.287 --122.59,47.97,0.451,2.288 --122.59,47.98,0.451,2.289 --122.59,47.99,0.451,2.288 --122.59,48.00,0.451,2.286 --122.59,48.01,0.457,2.34 --122.59,48.02,0.457,2.338 --122.59,48.03,0.456,2.336 --122.59,48.04,0.468,2.444 --122.59,48.05,0.471,2.476 --122.59,48.06,0.471,2.479 --122.59,48.07,0.472,2.483 --122.59,48.08,0.477,2.535 --122.59,48.09,0.491,2.672 --122.59,48.10,0.492,2.677 --122.59,48.11,0.492,2.681 --122.59,48.12,0.493,2.684 --122.59,48.13,0.493,2.684 --122.59,48.14,0.492,2.682 --122.59,48.15,0.492,2.681 --122.59,48.16,0.492,2.679 --122.59,48.17,0.492,2.677 --122.59,48.18,0.489,2.652 --122.59,48.19,0.473,2.495 --122.59,48.20,0.473,2.492 --122.59,48.21,0.464,2.411 --122.59,48.22,0.454,2.313 --122.59,48.23,0.442,2.196 --122.59,48.24,0.436,2.137 --122.59,48.25,0.418,1.968 --122.59,48.26,0.415,1.935 --122.59,48.27,0.392,1.72 --122.59,48.28,0.383,1.63 --122.59,48.29,0.361,1.416 --122.59,48.30,0.335,1.168 --122.59,48.31,0.321,1.033 --122.59,48.32,0.308,0.908 --122.59,48.33,0.301,0.844 --122.59,48.34,0.284,0.681 --122.59,48.35,0.282,0.656 --122.59,48.36,0.263,0.473 --122.59,48.37,0.259,0.436 --122.59,48.38,0.244,0.29 --122.59,48.39,0.238,0.24 --122.58,46.97,0.27,0.543 --122.58,46.98,0.285,0.684 --122.58,46.99,0.308,0.905 --122.58,47.00,0.317,0.998 --122.58,47.01,0.335,1.171 --122.58,47.02,0.355,1.364 --122.58,47.03,0.365,1.462 --122.58,47.04,0.388,1.68 --122.58,47.05,0.403,1.827 --122.58,47.06,0.418,1.971 --122.58,47.07,0.437,2.152 --122.58,47.08,0.452,2.297 --122.58,47.09,0.463,2.403 --122.58,47.10,0.482,2.579 --122.58,47.11,0.501,2.761 --122.58,47.12,0.504,2.791 --122.58,47.13,0.524,2.983 --122.58,47.14,0.529,3.035 --122.58,47.15,0.544,3.181 --122.58,47.16,0.545,3.186 --122.58,47.17,0.555,3.284 --122.58,47.18,0.557,3.306 --122.58,47.19,0.564,3.371 --122.58,47.20,0.564,3.374 --122.58,47.21,0.564,3.376 --122.58,47.22,0.574,3.466 --122.58,47.23,0.574,3.467 --122.58,47.24,0.569,3.418 --122.58,47.25,0.564,3.376 --122.58,47.26,0.564,3.374 --122.58,47.27,0.555,3.282 --122.58,47.28,0.551,3.244 --122.58,47.29,0.536,3.104 --122.58,47.30,0.535,3.096 --122.58,47.31,0.516,2.908 --122.58,47.32,0.513,2.88 --122.58,47.33,0.495,2.708 --122.58,47.34,0.488,2.641 --122.58,47.35,0.474,2.505 --122.58,47.36,0.463,2.398 --122.58,47.37,0.452,2.296 --122.58,47.38,0.437,2.153 --122.58,47.39,0.431,2.096 --122.58,47.40,0.421,1.997 --122.58,47.41,0.412,1.908 --122.58,47.42,0.412,1.905 --122.58,47.43,0.412,1.905 --122.58,47.44,0.412,1.914 --122.58,47.45,0.413,1.924 --122.58,47.46,0.414,1.933 --122.58,47.47,0.415,1.94 --122.58,47.48,0.416,1.946 --122.58,47.49,0.433,2.112 --122.58,47.50,0.447,2.245 --122.58,47.51,0.467,2.436 --122.58,47.52,0.475,2.513 --122.58,47.53,0.497,2.723 --122.58,47.54,0.519,2.941 --122.58,47.55,0.546,3.199 --122.58,47.56,0.58,3.527 --122.58,47.57,0.605,3.763 --122.58,47.58,0.63,4.003 --122.58,47.59,0.654,4.242 --122.58,47.60,0.679,4.477 --122.58,47.61,0.702,4.699 --122.58,47.62,0.71,4.774 --122.58,47.63,0.725,4.918 --122.58,47.64,0.724,4.915 --122.58,47.65,0.724,4.913 --122.58,47.66,0.724,4.909 --122.58,47.67,0.723,4.903 --122.58,47.68,0.711,4.782 --122.58,47.69,0.707,4.745 --122.58,47.70,0.686,4.55 --122.58,47.71,0.682,4.505 --122.58,47.72,0.664,4.334 --122.58,47.73,0.655,4.248 --122.58,47.74,0.632,4.03 --122.58,47.75,0.621,3.917 --122.58,47.76,0.606,3.773 --122.58,47.77,0.583,3.551 --122.58,47.78,0.576,3.49 --122.58,47.79,0.555,3.284 --122.58,47.80,0.534,3.083 --122.58,47.81,0.528,3.029 --122.58,47.82,0.512,2.874 --122.58,47.83,0.503,2.785 --122.58,47.84,0.491,2.665 --122.58,47.85,0.49,2.656 --122.58,47.86,0.487,2.635 --122.58,47.87,0.474,2.509 --122.58,47.88,0.471,2.477 --122.58,47.89,0.471,2.478 --122.58,47.90,0.472,2.483 --122.58,47.91,0.472,2.489 --122.58,47.92,0.473,2.495 --122.58,47.93,0.472,2.483 --122.58,47.94,0.472,2.487 --122.58,47.95,0.461,2.378 --122.58,47.96,0.454,2.313 --122.58,47.97,0.454,2.313 --122.58,47.98,0.454,2.311 --122.58,47.99,0.454,2.309 --122.58,48.00,0.456,2.331 --122.58,48.01,0.472,2.482 --122.58,48.02,0.471,2.48 --122.58,48.03,0.471,2.479 --122.58,48.04,0.471,2.481 --122.58,48.05,0.472,2.484 --122.58,48.06,0.472,2.489 --122.58,48.07,0.472,2.49 --122.58,48.08,0.491,2.674 --122.58,48.09,0.492,2.678 --122.58,48.10,0.492,2.682 --122.58,48.11,0.493,2.686 --122.58,48.12,0.493,2.688 --122.58,48.13,0.493,2.688 --122.58,48.14,0.493,2.686 --122.58,48.15,0.492,2.683 --122.58,48.16,0.492,2.681 --122.58,48.17,0.492,2.678 --122.58,48.18,0.489,2.652 --122.58,48.19,0.473,2.495 --122.58,48.20,0.472,2.49 --122.58,48.21,0.464,2.408 --122.58,48.22,0.454,2.309 --122.58,48.23,0.441,2.191 --122.58,48.24,0.435,2.132 --122.58,48.25,0.417,1.961 --122.58,48.26,0.414,1.928 --122.58,48.27,0.392,1.715 --122.58,48.28,0.37,1.501 --122.58,48.29,0.36,1.413 --122.58,48.30,0.335,1.169 --122.58,48.31,0.322,1.039 --122.58,48.32,0.308,0.912 --122.58,48.33,0.302,0.847 --122.58,48.34,0.284,0.681 --122.58,48.35,0.282,0.656 --122.58,48.36,0.263,0.472 --122.58,48.37,0.259,0.434 --122.58,48.38,0.244,0.289 --122.58,48.39,0.238,0.239 --122.57,46.97,0.263,0.476 --122.57,46.98,0.278,0.618 --122.57,46.99,0.299,0.818 --122.57,47.00,0.31,0.928 --122.57,47.01,0.324,1.067 --122.57,47.02,0.34,1.218 --122.57,47.03,0.357,1.385 --122.57,47.04,0.372,1.529 --122.57,47.05,0.395,1.748 --122.57,47.06,0.402,1.818 --122.57,47.07,0.421,2.0 --122.57,47.08,0.444,2.22 --122.57,47.09,0.455,2.32 --122.57,47.10,0.47,2.472 --122.57,47.11,0.487,2.627 --122.57,47.12,0.496,2.722 --122.57,47.13,0.508,2.835 --122.57,47.14,0.522,2.968 --122.57,47.15,0.529,3.039 --122.57,47.16,0.534,3.081 --122.57,47.17,0.549,3.227 --122.57,47.18,0.549,3.232 --122.57,47.19,0.555,3.288 --122.57,47.20,0.556,3.291 --122.57,47.21,0.564,3.369 --122.57,47.22,0.569,3.419 --122.57,47.23,0.569,3.421 --122.57,47.24,0.556,3.293 --122.57,47.25,0.555,3.288 --122.57,47.26,0.555,3.283 --122.57,47.27,0.554,3.279 --122.57,47.28,0.546,3.198 --122.57,47.29,0.536,3.098 --122.57,47.30,0.522,2.972 --122.57,47.31,0.515,2.9 --122.57,47.32,0.498,2.734 --122.57,47.33,0.494,2.699 --122.57,47.34,0.474,2.507 --122.57,47.35,0.47,2.465 --122.57,47.36,0.453,2.303 --122.57,47.37,0.448,2.254 --122.57,47.38,0.432,2.1 --122.57,47.39,0.431,2.092 --122.57,47.40,0.418,1.964 --122.57,47.41,0.412,1.905 --122.57,47.42,0.411,1.902 --122.57,47.43,0.411,1.902 --122.57,47.44,0.412,1.912 --122.57,47.45,0.413,1.921 --122.57,47.46,0.414,1.93 --122.57,47.47,0.415,1.938 --122.57,47.48,0.424,2.021 --122.57,47.49,0.435,2.134 --122.57,47.50,0.447,2.246 --122.57,47.51,0.467,2.44 --122.57,47.52,0.487,2.634 --122.57,47.53,0.509,2.847 --122.57,47.54,0.532,3.068 --122.57,47.55,0.556,3.297 --122.57,47.56,0.582,3.543 --122.57,47.57,0.606,3.778 --122.57,47.58,0.631,4.017 --122.57,47.59,0.656,4.254 --122.57,47.60,0.68,4.488 --122.57,47.61,0.703,4.71 --122.57,47.62,0.725,4.921 --122.57,47.63,0.726,4.926 --122.57,47.64,0.725,4.922 --122.57,47.65,0.725,4.918 --122.57,47.66,0.724,4.913 --122.57,47.67,0.723,4.906 --122.57,47.68,0.722,4.896 --122.57,47.69,0.708,4.756 --122.57,47.70,0.701,4.691 --122.57,47.71,0.682,4.508 --122.57,47.72,0.678,4.472 --122.57,47.73,0.655,4.252 --122.57,47.74,0.637,4.076 --122.57,47.75,0.629,3.998 --122.57,47.76,0.606,3.778 --122.57,47.77,0.593,3.654 --122.57,47.78,0.579,3.514 --122.57,47.79,0.555,3.29 --122.57,47.80,0.548,3.22 --122.57,47.81,0.529,3.038 --122.57,47.82,0.526,3.004 --122.57,47.83,0.507,2.826 --122.57,47.84,0.506,2.81 --122.57,47.85,0.498,2.739 --122.57,47.86,0.489,2.654 --122.57,47.87,0.487,2.634 --122.57,47.88,0.487,2.635 --122.57,47.89,0.488,2.639 --122.57,47.90,0.488,2.643 --122.57,47.91,0.489,2.648 --122.57,47.92,0.487,2.633 --122.57,47.93,0.473,2.497 --122.57,47.94,0.473,2.501 --122.57,47.95,0.47,2.468 --122.57,47.96,0.47,2.467 --122.57,47.97,0.47,2.466 --122.57,47.98,0.47,2.463 --122.57,47.99,0.469,2.46 --122.57,48.00,0.472,2.483 --122.57,48.01,0.473,2.493 --122.57,48.02,0.472,2.49 --122.57,48.03,0.472,2.488 --122.57,48.04,0.472,2.489 --122.57,48.05,0.481,2.574 --122.57,48.06,0.487,2.632 --122.57,48.07,0.487,2.632 --122.57,48.08,0.492,2.68 --122.57,48.09,0.493,2.684 --122.57,48.10,0.493,2.687 --122.57,48.11,0.495,2.704 --122.57,48.12,0.507,2.82 --122.57,48.13,0.506,2.817 --122.57,48.14,0.506,2.813 --122.57,48.15,0.496,2.722 --122.57,48.16,0.492,2.683 --122.57,48.17,0.492,2.679 --122.57,48.18,0.489,2.652 --122.57,48.19,0.473,2.494 --122.57,48.20,0.472,2.489 --122.57,48.21,0.463,2.405 --122.57,48.22,0.453,2.306 --122.57,48.23,0.441,2.186 --122.57,48.24,0.434,2.126 --122.57,48.25,0.417,1.954 --122.57,48.26,0.413,1.921 --122.57,48.27,0.389,1.688 --122.57,48.28,0.369,1.498 --122.57,48.29,0.36,1.411 --122.57,48.30,0.335,1.17 --122.57,48.31,0.322,1.045 --122.57,48.32,0.309,0.915 --122.57,48.33,0.302,0.85 --122.57,48.34,0.284,0.681 --122.57,48.35,0.271,0.55 --122.57,48.36,0.262,0.471 --122.57,48.37,0.258,0.432 --122.57,48.38,0.243,0.287 --122.56,46.98,0.265,0.492 --122.56,46.99,0.283,0.671 --122.56,47.00,0.304,0.866 --122.56,47.01,0.312,0.95 --122.56,47.02,0.331,1.135 --122.56,47.03,0.345,1.264 --122.56,47.04,0.36,1.406 --122.56,47.05,0.38,1.597 --122.56,47.06,0.387,1.666 --122.56,47.07,0.408,1.867 --122.56,47.08,0.429,2.071 --122.56,47.09,0.449,2.268 --122.56,47.10,0.455,2.323 --122.56,47.11,0.471,2.478 --122.56,47.12,0.483,2.592 --122.56,47.13,0.493,2.688 --122.56,47.14,0.509,2.838 --122.56,47.15,0.514,2.893 --122.56,47.16,0.533,3.076 --122.56,47.17,0.536,3.102 --122.56,47.18,0.539,3.127 --122.56,47.19,0.554,3.277 --122.56,47.20,0.555,3.283 --122.56,47.21,0.556,3.293 --122.56,47.22,0.556,3.295 --122.56,47.23,0.556,3.296 --122.56,47.24,0.556,3.293 --122.56,47.25,0.555,3.288 --122.56,47.26,0.555,3.281 --122.56,47.27,0.552,3.257 --122.56,47.28,0.536,3.099 --122.56,47.29,0.529,3.036 --122.56,47.30,0.515,2.903 --122.56,47.31,0.504,2.799 --122.56,47.32,0.494,2.701 --122.56,47.33,0.479,2.558 --122.56,47.34,0.473,2.498 --122.56,47.35,0.454,2.318 --122.56,47.36,0.452,2.295 --122.56,47.37,0.447,2.246 --122.56,47.38,0.431,2.095 --122.56,47.39,0.424,2.026 --122.56,47.40,0.412,1.908 --122.56,47.41,0.411,1.903 --122.56,47.42,0.411,1.899 --122.56,47.43,0.411,1.899 --122.56,47.44,0.412,1.909 --122.56,47.45,0.413,1.919 --122.56,47.46,0.414,1.928 --122.56,47.47,0.415,1.936 --122.56,47.48,0.423,2.02 --122.56,47.49,0.435,2.133 --122.56,47.50,0.447,2.247 --122.56,47.51,0.467,2.443 --122.56,47.52,0.488,2.639 --122.56,47.53,0.51,2.851 --122.56,47.54,0.533,3.072 --122.56,47.55,0.557,3.302 --122.56,47.56,0.597,3.69 --122.56,47.57,0.622,3.926 --122.56,47.58,0.646,4.165 --122.56,47.59,0.671,4.401 --122.56,47.60,0.695,4.636 --122.56,47.61,0.718,4.858 --122.56,47.62,0.726,4.928 --122.56,47.63,0.741,5.072 --122.56,47.64,0.74,5.067 --122.56,47.65,0.74,5.062 --122.56,47.66,0.739,5.056 --122.56,47.67,0.733,5.0 --122.56,47.68,0.723,4.901 --122.56,47.69,0.717,4.844 --122.56,47.70,0.705,4.728 --122.56,47.71,0.695,4.634 --122.56,47.72,0.679,4.475 --122.56,47.73,0.656,4.256 --122.56,47.74,0.652,4.217 --122.56,47.75,0.63,4.002 --122.56,47.76,0.61,3.816 --122.56,47.77,0.602,3.742 --122.56,47.78,0.579,3.519 --122.56,47.79,0.565,3.386 --122.56,47.80,0.552,3.253 --122.56,47.81,0.543,3.17 --122.56,47.82,0.527,3.015 --122.56,47.83,0.522,2.969 --122.56,47.84,0.52,2.951 --122.56,47.85,0.502,2.778 --122.56,47.86,0.503,2.784 --122.56,47.87,0.503,2.788 --122.56,47.88,0.504,2.792 --122.56,47.89,0.504,2.797 --122.56,47.90,0.505,2.801 --122.56,47.91,0.493,2.692 --122.56,47.92,0.489,2.647 --122.56,47.93,0.486,2.622 --122.56,47.94,0.486,2.624 --122.56,47.95,0.486,2.622 --122.56,47.96,0.486,2.621 --122.56,47.97,0.486,2.619 --122.56,47.98,0.485,2.616 --122.56,47.99,0.485,2.612 --122.56,48.00,0.484,2.607 --122.56,48.01,0.484,2.602 --122.56,48.02,0.483,2.597 --122.56,48.03,0.483,2.593 --122.56,48.04,0.483,2.592 --122.56,48.05,0.492,2.682 --122.56,48.06,0.492,2.683 --122.56,48.07,0.493,2.684 --122.56,48.08,0.493,2.686 --122.56,48.09,0.502,2.776 --122.56,48.10,0.502,2.778 --122.56,48.11,0.509,2.842 --122.56,48.12,0.512,2.875 --122.56,48.13,0.512,2.873 --122.56,48.14,0.512,2.868 --122.56,48.15,0.501,2.767 --122.56,48.16,0.494,2.702 --122.56,48.17,0.492,2.681 --122.56,48.18,0.489,2.651 --122.56,48.19,0.48,2.566 --122.56,48.20,0.472,2.487 --122.56,48.21,0.463,2.401 --122.56,48.22,0.453,2.302 --122.56,48.23,0.44,2.18 --122.56,48.24,0.434,2.121 --122.56,48.25,0.416,1.947 --122.56,48.26,0.405,1.842 --122.56,48.27,0.388,1.682 --122.56,48.28,0.369,1.495 --122.56,48.29,0.353,1.341 --122.56,48.30,0.335,1.172 --122.56,48.31,0.323,1.049 --122.56,48.32,0.303,0.857 --122.56,48.33,0.3,0.831 --122.56,48.34,0.282,0.661 --122.56,48.35,0.262,0.471 --122.56,48.36,0.262,0.47 --122.56,48.37,0.258,0.429 --122.56,48.38,0.243,0.285 --122.55,46.98,0.264,0.489 --122.55,46.99,0.268,0.521 --122.55,47.00,0.289,0.727 --122.55,47.01,0.308,0.913 --122.55,47.02,0.316,0.987 --122.55,47.03,0.337,1.185 --122.55,47.04,0.35,1.309 --122.55,47.05,0.364,1.446 --122.55,47.06,0.384,1.643 --122.55,47.07,0.392,1.714 --122.55,47.08,0.413,1.919 --122.55,47.09,0.434,2.118 --122.55,47.10,0.439,2.174 --122.55,47.11,0.46,2.368 --122.55,47.12,0.476,2.528 --122.55,47.13,0.486,2.617 --122.55,47.14,0.498,2.737 --122.55,47.15,0.511,2.862 --122.55,47.16,0.519,2.94 --122.55,47.17,0.535,3.097 --122.55,47.18,0.538,3.125 --122.55,47.19,0.54,3.145 --122.55,47.20,0.544,3.176 --122.55,47.21,0.556,3.292 --122.55,47.22,0.556,3.295 --122.55,47.23,0.556,3.297 --122.55,47.24,0.556,3.294 --122.55,47.25,0.555,3.288 --122.55,47.26,0.541,3.152 --122.55,47.27,0.538,3.126 --122.55,47.28,0.535,3.095 --122.55,47.29,0.516,2.908 --122.55,47.30,0.511,2.865 --122.55,47.31,0.495,2.704 --122.55,47.32,0.486,2.622 --122.55,47.33,0.473,2.498 --122.55,47.34,0.472,2.486 --122.55,47.35,0.452,2.299 --122.55,47.36,0.451,2.286 --122.55,47.37,0.434,2.118 --122.55,47.38,0.431,2.09 --122.55,47.39,0.422,2.008 --122.55,47.40,0.412,1.905 --122.55,47.41,0.411,1.9 --122.55,47.42,0.411,1.896 --122.55,47.43,0.411,1.896 --122.55,47.44,0.412,1.906 --122.55,47.45,0.413,1.917 --122.55,47.46,0.414,1.926 --122.55,47.47,0.415,1.934 --122.55,47.48,0.423,2.019 --122.55,47.49,0.438,2.157 --122.55,47.50,0.454,2.311 --122.55,47.51,0.468,2.446 --122.55,47.52,0.496,2.722 --122.55,47.53,0.521,2.959 --122.55,47.54,0.544,3.181 --122.55,47.55,0.572,3.449 --122.55,47.56,0.601,3.729 --122.55,47.57,0.626,3.967 --122.55,47.58,0.652,4.221 --122.55,47.59,0.686,4.549 --122.55,47.60,0.711,4.784 --122.55,47.61,0.726,4.932 --122.55,47.62,0.736,5.027 --122.55,47.63,0.746,5.119 --122.55,47.64,0.745,5.115 --122.55,47.65,0.745,5.111 --122.55,47.66,0.744,5.105 --122.55,47.67,0.734,5.005 --122.55,47.68,0.731,4.974 --122.55,47.69,0.722,4.896 --122.55,47.70,0.711,4.789 --122.55,47.71,0.702,4.697 --122.55,47.72,0.679,4.478 --122.55,47.73,0.668,4.375 --122.55,47.74,0.653,4.224 --122.55,47.75,0.63,4.006 --122.55,47.76,0.625,3.958 --122.55,47.77,0.603,3.746 --122.55,47.78,0.583,3.551 --122.55,47.79,0.575,3.481 --122.55,47.80,0.559,3.323 --122.55,47.81,0.549,3.229 --122.55,47.82,0.538,3.125 --122.55,47.83,0.53,3.044 --122.55,47.84,0.522,2.968 --122.55,47.85,0.518,2.927 --122.55,47.86,0.519,2.936 --122.55,47.87,0.519,2.942 --122.55,47.88,0.516,2.913 --122.55,47.89,0.514,2.888 --122.55,47.90,0.513,2.884 --122.55,47.91,0.502,2.772 --122.55,47.92,0.502,2.775 --122.55,47.93,0.502,2.778 --122.55,47.94,0.502,2.779 --122.55,47.95,0.502,2.778 --122.55,47.96,0.502,2.772 --122.55,47.97,0.496,2.715 --122.55,47.98,0.496,2.713 --122.55,47.99,0.495,2.708 --122.55,48.00,0.495,2.704 --122.55,48.01,0.494,2.699 --122.55,48.02,0.494,2.694 --122.55,48.03,0.493,2.69 --122.55,48.04,0.493,2.69 --122.55,48.05,0.493,2.69 --122.55,48.06,0.493,2.69 --122.55,48.07,0.496,2.719 --122.55,48.08,0.498,2.739 --122.55,48.09,0.512,2.874 --122.55,48.10,0.513,2.877 --122.55,48.11,0.513,2.879 --122.55,48.12,0.513,2.881 --122.55,48.13,0.513,2.878 --122.55,48.14,0.512,2.873 --122.55,48.15,0.512,2.868 --122.55,48.16,0.496,2.72 --122.55,48.17,0.492,2.682 --122.55,48.18,0.491,2.674 --122.55,48.19,0.486,2.624 --122.55,48.20,0.472,2.485 --122.55,48.21,0.463,2.397 --122.55,48.22,0.452,2.298 --122.55,48.23,0.44,2.175 --122.55,48.24,0.433,2.115 --122.55,48.25,0.415,1.94 --122.55,48.26,0.392,1.716 --122.55,48.27,0.388,1.677 --122.55,48.28,0.364,1.446 --122.55,48.29,0.347,1.282 --122.55,48.30,0.336,1.174 --122.55,48.31,0.312,0.949 --122.55,48.32,0.303,0.86 --122.55,48.33,0.287,0.708 --122.55,48.34,0.282,0.662 --122.55,48.35,0.262,0.47 --122.55,48.36,0.262,0.469 --122.55,48.37,0.257,0.419 --122.55,48.38,0.243,0.283 --122.54,46.99,0.266,0.505 --122.54,47.00,0.275,0.591 --122.54,47.01,0.293,0.762 --122.54,47.02,0.313,0.959 --122.54,47.03,0.323,1.053 --122.54,47.04,0.339,1.205 --122.54,47.05,0.354,1.353 --122.54,47.06,0.371,1.513 --122.54,47.07,0.387,1.666 --122.54,47.08,0.397,1.767 --122.54,47.09,0.418,1.965 --122.54,47.10,0.436,2.141 --122.54,47.11,0.447,2.245 --122.54,47.12,0.461,2.381 --122.54,47.13,0.473,2.5 --122.54,47.14,0.488,2.643 --122.54,47.15,0.503,2.786 --122.54,47.16,0.513,2.884 --122.54,47.17,0.524,2.987 --122.54,47.18,0.525,2.997 --122.54,47.19,0.537,3.11 --122.54,47.20,0.544,3.176 --122.54,47.21,0.546,3.199 --122.54,47.22,0.547,3.206 --122.54,47.23,0.547,3.211 --122.54,47.24,0.547,3.209 --122.54,47.25,0.546,3.2 --122.54,47.26,0.537,3.11 --122.54,47.27,0.536,3.1 --122.54,47.28,0.521,2.96 --122.54,47.29,0.515,2.902 --122.54,47.30,0.505,2.809 --122.54,47.31,0.494,2.696 --122.54,47.32,0.48,2.562 --122.54,47.33,0.472,2.487 --122.54,47.34,0.464,2.412 --122.54,47.35,0.451,2.286 --122.54,47.36,0.44,2.181 --122.54,47.37,0.431,2.094 --122.54,47.38,0.43,2.085 --122.54,47.39,0.414,1.93 --122.54,47.40,0.411,1.903 --122.54,47.41,0.411,1.897 --122.54,47.42,0.41,1.893 --122.54,47.43,0.405,1.842 --122.54,47.44,0.411,1.901 --122.54,47.45,0.412,1.914 --122.54,47.46,0.413,1.924 --122.54,47.47,0.414,1.932 --122.54,47.48,0.423,2.018 --122.54,47.49,0.445,2.223 --122.54,47.50,0.454,2.312 --122.54,47.51,0.475,2.511 --122.54,47.52,0.507,2.82 --122.54,47.53,0.529,3.035 --122.54,47.54,0.552,3.261 --122.54,47.55,0.583,3.559 --122.54,47.56,0.608,3.794 --122.54,47.57,0.633,4.031 --122.54,47.58,0.668,4.37 --122.54,47.59,0.696,4.639 --122.54,47.60,0.72,4.876 --122.54,47.61,0.73,4.964 --122.54,47.62,0.747,5.128 --122.54,47.63,0.752,5.176 --122.54,47.64,0.751,5.17 --122.54,47.65,0.75,5.163 --122.54,47.66,0.749,5.156 --122.54,47.67,0.749,5.147 --122.54,47.68,0.731,4.977 --122.54,47.69,0.727,4.943 --122.54,47.70,0.722,4.888 --122.54,47.71,0.702,4.7 --122.54,47.72,0.685,4.534 --122.54,47.73,0.676,4.446 --122.54,47.74,0.657,4.265 --122.54,47.75,0.642,4.118 --122.54,47.76,0.626,3.972 --122.54,47.77,0.603,3.75 --122.54,47.78,0.597,3.692 --122.54,47.79,0.576,3.488 --122.54,47.80,0.572,3.444 --122.54,47.81,0.554,3.277 --122.54,47.82,0.547,3.212 --122.54,47.83,0.534,3.084 --122.54,47.84,0.533,3.076 --122.54,47.85,0.533,3.077 --122.54,47.86,0.532,3.066 --122.54,47.87,0.533,3.075 --122.54,47.88,0.518,2.927 --122.54,47.89,0.517,2.923 --122.54,47.90,0.518,2.926 --122.54,47.91,0.518,2.929 --122.54,47.92,0.518,2.931 --122.54,47.93,0.518,2.934 --122.54,47.94,0.519,2.935 --122.54,47.95,0.517,2.921 --122.54,47.96,0.503,2.783 --122.54,47.97,0.498,2.737 --122.54,47.98,0.497,2.732 --122.54,47.99,0.497,2.726 --122.54,48.00,0.496,2.72 --122.54,48.01,0.496,2.714 --122.54,48.02,0.495,2.707 --122.54,48.03,0.494,2.701 --122.54,48.04,0.494,2.698 --122.54,48.05,0.494,2.697 --122.54,48.06,0.494,2.697 --122.54,48.07,0.511,2.86 --122.54,48.08,0.513,2.878 --122.54,48.09,0.513,2.88 --122.54,48.10,0.513,2.883 --122.54,48.11,0.513,2.886 --122.54,48.12,0.514,2.887 --122.54,48.13,0.513,2.884 --122.54,48.14,0.513,2.878 --122.54,48.15,0.512,2.872 --122.54,48.16,0.51,2.853 --122.54,48.17,0.492,2.683 --122.54,48.18,0.492,2.675 --122.54,48.19,0.486,2.623 --122.54,48.20,0.472,2.483 --122.54,48.21,0.462,2.394 --122.54,48.22,0.452,2.294 --122.54,48.23,0.439,2.169 --122.54,48.24,0.433,2.109 --122.54,48.25,0.414,1.933 --122.54,48.26,0.391,1.71 --122.54,48.27,0.387,1.671 --122.54,48.28,0.363,1.442 --122.54,48.29,0.347,1.28 --122.54,48.30,0.336,1.175 --122.54,48.31,0.312,0.951 --122.54,48.32,0.303,0.863 --122.54,48.33,0.287,0.708 --122.54,48.34,0.282,0.663 --122.54,48.35,0.262,0.47 --122.54,48.36,0.262,0.468 --122.54,48.37,0.243,0.281 --122.53,46.99,0.259,0.442 --122.53,47.00,0.268,0.527 --122.53,47.01,0.282,0.659 --122.53,47.02,0.297,0.808 --122.53,47.03,0.316,0.986 --122.53,47.04,0.33,1.119 --122.53,47.05,0.339,1.203 --122.53,47.06,0.355,1.363 --122.53,47.07,0.378,1.582 --122.53,47.08,0.381,1.615 --122.53,47.09,0.405,1.838 --122.53,47.10,0.423,2.015 --122.53,47.11,0.431,2.096 --122.53,47.12,0.446,2.233 --122.53,47.13,0.465,2.421 --122.53,47.14,0.481,2.572 --122.53,47.15,0.491,2.668 --122.53,47.16,0.508,2.834 --122.53,47.17,0.516,2.906 --122.53,47.18,0.519,2.938 --122.53,47.19,0.53,3.049 --122.53,47.20,0.538,3.118 --122.53,47.21,0.538,3.125 --122.53,47.22,0.539,3.133 --122.53,47.23,0.54,3.139 --122.53,47.24,0.539,3.134 --122.53,47.25,0.538,3.122 --122.53,47.26,0.537,3.109 --122.53,47.27,0.533,3.076 --122.53,47.28,0.516,2.907 --122.53,47.29,0.515,2.896 --122.53,47.30,0.5,2.757 --122.53,47.31,0.493,2.688 --122.53,47.32,0.474,2.51 --122.53,47.33,0.471,2.476 --122.53,47.34,0.451,2.286 --122.53,47.35,0.45,2.277 --122.53,47.36,0.431,2.097 --122.53,47.37,0.431,2.089 --122.53,47.38,0.424,2.025 --122.53,47.39,0.412,1.905 --122.53,47.40,0.411,1.9 --122.53,47.41,0.41,1.895 --122.53,47.42,0.41,1.891 --122.53,47.43,0.394,1.74 --122.53,47.44,0.411,1.901 --122.53,47.45,0.412,1.912 --122.53,47.46,0.413,1.922 --122.53,47.47,0.414,1.93 --122.53,47.48,0.426,2.04 --122.53,47.49,0.445,2.223 --122.53,47.50,0.466,2.426 --122.53,47.51,0.487,2.627 --122.53,47.52,0.507,2.824 --122.53,47.53,0.531,3.052 --122.53,47.54,0.556,3.298 --122.53,47.55,0.597,3.69 --122.53,47.56,0.622,3.928 --122.53,47.57,0.648,4.18 --122.53,47.58,0.673,4.418 --122.53,47.59,0.697,4.654 --122.53,47.60,0.722,4.89 --122.53,47.61,0.745,5.113 --122.53,47.62,0.747,5.133 --122.53,47.63,0.766,5.317 --122.53,47.64,0.766,5.311 --122.53,47.65,0.765,5.305 --122.53,47.66,0.764,5.298 --122.53,47.67,0.753,5.193 --122.53,47.68,0.743,5.095 --122.53,47.69,0.728,4.951 --122.53,47.70,0.722,4.892 --122.53,47.71,0.702,4.703 --122.53,47.72,0.699,4.668 --122.53,47.73,0.679,4.475 --122.53,47.74,0.671,4.405 --122.53,47.75,0.65,4.195 --122.53,47.76,0.627,3.976 --122.53,47.77,0.614,3.855 --122.53,47.78,0.599,3.713 --122.53,47.79,0.591,3.628 --122.53,47.80,0.572,3.451 --122.53,47.81,0.569,3.419 --122.53,47.82,0.55,3.235 --122.53,47.83,0.549,3.228 --122.53,47.84,0.548,3.222 --122.53,47.85,0.542,3.157 --122.53,47.86,0.534,3.081 --122.53,47.87,0.535,3.09 --122.53,47.88,0.533,3.071 --122.53,47.89,0.533,3.078 --122.53,47.90,0.534,3.081 --122.53,47.91,0.534,3.084 --122.53,47.92,0.534,3.087 --122.53,47.93,0.535,3.09 --122.53,47.94,0.528,3.03 --122.53,47.95,0.518,2.932 --122.53,47.96,0.514,2.894 --122.53,47.97,0.514,2.892 --122.53,47.98,0.514,2.887 --122.53,47.99,0.513,2.879 --122.53,48.00,0.512,2.871 --122.53,48.01,0.511,2.863 --122.53,48.02,0.51,2.854 --122.53,48.03,0.509,2.846 --122.53,48.04,0.509,2.842 --122.53,48.05,0.509,2.839 --122.53,48.06,0.508,2.837 --122.53,48.07,0.513,2.883 --122.53,48.08,0.513,2.884 --122.53,48.09,0.514,2.887 --122.53,48.10,0.514,2.889 --122.53,48.11,0.514,2.892 --122.53,48.12,0.514,2.893 --122.53,48.13,0.514,2.89 --122.53,48.14,0.513,2.884 --122.53,48.15,0.513,2.877 --122.53,48.16,0.512,2.87 --122.53,48.17,0.505,2.802 --122.53,48.18,0.492,2.676 --122.53,48.19,0.486,2.622 --122.53,48.20,0.472,2.482 --122.53,48.21,0.462,2.39 --122.53,48.22,0.452,2.291 --122.53,48.23,0.438,2.163 --122.53,48.24,0.432,2.103 --122.53,48.25,0.414,1.926 --122.53,48.26,0.391,1.705 --122.53,48.27,0.387,1.665 --122.53,48.28,0.363,1.438 --122.53,48.29,0.346,1.279 --122.53,48.30,0.325,1.073 --122.53,48.31,0.313,0.953 --122.53,48.32,0.304,0.866 --122.53,48.33,0.287,0.709 --122.53,48.34,0.283,0.664 --122.53,48.35,0.262,0.469 --122.53,48.36,0.26,0.444 --122.53,48.37,0.243,0.279 --122.52,47.00,0.262,0.471 --122.52,47.01,0.27,0.548 --122.52,47.02,0.291,0.743 --122.52,47.03,0.302,0.854 --122.52,47.04,0.314,0.97 --122.52,47.05,0.323,1.054 --122.52,47.06,0.343,1.244 --122.52,47.07,0.362,1.431 --122.52,47.08,0.369,1.492 --122.52,47.09,0.389,1.685 --122.52,47.10,0.407,1.862 --122.52,47.11,0.418,1.971 --122.52,47.12,0.439,2.171 --122.52,47.13,0.451,2.286 --122.52,47.14,0.468,2.447 --122.52,47.15,0.488,2.642 --122.52,47.16,0.493,2.691 --122.52,47.17,0.513,2.884 --122.52,47.18,0.516,2.912 --122.52,47.19,0.522,2.967 --122.52,47.20,0.536,3.105 --122.52,47.21,0.539,3.127 --122.52,47.22,0.539,3.136 --122.52,47.23,0.54,3.143 --122.52,47.24,0.54,3.137 --122.52,47.25,0.538,3.124 --122.52,47.26,0.537,3.109 --122.52,47.27,0.533,3.069 --122.52,47.28,0.515,2.903 --122.52,47.29,0.508,2.83 --122.52,47.30,0.494,2.698 --122.52,47.31,0.482,2.582 --122.52,47.32,0.472,2.487 --122.52,47.33,0.456,2.334 --122.52,47.34,0.45,2.279 --122.52,47.35,0.45,2.271 --122.52,47.36,0.431,2.092 --122.52,47.37,0.43,2.084 --122.52,47.38,0.423,2.02 --122.52,47.39,0.411,1.902 --122.52,47.40,0.411,1.897 --122.52,47.41,0.41,1.893 --122.52,47.42,0.41,1.889 --122.52,47.43,0.408,1.874 --122.52,47.44,0.411,1.9 --122.52,47.45,0.412,1.91 --122.52,47.46,0.413,1.919 --122.52,47.47,0.418,1.966 --122.52,47.48,0.434,2.118 --122.52,47.49,0.444,2.221 --122.52,47.50,0.466,2.426 --122.52,47.51,0.487,2.629 --122.52,47.52,0.507,2.827 --122.52,47.53,0.545,3.19 --122.52,47.54,0.572,3.446 --122.52,47.55,0.598,3.696 --122.52,47.56,0.625,3.962 --122.52,47.57,0.664,4.332 --122.52,47.58,0.688,4.568 --122.52,47.59,0.713,4.804 --122.52,47.60,0.738,5.041 --122.52,47.61,0.747,5.137 --122.52,47.62,0.762,5.281 --122.52,47.63,0.767,5.321 --122.52,47.64,0.766,5.315 --122.52,47.65,0.765,5.309 --122.52,47.66,0.765,5.302 --122.52,47.67,0.759,5.247 --122.52,47.68,0.751,5.166 --122.52,47.69,0.738,5.042 --122.52,47.70,0.725,4.922 --122.52,47.71,0.716,4.831 --122.52,47.72,0.699,4.67 --122.52,47.73,0.693,4.615 --122.52,47.74,0.673,4.416 --122.52,47.75,0.652,4.216 --122.52,47.76,0.64,4.102 --122.52,47.77,0.623,3.938 --122.52,47.78,0.607,3.79 --122.52,47.79,0.596,3.675 --122.52,47.80,0.584,3.566 --122.52,47.81,0.57,3.432 --122.52,47.82,0.565,3.378 --122.52,47.83,0.552,3.259 --122.52,47.84,0.552,3.255 --122.52,47.85,0.546,3.195 --122.52,47.86,0.547,3.205 --122.52,47.87,0.547,3.213 --122.52,47.88,0.548,3.22 --122.52,47.89,0.549,3.228 --122.52,47.90,0.549,3.231 --122.52,47.91,0.55,3.234 --122.52,47.92,0.539,3.128 --122.52,47.93,0.539,3.133 --122.52,47.94,0.531,3.05 --122.52,47.95,0.53,3.049 --122.52,47.96,0.53,3.047 --122.52,47.97,0.522,2.972 --122.52,47.98,0.519,2.935 --122.52,47.99,0.518,2.928 --122.52,48.00,0.517,2.92 --122.52,48.01,0.516,2.913 --122.52,48.02,0.515,2.905 --122.52,48.03,0.515,2.898 --122.52,48.04,0.514,2.895 --122.52,48.05,0.514,2.893 --122.52,48.06,0.514,2.892 --122.52,48.07,0.514,2.891 --122.52,48.08,0.514,2.892 --122.52,48.09,0.523,2.977 --122.52,48.10,0.523,2.978 --122.52,48.11,0.523,2.979 --122.52,48.12,0.523,2.978 --122.52,48.13,0.523,2.974 --122.52,48.14,0.519,2.942 --122.52,48.15,0.513,2.883 --122.52,48.16,0.512,2.875 --122.52,48.17,0.511,2.859 --122.52,48.18,0.492,2.678 --122.52,48.19,0.486,2.623 --122.52,48.20,0.472,2.482 --122.52,48.21,0.462,2.389 --122.52,48.22,0.451,2.289 --122.52,48.23,0.438,2.159 --122.52,48.24,0.428,2.068 --122.52,48.25,0.411,1.904 --122.52,48.26,0.39,1.7 --122.52,48.27,0.379,1.596 --122.52,48.28,0.363,1.435 --122.52,48.29,0.339,1.21 --122.52,48.30,0.325,1.074 --122.52,48.31,0.313,0.954 --122.52,48.32,0.304,0.867 --122.52,48.33,0.287,0.709 --122.52,48.34,0.283,0.664 --122.52,48.35,0.262,0.469 --122.52,48.36,0.259,0.442 --122.52,48.37,0.242,0.278 --122.51,47.00,0.254,0.393 --122.51,47.01,0.267,0.519 --122.51,47.02,0.279,0.626 --122.51,47.03,0.286,0.702 --122.51,47.04,0.299,0.82 --122.51,47.05,0.32,1.023 --122.51,47.06,0.328,1.098 --122.51,47.07,0.347,1.281 --122.51,47.08,0.368,1.484 --122.51,47.09,0.373,1.533 --122.51,47.10,0.394,1.737 --122.51,47.11,0.412,1.914 --122.51,47.12,0.424,2.022 --122.51,47.13,0.445,2.224 --122.51,47.14,0.457,2.338 --122.51,47.15,0.473,2.498 --122.51,47.16,0.493,2.686 --122.51,47.17,0.498,2.74 --122.51,47.18,0.516,2.908 --122.51,47.19,0.52,2.951 --122.51,47.20,0.525,2.998 --122.51,47.21,0.539,3.128 --122.51,47.22,0.54,3.139 --122.51,47.23,0.541,3.147 --122.51,47.24,0.54,3.141 --122.51,47.25,0.538,3.126 --122.51,47.26,0.537,3.109 --122.51,47.27,0.518,2.93 --122.51,47.28,0.515,2.9 --122.51,47.29,0.507,2.824 --122.51,47.30,0.493,2.693 --122.51,47.31,0.481,2.575 --122.51,47.32,0.471,2.481 --122.51,47.33,0.455,2.324 --122.51,47.34,0.45,2.273 --122.51,47.35,0.436,2.139 --122.51,47.36,0.43,2.086 --122.51,47.37,0.43,2.08 --122.51,47.38,0.411,1.903 --122.51,47.39,0.411,1.898 --122.51,47.40,0.41,1.895 --122.51,47.41,0.41,1.891 --122.51,47.42,0.41,1.888 --122.51,47.43,0.41,1.888 --122.51,47.44,0.411,1.898 --122.51,47.45,0.412,1.907 --122.51,47.46,0.413,1.916 --122.51,47.47,0.42,1.984 --122.51,47.48,0.435,2.127 --122.51,47.49,0.453,2.3 --122.51,47.50,0.471,2.475 --122.51,47.51,0.498,2.739 --122.51,47.52,0.519,2.935 --122.51,47.53,0.549,3.225 --122.51,47.54,0.573,3.463 --122.51,47.55,0.61,3.812 --122.51,47.56,0.641,4.113 --122.51,47.57,0.668,4.373 --122.51,47.58,0.693,4.61 --122.51,47.59,0.717,4.847 --122.51,47.60,0.742,5.085 --122.51,47.61,0.756,5.22 --122.51,47.62,0.778,5.428 --122.51,47.63,0.777,5.424 --122.51,47.64,0.776,5.416 --122.51,47.65,0.776,5.408 --122.51,47.66,0.775,5.399 --122.51,47.67,0.764,5.297 --122.51,47.68,0.753,5.194 --122.51,47.69,0.748,5.139 --122.51,47.70,0.732,4.986 --122.51,47.71,0.722,4.89 --122.51,47.72,0.71,4.772 --122.51,47.73,0.695,4.636 --122.51,47.74,0.673,4.417 --122.51,47.75,0.666,4.355 --122.51,47.76,0.646,4.161 --122.51,47.77,0.624,3.951 --122.51,47.78,0.619,3.899 --122.51,47.79,0.596,3.679 --122.51,47.80,0.591,3.634 --122.51,47.81,0.58,3.525 --122.51,47.82,0.569,3.418 --122.51,47.83,0.561,3.34 --122.51,47.84,0.56,3.337 --122.51,47.85,0.561,3.341 --122.51,47.86,0.562,3.352 --122.51,47.87,0.556,3.295 --122.51,47.88,0.557,3.304 --122.51,47.89,0.558,3.312 --122.51,47.90,0.558,3.316 --122.51,47.91,0.555,3.287 --122.51,47.92,0.546,3.197 --122.51,47.93,0.546,3.199 --122.51,47.94,0.546,3.2 --122.51,47.95,0.54,3.143 --122.51,47.96,0.54,3.143 --122.51,47.97,0.526,3.004 --122.51,47.98,0.525,2.997 --122.51,47.99,0.524,2.987 --122.51,48.00,0.523,2.978 --122.51,48.01,0.517,2.919 --122.51,48.02,0.516,2.912 --122.51,48.03,0.515,2.905 --122.51,48.04,0.515,2.902 --122.51,48.05,0.515,2.901 --122.51,48.06,0.519,2.94 --122.51,48.07,0.519,2.938 --122.51,48.08,0.52,2.947 --122.51,48.09,0.534,3.082 --122.51,48.10,0.534,3.084 --122.51,48.11,0.534,3.086 --122.51,48.12,0.534,3.087 --122.51,48.13,0.534,3.082 --122.51,48.14,0.52,2.948 --122.51,48.15,0.517,2.918 --122.51,48.16,0.513,2.881 --122.51,48.17,0.511,2.864 --122.51,48.18,0.492,2.682 --122.51,48.19,0.486,2.625 --122.51,48.20,0.472,2.483 --122.51,48.21,0.462,2.388 --122.51,48.22,0.451,2.288 --122.51,48.23,0.438,2.156 --122.51,48.24,0.415,1.943 --122.51,48.25,0.411,1.9 --122.51,48.26,0.389,1.69 --122.51,48.27,0.369,1.493 --122.51,48.28,0.362,1.433 --122.51,48.29,0.339,1.208 --122.51,48.30,0.325,1.074 --122.51,48.31,0.312,0.944 --122.51,48.32,0.304,0.867 --122.51,48.33,0.286,0.702 --122.51,48.34,0.283,0.665 --122.51,48.35,0.262,0.469 --122.51,48.36,0.259,0.442 --122.50,47.01,0.258,0.428 --122.50,47.02,0.276,0.606 --122.50,47.03,0.279,0.63 --122.50,47.04,0.291,0.746 --122.50,47.05,0.306,0.886 --122.50,47.06,0.322,1.042 --122.50,47.07,0.332,1.143 --122.50,47.08,0.353,1.34 --122.50,47.09,0.37,1.505 --122.50,47.10,0.38,1.602 --122.50,47.11,0.397,1.762 --122.50,47.12,0.418,1.969 --122.50,47.13,0.432,2.098 --122.50,47.14,0.448,2.252 --122.50,47.15,0.462,2.388 --122.50,47.16,0.481,2.569 --122.50,47.17,0.496,2.714 --122.50,47.18,0.504,2.794 --122.50,47.19,0.517,2.919 --122.50,47.20,0.525,2.999 --122.50,47.21,0.528,3.029 --122.50,47.22,0.54,3.141 --122.50,47.23,0.541,3.152 --122.50,47.24,0.54,3.144 --122.50,47.25,0.539,3.128 --122.50,47.26,0.526,3.005 --122.50,47.27,0.516,2.911 --122.50,47.28,0.515,2.896 --122.50,47.29,0.497,2.724 --122.50,47.30,0.493,2.687 --122.50,47.31,0.472,2.491 --122.50,47.32,0.471,2.475 --122.50,47.33,0.454,2.316 --122.50,47.34,0.449,2.266 --122.50,47.35,0.43,2.086 --122.50,47.36,0.43,2.081 --122.50,47.37,0.425,2.035 --122.50,47.38,0.411,1.899 --122.50,47.39,0.41,1.895 --122.50,47.40,0.41,1.892 --122.50,47.41,0.41,1.889 --122.50,47.42,0.41,1.887 --122.50,47.43,0.41,1.888 --122.50,47.44,0.411,1.896 --122.50,47.45,0.412,1.905 --122.50,47.46,0.412,1.913 --122.50,47.47,0.427,2.053 --122.50,47.48,0.441,2.19 --122.50,47.49,0.452,2.297 --122.50,47.50,0.484,2.605 --122.50,47.51,0.505,2.809 --122.50,47.52,0.526,3.006 --122.50,47.53,0.556,3.294 --122.50,47.54,0.583,3.553 --122.50,47.55,0.619,3.897 --122.50,47.56,0.65,4.202 --122.50,47.57,0.675,4.442 --122.50,47.58,0.7,4.678 --122.50,47.59,0.724,4.913 --122.50,47.60,0.749,5.15 --122.50,47.61,0.772,5.37 --122.50,47.62,0.788,5.523 --122.50,47.63,0.787,5.516 --122.50,47.64,0.786,5.509 --122.50,47.65,0.785,5.502 --122.50,47.66,0.776,5.416 --122.50,47.67,0.769,5.347 --122.50,47.68,0.768,5.335 --122.50,47.69,0.748,5.142 --122.50,47.70,0.745,5.109 --122.50,47.71,0.726,4.929 --122.50,47.72,0.718,4.857 --122.50,47.73,0.696,4.638 --122.50,47.74,0.683,4.512 --122.50,47.75,0.669,4.383 --122.50,47.76,0.646,4.163 --122.50,47.77,0.639,4.09 --122.50,47.78,0.619,3.903 --122.50,47.79,0.597,3.687 --122.50,47.80,0.593,3.647 --122.50,47.81,0.59,3.626 --122.50,47.82,0.576,3.487 --122.50,47.83,0.576,3.485 --122.50,47.84,0.573,3.46 --122.50,47.85,0.574,3.467 --122.50,47.86,0.563,3.365 --122.50,47.87,0.559,3.326 --122.50,47.88,0.56,3.333 --122.50,47.89,0.561,3.339 --122.50,47.90,0.561,3.341 --122.50,47.91,0.561,3.343 --122.50,47.92,0.561,3.344 --122.50,47.93,0.56,3.334 --122.50,47.94,0.551,3.242 --122.50,47.95,0.542,3.162 --122.50,47.96,0.542,3.161 --122.50,47.97,0.541,3.154 --122.50,47.98,0.54,3.145 --122.50,47.99,0.539,3.134 --122.50,48.00,0.535,3.091 --122.50,48.01,0.518,2.928 --122.50,48.02,0.517,2.919 --122.50,48.03,0.516,2.913 --122.50,48.04,0.516,2.91 --122.50,48.05,0.529,3.035 --122.50,48.06,0.534,3.083 --122.50,48.07,0.534,3.081 --122.50,48.08,0.535,3.089 --122.50,48.09,0.535,3.091 --122.50,48.10,0.535,3.093 --122.50,48.11,0.535,3.094 --122.50,48.12,0.535,3.095 --122.50,48.13,0.535,3.09 --122.50,48.14,0.532,3.068 --122.50,48.15,0.518,2.927 --122.50,48.16,0.514,2.887 --122.50,48.17,0.512,2.869 --122.50,48.18,0.493,2.686 --122.50,48.19,0.487,2.628 --122.50,48.20,0.472,2.485 --122.50,48.21,0.462,2.388 --122.50,48.22,0.451,2.287 --122.50,48.23,0.437,2.153 --122.50,48.24,0.415,1.939 --122.50,48.25,0.411,1.896 --122.50,48.26,0.389,1.686 --122.50,48.27,0.368,1.49 --122.50,48.28,0.362,1.43 --122.50,48.29,0.339,1.206 --122.50,48.30,0.32,1.021 --122.50,48.31,0.304,0.874 --122.50,48.32,0.294,0.776 --122.50,48.33,0.283,0.671 --122.50,48.34,0.269,0.535 --122.50,48.35,0.262,0.47 --122.50,48.36,0.259,0.441 --122.49,47.01,0.258,0.428 --122.49,47.02,0.263,0.478 --122.49,47.03,0.279,0.628 --122.49,47.04,0.28,0.641 --122.49,47.05,0.296,0.789 --122.49,47.06,0.312,0.95 --122.49,47.07,0.324,1.061 --122.49,47.08,0.338,1.196 --122.49,47.09,0.358,1.386 --122.49,47.10,0.372,1.526 --122.49,47.11,0.388,1.674 --122.49,47.12,0.402,1.814 --122.49,47.13,0.424,2.024 --122.49,47.14,0.445,2.229 --122.49,47.15,0.45,2.279 --122.49,47.16,0.473,2.493 --122.49,47.17,0.488,2.636 --122.49,47.18,0.499,2.744 --122.49,47.19,0.51,2.852 --122.49,47.20,0.518,2.931 --122.49,47.21,0.529,3.032 --122.49,47.22,0.534,3.081 --122.49,47.23,0.535,3.097 --122.49,47.24,0.541,3.148 --122.49,47.25,0.534,3.087 --122.49,47.26,0.518,2.925 --122.49,47.27,0.516,2.908 --122.49,47.28,0.51,2.848 --122.49,47.29,0.494,2.696 --122.49,47.30,0.483,2.597 --122.49,47.31,0.472,2.485 --122.49,47.32,0.47,2.469 --122.49,47.33,0.45,2.271 --122.49,47.34,0.448,2.258 --122.49,47.35,0.43,2.08 --122.49,47.36,0.429,2.075 --122.49,47.37,0.425,2.03 --122.49,47.38,0.41,1.895 --122.49,47.39,0.41,1.892 --122.49,47.40,0.41,1.89 --122.49,47.41,0.41,1.887 --122.49,47.42,0.409,1.885 --122.49,47.43,0.41,1.887 --122.49,47.44,0.41,1.895 --122.49,47.45,0.411,1.903 --122.49,47.46,0.416,1.951 --122.49,47.47,0.432,2.099 --122.49,47.48,0.441,2.187 --122.49,47.49,0.463,2.397 --122.49,47.50,0.484,2.606 --122.49,47.51,0.506,2.811 --122.49,47.52,0.528,3.029 --122.49,47.53,0.569,3.419 --122.49,47.54,0.594,3.661 --122.49,47.55,0.625,3.961 --122.49,47.56,0.664,4.338 --122.49,47.57,0.691,4.595 --122.49,47.58,0.716,4.831 --122.49,47.59,0.74,5.067 --122.49,47.60,0.765,5.303 --122.49,47.61,0.787,5.518 --122.49,47.62,0.789,5.533 --122.49,47.63,0.788,5.527 --122.49,47.64,0.787,5.518 --122.49,47.65,0.786,5.509 --122.49,47.66,0.785,5.5 --122.49,47.67,0.784,5.488 --122.49,47.68,0.77,5.358 --122.49,47.69,0.762,5.281 --122.49,47.70,0.745,5.112 --122.49,47.71,0.74,5.069 --122.49,47.72,0.719,4.859 --122.49,47.73,0.699,4.669 --122.49,47.74,0.692,4.604 --122.49,47.75,0.669,4.385 --122.49,47.76,0.655,4.25 --122.49,47.77,0.642,4.126 --122.49,47.78,0.62,3.906 --122.49,47.79,0.611,3.827 --122.49,47.80,0.593,3.653 --122.49,47.81,0.591,3.634 --122.49,47.82,0.591,3.63 --122.49,47.83,0.587,3.596 --122.49,47.84,0.575,3.474 --122.49,47.85,0.575,3.481 --122.49,47.86,0.574,3.468 --122.49,47.87,0.575,3.477 --122.49,47.88,0.576,3.484 --122.49,47.89,0.576,3.49 --122.49,47.90,0.576,3.491 --122.49,47.91,0.576,3.492 --122.49,47.92,0.574,3.471 --122.49,47.93,0.561,3.343 --122.49,47.94,0.557,3.309 --122.49,47.95,0.557,3.306 --122.49,47.96,0.547,3.212 --122.49,47.97,0.543,3.168 --122.49,47.98,0.542,3.159 --122.49,47.99,0.54,3.145 --122.49,48.00,0.536,3.1 --122.49,48.01,0.533,3.076 --122.49,48.02,0.532,3.065 --122.49,48.03,0.531,3.055 --122.49,48.04,0.531,3.051 --122.49,48.05,0.536,3.098 --122.49,48.06,0.535,3.097 --122.49,48.07,0.535,3.097 --122.49,48.08,0.536,3.098 --122.49,48.09,0.536,3.1 --122.49,48.10,0.536,3.101 --122.49,48.11,0.536,3.102 --122.49,48.12,0.536,3.102 --122.49,48.13,0.536,3.098 --122.49,48.14,0.535,3.091 --122.49,48.15,0.527,3.02 --122.49,48.16,0.515,2.904 --122.49,48.17,0.512,2.874 --122.49,48.18,0.505,2.804 --122.49,48.19,0.487,2.63 --122.49,48.20,0.484,2.598 --122.49,48.21,0.462,2.388 --122.49,48.22,0.451,2.287 --122.49,48.23,0.437,2.15 --122.49,48.24,0.415,1.934 --122.49,48.25,0.4,1.795 --122.49,48.26,0.388,1.682 --122.49,48.27,0.368,1.488 --122.49,48.28,0.351,1.321 --122.49,48.29,0.339,1.204 --122.49,48.30,0.316,0.982 --122.49,48.31,0.304,0.874 --122.49,48.32,0.29,0.734 --122.49,48.33,0.283,0.672 --122.49,48.34,0.264,0.49 --122.49,48.35,0.262,0.47 --122.48,47.02,0.26,0.451 --122.48,47.03,0.268,0.526 --122.48,47.04,0.28,0.636 --122.48,47.05,0.282,0.657 --122.48,47.06,0.3,0.832 --122.48,47.07,0.319,1.014 --122.48,47.08,0.326,1.079 --122.48,47.09,0.345,1.261 --122.48,47.10,0.362,1.43 --122.48,47.11,0.375,1.551 --122.48,47.12,0.396,1.753 --122.48,47.13,0.42,1.986 --122.48,47.14,0.43,2.081 --122.48,47.15,0.45,2.272 --122.48,47.16,0.47,2.464 --122.48,47.17,0.476,2.522 --122.48,47.18,0.493,2.692 --122.48,47.19,0.502,2.778 --122.48,47.20,0.516,2.911 --122.48,47.21,0.519,2.942 --122.48,47.22,0.521,2.954 --122.48,47.23,0.536,3.103 --122.48,47.24,0.54,3.137 --122.48,47.25,0.52,2.944 --122.48,47.26,0.517,2.924 --122.48,47.27,0.516,2.906 --122.48,47.28,0.509,2.843 --122.48,47.29,0.493,2.691 --122.48,47.30,0.483,2.59 --122.48,47.31,0.471,2.479 --122.48,47.32,0.456,2.337 --122.48,47.33,0.449,2.263 --122.48,47.34,0.447,2.251 --122.48,47.35,0.429,2.073 --122.48,47.36,0.429,2.069 --122.48,47.37,0.424,2.024 --122.48,47.38,0.41,1.891 --122.48,47.39,0.41,1.889 --122.48,47.40,0.41,1.887 --122.48,47.41,0.409,1.885 --122.48,47.42,0.409,1.884 --122.48,47.43,0.41,1.886 --122.48,47.44,0.41,1.893 --122.48,47.45,0.411,1.9 --122.48,47.46,0.416,1.949 --122.48,47.47,0.431,2.095 --122.48,47.48,0.441,2.185 --122.48,47.49,0.463,2.396 --122.48,47.50,0.484,2.607 --122.48,47.51,0.518,2.93 --122.48,47.52,0.542,3.164 --122.48,47.53,0.569,3.424 --122.48,47.54,0.594,3.665 --122.48,47.55,0.639,4.097 --122.48,47.56,0.668,4.377 --122.48,47.57,0.707,4.75 --122.48,47.58,0.732,4.985 --122.48,47.59,0.756,5.221 --122.48,47.60,0.78,5.453 --122.48,47.61,0.789,5.537 --122.48,47.62,0.804,5.68 --122.48,47.63,0.803,5.672 --122.48,47.64,0.802,5.663 --122.48,47.65,0.801,5.653 --122.48,47.66,0.796,5.607 --122.48,47.67,0.784,5.493 --122.48,47.68,0.778,5.435 --122.48,47.69,0.768,5.331 --122.48,47.70,0.757,5.226 --122.48,47.71,0.742,5.08 --122.48,47.72,0.719,4.861 --122.48,47.73,0.713,4.81 --122.48,47.74,0.692,4.607 --122.48,47.75,0.672,4.409 --122.48,47.76,0.666,4.35 --122.48,47.77,0.643,4.129 --122.48,47.78,0.628,3.986 --122.48,47.79,0.616,3.871 --122.48,47.80,0.606,3.772 --122.48,47.81,0.606,3.773 --122.48,47.82,0.594,3.66 --122.48,47.83,0.589,3.608 --122.48,47.84,0.588,3.6 --122.48,47.85,0.588,3.607 --122.48,47.86,0.59,3.618 --122.48,47.87,0.591,3.628 --122.48,47.88,0.583,3.551 --122.48,47.89,0.581,3.531 --122.48,47.90,0.581,3.533 --122.48,47.91,0.581,3.534 --122.48,47.92,0.575,3.48 --122.48,47.93,0.573,3.456 --122.48,47.94,0.571,3.442 --122.48,47.95,0.562,3.353 --122.48,47.96,0.554,3.271 --122.48,47.97,0.554,3.271 --122.48,47.98,0.544,3.183 --122.48,47.99,0.542,3.16 --122.48,48.00,0.541,3.146 --122.48,48.01,0.539,3.133 --122.48,48.02,0.538,3.121 --122.48,48.03,0.537,3.113 --122.48,48.04,0.537,3.109 --122.48,48.05,0.536,3.107 --122.48,48.06,0.536,3.105 --122.48,48.07,0.536,3.105 --122.48,48.08,0.536,3.107 --122.48,48.09,0.545,3.185 --122.48,48.10,0.545,3.185 --122.48,48.11,0.545,3.185 --122.48,48.12,0.544,3.184 --122.48,48.13,0.543,3.174 --122.48,48.14,0.536,3.099 --122.48,48.15,0.535,3.091 --122.48,48.16,0.522,2.971 --122.48,48.17,0.514,2.889 --122.48,48.18,0.509,2.846 --122.48,48.19,0.492,2.682 --122.48,48.20,0.484,2.6 --122.48,48.21,0.462,2.388 --122.48,48.22,0.451,2.286 --122.48,48.23,0.437,2.147 --122.48,48.24,0.414,1.93 --122.48,48.25,0.391,1.709 --122.48,48.26,0.388,1.677 --122.48,48.27,0.365,1.455 --122.48,48.28,0.347,1.285 --122.48,48.29,0.333,1.147 --122.48,48.30,0.315,0.98 --122.48,48.31,0.304,0.875 --122.48,48.32,0.29,0.733 --122.48,48.33,0.283,0.672 --122.48,48.34,0.264,0.489 --122.48,48.35,0.262,0.471 --122.47,47.02,0.252,0.373 --122.47,47.03,0.263,0.472 --122.47,47.04,0.273,0.573 --122.47,47.05,0.28,0.641 --122.47,47.06,0.284,0.678 --122.47,47.07,0.303,0.863 --122.47,47.08,0.324,1.066 --122.47,47.09,0.328,1.106 --122.47,47.10,0.35,1.312 --122.47,47.11,0.367,1.478 --122.47,47.12,0.379,1.596 --122.47,47.13,0.404,1.832 --122.47,47.14,0.426,2.046 --122.47,47.15,0.435,2.133 --122.47,47.16,0.455,2.32 --122.47,47.17,0.475,2.518 --122.47,47.18,0.479,2.553 --122.47,47.19,0.499,2.75 --122.47,47.20,0.506,2.81 --122.47,47.21,0.519,2.939 --122.47,47.22,0.52,2.951 --122.47,47.23,0.525,2.994 --122.47,47.24,0.524,2.987 --122.47,47.25,0.519,2.939 --122.47,47.26,0.517,2.922 --122.47,47.27,0.515,2.903 --122.47,47.28,0.508,2.837 --122.47,47.29,0.493,2.686 --122.47,47.30,0.482,2.584 --122.47,47.31,0.471,2.474 --122.47,47.32,0.456,2.33 --122.47,47.33,0.448,2.256 --122.47,47.34,0.447,2.243 --122.47,47.35,0.428,2.066 --122.47,47.36,0.428,2.064 --122.47,47.37,0.423,2.019 --122.47,47.38,0.41,1.889 --122.47,47.39,0.41,1.887 --122.47,47.40,0.41,1.886 --122.47,47.41,0.409,1.885 --122.47,47.42,0.409,1.884 --122.47,47.43,0.41,1.886 --122.47,47.44,0.41,1.893 --122.47,47.45,0.411,1.899 --122.47,47.46,0.428,2.067 --122.47,47.47,0.431,2.093 --122.47,47.48,0.453,2.301 --122.47,47.49,0.475,2.515 --122.47,47.50,0.497,2.724 --122.47,47.51,0.525,2.996 --122.47,47.52,0.545,3.192 --122.47,47.53,0.581,3.538 --122.47,47.54,0.609,3.805 --122.47,47.55,0.64,4.103 --122.47,47.56,0.685,4.532 --122.47,47.57,0.712,4.791 --122.47,47.58,0.736,5.028 --122.47,47.59,0.761,5.265 --122.47,47.60,0.785,5.497 --122.47,47.61,0.798,5.625 --122.47,47.62,0.809,5.725 --122.47,47.63,0.808,5.717 --122.47,47.64,0.807,5.709 --122.47,47.65,0.806,5.701 --122.47,47.66,0.797,5.611 --122.47,47.67,0.794,5.58 --122.47,47.68,0.784,5.486 --122.47,47.69,0.768,5.335 --122.47,47.70,0.762,5.28 --122.47,47.71,0.742,5.084 --122.47,47.72,0.73,4.968 --122.47,47.73,0.715,4.828 --122.47,47.74,0.693,4.609 --122.47,47.75,0.686,4.55 --122.47,47.76,0.666,4.352 --122.47,47.77,0.651,4.21 --122.47,47.78,0.639,4.094 --122.47,47.79,0.622,3.927 --122.47,47.80,0.613,3.844 --122.47,47.81,0.611,3.828 --122.47,47.82,0.602,3.741 --122.47,47.83,0.603,3.744 --122.47,47.84,0.596,3.68 --122.47,47.85,0.597,3.69 --122.47,47.86,0.598,3.702 --122.47,47.87,0.599,3.713 --122.47,47.88,0.588,3.599 --122.47,47.89,0.588,3.603 --122.47,47.90,0.588,3.602 --122.47,47.91,0.588,3.601 --122.47,47.92,0.582,3.542 --122.47,47.93,0.582,3.543 --122.47,47.94,0.572,3.448 --122.47,47.95,0.568,3.413 --122.47,47.96,0.563,3.36 --122.47,47.97,0.563,3.358 --122.47,47.98,0.549,3.23 --122.47,47.99,0.547,3.209 --122.47,48.00,0.545,3.193 --122.47,48.01,0.54,3.142 --122.47,48.02,0.539,3.13 --122.47,48.03,0.538,3.121 --122.47,48.04,0.538,3.117 --122.47,48.05,0.537,3.115 --122.47,48.06,0.541,3.148 --122.47,48.07,0.541,3.148 --122.47,48.08,0.542,3.16 --122.47,48.09,0.556,3.292 --122.47,48.10,0.556,3.294 --122.47,48.11,0.556,3.295 --122.47,48.12,0.556,3.295 --122.47,48.13,0.544,3.181 --122.47,48.14,0.539,3.132 --122.47,48.15,0.536,3.099 --122.47,48.16,0.535,3.09 --122.47,48.17,0.514,2.894 --122.47,48.18,0.51,2.85 --122.47,48.19,0.493,2.686 --122.47,48.20,0.484,2.602 --122.47,48.21,0.462,2.387 --122.47,48.22,0.451,2.286 --122.47,48.23,0.435,2.13 --122.47,48.24,0.414,1.926 --122.47,48.25,0.391,1.705 --122.47,48.26,0.386,1.663 --122.47,48.27,0.364,1.452 --122.47,48.28,0.341,1.231 --122.47,48.29,0.326,1.083 --122.47,48.30,0.315,0.979 --122.47,48.31,0.304,0.875 --122.47,48.32,0.289,0.731 --122.47,48.33,0.283,0.672 --122.47,48.34,0.264,0.488 --122.47,48.35,0.262,0.466 --122.46,47.03,0.257,0.422 --122.46,47.04,0.265,0.494 --122.46,47.05,0.275,0.596 --122.46,47.06,0.281,0.651 --122.46,47.07,0.289,0.725 --122.46,47.08,0.309,0.919 --122.46,47.09,0.327,1.088 --122.46,47.10,0.336,1.176 --122.46,47.11,0.353,1.342 --122.46,47.12,0.377,1.575 --122.46,47.13,0.402,1.809 --122.46,47.14,0.418,1.967 --122.46,47.15,0.429,2.076 --122.46,47.16,0.452,2.296 --122.46,47.17,0.462,2.388 --122.46,47.18,0.479,2.551 --122.46,47.19,0.497,2.723 --122.46,47.20,0.505,2.808 --122.46,47.21,0.519,2.937 --122.46,47.22,0.52,2.949 --122.46,47.23,0.521,2.958 --122.46,47.24,0.52,2.952 --122.46,47.25,0.519,2.938 --122.46,47.26,0.517,2.921 --122.46,47.27,0.515,2.902 --122.46,47.28,0.508,2.836 --122.46,47.29,0.493,2.685 --122.46,47.30,0.482,2.583 --122.46,47.31,0.471,2.474 --122.46,47.32,0.456,2.329 --122.46,47.33,0.448,2.256 --122.46,47.34,0.447,2.244 --122.46,47.35,0.428,2.067 --122.46,47.36,0.428,2.066 --122.46,47.37,0.424,2.021 --122.46,47.38,0.41,1.89 --122.46,47.39,0.41,1.889 --122.46,47.40,0.41,1.888 --122.46,47.41,0.41,1.887 --122.46,47.42,0.41,1.886 --122.46,47.43,0.41,1.888 --122.46,47.44,0.41,1.894 --122.46,47.45,0.421,1.999 --122.46,47.46,0.43,2.085 --122.46,47.47,0.445,2.229 --122.46,47.48,0.46,2.367 --122.46,47.49,0.482,2.582 --122.46,47.50,0.504,2.793 --122.46,47.51,0.528,3.03 --122.46,47.52,0.552,3.259 --122.46,47.53,0.59,3.618 --122.46,47.54,0.622,3.932 --122.46,47.55,0.653,4.224 --122.46,47.56,0.694,4.623 --122.46,47.57,0.719,4.865 --122.46,47.58,0.744,5.099 --122.46,47.59,0.768,5.333 --122.46,47.60,0.792,5.562 --122.46,47.61,0.813,5.772 --122.46,47.62,0.815,5.784 --122.46,47.63,0.814,5.775 --122.46,47.64,0.813,5.765 --122.46,47.65,0.812,5.756 --122.46,47.66,0.811,5.746 --122.46,47.67,0.794,5.584 --122.46,47.68,0.789,5.537 --122.46,47.69,0.769,5.342 --122.46,47.70,0.765,5.306 --122.46,47.71,0.747,5.128 --122.46,47.72,0.739,5.051 --122.46,47.73,0.72,4.869 --122.46,47.74,0.703,4.709 --122.46,47.75,0.689,4.576 --122.46,47.76,0.68,4.49 --122.46,47.77,0.662,4.318 --122.46,47.78,0.639,4.098 --122.46,47.79,0.636,4.061 --122.46,47.80,0.616,3.876 --122.46,47.81,0.614,3.854 --122.46,47.82,0.615,3.86 --122.46,47.83,0.609,3.808 --122.46,47.84,0.599,3.713 --122.46,47.85,0.6,3.72 --122.46,47.86,0.601,3.73 --122.46,47.87,0.6,3.72 --122.46,47.88,0.601,3.729 --122.46,47.89,0.602,3.734 --122.46,47.90,0.602,3.733 --122.46,47.91,0.597,3.694 --122.46,47.92,0.583,3.556 --122.46,47.93,0.583,3.555 --122.46,47.94,0.582,3.544 --122.46,47.95,0.57,3.426 --122.46,47.96,0.563,3.365 --122.46,47.97,0.562,3.357 --122.46,47.98,0.56,3.338 --122.46,47.99,0.559,3.32 --122.46,48.00,0.554,3.279 --122.46,48.01,0.54,3.144 --122.46,48.02,0.539,3.133 --122.46,48.03,0.538,3.126 --122.46,48.04,0.538,3.122 --122.46,48.05,0.55,3.241 --122.46,48.06,0.555,3.284 --122.46,48.07,0.555,3.285 --122.46,48.08,0.556,3.298 --122.46,48.09,0.557,3.3 --122.46,48.10,0.557,3.301 --122.46,48.11,0.557,3.303 --122.46,48.12,0.557,3.303 --122.46,48.13,0.554,3.28 --122.46,48.14,0.542,3.16 --122.46,48.15,0.536,3.106 --122.46,48.16,0.536,3.098 --122.46,48.17,0.515,2.899 --122.46,48.18,0.51,2.854 --122.46,48.19,0.493,2.689 --122.46,48.20,0.484,2.604 --122.46,48.21,0.462,2.387 --122.46,48.22,0.443,2.203 --122.46,48.23,0.431,2.091 --122.46,48.24,0.413,1.923 --122.46,48.25,0.39,1.701 --122.46,48.26,0.371,1.517 --122.46,48.27,0.364,1.449 --122.46,48.28,0.341,1.228 --122.46,48.29,0.326,1.081 --122.46,48.30,0.315,0.978 --122.46,48.31,0.297,0.805 --122.46,48.32,0.284,0.678 --122.46,48.33,0.283,0.672 --122.46,48.34,0.264,0.488 --122.45,47.03,0.242,0.275 --122.45,47.04,0.262,0.47 --122.45,47.05,0.267,0.516 --122.45,47.06,0.278,0.618 --122.45,47.07,0.282,0.662 --122.45,47.08,0.295,0.784 --122.45,47.09,0.314,0.965 --122.45,47.10,0.329,1.112 --122.45,47.11,0.352,1.337 --122.45,47.12,0.368,1.487 --122.45,47.13,0.393,1.723 --122.45,47.14,0.405,1.845 --122.45,47.15,0.429,2.072 --122.45,47.16,0.445,2.228 --122.45,47.17,0.455,2.328 --122.45,47.18,0.478,2.549 --122.45,47.19,0.489,2.648 --122.45,47.20,0.505,2.807 --122.45,47.21,0.511,2.864 --122.45,47.22,0.52,2.946 --122.45,47.23,0.521,2.955 --122.45,47.24,0.52,2.949 --122.45,47.25,0.519,2.936 --122.45,47.26,0.517,2.92 --122.45,47.27,0.515,2.903 --122.45,47.28,0.508,2.837 --122.45,47.29,0.493,2.687 --122.45,47.30,0.482,2.584 --122.45,47.31,0.471,2.476 --122.45,47.32,0.456,2.33 --122.45,47.33,0.448,2.26 --122.45,47.34,0.447,2.248 --122.45,47.35,0.429,2.072 --122.45,47.36,0.429,2.07 --122.45,47.37,0.424,2.025 --122.45,47.38,0.415,1.935 --122.45,47.39,0.41,1.893 --122.45,47.40,0.41,1.892 --122.45,47.41,0.41,1.89 --122.45,47.42,0.41,1.89 --122.45,47.43,0.41,1.891 --122.45,47.44,0.415,1.934 --122.45,47.45,0.43,2.079 --122.45,47.46,0.435,2.13 --122.45,47.47,0.45,2.271 --122.45,47.48,0.463,2.396 --122.45,47.49,0.482,2.583 --122.45,47.50,0.504,2.795 --122.45,47.51,0.543,3.169 --122.45,47.52,0.564,3.37 --122.45,47.53,0.593,3.655 --122.45,47.54,0.636,4.066 --122.45,47.55,0.669,4.383 --122.45,47.56,0.709,4.763 --122.45,47.57,0.734,5.005 --122.45,47.58,0.76,5.254 --122.45,47.59,0.783,5.483 --122.45,47.60,0.807,5.71 --122.45,47.61,0.829,5.919 --122.45,47.62,0.829,5.921 --122.45,47.63,0.829,5.919 --122.45,47.64,0.828,5.91 --122.45,47.65,0.826,5.896 --122.45,47.66,0.817,5.804 --122.45,47.67,0.805,5.693 --122.45,47.68,0.791,5.558 --122.45,47.69,0.784,5.484 --122.45,47.70,0.766,5.311 --122.45,47.71,0.761,5.271 --122.45,47.72,0.741,5.07 --122.45,47.73,0.734,5.012 --122.45,47.74,0.712,4.8 --122.45,47.75,0.697,4.651 --122.45,47.76,0.686,4.544 --122.45,47.77,0.663,4.323 --122.45,47.78,0.653,4.229 --122.45,47.79,0.636,4.068 --122.45,47.80,0.631,4.017 --122.45,47.81,0.615,3.861 --122.45,47.82,0.615,3.866 --122.45,47.83,0.614,3.849 --122.45,47.84,0.614,3.854 --122.45,47.85,0.615,3.861 --122.45,47.86,0.606,3.776 --122.45,47.87,0.6,3.722 --122.45,47.88,0.601,3.73 --122.45,47.89,0.602,3.734 --122.45,47.90,0.602,3.733 --122.45,47.91,0.598,3.697 --122.45,47.92,0.598,3.695 --122.45,47.93,0.593,3.651 --122.45,47.94,0.582,3.543 --122.45,47.95,0.577,3.5 --122.45,47.96,0.567,3.401 --122.45,47.97,0.562,3.354 --122.45,47.98,0.56,3.335 --122.45,47.99,0.559,3.319 --122.45,48.00,0.554,3.28 --122.45,48.01,0.552,3.261 --122.45,48.02,0.552,3.253 --122.45,48.03,0.551,3.248 --122.45,48.04,0.551,3.246 --122.45,48.05,0.556,3.297 --122.45,48.06,0.556,3.299 --122.45,48.07,0.557,3.301 --122.45,48.08,0.557,3.304 --122.45,48.09,0.557,3.306 --122.45,48.10,0.557,3.307 --122.45,48.11,0.557,3.308 --122.45,48.12,0.557,3.308 --122.45,48.13,0.557,3.305 --122.45,48.14,0.549,3.232 --122.45,48.15,0.54,3.139 --122.45,48.16,0.536,3.104 --122.45,48.17,0.515,2.904 --122.45,48.18,0.511,2.858 --122.45,48.19,0.493,2.692 --122.45,48.20,0.484,2.605 --122.45,48.21,0.462,2.387 --122.45,48.22,0.439,2.17 --122.45,48.23,0.431,2.09 --122.45,48.24,0.413,1.92 --122.45,48.25,0.39,1.697 --122.45,48.26,0.368,1.487 --122.45,48.27,0.364,1.445 --122.45,48.28,0.341,1.225 --122.45,48.29,0.326,1.08 --122.45,48.30,0.305,0.88 --122.45,48.31,0.292,0.756 --122.45,48.32,0.284,0.677 --122.45,48.33,0.277,0.611 --122.45,48.34,0.263,0.476 --122.44,47.04,0.247,0.319 --122.44,47.05,0.267,0.516 --122.44,47.06,0.27,0.539 --122.44,47.07,0.28,0.64 --122.44,47.08,0.284,0.68 --122.44,47.09,0.306,0.893 --122.44,47.10,0.325,1.068 --122.44,47.11,0.34,1.217 --122.44,47.12,0.356,1.374 --122.44,47.13,0.381,1.608 --122.44,47.14,0.405,1.84 --122.44,47.15,0.425,2.035 --122.44,47.16,0.432,2.104 --122.44,47.17,0.455,2.325 --122.44,47.18,0.475,2.514 --122.44,47.19,0.482,2.582 --122.44,47.20,0.497,2.73 --122.44,47.21,0.508,2.836 --122.44,47.22,0.519,2.943 --122.44,47.23,0.52,2.952 --122.44,47.24,0.52,2.947 --122.44,47.25,0.519,2.935 --122.44,47.26,0.517,2.92 --122.44,47.27,0.515,2.903 --122.44,47.28,0.508,2.837 --122.44,47.29,0.493,2.689 --122.44,47.30,0.482,2.585 --122.44,47.31,0.471,2.478 --122.44,47.32,0.456,2.332 --122.44,47.33,0.449,2.268 --122.44,47.34,0.448,2.253 --122.44,47.35,0.43,2.078 --122.44,47.36,0.429,2.075 --122.44,47.37,0.429,2.074 --122.44,47.38,0.422,2.008 --122.44,47.39,0.411,1.897 --122.44,47.40,0.411,1.896 --122.44,47.41,0.41,1.894 --122.44,47.42,0.41,1.893 --122.44,47.43,0.41,1.894 --122.44,47.44,0.429,2.071 --122.44,47.45,0.43,2.081 --122.44,47.46,0.435,2.131 --122.44,47.47,0.455,2.323 --122.44,47.48,0.47,2.466 --122.44,47.49,0.482,2.584 --122.44,47.50,0.515,2.904 --122.44,47.51,0.545,3.187 --122.44,47.52,0.566,3.393 --122.44,47.53,0.609,3.809 --122.44,47.54,0.638,4.079 --122.44,47.55,0.684,4.525 --122.44,47.56,0.71,4.773 --122.44,47.57,0.741,5.072 --122.44,47.58,0.776,5.408 --122.44,47.59,0.799,5.634 --122.44,47.60,0.823,5.859 --122.44,47.61,0.83,5.932 --122.44,47.62,0.829,5.925 --122.44,47.63,0.844,6.064 --122.44,47.64,0.843,6.051 --122.44,47.65,0.827,5.901 --122.44,47.66,0.822,5.849 --122.44,47.67,0.814,5.778 --122.44,47.68,0.8,5.641 --122.44,47.69,0.789,5.532 --122.44,47.70,0.778,5.432 --122.44,47.71,0.763,5.282 --122.44,47.72,0.756,5.215 --122.44,47.73,0.736,5.025 --122.44,47.74,0.714,4.811 --122.44,47.75,0.709,4.769 --122.44,47.76,0.686,4.549 --122.44,47.77,0.67,4.392 --122.44,47.78,0.66,4.292 --122.44,47.79,0.647,4.173 --122.44,47.80,0.634,4.044 --122.44,47.81,0.628,3.984 --122.44,47.82,0.628,3.987 --122.44,47.83,0.617,3.877 --122.44,47.84,0.617,3.882 --122.44,47.85,0.618,3.89 --122.44,47.86,0.611,3.827 --122.44,47.87,0.612,3.835 --122.44,47.88,0.613,3.842 --122.44,47.89,0.613,3.844 --122.44,47.90,0.602,3.734 --122.44,47.91,0.601,3.732 --122.44,47.92,0.601,3.731 --122.44,47.93,0.593,3.65 --122.44,47.94,0.591,3.627 --122.44,47.95,0.581,3.537 --122.44,47.96,0.572,3.447 --122.44,47.97,0.571,3.437 --122.44,47.98,0.56,3.336 --122.44,47.99,0.559,3.319 --122.44,48.00,0.558,3.312 --122.44,48.01,0.557,3.306 --122.44,48.02,0.557,3.301 --122.44,48.03,0.556,3.299 --122.44,48.04,0.557,3.301 --122.44,48.05,0.557,3.303 --122.44,48.06,0.557,3.304 --122.44,48.07,0.557,3.307 --122.44,48.08,0.558,3.31 --122.44,48.09,0.565,3.384 --122.44,48.10,0.565,3.384 --122.44,48.11,0.565,3.385 --122.44,48.12,0.558,3.314 --122.44,48.13,0.558,3.31 --122.44,48.14,0.557,3.304 --122.44,48.15,0.54,3.144 --122.44,48.16,0.537,3.11 --122.44,48.17,0.523,2.975 --122.44,48.18,0.511,2.861 --122.44,48.19,0.494,2.695 --122.44,48.20,0.484,2.606 --122.44,48.21,0.462,2.387 --122.44,48.22,0.439,2.168 --122.44,48.23,0.431,2.088 --122.44,48.24,0.413,1.917 --122.44,48.25,0.39,1.694 --122.44,48.26,0.368,1.484 --122.44,48.27,0.358,1.39 --122.44,48.28,0.34,1.221 --122.44,48.29,0.318,1.001 --122.44,48.30,0.305,0.878 --122.44,48.31,0.292,0.753 --122.44,48.32,0.284,0.675 --122.44,48.33,0.267,0.51 --122.44,48.34,0.263,0.475 --122.43,47.04,0.244,0.298 --122.43,47.05,0.252,0.368 --122.43,47.06,0.27,0.539 --122.43,47.07,0.273,0.568 --122.43,47.08,0.284,0.676 --122.43,47.09,0.303,0.858 --122.43,47.10,0.309,0.922 --122.43,47.11,0.332,1.138 --122.43,47.12,0.356,1.37 --122.43,47.13,0.38,1.603 --122.43,47.14,0.391,1.705 --122.43,47.15,0.41,1.886 --122.43,47.16,0.432,2.101 --122.43,47.17,0.455,2.323 --122.43,47.18,0.475,2.511 --122.43,47.19,0.482,2.58 --122.43,47.20,0.497,2.727 --122.43,47.21,0.508,2.834 --122.43,47.22,0.519,2.94 --122.43,47.23,0.52,2.949 --122.43,47.24,0.52,2.945 --122.43,47.25,0.518,2.934 --122.43,47.26,0.517,2.919 --122.43,47.27,0.515,2.904 --122.43,47.28,0.508,2.837 --122.43,47.29,0.493,2.69 --122.43,47.30,0.482,2.586 --122.43,47.31,0.471,2.48 --122.43,47.32,0.466,2.427 --122.43,47.33,0.452,2.298 --122.43,47.34,0.448,2.257 --122.43,47.35,0.444,2.215 --122.43,47.36,0.43,2.079 --122.43,47.37,0.43,2.079 --122.43,47.38,0.425,2.033 --122.43,47.39,0.425,2.031 --122.43,47.40,0.424,2.027 --122.43,47.41,0.424,2.024 --122.43,47.42,0.424,2.021 --122.43,47.43,0.424,2.021 --122.43,47.44,0.43,2.078 --122.43,47.45,0.43,2.082 --122.43,47.46,0.448,2.254 --122.43,47.47,0.457,2.34 --122.43,47.48,0.472,2.491 --122.43,47.49,0.495,2.706 --122.43,47.50,0.524,2.983 --122.43,47.51,0.554,3.276 --122.43,47.52,0.58,3.523 --122.43,47.53,0.613,3.842 --122.43,47.54,0.654,4.238 --122.43,47.55,0.685,4.536 --122.43,47.56,0.723,4.9 --122.43,47.57,0.756,5.219 --122.43,47.58,0.78,5.448 --122.43,47.59,0.803,5.675 --122.43,47.60,0.827,5.901 --122.43,47.61,0.84,6.025 --122.43,47.62,0.841,6.037 --122.43,47.63,0.849,6.109 --122.43,47.64,0.843,6.056 --122.43,47.65,0.838,6.004 --122.43,47.66,0.837,5.994 --122.43,47.67,0.816,5.797 --122.43,47.68,0.811,5.752 --122.43,47.69,0.794,5.589 --122.43,47.70,0.786,5.506 --122.43,47.71,0.772,5.377 --122.43,47.72,0.759,5.251 --122.43,47.73,0.736,5.03 --122.43,47.74,0.729,4.956 --122.43,47.75,0.71,4.774 --122.43,47.76,0.687,4.554 --122.43,47.77,0.683,4.518 --122.43,47.78,0.664,4.334 --122.43,47.79,0.657,4.262 --122.43,47.80,0.642,4.124 --122.43,47.81,0.635,4.056 --122.43,47.82,0.631,4.02 --122.43,47.83,0.624,3.951 --122.43,47.84,0.618,3.887 --122.43,47.85,0.618,3.894 --122.43,47.86,0.619,3.904 --122.43,47.87,0.62,3.913 --122.43,47.88,0.621,3.922 --122.43,47.89,0.621,3.924 --122.43,47.90,0.608,3.794 --122.43,47.91,0.607,3.79 --122.43,47.92,0.601,3.731 --122.43,47.93,0.601,3.729 --122.43,47.94,0.59,3.625 --122.43,47.95,0.586,3.586 --122.43,47.96,0.58,3.527 --122.43,47.97,0.579,3.515 --122.43,47.98,0.564,3.372 --122.43,47.99,0.563,3.358 --122.43,48.00,0.562,3.352 --122.43,48.01,0.557,3.309 --122.43,48.02,0.557,3.306 --122.43,48.03,0.557,3.305 --122.43,48.04,0.561,3.34 --122.43,48.05,0.561,3.341 --122.43,48.06,0.561,3.342 --122.43,48.07,0.561,3.343 --122.43,48.08,0.563,3.36 --122.43,48.09,0.577,3.493 --122.43,48.10,0.577,3.495 --122.43,48.11,0.569,3.422 --122.43,48.12,0.561,3.343 --122.43,48.13,0.56,3.338 --122.43,48.14,0.558,3.31 --122.43,48.15,0.541,3.148 --122.43,48.16,0.538,3.121 --122.43,48.17,0.534,3.088 --122.43,48.18,0.511,2.864 --122.43,48.19,0.494,2.698 --122.43,48.20,0.484,2.607 --122.43,48.21,0.462,2.386 --122.43,48.22,0.439,2.166 --122.43,48.23,0.43,2.087 --122.43,48.24,0.412,1.907 --122.43,48.25,0.389,1.691 --122.43,48.26,0.366,1.467 --122.43,48.27,0.347,1.282 --122.43,48.28,0.34,1.217 --122.43,48.29,0.317,0.998 --122.43,48.30,0.305,0.876 --122.43,48.31,0.291,0.75 --122.43,48.32,0.284,0.674 --122.43,48.33,0.266,0.508 --122.42,47.05,0.247,0.32 --122.42,47.06,0.257,0.417 --122.42,47.07,0.272,0.562 --122.42,47.08,0.277,0.607 --122.42,47.09,0.288,0.712 --122.42,47.10,0.308,0.912 --122.42,47.11,0.331,1.133 --122.42,47.12,0.351,1.32 --122.42,47.13,0.366,1.463 --122.42,47.14,0.384,1.638 --122.42,47.15,0.408,1.868 --122.42,47.16,0.431,2.097 --122.42,47.17,0.455,2.32 --122.42,47.18,0.461,2.383 --122.42,47.19,0.481,2.578 --122.42,47.20,0.497,2.725 --122.42,47.21,0.508,2.833 --122.42,47.22,0.519,2.937 --122.42,47.23,0.52,2.946 --122.42,47.24,0.519,2.943 --122.42,47.25,0.518,2.933 --122.42,47.26,0.517,2.919 --122.42,47.27,0.515,2.904 --122.42,47.28,0.508,2.837 --122.42,47.29,0.493,2.691 --122.42,47.30,0.484,2.598 --122.42,47.31,0.479,2.553 --122.42,47.32,0.47,2.468 --122.42,47.33,0.453,2.301 --122.42,47.34,0.449,2.261 --122.42,47.35,0.447,2.251 --122.42,47.36,0.439,2.174 --122.42,47.37,0.43,2.083 --122.42,47.38,0.43,2.083 --122.42,47.39,0.43,2.082 --122.42,47.40,0.43,2.08 --122.42,47.41,0.429,2.077 --122.42,47.42,0.429,2.076 --122.42,47.43,0.429,2.076 --122.42,47.44,0.43,2.08 --122.42,47.45,0.441,2.189 --122.42,47.46,0.449,2.266 --122.42,47.47,0.465,2.418 --122.42,47.48,0.479,2.554 --122.42,47.49,0.502,2.771 --122.42,47.50,0.526,3.004 --122.42,47.51,0.565,3.385 --122.42,47.52,0.594,3.663 --122.42,47.53,0.622,3.934 --122.42,47.54,0.66,4.299 --122.42,47.55,0.699,4.668 --122.42,47.56,0.732,4.989 --122.42,47.57,0.764,5.293 --122.42,47.58,0.787,5.519 --122.42,47.59,0.811,5.744 --122.42,47.60,0.834,5.968 --122.42,47.61,0.851,6.131 --122.42,47.62,0.856,6.179 --122.42,47.63,0.855,6.169 --122.42,47.64,0.854,6.159 --122.42,47.65,0.847,6.098 --122.42,47.66,0.838,6.003 --122.42,47.67,0.831,5.942 --122.42,47.68,0.812,5.757 --122.42,47.69,0.809,5.728 --122.42,47.70,0.789,5.537 --122.42,47.71,0.783,5.478 --122.42,47.72,0.764,5.297 --122.42,47.73,0.746,5.118 --122.42,47.74,0.733,5.0 --122.42,47.75,0.714,4.814 --122.42,47.76,0.702,4.698 --122.42,47.77,0.684,4.524 --122.42,47.78,0.679,4.479 --122.42,47.79,0.657,4.269 --122.42,47.80,0.654,4.238 --122.42,47.81,0.639,4.089 --122.42,47.82,0.636,4.068 --122.42,47.83,0.63,4.009 --122.42,47.84,0.62,3.913 --122.42,47.85,0.621,3.918 --122.42,47.86,0.62,3.907 --122.42,47.87,0.62,3.915 --122.42,47.88,0.621,3.923 --122.42,47.89,0.622,3.925 --122.42,47.90,0.621,3.922 --122.42,47.91,0.617,3.878 --122.42,47.92,0.602,3.74 --122.42,47.93,0.602,3.736 --122.42,47.94,0.601,3.724 --122.42,47.95,0.587,3.596 --122.42,47.96,0.58,3.528 --122.42,47.97,0.579,3.515 --122.42,47.98,0.576,3.492 --122.42,47.99,0.575,3.481 --122.42,48.00,0.572,3.445 --122.42,48.01,0.558,3.312 --122.42,48.02,0.558,3.31 --122.42,48.03,0.566,3.394 --122.42,48.04,0.575,3.473 --122.42,48.05,0.575,3.475 --122.42,48.06,0.575,3.477 --122.42,48.07,0.575,3.479 --122.42,48.08,0.577,3.496 --122.42,48.09,0.577,3.498 --122.42,48.10,0.577,3.501 --122.42,48.11,0.576,3.483 --122.42,48.12,0.575,3.482 --122.42,48.13,0.565,3.385 --122.42,48.14,0.558,3.316 --122.42,48.15,0.555,3.284 --122.42,48.16,0.538,3.126 --122.42,48.17,0.535,3.093 --122.42,48.18,0.512,2.867 --122.42,48.19,0.494,2.701 --122.42,48.20,0.485,2.608 --122.42,48.21,0.462,2.386 --122.42,48.22,0.439,2.165 --122.42,48.23,0.42,1.983 --122.42,48.24,0.409,1.884 --122.42,48.25,0.389,1.687 --122.42,48.26,0.366,1.464 --122.42,48.27,0.347,1.28 --122.42,48.28,0.326,1.08 --122.42,48.29,0.317,0.994 --122.42,48.30,0.299,0.826 --122.42,48.31,0.284,0.677 --122.42,48.32,0.274,0.586 --122.42,48.33,0.263,0.477 --122.41,47.05,0.241,0.264 --122.41,47.06,0.249,0.343 --122.41,47.07,0.262,0.466 --122.41,47.08,0.273,0.575 --122.41,47.09,0.286,0.695 --122.41,47.10,0.308,0.907 --122.41,47.11,0.322,1.04 --122.41,47.12,0.335,1.17 --122.41,47.13,0.359,1.402 --122.41,47.14,0.383,1.634 --122.41,47.15,0.407,1.864 --122.41,47.16,0.431,2.093 --122.41,47.17,0.453,2.302 --122.41,47.18,0.458,2.352 --122.41,47.19,0.481,2.576 --122.41,47.20,0.496,2.722 --122.41,47.21,0.508,2.832 --122.41,47.22,0.519,2.935 --122.41,47.23,0.519,2.943 --122.41,47.24,0.524,2.983 --122.41,47.25,0.525,3.001 --122.41,47.26,0.524,2.985 --122.41,47.27,0.515,2.905 --122.41,47.28,0.509,2.838 --122.41,47.29,0.5,2.753 --122.41,47.30,0.492,2.68 --122.41,47.31,0.479,2.554 --122.41,47.32,0.47,2.47 --122.41,47.33,0.455,2.327 --122.41,47.34,0.45,2.274 --122.41,47.35,0.449,2.265 --122.41,47.36,0.446,2.235 --122.41,47.37,0.435,2.134 --122.41,47.38,0.431,2.088 --122.41,47.39,0.43,2.086 --122.41,47.40,0.43,2.084 --122.41,47.41,0.43,2.081 --122.41,47.42,0.43,2.079 --122.41,47.43,0.43,2.079 --122.41,47.44,0.434,2.126 --122.41,47.45,0.449,2.262 --122.41,47.46,0.458,2.35 --122.41,47.47,0.469,2.455 --122.41,47.48,0.482,2.585 --122.41,47.49,0.505,2.801 --122.41,47.50,0.54,3.145 --122.41,47.51,0.566,3.391 --122.41,47.52,0.609,3.809 --122.41,47.53,0.638,4.085 --122.41,47.54,0.667,4.364 --122.41,47.55,0.71,4.776 --122.41,47.56,0.743,5.09 --122.41,47.57,0.778,5.43 --122.41,47.58,0.801,5.655 --122.41,47.59,0.826,5.894 --122.41,47.60,0.848,6.105 --122.41,47.61,0.851,6.137 --122.41,47.62,0.87,6.316 --122.41,47.63,0.869,6.307 --122.41,47.64,0.863,6.251 --122.41,47.65,0.848,6.108 --122.41,47.66,0.847,6.099 --122.41,47.67,0.835,5.978 --122.41,47.68,0.826,5.891 --122.41,47.69,0.809,5.733 --122.41,47.70,0.804,5.683 --122.41,47.71,0.784,5.484 --122.41,47.72,0.779,5.441 --122.41,47.73,0.757,5.227 --122.41,47.74,0.74,5.061 --122.41,47.75,0.729,4.959 --122.41,47.76,0.707,4.749 --122.41,47.77,0.696,4.641 --122.41,47.78,0.681,4.494 --122.41,47.79,0.658,4.277 --122.41,47.80,0.655,4.247 --122.41,47.81,0.653,4.23 --122.41,47.82,0.637,4.075 --122.41,47.83,0.635,4.054 --122.41,47.84,0.635,4.056 --122.41,47.85,0.627,3.982 --122.41,47.86,0.62,3.91 --122.41,47.87,0.621,3.918 --122.41,47.88,0.621,3.924 --122.41,47.89,0.622,3.926 --122.41,47.90,0.621,3.923 --122.41,47.91,0.617,3.883 --122.41,47.92,0.617,3.878 --122.41,47.93,0.612,3.83 --122.41,47.94,0.601,3.724 --122.41,47.95,0.595,3.673 --122.41,47.96,0.594,3.66 --122.41,47.97,0.581,3.532 --122.41,47.98,0.576,3.492 --122.41,47.99,0.576,3.484 --122.41,48.00,0.572,3.446 --122.41,48.01,0.571,3.435 --122.41,48.02,0.57,3.433 --122.41,48.03,0.576,3.484 --122.41,48.04,0.576,3.487 --122.41,48.05,0.576,3.491 --122.41,48.06,0.577,3.495 --122.41,48.07,0.577,3.498 --122.41,48.08,0.578,3.502 --122.41,48.09,0.578,3.504 --122.41,48.10,0.578,3.506 --122.41,48.11,0.578,3.509 --122.41,48.12,0.578,3.509 --122.41,48.13,0.571,3.438 --122.41,48.14,0.563,3.365 --122.41,48.15,0.558,3.317 --122.41,48.16,0.539,3.131 --122.41,48.17,0.535,3.097 --122.41,48.18,0.512,2.87 --122.41,48.19,0.494,2.703 --122.41,48.20,0.485,2.61 --122.41,48.21,0.462,2.386 --122.41,48.22,0.438,2.163 --122.41,48.23,0.415,1.94 --122.41,48.24,0.401,1.807 --122.41,48.25,0.388,1.679 --122.41,48.26,0.365,1.461 --122.41,48.27,0.342,1.24 --122.41,48.28,0.326,1.078 --122.41,48.29,0.317,0.991 --122.41,48.30,0.294,0.772 --122.41,48.31,0.284,0.675 --122.41,48.32,0.268,0.529 --122.41,48.33,0.263,0.476 --122.40,47.05,0.231,0.171 --122.40,47.06,0.249,0.343 --122.40,47.07,0.252,0.369 --122.40,47.08,0.273,0.574 --122.40,47.09,0.283,0.67 --122.40,47.10,0.297,0.801 --122.40,47.11,0.311,0.938 --122.40,47.12,0.335,1.166 --122.40,47.13,0.359,1.398 --122.40,47.14,0.383,1.63 --122.40,47.15,0.407,1.861 --122.40,47.16,0.431,2.091 --122.40,47.17,0.449,2.264 --122.40,47.18,0.458,2.35 --122.40,47.19,0.481,2.575 --122.40,47.20,0.496,2.72 --122.40,47.21,0.508,2.83 --122.40,47.22,0.518,2.932 --122.40,47.23,0.519,2.941 --122.40,47.24,0.539,3.129 --122.40,47.25,0.538,3.122 --122.40,47.26,0.535,3.093 --122.40,47.27,0.517,2.924 --122.40,47.28,0.514,2.892 --122.40,47.29,0.505,2.804 --122.40,47.30,0.494,2.696 --122.40,47.31,0.479,2.555 --122.40,47.32,0.472,2.484 --122.40,47.33,0.469,2.46 --122.40,47.34,0.45,2.277 --122.40,47.35,0.45,2.275 --122.40,47.36,0.449,2.27 --122.40,47.37,0.444,2.219 --122.40,47.38,0.431,2.093 --122.40,47.39,0.431,2.09 --122.40,47.40,0.43,2.087 --122.40,47.41,0.43,2.084 --122.40,47.42,0.43,2.082 --122.40,47.43,0.43,2.082 --122.40,47.44,0.449,2.261 --122.40,47.45,0.451,2.284 --122.40,47.46,0.468,2.45 --122.40,47.47,0.475,2.512 --122.40,47.48,0.497,2.723 --122.40,47.49,0.519,2.94 --122.40,47.50,0.543,3.174 --122.40,47.51,0.581,3.539 --122.40,47.52,0.611,3.822 --122.40,47.53,0.655,4.247 --122.40,47.54,0.684,4.526 --122.40,47.55,0.727,4.936 --122.40,47.56,0.754,5.204 --122.40,47.57,0.779,5.437 --122.40,47.58,0.811,5.745 --122.40,47.59,0.831,5.943 --122.40,47.60,0.849,6.113 --122.40,47.61,0.867,6.282 --122.40,47.62,0.871,6.323 --122.40,47.63,0.87,6.314 --122.40,47.64,0.865,6.265 --122.40,47.65,0.864,6.255 --122.40,47.66,0.858,6.199 --122.40,47.67,0.842,6.048 --122.40,47.68,0.832,5.954 --122.40,47.69,0.821,5.841 --122.40,47.70,0.807,5.709 --122.40,47.71,0.799,5.629 --122.40,47.72,0.78,5.454 --122.40,47.73,0.757,5.233 --122.40,47.74,0.754,5.198 --122.40,47.75,0.731,4.976 --122.40,47.76,0.713,4.803 --122.40,47.77,0.704,4.72 --122.40,47.78,0.681,4.501 --122.40,47.79,0.67,4.387 --122.40,47.80,0.656,4.26 --122.40,47.81,0.654,4.238 --122.40,47.82,0.65,4.196 --122.40,47.83,0.638,4.084 --122.40,47.84,0.638,4.087 --122.40,47.85,0.631,4.018 --122.40,47.86,0.632,4.024 --122.40,47.87,0.632,4.029 --122.40,47.88,0.623,3.944 --122.40,47.89,0.622,3.927 --122.40,47.90,0.621,3.923 --122.40,47.91,0.621,3.92 --122.40,47.92,0.621,3.916 --122.40,47.93,0.612,3.83 --122.40,47.94,0.609,3.803 --122.40,47.95,0.6,3.714 --122.40,47.96,0.598,3.701 --122.40,47.97,0.588,3.599 --122.40,47.98,0.585,3.577 --122.40,47.99,0.576,3.485 --122.40,48.00,0.576,3.485 --122.40,48.01,0.576,3.486 --122.40,48.02,0.576,3.487 --122.40,48.03,0.576,3.488 --122.40,48.04,0.577,3.493 --122.40,48.05,0.577,3.497 --122.40,48.06,0.577,3.5 --122.40,48.07,0.578,3.504 --122.40,48.08,0.585,3.578 --122.40,48.09,0.586,3.58 --122.40,48.10,0.586,3.581 --122.40,48.11,0.579,3.514 --122.40,48.12,0.579,3.515 --122.40,48.13,0.579,3.513 --122.40,48.14,0.564,3.37 --122.40,48.15,0.559,3.323 --122.40,48.16,0.539,3.136 --122.40,48.17,0.536,3.101 --122.40,48.18,0.512,2.872 --122.40,48.19,0.495,2.706 --122.40,48.20,0.479,2.553 --122.40,48.21,0.461,2.385 --122.40,48.22,0.438,2.162 --122.40,48.23,0.415,1.937 --122.40,48.24,0.391,1.712 --122.40,48.25,0.383,1.631 --122.40,48.26,0.36,1.41 --122.40,48.27,0.342,1.236 --122.40,48.28,0.325,1.076 --122.40,48.29,0.312,0.946 --122.40,48.30,0.293,0.769 --122.40,48.31,0.284,0.674 --122.40,48.32,0.268,0.526 --122.39,47.05,0.231,0.171 --122.39,47.06,0.249,0.344 --122.39,47.07,0.252,0.366 --122.39,47.08,0.272,0.563 --122.39,47.09,0.274,0.584 --122.39,47.10,0.288,0.72 --122.39,47.11,0.311,0.938 --122.39,47.12,0.335,1.166 --122.39,47.13,0.359,1.397 --122.39,47.14,0.383,1.629 --122.39,47.15,0.407,1.86 --122.39,47.16,0.431,2.09 --122.39,47.17,0.434,2.125 --122.39,47.18,0.458,2.349 --122.39,47.19,0.481,2.575 --122.39,47.20,0.496,2.719 --122.39,47.21,0.508,2.83 --122.39,47.22,0.518,2.931 --122.39,47.23,0.532,3.064 --122.39,47.24,0.539,3.131 --122.39,47.25,0.538,3.121 --122.39,47.26,0.535,3.093 --122.39,47.27,0.531,3.058 --122.39,47.28,0.514,2.894 --122.39,47.29,0.51,2.851 --122.39,47.30,0.502,2.773 --122.39,47.31,0.488,2.641 --122.39,47.32,0.476,2.526 --122.39,47.33,0.47,2.467 --122.39,47.34,0.465,2.422 --122.39,47.35,0.465,2.421 --122.39,47.36,0.45,2.277 --122.39,47.37,0.446,2.237 --122.39,47.38,0.446,2.235 --122.39,47.39,0.446,2.232 --122.39,47.40,0.445,2.228 --122.39,47.41,0.445,2.223 --122.39,47.42,0.444,2.22 --122.39,47.43,0.444,2.217 --122.39,47.44,0.449,2.269 --122.39,47.45,0.453,2.303 --122.39,47.46,0.469,2.457 --122.39,47.47,0.488,2.644 --122.39,47.48,0.499,2.745 --122.39,47.49,0.527,3.013 --122.39,47.50,0.557,3.304 --122.39,47.51,0.588,3.6 --122.39,47.52,0.624,3.945 --122.39,47.53,0.658,4.278 --122.39,47.54,0.7,4.683 --122.39,47.55,0.73,4.969 --122.39,47.56,0.767,5.329 --122.39,47.57,0.791,5.558 --122.39,47.58,0.823,5.86 --122.39,47.59,0.838,6.004 --122.39,47.60,0.861,6.229 --122.39,47.61,0.872,6.339 --122.39,47.62,0.882,6.429 --122.39,47.63,0.881,6.419 --122.39,47.64,0.88,6.409 --122.39,47.65,0.869,6.304 --122.39,47.66,0.859,6.205 --122.39,47.67,0.855,6.175 --122.39,47.68,0.837,5.997 --122.39,47.69,0.83,5.93 --122.39,47.70,0.815,5.79 --122.39,47.71,0.804,5.681 --122.39,47.72,0.781,5.46 --122.39,47.73,0.772,5.371 --122.39,47.74,0.754,5.204 --122.39,47.75,0.731,4.982 --122.39,47.76,0.728,4.947 --122.39,47.77,0.705,4.726 --122.39,47.78,0.686,4.547 --122.39,47.79,0.679,4.474 --122.39,47.80,0.665,4.34 --122.39,47.81,0.657,4.27 --122.39,47.82,0.653,4.226 --122.39,47.83,0.646,4.158 --122.39,47.84,0.639,4.092 --122.39,47.85,0.639,4.097 --122.39,47.86,0.64,4.103 --122.39,47.87,0.641,4.11 --122.39,47.88,0.628,3.988 --122.39,47.89,0.628,3.987 --122.39,47.90,0.621,3.924 --122.39,47.91,0.621,3.92 --122.39,47.92,0.621,3.917 --122.39,47.93,0.62,3.913 --122.39,47.94,0.609,3.802 --122.39,47.95,0.604,3.761 --122.39,47.96,0.598,3.701 --122.39,47.97,0.597,3.686 --122.39,47.98,0.594,3.665 --122.39,47.99,0.58,3.526 --122.39,48.00,0.58,3.526 --122.39,48.01,0.58,3.526 --122.39,48.02,0.58,3.525 --122.39,48.03,0.58,3.526 --122.39,48.04,0.58,3.529 --122.39,48.05,0.581,3.532 --122.39,48.06,0.581,3.534 --122.39,48.07,0.581,3.537 --122.39,48.08,0.597,3.689 --122.39,48.09,0.597,3.693 --122.39,48.10,0.592,3.637 --122.39,48.11,0.582,3.542 --122.39,48.12,0.58,3.521 --122.39,48.13,0.579,3.519 --122.39,48.14,0.564,3.374 --122.39,48.15,0.561,3.345 --122.39,48.16,0.54,3.141 --122.39,48.17,0.536,3.106 --122.39,48.18,0.512,2.875 --122.39,48.19,0.489,2.646 --122.39,48.20,0.474,2.502 --122.39,48.21,0.461,2.378 --122.39,48.22,0.438,2.16 --122.39,48.23,0.415,1.935 --122.39,48.24,0.391,1.709 --122.39,48.25,0.368,1.485 --122.39,48.26,0.347,1.28 --122.39,48.27,0.342,1.233 --122.39,48.28,0.319,1.018 --122.39,48.29,0.304,0.875 --122.39,48.30,0.293,0.766 --122.39,48.31,0.283,0.672 --122.39,48.32,0.268,0.524 --122.38,47.05,0.231,0.171 --122.38,47.06,0.235,0.211 --122.38,47.07,0.252,0.367 --122.38,47.08,0.264,0.485 --122.38,47.09,0.266,0.509 --122.38,47.10,0.288,0.721 --122.38,47.11,0.311,0.939 --122.38,47.12,0.335,1.166 --122.38,47.13,0.359,1.397 --122.38,47.14,0.383,1.629 --122.38,47.15,0.407,1.859 --122.38,47.16,0.431,2.089 --122.38,47.17,0.434,2.124 --122.38,47.18,0.458,2.35 --122.38,47.19,0.481,2.575 --122.38,47.20,0.496,2.718 --122.38,47.21,0.508,2.83 --122.38,47.22,0.518,2.929 --122.38,47.23,0.534,3.084 --122.38,47.24,0.539,3.13 --122.38,47.25,0.538,3.121 --122.38,47.26,0.537,3.108 --122.38,47.27,0.531,3.058 --122.38,47.28,0.526,3.008 --122.38,47.29,0.513,2.883 --122.38,47.30,0.504,2.796 --122.38,47.31,0.499,2.744 --122.38,47.32,0.483,2.588 --122.38,47.33,0.481,2.576 --122.38,47.34,0.471,2.474 --122.38,47.35,0.469,2.454 --122.38,47.36,0.461,2.383 --122.38,47.37,0.461,2.381 --122.38,47.38,0.451,2.286 --122.38,47.39,0.451,2.284 --122.38,47.40,0.451,2.281 --122.38,47.41,0.45,2.279 --122.38,47.42,0.45,2.277 --122.38,47.43,0.45,2.277 --122.38,47.44,0.459,2.363 --122.38,47.45,0.462,2.395 --122.38,47.46,0.484,2.599 --122.38,47.47,0.489,2.651 --122.38,47.48,0.508,2.831 --122.38,47.49,0.541,3.153 --122.38,47.50,0.565,3.378 --122.38,47.51,0.593,3.653 --122.38,47.52,0.633,4.033 --122.38,47.53,0.668,4.372 --122.38,47.54,0.705,4.73 --122.38,47.55,0.744,5.102 --122.38,47.56,0.776,5.411 --122.38,47.57,0.8,5.64 --122.38,47.58,0.83,5.931 --122.38,47.59,0.852,6.145 --122.38,47.60,0.87,6.319 --122.38,47.61,0.878,6.391 --122.38,47.62,0.891,6.517 --122.38,47.63,0.89,6.509 --122.38,47.64,0.884,6.452 --122.38,47.65,0.875,6.361 --122.38,47.66,0.874,6.351 --122.38,47.67,0.856,6.181 --122.38,47.68,0.852,6.144 --122.38,47.69,0.832,5.948 --122.38,47.70,0.827,5.906 --122.38,47.71,0.809,5.728 --122.38,47.72,0.789,5.534 --122.38,47.73,0.778,5.431 --122.38,47.74,0.759,5.246 --122.38,47.75,0.745,5.113 --122.38,47.76,0.728,4.953 --122.38,47.77,0.705,4.732 --122.38,47.78,0.701,4.693 --122.38,47.79,0.681,4.495 --122.38,47.80,0.676,4.452 --122.38,47.81,0.661,4.302 --122.38,47.82,0.658,4.278 --122.38,47.83,0.651,4.213 --122.38,47.84,0.641,4.117 --122.38,47.85,0.64,4.101 --122.38,47.86,0.64,4.107 --122.38,47.87,0.641,4.112 --122.38,47.88,0.642,4.118 --122.38,47.89,0.641,4.113 --122.38,47.90,0.623,3.935 --122.38,47.91,0.622,3.929 --122.38,47.92,0.621,3.917 --122.38,47.93,0.62,3.913 --122.38,47.94,0.62,3.906 --122.38,47.95,0.605,3.771 --122.38,47.96,0.598,3.702 --122.38,47.97,0.597,3.688 --122.38,47.98,0.595,3.668 --122.38,47.99,0.594,3.661 --122.38,48.00,0.594,3.66 --122.38,48.01,0.594,3.659 --122.38,48.02,0.594,3.658 --122.38,48.03,0.594,3.658 --122.38,48.04,0.594,3.662 --122.38,48.05,0.595,3.666 --122.38,48.06,0.595,3.669 --122.38,48.07,0.595,3.674 --122.38,48.08,0.597,3.694 --122.38,48.09,0.598,3.697 --122.38,48.10,0.596,3.678 --122.38,48.11,0.59,3.623 --122.38,48.12,0.58,3.525 --122.38,48.13,0.58,3.523 --122.38,48.14,0.576,3.49 --122.38,48.15,0.562,3.353 --122.38,48.16,0.54,3.144 --122.38,48.17,0.537,3.108 --122.38,48.18,0.512,2.876 --122.38,48.19,0.489,2.646 --122.38,48.20,0.469,2.459 --122.38,48.21,0.452,2.296 --122.38,48.22,0.438,2.157 --122.38,48.23,0.414,1.931 --122.38,48.24,0.391,1.705 --122.38,48.25,0.367,1.48 --122.38,48.26,0.346,1.276 --122.38,48.27,0.327,1.089 --122.38,48.28,0.318,1.008 --122.38,48.29,0.301,0.845 --122.38,48.30,0.284,0.675 --122.38,48.31,0.276,0.605 --122.37,47.05,0.231,0.17 --122.37,47.06,0.231,0.171 --122.37,47.07,0.252,0.368 --122.37,47.08,0.256,0.412 --122.37,47.09,0.266,0.509 --122.37,47.10,0.289,0.722 --122.37,47.11,0.311,0.94 --122.37,47.12,0.335,1.166 --122.37,47.13,0.356,1.367 --122.37,47.14,0.373,1.534 --122.37,47.15,0.397,1.766 --122.37,47.16,0.421,1.998 --122.37,47.17,0.434,2.124 --122.37,47.18,0.458,2.35 --122.37,47.19,0.481,2.575 --122.37,47.20,0.496,2.717 --122.37,47.21,0.516,2.912 --122.37,47.22,0.519,2.941 --122.37,47.23,0.539,3.13 --122.37,47.24,0.539,3.128 --122.37,47.25,0.538,3.12 --122.37,47.26,0.537,3.108 --122.37,47.27,0.535,3.096 --122.37,47.28,0.528,3.025 --122.37,47.29,0.52,2.951 --122.37,47.30,0.512,2.876 --122.37,47.31,0.499,2.748 --122.37,47.32,0.496,2.717 --122.37,47.33,0.49,2.663 --122.37,47.34,0.477,2.531 --122.37,47.35,0.476,2.529 --122.37,47.36,0.471,2.475 --122.37,47.37,0.465,2.42 --122.37,47.38,0.457,2.342 --122.37,47.39,0.457,2.339 --122.37,47.40,0.456,2.335 --122.37,47.41,0.456,2.332 --122.37,47.42,0.456,2.329 --122.37,47.43,0.455,2.327 --122.37,47.44,0.47,2.47 --122.37,47.45,0.478,2.543 --122.37,47.46,0.49,2.656 --122.37,47.47,0.501,2.767 --122.37,47.48,0.523,2.976 --122.37,47.49,0.545,3.192 --122.37,47.50,0.569,3.416 --122.37,47.51,0.609,3.807 --122.37,47.52,0.635,4.059 --122.37,47.53,0.68,4.488 --122.37,47.54,0.712,4.795 --122.37,47.55,0.752,5.178 --122.37,47.56,0.779,5.436 --122.37,47.57,0.812,5.762 --122.37,47.58,0.844,6.064 --122.37,47.59,0.853,6.151 --122.37,47.60,0.873,6.34 --122.37,47.61,0.893,6.533 --122.37,47.62,0.893,6.534 --122.37,47.63,0.892,6.524 --122.37,47.64,0.89,6.508 --122.37,47.65,0.889,6.5 --122.37,47.66,0.879,6.402 --122.37,47.67,0.869,6.302 --122.37,47.68,0.854,6.157 --122.37,47.69,0.847,6.094 --122.37,47.70,0.828,5.911 --122.37,47.71,0.824,5.873 --122.37,47.72,0.802,5.657 --122.37,47.73,0.783,5.478 --122.37,47.74,0.774,5.392 --122.37,47.75,0.752,5.181 --122.37,47.76,0.729,4.959 --122.37,47.77,0.718,4.855 --122.37,47.78,0.703,4.705 --122.37,47.79,0.696,4.64 --122.37,47.80,0.677,4.46 --122.37,47.81,0.675,4.44 --122.37,47.82,0.659,4.285 --122.37,47.83,0.656,4.26 --122.37,47.84,0.65,4.197 --122.37,47.85,0.64,4.105 --122.37,47.86,0.641,4.11 --122.37,47.87,0.641,4.116 --122.37,47.88,0.642,4.12 --122.37,47.89,0.641,4.113 --122.37,47.90,0.637,4.076 --122.37,47.91,0.636,4.061 --122.37,47.92,0.621,3.918 --122.37,47.93,0.62,3.913 --122.37,47.94,0.62,3.906 --122.37,47.95,0.614,3.851 --122.37,47.96,0.612,3.837 --122.37,47.97,0.599,3.706 --122.37,47.98,0.596,3.676 --122.37,47.99,0.595,3.671 --122.37,48.00,0.595,3.672 --122.37,48.01,0.595,3.673 --122.37,48.02,0.595,3.674 --122.37,48.03,0.596,3.676 --122.37,48.04,0.596,3.681 --122.37,48.05,0.597,3.686 --122.37,48.06,0.597,3.69 --122.37,48.07,0.598,3.695 --122.37,48.08,0.598,3.699 --122.37,48.09,0.598,3.702 --122.37,48.10,0.599,3.705 --122.37,48.11,0.592,3.637 --122.37,48.12,0.588,3.607 --122.37,48.13,0.58,3.526 --122.37,48.14,0.58,3.523 --122.37,48.15,0.562,3.356 --122.37,48.16,0.541,3.149 --122.37,48.17,0.537,3.11 --122.37,48.18,0.512,2.876 --122.37,48.19,0.488,2.645 --122.37,48.20,0.465,2.416 --122.37,48.21,0.451,2.28 --122.37,48.22,0.427,2.055 --122.37,48.23,0.409,1.884 --122.37,48.24,0.39,1.7 --122.37,48.25,0.367,1.475 --122.37,48.26,0.344,1.251 --122.37,48.27,0.325,1.073 --122.37,48.28,0.309,0.916 --122.37,48.29,0.295,0.784 --122.37,48.30,0.283,0.672 --122.37,48.31,0.27,0.542 --122.36,47.05,0.231,0.17 --122.36,47.06,0.231,0.171 --122.36,47.07,0.252,0.367 --122.36,47.08,0.253,0.379 --122.36,47.09,0.267,0.51 --122.36,47.10,0.289,0.723 --122.36,47.11,0.311,0.941 --122.36,47.12,0.335,1.167 --122.36,47.13,0.345,1.268 --122.36,47.14,0.363,1.434 --122.36,47.15,0.389,1.687 --122.36,47.16,0.415,1.938 --122.36,47.17,0.439,2.165 --122.36,47.18,0.458,2.35 --122.36,47.19,0.481,2.576 --122.36,47.20,0.505,2.801 --122.36,47.21,0.517,2.918 --122.36,47.22,0.534,3.087 --122.36,47.23,0.539,3.128 --122.36,47.24,0.539,3.133 --122.36,47.25,0.541,3.146 --122.36,47.26,0.539,3.134 --122.36,47.27,0.538,3.121 --122.36,47.28,0.536,3.107 --122.36,47.29,0.525,2.995 --122.36,47.30,0.515,2.897 --122.36,47.31,0.513,2.886 --122.36,47.32,0.496,2.721 --122.36,47.33,0.492,2.682 --122.36,47.34,0.491,2.668 --122.36,47.35,0.489,2.648 --122.36,47.36,0.472,2.49 --122.36,47.37,0.472,2.489 --122.36,47.38,0.472,2.487 --122.36,47.39,0.471,2.481 --122.36,47.40,0.471,2.48 --122.36,47.41,0.471,2.477 --122.36,47.42,0.471,2.475 --122.36,47.43,0.471,2.473 --122.36,47.44,0.472,2.487 --122.36,47.45,0.49,2.662 --122.36,47.46,0.495,2.71 --122.36,47.47,0.516,2.913 --122.36,47.48,0.538,3.122 --122.36,47.49,0.561,3.343 --122.36,47.50,0.584,3.568 --122.36,47.51,0.61,3.814 --122.36,47.52,0.652,4.215 --122.36,47.53,0.681,4.494 --122.36,47.54,0.727,4.94 --122.36,47.55,0.755,5.214 --122.36,47.56,0.794,5.587 --122.36,47.57,0.821,5.843 --122.36,47.58,0.844,6.07 --122.36,47.59,0.865,6.265 --122.36,47.60,0.888,6.484 --122.36,47.61,0.893,6.54 --122.36,47.62,0.908,6.677 --122.36,47.63,0.907,6.667 --122.36,47.64,0.891,6.516 --122.36,47.65,0.89,6.508 --122.36,47.66,0.885,6.458 --122.36,47.67,0.877,6.379 --122.36,47.68,0.863,6.252 --122.36,47.69,0.851,6.134 --122.36,47.70,0.842,6.043 --122.36,47.71,0.825,5.883 --122.36,47.72,0.802,5.663 --122.36,47.73,0.798,5.623 --122.36,47.74,0.776,5.408 --122.36,47.75,0.756,5.222 --122.36,47.76,0.743,5.092 --122.36,47.77,0.726,4.931 --122.36,47.78,0.712,4.8 --122.36,47.79,0.7,4.678 --122.36,47.80,0.679,4.475 --122.36,47.81,0.676,4.446 --122.36,47.82,0.671,4.405 --122.36,47.83,0.66,4.292 --122.36,47.84,0.652,4.218 --122.36,47.85,0.648,4.184 --122.36,47.86,0.641,4.114 --122.36,47.87,0.642,4.119 --122.36,47.88,0.642,4.123 --122.36,47.89,0.642,4.121 --122.36,47.90,0.641,4.115 --122.36,47.91,0.636,4.061 --122.36,47.92,0.631,4.016 --122.36,47.93,0.62,3.913 --122.36,47.94,0.62,3.906 --122.36,47.95,0.618,3.895 --122.36,47.96,0.617,3.883 --122.36,47.97,0.606,3.778 --122.36,47.98,0.605,3.762 --122.36,47.99,0.604,3.757 --122.36,48.00,0.604,3.756 --122.36,48.01,0.604,3.755 --122.36,48.02,0.604,3.754 --122.36,48.03,0.604,3.755 --122.36,48.04,0.604,3.758 --122.36,48.05,0.601,3.726 --122.36,48.06,0.598,3.696 --122.36,48.07,0.598,3.7 --122.36,48.08,0.599,3.704 --122.36,48.09,0.599,3.707 --122.36,48.10,0.599,3.709 --122.36,48.11,0.599,3.712 --122.36,48.12,0.589,3.61 --122.36,48.13,0.586,3.588 --122.36,48.14,0.58,3.527 --122.36,48.15,0.563,3.36 --122.36,48.16,0.541,3.153 --122.36,48.17,0.537,3.112 --122.36,48.18,0.512,2.876 --122.36,48.19,0.488,2.644 --122.36,48.20,0.464,2.413 --122.36,48.21,0.441,2.184 --122.36,48.22,0.417,1.955 --122.36,48.23,0.408,1.875 --122.36,48.24,0.385,1.65 --122.36,48.25,0.362,1.427 --122.36,48.26,0.343,1.246 --122.36,48.27,0.32,1.026 --122.36,48.28,0.304,0.871 --122.36,48.29,0.291,0.744 --122.36,48.30,0.283,0.669 --122.36,48.31,0.266,0.506 --122.35,47.05,0.231,0.17 --122.35,47.06,0.231,0.171 --122.35,47.07,0.252,0.366 --122.35,47.08,0.253,0.38 --122.35,47.09,0.267,0.511 --122.35,47.10,0.289,0.724 --122.35,47.11,0.311,0.942 --122.35,47.12,0.335,1.167 --122.35,47.13,0.345,1.266 --122.35,47.14,0.362,1.433 --122.35,47.15,0.404,1.836 --122.35,47.16,0.43,2.085 --122.35,47.17,0.452,2.294 --122.35,47.18,0.458,2.35 --122.35,47.19,0.481,2.576 --122.35,47.20,0.505,2.801 --122.35,47.21,0.527,3.012 --122.35,47.22,0.538,3.119 --122.35,47.23,0.538,3.126 --122.35,47.24,0.554,3.275 --122.35,47.25,0.555,3.287 --122.35,47.26,0.554,3.275 --122.35,47.27,0.553,3.262 --122.35,47.28,0.547,3.212 --122.35,47.29,0.531,3.051 --122.35,47.30,0.529,3.039 --122.35,47.31,0.519,2.937 --122.35,47.32,0.508,2.835 --122.35,47.33,0.507,2.825 --122.35,47.34,0.491,2.673 --122.35,47.35,0.489,2.653 --122.35,47.36,0.487,2.634 --122.35,47.37,0.487,2.632 --122.35,47.38,0.483,2.593 --122.35,47.39,0.472,2.488 --122.35,47.40,0.472,2.486 --122.35,47.41,0.472,2.485 --122.35,47.42,0.472,2.484 --122.35,47.43,0.472,2.484 --122.35,47.44,0.487,2.633 --122.35,47.45,0.491,2.669 --122.35,47.46,0.51,2.853 --122.35,47.47,0.518,2.931 --122.35,47.48,0.54,3.142 --122.35,47.49,0.563,3.364 --122.35,47.50,0.595,3.671 --122.35,47.51,0.624,3.948 --122.35,47.52,0.655,4.25 --122.35,47.53,0.696,4.644 --122.35,47.54,0.728,4.946 --122.35,47.55,0.772,5.371 --122.35,47.56,0.798,5.619 --122.35,47.57,0.821,5.848 --122.35,47.58,0.845,6.076 --122.35,47.59,0.869,6.304 --122.35,47.60,0.892,6.524 --122.35,47.61,0.904,6.641 --122.35,47.62,0.912,6.719 --122.35,47.63,0.908,6.679 --122.35,47.64,0.902,6.621 --122.35,47.65,0.901,6.611 --122.35,47.66,0.89,6.507 --122.35,47.67,0.88,6.409 --122.35,47.68,0.874,6.356 --122.35,47.69,0.858,6.202 --122.35,47.70,0.849,6.109 --122.35,47.71,0.826,5.889 --122.35,47.72,0.815,5.786 --122.35,47.73,0.799,5.634 --122.35,47.74,0.776,5.415 --122.35,47.75,0.772,5.369 --122.35,47.76,0.75,5.16 --122.35,47.77,0.729,4.963 --122.35,47.78,0.723,4.903 --122.35,47.79,0.701,4.685 --122.35,47.80,0.687,4.555 --122.35,47.81,0.679,4.482 --122.35,47.82,0.674,4.431 --122.35,47.83,0.66,4.298 --122.35,47.84,0.66,4.297 --122.35,47.85,0.649,4.187 --122.35,47.86,0.647,4.171 --122.35,47.87,0.642,4.122 --122.35,47.88,0.642,4.125 --122.35,47.89,0.642,4.123 --122.35,47.90,0.641,4.117 --122.35,47.91,0.641,4.11 --122.35,47.92,0.633,4.035 --122.35,47.93,0.625,3.962 --122.35,47.94,0.62,3.906 --122.35,47.95,0.618,3.895 --122.35,47.96,0.617,3.884 --122.35,47.97,0.616,3.871 --122.35,47.98,0.614,3.857 --122.35,47.99,0.614,3.854 --122.35,48.00,0.614,3.854 --122.35,48.01,0.614,3.855 --122.35,48.02,0.614,3.856 --122.35,48.03,0.615,3.858 --122.35,48.04,0.615,3.863 --122.35,48.05,0.601,3.731 --122.35,48.06,0.601,3.726 --122.35,48.07,0.601,3.729 --122.35,48.08,0.601,3.731 --122.35,48.09,0.601,3.732 --122.35,48.10,0.6,3.714 --122.35,48.11,0.6,3.716 --122.35,48.12,0.6,3.718 --122.35,48.13,0.587,3.591 --122.35,48.14,0.581,3.532 --122.35,48.15,0.563,3.363 --122.35,48.16,0.542,3.158 --122.35,48.17,0.536,3.106 --122.35,48.18,0.513,2.877 --122.35,48.19,0.488,2.643 --122.35,48.20,0.464,2.411 --122.35,48.21,0.44,2.181 --122.35,48.22,0.416,1.951 --122.35,48.23,0.393,1.726 --122.35,48.24,0.37,1.502 --122.35,48.25,0.346,1.278 --122.35,48.26,0.343,1.241 --122.35,48.27,0.32,1.021 --122.35,48.28,0.298,0.814 --122.35,48.29,0.283,0.671 --122.35,48.30,0.273,0.574 --122.34,47.05,0.231,0.17 --122.34,47.06,0.231,0.17 --122.34,47.07,0.252,0.366 --122.34,47.08,0.253,0.38 --122.34,47.09,0.267,0.512 --122.34,47.10,0.289,0.725 --122.34,47.11,0.312,0.943 --122.34,47.12,0.335,1.168 --122.34,47.13,0.345,1.266 --122.34,47.14,0.374,1.541 --122.34,47.15,0.407,1.858 --122.34,47.16,0.431,2.09 --122.34,47.17,0.452,2.294 --122.34,47.18,0.472,2.49 --122.34,47.19,0.495,2.705 --122.34,47.20,0.505,2.803 --122.34,47.21,0.528,3.026 --122.34,47.22,0.538,3.119 --122.34,47.23,0.547,3.213 --122.34,47.24,0.558,3.315 --122.34,47.25,0.557,3.308 --122.34,47.26,0.556,3.298 --122.34,47.27,0.555,3.287 --122.34,47.28,0.548,3.214 --122.34,47.29,0.544,3.183 --122.34,47.30,0.533,3.07 --122.34,47.31,0.524,2.988 --122.34,47.32,0.523,2.977 --122.34,47.33,0.513,2.884 --122.34,47.34,0.503,2.781 --122.34,47.35,0.502,2.778 --122.34,47.36,0.492,2.677 --122.34,47.37,0.492,2.676 --122.34,47.38,0.484,2.598 --122.34,47.39,0.483,2.589 --122.34,47.40,0.482,2.586 --122.34,47.41,0.482,2.583 --122.34,47.42,0.482,2.581 --122.34,47.43,0.482,2.58 --122.34,47.44,0.492,2.675 --122.34,47.45,0.504,2.798 --122.34,47.46,0.511,2.859 --122.34,47.47,0.528,3.021 --122.34,47.48,0.549,3.23 --122.34,47.49,0.572,3.453 --122.34,47.50,0.607,3.79 --122.34,47.51,0.637,4.075 --122.34,47.52,0.664,4.338 --122.34,47.53,0.703,4.706 --122.34,47.54,0.74,5.067 --122.34,47.55,0.774,5.391 --122.34,47.56,0.798,5.623 --122.34,47.57,0.829,5.921 --122.34,47.58,0.852,6.147 --122.34,47.59,0.876,6.374 --122.34,47.60,0.895,6.557 --122.34,47.61,0.913,6.726 --122.34,47.62,0.913,6.726 --122.34,47.63,0.912,6.718 --122.34,47.64,0.911,6.711 --122.34,47.65,0.903,6.63 --122.34,47.66,0.896,6.563 --122.34,47.67,0.89,6.505 --122.34,47.68,0.875,6.362 --122.34,47.69,0.869,6.304 --122.34,47.70,0.849,6.115 --122.34,47.71,0.832,5.948 --122.34,47.72,0.823,5.859 --122.34,47.73,0.8,5.639 --122.34,47.74,0.788,5.53 --122.34,47.75,0.773,5.387 --122.34,47.76,0.751,5.166 --122.34,47.77,0.745,5.111 --122.34,47.78,0.724,4.91 --122.34,47.79,0.703,4.71 --122.34,47.80,0.698,4.664 --122.34,47.81,0.68,4.49 --122.34,47.82,0.675,4.437 --122.34,47.83,0.663,4.323 --122.34,47.84,0.661,4.302 --122.34,47.85,0.661,4.303 --122.34,47.86,0.647,4.173 --122.34,47.87,0.644,4.138 --122.34,47.88,0.643,4.127 --122.34,47.89,0.642,4.125 --122.34,47.90,0.642,4.118 --122.34,47.91,0.641,4.111 --122.34,47.92,0.64,4.104 --122.34,47.93,0.63,4.007 --122.34,47.94,0.62,3.906 --122.34,47.95,0.618,3.896 --122.34,47.96,0.617,3.885 --122.34,47.97,0.616,3.872 --122.34,47.98,0.615,3.86 --122.34,47.99,0.615,3.858 --122.34,48.00,0.615,3.86 --122.34,48.01,0.615,3.861 --122.34,48.02,0.615,3.863 --122.34,48.03,0.615,3.865 --122.34,48.04,0.616,3.871 --122.34,48.05,0.615,3.859 --122.34,48.06,0.615,3.862 --122.34,48.07,0.615,3.865 --122.34,48.08,0.616,3.868 --122.34,48.09,0.614,3.849 --122.34,48.10,0.6,3.718 --122.34,48.11,0.6,3.721 --122.34,48.12,0.6,3.722 --122.34,48.13,0.587,3.595 --122.34,48.14,0.581,3.537 --122.34,48.15,0.563,3.367 --122.34,48.16,0.542,3.163 --122.34,48.17,0.521,2.959 --122.34,48.18,0.513,2.877 --122.34,48.19,0.488,2.642 --122.34,48.20,0.464,2.409 --122.34,48.21,0.44,2.178 --122.34,48.22,0.416,1.948 --122.34,48.23,0.392,1.719 --122.34,48.24,0.369,1.492 --122.34,48.25,0.346,1.27 --122.34,48.26,0.328,1.101 --122.34,48.27,0.319,1.016 --122.34,48.28,0.296,0.797 --122.34,48.29,0.283,0.668 --122.34,48.30,0.271,0.555 --122.33,47.05,0.231,0.17 --122.33,47.06,0.231,0.171 --122.33,47.07,0.252,0.366 --122.33,47.08,0.253,0.381 --122.33,47.09,0.267,0.515 --122.33,47.10,0.289,0.728 --122.33,47.11,0.312,0.946 --122.33,47.12,0.335,1.17 --122.33,47.13,0.349,1.308 --122.33,47.14,0.383,1.63 --122.33,47.15,0.407,1.86 --122.33,47.16,0.431,2.092 --122.33,47.17,0.455,2.319 --122.33,47.18,0.478,2.546 --122.33,47.19,0.495,2.706 --122.33,47.20,0.514,2.894 --122.33,47.21,0.537,3.112 --122.33,47.22,0.54,3.143 --122.33,47.23,0.558,3.317 --122.33,47.24,0.565,3.377 --122.33,47.25,0.566,3.388 --122.33,47.26,0.564,3.376 --122.33,47.27,0.563,3.364 --122.33,47.28,0.562,3.351 --122.33,47.29,0.545,3.187 --122.33,47.30,0.54,3.143 --122.33,47.31,0.539,3.128 --122.33,47.32,0.531,3.058 --122.33,47.33,0.518,2.93 --122.33,47.34,0.517,2.924 --122.33,47.35,0.509,2.845 --122.33,47.36,0.498,2.739 --122.33,47.37,0.498,2.737 --122.33,47.38,0.498,2.734 --122.33,47.39,0.497,2.732 --122.33,47.40,0.497,2.729 --122.33,47.41,0.492,2.68 --122.33,47.42,0.492,2.68 --122.33,47.43,0.496,2.722 --122.33,47.44,0.499,2.742 --122.33,47.45,0.511,2.864 --122.33,47.46,0.522,2.963 --122.33,47.47,0.539,3.129 --122.33,47.48,0.561,3.344 --122.33,47.49,0.584,3.568 --122.33,47.50,0.608,3.796 --122.33,47.51,0.652,4.222 --122.33,47.52,0.678,4.464 --122.33,47.53,0.708,4.758 --122.33,47.54,0.749,5.156 --122.33,47.55,0.774,5.394 --122.33,47.56,0.809,5.73 --122.33,47.57,0.842,6.049 --122.33,47.58,0.866,6.277 --122.33,47.59,0.889,6.498 --122.33,47.60,0.895,6.559 --122.33,47.61,0.913,6.731 --122.33,47.62,0.913,6.73 --122.33,47.63,0.912,6.723 --122.33,47.64,0.912,6.716 --122.33,47.65,0.911,6.709 --122.33,47.66,0.9,6.606 --122.33,47.67,0.891,6.513 --122.33,47.68,0.875,6.366 --122.33,47.69,0.869,6.31 --122.33,47.70,0.85,6.119 --122.33,47.71,0.846,6.085 --122.33,47.72,0.823,5.863 --122.33,47.73,0.805,5.689 --122.33,47.74,0.797,5.61 --122.33,47.75,0.774,5.392 --122.33,47.76,0.762,5.274 --122.33,47.77,0.747,5.136 --122.33,47.78,0.724,4.915 --122.33,47.79,0.718,4.855 --122.33,47.80,0.699,4.67 --122.33,47.81,0.681,4.496 --122.33,47.82,0.678,4.469 --122.33,47.83,0.673,4.418 --122.33,47.84,0.661,4.306 --122.33,47.85,0.661,4.306 --122.33,47.86,0.658,4.277 --122.33,47.87,0.646,4.156 --122.33,47.88,0.643,4.128 --122.33,47.89,0.642,4.126 --122.33,47.90,0.642,4.119 --122.33,47.91,0.641,4.112 --122.33,47.92,0.64,4.104 --122.33,47.93,0.635,4.053 --122.33,47.94,0.627,3.977 --122.33,47.95,0.618,3.896 --122.33,47.96,0.617,3.885 --122.33,47.97,0.616,3.874 --122.33,47.98,0.615,3.863 --122.33,47.99,0.615,3.862 --122.33,48.00,0.615,3.864 --122.33,48.01,0.615,3.866 --122.33,48.02,0.616,3.869 --122.33,48.03,0.616,3.872 --122.33,48.04,0.617,3.877 --122.33,48.05,0.617,3.882 --122.33,48.06,0.617,3.886 --122.33,48.07,0.618,3.891 --122.33,48.08,0.618,3.895 --122.33,48.09,0.614,3.851 --122.33,48.10,0.6,3.721 --122.33,48.11,0.601,3.723 --122.33,48.12,0.601,3.724 --122.33,48.13,0.587,3.595 --122.33,48.14,0.574,3.471 --122.33,48.15,0.562,3.353 --122.33,48.16,0.542,3.158 --122.33,48.17,0.519,2.943 --122.33,48.18,0.502,2.772 --122.33,48.19,0.477,2.539 --122.33,48.20,0.453,2.308 --122.33,48.21,0.439,2.174 --122.33,48.22,0.415,1.943 --122.33,48.23,0.392,1.715 --122.33,48.24,0.368,1.487 --122.33,48.25,0.345,1.261 --122.33,48.26,0.324,1.064 --122.33,48.27,0.31,0.928 --122.33,48.28,0.288,0.712 --122.33,48.29,0.283,0.665 --122.33,48.30,0.263,0.475 --122.32,47.05,0.231,0.17 --122.32,47.06,0.231,0.171 --122.32,47.07,0.252,0.367 --122.32,47.08,0.257,0.415 --122.32,47.09,0.267,0.518 --122.32,47.10,0.289,0.731 --122.32,47.11,0.312,0.949 --122.32,47.12,0.335,1.173 --122.32,47.13,0.359,1.403 --122.32,47.14,0.383,1.633 --122.32,47.15,0.407,1.863 --122.32,47.16,0.431,2.094 --122.32,47.17,0.455,2.322 --122.32,47.18,0.478,2.548 --122.32,47.19,0.502,2.775 --122.32,47.20,0.525,3.001 --122.32,47.21,0.537,3.113 --122.32,47.22,0.555,3.29 --122.32,47.23,0.559,3.319 --122.32,47.24,0.578,3.508 --122.32,47.25,0.578,3.502 --122.32,47.26,0.577,3.493 --122.32,47.27,0.576,3.483 --122.32,47.28,0.568,3.408 --122.32,47.29,0.557,3.3 --122.32,47.30,0.555,3.289 --122.32,47.31,0.539,3.134 --122.32,47.32,0.534,3.085 --122.32,47.33,0.533,3.075 --122.32,47.34,0.531,3.052 --122.32,47.35,0.513,2.885 --122.32,47.36,0.513,2.882 --122.32,47.37,0.513,2.88 --122.32,47.38,0.512,2.869 --122.32,47.39,0.512,2.868 --122.32,47.40,0.499,2.747 --122.32,47.41,0.493,2.689 --122.32,47.42,0.493,2.687 --122.32,47.43,0.512,2.867 --122.32,47.44,0.512,2.87 --122.32,47.45,0.516,2.906 --122.32,47.46,0.531,3.055 --122.32,47.47,0.54,3.138 --122.32,47.48,0.562,3.352 --122.32,47.49,0.585,3.575 --122.32,47.50,0.623,3.935 --122.32,47.51,0.653,4.226 --122.32,47.52,0.678,4.467 --122.32,47.53,0.724,4.913 --122.32,47.54,0.749,5.156 --122.32,47.55,0.778,5.432 --122.32,47.56,0.818,5.818 --122.32,47.57,0.842,6.048 --122.32,47.58,0.866,6.276 --122.32,47.59,0.889,6.497 --122.32,47.60,0.895,6.557 --122.32,47.61,0.913,6.731 --122.32,47.62,0.913,6.729 --122.32,47.63,0.912,6.722 --122.32,47.64,0.912,6.716 --122.32,47.65,0.911,6.709 --122.32,47.66,0.906,6.661 --122.32,47.67,0.897,6.578 --122.32,47.68,0.885,6.458 --122.32,47.69,0.872,6.337 --122.32,47.70,0.863,6.25 --122.32,47.71,0.846,6.085 --122.32,47.72,0.823,5.865 --122.32,47.73,0.82,5.831 --122.32,47.74,0.797,5.612 --122.32,47.75,0.778,5.432 --122.32,47.76,0.771,5.361 --122.32,47.77,0.748,5.139 --122.32,47.78,0.725,4.918 --122.32,47.79,0.721,4.878 --122.32,47.80,0.699,4.672 --122.32,47.81,0.693,4.613 --122.32,47.82,0.681,4.495 --122.32,47.83,0.673,4.419 --122.32,47.84,0.661,4.307 --122.32,47.85,0.661,4.307 --122.32,47.86,0.661,4.309 --122.32,47.87,0.645,4.154 --122.32,47.88,0.643,4.127 --122.32,47.89,0.642,4.125 --122.32,47.90,0.642,4.118 --122.32,47.91,0.641,4.111 --122.32,47.92,0.64,4.104 --122.32,47.93,0.639,4.096 --122.32,47.94,0.629,3.996 --122.32,47.95,0.624,3.947 --122.32,47.96,0.618,3.887 --122.32,47.97,0.616,3.876 --122.32,47.98,0.615,3.867 --122.32,47.99,0.615,3.866 --122.32,48.00,0.616,3.869 --122.32,48.01,0.616,3.872 --122.32,48.02,0.616,3.874 --122.32,48.03,0.617,3.877 --122.32,48.04,0.617,3.882 --122.32,48.05,0.617,3.886 --122.32,48.06,0.618,3.89 --122.32,48.07,0.618,3.894 --122.32,48.08,0.619,3.897 --122.32,48.09,0.614,3.851 --122.32,48.10,0.6,3.721 --122.32,48.11,0.6,3.722 --122.32,48.12,0.601,3.723 --122.32,48.13,0.581,3.539 --122.32,48.14,0.565,3.386 --122.32,48.15,0.562,3.35 --122.32,48.16,0.541,3.152 --122.32,48.17,0.516,2.911 --122.32,48.18,0.491,2.673 --122.32,48.19,0.467,2.439 --122.32,48.20,0.453,2.3 --122.32,48.21,0.434,2.124 --122.32,48.22,0.41,1.895 --122.32,48.23,0.387,1.668 --122.32,48.24,0.363,1.443 --122.32,48.25,0.34,1.218 --122.32,48.26,0.321,1.032 --122.32,48.27,0.298,0.814 --122.32,48.28,0.283,0.666 --122.32,48.29,0.273,0.572 --122.31,47.05,0.231,0.171 --122.31,47.06,0.232,0.179 --122.31,47.07,0.252,0.371 --122.31,47.08,0.262,0.466 --122.31,47.09,0.268,0.521 --122.31,47.10,0.29,0.735 --122.31,47.11,0.312,0.952 --122.31,47.12,0.336,1.177 --122.31,47.13,0.36,1.406 --122.31,47.14,0.384,1.637 --122.31,47.15,0.407,1.866 --122.31,47.16,0.431,2.097 --122.31,47.17,0.455,2.325 --122.31,47.18,0.479,2.551 --122.31,47.19,0.502,2.778 --122.31,47.20,0.526,3.004 --122.31,47.21,0.548,3.219 --122.31,47.22,0.558,3.314 --122.31,47.23,0.573,3.463 --122.31,47.24,0.579,3.512 --122.31,47.25,0.578,3.506 --122.31,47.26,0.577,3.497 --122.31,47.27,0.576,3.488 --122.31,47.28,0.573,3.46 --122.31,47.29,0.572,3.449 --122.31,47.30,0.562,3.354 --122.31,47.31,0.551,3.242 --122.31,47.32,0.549,3.232 --122.31,47.33,0.548,3.222 --122.31,47.34,0.532,3.061 --122.31,47.35,0.529,3.031 --122.31,47.36,0.528,3.027 --122.31,47.37,0.525,2.996 --122.31,47.38,0.513,2.877 --122.31,47.39,0.512,2.876 --122.31,47.40,0.508,2.835 --122.31,47.41,0.508,2.833 --122.31,47.42,0.508,2.831 --122.31,47.43,0.512,2.876 --122.31,47.44,0.526,3.011 --122.31,47.45,0.531,3.052 --122.31,47.46,0.533,3.072 --122.31,47.47,0.554,3.277 --122.31,47.48,0.576,3.491 --122.31,47.49,0.599,3.713 --122.31,47.50,0.629,3.998 --122.31,47.51,0.653,4.23 --122.31,47.52,0.692,4.601 --122.31,47.53,0.724,4.915 --122.31,47.54,0.749,5.156 --122.31,47.55,0.793,5.578 --122.31,47.56,0.818,5.818 --122.31,47.57,0.842,6.047 --122.31,47.58,0.866,6.274 --122.31,47.59,0.889,6.496 --122.31,47.60,0.903,6.636 --122.31,47.61,0.913,6.733 --122.31,47.62,0.913,6.728 --122.31,47.63,0.912,6.721 --122.31,47.64,0.912,6.715 --122.31,47.65,0.911,6.709 --122.31,47.66,0.91,6.703 --122.31,47.67,0.897,6.577 --122.31,47.68,0.89,6.504 --122.31,47.69,0.872,6.337 --122.31,47.70,0.869,6.302 --122.31,47.71,0.846,6.086 --122.31,47.72,0.827,5.901 --122.31,47.73,0.82,5.832 --122.31,47.74,0.797,5.613 --122.31,47.75,0.784,5.493 --122.31,47.76,0.771,5.362 --122.31,47.77,0.748,5.14 --122.31,47.78,0.73,4.968 --122.31,47.79,0.722,4.887 --122.31,47.80,0.701,4.688 --122.31,47.81,0.697,4.649 --122.31,47.82,0.681,4.496 --122.31,47.83,0.673,4.418 --122.31,47.84,0.661,4.306 --122.31,47.85,0.661,4.306 --122.31,47.86,0.661,4.308 --122.31,47.87,0.645,4.151 --122.31,47.88,0.642,4.125 --122.31,47.89,0.642,4.123 --122.31,47.90,0.641,4.117 --122.31,47.91,0.641,4.11 --122.31,47.92,0.64,4.103 --122.31,47.93,0.639,4.097 --122.31,47.94,0.638,4.088 --122.31,47.95,0.624,3.947 --122.31,47.96,0.618,3.889 --122.31,47.97,0.617,3.88 --122.31,47.98,0.616,3.871 --122.31,47.99,0.616,3.871 --122.31,48.00,0.616,3.874 --122.31,48.01,0.617,3.877 --122.31,48.02,0.617,3.879 --122.31,48.03,0.617,3.882 --122.31,48.04,0.617,3.886 --122.31,48.05,0.618,3.889 --122.31,48.06,0.618,3.892 --122.31,48.07,0.618,3.895 --122.31,48.08,0.619,3.897 --122.31,48.09,0.613,3.848 --122.31,48.10,0.6,3.718 --122.31,48.11,0.6,3.718 --122.31,48.12,0.588,3.607 --122.31,48.13,0.581,3.532 --122.31,48.14,0.565,3.378 --122.31,48.15,0.561,3.342 --122.31,48.16,0.54,3.137 --122.31,48.17,0.515,2.903 --122.31,48.18,0.491,2.667 --122.31,48.19,0.466,2.433 --122.31,48.20,0.443,2.203 --122.31,48.21,0.418,1.972 --122.31,48.22,0.395,1.743 --122.31,48.23,0.371,1.517 --122.31,48.24,0.348,1.291 --122.31,48.25,0.324,1.067 --122.31,48.26,0.32,1.025 --122.31,48.27,0.297,0.807 --122.31,48.28,0.282,0.662 --122.31,48.29,0.272,0.567 --122.30,47.05,0.231,0.171 --122.30,47.06,0.248,0.329 --122.30,47.07,0.252,0.372 --122.30,47.08,0.262,0.468 --122.30,47.09,0.268,0.524 --122.30,47.10,0.29,0.738 --122.30,47.11,0.313,0.956 --122.30,47.12,0.336,1.18 --122.30,47.13,0.36,1.409 --122.30,47.14,0.384,1.64 --122.30,47.15,0.408,1.87 --122.30,47.16,0.432,2.1 --122.30,47.17,0.471,2.473 --122.30,47.18,0.494,2.698 --122.30,47.19,0.517,2.924 --122.30,47.20,0.537,3.108 --122.30,47.21,0.549,3.229 --122.30,47.22,0.566,3.395 --122.30,47.23,0.579,3.515 --122.30,47.24,0.591,3.632 --122.30,47.25,0.592,3.64 --122.30,47.26,0.591,3.63 --122.30,47.27,0.59,3.62 --122.30,47.28,0.589,3.609 --122.30,47.29,0.585,3.577 --122.30,47.30,0.567,3.401 --122.30,47.31,0.566,3.391 --122.30,47.32,0.565,3.381 --122.30,47.33,0.554,3.277 --122.30,47.34,0.544,3.182 --122.30,47.35,0.544,3.177 --122.30,47.36,0.533,3.069 --122.30,47.37,0.526,3.004 --122.30,47.38,0.524,2.985 --122.30,47.39,0.523,2.982 --122.30,47.40,0.523,2.98 --122.30,47.41,0.523,2.977 --122.30,47.42,0.523,2.976 --122.30,47.43,0.523,2.976 --122.30,47.44,0.532,3.066 --122.30,47.45,0.532,3.068 --122.30,47.46,0.548,3.219 --122.30,47.47,0.57,3.426 --122.30,47.48,0.583,3.556 --122.30,47.49,0.606,3.778 --122.30,47.50,0.63,4.004 --122.30,47.51,0.66,4.295 --122.30,47.52,0.699,4.673 --122.30,47.53,0.725,4.916 --122.30,47.54,0.754,5.199 --122.30,47.55,0.794,5.586 --122.30,47.56,0.818,5.817 --122.30,47.57,0.842,6.046 --122.30,47.58,0.866,6.273 --122.30,47.59,0.889,6.494 --122.30,47.60,0.911,6.709 --122.30,47.61,0.913,6.731 --122.30,47.62,0.913,6.726 --122.30,47.63,0.912,6.72 --122.30,47.64,0.911,6.714 --122.30,47.65,0.911,6.709 --122.30,47.66,0.91,6.703 --122.30,47.67,0.897,6.576 --122.30,47.68,0.89,6.505 --122.30,47.69,0.872,6.337 --122.30,47.70,0.869,6.303 --122.30,47.71,0.846,6.086 --122.30,47.72,0.831,5.942 --122.30,47.73,0.82,5.832 --122.30,47.74,0.797,5.614 --122.30,47.75,0.788,5.529 --122.30,47.76,0.771,5.363 --122.30,47.77,0.748,5.141 --122.30,47.78,0.742,5.081 --122.30,47.79,0.722,4.888 --122.30,47.80,0.701,4.689 --122.30,47.81,0.697,4.649 --122.30,47.82,0.681,4.497 --122.30,47.83,0.673,4.417 --122.30,47.84,0.661,4.306 --122.30,47.85,0.661,4.305 --122.30,47.86,0.661,4.307 --122.30,47.87,0.645,4.148 --122.30,47.88,0.642,4.122 --122.30,47.89,0.642,4.12 --122.30,47.90,0.641,4.115 --122.30,47.91,0.641,4.109 --122.30,47.92,0.64,4.103 --122.30,47.93,0.639,4.097 --122.30,47.94,0.639,4.09 --122.30,47.95,0.624,3.947 --122.30,47.96,0.618,3.891 --122.30,47.97,0.617,3.883 --122.30,47.98,0.616,3.876 --122.30,47.99,0.616,3.876 --122.30,48.00,0.617,3.879 --122.30,48.01,0.617,3.882 --122.30,48.02,0.617,3.884 --122.30,48.03,0.618,3.887 --122.30,48.04,0.618,3.889 --122.30,48.05,0.618,3.891 --122.30,48.06,0.618,3.893 --122.30,48.07,0.618,3.896 --122.30,48.08,0.618,3.896 --122.30,48.09,0.613,3.846 --122.30,48.10,0.6,3.715 --122.30,48.11,0.6,3.714 --122.30,48.12,0.588,3.601 --122.30,48.13,0.58,3.526 --122.30,48.14,0.564,3.369 --122.30,48.15,0.546,3.2 --122.30,48.16,0.523,2.979 --122.30,48.17,0.514,2.894 --122.30,48.18,0.49,2.659 --122.30,48.19,0.466,2.426 --122.30,48.20,0.442,2.194 --122.30,48.21,0.417,1.961 --122.30,48.22,0.393,1.73 --122.30,48.23,0.37,1.501 --122.30,48.24,0.346,1.273 --122.30,48.25,0.323,1.055 --122.30,48.26,0.306,0.889 --122.30,48.27,0.284,0.676 --122.30,48.28,0.281,0.652 --122.30,48.29,0.262,0.464 --122.29,47.05,0.231,0.171 --122.29,47.06,0.245,0.304 --122.29,47.07,0.252,0.373 --122.29,47.08,0.262,0.47 --122.29,47.09,0.28,0.639 --122.29,47.10,0.291,0.741 --122.29,47.11,0.313,0.959 --122.29,47.12,0.337,1.184 --122.29,47.13,0.36,1.413 --122.29,47.14,0.384,1.643 --122.29,47.15,0.418,1.965 --122.29,47.16,0.444,2.213 --122.29,47.17,0.476,2.521 --122.29,47.18,0.499,2.748 --122.29,47.19,0.523,2.976 --122.29,47.20,0.537,3.109 --122.29,47.21,0.559,3.324 --122.29,47.22,0.578,3.51 --122.29,47.23,0.585,3.571 --122.29,47.24,0.599,3.71 --122.29,47.25,0.607,3.789 --122.29,47.26,0.606,3.78 --122.29,47.27,0.605,3.77 --122.29,47.28,0.604,3.759 --122.29,47.29,0.586,3.584 --122.29,47.30,0.583,3.551 --122.29,47.31,0.582,3.542 --122.29,47.32,0.577,3.5 --122.29,47.33,0.56,3.337 --122.29,47.34,0.56,3.331 --122.29,47.35,0.55,3.239 --122.29,47.36,0.54,3.138 --122.29,47.37,0.539,3.134 --122.29,47.38,0.539,3.131 --122.29,47.39,0.539,3.127 --122.29,47.40,0.533,3.072 --122.29,47.41,0.533,3.072 --122.29,47.42,0.533,3.072 --122.29,47.43,0.533,3.073 --122.29,47.44,0.538,3.12 --122.29,47.45,0.542,3.163 --122.29,47.46,0.564,3.368 --122.29,47.47,0.572,3.45 --122.29,47.48,0.588,3.602 --122.29,47.49,0.611,3.821 --122.29,47.50,0.634,4.044 --122.29,47.51,0.674,4.434 --122.29,47.52,0.699,4.674 --122.29,47.53,0.725,4.916 --122.29,47.54,0.757,5.229 --122.29,47.55,0.794,5.585 --122.29,47.56,0.818,5.816 --122.29,47.57,0.842,6.044 --122.29,47.58,0.865,6.272 --122.29,47.59,0.888,6.493 --122.29,47.60,0.911,6.708 --122.29,47.61,0.913,6.728 --122.29,47.62,0.912,6.724 --122.29,47.63,0.912,6.719 --122.29,47.64,0.911,6.714 --122.29,47.65,0.911,6.709 --122.29,47.66,0.91,6.703 --122.29,47.67,0.897,6.575 --122.29,47.68,0.89,6.506 --122.29,47.69,0.872,6.337 --122.29,47.70,0.869,6.304 --122.29,47.71,0.847,6.099 --122.29,47.72,0.843,6.052 --122.29,47.73,0.82,5.833 --122.29,47.74,0.804,5.684 --122.29,47.75,0.794,5.583 --122.29,47.76,0.771,5.364 --122.29,47.77,0.748,5.142 --122.29,47.78,0.742,5.084 --122.29,47.79,0.722,4.888 --122.29,47.80,0.701,4.691 --122.29,47.81,0.697,4.649 --122.29,47.82,0.681,4.497 --122.29,47.83,0.673,4.416 --122.29,47.84,0.661,4.305 --122.29,47.85,0.661,4.304 --122.29,47.86,0.661,4.305 --122.29,47.87,0.644,4.145 --122.29,47.88,0.642,4.12 --122.29,47.89,0.642,4.118 --122.29,47.90,0.641,4.113 --122.29,47.91,0.641,4.108 --122.29,47.92,0.64,4.103 --122.29,47.93,0.639,4.098 --122.29,47.94,0.632,4.023 --122.29,47.95,0.619,3.9 --122.29,47.96,0.618,3.893 --122.29,47.97,0.617,3.886 --122.29,47.98,0.617,3.88 --122.29,47.99,0.617,3.88 --122.29,48.00,0.617,3.883 --122.29,48.01,0.617,3.886 --122.29,48.02,0.618,3.889 --122.29,48.03,0.618,3.891 --122.29,48.04,0.618,3.892 --122.29,48.05,0.618,3.894 --122.29,48.06,0.618,3.895 --122.29,48.07,0.618,3.896 --122.29,48.08,0.618,3.896 --122.29,48.09,0.602,3.736 --122.29,48.10,0.599,3.712 --122.29,48.11,0.598,3.697 --122.29,48.12,0.58,3.524 --122.29,48.13,0.574,3.47 --122.29,48.14,0.56,3.331 --122.29,48.15,0.541,3.15 --122.29,48.16,0.519,2.935 --122.29,48.17,0.503,2.788 --122.29,48.18,0.479,2.556 --122.29,48.19,0.455,2.326 --122.29,48.20,0.431,2.095 --122.29,48.21,0.407,1.864 --122.29,48.22,0.383,1.635 --122.29,48.23,0.36,1.408 --122.29,48.24,0.336,1.182 --122.29,48.25,0.322,1.039 --122.29,48.26,0.299,0.819 --122.29,48.27,0.282,0.656 --122.29,48.28,0.266,0.507 --122.28,47.04,0.231,0.171 --122.28,47.05,0.234,0.196 --122.28,47.06,0.242,0.277 --122.28,47.07,0.256,0.412 --122.28,47.08,0.266,0.504 --122.28,47.09,0.283,0.664 --122.28,47.10,0.298,0.81 --122.28,47.11,0.32,1.026 --122.28,47.12,0.343,1.25 --122.28,47.13,0.367,1.478 --122.28,47.14,0.391,1.707 --122.28,47.15,0.429,2.071 --122.28,47.16,0.452,2.298 --122.28,47.17,0.476,2.524 --122.28,47.18,0.499,2.751 --122.28,47.19,0.523,2.979 --122.28,47.20,0.547,3.205 --122.28,47.21,0.57,3.428 --122.28,47.22,0.579,3.514 --122.28,47.23,0.6,3.714 --122.28,47.24,0.602,3.742 --122.28,47.25,0.619,3.902 --122.28,47.26,0.618,3.895 --122.28,47.27,0.618,3.887 --122.28,47.28,0.609,3.809 --122.28,47.29,0.599,3.712 --122.28,47.30,0.598,3.702 --122.28,47.31,0.597,3.693 --122.28,47.32,0.578,3.509 --122.28,47.33,0.576,3.488 --122.28,47.34,0.573,3.457 --122.28,47.35,0.556,3.291 --122.28,47.36,0.555,3.286 --122.28,47.37,0.555,3.282 --122.28,47.38,0.553,3.266 --122.28,47.39,0.542,3.158 --122.28,47.40,0.534,3.088 --122.28,47.41,0.534,3.086 --122.28,47.42,0.534,3.084 --122.28,47.43,0.534,3.087 --122.28,47.44,0.553,3.265 --122.28,47.45,0.558,3.311 --122.28,47.46,0.573,3.455 --122.28,47.47,0.581,3.538 --122.28,47.48,0.603,3.75 --122.28,47.49,0.626,3.969 --122.28,47.50,0.649,4.191 --122.28,47.51,0.675,4.437 --122.28,47.52,0.7,4.676 --122.28,47.53,0.725,4.923 --122.28,47.54,0.77,5.353 --122.28,47.55,0.794,5.584 --122.28,47.56,0.818,5.815 --122.28,47.57,0.842,6.043 --122.28,47.58,0.865,6.27 --122.28,47.59,0.888,6.491 --122.28,47.60,0.897,6.574 --122.28,47.61,0.913,6.726 --122.28,47.62,0.912,6.722 --122.28,47.63,0.912,6.717 --122.28,47.64,0.911,6.713 --122.28,47.65,0.911,6.708 --122.28,47.66,0.91,6.703 --122.28,47.67,0.897,6.574 --122.28,47.68,0.89,6.506 --122.28,47.69,0.872,6.336 --122.28,47.70,0.869,6.306 --122.28,47.71,0.848,6.105 --122.28,47.72,0.843,6.052 --122.28,47.73,0.82,5.833 --122.28,47.74,0.806,5.697 --122.28,47.75,0.794,5.584 --122.28,47.76,0.771,5.365 --122.28,47.77,0.748,5.143 --122.28,47.78,0.742,5.086 --122.28,47.79,0.722,4.889 --122.28,47.80,0.701,4.692 --122.28,47.81,0.697,4.649 --122.28,47.82,0.681,4.498 --122.28,47.83,0.672,4.414 --122.28,47.84,0.661,4.305 --122.28,47.85,0.661,4.303 --122.28,47.86,0.655,4.243 --122.28,47.87,0.641,4.117 --122.28,47.88,0.641,4.117 --122.28,47.89,0.641,4.116 --122.28,47.90,0.641,4.112 --122.28,47.91,0.64,4.107 --122.28,47.92,0.64,4.103 --122.28,47.93,0.63,4.005 --122.28,47.94,0.62,3.907 --122.28,47.95,0.619,3.902 --122.28,47.96,0.618,3.895 --122.28,47.97,0.618,3.889 --122.28,47.98,0.617,3.884 --122.28,47.99,0.617,3.884 --122.28,48.00,0.618,3.887 --122.28,48.01,0.618,3.89 --122.28,48.02,0.618,3.893 --122.28,48.03,0.618,3.895 --122.28,48.04,0.618,3.896 --122.28,48.05,0.618,3.896 --122.28,48.06,0.618,3.896 --122.28,48.07,0.619,3.897 --122.28,48.08,0.609,3.8 --122.28,48.09,0.599,3.711 --122.28,48.10,0.599,3.708 --122.28,48.11,0.583,3.555 --122.28,48.12,0.579,3.519 --122.28,48.13,0.56,3.33 --122.28,48.14,0.557,3.301 --122.28,48.15,0.535,3.089 --122.28,48.16,0.517,2.915 --122.28,48.17,0.492,2.683 --122.28,48.18,0.468,2.45 --122.28,48.19,0.444,2.218 --122.28,48.20,0.42,1.985 --122.28,48.21,0.396,1.752 --122.28,48.22,0.372,1.521 --122.28,48.23,0.348,1.292 --122.28,48.24,0.324,1.064 --122.28,48.25,0.317,1.0 --122.28,48.26,0.295,0.783 --122.28,48.27,0.276,0.598 --122.28,48.28,0.261,0.459 --122.27,47.04,0.231,0.171 --122.27,47.05,0.24,0.259 --122.27,47.06,0.242,0.278 --122.27,47.07,0.262,0.468 --122.27,47.08,0.266,0.507 --122.27,47.09,0.288,0.72 --122.27,47.10,0.311,0.935 --122.27,47.11,0.334,1.156 --122.27,47.12,0.357,1.384 --122.27,47.13,0.381,1.614 --122.27,47.14,0.405,1.845 --122.27,47.15,0.429,2.074 --122.27,47.16,0.454,2.309 --122.27,47.17,0.477,2.533 --122.27,47.18,0.5,2.759 --122.27,47.19,0.524,2.985 --122.27,47.20,0.547,3.21 --122.27,47.21,0.57,3.432 --122.27,47.22,0.593,3.653 --122.27,47.23,0.6,3.719 --122.27,47.24,0.618,3.894 --122.27,47.25,0.62,3.909 --122.27,47.26,0.619,3.902 --122.27,47.27,0.618,3.895 --122.27,47.28,0.616,3.873 --122.27,47.29,0.615,3.864 --122.27,47.30,0.614,3.855 --122.27,47.31,0.602,3.733 --122.27,47.32,0.593,3.648 --122.27,47.33,0.592,3.64 --122.27,47.34,0.574,3.466 --122.27,47.35,0.571,3.442 --122.27,47.36,0.571,3.437 --122.27,47.37,0.567,3.396 --122.27,47.38,0.554,3.276 --122.27,47.39,0.55,3.239 --122.27,47.40,0.55,3.236 --122.27,47.41,0.549,3.232 --122.27,47.42,0.549,3.23 --122.27,47.43,0.55,3.234 --122.27,47.44,0.554,3.274 --122.27,47.45,0.573,3.46 --122.27,47.46,0.575,3.48 --122.27,47.47,0.593,3.65 --122.27,47.48,0.605,3.765 --122.27,47.49,0.628,3.985 --122.27,47.50,0.651,4.207 --122.27,47.51,0.675,4.441 --122.27,47.52,0.7,4.678 --122.27,47.53,0.741,5.075 --122.27,47.54,0.77,5.353 --122.27,47.55,0.794,5.583 --122.27,47.56,0.818,5.814 --122.27,47.57,0.842,6.042 --122.27,47.58,0.865,6.269 --122.27,47.59,0.888,6.49 --122.27,47.60,0.894,6.542 --122.27,47.61,0.912,6.724 --122.27,47.62,0.912,6.721 --122.27,47.63,0.912,6.716 --122.27,47.64,0.911,6.712 --122.27,47.65,0.911,6.708 --122.27,47.66,0.909,6.687 --122.27,47.67,0.891,6.513 --122.27,47.68,0.89,6.507 --122.27,47.69,0.872,6.336 --122.27,47.70,0.869,6.306 --122.27,47.71,0.848,6.106 --122.27,47.72,0.834,5.966 --122.27,47.73,0.82,5.833 --122.27,47.74,0.806,5.699 --122.27,47.75,0.794,5.585 --122.27,47.76,0.771,5.366 --122.27,47.77,0.748,5.144 --122.27,47.78,0.742,5.088 --122.27,47.79,0.722,4.89 --122.27,47.80,0.701,4.694 --122.27,47.81,0.697,4.649 --122.27,47.82,0.681,4.498 --122.27,47.83,0.672,4.413 --122.27,47.84,0.661,4.304 --122.27,47.85,0.661,4.302 --122.27,47.86,0.646,4.159 --122.27,47.87,0.641,4.115 --122.27,47.88,0.641,4.115 --122.27,47.89,0.641,4.114 --122.27,47.90,0.641,4.11 --122.27,47.91,0.635,4.056 --122.27,47.92,0.627,3.975 --122.27,47.93,0.62,3.912 --122.27,47.94,0.62,3.908 --122.27,47.95,0.619,3.903 --122.27,47.96,0.619,3.898 --122.27,47.97,0.618,3.892 --122.27,47.98,0.618,3.887 --122.27,47.99,0.618,3.888 --122.27,48.00,0.618,3.891 --122.27,48.01,0.618,3.894 --122.27,48.02,0.619,3.897 --122.27,48.03,0.619,3.898 --122.27,48.04,0.619,3.898 --122.27,48.05,0.619,3.898 --122.27,48.06,0.619,3.898 --122.27,48.07,0.615,3.865 --122.27,48.08,0.599,3.712 --122.27,48.09,0.599,3.709 --122.27,48.10,0.59,3.618 --122.27,48.11,0.579,3.518 --122.27,48.12,0.567,3.397 --122.27,48.13,0.559,3.323 --122.27,48.14,0.541,3.155 --122.27,48.15,0.519,2.937 --122.27,48.16,0.516,2.907 --122.27,48.17,0.492,2.676 --122.27,48.18,0.468,2.444 --122.27,48.19,0.443,2.212 --122.27,48.20,0.419,1.978 --122.27,48.21,0.395,1.745 --122.27,48.22,0.371,1.514 --122.27,48.23,0.347,1.285 --122.27,48.24,0.323,1.057 --122.27,48.25,0.302,0.851 --122.27,48.26,0.281,0.649 --122.27,48.27,0.275,0.591 --122.26,47.03,0.231,0.171 --122.26,47.04,0.231,0.171 --122.26,47.05,0.241,0.261 --122.26,47.06,0.243,0.28 --122.26,47.07,0.262,0.47 --122.26,47.08,0.267,0.511 --122.26,47.09,0.289,0.724 --122.26,47.10,0.311,0.939 --122.26,47.11,0.334,1.16 --122.26,47.12,0.358,1.388 --122.26,47.13,0.382,1.618 --122.26,47.14,0.406,1.849 --122.26,47.15,0.43,2.078 --122.26,47.16,0.469,2.458 --122.26,47.17,0.492,2.682 --122.26,47.18,0.516,2.908 --122.26,47.19,0.539,3.135 --122.26,47.20,0.563,3.36 --122.26,47.21,0.586,3.582 --122.26,47.22,0.6,3.714 --122.26,47.23,0.612,3.833 --122.26,47.24,0.621,3.919 --122.26,47.25,0.635,4.052 --122.26,47.26,0.634,4.043 --122.26,47.27,0.633,4.035 --122.26,47.28,0.632,4.026 --122.26,47.29,0.628,3.986 --122.26,47.30,0.617,3.883 --122.26,47.31,0.609,3.809 --122.26,47.32,0.609,3.8 --122.26,47.33,0.597,3.687 --122.26,47.34,0.588,3.598 --122.26,47.35,0.587,3.593 --122.26,47.36,0.575,3.477 --122.26,47.37,0.567,3.404 --122.26,47.38,0.566,3.392 --122.26,47.39,0.566,3.388 --122.26,47.40,0.565,3.384 --122.26,47.41,0.558,3.314 --122.26,47.42,0.554,3.279 --122.26,47.43,0.565,3.377 --122.26,47.44,0.567,3.403 --122.26,47.45,0.574,3.469 --122.26,47.46,0.581,3.538 --122.26,47.47,0.594,3.658 --122.26,47.48,0.614,3.85 --122.26,47.49,0.628,3.992 --122.26,47.50,0.651,4.213 --122.26,47.51,0.676,4.445 --122.26,47.52,0.709,4.77 --122.26,47.53,0.745,5.117 --122.26,47.54,0.77,5.353 --122.26,47.55,0.794,5.583 --122.26,47.56,0.818,5.813 --122.26,47.57,0.841,6.041 --122.26,47.58,0.865,6.268 --122.26,47.59,0.888,6.489 --122.26,47.60,0.893,6.539 --122.26,47.61,0.912,6.721 --122.26,47.62,0.912,6.718 --122.26,47.63,0.912,6.715 --122.26,47.64,0.911,6.711 --122.26,47.65,0.911,6.707 --122.26,47.66,0.899,6.597 --122.26,47.67,0.89,6.512 --122.26,47.68,0.889,6.499 --122.26,47.69,0.87,6.316 --122.26,47.70,0.864,6.261 --122.26,47.71,0.846,6.084 --122.26,47.72,0.828,5.908 --122.26,47.73,0.82,5.833 --122.26,47.74,0.806,5.7 --122.26,47.75,0.791,5.552 --122.26,47.76,0.771,5.367 --122.26,47.77,0.748,5.145 --122.26,47.78,0.743,5.091 --122.26,47.79,0.722,4.891 --122.26,47.80,0.702,4.695 --122.26,47.81,0.697,4.648 --122.26,47.82,0.681,4.498 --122.26,47.83,0.67,4.394 --122.26,47.84,0.661,4.304 --122.26,47.85,0.661,4.301 --122.26,47.86,0.644,4.144 --122.26,47.87,0.641,4.113 --122.26,47.88,0.641,4.112 --122.26,47.89,0.64,4.105 --122.26,47.90,0.636,4.064 --122.26,47.91,0.621,3.916 --122.26,47.92,0.62,3.914 --122.26,47.93,0.62,3.912 --122.26,47.94,0.62,3.908 --122.26,47.95,0.619,3.904 --122.26,47.96,0.619,3.9 --122.26,47.97,0.618,3.895 --122.26,47.98,0.618,3.891 --122.26,47.99,0.618,3.892 --122.26,48.00,0.618,3.895 --122.26,48.01,0.619,3.898 --122.26,48.02,0.619,3.9 --122.26,48.03,0.619,3.902 --122.26,48.04,0.619,3.901 --122.26,48.05,0.619,3.9 --122.26,48.06,0.619,3.899 --122.26,48.07,0.601,3.727 --122.26,48.08,0.599,3.711 --122.26,48.09,0.596,3.683 --122.26,48.10,0.579,3.518 --122.26,48.11,0.579,3.513 --122.26,48.12,0.566,3.391 --122.26,48.13,0.548,3.22 --122.26,48.14,0.538,3.124 --122.26,48.15,0.518,2.929 --122.26,48.16,0.5,2.755 --122.26,48.17,0.476,2.527 --122.26,48.18,0.452,2.297 --122.26,48.19,0.428,2.067 --122.26,48.20,0.404,1.835 --122.26,48.21,0.38,1.603 --122.26,48.22,0.356,1.374 --122.26,48.23,0.333,1.147 --122.26,48.24,0.31,0.924 --122.26,48.25,0.299,0.826 --122.26,48.26,0.28,0.643 --122.26,48.27,0.262,0.468 --122.25,47.03,0.231,0.171 --122.25,47.04,0.236,0.218 --122.25,47.05,0.242,0.278 --122.25,47.06,0.243,0.282 --122.25,47.07,0.263,0.472 --122.25,47.08,0.279,0.634 --122.25,47.09,0.289,0.727 --122.25,47.10,0.312,0.943 --122.25,47.11,0.335,1.165 --122.25,47.12,0.358,1.392 --122.25,47.13,0.382,1.623 --122.25,47.14,0.406,1.854 --122.25,47.15,0.441,2.185 --122.25,47.16,0.473,2.499 --122.25,47.17,0.497,2.726 --122.25,47.18,0.521,2.954 --122.25,47.19,0.544,3.183 --122.25,47.20,0.568,3.41 --122.25,47.21,0.591,3.635 --122.25,47.22,0.605,3.764 --122.25,47.23,0.621,3.923 --122.25,47.24,0.63,4.008 --122.25,47.25,0.641,4.115 --122.25,47.26,0.65,4.195 --122.25,47.27,0.649,4.187 --122.25,47.28,0.648,4.178 --122.25,47.29,0.629,3.994 --122.25,47.30,0.626,3.971 --122.25,47.31,0.625,3.962 --122.25,47.32,0.62,3.91 --122.25,47.33,0.604,3.756 --122.25,47.34,0.603,3.749 --122.25,47.35,0.593,3.646 --122.25,47.36,0.583,3.551 --122.25,47.37,0.582,3.546 --122.25,47.38,0.575,3.48 --122.25,47.39,0.575,3.478 --122.25,47.40,0.575,3.476 --122.25,47.41,0.561,3.343 --122.25,47.42,0.561,3.34 --122.25,47.43,0.575,3.474 --122.25,47.44,0.575,3.475 --122.25,47.45,0.575,3.477 --122.25,47.46,0.587,3.593 --122.25,47.47,0.604,3.755 --122.25,47.48,0.615,3.858 --122.25,47.49,0.633,4.04 --122.25,47.50,0.652,4.221 --122.25,47.51,0.678,4.473 --122.25,47.52,0.721,4.881 --122.25,47.53,0.746,5.118 --122.25,47.54,0.77,5.353 --122.25,47.55,0.794,5.583 --122.25,47.56,0.818,5.812 --122.25,47.57,0.841,6.04 --122.25,47.58,0.865,6.266 --122.25,47.59,0.888,6.486 --122.25,47.60,0.891,6.519 --122.25,47.61,0.91,6.703 --122.25,47.62,0.912,6.715 --122.25,47.63,0.911,6.712 --122.25,47.64,0.911,6.708 --122.25,47.65,0.91,6.698 --122.25,47.66,0.898,6.589 --122.25,47.67,0.89,6.511 --122.25,47.68,0.874,6.358 --122.25,47.69,0.87,6.315 --122.25,47.70,0.849,6.117 --122.25,47.71,0.846,6.083 --122.25,47.72,0.828,5.907 --122.25,47.73,0.82,5.832 --122.25,47.74,0.798,5.626 --122.25,47.75,0.786,5.505 --122.25,47.76,0.771,5.366 --122.25,47.77,0.748,5.145 --122.25,47.78,0.743,5.092 --122.25,47.79,0.722,4.891 --122.25,47.80,0.702,4.696 --122.25,47.81,0.697,4.647 --122.25,47.82,0.677,4.462 --122.25,47.83,0.661,4.307 --122.25,47.84,0.661,4.301 --122.25,47.85,0.651,4.206 --122.25,47.86,0.641,4.111 --122.25,47.87,0.641,4.11 --122.25,47.88,0.641,4.109 --122.25,47.89,0.625,3.959 --122.25,47.90,0.621,3.917 --122.25,47.91,0.62,3.913 --122.25,47.92,0.62,3.911 --122.25,47.93,0.62,3.909 --122.25,47.94,0.62,3.907 --122.25,47.95,0.619,3.903 --122.25,47.96,0.619,3.9 --122.25,47.97,0.618,3.896 --122.25,47.98,0.618,3.892 --122.25,47.99,0.618,3.893 --122.25,48.00,0.618,3.896 --122.25,48.01,0.619,3.899 --122.25,48.02,0.619,3.901 --122.25,48.03,0.619,3.902 --122.25,48.04,0.619,3.901 --122.25,48.05,0.61,3.811 --122.25,48.06,0.607,3.789 --122.25,48.07,0.599,3.712 --122.25,48.08,0.599,3.708 --122.25,48.09,0.582,3.541 --122.25,48.10,0.579,3.514 --122.25,48.11,0.577,3.494 --122.25,48.12,0.558,3.318 --122.25,48.13,0.543,3.17 --122.25,48.14,0.53,3.045 --122.25,48.15,0.507,2.825 --122.25,48.16,0.484,2.603 --122.25,48.17,0.47,2.468 --122.25,48.18,0.446,2.237 --122.25,48.19,0.422,2.003 --122.25,48.20,0.397,1.769 --122.25,48.21,0.373,1.536 --122.25,48.22,0.349,1.304 --122.25,48.23,0.325,1.075 --122.25,48.24,0.302,0.851 --122.25,48.25,0.291,0.745 --122.25,48.26,0.269,0.531 --122.25,48.27,0.26,0.447 --122.24,47.02,0.231,0.171 --122.24,47.03,0.231,0.172 --122.24,47.04,0.24,0.251 --122.24,47.05,0.243,0.28 --122.24,47.06,0.251,0.359 --122.24,47.07,0.265,0.491 --122.24,47.08,0.283,0.666 --122.24,47.09,0.289,0.731 --122.24,47.10,0.312,0.948 --122.24,47.11,0.335,1.17 --122.24,47.12,0.359,1.397 --122.24,47.13,0.385,1.647 --122.24,47.14,0.414,1.925 --122.24,47.15,0.45,2.279 --122.24,47.16,0.474,2.504 --122.24,47.17,0.497,2.73 --122.24,47.18,0.527,3.016 --122.24,47.19,0.551,3.243 --122.24,47.20,0.574,3.468 --122.24,47.21,0.597,3.692 --122.24,47.22,0.621,3.917 --122.24,47.23,0.624,3.947 --122.24,47.24,0.642,4.126 --122.24,47.25,0.648,4.177 --122.24,47.26,0.661,4.306 --122.24,47.27,0.661,4.301 --122.24,47.28,0.652,4.219 --122.24,47.29,0.643,4.133 --122.24,47.30,0.642,4.124 --122.24,47.31,0.638,4.085 --122.24,47.32,0.621,3.919 --122.24,47.33,0.618,3.892 --122.24,47.34,0.615,3.866 --122.24,47.35,0.599,3.707 --122.24,47.36,0.598,3.702 --122.24,47.37,0.588,3.606 --122.24,47.38,0.578,3.504 --122.24,47.39,0.577,3.5 --122.24,47.40,0.577,3.496 --122.24,47.41,0.576,3.492 --122.24,47.42,0.575,3.482 --122.24,47.43,0.576,3.487 --122.24,47.44,0.576,3.486 --122.24,47.45,0.581,3.536 --122.24,47.46,0.595,3.673 --122.24,47.47,0.605,3.766 --122.24,47.48,0.627,3.974 --122.24,47.49,0.636,4.064 --122.24,47.50,0.653,4.23 --122.24,47.51,0.694,4.627 --122.24,47.52,0.721,4.885 --122.24,47.53,0.746,5.12 --122.24,47.54,0.77,5.354 --122.24,47.55,0.794,5.583 --122.24,47.56,0.818,5.812 --122.24,47.57,0.841,6.039 --122.24,47.58,0.865,6.264 --122.24,47.59,0.875,6.36 --122.24,47.60,0.891,6.516 --122.24,47.61,0.896,6.562 --122.24,47.62,0.911,6.712 --122.24,47.63,0.911,6.708 --122.24,47.64,0.907,6.675 --122.24,47.65,0.895,6.556 --122.24,47.66,0.891,6.513 --122.24,47.67,0.89,6.508 --122.24,47.68,0.874,6.354 --122.24,47.69,0.87,6.312 --122.24,47.70,0.849,6.115 --122.24,47.71,0.845,6.079 --122.24,47.72,0.827,5.906 --122.24,47.73,0.82,5.83 --122.24,47.74,0.797,5.613 --122.24,47.75,0.786,5.504 --122.24,47.76,0.771,5.365 --122.24,47.77,0.748,5.143 --122.24,47.78,0.732,4.989 --122.24,47.79,0.722,4.89 --122.24,47.80,0.702,4.696 --122.24,47.81,0.684,4.531 --122.24,47.82,0.674,4.432 --122.24,47.83,0.661,4.305 --122.24,47.84,0.657,4.27 --122.24,47.85,0.641,4.108 --122.24,47.86,0.64,4.106 --122.24,47.87,0.631,4.02 --122.24,47.88,0.629,4.0 --122.24,47.89,0.62,3.912 --122.24,47.90,0.62,3.911 --122.24,47.91,0.62,3.909 --122.24,47.92,0.62,3.908 --122.24,47.93,0.61,3.815 --122.24,47.94,0.61,3.815 --122.24,47.95,0.61,3.815 --122.24,47.96,0.61,3.815 --122.24,47.97,0.61,3.815 --122.24,47.98,0.61,3.814 --122.24,47.99,0.61,3.817 --122.24,48.00,0.611,3.821 --122.24,48.01,0.611,3.826 --122.24,48.02,0.612,3.83 --122.24,48.03,0.612,3.832 --122.24,48.04,0.612,3.833 --122.24,48.05,0.6,3.714 --122.24,48.06,0.599,3.712 --122.24,48.07,0.599,3.709 --122.24,48.08,0.588,3.607 --122.24,48.09,0.579,3.514 --122.24,48.10,0.578,3.508 --122.24,48.11,0.562,3.35 --122.24,48.12,0.558,3.312 --122.24,48.13,0.537,3.113 --122.24,48.14,0.517,2.917 --122.24,48.15,0.496,2.72 --122.24,48.16,0.475,2.514 --122.24,48.17,0.465,2.418 --122.24,48.18,0.441,2.189 --122.24,48.19,0.417,1.958 --122.24,48.20,0.393,1.726 --122.24,48.21,0.369,1.494 --122.24,48.22,0.345,1.265 --122.24,48.23,0.321,1.037 --122.24,48.24,0.301,0.838 --122.24,48.25,0.278,0.624 --122.24,48.26,0.26,0.445 --122.23,47.02,0.231,0.172 --122.23,47.03,0.231,0.172 --122.23,47.04,0.242,0.275 --122.23,47.05,0.243,0.281 --122.23,47.06,0.262,0.467 --122.23,47.07,0.265,0.494 --122.23,47.08,0.283,0.669 --122.23,47.09,0.293,0.764 --122.23,47.10,0.315,0.979 --122.23,47.11,0.338,1.2 --122.23,47.12,0.362,1.425 --122.23,47.13,0.401,1.801 --122.23,47.14,0.427,2.058 --122.23,47.15,0.451,2.283 --122.23,47.16,0.476,2.523 --122.23,47.17,0.503,2.785 --122.23,47.18,0.542,3.156 --122.23,47.19,0.565,3.385 --122.23,47.20,0.589,3.613 --122.23,47.21,0.613,3.84 --122.23,47.22,0.621,3.923 --122.23,47.23,0.64,4.103 --122.23,47.24,0.643,4.132 --122.23,47.25,0.663,4.32 --122.23,47.26,0.662,4.315 --122.23,47.27,0.661,4.309 --122.23,47.28,0.66,4.294 --122.23,47.29,0.659,4.286 --122.23,47.30,0.647,4.173 --122.23,47.31,0.639,4.095 --122.23,47.32,0.637,4.07 --122.23,47.33,0.619,3.901 --122.23,47.34,0.616,3.875 --122.23,47.35,0.615,3.86 --122.23,47.36,0.611,3.826 --122.23,47.37,0.594,3.66 --122.23,47.38,0.593,3.655 --122.23,47.39,0.593,3.65 --122.23,47.40,0.593,3.646 --122.23,47.41,0.58,3.521 --122.23,47.42,0.576,3.49 --122.23,47.43,0.592,3.637 --122.23,47.44,0.591,3.636 --122.23,47.45,0.596,3.68 --122.23,47.46,0.599,3.707 --122.23,47.47,0.616,3.87 --122.23,47.48,0.628,3.99 --122.23,47.49,0.645,4.154 --122.23,47.50,0.668,4.373 --122.23,47.51,0.698,4.658 --122.23,47.52,0.722,4.888 --122.23,47.53,0.746,5.122 --122.23,47.54,0.77,5.355 --122.23,47.55,0.794,5.583 --122.23,47.56,0.818,5.811 --122.23,47.57,0.841,6.037 --122.23,47.58,0.858,6.199 --122.23,47.59,0.868,6.295 --122.23,47.60,0.891,6.513 --122.23,47.61,0.893,6.534 --122.23,47.62,0.9,6.602 --122.23,47.63,0.9,6.601 --122.23,47.64,0.892,6.531 --122.23,47.65,0.891,6.513 --122.23,47.66,0.89,6.51 --122.23,47.67,0.885,6.464 --122.23,47.68,0.87,6.314 --122.23,47.69,0.861,6.231 --122.23,47.70,0.849,6.113 --122.23,47.71,0.836,5.987 --122.23,47.72,0.827,5.904 --122.23,47.73,0.81,5.743 --122.23,47.74,0.797,5.611 --122.23,47.75,0.785,5.502 --122.23,47.76,0.765,5.306 --122.23,47.77,0.748,5.142 --122.23,47.78,0.725,4.921 --122.23,47.79,0.714,4.817 --122.23,47.80,0.699,4.672 --122.23,47.81,0.681,4.502 --122.23,47.82,0.667,4.364 --122.23,47.83,0.661,4.302 --122.23,47.84,0.642,4.125 --122.23,47.85,0.64,4.103 --122.23,47.86,0.638,4.082 --122.23,47.87,0.62,3.909 --122.23,47.88,0.62,3.907 --122.23,47.89,0.614,3.854 --122.23,47.90,0.614,3.856 --122.23,47.91,0.614,3.857 --122.23,47.92,0.606,3.772 --122.23,47.93,0.6,3.714 --122.23,47.94,0.599,3.713 --122.23,47.95,0.599,3.712 --122.23,47.96,0.599,3.711 --122.23,47.97,0.599,3.71 --122.23,47.98,0.599,3.708 --122.23,47.99,0.599,3.709 --122.23,48.00,0.599,3.711 --122.23,48.01,0.599,3.712 --122.23,48.02,0.6,3.714 --122.23,48.03,0.6,3.714 --122.23,48.04,0.599,3.712 --122.23,48.05,0.599,3.71 --122.23,48.06,0.597,3.693 --122.23,48.07,0.595,3.671 --122.23,48.08,0.579,3.515 --122.23,48.09,0.577,3.499 --122.23,48.10,0.568,3.414 --122.23,48.11,0.558,3.311 --122.23,48.12,0.544,3.178 --122.23,48.13,0.522,2.963 --122.23,48.14,0.516,2.91 --122.23,48.15,0.495,2.711 --122.23,48.16,0.473,2.493 --122.23,48.17,0.449,2.267 --122.23,48.18,0.425,2.037 --122.23,48.19,0.401,1.805 --122.23,48.20,0.377,1.573 --122.23,48.21,0.353,1.342 --122.23,48.22,0.329,1.113 --122.23,48.23,0.306,0.889 --122.23,48.24,0.3,0.831 --122.23,48.25,0.277,0.615 --122.23,48.26,0.258,0.426 --122.22,47.01,0.231,0.172 --122.22,47.02,0.231,0.172 --122.22,47.03,0.238,0.24 --122.22,47.04,0.243,0.28 --122.22,47.05,0.243,0.283 --122.22,47.06,0.262,0.471 --122.22,47.07,0.265,0.497 --122.22,47.08,0.286,0.697 --122.22,47.09,0.308,0.91 --122.22,47.10,0.331,1.128 --122.22,47.11,0.354,1.35 --122.22,47.12,0.377,1.577 --122.22,47.13,0.404,1.831 --122.22,47.14,0.428,2.063 --122.22,47.15,0.451,2.288 --122.22,47.16,0.491,2.673 --122.22,47.17,0.518,2.932 --122.22,47.18,0.542,3.16 --122.22,47.19,0.566,3.39 --122.22,47.20,0.59,3.618 --122.22,47.21,0.613,3.846 --122.22,47.22,0.633,4.032 --122.22,47.23,0.644,4.138 --122.22,47.24,0.658,4.278 --122.22,47.25,0.663,4.328 --122.22,47.26,0.677,4.459 --122.22,47.27,0.676,4.452 --122.22,47.28,0.676,4.446 --122.22,47.29,0.671,4.398 --122.22,47.30,0.654,4.241 --122.22,47.31,0.654,4.233 --122.22,47.32,0.643,4.127 --122.22,47.33,0.632,4.027 --122.22,47.34,0.631,4.02 --122.22,47.35,0.618,3.895 --122.22,47.36,0.612,3.835 --122.22,47.37,0.61,3.812 --122.22,47.38,0.607,3.786 --122.22,47.39,0.597,3.692 --122.22,47.40,0.597,3.69 --122.22,47.41,0.588,3.605 --122.22,47.42,0.588,3.602 --122.22,47.43,0.597,3.687 --122.22,47.44,0.597,3.688 --122.22,47.45,0.597,3.688 --122.22,47.46,0.615,3.858 --122.22,47.47,0.617,3.879 --122.22,47.48,0.629,4.0 --122.22,47.49,0.652,4.217 --122.22,47.50,0.675,4.438 --122.22,47.51,0.698,4.663 --122.22,47.52,0.722,4.891 --122.22,47.53,0.746,5.124 --122.22,47.54,0.77,5.355 --122.22,47.55,0.794,5.583 --122.22,47.56,0.817,5.81 --122.22,47.57,0.833,5.963 --122.22,47.58,0.844,6.068 --122.22,47.59,0.868,6.292 --122.22,47.60,0.885,6.458 --122.22,47.61,0.891,6.522 --122.22,47.62,0.891,6.52 --122.22,47.63,0.891,6.516 --122.22,47.64,0.891,6.513 --122.22,47.65,0.89,6.51 --122.22,47.66,0.884,6.454 --122.22,47.67,0.87,6.32 --122.22,47.68,0.868,6.297 --122.22,47.69,0.849,6.118 --122.22,47.70,0.848,6.103 --122.22,47.71,0.828,5.913 --122.22,47.72,0.818,5.815 --122.22,47.73,0.807,5.706 --122.22,47.74,0.793,5.573 --122.22,47.75,0.774,5.393 --122.22,47.76,0.765,5.306 --122.22,47.77,0.745,5.112 --122.22,47.78,0.723,4.905 --122.22,47.79,0.703,4.707 --122.22,47.80,0.697,4.647 --122.22,47.81,0.677,4.455 --122.22,47.82,0.661,4.307 --122.22,47.83,0.649,4.194 --122.22,47.84,0.64,4.103 --122.22,47.85,0.638,4.086 --122.22,47.86,0.622,3.933 --122.22,47.87,0.619,3.904 --122.22,47.88,0.618,3.891 --122.22,47.89,0.599,3.71 --122.22,47.90,0.599,3.71 --122.22,47.91,0.599,3.71 --122.22,47.92,0.599,3.71 --122.22,47.93,0.599,3.71 --122.22,47.94,0.599,3.71 --122.22,47.95,0.599,3.709 --122.22,47.96,0.599,3.709 --122.22,47.97,0.599,3.708 --122.22,47.98,0.599,3.707 --122.22,47.99,0.599,3.708 --122.22,48.00,0.599,3.709 --122.22,48.01,0.599,3.71 --122.22,48.02,0.599,3.712 --122.22,48.03,0.599,3.712 --122.22,48.04,0.599,3.71 --122.22,48.05,0.599,3.707 --122.22,48.06,0.583,3.551 --122.22,48.07,0.58,3.528 --122.22,48.08,0.578,3.504 --122.22,48.09,0.562,3.356 --122.22,48.10,0.558,3.312 --122.22,48.11,0.551,3.243 --122.22,48.12,0.537,3.111 --122.22,48.13,0.521,2.954 --122.22,48.14,0.503,2.783 --122.22,48.15,0.48,2.564 --122.22,48.16,0.457,2.343 --122.22,48.17,0.434,2.117 --122.22,48.18,0.41,1.889 --122.22,48.19,0.399,1.786 --122.22,48.20,0.375,1.552 --122.22,48.21,0.351,1.318 --122.22,48.22,0.326,1.087 --122.22,48.23,0.303,0.861 --122.22,48.24,0.287,0.71 --122.22,48.25,0.265,0.494 --122.22,48.26,0.254,0.393 --122.21,47.01,0.231,0.172 --122.21,47.02,0.235,0.205 --122.21,47.03,0.242,0.278 --122.21,47.04,0.243,0.281 --122.21,47.05,0.255,0.397 --122.21,47.06,0.263,0.474 --122.21,47.07,0.279,0.63 --122.21,47.08,0.288,0.715 --122.21,47.09,0.31,0.931 --122.21,47.10,0.333,1.151 --122.21,47.11,0.357,1.376 --122.21,47.12,0.38,1.605 --122.21,47.13,0.404,1.836 --122.21,47.14,0.428,2.067 --122.21,47.15,0.464,2.407 --122.21,47.16,0.495,2.71 --122.21,47.17,0.519,2.936 --122.21,47.18,0.543,3.165 --122.21,47.19,0.566,3.394 --122.21,47.20,0.59,3.623 --122.21,47.21,0.614,3.853 --122.21,47.22,0.638,4.085 --122.21,47.23,0.652,4.22 --122.21,47.24,0.665,4.339 --122.21,47.25,0.676,4.446 --122.21,47.26,0.683,4.52 --122.21,47.27,0.683,4.516 --122.21,47.28,0.682,4.511 --122.21,47.29,0.672,4.406 --122.21,47.30,0.669,4.38 --122.21,47.31,0.661,4.306 --122.21,47.32,0.649,4.189 --122.21,47.33,0.641,4.11 --122.21,47.34,0.638,4.084 --122.21,47.35,0.627,3.978 --122.21,47.36,0.619,3.901 --122.21,47.37,0.619,3.897 --122.21,47.38,0.608,3.795 --122.21,47.39,0.605,3.765 --122.21,47.40,0.603,3.748 --122.21,47.41,0.598,3.697 --122.21,47.42,0.598,3.696 --122.21,47.43,0.598,3.695 --122.21,47.44,0.598,3.696 --122.21,47.45,0.604,3.752 --122.21,47.46,0.618,3.887 --122.21,47.47,0.618,3.888 --122.21,47.48,0.63,4.01 --122.21,47.49,0.653,4.227 --122.21,47.50,0.676,4.446 --122.21,47.51,0.699,4.669 --122.21,47.52,0.722,4.895 --122.21,47.53,0.743,5.092 --122.21,47.54,0.767,5.324 --122.21,47.55,0.791,5.553 --122.21,47.56,0.805,5.686 --122.21,47.57,0.821,5.843 --122.21,47.58,0.844,6.066 --122.21,47.59,0.867,6.289 --122.21,47.60,0.871,6.323 --122.21,47.61,0.889,6.502 --122.21,47.62,0.889,6.502 --122.21,47.63,0.889,6.501 --122.21,47.64,0.889,6.5 --122.21,47.65,0.88,6.407 --122.21,47.66,0.87,6.317 --122.21,47.67,0.87,6.313 --122.21,47.68,0.853,6.151 --122.21,47.69,0.849,6.116 --122.21,47.70,0.847,6.099 --122.21,47.71,0.825,5.886 --122.21,47.72,0.807,5.714 --122.21,47.73,0.8,5.644 --122.21,47.74,0.786,5.511 --122.21,47.75,0.774,5.392 --122.21,47.76,0.753,5.188 --122.21,47.77,0.73,4.969 --122.21,47.78,0.723,4.906 --122.21,47.79,0.703,4.707 --122.21,47.80,0.682,4.51 --122.21,47.81,0.676,4.452 --122.21,47.82,0.657,4.265 --122.21,47.83,0.641,4.108 --122.21,47.84,0.631,4.02 --122.21,47.85,0.623,3.939 --122.21,47.86,0.619,3.901 --122.21,47.87,0.605,3.763 --122.21,47.88,0.602,3.741 --122.21,47.89,0.599,3.705 --122.21,47.90,0.599,3.705 --122.21,47.91,0.599,3.705 --122.21,47.92,0.595,3.666 --122.21,47.93,0.584,3.569 --122.21,47.94,0.585,3.572 --122.21,47.95,0.585,3.575 --122.21,47.96,0.585,3.578 --122.21,47.97,0.586,3.581 --122.21,47.98,0.586,3.582 --122.21,47.99,0.599,3.706 --122.21,48.00,0.599,3.707 --122.21,48.01,0.599,3.708 --122.21,48.02,0.599,3.709 --122.21,48.03,0.593,3.655 --122.21,48.04,0.587,3.596 --122.21,48.05,0.587,3.595 --122.21,48.06,0.579,3.516 --122.21,48.07,0.579,3.512 --122.21,48.08,0.563,3.36 --122.21,48.09,0.558,3.313 --122.21,48.10,0.547,3.207 --122.21,48.11,0.537,3.112 --122.21,48.12,0.533,3.07 --122.21,48.13,0.51,2.852 --122.21,48.14,0.495,2.705 --122.21,48.15,0.474,2.504 --122.21,48.16,0.451,2.281 --122.21,48.17,0.427,2.052 --122.21,48.18,0.409,1.883 --122.21,48.19,0.39,1.695 --122.21,48.20,0.366,1.463 --122.21,48.21,0.342,1.232 --122.21,48.22,0.318,1.004 --122.21,48.23,0.295,0.782 --122.21,48.24,0.279,0.632 --122.21,48.25,0.259,0.435 --122.20,47.00,0.231,0.172 --122.20,47.01,0.231,0.172 --122.20,47.02,0.238,0.232 --122.20,47.03,0.243,0.28 --122.20,47.04,0.243,0.283 --122.20,47.05,0.261,0.453 --122.20,47.06,0.263,0.478 --122.20,47.07,0.283,0.669 --122.20,47.08,0.288,0.719 --122.20,47.09,0.311,0.935 --122.20,47.10,0.334,1.156 --122.20,47.11,0.357,1.381 --122.20,47.12,0.381,1.609 --122.20,47.13,0.405,1.841 --122.20,47.14,0.434,2.122 --122.20,47.15,0.472,2.488 --122.20,47.16,0.496,2.714 --122.20,47.17,0.519,2.94 --122.20,47.18,0.543,3.169 --122.20,47.19,0.573,3.46 --122.20,47.20,0.597,3.687 --122.20,47.21,0.62,3.915 --122.20,47.22,0.643,4.136 --122.20,47.23,0.663,4.32 --122.20,47.24,0.67,4.391 --122.20,47.25,0.684,4.53 --122.20,47.26,0.684,4.527 --122.20,47.27,0.688,4.566 --122.20,47.28,0.688,4.56 --122.20,47.29,0.683,4.515 --122.20,47.30,0.669,4.386 --122.20,47.31,0.666,4.349 --122.20,47.32,0.664,4.334 --122.20,47.33,0.644,4.144 --122.20,47.34,0.641,4.11 --122.20,47.35,0.636,4.067 --122.20,47.36,0.622,3.934 --122.20,47.37,0.622,3.928 --122.20,47.38,0.619,3.903 --122.20,47.39,0.619,3.9 --122.20,47.40,0.604,3.755 --122.20,47.41,0.6,3.718 --122.20,47.42,0.599,3.709 --122.20,47.43,0.599,3.704 --122.20,47.44,0.599,3.704 --122.20,47.45,0.605,3.766 --122.20,47.46,0.618,3.895 --122.20,47.47,0.618,3.896 --122.20,47.48,0.631,4.02 --122.20,47.49,0.654,4.236 --122.20,47.50,0.676,4.453 --122.20,47.51,0.699,4.674 --122.20,47.52,0.722,4.896 --122.20,47.53,0.728,4.948 --122.20,47.54,0.752,5.18 --122.20,47.55,0.776,5.41 --122.20,47.56,0.797,5.618 --122.20,47.57,0.821,5.842 --122.20,47.58,0.844,6.064 --122.20,47.59,0.853,6.152 --122.20,47.60,0.87,6.319 --122.20,47.61,0.875,6.359 --122.20,47.62,0.874,6.358 --122.20,47.63,0.874,6.357 --122.20,47.64,0.874,6.356 --122.20,47.65,0.87,6.317 --122.20,47.66,0.87,6.313 --122.20,47.67,0.86,6.216 --122.20,47.68,0.849,6.116 --122.20,47.69,0.849,6.113 --122.20,47.70,0.833,5.957 --122.20,47.71,0.825,5.878 --122.20,47.72,0.807,5.712 --122.20,47.73,0.799,5.632 --122.20,47.74,0.783,5.476 --122.20,47.75,0.766,5.316 --122.20,47.76,0.751,5.171 --122.20,47.77,0.728,4.95 --122.20,47.78,0.712,4.797 --122.20,47.79,0.702,4.699 --122.20,47.80,0.682,4.51 --122.20,47.81,0.664,4.337 --122.20,47.82,0.654,4.233 --122.20,47.83,0.639,4.092 --122.20,47.84,0.619,3.905 --122.20,47.85,0.619,3.899 --122.20,47.86,0.611,3.826 --122.20,47.87,0.598,3.702 --122.20,47.88,0.598,3.699 --122.20,47.89,0.588,3.6 --122.20,47.90,0.588,3.603 --122.20,47.91,0.588,3.606 --122.20,47.92,0.579,3.519 --122.20,47.93,0.579,3.512 --122.20,47.94,0.579,3.514 --122.20,47.95,0.579,3.515 --122.20,47.96,0.579,3.517 --122.20,47.97,0.579,3.519 --122.20,47.98,0.582,3.545 --122.20,47.99,0.591,3.63 --122.20,48.00,0.591,3.633 --122.20,48.01,0.591,3.636 --122.20,48.02,0.592,3.639 --122.20,48.03,0.579,3.52 --122.20,48.04,0.579,3.518 --122.20,48.05,0.579,3.515 --122.20,48.06,0.572,3.453 --122.20,48.07,0.57,3.426 --122.20,48.08,0.558,3.315 --122.20,48.09,0.545,3.188 --122.20,48.10,0.537,3.113 --122.20,48.11,0.531,3.055 --122.20,48.12,0.517,2.92 --122.20,48.13,0.495,2.708 --122.20,48.14,0.491,2.673 --122.20,48.15,0.469,2.455 --122.20,48.16,0.446,2.235 --122.20,48.17,0.422,2.007 --122.20,48.18,0.398,1.775 --122.20,48.19,0.374,1.543 --122.20,48.20,0.35,1.311 --122.20,48.21,0.326,1.081 --122.20,48.22,0.305,0.881 --122.20,48.23,0.282,0.66 --122.20,48.24,0.276,0.604 --122.20,48.25,0.254,0.39 --122.19,47.00,0.229,0.149 --122.19,47.01,0.231,0.172 --122.19,47.02,0.241,0.263 --122.19,47.03,0.243,0.282 --122.19,47.04,0.244,0.293 --122.19,47.05,0.263,0.473 --122.19,47.06,0.264,0.482 --122.19,47.07,0.283,0.671 --122.19,47.08,0.293,0.761 --122.19,47.09,0.311,0.94 --122.19,47.10,0.334,1.161 --122.19,47.11,0.357,1.385 --122.19,47.12,0.381,1.613 --122.19,47.13,0.405,1.845 --122.19,47.14,0.449,2.267 --122.19,47.15,0.473,2.492 --122.19,47.16,0.496,2.717 --122.19,47.17,0.522,2.963 --122.19,47.18,0.552,3.254 --122.19,47.19,0.587,3.596 --122.19,47.20,0.611,3.825 --122.19,47.21,0.635,4.056 --122.19,47.22,0.643,4.136 --122.19,47.23,0.663,4.326 --122.19,47.24,0.685,4.533 --122.19,47.25,0.684,4.531 --122.19,47.26,0.688,4.568 --122.19,47.27,0.703,4.711 --122.19,47.28,0.695,4.628 --122.19,47.29,0.683,4.518 --122.19,47.30,0.681,4.502 --122.19,47.31,0.681,4.495 --122.19,47.32,0.664,4.336 --122.19,47.33,0.66,4.291 --122.19,47.34,0.641,4.113 --122.19,47.35,0.638,4.088 --122.19,47.36,0.638,4.082 --122.19,47.37,0.631,4.02 --122.19,47.38,0.62,3.907 --122.19,47.39,0.619,3.904 --122.19,47.40,0.616,3.87 --122.19,47.41,0.615,3.865 --122.19,47.42,0.599,3.711 --122.19,47.43,0.599,3.707 --122.19,47.44,0.599,3.707 --122.19,47.45,0.619,3.898 --122.19,47.46,0.619,3.899 --122.19,47.47,0.624,3.953 --122.19,47.48,0.639,4.093 --122.19,47.49,0.654,4.24 --122.19,47.50,0.677,4.457 --122.19,47.51,0.686,4.547 --122.19,47.52,0.707,4.75 --122.19,47.53,0.726,4.934 --122.19,47.54,0.75,5.163 --122.19,47.55,0.774,5.391 --122.19,47.56,0.797,5.616 --122.19,47.57,0.815,5.788 --122.19,47.58,0.831,5.941 --122.19,47.59,0.847,6.09 --122.19,47.60,0.859,6.206 --122.19,47.61,0.871,6.321 --122.19,47.62,0.87,6.318 --122.19,47.63,0.87,6.315 --122.19,47.64,0.87,6.312 --122.19,47.65,0.868,6.299 --122.19,47.66,0.859,6.205 --122.19,47.67,0.849,6.113 --122.19,47.68,0.842,6.043 --122.19,47.69,0.839,6.013 --122.19,47.70,0.828,5.911 --122.19,47.71,0.815,5.782 --122.19,47.72,0.807,5.707 --122.19,47.73,0.79,5.542 --122.19,47.74,0.768,5.33 --122.19,47.75,0.765,5.305 --122.19,47.76,0.742,5.087 --122.19,47.77,0.724,4.913 --122.19,47.78,0.705,4.725 --122.19,47.79,0.694,4.623 --122.19,47.80,0.672,4.407 --122.19,47.81,0.661,4.309 --122.19,47.82,0.646,4.162 --122.19,47.83,0.623,3.942 --122.19,47.84,0.619,3.899 --122.19,47.85,0.612,3.833 --122.19,47.86,0.598,3.699 --122.19,47.87,0.593,3.652 --122.19,47.88,0.591,3.63 --122.19,47.89,0.577,3.5 --122.19,47.90,0.577,3.501 --122.19,47.91,0.573,3.457 --122.19,47.92,0.573,3.461 --122.19,47.93,0.574,3.465 --122.19,47.94,0.574,3.469 --122.19,47.95,0.575,3.474 --122.19,47.96,0.575,3.479 --122.19,47.97,0.576,3.483 --122.19,47.98,0.576,3.486 --122.19,47.99,0.576,3.488 --122.19,48.00,0.576,3.491 --122.19,48.01,0.577,3.494 --122.19,48.02,0.577,3.496 --122.19,48.03,0.577,3.498 --122.19,48.04,0.577,3.497 --122.19,48.05,0.577,3.497 --122.19,48.06,0.559,3.322 --122.19,48.07,0.557,3.307 --122.19,48.08,0.552,3.255 --122.19,48.09,0.537,3.114 --122.19,48.10,0.527,3.014 --122.19,48.11,0.516,2.908 --122.19,48.12,0.502,2.771 --122.19,48.13,0.494,2.701 --122.19,48.14,0.476,2.524 --122.19,48.15,0.453,2.306 --122.19,48.16,0.43,2.085 --122.19,48.17,0.406,1.855 --122.19,48.18,0.382,1.623 --122.19,48.19,0.358,1.391 --122.19,48.20,0.334,1.16 --122.19,48.21,0.322,1.04 --122.19,48.22,0.304,0.874 --122.19,48.23,0.281,0.652 --122.19,48.24,0.261,0.461 --122.19,48.25,0.239,0.249 --122.18,47.00,0.226,0.123 --122.18,47.01,0.236,0.22 --122.18,47.02,0.243,0.281 --122.18,47.03,0.243,0.284 --122.18,47.04,0.259,0.435 --122.18,47.05,0.263,0.476 --122.18,47.06,0.264,0.485 --122.18,47.07,0.286,0.693 --122.18,47.08,0.304,0.868 --122.18,47.09,0.312,0.944 --122.18,47.10,0.334,1.164 --122.18,47.11,0.358,1.389 --122.18,47.12,0.382,1.617 --122.18,47.13,0.42,1.984 --122.18,47.14,0.45,2.271 --122.18,47.15,0.473,2.496 --122.18,47.16,0.496,2.721 --122.18,47.17,0.537,3.113 --122.18,47.18,0.564,3.369 --122.18,47.19,0.588,3.598 --122.18,47.20,0.611,3.827 --122.18,47.21,0.635,4.058 --122.18,47.22,0.655,4.248 --122.18,47.23,0.665,4.341 --122.18,47.24,0.685,4.533 --122.18,47.25,0.684,4.531 --122.18,47.26,0.704,4.714 --122.18,47.27,0.704,4.715 --122.18,47.28,0.698,4.661 --122.18,47.29,0.692,4.603 --122.18,47.30,0.683,4.514 --122.18,47.31,0.682,4.508 --122.18,47.32,0.675,4.443 --122.18,47.33,0.662,4.31 --122.18,47.34,0.654,4.24 --122.18,47.35,0.641,4.111 --122.18,47.36,0.641,4.108 --122.18,47.37,0.633,4.032 --122.18,47.38,0.629,3.996 --122.18,47.39,0.62,3.907 --122.18,47.40,0.619,3.904 --122.18,47.41,0.619,3.902 --122.18,47.42,0.61,3.816 --122.18,47.43,0.61,3.814 --122.18,47.44,0.614,3.851 --122.18,47.45,0.619,3.9 --122.18,47.46,0.619,3.9 --122.18,47.47,0.63,4.003 --122.18,47.48,0.639,4.095 --122.18,47.49,0.655,4.243 --122.18,47.50,0.67,4.395 --122.18,47.51,0.68,4.486 --122.18,47.52,0.703,4.707 --122.18,47.53,0.726,4.934 --122.18,47.54,0.75,5.162 --122.18,47.55,0.774,5.389 --122.18,47.56,0.797,5.614 --122.18,47.57,0.8,5.645 --122.18,47.58,0.823,5.865 --122.18,47.59,0.842,6.042 --122.18,47.60,0.849,6.115 --122.18,47.61,0.863,6.247 --122.18,47.62,0.863,6.247 --122.18,47.63,0.863,6.246 --122.18,47.64,0.863,6.245 --122.18,47.65,0.852,6.146 --122.18,47.66,0.848,6.107 --122.18,47.67,0.848,6.102 --122.18,47.68,0.828,5.912 --122.18,47.69,0.828,5.909 --122.18,47.70,0.821,5.845 --122.18,47.71,0.807,5.707 --122.18,47.72,0.796,5.606 --122.18,47.73,0.778,5.43 --122.18,47.74,0.766,5.312 --122.18,47.75,0.749,5.154 --122.18,47.76,0.73,4.967 --122.18,47.77,0.724,4.907 --122.18,47.78,0.701,4.691 --122.18,47.79,0.681,4.499 --122.18,47.80,0.662,4.314 --122.18,47.81,0.653,4.23 --122.18,47.82,0.632,4.028 --122.18,47.83,0.619,3.901 --122.18,47.84,0.604,3.76 --122.18,47.85,0.597,3.693 --122.18,47.86,0.596,3.68 --122.18,47.87,0.577,3.499 --122.18,47.88,0.576,3.486 --122.18,47.89,0.576,3.487 --122.18,47.90,0.571,3.439 --122.18,47.91,0.557,3.306 --122.18,47.92,0.558,3.31 --122.18,47.93,0.558,3.314 --122.18,47.94,0.559,3.319 --122.18,47.95,0.559,3.324 --122.18,47.96,0.56,3.33 --122.18,47.97,0.56,3.335 --122.18,47.98,0.56,3.338 --122.18,47.99,0.561,3.34 --122.18,48.00,0.561,3.343 --122.18,48.01,0.561,3.346 --122.18,48.02,0.562,3.349 --122.18,48.03,0.562,3.351 --122.18,48.04,0.562,3.351 --122.18,48.05,0.562,3.35 --122.18,48.06,0.558,3.314 --122.18,48.07,0.542,3.16 --122.18,48.08,0.537,3.115 --122.18,48.09,0.534,3.08 --122.18,48.10,0.516,2.909 --122.18,48.11,0.508,2.837 --122.18,48.12,0.495,2.704 --122.18,48.13,0.483,2.593 --122.18,48.14,0.46,2.375 --122.18,48.15,0.438,2.157 --122.18,48.16,0.428,2.067 --122.18,48.17,0.404,1.835 --122.18,48.18,0.38,1.601 --122.18,48.19,0.356,1.368 --122.18,48.20,0.331,1.135 --122.18,48.21,0.315,0.975 --122.18,48.22,0.292,0.753 --122.18,48.23,0.279,0.63 --122.18,48.24,0.258,0.429 --122.17,47.00,0.225,0.111 --122.17,47.01,0.233,0.186 --122.17,47.02,0.243,0.283 --122.17,47.03,0.243,0.286 --122.17,47.04,0.259,0.439 --122.17,47.05,0.263,0.478 --122.17,47.06,0.279,0.627 --122.17,47.07,0.287,0.703 --122.17,47.08,0.304,0.871 --122.17,47.09,0.312,0.948 --122.17,47.10,0.335,1.169 --122.17,47.11,0.364,1.445 --122.17,47.12,0.396,1.752 --122.17,47.13,0.426,2.047 --122.17,47.14,0.45,2.275 --122.17,47.15,0.473,2.5 --122.17,47.16,0.512,2.871 --122.17,47.17,0.54,3.144 --122.17,47.18,0.564,3.371 --122.17,47.19,0.588,3.6 --122.17,47.20,0.612,3.829 --122.17,47.21,0.635,4.059 --122.17,47.22,0.659,4.288 --122.17,47.23,0.673,4.425 --122.17,47.24,0.685,4.532 --122.17,47.25,0.697,4.653 --122.17,47.26,0.704,4.718 --122.17,47.27,0.704,4.716 --122.17,47.28,0.704,4.714 --122.17,47.29,0.693,4.61 --122.17,47.30,0.689,4.577 --122.17,47.31,0.682,4.51 --122.17,47.32,0.682,4.505 --122.17,47.33,0.67,4.39 --122.17,47.34,0.659,4.284 --122.17,47.35,0.649,4.189 --122.17,47.36,0.641,4.109 --122.17,47.37,0.64,4.106 --122.17,47.38,0.629,3.997 --122.17,47.39,0.626,3.973 --122.17,47.40,0.62,3.906 --122.17,47.41,0.619,3.903 --122.17,47.42,0.619,3.901 --122.17,47.43,0.619,3.901 --122.17,47.44,0.619,3.901 --122.17,47.45,0.619,3.901 --122.17,47.46,0.619,3.9 --122.17,47.47,0.63,4.005 --122.17,47.48,0.634,4.048 --122.17,47.49,0.655,4.245 --122.17,47.50,0.657,4.27 --122.17,47.51,0.68,4.486 --122.17,47.52,0.703,4.707 --122.17,47.53,0.726,4.932 --122.17,47.54,0.746,5.126 --122.17,47.55,0.77,5.355 --122.17,47.56,0.783,5.48 --122.17,47.57,0.8,5.641 --122.17,47.58,0.82,5.836 --122.17,47.59,0.826,5.892 --122.17,47.60,0.847,6.093 --122.17,47.61,0.847,6.096 --122.17,47.62,0.849,6.111 --122.17,47.63,0.848,6.107 --122.17,47.64,0.847,6.094 --122.17,47.65,0.847,6.093 --122.17,47.66,0.847,6.091 --122.17,47.67,0.832,5.949 --122.17,47.68,0.827,5.902 --122.17,47.69,0.827,5.899 --122.17,47.70,0.807,5.706 --122.17,47.71,0.803,5.668 --122.17,47.72,0.786,5.504 --122.17,47.73,0.777,5.421 --122.17,47.74,0.756,5.218 --122.17,47.75,0.744,5.108 --122.17,47.76,0.729,4.959 --122.17,47.77,0.708,4.758 --122.17,47.78,0.686,4.542 --122.17,47.79,0.68,4.491 --122.17,47.80,0.66,4.298 --122.17,47.81,0.64,4.107 --122.17,47.82,0.631,4.018 --122.17,47.83,0.611,3.828 --122.17,47.84,0.597,3.69 --122.17,47.85,0.586,3.581 --122.17,47.86,0.58,3.528 --122.17,47.87,0.576,3.484 --122.17,47.88,0.56,3.333 --122.17,47.89,0.56,3.333 --122.17,47.90,0.555,3.29 --122.17,47.91,0.556,3.292 --122.17,47.92,0.556,3.294 --122.17,47.93,0.55,3.236 --122.17,47.94,0.543,3.168 --122.17,47.95,0.543,3.173 --122.17,47.96,0.544,3.179 --122.17,47.97,0.557,3.309 --122.17,47.98,0.558,3.31 --122.17,47.99,0.558,3.311 --122.17,48.00,0.558,3.312 --122.17,48.01,0.558,3.313 --122.17,48.02,0.558,3.314 --122.17,48.03,0.558,3.314 --122.17,48.04,0.558,3.311 --122.17,48.05,0.548,3.214 --122.17,48.06,0.545,3.193 --122.17,48.07,0.537,3.114 --122.17,48.08,0.526,3.006 --122.17,48.09,0.518,2.929 --122.17,48.10,0.515,2.901 --122.17,48.11,0.495,2.705 --122.17,48.12,0.49,2.661 --122.17,48.13,0.468,2.444 --122.17,48.14,0.453,2.3 --122.17,48.15,0.432,2.1 --122.17,48.16,0.419,1.975 --122.17,48.17,0.395,1.746 --122.17,48.18,0.371,1.516 --122.17,48.19,0.347,1.285 --122.17,48.20,0.323,1.056 --122.17,48.21,0.301,0.845 --122.17,48.22,0.284,0.679 --122.17,48.23,0.274,0.578 --122.17,48.24,0.251,0.365 --122.16,47.00,0.224,0.098 --122.16,47.01,0.243,0.282 --122.16,47.02,0.243,0.285 --122.16,47.03,0.248,0.334 --122.16,47.04,0.263,0.476 --122.16,47.05,0.263,0.48 --122.16,47.06,0.283,0.671 --122.16,47.07,0.287,0.707 --122.16,47.08,0.304,0.873 --122.16,47.09,0.322,1.04 --122.16,47.10,0.344,1.259 --122.16,47.11,0.379,1.59 --122.16,47.12,0.403,1.819 --122.16,47.13,0.427,2.051 --122.16,47.14,0.45,2.279 --122.16,47.15,0.474,2.51 --122.16,47.16,0.517,2.921 --122.16,47.17,0.541,3.147 --122.16,47.18,0.564,3.374 --122.16,47.19,0.588,3.602 --122.16,47.20,0.612,3.831 --122.16,47.21,0.636,4.06 --122.16,47.22,0.659,4.289 --122.16,47.23,0.683,4.512 --122.16,47.24,0.685,4.535 --122.16,47.25,0.704,4.721 --122.16,47.26,0.704,4.719 --122.16,47.27,0.704,4.717 --122.16,47.28,0.704,4.715 --122.16,47.29,0.703,4.712 --122.16,47.30,0.689,4.577 --122.16,47.31,0.686,4.55 --122.16,47.32,0.682,4.506 --122.16,47.33,0.681,4.498 --122.16,47.34,0.661,4.308 --122.16,47.35,0.656,4.26 --122.16,47.36,0.644,4.138 --122.16,47.37,0.641,4.108 --122.16,47.38,0.64,4.105 --122.16,47.39,0.626,3.973 --122.16,47.40,0.62,3.907 --122.16,47.41,0.619,3.905 --122.16,47.42,0.619,3.903 --122.16,47.43,0.619,3.902 --122.16,47.44,0.619,3.901 --122.16,47.45,0.619,3.901 --122.16,47.46,0.619,3.901 --122.16,47.47,0.619,3.901 --122.16,47.48,0.633,4.031 --122.16,47.49,0.64,4.101 --122.16,47.50,0.657,4.271 --122.16,47.51,0.68,4.487 --122.16,47.52,0.703,4.706 --122.16,47.53,0.723,4.902 --122.16,47.54,0.731,4.979 --122.16,47.55,0.755,5.208 --122.16,47.56,0.777,5.417 --122.16,47.57,0.789,5.534 --122.16,47.58,0.805,5.689 --122.16,47.59,0.825,5.884 --122.16,47.60,0.831,5.943 --122.16,47.61,0.831,5.945 --122.16,47.62,0.848,6.102 --122.16,47.63,0.845,6.073 --122.16,47.64,0.831,5.943 --122.16,47.65,0.831,5.942 --122.16,47.66,0.831,5.941 --122.16,47.67,0.826,5.896 --122.16,47.68,0.814,5.776 --122.16,47.69,0.811,5.75 --122.16,47.70,0.791,5.56 --122.16,47.71,0.787,5.518 --122.16,47.72,0.784,5.493 --122.16,47.73,0.762,5.281 --122.16,47.74,0.744,5.107 --122.16,47.75,0.738,5.041 --122.16,47.76,0.715,4.825 --122.16,47.77,0.702,4.704 --122.16,47.78,0.683,4.512 --122.16,47.79,0.667,4.365 --122.16,47.80,0.645,4.148 --122.16,47.81,0.64,4.099 --122.16,47.82,0.619,3.897 --122.16,47.83,0.597,3.694 --122.16,47.84,0.592,3.643 --122.16,47.85,0.576,3.483 --122.16,47.86,0.567,3.403 --122.16,47.87,0.564,3.372 --122.16,47.88,0.554,3.277 --122.16,47.89,0.544,3.18 --122.16,47.90,0.545,3.185 --122.16,47.91,0.545,3.19 --122.16,47.92,0.546,3.195 --122.16,47.93,0.535,3.097 --122.16,47.94,0.536,3.1 --122.16,47.95,0.536,3.104 --122.16,47.96,0.536,3.107 --122.16,47.97,0.548,3.221 --122.16,47.98,0.549,3.225 --122.16,47.99,0.549,3.229 --122.16,48.00,0.55,3.233 --122.16,48.01,0.55,3.236 --122.16,48.02,0.55,3.239 --122.16,48.03,0.55,3.241 --122.16,48.04,0.551,3.242 --122.16,48.05,0.537,3.112 --122.16,48.06,0.531,3.053 --122.16,48.07,0.527,3.02 --122.16,48.08,0.516,2.91 --122.16,48.09,0.51,2.852 --122.16,48.10,0.5,2.754 --122.16,48.11,0.489,2.653 --122.16,48.12,0.475,2.513 --122.16,48.13,0.453,2.304 --122.16,48.14,0.449,2.268 --122.16,48.15,0.426,2.049 --122.16,48.16,0.403,1.825 --122.16,48.17,0.379,1.596 --122.16,48.18,0.356,1.367 --122.16,48.19,0.335,1.165 --122.16,48.20,0.311,0.937 --122.16,48.21,0.301,0.844 --122.16,48.22,0.282,0.658 --122.16,48.23,0.26,0.445 --122.15,47.00,0.238,0.232 --122.15,47.01,0.243,0.284 --122.15,47.02,0.243,0.287 --122.15,47.03,0.257,0.423 --122.15,47.04,0.263,0.478 --122.15,47.05,0.264,0.483 --122.15,47.06,0.284,0.674 --122.15,47.07,0.287,0.711 --122.15,47.08,0.31,0.927 --122.15,47.09,0.333,1.146 --122.15,47.10,0.356,1.368 --122.15,47.11,0.379,1.594 --122.15,47.12,0.403,1.824 --122.15,47.13,0.427,2.055 --122.15,47.14,0.451,2.283 --122.15,47.15,0.478,2.545 --122.15,47.16,0.518,2.925 --122.15,47.17,0.541,3.15 --122.15,47.18,0.564,3.376 --122.15,47.19,0.588,3.604 --122.15,47.20,0.612,3.832 --122.15,47.21,0.636,4.062 --122.15,47.22,0.659,4.29 --122.15,47.23,0.683,4.513 --122.15,47.24,0.685,4.536 --122.15,47.25,0.704,4.721 --122.15,47.26,0.704,4.719 --122.15,47.27,0.704,4.717 --122.15,47.28,0.704,4.716 --122.15,47.29,0.703,4.713 --122.15,47.30,0.702,4.703 --122.15,47.31,0.687,4.551 --122.15,47.32,0.682,4.508 --122.15,47.33,0.681,4.498 --122.15,47.34,0.661,4.309 --122.15,47.35,0.659,4.289 --122.15,47.36,0.654,4.236 --122.15,47.37,0.641,4.11 --122.15,47.38,0.64,4.107 --122.15,47.39,0.626,3.973 --122.15,47.40,0.62,3.909 --122.15,47.41,0.62,3.906 --122.15,47.42,0.619,3.904 --122.15,47.43,0.619,3.903 --122.15,47.44,0.619,3.902 --122.15,47.45,0.619,3.902 --122.15,47.46,0.619,3.902 --122.15,47.47,0.619,3.901 --122.15,47.48,0.633,4.032 --122.15,47.49,0.639,4.098 --122.15,47.50,0.658,4.273 --122.15,47.51,0.68,4.488 --122.15,47.52,0.689,4.572 --122.15,47.53,0.708,4.755 --122.15,47.54,0.73,4.964 --122.15,47.55,0.753,5.19 --122.15,47.56,0.772,5.375 --122.15,47.57,0.78,5.445 --122.15,47.58,0.794,5.586 --122.15,47.59,0.812,5.762 --122.15,47.60,0.816,5.794 --122.15,47.61,0.83,5.928 --122.15,47.62,0.836,5.985 --122.15,47.63,0.829,5.922 --122.15,47.64,0.827,5.899 --122.15,47.65,0.825,5.878 --122.15,47.66,0.815,5.791 --122.15,47.67,0.815,5.79 --122.15,47.68,0.806,5.697 --122.15,47.69,0.796,5.604 --122.15,47.70,0.785,5.502 --122.15,47.71,0.776,5.407 --122.15,47.72,0.769,5.343 --122.15,47.73,0.747,5.13 --122.15,47.74,0.744,5.1 --122.15,47.75,0.722,4.891 --122.15,47.76,0.703,4.706 --122.15,47.77,0.697,4.647 --122.15,47.78,0.674,4.432 --122.15,47.79,0.659,4.287 --122.15,47.80,0.64,4.104 --122.15,47.81,0.626,3.967 --122.15,47.82,0.603,3.745 --122.15,47.83,0.597,3.685 --122.15,47.84,0.576,3.49 --122.15,47.85,0.568,3.415 --122.15,47.86,0.554,3.277 --122.15,47.87,0.549,3.225 --122.15,47.88,0.546,3.201 --122.15,47.89,0.533,3.075 --122.15,47.90,0.529,3.032 --122.15,47.91,0.529,3.037 --122.15,47.92,0.53,3.042 --122.15,47.93,0.53,3.048 --122.15,47.94,0.531,3.053 --122.15,47.95,0.531,3.059 --122.15,47.96,0.532,3.065 --122.15,47.97,0.533,3.071 --122.15,47.98,0.533,3.075 --122.15,47.99,0.534,3.079 --122.15,48.00,0.534,3.083 --122.15,48.01,0.534,3.086 --122.15,48.02,0.535,3.09 --122.15,48.03,0.535,3.092 --122.15,48.04,0.535,3.093 --122.15,48.05,0.535,3.093 --122.15,48.06,0.516,2.913 --122.15,48.07,0.515,2.903 --122.15,48.08,0.509,2.845 --122.15,48.09,0.495,2.706 --122.15,48.10,0.484,2.605 --122.15,48.11,0.474,2.506 --122.15,48.12,0.459,2.365 --122.15,48.13,0.452,2.298 --122.15,48.14,0.434,2.12 --122.15,48.15,0.411,1.898 --122.15,48.16,0.388,1.674 --122.15,48.17,0.364,1.447 --122.15,48.18,0.346,1.273 --122.15,48.19,0.334,1.161 --122.15,48.20,0.311,0.934 --122.15,48.21,0.29,0.736 --122.15,48.22,0.267,0.519 --122.15,48.23,0.26,0.445 --122.14,47.00,0.243,0.284 --122.14,47.01,0.243,0.287 --122.14,47.02,0.244,0.289 --122.14,47.03,0.258,0.427 --122.14,47.04,0.263,0.481 --122.14,47.05,0.264,0.485 --122.14,47.06,0.284,0.676 --122.14,47.07,0.288,0.716 --122.14,47.08,0.31,0.931 --122.14,47.09,0.333,1.15 --122.14,47.10,0.356,1.373 --122.14,47.11,0.38,1.598 --122.14,47.12,0.404,1.828 --122.14,47.13,0.428,2.059 --122.14,47.14,0.451,2.287 --122.14,47.15,0.494,2.696 --122.14,47.16,0.518,2.928 --122.14,47.17,0.541,3.153 --122.14,47.18,0.565,3.379 --122.14,47.19,0.588,3.606 --122.14,47.20,0.612,3.834 --122.14,47.21,0.636,4.063 --122.14,47.22,0.66,4.291 --122.14,47.23,0.683,4.514 --122.14,47.24,0.685,4.537 --122.14,47.25,0.704,4.72 --122.14,47.26,0.704,4.719 --122.14,47.27,0.704,4.718 --122.14,47.28,0.704,4.717 --122.14,47.29,0.704,4.715 --122.14,47.30,0.703,4.71 --122.14,47.31,0.687,4.551 --122.14,47.32,0.682,4.509 --122.14,47.33,0.681,4.498 --122.14,47.34,0.662,4.31 --122.14,47.35,0.661,4.307 --122.14,47.36,0.654,4.236 --122.14,47.37,0.641,4.111 --122.14,47.38,0.641,4.109 --122.14,47.39,0.626,3.973 --122.14,47.40,0.62,3.91 --122.14,47.41,0.62,3.908 --122.14,47.42,0.619,3.905 --122.14,47.43,0.608,3.795 --122.14,47.44,0.608,3.796 --122.14,47.45,0.608,3.798 --122.14,47.46,0.608,3.799 --122.14,47.47,0.619,3.901 --122.14,47.48,0.629,3.998 --122.14,47.49,0.635,4.057 --122.14,47.50,0.65,4.2 --122.14,47.51,0.671,4.397 --122.14,47.52,0.683,4.516 --122.14,47.53,0.706,4.738 --122.14,47.54,0.721,4.88 --122.14,47.55,0.744,5.107 --122.14,47.56,0.757,5.226 --122.14,47.57,0.778,5.429 --122.14,47.58,0.782,5.469 --122.14,47.59,0.799,5.636 --122.14,47.60,0.807,5.713 --122.14,47.61,0.82,5.836 --122.14,47.62,0.82,5.835 --122.14,47.63,0.82,5.834 --122.14,47.64,0.82,5.833 --122.14,47.65,0.809,5.728 --122.14,47.66,0.806,5.696 --122.14,47.67,0.8,5.641 --122.14,47.68,0.8,5.64 --122.14,47.69,0.785,5.499 --122.14,47.70,0.778,5.43 --122.14,47.71,0.764,5.3 --122.14,47.72,0.753,5.193 --122.14,47.73,0.744,5.099 --122.14,47.74,0.729,4.955 --122.14,47.75,0.706,4.741 --122.14,47.76,0.702,4.7 --122.14,47.77,0.681,4.498 --122.14,47.78,0.661,4.306 --122.14,47.79,0.656,4.256 --122.14,47.80,0.633,4.037 --122.14,47.81,0.61,3.816 --122.14,47.82,0.597,3.691 --122.14,47.83,0.584,3.56 --122.14,47.84,0.56,3.337 --122.14,47.85,0.554,3.272 --122.14,47.86,0.552,3.259 --122.14,47.87,0.533,3.071 --122.14,47.88,0.532,3.063 --122.14,47.89,0.528,3.026 --122.14,47.90,0.513,2.88 --122.14,47.91,0.513,2.885 --122.14,47.92,0.514,2.89 --122.14,47.93,0.514,2.895 --122.14,47.94,0.515,2.901 --122.14,47.95,0.516,2.907 --122.14,47.96,0.516,2.913 --122.14,47.97,0.517,2.919 --122.14,47.98,0.517,2.923 --122.14,47.99,0.518,2.928 --122.14,48.00,0.518,2.932 --122.14,48.01,0.519,2.936 --122.14,48.02,0.519,2.94 --122.14,48.03,0.519,2.942 --122.14,48.04,0.519,2.943 --122.14,48.05,0.52,2.944 --122.14,48.06,0.515,2.905 --122.14,48.07,0.5,2.755 --122.14,48.08,0.495,2.707 --122.14,48.09,0.491,2.67 --122.14,48.10,0.474,2.504 --122.14,48.11,0.466,2.432 --122.14,48.12,0.444,2.218 --122.14,48.13,0.438,2.16 --122.14,48.14,0.418,1.97 --122.14,48.15,0.395,1.747 --122.14,48.16,0.385,1.652 --122.14,48.17,0.361,1.423 --122.14,48.18,0.345,1.263 --122.14,48.19,0.321,1.037 --122.14,48.20,0.298,0.814 --122.14,48.21,0.282,0.656 --122.14,48.22,0.264,0.489 --122.14,48.23,0.25,0.35 --122.13,47.00,0.243,0.286 --122.13,47.01,0.244,0.289 --122.13,47.02,0.244,0.292 --122.13,47.03,0.258,0.431 --122.13,47.04,0.264,0.483 --122.13,47.05,0.279,0.626 --122.13,47.06,0.284,0.678 --122.13,47.07,0.303,0.862 --122.13,47.08,0.311,0.935 --122.13,47.09,0.333,1.154 --122.13,47.10,0.357,1.376 --122.13,47.11,0.38,1.602 --122.13,47.12,0.404,1.831 --122.13,47.13,0.428,2.062 --122.13,47.14,0.452,2.29 --122.13,47.15,0.495,2.707 --122.13,47.16,0.518,2.931 --122.13,47.17,0.542,3.156 --122.13,47.18,0.565,3.381 --122.13,47.19,0.589,3.608 --122.13,47.20,0.612,3.835 --122.13,47.21,0.636,4.064 --122.13,47.22,0.66,4.292 --122.13,47.23,0.683,4.514 --122.13,47.24,0.685,4.538 --122.13,47.25,0.704,4.72 --122.13,47.26,0.704,4.719 --122.13,47.27,0.704,4.718 --122.13,47.28,0.704,4.717 --122.13,47.29,0.704,4.715 --122.13,47.30,0.703,4.711 --122.13,47.31,0.686,4.55 --122.13,47.32,0.682,4.51 --122.13,47.33,0.681,4.498 --122.13,47.34,0.662,4.311 --122.13,47.35,0.661,4.308 --122.13,47.36,0.654,4.235 --122.13,47.37,0.641,4.112 --122.13,47.38,0.641,4.11 --122.13,47.39,0.62,3.914 --122.13,47.40,0.62,3.911 --122.13,47.41,0.62,3.908 --122.13,47.42,0.612,3.836 --122.13,47.43,0.599,3.712 --122.13,47.44,0.599,3.71 --122.13,47.45,0.599,3.709 --122.13,47.46,0.608,3.799 --122.13,47.47,0.613,3.848 --122.13,47.48,0.614,3.851 --122.13,47.49,0.634,4.05 --122.13,47.50,0.638,4.082 --122.13,47.51,0.66,4.299 --122.13,47.52,0.679,4.476 --122.13,47.53,0.697,4.654 --122.13,47.54,0.709,4.769 --122.13,47.55,0.729,4.96 --122.13,47.56,0.753,5.187 --122.13,47.57,0.762,5.281 --122.13,47.58,0.779,5.439 --122.13,47.59,0.784,5.488 --122.13,47.60,0.805,5.686 --122.13,47.61,0.805,5.688 --122.13,47.62,0.805,5.687 --122.13,47.63,0.805,5.686 --122.13,47.64,0.804,5.684 --122.13,47.65,0.804,5.683 --122.13,47.66,0.791,5.556 --122.13,47.67,0.785,5.497 --122.13,47.68,0.784,5.492 --122.13,47.69,0.784,5.491 --122.13,47.70,0.764,5.299 --122.13,47.71,0.76,5.256 --122.13,47.72,0.743,5.098 --122.13,47.73,0.735,5.018 --122.13,47.74,0.713,4.805 --122.13,47.75,0.702,4.702 --122.13,47.76,0.688,4.565 --122.13,47.77,0.666,4.35 --122.13,47.78,0.66,4.3 --122.13,47.79,0.64,4.106 --122.13,47.80,0.618,3.887 --122.13,47.81,0.598,3.698 --122.13,47.82,0.591,3.632 --122.13,47.83,0.568,3.408 --122.13,47.84,0.554,3.271 --122.13,47.85,0.541,3.155 --122.13,47.86,0.536,3.107 --122.13,47.87,0.517,2.918 --122.13,47.88,0.516,2.911 --122.13,47.89,0.512,2.872 --122.13,47.90,0.51,2.857 --122.13,47.91,0.498,2.734 --122.13,47.92,0.498,2.74 --122.13,47.93,0.499,2.745 --122.13,47.94,0.499,2.75 --122.13,47.95,0.5,2.756 --122.13,47.96,0.501,2.762 --122.13,47.97,0.501,2.768 --122.13,47.98,0.502,2.773 --122.13,47.99,0.514,2.895 --122.13,48.00,0.515,2.897 --122.13,48.01,0.515,2.899 --122.13,48.02,0.511,2.859 --122.13,48.03,0.504,2.793 --122.13,48.04,0.504,2.795 --122.13,48.05,0.504,2.796 --122.13,48.06,0.503,2.782 --122.13,48.07,0.495,2.706 --122.13,48.08,0.484,2.605 --122.13,48.09,0.476,2.523 --122.13,48.10,0.464,2.408 --122.13,48.11,0.451,2.285 --122.13,48.12,0.433,2.108 --122.13,48.13,0.426,2.041 --122.13,48.14,0.402,1.818 --122.13,48.15,0.389,1.691 --122.13,48.16,0.376,1.566 --122.13,48.17,0.353,1.341 --122.13,48.18,0.329,1.115 --122.13,48.19,0.313,0.962 --122.13,48.20,0.29,0.739 --122.13,48.21,0.28,0.641 --122.13,48.22,0.261,0.457 --122.12,47.00,0.243,0.288 --122.12,47.01,0.244,0.291 --122.12,47.02,0.248,0.335 --122.12,47.03,0.263,0.481 --122.12,47.04,0.264,0.485 --122.12,47.05,0.283,0.668 --122.12,47.06,0.286,0.694 --122.12,47.07,0.304,0.874 --122.12,47.08,0.311,0.938 --122.12,47.09,0.334,1.157 --122.12,47.10,0.357,1.379 --122.12,47.11,0.38,1.605 --122.12,47.12,0.404,1.834 --122.12,47.13,0.428,2.065 --122.12,47.14,0.452,2.292 --122.12,47.15,0.495,2.71 --122.12,47.16,0.518,2.933 --122.12,47.17,0.542,3.157 --122.12,47.18,0.565,3.382 --122.12,47.19,0.589,3.609 --122.12,47.20,0.612,3.836 --122.12,47.21,0.636,4.065 --122.12,47.22,0.66,4.292 --122.12,47.23,0.677,4.462 --122.12,47.24,0.685,4.537 --122.12,47.25,0.704,4.717 --122.12,47.26,0.704,4.717 --122.12,47.27,0.704,4.716 --122.12,47.28,0.704,4.716 --122.12,47.29,0.704,4.714 --122.12,47.30,0.703,4.71 --122.12,47.31,0.683,4.514 --122.12,47.32,0.682,4.509 --122.12,47.33,0.681,4.496 --122.12,47.34,0.662,4.31 --122.12,47.35,0.661,4.308 --122.12,47.36,0.65,4.202 --122.12,47.37,0.641,4.112 --122.12,47.38,0.629,3.994 --122.12,47.39,0.62,3.914 --122.12,47.40,0.62,3.911 --122.12,47.41,0.619,3.903 --122.12,47.42,0.599,3.713 --122.12,47.43,0.599,3.711 --122.12,47.44,0.599,3.71 --122.12,47.45,0.599,3.708 --122.12,47.46,0.599,3.707 --122.12,47.47,0.599,3.706 --122.12,47.48,0.613,3.841 --122.12,47.49,0.619,3.901 --122.12,47.50,0.638,4.082 --122.12,47.51,0.66,4.299 --122.12,47.52,0.664,4.333 --122.12,47.53,0.686,4.546 --122.12,47.54,0.703,4.711 --122.12,47.55,0.714,4.814 --122.12,47.56,0.737,5.04 --122.12,47.57,0.747,5.131 --122.12,47.58,0.764,5.293 --122.12,47.59,0.769,5.34 --122.12,47.60,0.789,5.538 --122.12,47.61,0.789,5.539 --122.12,47.62,0.789,5.539 --122.12,47.63,0.789,5.538 --122.12,47.64,0.789,5.536 --122.12,47.65,0.789,5.535 --122.12,47.66,0.784,5.493 --122.12,47.67,0.773,5.385 --122.12,47.68,0.769,5.345 --122.12,47.69,0.769,5.342 --122.12,47.70,0.749,5.154 --122.12,47.71,0.744,5.106 --122.12,47.72,0.729,4.957 --122.12,47.73,0.72,4.868 --122.12,47.74,0.702,4.702 --122.12,47.75,0.695,4.631 --122.12,47.76,0.673,4.416 --122.12,47.77,0.661,4.302 --122.12,47.78,0.647,4.173 --122.12,47.79,0.625,3.956 --122.12,47.80,0.602,3.737 --122.12,47.81,0.597,3.691 --122.12,47.82,0.575,3.481 --122.12,47.83,0.554,3.28 --122.12,47.84,0.548,3.22 --122.12,47.85,0.526,3.003 --122.12,47.86,0.521,2.956 --122.12,47.87,0.511,2.862 --122.12,47.88,0.501,2.761 --122.12,47.89,0.501,2.761 --122.12,47.90,0.495,2.706 --122.12,47.91,0.491,2.673 --122.12,47.92,0.492,2.675 --122.12,47.93,0.483,2.595 --122.12,47.94,0.484,2.601 --122.12,47.95,0.484,2.607 --122.12,47.96,0.485,2.612 --122.12,47.97,0.493,2.692 --122.12,47.98,0.498,2.734 --122.12,47.99,0.506,2.817 --122.12,48.00,0.507,2.821 --122.12,48.01,0.507,2.826 --122.12,48.02,0.495,2.708 --122.12,48.03,0.495,2.705 --122.12,48.04,0.491,2.672 --122.12,48.05,0.489,2.649 --122.12,48.06,0.489,2.651 --122.12,48.07,0.485,2.613 --122.12,48.08,0.469,2.46 --122.12,48.09,0.461,2.377 --122.12,48.10,0.453,2.305 --122.12,48.11,0.436,2.138 --122.12,48.12,0.432,2.102 --122.12,48.13,0.41,1.89 --122.12,48.14,0.39,1.695 --122.12,48.15,0.384,1.638 --122.12,48.16,0.361,1.417 --122.12,48.17,0.338,1.193 --122.12,48.18,0.325,1.071 --122.12,48.19,0.311,0.937 --122.12,48.20,0.288,0.717 --122.12,48.21,0.267,0.517 --122.12,48.22,0.261,0.457 --122.11,47.00,0.244,0.29 --122.11,47.01,0.244,0.293 --122.11,47.02,0.257,0.414 --122.11,47.03,0.264,0.483 --122.11,47.04,0.264,0.487 --122.11,47.05,0.283,0.671 --122.11,47.06,0.286,0.697 --122.11,47.07,0.304,0.875 --122.11,47.08,0.311,0.94 --122.11,47.09,0.334,1.159 --122.11,47.10,0.357,1.381 --122.11,47.11,0.381,1.607 --122.11,47.12,0.404,1.836 --122.11,47.13,0.428,2.067 --122.11,47.14,0.452,2.294 --122.11,47.15,0.492,2.675 --122.11,47.16,0.518,2.934 --122.11,47.17,0.542,3.158 --122.11,47.18,0.565,3.383 --122.11,47.19,0.589,3.609 --122.11,47.20,0.612,3.836 --122.11,47.21,0.636,4.064 --122.11,47.22,0.659,4.29 --122.11,47.23,0.663,4.322 --122.11,47.24,0.685,4.535 --122.11,47.25,0.702,4.703 --122.11,47.26,0.703,4.713 --122.11,47.27,0.703,4.713 --122.11,47.28,0.703,4.712 --122.11,47.29,0.703,4.71 --122.11,47.30,0.688,4.569 --122.11,47.31,0.682,4.511 --122.11,47.32,0.682,4.506 --122.11,47.33,0.68,4.491 --122.11,47.34,0.661,4.307 --122.11,47.35,0.657,4.265 --122.11,47.36,0.641,4.111 --122.11,47.37,0.641,4.109 --122.11,47.38,0.628,3.99 --122.11,47.39,0.62,3.91 --122.11,47.40,0.62,3.908 --122.11,47.41,0.604,3.752 --122.11,47.42,0.599,3.709 --122.11,47.43,0.599,3.707 --122.11,47.44,0.599,3.705 --122.11,47.45,0.598,3.703 --122.11,47.46,0.598,3.701 --122.11,47.47,0.598,3.699 --122.11,47.48,0.603,3.745 --122.11,47.49,0.615,3.859 --122.11,47.50,0.624,3.947 --122.11,47.51,0.645,4.147 --122.11,47.52,0.663,4.322 --122.11,47.53,0.672,4.409 --122.11,47.54,0.689,4.573 --122.11,47.55,0.709,4.766 --122.11,47.56,0.722,4.891 --122.11,47.57,0.738,5.047 --122.11,47.58,0.752,5.181 --122.11,47.59,0.764,5.293 --122.11,47.60,0.774,5.388 --122.11,47.61,0.774,5.39 --122.11,47.62,0.774,5.39 --122.11,47.63,0.774,5.389 --122.11,47.64,0.773,5.387 --122.11,47.65,0.773,5.386 --122.11,47.66,0.773,5.385 --122.11,47.67,0.764,5.295 --122.11,47.68,0.755,5.213 --122.11,47.69,0.753,5.192 --122.11,47.70,0.743,5.096 --122.11,47.71,0.729,4.956 --122.11,47.72,0.722,4.895 --122.11,47.73,0.704,4.718 --122.11,47.74,0.701,4.694 --122.11,47.75,0.679,4.48 --122.11,47.76,0.661,4.303 --122.11,47.77,0.654,4.239 --122.11,47.78,0.632,4.023 --122.11,47.79,0.609,3.806 --122.11,47.80,0.598,3.698 --122.11,47.81,0.583,3.554 --122.11,47.82,0.56,3.33 --122.11,47.83,0.547,3.211 --122.11,47.84,0.533,3.069 --122.11,47.85,0.512,2.867 --122.11,47.86,0.508,2.829 --122.11,47.87,0.505,2.804 --122.11,47.88,0.485,2.614 --122.11,47.89,0.485,2.614 --122.11,47.90,0.486,2.619 --122.11,47.91,0.486,2.624 --122.11,47.92,0.476,2.526 --122.11,47.93,0.472,2.483 --122.11,47.94,0.472,2.486 --122.11,47.95,0.472,2.489 --122.11,47.96,0.473,2.492 --122.11,47.97,0.49,2.657 --122.11,47.98,0.49,2.662 --122.11,47.99,0.491,2.667 --122.11,48.00,0.491,2.672 --122.11,48.01,0.492,2.677 --122.11,48.02,0.492,2.682 --122.11,48.03,0.493,2.685 --122.11,48.04,0.476,2.524 --122.11,48.05,0.474,2.506 --122.11,48.06,0.474,2.505 --122.11,48.07,0.47,2.467 --122.11,48.08,0.454,2.316 --122.11,48.09,0.453,2.307 --122.11,48.10,0.443,2.204 --122.11,48.11,0.432,2.105 --122.11,48.12,0.417,1.96 --122.11,48.13,0.394,1.738 --122.11,48.14,0.389,1.689 --122.11,48.15,0.368,1.488 --122.11,48.16,0.345,1.268 --122.11,48.17,0.326,1.082 --122.11,48.18,0.319,1.013 --122.11,48.19,0.296,0.793 --122.11,48.20,0.283,0.665 --122.11,48.21,0.267,0.514 --122.11,48.22,0.248,0.331 --122.10,47.00,0.244,0.292 --122.10,47.01,0.244,0.294 --122.10,47.02,0.257,0.418 --122.10,47.03,0.264,0.485 --122.10,47.04,0.264,0.489 --122.10,47.05,0.284,0.675 --122.10,47.06,0.286,0.7 --122.10,47.07,0.305,0.877 --122.10,47.08,0.312,0.943 --122.10,47.09,0.334,1.161 --122.10,47.10,0.357,1.383 --122.10,47.11,0.381,1.609 --122.10,47.12,0.405,1.838 --122.10,47.13,0.429,2.069 --122.10,47.14,0.452,2.296 --122.10,47.15,0.477,2.535 --122.10,47.16,0.519,2.935 --122.10,47.17,0.542,3.159 --122.10,47.18,0.565,3.383 --122.10,47.19,0.589,3.609 --122.10,47.20,0.612,3.836 --122.10,47.21,0.636,4.063 --122.10,47.22,0.645,4.153 --122.10,47.23,0.663,4.32 --122.10,47.24,0.685,4.533 --122.10,47.25,0.687,4.554 --122.10,47.26,0.703,4.709 --122.10,47.27,0.703,4.708 --122.10,47.28,0.703,4.708 --122.10,47.29,0.695,4.632 --122.10,47.30,0.682,4.511 --122.10,47.31,0.682,4.507 --122.10,47.32,0.682,4.503 --122.10,47.33,0.666,4.35 --122.10,47.34,0.661,4.303 --122.10,47.35,0.641,4.115 --122.10,47.36,0.64,4.107 --122.10,47.37,0.637,4.074 --122.10,47.38,0.62,3.91 --122.10,47.39,0.62,3.907 --122.10,47.40,0.61,3.816 --122.10,47.41,0.599,3.708 --122.10,47.42,0.587,3.59 --122.10,47.43,0.587,3.59 --122.10,47.44,0.587,3.59 --122.10,47.45,0.587,3.59 --122.10,47.46,0.587,3.59 --122.10,47.47,0.587,3.59 --122.10,47.48,0.587,3.592 --122.10,47.49,0.604,3.756 --122.10,47.50,0.608,3.794 --122.10,47.51,0.63,4.004 --122.10,47.52,0.65,4.198 --122.10,47.53,0.656,4.26 --122.10,47.54,0.68,4.485 --122.10,47.55,0.693,4.616 --122.10,47.56,0.715,4.82 --122.10,47.57,0.73,4.965 --122.10,47.58,0.736,5.03 --122.10,47.59,0.756,5.215 --122.10,47.60,0.758,5.238 --122.10,47.61,0.758,5.24 --122.10,47.62,0.758,5.24 --122.10,47.63,0.758,5.239 --122.10,47.64,0.758,5.238 --122.10,47.65,0.758,5.237 --122.10,47.66,0.758,5.236 --122.10,47.67,0.758,5.235 --122.10,47.68,0.74,5.063 --122.10,47.69,0.738,5.047 --122.10,47.70,0.735,5.018 --122.10,47.71,0.718,4.852 --122.10,47.72,0.71,4.78 --122.10,47.73,0.697,4.656 --122.10,47.74,0.686,4.543 --122.10,47.75,0.664,4.33 --122.10,47.76,0.657,4.265 --122.10,47.77,0.638,4.088 --122.10,47.78,0.616,3.871 --122.10,47.79,0.598,3.701 --122.10,47.80,0.59,3.625 --122.10,47.81,0.567,3.403 --122.10,47.82,0.544,3.181 --122.10,47.83,0.533,3.077 --122.10,47.84,0.517,2.921 --122.10,47.85,0.51,2.854 --122.10,47.86,0.492,2.682 --122.10,47.87,0.49,2.657 --122.10,47.88,0.47,2.471 --122.10,47.89,0.47,2.47 --122.10,47.90,0.471,2.474 --122.10,47.91,0.471,2.479 --122.10,47.92,0.471,2.475 --122.10,47.93,0.471,2.477 --122.10,47.94,0.471,2.48 --122.10,47.95,0.472,2.482 --122.10,47.96,0.472,2.485 --122.10,47.97,0.474,2.509 --122.10,47.98,0.475,2.514 --122.10,47.99,0.475,2.519 --122.10,48.00,0.476,2.525 --122.10,48.01,0.476,2.53 --122.10,48.02,0.477,2.535 --122.10,48.03,0.477,2.539 --122.10,48.04,0.474,2.503 --122.10,48.05,0.459,2.361 --122.10,48.06,0.459,2.362 --122.10,48.07,0.455,2.322 --122.10,48.08,0.439,2.173 --122.10,48.09,0.439,2.166 --122.10,48.10,0.427,2.057 --122.10,48.11,0.418,1.963 --122.10,48.12,0.401,1.808 --122.10,48.13,0.389,1.693 --122.10,48.14,0.375,1.558 --122.10,48.15,0.353,1.339 --122.10,48.16,0.343,1.242 --122.10,48.17,0.326,1.078 --122.10,48.18,0.304,0.875 --122.10,48.19,0.293,0.762 --122.10,48.20,0.278,0.62 --122.10,48.21,0.262,0.467 --122.09,47.00,0.244,0.294 --122.09,47.01,0.244,0.296 --122.09,47.02,0.257,0.421 --122.09,47.03,0.264,0.487 --122.09,47.04,0.265,0.491 --122.09,47.05,0.284,0.678 --122.09,47.06,0.287,0.703 --122.09,47.07,0.305,0.878 --122.09,47.08,0.312,0.946 --122.09,47.09,0.334,1.164 --122.09,47.10,0.358,1.386 --122.09,47.11,0.381,1.611 --122.09,47.12,0.405,1.84 --122.09,47.13,0.429,2.071 --122.09,47.14,0.452,2.297 --122.09,47.15,0.477,2.538 --122.09,47.16,0.505,2.803 --122.09,47.17,0.542,3.159 --122.09,47.18,0.565,3.384 --122.09,47.19,0.589,3.609 --122.09,47.20,0.612,3.835 --122.09,47.21,0.628,3.989 --122.09,47.22,0.639,4.094 --122.09,47.23,0.662,4.318 --122.09,47.24,0.671,4.404 --122.09,47.25,0.687,4.551 --122.09,47.26,0.691,4.598 --122.09,47.27,0.692,4.6 --122.09,47.28,0.692,4.602 --122.09,47.29,0.682,4.511 --122.09,47.30,0.682,4.507 --122.09,47.31,0.682,4.503 --122.09,47.32,0.672,4.414 --122.09,47.33,0.661,4.303 --122.09,47.34,0.648,4.178 --122.09,47.35,0.64,4.106 --122.09,47.36,0.64,4.104 --122.09,47.37,0.621,3.923 --122.09,47.38,0.619,3.902 --122.09,47.39,0.612,3.829 --122.09,47.40,0.599,3.708 --122.09,47.41,0.592,3.644 --122.09,47.42,0.578,3.508 --122.09,47.43,0.578,3.505 --122.09,47.44,0.571,3.439 --122.09,47.45,0.571,3.438 --122.09,47.46,0.571,3.437 --122.09,47.47,0.571,3.437 --122.09,47.48,0.571,3.439 --122.09,47.49,0.592,3.637 --122.09,47.50,0.596,3.678 --122.09,47.51,0.614,3.852 --122.09,47.52,0.634,4.046 --122.09,47.53,0.641,4.111 --122.09,47.54,0.664,4.337 --122.09,47.55,0.688,4.561 --122.09,47.56,0.699,4.669 --122.09,47.57,0.714,4.816 --122.09,47.58,0.721,4.879 --122.09,47.59,0.74,5.066 --122.09,47.60,0.742,5.086 --122.09,47.61,0.742,5.088 --122.09,47.62,0.743,5.089 --122.09,47.63,0.742,5.088 --122.09,47.64,0.742,5.088 --122.09,47.65,0.742,5.088 --122.09,47.66,0.742,5.087 --122.09,47.67,0.742,5.087 --122.09,47.68,0.724,4.912 --122.09,47.69,0.723,4.898 --122.09,47.70,0.72,4.868 --122.09,47.71,0.702,4.704 --122.09,47.72,0.695,4.63 --122.09,47.73,0.682,4.507 --122.09,47.74,0.67,4.393 --122.09,47.75,0.648,4.179 --122.09,47.76,0.641,4.116 --122.09,47.77,0.623,3.936 --122.09,47.78,0.6,3.72 --122.09,47.79,0.597,3.693 --122.09,47.80,0.575,3.474 --122.09,47.81,0.552,3.253 --122.09,47.82,0.534,3.087 --122.09,47.83,0.525,2.997 --122.09,47.84,0.502,2.774 --122.09,47.85,0.495,2.709 --122.09,47.86,0.477,2.536 --122.09,47.87,0.475,2.512 --122.09,47.88,0.47,2.466 --122.09,47.89,0.455,2.328 --122.09,47.90,0.456,2.332 --122.09,47.91,0.456,2.336 --122.09,47.92,0.457,2.34 --122.09,47.93,0.457,2.345 --122.09,47.94,0.458,2.349 --122.09,47.95,0.458,2.354 --122.09,47.96,0.459,2.358 --122.09,47.97,0.459,2.362 --122.09,47.98,0.46,2.367 --122.09,47.99,0.46,2.373 --122.09,48.00,0.461,2.379 --122.09,48.01,0.461,2.384 --122.09,48.02,0.462,2.39 --122.09,48.03,0.462,2.394 --122.09,48.04,0.463,2.397 --122.09,48.05,0.444,2.218 --122.09,48.06,0.444,2.221 --122.09,48.07,0.44,2.179 --122.09,48.08,0.434,2.12 --122.09,48.09,0.423,2.018 --122.09,48.10,0.412,1.905 --122.09,48.11,0.402,1.812 --122.09,48.12,0.386,1.655 --122.09,48.13,0.38,1.605 --122.09,48.14,0.36,1.408 --122.09,48.15,0.347,1.285 --122.09,48.16,0.334,1.163 --122.09,48.17,0.312,0.943 --122.09,48.18,0.304,0.873 --122.09,48.19,0.286,0.694 --122.09,48.20,0.263,0.477 --122.09,48.21,0.26,0.451 --122.08,47.00,0.244,0.296 --122.08,47.01,0.244,0.298 --122.08,47.02,0.258,0.425 --122.08,47.03,0.264,0.489 --122.08,47.04,0.265,0.493 --122.08,47.05,0.284,0.681 --122.08,47.06,0.287,0.707 --122.08,47.07,0.305,0.879 --122.08,47.08,0.312,0.949 --122.08,47.09,0.335,1.166 --122.08,47.10,0.358,1.388 --122.08,47.11,0.381,1.614 --122.08,47.12,0.405,1.842 --122.08,47.13,0.429,2.073 --122.08,47.14,0.452,2.299 --122.08,47.15,0.476,2.522 --122.08,47.16,0.503,2.785 --122.08,47.17,0.533,3.077 --122.08,47.18,0.557,3.304 --122.08,47.19,0.581,3.531 --122.08,47.20,0.604,3.759 --122.08,47.21,0.615,3.867 --122.08,47.22,0.639,4.093 --122.08,47.23,0.655,4.252 --122.08,47.24,0.665,4.339 --122.08,47.25,0.676,4.449 --122.08,47.26,0.682,4.51 --122.08,47.27,0.682,4.509 --122.08,47.28,0.682,4.508 --122.08,47.29,0.682,4.507 --122.08,47.30,0.676,4.453 --122.08,47.31,0.676,4.452 --122.08,47.32,0.661,4.304 --122.08,47.33,0.654,4.241 --122.08,47.34,0.64,4.104 --122.08,47.35,0.636,4.064 --122.08,47.36,0.628,3.985 --122.08,47.37,0.619,3.905 --122.08,47.38,0.603,3.751 --122.08,47.39,0.599,3.707 --122.08,47.40,0.596,3.679 --122.08,47.41,0.578,3.508 --122.08,47.42,0.576,3.484 --122.08,47.43,0.572,3.448 --122.08,47.44,0.557,3.303 --122.08,47.45,0.555,3.287 --122.08,47.46,0.555,3.285 --122.08,47.47,0.555,3.283 --122.08,47.48,0.57,3.427 --122.08,47.49,0.576,3.483 --122.08,47.50,0.595,3.673 --122.08,47.51,0.598,3.701 --122.08,47.52,0.618,3.893 --122.08,47.53,0.625,3.96 --122.08,47.54,0.649,4.188 --122.08,47.55,0.672,4.413 --122.08,47.56,0.683,4.52 --122.08,47.57,0.699,4.667 --122.08,47.58,0.705,4.728 --122.08,47.59,0.725,4.916 --122.08,47.60,0.726,4.935 --122.08,47.61,0.727,4.937 --122.08,47.62,0.727,4.938 --122.08,47.63,0.727,4.938 --122.08,47.64,0.727,4.938 --122.08,47.65,0.727,4.939 --122.08,47.66,0.727,4.938 --122.08,47.67,0.727,4.938 --122.08,47.68,0.709,4.762 --122.08,47.69,0.707,4.75 --122.08,47.70,0.704,4.718 --122.08,47.71,0.687,4.556 --122.08,47.72,0.679,4.481 --122.08,47.73,0.667,4.359 --122.08,47.74,0.655,4.243 --122.08,47.75,0.632,4.029 --122.08,47.76,0.626,3.967 --122.08,47.77,0.607,3.786 --122.08,47.78,0.585,3.577 --122.08,47.79,0.582,3.542 --122.08,47.80,0.559,3.324 --122.08,47.81,0.536,3.104 --122.08,47.82,0.522,2.971 --122.08,47.83,0.51,2.848 --122.08,47.84,0.491,2.674 --122.08,47.85,0.484,2.601 --122.08,47.86,0.471,2.473 --122.08,47.87,0.46,2.373 --122.08,47.88,0.457,2.345 --122.08,47.89,0.45,2.275 --122.08,47.90,0.441,2.19 --122.08,47.91,0.442,2.194 --122.08,47.92,0.442,2.198 --122.08,47.93,0.442,2.202 --122.08,47.94,0.443,2.206 --122.08,47.95,0.443,2.209 --122.08,47.96,0.444,2.213 --122.08,47.97,0.444,2.217 --122.08,47.98,0.444,2.222 --122.08,47.99,0.445,2.228 --122.08,48.00,0.446,2.234 --122.08,48.01,0.446,2.24 --122.08,48.02,0.447,2.246 --122.08,48.03,0.447,2.251 --122.08,48.04,0.448,2.255 --122.08,48.05,0.429,2.074 --122.08,48.06,0.429,2.077 --122.08,48.07,0.429,2.076 --122.08,48.08,0.422,2.003 --122.08,48.09,0.408,1.868 --122.08,48.10,0.396,1.751 --122.08,48.11,0.39,1.698 --122.08,48.12,0.37,1.503 --122.08,48.13,0.367,1.476 --122.08,48.14,0.347,1.288 --122.08,48.15,0.342,1.232 --122.08,48.16,0.319,1.016 --122.08,48.17,0.305,0.882 --122.08,48.18,0.293,0.768 --122.08,48.19,0.272,0.567 --122.08,48.20,0.263,0.474 --122.08,48.21,0.246,0.31 --122.07,47.00,0.244,0.298 --122.07,47.01,0.245,0.3 --122.07,47.02,0.258,0.428 --122.07,47.03,0.265,0.491 --122.07,47.04,0.265,0.494 --122.07,47.05,0.284,0.683 --122.07,47.06,0.287,0.709 --122.07,47.07,0.305,0.881 --122.07,47.08,0.312,0.951 --122.07,47.09,0.335,1.169 --122.07,47.10,0.358,1.39 --122.07,47.11,0.381,1.616 --122.07,47.12,0.405,1.844 --122.07,47.13,0.429,2.074 --122.07,47.14,0.453,2.301 --122.07,47.15,0.476,2.523 --122.07,47.16,0.499,2.745 --122.07,47.17,0.522,2.968 --122.07,47.18,0.545,3.192 --122.07,47.19,0.569,3.416 --122.07,47.20,0.592,3.641 --122.07,47.21,0.615,3.866 --122.07,47.22,0.636,4.067 --122.07,47.23,0.642,4.122 --122.07,47.24,0.66,4.299 --122.07,47.25,0.666,4.357 --122.07,47.26,0.68,4.492 --122.07,47.27,0.681,4.494 --122.07,47.28,0.681,4.496 --122.07,47.29,0.668,4.372 --122.07,47.30,0.661,4.308 --122.07,47.31,0.661,4.304 --122.07,47.32,0.66,4.3 --122.07,47.33,0.64,4.104 --122.07,47.34,0.636,4.069 --122.07,47.35,0.62,3.915 --122.07,47.36,0.619,3.904 --122.07,47.37,0.61,3.814 --122.07,47.38,0.599,3.707 --122.07,47.39,0.586,3.579 --122.07,47.40,0.58,3.53 --122.07,47.41,0.578,3.504 --122.07,47.42,0.56,3.334 --122.07,47.43,0.557,3.303 --122.07,47.44,0.554,3.272 --122.07,47.45,0.539,3.135 --122.07,47.46,0.539,3.132 --122.07,47.47,0.539,3.129 --122.07,47.48,0.554,3.275 --122.07,47.49,0.56,3.329 --122.07,47.50,0.58,3.521 --122.07,47.51,0.582,3.549 --122.07,47.52,0.602,3.739 --122.07,47.53,0.609,3.809 --122.07,47.54,0.633,4.038 --122.07,47.55,0.657,4.264 --122.07,47.56,0.668,4.37 --122.07,47.57,0.683,4.519 --122.07,47.58,0.689,4.578 --122.07,47.59,0.709,4.768 --122.07,47.60,0.711,4.785 --122.07,47.61,0.711,4.787 --122.07,47.62,0.711,4.788 --122.07,47.63,0.711,4.789 --122.07,47.64,0.711,4.789 --122.07,47.65,0.711,4.79 --122.07,47.66,0.711,4.79 --122.07,47.67,0.711,4.79 --122.07,47.68,0.693,4.613 --122.07,47.69,0.692,4.603 --122.07,47.70,0.689,4.57 --122.07,47.71,0.672,4.409 --122.07,47.72,0.664,4.332 --122.07,47.73,0.651,4.211 --122.07,47.74,0.639,4.093 --122.07,47.75,0.617,3.878 --122.07,47.76,0.61,3.818 --122.07,47.77,0.591,3.636 --122.07,47.78,0.57,3.43 --122.07,47.79,0.566,3.393 --122.07,47.80,0.544,3.175 --122.07,47.81,0.521,2.954 --122.07,47.82,0.513,2.886 --122.07,47.83,0.494,2.701 --122.07,47.84,0.485,2.613 --122.07,47.85,0.469,2.456 --122.07,47.86,0.465,2.418 --122.07,47.87,0.445,2.231 --122.07,47.88,0.445,2.229 --122.07,47.89,0.44,2.182 --122.07,47.90,0.431,2.09 --122.07,47.91,0.427,2.052 --122.07,47.92,0.427,2.056 --122.07,47.93,0.428,2.059 --122.07,47.94,0.428,2.063 --122.07,47.95,0.428,2.066 --122.07,47.96,0.429,2.069 --122.07,47.97,0.429,2.072 --122.07,47.98,0.429,2.077 --122.07,47.99,0.43,2.083 --122.07,48.00,0.431,2.09 --122.07,48.01,0.431,2.096 --122.07,48.02,0.432,2.103 --122.07,48.03,0.433,2.109 --122.07,48.04,0.433,2.113 --122.07,48.05,0.414,1.927 --122.07,48.06,0.414,1.928 --122.07,48.07,0.414,1.926 --122.07,48.08,0.406,1.85 --122.07,48.09,0.392,1.715 --122.07,48.10,0.39,1.699 --122.07,48.11,0.377,1.571 --122.07,48.12,0.368,1.489 --122.07,48.13,0.351,1.325 --122.07,48.14,0.347,1.282 --122.07,48.15,0.326,1.084 --122.07,48.16,0.306,0.888 --122.07,48.17,0.301,0.841 --122.07,48.18,0.284,0.678 --122.07,48.19,0.272,0.563 --122.07,48.20,0.253,0.381 --122.06,47.00,0.245,0.299 --122.06,47.01,0.245,0.301 --122.06,47.02,0.258,0.431 --122.06,47.03,0.265,0.492 --122.06,47.04,0.265,0.495 --122.06,47.05,0.285,0.684 --122.06,47.06,0.288,0.712 --122.06,47.07,0.305,0.881 --122.06,47.08,0.313,0.953 --122.06,47.09,0.335,1.17 --122.06,47.10,0.357,1.384 --122.06,47.11,0.381,1.612 --122.06,47.12,0.405,1.843 --122.06,47.13,0.429,2.075 --122.06,47.14,0.453,2.301 --122.06,47.15,0.476,2.524 --122.06,47.16,0.499,2.745 --122.06,47.17,0.522,2.967 --122.06,47.18,0.545,3.191 --122.06,47.19,0.568,3.415 --122.06,47.20,0.592,3.639 --122.06,47.21,0.602,3.733 --122.06,47.22,0.621,3.917 --122.06,47.23,0.642,4.118 --122.06,47.24,0.645,4.148 --122.06,47.25,0.665,4.341 --122.06,47.26,0.665,4.342 --122.06,47.27,0.665,4.343 --122.06,47.28,0.665,4.345 --122.06,47.29,0.661,4.304 --122.06,47.30,0.661,4.301 --122.06,47.31,0.647,4.174 --122.06,47.32,0.645,4.149 --122.06,47.33,0.639,4.097 --122.06,47.34,0.621,3.916 --122.06,47.35,0.618,3.895 --122.06,47.36,0.605,3.764 --122.06,47.37,0.598,3.703 --122.06,47.38,0.592,3.64 --122.06,47.39,0.578,3.505 --122.06,47.40,0.567,3.404 --122.06,47.41,0.565,3.377 --122.06,47.42,0.544,3.183 --122.06,47.43,0.544,3.181 --122.06,47.44,0.538,3.118 --122.06,47.45,0.535,3.092 --122.06,47.46,0.523,2.979 --122.06,47.47,0.523,2.976 --122.06,47.48,0.538,3.122 --122.06,47.49,0.544,3.175 --122.06,47.50,0.564,3.369 --122.06,47.51,0.567,3.397 --122.06,47.52,0.586,3.586 --122.06,47.53,0.594,3.658 --122.06,47.54,0.618,3.888 --122.06,47.55,0.641,4.115 --122.06,47.56,0.645,4.148 --122.06,47.57,0.668,4.371 --122.06,47.58,0.674,4.428 --122.06,47.59,0.687,4.553 --122.06,47.60,0.695,4.634 --122.06,47.61,0.696,4.637 --122.06,47.62,0.696,4.638 --122.06,47.63,0.696,4.639 --122.06,47.64,0.696,4.64 --122.06,47.65,0.696,4.641 --122.06,47.66,0.696,4.642 --122.06,47.67,0.694,4.62 --122.06,47.68,0.677,4.455 --122.06,47.69,0.677,4.455 --122.06,47.70,0.668,4.376 --122.06,47.71,0.657,4.262 --122.06,47.72,0.648,4.182 --122.06,47.73,0.636,4.063 --122.06,47.74,0.623,3.943 --122.06,47.75,0.601,3.729 --122.06,47.76,0.595,3.67 --122.06,47.77,0.576,3.487 --122.06,47.78,0.555,3.283 --122.06,47.79,0.551,3.244 --122.06,47.80,0.528,3.025 --122.06,47.81,0.513,2.877 --122.06,47.82,0.502,2.773 --122.06,47.83,0.479,2.554 --122.06,47.84,0.471,2.478 --122.06,47.85,0.454,2.312 --122.06,47.86,0.451,2.28 --122.06,47.87,0.431,2.092 --122.06,47.88,0.431,2.089 --122.06,47.89,0.43,2.086 --122.06,47.90,0.424,2.023 --122.06,47.91,0.412,1.909 --122.06,47.92,0.412,1.912 --122.06,47.93,0.413,1.915 --122.06,47.94,0.413,1.917 --122.06,47.95,0.413,1.92 --122.06,47.96,0.413,1.922 --122.06,47.97,0.414,1.925 --122.06,47.98,0.414,1.929 --122.06,47.99,0.415,1.935 --122.06,48.00,0.415,1.941 --122.06,48.01,0.416,1.947 --122.06,48.02,0.417,1.954 --122.06,48.03,0.417,1.959 --122.06,48.04,0.418,1.963 --122.06,48.05,0.413,1.922 --122.06,48.06,0.398,1.773 --122.06,48.07,0.398,1.772 --122.06,48.08,0.391,1.711 --122.06,48.09,0.387,1.667 --122.06,48.10,0.375,1.557 --122.06,48.11,0.361,1.418 --122.06,48.12,0.354,1.354 --122.06,48.13,0.336,1.175 --122.06,48.14,0.333,1.151 --122.06,48.15,0.311,0.936 --122.06,48.16,0.305,0.884 --122.06,48.17,0.286,0.693 --122.06,48.18,0.283,0.667 --122.06,48.19,0.263,0.479 --122.06,48.20,0.249,0.344 --122.05,47.00,0.245,0.299 --122.05,47.01,0.245,0.301 --122.05,47.02,0.259,0.434 --122.05,47.03,0.265,0.493 --122.05,47.04,0.265,0.496 --122.05,47.05,0.285,0.684 --122.05,47.06,0.288,0.714 --122.05,47.07,0.305,0.881 --122.05,47.08,0.313,0.955 --122.05,47.09,0.33,1.118 --122.05,47.10,0.342,1.239 --122.05,47.11,0.366,1.465 --122.05,47.12,0.39,1.695 --122.05,47.13,0.414,1.926 --122.05,47.14,0.438,2.156 --122.05,47.15,0.461,2.382 --122.05,47.16,0.484,2.605 --122.05,47.17,0.508,2.829 --122.05,47.18,0.531,3.055 --122.05,47.19,0.555,3.281 --122.05,47.20,0.578,3.507 --122.05,47.21,0.594,3.665 --122.05,47.22,0.607,3.785 --122.05,47.23,0.628,3.989 --122.05,47.24,0.631,4.016 --122.05,47.25,0.649,4.188 --122.05,47.26,0.649,4.189 --122.05,47.27,0.649,4.19 --122.05,47.28,0.649,4.191 --122.05,47.29,0.649,4.191 --122.05,47.30,0.649,4.19 --122.05,47.31,0.631,4.018 --122.05,47.32,0.629,3.996 --122.05,47.33,0.627,3.974 --122.05,47.34,0.609,3.803 --122.05,47.35,0.602,3.74 --122.05,47.36,0.598,3.697 --122.05,47.37,0.589,3.612 --122.05,47.38,0.576,3.486 --122.05,47.39,0.569,3.42 --122.05,47.40,0.551,3.249 --122.05,47.41,0.549,3.224 --122.05,47.42,0.528,3.03 --122.05,47.43,0.528,3.028 --122.05,47.44,0.528,3.024 --122.05,47.45,0.519,2.939 --122.05,47.46,0.507,2.826 --122.05,47.47,0.507,2.822 --122.05,47.48,0.522,2.97 --122.05,47.49,0.528,3.022 --122.05,47.50,0.543,3.171 --122.05,47.51,0.551,3.246 --122.05,47.52,0.57,3.433 --122.05,47.53,0.578,3.508 --122.05,47.54,0.602,3.737 --122.05,47.55,0.615,3.862 --122.05,47.56,0.629,3.999 --122.05,47.57,0.652,4.222 --122.05,47.58,0.655,4.251 --122.05,47.59,0.659,4.286 --122.05,47.60,0.68,4.483 --122.05,47.61,0.68,4.486 --122.05,47.62,0.68,4.488 --122.05,47.63,0.68,4.489 --122.05,47.64,0.68,4.491 --122.05,47.65,0.68,4.492 --122.05,47.66,0.681,4.493 --122.05,47.67,0.663,4.329 --122.05,47.68,0.661,4.307 --122.05,47.69,0.66,4.294 --122.05,47.70,0.642,4.118 --122.05,47.71,0.641,4.113 --122.05,47.72,0.633,4.032 --122.05,47.73,0.62,3.914 --122.05,47.74,0.608,3.792 --122.05,47.75,0.586,3.579 --122.05,47.76,0.58,3.522 --122.05,47.77,0.56,3.338 --122.05,47.78,0.539,3.136 --122.05,47.79,0.535,3.095 --122.05,47.80,0.512,2.874 --122.05,47.81,0.497,2.729 --122.05,47.82,0.486,2.625 --122.05,47.83,0.472,2.486 --122.05,47.84,0.461,2.378 --122.05,47.85,0.451,2.282 --122.05,47.86,0.437,2.146 --122.05,47.87,0.431,2.089 --122.05,47.88,0.416,1.947 --122.05,47.89,0.416,1.949 --122.05,47.90,0.411,1.898 --122.05,47.91,0.411,1.897 --122.05,47.92,0.411,1.897 --122.05,47.93,0.403,1.823 --122.05,47.94,0.398,1.771 --122.05,47.95,0.398,1.773 --122.05,47.96,0.398,1.774 --122.05,47.97,0.398,1.776 --122.05,47.98,0.398,1.779 --122.05,47.99,0.399,1.784 --122.05,48.00,0.4,1.79 --122.05,48.01,0.4,1.795 --122.05,48.02,0.401,1.8 --122.05,48.03,0.401,1.805 --122.05,48.04,0.402,1.809 --122.05,48.05,0.401,1.806 --122.05,48.06,0.392,1.715 --122.05,48.07,0.381,1.616 --122.05,48.08,0.381,1.611 --122.05,48.09,0.371,1.512 --122.05,48.10,0.36,1.405 --122.05,48.11,0.347,1.289 --122.05,48.12,0.342,1.24 --122.05,48.13,0.326,1.086 --122.05,48.14,0.318,1.002 --122.05,48.15,0.306,0.886 --122.05,48.16,0.293,0.764 --122.05,48.17,0.284,0.681 --122.05,48.18,0.268,0.522 --122.05,48.19,0.263,0.477 --122.04,47.00,0.245,0.299 --122.04,47.01,0.245,0.302 --122.04,47.02,0.259,0.436 --122.04,47.03,0.265,0.493 --122.04,47.04,0.265,0.496 --122.04,47.05,0.285,0.685 --122.04,47.06,0.288,0.716 --122.04,47.07,0.294,0.77 --122.04,47.08,0.313,0.957 --122.04,47.09,0.326,1.082 --122.04,47.10,0.338,1.202 --122.04,47.11,0.362,1.424 --122.04,47.12,0.385,1.65 --122.04,47.13,0.409,1.878 --122.04,47.14,0.432,2.106 --122.04,47.15,0.455,2.328 --122.04,47.16,0.478,2.548 --122.04,47.17,0.501,2.77 --122.04,47.18,0.525,2.993 --122.04,47.19,0.539,3.132 --122.04,47.20,0.562,3.357 --122.04,47.21,0.586,3.582 --122.04,47.22,0.591,3.632 --122.04,47.23,0.612,3.835 --122.04,47.24,0.615,3.864 --122.04,47.25,0.633,4.033 --122.04,47.26,0.633,4.034 --122.04,47.27,0.633,4.035 --122.04,47.28,0.633,4.036 --122.04,47.29,0.633,4.036 --122.04,47.30,0.633,4.035 --122.04,47.31,0.615,3.862 --122.04,47.32,0.613,3.841 --122.04,47.33,0.61,3.817 --122.04,47.34,0.593,3.648 --122.04,47.35,0.593,3.649 --122.04,47.36,0.584,3.564 --122.04,47.37,0.573,3.459 --122.04,47.38,0.56,3.331 --122.04,47.39,0.553,3.266 --122.04,47.40,0.535,3.094 --122.04,47.41,0.533,3.07 --122.04,47.42,0.512,2.876 --122.04,47.43,0.512,2.874 --122.04,47.44,0.512,2.871 --122.04,47.45,0.501,2.768 --122.04,47.46,0.491,2.672 --122.04,47.47,0.491,2.669 --122.04,47.48,0.507,2.819 --122.04,47.49,0.511,2.866 --122.04,47.50,0.513,2.878 --122.04,47.51,0.535,3.096 --122.04,47.52,0.555,3.281 --122.04,47.53,0.563,3.358 --122.04,47.54,0.586,3.587 --122.04,47.55,0.599,3.711 --122.04,47.56,0.614,3.849 --122.04,47.57,0.623,3.943 --122.04,47.58,0.64,4.102 --122.04,47.59,0.643,4.135 --122.04,47.60,0.664,4.332 --122.04,47.61,0.664,4.335 --122.04,47.62,0.664,4.337 --122.04,47.63,0.664,4.338 --122.04,47.64,0.665,4.339 --122.04,47.65,0.665,4.341 --122.04,47.66,0.654,4.24 --122.04,47.67,0.645,4.155 --122.04,47.68,0.646,4.156 --122.04,47.69,0.644,4.141 --122.04,47.70,0.626,3.965 --122.04,47.71,0.625,3.957 --122.04,47.72,0.605,3.768 --122.04,47.73,0.601,3.723 --122.04,47.74,0.585,3.571 --122.04,47.75,0.57,3.428 --122.04,47.76,0.564,3.373 --122.04,47.77,0.545,3.188 --122.04,47.78,0.524,2.985 --122.04,47.79,0.519,2.942 --122.04,47.80,0.497,2.723 --122.04,47.81,0.482,2.58 --122.04,47.82,0.471,2.476 --122.04,47.83,0.46,2.376 --122.04,47.84,0.446,2.232 --122.04,47.85,0.44,2.179 --122.04,47.86,0.422,2.001 --122.04,47.87,0.419,1.98 --122.04,47.88,0.411,1.896 --122.04,47.89,0.401,1.806 --122.04,47.90,0.401,1.807 --122.04,47.91,0.402,1.809 --122.04,47.92,0.402,1.811 --122.04,47.93,0.39,1.702 --122.04,47.94,0.39,1.701 --122.04,47.95,0.39,1.699 --122.04,47.96,0.39,1.697 --122.04,47.97,0.39,1.696 --122.04,47.98,0.39,1.696 --122.04,47.99,0.39,1.697 --122.04,48.00,0.39,1.699 --122.04,48.01,0.384,1.642 --122.04,48.02,0.385,1.646 --122.04,48.03,0.385,1.65 --122.04,48.04,0.385,1.653 --122.04,48.05,0.386,1.656 --122.04,48.06,0.383,1.628 --122.04,48.07,0.365,1.461 --122.04,48.08,0.365,1.457 --122.04,48.09,0.355,1.357 --122.04,48.10,0.347,1.289 --122.04,48.11,0.343,1.249 --122.04,48.12,0.327,1.089 --122.04,48.13,0.324,1.066 --122.04,48.14,0.305,0.885 --122.04,48.15,0.3,0.83 --122.04,48.16,0.285,0.684 --122.04,48.17,0.275,0.591 --122.03,47.00,0.245,0.3 --122.03,47.01,0.245,0.302 --122.03,47.02,0.259,0.438 --122.03,47.03,0.265,0.494 --122.03,47.04,0.265,0.497 --122.03,47.05,0.285,0.685 --122.03,47.06,0.285,0.69 --122.03,47.07,0.291,0.745 --122.03,47.08,0.313,0.958 --122.03,47.09,0.319,1.019 --122.03,47.10,0.338,1.202 --122.03,47.11,0.362,1.424 --122.03,47.12,0.385,1.65 --122.03,47.13,0.409,1.877 --122.03,47.14,0.427,2.053 --122.03,47.15,0.45,2.278 --122.03,47.16,0.473,2.501 --122.03,47.17,0.497,2.725 --122.03,47.18,0.511,2.858 --122.03,47.19,0.527,3.02 --122.03,47.20,0.551,3.242 --122.03,47.21,0.57,3.431 --122.03,47.22,0.576,3.492 --122.03,47.23,0.596,3.681 --122.03,47.24,0.602,3.735 --122.03,47.25,0.617,3.879 --122.03,47.26,0.617,3.88 --122.03,47.27,0.617,3.88 --122.03,47.28,0.617,3.881 --122.03,47.29,0.617,3.881 --122.03,47.30,0.617,3.88 --122.03,47.31,0.599,3.706 --122.03,47.32,0.597,3.687 --122.03,47.33,0.594,3.662 --122.03,47.34,0.577,3.495 --122.03,47.35,0.577,3.495 --122.03,47.36,0.568,3.409 --122.03,47.37,0.557,3.306 --122.03,47.38,0.544,3.177 --122.03,47.39,0.537,3.114 --122.03,47.40,0.519,2.94 --122.03,47.41,0.517,2.916 --122.03,47.42,0.497,2.723 --122.03,47.43,0.496,2.72 --122.03,47.44,0.492,2.682 --122.03,47.45,0.476,2.523 --122.03,47.46,0.475,2.519 --122.03,47.47,0.475,2.516 --122.03,47.48,0.48,2.56 --122.03,47.49,0.494,2.697 --122.03,47.50,0.497,2.727 --122.03,47.51,0.52,2.947 --122.03,47.52,0.524,2.989 --122.03,47.53,0.547,3.209 --122.03,47.54,0.568,3.409 --122.03,47.55,0.575,3.473 --122.03,47.56,0.598,3.7 --122.03,47.57,0.606,3.776 --122.03,47.58,0.624,3.953 --122.03,47.59,0.628,3.984 --122.03,47.60,0.636,4.063 --122.03,47.61,0.648,4.184 --122.03,47.62,0.649,4.186 --122.03,47.63,0.649,4.187 --122.03,47.64,0.647,4.168 --122.03,47.65,0.638,4.085 --122.03,47.66,0.63,4.003 --122.03,47.67,0.63,4.003 --122.03,47.68,0.63,4.004 --122.03,47.69,0.618,3.893 --122.03,47.70,0.61,3.814 --122.03,47.71,0.603,3.751 --122.03,47.72,0.589,3.617 --122.03,47.73,0.579,3.513 --122.03,47.74,0.569,3.421 --122.03,47.75,0.554,3.276 --122.03,47.76,0.543,3.174 --122.03,47.77,0.529,3.031 --122.03,47.78,0.508,2.834 --122.03,47.79,0.504,2.79 --122.03,47.80,0.481,2.571 --122.03,47.81,0.466,2.432 --122.03,47.82,0.455,2.328 --122.03,47.83,0.445,2.231 --122.03,47.84,0.43,2.086 --122.03,47.85,0.425,2.036 --122.03,47.86,0.411,1.897 --122.03,47.87,0.406,1.848 --122.03,47.88,0.402,1.814 --122.03,47.89,0.391,1.703 --122.03,47.90,0.39,1.701 --122.03,47.91,0.386,1.663 --122.03,47.92,0.386,1.664 --122.03,47.93,0.387,1.665 --122.03,47.94,0.387,1.666 --122.03,47.95,0.387,1.666 --122.03,47.96,0.387,1.667 --122.03,47.97,0.387,1.668 --122.03,47.98,0.387,1.669 --122.03,47.99,0.387,1.673 --122.03,48.00,0.378,1.58 --122.03,48.01,0.369,1.499 --122.03,48.02,0.369,1.499 --122.03,48.03,0.369,1.495 --122.03,48.04,0.369,1.497 --122.03,48.05,0.369,1.5 --122.03,48.06,0.366,1.469 --122.03,48.07,0.349,1.306 --122.03,48.08,0.349,1.303 --122.03,48.09,0.347,1.288 --122.03,48.10,0.336,1.179 --122.03,48.11,0.328,1.101 --122.03,48.12,0.326,1.079 --122.03,48.13,0.309,0.918 --122.03,48.14,0.305,0.881 --122.02,47.00,0.245,0.3 --122.02,47.01,0.245,0.302 --122.02,47.02,0.259,0.44 --122.02,47.03,0.265,0.494 --122.02,47.04,0.265,0.497 --122.02,47.05,0.282,0.659 --122.02,47.06,0.285,0.69 --122.02,47.07,0.291,0.747 --122.02,47.08,0.306,0.888 --122.02,47.09,0.316,0.986 --122.02,47.10,0.339,1.203 --122.02,47.11,0.362,1.424 --122.02,47.12,0.384,1.64 --122.02,47.13,0.408,1.869 --122.02,47.14,0.412,1.908 --122.02,47.15,0.435,2.132 --122.02,47.16,0.458,2.354 --122.02,47.17,0.481,2.577 --122.02,47.18,0.504,2.794 --122.02,47.19,0.527,3.017 --122.02,47.20,0.537,3.115 --122.02,47.21,0.555,3.282 --122.02,47.22,0.576,3.487 --122.02,47.23,0.58,3.528 --122.02,47.24,0.601,3.724 --122.02,47.25,0.601,3.725 --122.02,47.26,0.601,3.726 --122.02,47.27,0.601,3.726 --122.02,47.28,0.601,3.726 --122.02,47.29,0.601,3.726 --122.02,47.30,0.601,3.725 --122.02,47.31,0.583,3.55 --122.02,47.32,0.581,3.533 --122.02,47.33,0.578,3.506 --122.02,47.34,0.561,3.342 --122.02,47.35,0.561,3.343 --122.02,47.36,0.552,3.255 --122.02,47.37,0.541,3.155 --122.02,47.38,0.528,3.024 --122.02,47.39,0.521,2.962 --122.02,47.40,0.503,2.786 --122.02,47.41,0.501,2.761 --122.02,47.42,0.481,2.571 --122.02,47.43,0.48,2.568 --122.02,47.44,0.473,2.498 --122.02,47.45,0.46,2.371 --122.02,47.46,0.46,2.367 --122.02,47.47,0.459,2.363 --122.02,47.48,0.46,2.368 --122.02,47.49,0.478,2.547 --122.02,47.50,0.481,2.577 --122.02,47.51,0.502,2.776 --122.02,47.52,0.508,2.832 --122.02,47.53,0.532,3.061 --122.02,47.54,0.546,3.203 --122.02,47.55,0.559,3.325 --122.02,47.56,0.581,3.532 --122.02,47.57,0.586,3.583 --122.02,47.58,0.603,3.748 --122.02,47.59,0.612,3.833 --122.02,47.60,0.615,3.862 --122.02,47.61,0.626,3.965 --122.02,47.62,0.626,3.969 --122.02,47.63,0.626,3.973 --122.02,47.64,0.616,3.873 --122.02,47.65,0.614,3.85 --122.02,47.66,0.614,3.851 --122.02,47.67,0.614,3.851 --122.02,47.68,0.609,3.804 --122.02,47.69,0.594,3.664 --122.02,47.70,0.594,3.662 --122.02,47.71,0.583,3.557 --122.02,47.72,0.574,3.467 --122.02,47.73,0.559,3.325 --122.02,47.74,0.554,3.272 --122.02,47.75,0.535,3.095 --122.02,47.76,0.516,2.91 --122.02,47.77,0.513,2.879 --122.02,47.78,0.492,2.683 --122.02,47.79,0.488,2.637 --122.02,47.80,0.465,2.42 --122.02,47.81,0.451,2.284 --122.02,47.82,0.44,2.179 --122.02,47.83,0.43,2.085 --122.02,47.84,0.415,1.938 --122.02,47.85,0.41,1.895 --122.02,47.86,0.41,1.891 --122.02,47.87,0.39,1.702 --122.02,47.88,0.39,1.7 --122.02,47.89,0.39,1.699 --122.02,47.90,0.383,1.627 --122.02,47.91,0.371,1.517 --122.02,47.92,0.371,1.517 --122.02,47.93,0.371,1.518 --122.02,47.94,0.371,1.518 --122.02,47.95,0.371,1.518 --122.02,47.96,0.371,1.519 --122.02,47.97,0.371,1.519 --122.02,47.98,0.372,1.52 --122.02,47.99,0.372,1.523 --122.02,48.00,0.368,1.49 --122.02,48.01,0.368,1.491 --122.02,48.02,0.358,1.391 --122.02,48.03,0.353,1.342 --122.02,48.04,0.353,1.344 --122.02,48.05,0.353,1.346 --122.02,48.06,0.35,1.313 --122.02,48.07,0.348,1.292 --122.02,48.08,0.333,1.152 --122.02,48.09,0.333,1.149 --122.02,48.10,0.326,1.084 --122.02,48.11,0.318,1.005 --122.01,47.00,0.245,0.3 --122.01,47.01,0.245,0.303 --122.01,47.02,0.259,0.442 --122.01,47.03,0.265,0.494 --122.01,47.04,0.265,0.497 --122.01,47.05,0.267,0.518 --122.01,47.06,0.285,0.69 --122.01,47.07,0.291,0.749 --122.01,47.08,0.306,0.888 --122.01,47.09,0.316,0.988 --122.01,47.10,0.339,1.203 --122.01,47.11,0.351,1.319 --122.01,47.12,0.369,1.493 --122.01,47.13,0.392,1.721 --122.01,47.14,0.412,1.906 --122.01,47.15,0.435,2.13 --122.01,47.16,0.458,2.35 --122.01,47.17,0.478,2.547 --122.01,47.18,0.489,2.653 --122.01,47.19,0.513,2.877 --122.01,47.20,0.53,3.043 --122.01,47.21,0.543,3.166 --122.01,47.22,0.562,3.355 --122.01,47.23,0.565,3.385 --122.01,47.24,0.585,3.572 --122.01,47.25,0.585,3.573 --122.01,47.26,0.585,3.573 --122.01,47.27,0.585,3.573 --122.01,47.28,0.585,3.573 --122.01,47.29,0.585,3.572 --122.01,47.30,0.585,3.571 --122.01,47.31,0.576,3.483 --122.01,47.32,0.565,3.38 --122.01,47.33,0.562,3.352 --122.01,47.34,0.555,3.284 --122.01,47.35,0.545,3.191 --122.01,47.36,0.536,3.102 --122.01,47.37,0.526,3.004 --122.01,47.38,0.515,2.897 --122.01,47.39,0.509,2.847 --122.01,47.40,0.494,2.695 --122.01,47.41,0.485,2.608 --122.01,47.42,0.473,2.492 --122.01,47.43,0.465,2.416 --122.01,47.44,0.457,2.345 --122.01,47.45,0.444,2.219 --122.01,47.46,0.444,2.214 --122.01,47.47,0.443,2.209 --122.01,47.48,0.444,2.215 --122.01,47.49,0.463,2.397 --122.01,47.50,0.466,2.428 --122.01,47.51,0.486,2.626 --122.01,47.52,0.493,2.684 --122.01,47.53,0.516,2.912 --122.01,47.54,0.527,3.012 --122.01,47.55,0.544,3.177 --122.01,47.56,0.554,3.273 --122.01,47.57,0.571,3.435 --122.01,47.58,0.576,3.484 --122.01,47.59,0.594,3.656 --122.01,47.60,0.597,3.691 --122.01,47.61,0.597,3.694 --122.01,47.62,0.598,3.696 --122.01,47.63,0.598,3.697 --122.01,47.64,0.598,3.698 --122.01,47.65,0.598,3.699 --122.01,47.66,0.598,3.7 --122.01,47.67,0.598,3.695 --122.01,47.68,0.579,3.513 --122.01,47.69,0.579,3.513 --122.01,47.70,0.575,3.473 --122.01,47.71,0.559,3.321 --122.01,47.72,0.551,3.243 --122.01,47.73,0.539,3.127 --122.01,47.74,0.526,3.011 --122.01,47.75,0.518,2.93 --122.01,47.76,0.5,2.757 --122.01,47.77,0.497,2.728 --122.01,47.78,0.477,2.532 --122.01,47.79,0.472,2.485 --122.01,47.80,0.449,2.269 --122.01,47.81,0.436,2.136 --122.01,47.82,0.424,2.029 --122.01,47.83,0.415,1.937 --122.01,47.84,0.41,1.893 --122.01,47.85,0.397,1.768 --122.01,47.86,0.395,1.745 --122.01,47.87,0.39,1.698 --122.01,47.88,0.375,1.558 --122.01,47.89,0.376,1.56 --122.01,47.90,0.37,1.504 --122.01,47.91,0.37,1.501 --122.01,47.92,0.369,1.499 --122.01,47.93,0.361,1.418 --122.01,47.94,0.356,1.371 --122.01,47.95,0.356,1.371 --122.01,47.96,0.356,1.371 --122.01,47.97,0.356,1.371 --122.01,47.98,0.356,1.371 --122.01,47.99,0.356,1.374 --122.01,48.00,0.357,1.376 --122.01,48.01,0.357,1.379 --122.01,48.02,0.348,1.291 --122.01,48.03,0.348,1.29 --122.01,48.04,0.338,1.199 --122.01,48.05,0.338,1.194 --122.01,48.06,0.338,1.196 --122.01,48.07,0.332,1.138 --122.01,48.08,0.326,1.087 --122.01,48.09,0.326,1.082 --122.00,47.00,0.245,0.301 --122.00,47.01,0.245,0.303 --122.00,47.02,0.26,0.444 --122.00,47.03,0.265,0.495 --122.00,47.04,0.265,0.498 --122.00,47.05,0.267,0.514 --122.00,47.06,0.285,0.691 --122.00,47.07,0.292,0.751 --122.00,47.08,0.306,0.888 --122.00,47.09,0.316,0.989 --122.00,47.10,0.334,1.163 --122.00,47.11,0.342,1.233 --122.00,47.12,0.365,1.455 --122.00,47.13,0.388,1.679 --122.00,47.14,0.411,1.904 --122.00,47.15,0.424,2.026 --122.00,47.16,0.447,2.25 --122.00,47.17,0.463,2.398 --122.00,47.18,0.483,2.597 --122.00,47.19,0.505,2.802 --122.00,47.20,0.52,2.952 --122.00,47.21,0.527,3.015 --122.00,47.22,0.547,3.206 --122.00,47.23,0.55,3.236 --122.00,47.24,0.569,3.42 --122.00,47.25,0.569,3.421 --122.00,47.26,0.569,3.42 --122.00,47.27,0.569,3.42 --122.00,47.28,0.569,3.419 --122.00,47.29,0.569,3.419 --122.00,47.30,0.569,3.418 --122.00,47.31,0.569,3.417 --122.00,47.32,0.549,3.229 --122.00,47.33,0.549,3.228 --122.00,47.34,0.544,3.178 --122.00,47.35,0.53,3.041 --122.00,47.36,0.52,2.95 --122.00,47.37,0.514,2.892 --122.00,47.38,0.51,2.852 --122.00,47.39,0.494,2.694 --122.00,47.40,0.489,2.655 --122.00,47.41,0.469,2.461 --122.00,47.42,0.466,2.43 --122.00,47.43,0.449,2.265 --122.00,47.44,0.441,2.191 --122.00,47.45,0.43,2.084 --122.00,47.46,0.428,2.061 --122.00,47.47,0.427,2.055 --122.00,47.48,0.428,2.062 --122.00,47.49,0.447,2.247 --122.00,47.50,0.45,2.279 --122.00,47.51,0.471,2.475 --122.00,47.52,0.477,2.535 --122.00,47.53,0.494,2.699 --122.00,47.54,0.505,2.8 --122.00,47.55,0.528,3.029 --122.00,47.56,0.538,3.125 --122.00,47.57,0.555,3.288 --122.00,47.58,0.56,3.336 --122.00,47.59,0.563,3.365 --122.00,47.60,0.582,3.542 --122.00,47.61,0.582,3.545 --122.00,47.62,0.582,3.546 --122.00,47.63,0.582,3.547 --122.00,47.64,0.582,3.548 --122.00,47.65,0.582,3.549 --122.00,47.66,0.571,3.441 --122.00,47.67,0.567,3.404 --122.00,47.68,0.563,3.363 --122.00,47.69,0.563,3.363 --122.00,47.70,0.544,3.181 --122.00,47.71,0.542,3.16 --122.00,47.72,0.523,2.979 --122.00,47.73,0.523,2.976 --122.00,47.74,0.509,2.845 --122.00,47.75,0.502,2.779 --122.00,47.76,0.484,2.604 --122.00,47.77,0.481,2.578 --122.00,47.78,0.461,2.382 --122.00,47.79,0.456,2.333 --122.00,47.80,0.434,2.117 --122.00,47.81,0.431,2.093 --122.00,47.82,0.411,1.9 --122.00,47.83,0.406,1.854 --122.00,47.84,0.399,1.786 --122.00,47.85,0.382,1.619 --122.00,47.86,0.38,1.598 --122.00,47.87,0.378,1.581 --122.00,47.88,0.37,1.503 --122.00,47.89,0.36,1.414 --122.00,47.90,0.36,1.414 --122.00,47.91,0.36,1.414 --122.00,47.92,0.36,1.414 --122.00,47.93,0.349,1.301 --122.00,47.94,0.348,1.298 --122.00,47.95,0.348,1.295 --122.00,47.96,0.348,1.292 --122.00,47.97,0.341,1.223 --122.00,47.98,0.341,1.223 --122.00,47.99,0.341,1.225 --122.00,48.00,0.341,1.227 --122.00,48.01,0.341,1.229 --122.00,48.02,0.341,1.231 --122.00,48.03,0.342,1.233 --122.00,48.04,0.327,1.09 --122.00,48.05,0.327,1.089 --122.00,48.06,0.322,1.045 --121.99,47.00,0.245,0.301 --121.99,47.01,0.245,0.303 --121.99,47.02,0.26,0.446 --121.99,47.03,0.265,0.495 --121.99,47.04,0.265,0.498 --121.99,47.05,0.267,0.517 --121.99,47.06,0.285,0.691 --121.99,47.07,0.292,0.752 --121.99,47.08,0.298,0.816 --121.99,47.09,0.316,0.99 --121.99,47.10,0.326,1.085 --121.99,47.11,0.342,1.233 --121.99,47.12,0.365,1.455 --121.99,47.13,0.383,1.626 --121.99,47.14,0.404,1.831 --121.99,47.15,0.414,1.932 --121.99,47.16,0.437,2.154 --121.99,47.17,0.46,2.374 --121.99,47.18,0.478,2.549 --121.99,47.19,0.489,2.652 --121.99,47.20,0.509,2.843 --121.99,47.21,0.512,2.871 --121.99,47.22,0.532,3.066 --121.99,47.23,0.538,3.119 --121.99,47.24,0.553,3.269 --121.99,47.25,0.553,3.269 --121.99,47.26,0.553,3.269 --121.99,47.27,0.555,3.288 --121.99,47.28,0.553,3.267 --121.99,47.29,0.553,3.266 --121.99,47.30,0.553,3.266 --121.99,47.31,0.553,3.265 --121.99,47.32,0.534,3.085 --121.99,47.33,0.533,3.078 --121.99,47.34,0.528,3.026 --121.99,47.35,0.514,2.891 --121.99,47.36,0.514,2.887 --121.99,47.37,0.502,2.777 --121.99,47.38,0.494,2.702 --121.99,47.39,0.478,2.542 --121.99,47.40,0.474,2.505 --121.99,47.41,0.454,2.311 --121.99,47.42,0.45,2.277 --121.99,47.43,0.433,2.113 --121.99,47.44,0.43,2.083 --121.99,47.45,0.423,2.011 --121.99,47.46,0.412,1.907 --121.99,47.47,0.411,1.9 --121.99,47.48,0.412,1.908 --121.99,47.49,0.431,2.096 --121.99,47.50,0.435,2.129 --121.99,47.51,0.455,2.324 --121.99,47.52,0.462,2.387 --121.99,47.53,0.478,2.546 --121.99,47.54,0.489,2.652 --121.99,47.55,0.507,2.825 --121.99,47.56,0.517,2.916 --121.99,47.57,0.53,3.048 --121.99,47.58,0.543,3.172 --121.99,47.59,0.546,3.202 --121.99,47.60,0.554,3.275 --121.99,47.61,0.567,3.397 --121.99,47.62,0.567,3.398 --121.99,47.63,0.567,3.399 --121.99,47.64,0.564,3.371 --121.99,47.65,0.556,3.296 --121.99,47.66,0.548,3.215 --121.99,47.67,0.548,3.215 --121.99,47.68,0.548,3.215 --121.99,47.69,0.535,3.095 --121.99,47.70,0.528,3.025 --121.99,47.71,0.511,2.865 --121.99,47.72,0.507,2.828 --121.99,47.73,0.507,2.822 --121.99,47.74,0.487,2.631 --121.99,47.75,0.483,2.589 --121.99,47.76,0.466,2.433 --121.99,47.77,0.458,2.352 --121.99,47.78,0.445,2.231 --121.99,47.79,0.433,2.113 --121.99,47.80,0.424,2.029 --121.99,47.81,0.415,1.941 --121.99,47.82,0.404,1.834 --121.99,47.83,0.391,1.703 --121.99,47.84,0.384,1.639 --121.99,47.85,0.37,1.501 --121.99,47.86,0.364,1.452 --121.99,47.87,0.365,1.454 --121.99,47.88,0.36,1.414 --121.99,47.89,0.349,1.307 --121.99,47.90,0.349,1.305 --121.99,47.91,0.345,1.267 --121.99,47.92,0.345,1.267 --121.99,47.93,0.345,1.267 --121.99,47.94,0.345,1.266 --121.99,47.95,0.345,1.266 --121.99,47.96,0.343,1.246 --121.99,47.97,0.327,1.094 --121.99,47.98,0.327,1.091 --121.99,47.99,0.327,1.09 --121.99,48.00,0.327,1.089 --121.99,48.01,0.327,1.088 --121.99,48.02,0.326,1.082 --121.99,48.03,0.326,1.084 --121.98,47.00,0.245,0.301 --121.98,47.01,0.245,0.303 --121.98,47.02,0.26,0.448 --121.98,47.03,0.265,0.495 --121.98,47.04,0.265,0.498 --121.98,47.05,0.267,0.519 --121.98,47.06,0.285,0.692 --121.98,47.07,0.286,0.696 --121.98,47.08,0.295,0.78 --121.98,47.09,0.317,0.992 --121.98,47.10,0.324,1.064 --121.98,47.11,0.342,1.235 --121.98,47.12,0.365,1.456 --121.98,47.13,0.368,1.485 --121.98,47.14,0.391,1.708 --121.98,47.15,0.414,1.931 --121.98,47.16,0.437,2.148 --121.98,47.17,0.452,2.291 --121.98,47.18,0.463,2.401 --121.98,47.19,0.486,2.62 --121.98,47.20,0.495,2.704 --121.98,47.21,0.512,2.868 --121.98,47.22,0.517,2.915 --121.98,47.23,0.537,3.115 --121.98,47.24,0.538,3.119 --121.98,47.25,0.538,3.12 --121.98,47.26,0.543,3.173 --121.98,47.27,0.547,3.21 --121.98,47.28,0.538,3.119 --121.98,47.29,0.538,3.119 --121.98,47.30,0.538,3.118 --121.98,47.31,0.538,3.118 --121.98,47.32,0.534,3.079 --121.98,47.33,0.518,2.931 --121.98,47.34,0.513,2.886 --121.98,47.35,0.51,2.857 --121.98,47.36,0.499,2.743 --121.98,47.37,0.487,2.627 --121.98,47.38,0.479,2.553 --121.98,47.39,0.462,2.392 --121.98,47.40,0.458,2.356 --121.98,47.41,0.438,2.162 --121.98,47.42,0.434,2.126 --121.98,47.43,0.418,1.963 --121.98,47.44,0.417,1.959 --121.98,47.45,0.407,1.859 --121.98,47.46,0.396,1.757 --121.98,47.47,0.395,1.75 --121.98,47.48,0.396,1.758 --121.98,47.49,0.416,1.949 --121.98,47.50,0.42,1.982 --121.98,47.51,0.44,2.175 --121.98,47.52,0.446,2.24 --121.98,47.53,0.463,2.396 --121.98,47.54,0.474,2.505 --121.98,47.55,0.486,2.617 --121.98,47.56,0.501,2.768 --121.98,47.57,0.508,2.835 --121.98,47.58,0.528,3.024 --121.98,47.59,0.53,3.047 --121.98,47.60,0.534,3.083 --121.98,47.61,0.544,3.177 --121.98,47.62,0.544,3.181 --121.98,47.63,0.544,3.184 --121.98,47.64,0.533,3.078 --121.98,47.65,0.532,3.063 --121.98,47.66,0.532,3.064 --121.98,47.67,0.528,3.026 --121.98,47.68,0.526,3.008 --121.98,47.69,0.512,2.873 --121.98,47.70,0.502,2.779 --121.98,47.71,0.492,2.679 --121.98,47.72,0.492,2.676 --121.98,47.73,0.476,2.526 --121.98,47.74,0.471,2.481 --121.98,47.75,0.452,2.294 --121.98,47.76,0.451,2.283 --121.98,47.77,0.43,2.086 --121.98,47.78,0.427,2.055 --121.98,47.79,0.409,1.882 --121.98,47.80,0.409,1.878 --121.98,47.81,0.398,1.774 --121.98,47.82,0.389,1.684 --121.98,47.83,0.375,1.553 --121.98,47.84,0.368,1.491 --121.98,47.85,0.369,1.493 --121.98,47.86,0.349,1.305 --121.98,47.87,0.349,1.307 --121.98,47.88,0.349,1.305 --121.98,47.89,0.349,1.303 --121.98,47.90,0.341,1.225 --121.98,47.91,0.33,1.121 --121.98,47.92,0.33,1.121 --121.98,47.93,0.33,1.12 --121.98,47.94,0.33,1.12 --121.98,47.95,0.33,1.12 --121.98,47.96,0.328,1.098 --121.98,47.97,0.327,1.088 --121.98,47.98,0.326,1.085 --121.98,47.99,0.326,1.084 --121.98,48.00,0.326,1.082 --121.98,48.01,0.317,0.997 --121.97,47.00,0.245,0.301 --121.97,47.01,0.245,0.303 --121.97,47.02,0.26,0.45 --121.97,47.03,0.265,0.496 --121.97,47.04,0.265,0.499 --121.97,47.05,0.268,0.521 --121.97,47.06,0.285,0.692 --121.97,47.07,0.286,0.696 --121.97,47.08,0.295,0.782 --121.97,47.09,0.309,0.914 --121.97,47.10,0.32,1.02 --121.97,47.11,0.342,1.236 --121.97,47.12,0.351,1.32 --121.97,47.13,0.368,1.486 --121.97,47.14,0.391,1.708 --121.97,47.15,0.414,1.93 --121.97,47.16,0.421,2.0 --121.97,47.17,0.44,2.179 --121.97,47.18,0.457,2.343 --121.97,47.19,0.471,2.477 --121.97,47.20,0.479,2.554 --121.97,47.21,0.497,2.729 --121.97,47.22,0.501,2.764 --121.97,47.23,0.522,2.964 --121.97,47.24,0.522,2.968 --121.97,47.25,0.522,2.969 --121.97,47.26,0.542,3.158 --121.97,47.27,0.534,3.087 --121.97,47.28,0.534,3.084 --121.97,47.29,0.527,3.018 --121.97,47.30,0.522,2.971 --121.97,47.31,0.522,2.971 --121.97,47.32,0.521,2.957 --121.97,47.33,0.503,2.784 --121.97,47.34,0.503,2.784 --121.97,47.35,0.495,2.707 --121.97,47.36,0.483,2.595 --121.97,47.37,0.471,2.477 --121.97,47.38,0.463,2.405 --121.97,47.39,0.447,2.242 --121.97,47.40,0.443,2.208 --121.97,47.41,0.423,2.013 --121.97,47.42,0.419,1.975 --121.97,47.43,0.402,1.814 --121.97,47.44,0.402,1.809 --121.97,47.45,0.391,1.708 --121.97,47.46,0.387,1.673 --121.97,47.47,0.38,1.602 --121.97,47.48,0.381,1.61 --121.97,47.49,0.401,1.803 --121.97,47.50,0.404,1.835 --121.97,47.51,0.424,2.027 --121.97,47.52,0.431,2.093 --121.97,47.53,0.447,2.247 --121.97,47.54,0.459,2.357 --121.97,47.55,0.47,2.467 --121.97,47.56,0.486,2.619 --121.97,47.57,0.493,2.684 --121.97,47.58,0.51,2.854 --121.97,47.59,0.514,2.894 --121.97,47.60,0.515,2.902 --121.97,47.61,0.515,2.905 --121.97,47.62,0.516,2.906 --121.97,47.63,0.516,2.907 --121.97,47.64,0.516,2.908 --121.97,47.65,0.516,2.909 --121.97,47.66,0.515,2.9 --121.97,47.67,0.497,2.726 --121.97,47.68,0.496,2.719 --121.97,47.69,0.493,2.69 --121.97,47.70,0.476,2.527 --121.97,47.71,0.476,2.525 --121.97,47.72,0.467,2.44 --121.97,47.73,0.456,2.33 --121.97,47.74,0.443,2.208 --121.97,47.75,0.435,2.134 --121.97,47.76,0.435,2.13 --121.97,47.77,0.414,1.932 --121.97,47.78,0.411,1.9 --121.97,47.79,0.393,1.728 --121.97,47.80,0.389,1.687 --121.97,47.81,0.373,1.533 --121.97,47.82,0.373,1.533 --121.97,47.83,0.359,1.401 --121.97,47.84,0.353,1.342 --121.97,47.85,0.353,1.345 --121.97,47.86,0.349,1.3 --121.97,47.87,0.334,1.16 --121.97,47.88,0.334,1.163 --121.97,47.89,0.335,1.165 --121.97,47.90,0.328,1.106 --121.97,47.91,0.328,1.102 --121.97,47.92,0.328,1.099 --121.97,47.93,0.327,1.096 --121.97,47.94,0.317,0.991 --121.97,47.95,0.315,0.973 --121.97,47.96,0.315,0.973 --121.97,47.97,0.315,0.972 --121.97,47.98,0.315,0.972 --121.96,47.00,0.245,0.301 --121.96,47.01,0.245,0.303 --121.96,47.02,0.26,0.452 --121.96,47.03,0.265,0.496 --121.96,47.04,0.265,0.499 --121.96,47.05,0.268,0.523 --121.96,47.06,0.285,0.692 --121.96,47.07,0.286,0.696 --121.96,47.08,0.295,0.784 --121.96,47.09,0.306,0.893 --121.96,47.10,0.32,1.022 --121.96,47.11,0.342,1.238 --121.96,47.12,0.347,1.288 --121.96,47.13,0.368,1.486 --121.96,47.14,0.38,1.598 --121.96,47.15,0.399,1.78 --121.96,47.16,0.417,1.957 --121.96,47.17,0.429,2.076 --121.96,47.18,0.443,2.205 --121.96,47.19,0.462,2.395 --121.96,47.20,0.468,2.451 --121.96,47.21,0.484,2.604 --121.96,47.22,0.494,2.697 --121.96,47.23,0.506,2.813 --121.96,47.24,0.506,2.817 --121.96,47.25,0.521,2.956 --121.96,47.26,0.526,3.009 --121.96,47.27,0.526,3.009 --121.96,47.28,0.526,3.009 --121.96,47.29,0.512,2.868 --121.96,47.30,0.507,2.823 --121.96,47.31,0.507,2.823 --121.96,47.32,0.505,2.808 --121.96,47.33,0.493,2.691 --121.96,47.34,0.488,2.637 --121.96,47.35,0.479,2.558 --121.96,47.36,0.468,2.448 --121.96,47.37,0.455,2.327 --121.96,47.38,0.452,2.298 --121.96,47.39,0.432,2.102 --121.96,47.40,0.428,2.066 --121.96,47.41,0.411,1.896 --121.96,47.42,0.403,1.824 --121.96,47.43,0.389,1.691 --121.96,47.44,0.386,1.66 --121.96,47.45,0.386,1.656 --121.96,47.46,0.373,1.531 --121.96,47.47,0.366,1.47 --121.96,47.48,0.366,1.463 --121.96,47.49,0.387,1.665 --121.96,47.50,0.389,1.689 --121.96,47.51,0.409,1.878 --121.96,47.52,0.416,1.946 --121.96,47.53,0.432,2.098 --121.96,47.54,0.443,2.209 --121.96,47.55,0.454,2.317 --121.96,47.56,0.47,2.47 --121.96,47.57,0.477,2.532 --121.96,47.58,0.479,2.556 --121.96,47.59,0.499,2.742 --121.96,47.60,0.499,2.749 --121.96,47.61,0.499,2.751 --121.96,47.62,0.5,2.752 --121.96,47.63,0.5,2.753 --121.96,47.64,0.5,2.753 --121.96,47.65,0.489,2.652 --121.96,47.66,0.484,2.602 --121.96,47.67,0.48,2.564 --121.96,47.68,0.48,2.564 --121.96,47.69,0.462,2.391 --121.96,47.70,0.46,2.373 --121.96,47.71,0.458,2.352 --121.96,47.72,0.44,2.178 --121.96,47.73,0.44,2.176 --121.96,47.74,0.425,2.038 --121.96,47.75,0.419,1.979 --121.96,47.76,0.407,1.863 --121.96,47.77,0.398,1.777 --121.96,47.78,0.395,1.743 --121.96,47.79,0.377,1.574 --121.96,47.80,0.369,1.5 --121.96,47.81,0.357,1.381 --121.96,47.82,0.357,1.382 --121.96,47.83,0.348,1.295 --121.96,47.84,0.341,1.229 --121.96,47.85,0.338,1.196 --121.96,47.86,0.338,1.194 --121.96,47.87,0.328,1.105 --121.96,47.88,0.328,1.105 --121.96,47.89,0.319,1.018 --121.96,47.90,0.319,1.018 --121.96,47.91,0.319,1.017 --121.96,47.92,0.319,1.016 --121.96,47.93,0.319,1.015 --121.96,47.94,0.307,0.898 --121.96,47.95,0.307,0.895 --121.95,47.00,0.245,0.301 --121.95,47.01,0.245,0.303 --121.95,47.02,0.261,0.454 --121.95,47.03,0.265,0.496 --121.95,47.04,0.265,0.499 --121.95,47.05,0.268,0.525 --121.95,47.06,0.286,0.693 --121.95,47.07,0.286,0.697 --121.95,47.08,0.295,0.786 --121.95,47.09,0.306,0.893 --121.95,47.10,0.32,1.024 --121.95,47.11,0.339,1.21 --121.95,47.12,0.345,1.267 --121.95,47.13,0.368,1.486 --121.95,47.14,0.371,1.515 --121.95,47.15,0.394,1.735 --121.95,47.16,0.404,1.834 --121.95,47.17,0.42,1.983 --121.95,47.18,0.443,2.203 --121.95,47.19,0.447,2.246 --121.95,47.20,0.468,2.446 --121.95,47.21,0.469,2.454 --121.95,47.22,0.489,2.653 --121.95,47.23,0.49,2.662 --121.95,47.24,0.495,2.707 --121.95,47.25,0.511,2.858 --121.95,47.26,0.511,2.859 --121.95,47.27,0.511,2.86 --121.95,47.28,0.511,2.861 --121.95,47.29,0.496,2.718 --121.95,47.30,0.493,2.692 --121.95,47.31,0.492,2.676 --121.95,47.32,0.492,2.677 --121.95,47.33,0.488,2.639 --121.95,47.34,0.472,2.49 --121.95,47.35,0.464,2.409 --121.95,47.36,0.453,2.3 --121.95,47.37,0.452,2.296 --121.95,47.38,0.438,2.156 --121.95,47.39,0.431,2.096 --121.95,47.40,0.413,1.915 --121.95,47.41,0.41,1.888 --121.95,47.42,0.389,1.692 --121.95,47.43,0.385,1.647 --121.95,47.44,0.371,1.512 --121.95,47.45,0.37,1.507 --121.95,47.46,0.367,1.473 --121.95,47.47,0.354,1.356 --121.95,47.48,0.364,1.444 --121.95,47.49,0.371,1.517 --121.95,47.50,0.374,1.543 --121.95,47.51,0.393,1.73 --121.95,47.52,0.399,1.788 --121.95,47.53,0.404,1.834 --121.95,47.54,0.423,2.014 --121.95,47.55,0.431,2.095 --121.95,47.56,0.446,2.237 --121.95,47.57,0.458,2.351 --121.95,47.58,0.462,2.388 --121.95,47.59,0.469,2.462 --121.95,47.60,0.47,2.472 --121.95,47.61,0.471,2.477 --121.95,47.62,0.483,2.597 --121.95,47.63,0.472,2.484 --121.95,47.64,0.472,2.488 --121.95,47.65,0.464,2.408 --121.95,47.66,0.464,2.408 --121.95,47.67,0.454,2.317 --121.95,47.68,0.452,2.299 --121.95,47.69,0.444,2.219 --121.95,47.70,0.444,2.218 --121.95,47.71,0.427,2.052 --121.95,47.72,0.424,2.023 --121.95,47.73,0.423,2.011 --121.95,47.74,0.403,1.825 --121.95,47.75,0.398,1.776 --121.95,47.76,0.382,1.625 --121.95,47.77,0.382,1.621 --121.95,47.78,0.371,1.515 --121.95,47.79,0.361,1.419 --121.95,47.80,0.353,1.344 --121.95,47.81,0.341,1.229 --121.95,47.82,0.341,1.23 --121.95,47.83,0.342,1.232 --121.95,47.84,0.326,1.078 --121.95,47.85,0.322,1.048 --121.95,47.86,0.323,1.052 --121.95,47.87,0.323,1.056 --121.95,47.88,0.318,1.01 --121.95,47.89,0.308,0.91 --121.95,47.90,0.308,0.907 --121.95,47.91,0.307,0.903 --121.95,47.92,0.304,0.869 --121.95,47.93,0.304,0.868 --121.94,47.00,0.245,0.301 --121.94,47.01,0.245,0.303 --121.94,47.02,0.261,0.456 --121.94,47.03,0.265,0.496 --121.94,47.04,0.265,0.499 --121.94,47.05,0.268,0.527 --121.94,47.06,0.281,0.654 --121.94,47.07,0.286,0.697 --121.94,47.08,0.295,0.788 --121.94,47.09,0.306,0.893 --121.94,47.10,0.32,1.026 --121.94,47.11,0.327,1.091 --121.94,47.12,0.345,1.269 --121.94,47.13,0.366,1.465 --121.94,47.14,0.371,1.515 --121.94,47.15,0.388,1.676 --121.94,47.16,0.397,1.762 --121.94,47.17,0.419,1.981 --121.94,47.18,0.431,2.088 --121.94,47.19,0.445,2.228 --121.94,47.20,0.452,2.297 --121.94,47.21,0.453,2.305 --121.94,47.22,0.474,2.504 --121.94,47.23,0.475,2.511 --121.94,47.24,0.479,2.558 --121.94,47.25,0.495,2.708 --121.94,47.26,0.495,2.71 --121.94,47.27,0.495,2.711 --121.94,47.28,0.496,2.713 --121.94,47.29,0.493,2.688 --121.94,47.30,0.478,2.549 --121.94,47.31,0.476,2.529 --121.94,47.32,0.476,2.53 --121.94,47.33,0.472,2.491 --121.94,47.34,0.457,2.343 --121.94,47.35,0.452,2.299 --121.94,47.36,0.446,2.239 --121.94,47.37,0.437,2.152 --121.94,47.38,0.422,2.005 --121.94,47.39,0.417,1.956 --121.94,47.40,0.397,1.764 --121.94,47.41,0.394,1.737 --121.94,47.42,0.376,1.561 --121.94,47.43,0.369,1.496 --121.94,47.44,0.367,1.472 --121.94,47.45,0.355,1.36 --121.94,47.46,0.354,1.354 --121.94,47.47,0.346,1.271 --121.94,47.48,0.355,1.358 --121.94,47.49,0.356,1.37 --121.94,47.50,0.359,1.397 --121.94,47.51,0.378,1.581 --121.94,47.52,0.379,1.593 --121.94,47.53,0.389,1.686 --121.94,47.54,0.402,1.811 --121.94,47.55,0.416,1.946 --121.94,47.56,0.424,2.028 --121.94,47.57,0.442,2.202 --121.94,47.58,0.446,2.236 --121.94,47.59,0.447,2.242 --121.94,47.60,0.447,2.248 --121.94,47.61,0.453,2.308 --121.94,47.62,0.452,2.296 --121.94,47.63,0.448,2.252 --121.94,47.64,0.448,2.252 --121.94,47.65,0.448,2.252 --121.94,47.66,0.445,2.224 --121.94,47.67,0.428,2.062 --121.94,47.68,0.428,2.062 --121.94,47.69,0.423,2.014 --121.94,47.70,0.417,1.961 --121.94,47.71,0.408,1.868 --121.94,47.72,0.407,1.866 --121.94,47.73,0.391,1.707 --121.94,47.74,0.387,1.668 --121.94,47.75,0.37,1.503 --121.94,47.76,0.366,1.469 --121.94,47.77,0.365,1.453 --121.94,47.78,0.345,1.269 --121.94,47.79,0.345,1.264 --121.94,47.80,0.337,1.189 --121.94,47.81,0.325,1.077 --121.94,47.82,0.326,1.08 --121.94,47.83,0.326,1.082 --121.94,47.84,0.31,0.929 --121.94,47.85,0.307,0.903 --121.94,47.86,0.308,0.905 --121.94,47.87,0.308,0.91 --121.94,47.88,0.308,0.907 --121.94,47.89,0.308,0.906 --121.94,47.90,0.307,0.902 --121.93,47.00,0.245,0.3 --121.93,47.01,0.245,0.302 --121.93,47.02,0.261,0.458 --121.93,47.03,0.265,0.496 --121.93,47.04,0.265,0.499 --121.93,47.05,0.266,0.505 --121.93,47.06,0.271,0.552 --121.93,47.07,0.286,0.697 --121.93,47.08,0.296,0.79 --121.93,47.09,0.306,0.893 --121.93,47.10,0.32,1.028 --121.93,47.11,0.327,1.091 --121.93,47.12,0.346,1.27 --121.93,47.13,0.351,1.319 --121.93,47.14,0.371,1.515 --121.93,47.15,0.374,1.542 --121.93,47.16,0.397,1.761 --121.93,47.17,0.414,1.929 --121.93,47.18,0.422,2.007 --121.93,47.19,0.436,2.139 --121.93,47.20,0.437,2.147 --121.93,47.21,0.45,2.278 --121.93,47.22,0.458,2.354 --121.93,47.23,0.459,2.361 --121.93,47.24,0.478,2.542 --121.93,47.25,0.479,2.558 --121.93,47.26,0.48,2.56 --121.93,47.27,0.48,2.562 --121.93,47.28,0.48,2.565 --121.93,47.29,0.48,2.566 --121.93,47.30,0.473,2.493 --121.93,47.31,0.461,2.382 --121.93,47.32,0.461,2.384 --121.93,47.33,0.457,2.342 --121.93,47.34,0.452,2.298 --121.93,47.35,0.442,2.195 --121.93,47.36,0.432,2.102 --121.93,47.37,0.428,2.068 --121.93,47.38,0.411,1.903 --121.93,47.39,0.404,1.829 --121.93,47.40,0.39,1.697 --121.93,47.41,0.378,1.586 --121.93,47.42,0.368,1.49 --121.93,47.43,0.36,1.408 --121.93,47.44,0.351,1.322 --121.93,47.45,0.347,1.282 --121.93,47.46,0.339,1.207 --121.93,47.47,0.339,1.203 --121.93,47.48,0.339,1.211 --121.93,47.49,0.341,1.222 --121.93,47.50,0.349,1.307 --121.93,47.51,0.362,1.433 --121.93,47.52,0.364,1.444 --121.93,47.53,0.378,1.587 --121.93,47.54,0.386,1.661 --121.93,47.55,0.4,1.798 --121.93,47.56,0.409,1.877 --121.93,47.57,0.426,2.042 --121.93,47.58,0.43,2.079 --121.93,47.59,0.431,2.089 --121.93,47.60,0.431,2.094 --121.93,47.61,0.431,2.096 --121.93,47.62,0.431,2.096 --121.93,47.63,0.431,2.096 --121.93,47.64,0.43,2.08 --121.93,47.65,0.43,2.083 --121.93,47.66,0.413,1.922 --121.93,47.67,0.411,1.904 --121.93,47.68,0.41,1.886 --121.93,47.69,0.392,1.713 --121.93,47.70,0.391,1.712 --121.93,47.71,0.391,1.71 --121.93,47.72,0.381,1.616 --121.93,47.73,0.371,1.513 --121.93,47.74,0.37,1.51 --121.93,47.75,0.353,1.344 --121.93,47.76,0.35,1.311 --121.93,47.77,0.348,1.294 --121.93,47.78,0.329,1.113 --121.93,47.79,0.329,1.109 --121.93,47.80,0.321,1.034 --121.93,47.81,0.31,0.928 --121.93,47.82,0.31,0.931 --121.93,47.83,0.311,0.935 --121.93,47.84,0.307,0.895 --121.93,47.85,0.307,0.897 --121.93,47.86,0.292,0.758 --121.93,47.87,0.293,0.762 --121.93,47.88,0.293,0.766 --121.92,47.00,0.245,0.299 --121.92,47.01,0.245,0.301 --121.92,47.02,0.261,0.459 --121.92,47.03,0.265,0.495 --121.92,47.04,0.265,0.498 --121.92,47.05,0.266,0.501 --121.92,47.06,0.271,0.553 --121.92,47.07,0.286,0.696 --121.92,47.08,0.292,0.757 --121.92,47.09,0.298,0.816 --121.92,47.10,0.313,0.96 --121.92,47.11,0.323,1.055 --121.92,47.12,0.335,1.165 --121.92,47.13,0.348,1.297 --121.92,47.14,0.368,1.487 --121.92,47.15,0.374,1.541 --121.92,47.16,0.396,1.759 --121.92,47.17,0.399,1.786 --121.92,47.18,0.419,1.981 --121.92,47.19,0.42,1.99 --121.92,47.20,0.427,2.058 --121.92,47.21,0.442,2.197 --121.92,47.22,0.443,2.204 --121.92,47.23,0.455,2.325 --121.92,47.24,0.464,2.406 --121.92,47.25,0.464,2.409 --121.92,47.26,0.464,2.412 --121.92,47.27,0.464,2.414 --121.92,47.28,0.465,2.417 --121.92,47.29,0.465,2.419 --121.92,47.30,0.465,2.421 --121.92,47.31,0.452,2.299 --121.92,47.32,0.446,2.237 --121.92,47.33,0.446,2.238 --121.92,47.34,0.439,2.173 --121.92,47.35,0.432,2.101 --121.92,47.36,0.426,2.047 --121.92,47.37,0.413,1.917 --121.92,47.38,0.406,1.853 --121.92,47.39,0.388,1.678 --121.92,47.40,0.385,1.652 --121.92,47.41,0.369,1.493 --121.92,47.42,0.36,1.41 --121.92,47.43,0.348,1.29 --121.92,47.44,0.344,1.257 --121.92,47.45,0.333,1.149 --121.92,47.46,0.326,1.082 --121.92,47.47,0.325,1.075 --121.92,47.48,0.324,1.066 --121.92,47.49,0.326,1.087 --121.92,47.50,0.346,1.275 --121.92,47.51,0.347,1.285 --121.92,47.52,0.355,1.358 --121.92,47.53,0.369,1.499 --121.92,47.54,0.371,1.511 --121.92,47.55,0.385,1.649 --121.92,47.56,0.393,1.726 --121.92,47.57,0.395,1.743 --121.92,47.58,0.414,1.928 --121.92,47.59,0.415,1.935 --121.92,47.60,0.415,1.939 --121.92,47.61,0.415,1.94 --121.92,47.62,0.415,1.94 --121.92,47.63,0.407,1.865 --121.92,47.64,0.398,1.778 --121.92,47.65,0.399,1.781 --121.92,47.66,0.395,1.745 --121.92,47.67,0.395,1.745 --121.92,47.68,0.378,1.581 --121.92,47.69,0.375,1.553 --121.92,47.70,0.374,1.543 --121.92,47.71,0.36,1.412 --121.92,47.72,0.354,1.356 --121.92,47.73,0.354,1.353 --121.92,47.74,0.345,1.269 --121.92,47.75,0.334,1.157 --121.92,47.76,0.333,1.153 --121.92,47.77,0.319,1.019 --121.92,47.78,0.313,0.961 --121.92,47.79,0.313,0.958 --121.92,47.80,0.305,0.882 --121.92,47.81,0.294,0.779 --121.92,47.82,0.295,0.783 --121.92,47.83,0.295,0.787 --121.92,47.84,0.296,0.791 --121.92,47.85,0.296,0.796 --121.91,47.00,0.244,0.298 --121.91,47.01,0.245,0.3 --121.91,47.02,0.261,0.46 --121.91,47.03,0.265,0.494 --121.91,47.04,0.265,0.497 --121.91,47.05,0.265,0.499 --121.91,47.06,0.271,0.554 --121.91,47.07,0.286,0.694 --121.91,47.08,0.286,0.698 --121.91,47.09,0.298,0.816 --121.91,47.10,0.307,0.895 --121.91,47.11,0.323,1.055 --121.91,47.12,0.327,1.093 --121.91,47.13,0.348,1.297 --121.91,47.14,0.361,1.416 --121.91,47.15,0.374,1.541 --121.91,47.16,0.382,1.624 --121.91,47.17,0.399,1.785 --121.91,47.18,0.404,1.832 --121.91,47.19,0.405,1.841 --121.91,47.20,0.426,2.04 --121.91,47.21,0.43,2.081 --121.91,47.22,0.433,2.107 --121.91,47.23,0.448,2.252 --121.91,47.24,0.448,2.257 --121.91,47.25,0.448,2.26 --121.91,47.26,0.452,2.296 --121.91,47.27,0.452,2.296 --121.91,47.28,0.452,2.296 --121.91,47.29,0.452,2.296 --121.91,47.30,0.45,2.274 --121.91,47.31,0.45,2.271 --121.91,47.32,0.432,2.105 --121.91,47.33,0.431,2.091 --121.91,47.34,0.431,2.091 --121.91,47.35,0.422,2.001 --121.91,47.36,0.411,1.902 --121.91,47.37,0.397,1.767 --121.91,47.38,0.391,1.705 --121.91,47.39,0.372,1.529 --121.91,47.40,0.37,1.503 --121.91,47.41,0.367,1.477 --121.91,47.42,0.348,1.294 --121.91,47.43,0.342,1.238 --121.91,47.44,0.329,1.113 --121.91,47.45,0.326,1.087 --121.91,47.46,0.326,1.08 --121.91,47.47,0.313,0.956 --121.91,47.48,0.309,0.923 --121.91,47.49,0.326,1.086 --121.91,47.50,0.331,1.129 --121.91,47.51,0.332,1.138 --121.91,47.52,0.339,1.212 --121.91,47.53,0.354,1.349 --121.91,47.54,0.355,1.36 --121.91,47.55,0.369,1.499 --121.91,47.56,0.377,1.573 --121.91,47.57,0.378,1.578 --121.91,47.58,0.384,1.644 --121.91,47.59,0.385,1.651 --121.91,47.60,0.386,1.657 --121.91,47.61,0.386,1.661 --121.91,47.62,0.386,1.663 --121.91,47.63,0.379,1.588 --121.91,47.64,0.379,1.588 --121.91,47.65,0.378,1.587 --121.91,47.66,0.37,1.504 --121.91,47.67,0.368,1.484 --121.91,47.68,0.359,1.395 --121.91,47.69,0.358,1.394 --121.91,47.70,0.342,1.239 --121.91,47.71,0.338,1.201 --121.91,47.72,0.338,1.199 --121.91,47.73,0.336,1.179 --121.91,47.74,0.318,1.006 --121.91,47.75,0.318,1.004 --121.91,47.76,0.31,0.931 --121.91,47.77,0.298,0.815 --121.91,47.78,0.298,0.812 --121.91,47.79,0.298,0.81 --121.91,47.80,0.29,0.734 --121.91,47.81,0.285,0.69 --121.91,47.82,0.28,0.636 --121.90,47.01,0.244,0.298 --121.90,47.02,0.261,0.46 --121.90,47.03,0.265,0.492 --121.90,47.04,0.265,0.495 --121.90,47.05,0.265,0.498 --121.90,47.06,0.271,0.555 --121.90,47.07,0.286,0.693 --121.90,47.08,0.286,0.697 --121.90,47.09,0.298,0.817 --121.90,47.10,0.306,0.893 --121.90,47.11,0.323,1.056 --121.90,47.12,0.327,1.092 --121.90,47.13,0.345,1.261 --121.90,47.14,0.351,1.323 --121.90,47.15,0.366,1.468 --121.90,47.16,0.376,1.566 --121.90,47.17,0.388,1.675 --121.90,47.18,0.39,1.694 --121.90,47.19,0.404,1.836 --121.90,47.20,0.41,1.891 --121.90,47.21,0.43,2.078 --121.90,47.22,0.431,2.096 --121.90,47.23,0.432,2.103 --121.90,47.24,0.433,2.107 --121.90,47.25,0.439,2.172 --121.90,47.26,0.452,2.291 --121.90,47.27,0.452,2.291 --121.90,47.28,0.452,2.291 --121.90,47.29,0.438,2.159 --121.90,47.30,0.434,2.126 --121.90,47.31,0.434,2.122 --121.90,47.32,0.432,2.1 --121.90,47.33,0.415,1.943 --121.90,47.34,0.415,1.943 --121.90,47.35,0.411,1.902 --121.90,47.36,0.404,1.829 --121.90,47.37,0.391,1.703 --121.90,47.38,0.379,1.594 --121.90,47.39,0.37,1.502 --121.90,47.40,0.355,1.36 --121.90,47.41,0.352,1.33 --121.90,47.42,0.334,1.163 --121.90,47.43,0.328,1.097 --121.90,47.44,0.325,1.07 --121.90,47.45,0.314,0.967 --121.90,47.46,0.314,0.964 --121.90,47.47,0.306,0.887 --121.90,47.48,0.306,0.89 --121.90,47.49,0.315,0.976 --121.90,47.50,0.316,0.984 --121.90,47.51,0.317,0.991 --121.90,47.52,0.335,1.165 --121.90,47.53,0.338,1.2 --121.90,47.54,0.339,1.209 --121.90,47.55,0.354,1.349 --121.90,47.56,0.361,1.42 --121.90,47.57,0.362,1.424 --121.90,47.58,0.362,1.426 --121.90,47.59,0.362,1.428 --121.90,47.60,0.362,1.43 --121.90,47.61,0.362,1.431 --121.90,47.62,0.362,1.431 --121.90,47.63,0.362,1.43 --121.90,47.64,0.362,1.428 --121.90,47.65,0.356,1.368 --121.90,47.66,0.342,1.237 --121.90,47.67,0.342,1.237 --121.90,47.68,0.342,1.237 --121.90,47.69,0.333,1.147 --121.90,47.70,0.322,1.047 --121.90,47.71,0.322,1.046 --121.90,47.72,0.318,1.006 --121.90,47.73,0.305,0.885 --121.90,47.74,0.302,0.856 --121.90,47.75,0.302,0.855 --121.90,47.76,0.283,0.67 --121.90,47.77,0.283,0.667 --121.90,47.78,0.283,0.666 --121.90,47.79,0.283,0.665 --121.90,47.80,0.283,0.667 --121.89,47.02,0.261,0.461 --121.89,47.03,0.265,0.491 --121.89,47.04,0.265,0.494 --121.89,47.05,0.265,0.497 --121.89,47.06,0.271,0.555 --121.89,47.07,0.285,0.692 --121.89,47.08,0.286,0.695 --121.89,47.09,0.298,0.817 --121.89,47.10,0.306,0.892 --121.89,47.11,0.323,1.056 --121.89,47.12,0.327,1.09 --121.89,47.13,0.329,1.115 --121.89,47.14,0.35,1.313 --121.89,47.15,0.354,1.349 --121.89,47.16,0.371,1.519 --121.89,47.17,0.379,1.591 --121.89,47.18,0.389,1.69 --121.89,47.19,0.394,1.734 --121.89,47.20,0.407,1.86 --121.89,47.21,0.415,1.94 --121.89,47.22,0.416,1.947 --121.89,47.23,0.417,1.953 --121.89,47.24,0.431,2.095 --121.89,47.25,0.437,2.152 --121.89,47.26,0.438,2.155 --121.89,47.27,0.438,2.159 --121.89,47.28,0.438,2.162 --121.89,47.29,0.431,2.097 --121.89,47.30,0.431,2.096 --121.89,47.31,0.419,1.98 --121.89,47.32,0.417,1.953 --121.89,47.33,0.411,1.904 --121.89,47.34,0.411,1.901 --121.89,47.35,0.4,1.793 --121.89,47.36,0.388,1.679 --121.89,47.37,0.38,1.601 --121.89,47.38,0.37,1.504 --121.89,47.39,0.361,1.421 --121.89,47.40,0.349,1.302 --121.89,47.41,0.336,1.183 --121.89,47.42,0.328,1.1 --121.89,47.43,0.327,1.095 --121.89,47.44,0.31,0.924 --121.89,47.45,0.307,0.897 --121.89,47.46,0.305,0.879 --121.89,47.47,0.299,0.82 --121.89,47.48,0.299,0.826 --121.89,47.49,0.3,0.832 --121.89,47.50,0.301,0.839 --121.89,47.51,0.312,0.947 --121.89,47.52,0.322,1.042 --121.89,47.53,0.323,1.05 --121.89,47.54,0.323,1.058 --121.89,47.55,0.338,1.199 --121.89,47.56,0.345,1.266 --121.89,47.57,0.345,1.269 --121.89,47.58,0.346,1.271 --121.89,47.59,0.346,1.272 --121.89,47.60,0.346,1.273 --121.89,47.61,0.346,1.272 --121.89,47.62,0.346,1.272 --121.89,47.63,0.346,1.27 --121.89,47.64,0.33,1.125 --121.89,47.65,0.326,1.079 --121.89,47.66,0.326,1.079 --121.89,47.67,0.325,1.072 --121.89,47.68,0.323,1.053 --121.89,47.69,0.306,0.894 --121.89,47.70,0.306,0.894 --121.89,47.71,0.298,0.815 --121.89,47.72,0.288,0.715 --121.89,47.73,0.287,0.707 --121.89,47.74,0.287,0.707 --121.89,47.75,0.287,0.707 --121.89,47.76,0.268,0.521 --121.89,47.77,0.268,0.521 --121.88,47.03,0.264,0.49 --121.88,47.04,0.265,0.493 --121.88,47.05,0.265,0.495 --121.88,47.06,0.271,0.556 --121.88,47.07,0.285,0.69 --121.88,47.08,0.286,0.694 --121.88,47.09,0.299,0.818 --121.88,47.10,0.306,0.89 --121.88,47.11,0.313,0.955 --121.88,47.12,0.326,1.082 --121.88,47.13,0.329,1.108 --121.88,47.14,0.347,1.287 --121.88,47.15,0.354,1.348 --121.88,47.16,0.356,1.374 --121.88,47.17,0.377,1.57 --121.88,47.18,0.381,1.616 --121.88,47.19,0.389,1.691 --121.88,47.20,0.399,1.784 --121.88,47.21,0.4,1.79 --121.88,47.22,0.41,1.894 --121.88,47.23,0.414,1.931 --121.88,47.24,0.421,1.999 --121.88,47.25,0.422,2.003 --121.88,47.26,0.422,2.006 --121.88,47.27,0.422,2.01 --121.88,47.28,0.423,2.013 --121.88,47.29,0.423,2.017 --121.88,47.30,0.423,2.019 --121.88,47.31,0.411,1.901 --121.88,47.32,0.404,1.834 --121.88,47.33,0.404,1.836 --121.88,47.34,0.397,1.762 --121.88,47.35,0.39,1.702 --121.88,47.36,0.372,1.528 --121.88,47.37,0.37,1.504 --121.88,47.38,0.364,1.452 --121.88,47.39,0.349,1.305 --121.88,47.40,0.343,1.248 --121.88,47.41,0.328,1.104 --121.88,47.42,0.324,1.063 --121.88,47.43,0.316,0.989 --121.88,47.44,0.307,0.9 --121.88,47.45,0.304,0.869 --121.88,47.46,0.29,0.734 --121.88,47.47,0.286,0.699 --121.88,47.48,0.286,0.7 --121.88,47.49,0.286,0.702 --121.88,47.50,0.29,0.733 --121.88,47.51,0.306,0.888 --121.88,47.52,0.306,0.894 --121.88,47.53,0.307,0.901 --121.88,47.54,0.308,0.908 --121.88,47.55,0.323,1.049 --121.88,47.56,0.329,1.113 --121.88,47.57,0.329,1.115 --121.88,47.58,0.329,1.115 --121.88,47.59,0.329,1.115 --121.88,47.60,0.329,1.115 --121.88,47.61,0.329,1.114 --121.88,47.62,0.329,1.112 --121.88,47.63,0.321,1.03 --121.88,47.64,0.31,0.924 --121.88,47.65,0.309,0.922 --121.88,47.66,0.309,0.922 --121.88,47.67,0.294,0.778 --121.88,47.68,0.292,0.758 --121.88,47.69,0.291,0.741 --121.88,47.70,0.289,0.724 --121.88,47.71,0.271,0.556 --121.88,47.72,0.271,0.557 --121.88,47.73,0.271,0.557 --121.88,47.74,0.272,0.558 --121.87,47.05,0.265,0.494 --121.87,47.06,0.271,0.557 --121.87,47.07,0.285,0.689 --121.87,47.08,0.285,0.692 --121.87,47.09,0.299,0.819 --121.87,47.10,0.306,0.889 --121.87,47.11,0.306,0.893 --121.87,47.12,0.326,1.082 --121.87,47.13,0.329,1.108 --121.87,47.14,0.339,1.211 --121.87,47.15,0.347,1.289 --121.87,47.16,0.356,1.373 --121.87,47.17,0.361,1.423 --121.87,47.18,0.381,1.614 --121.87,47.19,0.383,1.628 --121.87,47.20,0.386,1.664 --121.87,47.21,0.39,1.695 --121.87,47.22,0.405,1.839 --121.87,47.23,0.405,1.845 --121.87,47.24,0.406,1.85 --121.87,47.25,0.41,1.895 --121.87,47.26,0.41,1.895 --121.87,47.27,0.411,1.896 --121.87,47.28,0.411,1.896 --121.87,47.29,0.408,1.868 --121.87,47.30,0.408,1.871 --121.87,47.31,0.407,1.86 --121.87,47.32,0.391,1.705 --121.87,47.33,0.391,1.704 --121.87,47.34,0.389,1.688 --121.87,47.35,0.379,1.59 --121.87,47.36,0.37,1.504 --121.87,47.37,0.355,1.357 --121.87,47.38,0.349,1.306 --121.87,47.39,0.349,1.301 --121.87,47.40,0.329,1.107 --121.87,47.41,0.325,1.077 --121.87,47.42,0.309,0.918 --121.87,47.43,0.307,0.903 --121.87,47.44,0.299,0.821 --121.87,47.45,0.289,0.726 --121.87,47.46,0.286,0.702 --121.87,47.47,0.286,0.698 --121.87,47.48,0.286,0.699 --121.87,47.49,0.286,0.701 --121.87,47.50,0.29,0.733 --121.87,47.51,0.291,0.743 --121.87,47.52,0.291,0.748 --121.87,47.53,0.292,0.753 --121.87,47.54,0.292,0.759 --121.87,47.55,0.307,0.9 --121.87,47.56,0.313,0.961 --121.87,47.57,0.313,0.962 --121.87,47.58,0.313,0.962 --121.87,47.59,0.313,0.961 --121.87,47.60,0.313,0.96 --121.87,47.61,0.313,0.956 --121.87,47.62,0.301,0.842 --121.87,47.63,0.294,0.77 --121.87,47.64,0.293,0.768 --121.87,47.65,0.293,0.766 --121.87,47.66,0.284,0.68 --121.87,47.67,0.274,0.585 --121.87,47.68,0.275,0.587 --121.87,47.69,0.275,0.588 --121.87,47.70,0.258,0.432 --121.87,47.71,0.256,0.406 --121.86,47.06,0.271,0.557 --121.86,47.07,0.285,0.687 --121.86,47.08,0.285,0.691 --121.86,47.09,0.299,0.819 --121.86,47.10,0.301,0.846 --121.86,47.11,0.306,0.891 --121.86,47.12,0.326,1.083 --121.86,47.13,0.327,1.089 --121.86,47.14,0.331,1.133 --121.86,47.15,0.347,1.287 --121.86,47.16,0.348,1.291 --121.86,47.17,0.359,1.397 --121.86,47.18,0.367,1.473 --121.86,47.19,0.369,1.493 --121.86,47.20,0.386,1.662 --121.86,47.21,0.388,1.683 --121.86,47.22,0.39,1.694 --121.86,47.23,0.39,1.696 --121.86,47.24,0.396,1.757 --121.86,47.25,0.41,1.89 --121.86,47.26,0.41,1.89 --121.86,47.27,0.41,1.891 --121.86,47.28,0.397,1.763 --121.86,47.29,0.392,1.719 --121.86,47.30,0.393,1.722 --121.86,47.31,0.391,1.709 --121.86,47.32,0.39,1.7 --121.86,47.33,0.387,1.672 --121.86,47.34,0.373,1.539 --121.86,47.35,0.37,1.503 --121.86,47.36,0.361,1.419 --121.86,47.37,0.349,1.306 --121.86,47.38,0.349,1.302 --121.86,47.39,0.334,1.164 --121.86,47.40,0.328,1.104 --121.86,47.41,0.31,0.93 --121.86,47.42,0.308,0.905 --121.86,47.43,0.306,0.886 --121.86,47.44,0.287,0.708 --121.86,47.45,0.287,0.705 --121.86,47.46,0.279,0.633 --121.86,47.47,0.274,0.582 --121.86,47.48,0.274,0.585 --121.86,47.49,0.275,0.589 --121.86,47.50,0.275,0.593 --121.86,47.51,0.276,0.597 --121.86,47.52,0.276,0.601 --121.86,47.53,0.276,0.606 --121.86,47.54,0.277,0.61 --121.86,47.55,0.292,0.752 --121.86,47.56,0.298,0.81 --121.86,47.57,0.298,0.81 --121.86,47.58,0.298,0.809 --121.86,47.59,0.297,0.808 --121.86,47.60,0.289,0.731 --121.86,47.61,0.282,0.662 --121.86,47.62,0.278,0.618 --121.86,47.63,0.278,0.616 --121.86,47.64,0.277,0.614 --121.86,47.65,0.274,0.585 --121.86,47.66,0.258,0.43 --121.86,47.67,0.258,0.432 --121.86,47.68,0.259,0.434 --121.86,47.69,0.249,0.341 --121.85,47.07,0.285,0.685 --121.85,47.08,0.285,0.689 --121.85,47.09,0.286,0.694 --121.85,47.10,0.301,0.843 --121.85,47.11,0.306,0.889 --121.85,47.12,0.326,1.082 --121.85,47.13,0.326,1.087 --121.85,47.14,0.331,1.132 --121.85,47.15,0.347,1.284 --121.85,47.16,0.347,1.288 --121.85,47.17,0.351,1.318 --121.85,47.18,0.361,1.421 --121.85,47.19,0.368,1.489 --121.85,47.20,0.372,1.529 --121.85,47.21,0.373,1.535 --121.85,47.22,0.389,1.689 --121.85,47.23,0.389,1.692 --121.85,47.24,0.395,1.742 --121.85,47.25,0.395,1.746 --121.85,47.26,0.395,1.75 --121.85,47.27,0.396,1.754 --121.85,47.28,0.39,1.697 --121.85,47.29,0.39,1.697 --121.85,47.30,0.39,1.696 --121.85,47.31,0.377,1.576 --121.85,47.32,0.378,1.579 --121.85,47.33,0.372,1.522 --121.85,47.34,0.37,1.501 --121.85,47.35,0.358,1.391 --121.85,47.36,0.349,1.305 --121.85,47.37,0.343,1.249 --121.85,47.38,0.338,1.201 --121.85,47.39,0.328,1.105 --121.85,47.40,0.317,0.994 --121.85,47.41,0.308,0.908 --121.85,47.42,0.299,0.818 --121.85,47.43,0.29,0.739 --121.85,47.44,0.287,0.707 --121.85,47.45,0.286,0.697 --121.85,47.46,0.267,0.511 --121.85,47.47,0.266,0.508 --121.85,47.48,0.266,0.508 --121.85,47.49,0.266,0.508 --121.85,47.50,0.266,0.509 --121.85,47.51,0.266,0.509 --121.85,47.52,0.266,0.509 --121.85,47.53,0.267,0.51 --121.85,47.54,0.267,0.51 --121.85,47.55,0.281,0.65 --121.85,47.56,0.282,0.66 --121.85,47.57,0.282,0.66 --121.85,47.58,0.282,0.659 --121.85,47.59,0.275,0.593 --121.85,47.60,0.262,0.47 --121.85,47.61,0.262,0.468 --121.85,47.62,0.262,0.466 --121.85,47.63,0.262,0.464 --121.85,47.64,0.261,0.46 --121.85,47.65,0.244,0.294 --121.85,47.66,0.242,0.277 --121.84,47.09,0.285,0.69 --121.84,47.10,0.301,0.843 --121.84,47.11,0.306,0.886 --121.84,47.12,0.312,0.947 --121.84,47.13,0.326,1.084 --121.84,47.14,0.331,1.131 --121.84,47.15,0.334,1.157 --121.84,47.16,0.347,1.284 --121.84,47.17,0.347,1.288 --121.84,47.18,0.356,1.367 --121.84,47.19,0.364,1.444 --121.84,47.20,0.368,1.489 --121.84,47.21,0.369,1.492 --121.84,47.22,0.378,1.583 --121.84,47.23,0.379,1.589 --121.84,47.24,0.379,1.593 --121.84,47.25,0.38,1.597 --121.84,47.26,0.38,1.601 --121.84,47.27,0.38,1.605 --121.84,47.28,0.381,1.609 --121.84,47.29,0.381,1.613 --121.84,47.30,0.381,1.615 --121.84,47.31,0.37,1.501 --121.84,47.32,0.37,1.501 --121.84,47.33,0.362,1.433 --121.84,47.34,0.354,1.351 --121.84,47.35,0.349,1.305 --121.84,47.36,0.349,1.302 --121.84,47.37,0.329,1.11 --121.84,47.38,0.329,1.107 --121.84,47.39,0.323,1.058 --121.84,47.40,0.308,0.91 --121.84,47.41,0.299,0.825 --121.84,47.42,0.288,0.712 --121.84,47.43,0.287,0.708 --121.84,47.44,0.283,0.673 --121.84,47.45,0.271,0.551 --121.84,47.46,0.267,0.51 --121.84,47.47,0.266,0.508 --121.84,47.48,0.264,0.487 --121.84,47.49,0.264,0.49 --121.84,47.50,0.265,0.493 --121.84,47.51,0.265,0.496 --121.84,47.52,0.265,0.499 --121.84,47.53,0.266,0.503 --121.84,47.54,0.266,0.506 --121.84,47.55,0.266,0.509 --121.84,47.56,0.267,0.513 --121.84,47.57,0.267,0.513 --121.84,47.58,0.267,0.51 --121.84,47.59,0.247,0.324 --121.84,47.60,0.247,0.324 --121.84,47.61,0.247,0.323 --121.84,47.62,0.247,0.322 --121.84,47.63,0.247,0.319 --121.83,47.10,0.301,0.843 --121.83,47.11,0.305,0.884 --121.83,47.12,0.306,0.892 --121.83,47.13,0.317,0.997 --121.83,47.14,0.326,1.084 --121.83,47.15,0.334,1.155 --121.83,47.16,0.339,1.207 --121.83,47.17,0.347,1.284 --121.83,47.18,0.347,1.288 --121.83,47.19,0.361,1.416 --121.83,47.20,0.361,1.423 --121.83,47.21,0.362,1.429 --121.83,47.22,0.368,1.49 --121.83,47.23,0.369,1.493 --121.83,47.24,0.369,1.494 --121.83,47.25,0.369,1.495 --121.83,47.26,0.369,1.496 --121.83,47.27,0.369,1.497 --121.83,47.28,0.369,1.498 --121.83,47.29,0.369,1.498 --121.83,47.30,0.366,1.467 --121.83,47.31,0.366,1.47 --121.83,47.32,0.362,1.43 --121.83,47.33,0.349,1.306 --121.83,47.34,0.349,1.304 --121.83,47.35,0.347,1.287 --121.83,47.36,0.334,1.162 --121.83,47.37,0.329,1.107 --121.83,47.38,0.328,1.099 --121.83,47.39,0.308,0.911 --121.83,47.40,0.306,0.889 --121.83,47.41,0.288,0.714 --121.83,47.42,0.287,0.71 --121.83,47.43,0.28,0.636 --121.83,47.44,0.268,0.529 --121.83,47.45,0.267,0.512 --121.83,47.46,0.266,0.509 --121.83,47.47,0.251,0.365 --121.83,47.48,0.249,0.344 --121.83,47.49,0.249,0.346 --121.83,47.50,0.25,0.349 --121.83,47.51,0.25,0.352 --121.83,47.52,0.25,0.355 --121.83,47.53,0.251,0.358 --121.83,47.54,0.251,0.361 --121.83,47.55,0.251,0.364 --121.83,47.56,0.252,0.367 --121.83,47.57,0.252,0.368 --121.83,47.58,0.236,0.221 --121.83,47.59,0.232,0.18 --121.83,47.60,0.232,0.18 --121.83,47.61,0.232,0.18 --121.82,47.11,0.304,0.867 --121.82,47.12,0.305,0.885 --121.82,47.13,0.309,0.916 --121.82,47.14,0.326,1.081 --121.82,47.15,0.326,1.085 --121.82,47.16,0.336,1.178 --121.82,47.17,0.344,1.256 --121.82,47.18,0.345,1.262 --121.82,47.19,0.347,1.288 --121.82,47.20,0.348,1.29 --121.82,47.21,0.348,1.298 --121.82,47.22,0.367,1.476 --121.82,47.23,0.368,1.482 --121.82,47.24,0.368,1.487 --121.82,47.25,0.368,1.491 --121.82,47.26,0.369,1.492 --121.82,47.27,0.369,1.492 --121.82,47.28,0.369,1.493 --121.82,47.29,0.369,1.493 --121.82,47.30,0.351,1.319 --121.82,47.31,0.351,1.322 --121.82,47.32,0.349,1.303 --121.82,47.33,0.349,1.302 --121.82,47.34,0.343,1.243 --121.82,47.35,0.332,1.14 --121.82,47.36,0.328,1.106 --121.82,47.37,0.317,0.993 --121.82,47.38,0.313,0.953 --121.82,47.39,0.308,0.909 --121.82,47.40,0.291,0.741 --121.82,47.41,0.288,0.712 --121.82,47.42,0.286,0.699 --121.82,47.43,0.267,0.516 --121.82,47.44,0.267,0.514 --121.82,47.45,0.267,0.511 --121.82,47.46,0.258,0.429 --121.82,47.47,0.246,0.317 --121.82,47.48,0.246,0.316 --121.82,47.49,0.246,0.315 --121.82,47.50,0.246,0.315 --121.82,47.51,0.246,0.314 --121.82,47.52,0.235,0.21 --121.82,47.53,0.236,0.213 --121.82,47.54,0.236,0.216 --121.82,47.55,0.236,0.219 --121.82,47.56,0.237,0.222 --121.82,47.57,0.237,0.223 --121.82,47.58,0.226,0.119 --121.81,47.13,0.309,0.915 --121.81,47.14,0.326,1.078 --121.81,47.15,0.326,1.081 --121.81,47.16,0.328,1.102 --121.81,47.17,0.329,1.109 --121.81,47.18,0.341,1.225 --121.81,47.19,0.347,1.284 --121.81,47.20,0.347,1.286 --121.81,47.21,0.348,1.296 --121.81,47.22,0.352,1.328 --121.81,47.23,0.352,1.334 --121.81,47.24,0.353,1.339 --121.81,47.25,0.353,1.343 --121.81,47.26,0.354,1.347 --121.81,47.27,0.354,1.351 --121.81,47.28,0.354,1.355 --121.81,47.29,0.355,1.359 --121.81,47.30,0.349,1.299 --121.81,47.31,0.349,1.299 --121.81,47.32,0.336,1.178 --121.81,47.33,0.336,1.18 --121.81,47.34,0.328,1.106 --121.81,47.35,0.325,1.074 --121.81,47.36,0.317,0.995 --121.81,47.37,0.308,0.911 --121.81,47.38,0.308,0.909 --121.81,47.39,0.297,0.804 --121.81,47.40,0.288,0.713 --121.81,47.41,0.287,0.71 --121.81,47.42,0.271,0.552 --121.81,47.43,0.267,0.515 --121.81,47.44,0.267,0.512 --121.81,47.45,0.258,0.431 --121.81,47.46,0.247,0.318 --121.81,47.47,0.246,0.316 --121.81,47.48,0.246,0.315 --121.81,47.49,0.239,0.249 --121.81,47.50,0.24,0.251 --121.81,47.51,0.233,0.189 --121.81,47.52,0.226,0.122 --121.81,47.53,0.226,0.122 --121.81,47.54,0.226,0.122 --121.81,47.55,0.226,0.121 --121.80,47.14,0.312,0.943 --121.80,47.15,0.313,0.962 --121.80,47.16,0.326,1.081 --121.80,47.17,0.326,1.084 --121.80,47.18,0.334,1.157 --121.80,47.19,0.334,1.163 --121.80,47.20,0.335,1.169 --121.80,47.21,0.347,1.285 --121.80,47.22,0.347,1.287 --121.80,47.23,0.347,1.289 --121.80,47.24,0.348,1.291 --121.80,47.25,0.348,1.292 --121.80,47.26,0.348,1.293 --121.80,47.27,0.348,1.294 --121.80,47.28,0.348,1.295 --121.80,47.29,0.341,1.225 --121.80,47.30,0.34,1.214 --121.80,47.31,0.337,1.189 --121.80,47.32,0.328,1.105 --121.80,47.33,0.328,1.104 --121.80,47.34,0.328,1.103 --121.80,47.35,0.31,0.925 --121.80,47.36,0.308,0.91 --121.80,47.37,0.306,0.886 --121.80,47.38,0.302,0.851 --121.80,47.39,0.288,0.714 --121.80,47.40,0.287,0.711 --121.80,47.41,0.278,0.616 --121.80,47.42,0.267,0.516 --121.80,47.43,0.267,0.514 --121.80,47.44,0.252,0.366 --121.80,47.45,0.247,0.32 --121.80,47.46,0.247,0.318 --121.80,47.47,0.246,0.308 --121.80,47.48,0.244,0.289 --121.80,47.49,0.226,0.124 --121.80,47.50,0.226,0.123 --121.80,47.51,0.226,0.122 --121.80,47.52,0.226,0.121 --121.80,47.53,0.226,0.121 --121.79,47.15,0.313,0.961 --121.79,47.16,0.317,0.997 --121.79,47.17,0.326,1.08 --121.79,47.18,0.326,1.083 --121.79,47.19,0.326,1.086 --121.79,47.20,0.327,1.089 --121.79,47.21,0.34,1.217 --121.79,47.22,0.341,1.222 --121.79,47.23,0.341,1.228 --121.79,47.24,0.342,1.233 --121.79,47.25,0.342,1.237 --121.79,47.26,0.343,1.241 --121.79,47.27,0.343,1.245 --121.79,47.28,0.343,1.249 --121.79,47.29,0.328,1.101 --121.79,47.30,0.328,1.101 --121.79,47.31,0.328,1.101 --121.79,47.32,0.325,1.073 --121.79,47.33,0.325,1.076 --121.79,47.34,0.316,0.985 --121.79,47.35,0.308,0.908 --121.79,47.36,0.308,0.907 --121.79,47.37,0.29,0.737 --121.79,47.38,0.288,0.713 --121.79,47.39,0.287,0.706 --121.79,47.40,0.284,0.679 --121.79,47.41,0.267,0.517 --121.79,47.42,0.267,0.515 --121.79,47.43,0.258,0.429 --121.79,47.44,0.247,0.321 --121.79,47.45,0.247,0.319 --121.79,47.46,0.246,0.317 --121.79,47.47,0.23,0.162 --121.79,47.48,0.228,0.143 --121.79,47.49,0.226,0.123 --121.79,47.50,0.226,0.122 --121.78,47.17,0.322,1.045 --121.78,47.18,0.323,1.051 --121.78,47.19,0.323,1.058 --121.78,47.20,0.326,1.085 --121.78,47.21,0.326,1.087 --121.78,47.22,0.327,1.089 --121.78,47.23,0.327,1.091 --121.78,47.24,0.327,1.093 --121.78,47.25,0.327,1.094 --121.78,47.26,0.327,1.095 --121.78,47.27,0.328,1.098 --121.78,47.28,0.328,1.102 --121.78,47.29,0.328,1.097 --121.78,47.30,0.328,1.097 --121.78,47.31,0.326,1.079 --121.78,47.32,0.31,0.926 --121.78,47.33,0.31,0.928 --121.78,47.34,0.308,0.906 --121.78,47.35,0.308,0.905 --121.78,47.36,0.296,0.798 --121.78,47.37,0.288,0.712 --121.78,47.38,0.287,0.711 --121.78,47.39,0.272,0.56 --121.78,47.40,0.269,0.531 --121.78,47.41,0.267,0.515 --121.78,47.42,0.265,0.492 --121.78,47.43,0.247,0.321 --121.78,47.44,0.247,0.32 --121.78,47.45,0.247,0.318 --121.78,47.46,0.237,0.225 --121.78,47.47,0.226,0.125 --121.77,47.18,0.307,0.904 --121.77,47.19,0.323,1.051 --121.77,47.20,0.326,1.08 --121.77,47.21,0.326,1.082 --121.77,47.22,0.326,1.084 --121.77,47.23,0.326,1.086 --121.77,47.24,0.327,1.088 --121.77,47.25,0.327,1.089 --121.77,47.26,0.327,1.09 --121.77,47.27,0.327,1.091 --121.77,47.28,0.327,1.092 --121.77,47.29,0.314,0.965 --121.77,47.30,0.313,0.961 --121.77,47.31,0.31,0.93 --121.77,47.32,0.307,0.903 --121.77,47.33,0.307,0.903 --121.77,47.34,0.305,0.876 --121.77,47.35,0.295,0.786 --121.77,47.36,0.287,0.71 --121.77,47.37,0.287,0.709 --121.77,47.38,0.277,0.611 --121.77,47.39,0.267,0.516 --121.77,47.40,0.267,0.515 --121.77,47.41,0.267,0.513 --121.77,47.42,0.249,0.345 --121.77,47.43,0.247,0.32 --121.77,47.44,0.245,0.307 --121.77,47.45,0.238,0.235 --121.76,47.19,0.312,0.951 --121.76,47.20,0.313,0.957 --121.76,47.21,0.313,0.962 --121.76,47.22,0.314,0.968 --121.76,47.23,0.315,0.973 --121.76,47.24,0.315,0.978 --121.76,47.25,0.316,0.983 --121.76,47.26,0.316,0.987 --121.76,47.27,0.317,0.991 --121.76,47.28,0.317,0.996 --121.76,47.29,0.307,0.899 --121.76,47.30,0.307,0.899 --121.76,47.31,0.307,0.899 --121.76,47.32,0.299,0.82 --121.76,47.33,0.299,0.824 --121.76,47.34,0.289,0.726 --121.76,47.35,0.287,0.707 --121.76,47.36,0.285,0.69 --121.76,47.37,0.28,0.644 --121.76,47.38,0.267,0.515 --121.76,47.39,0.267,0.514 --121.76,47.40,0.261,0.46 --121.76,47.41,0.256,0.406 --121.76,47.42,0.247,0.32