diff --git a/:q b/:q
deleted file mode 100644
index d3003aa50b7ff984dff7e4d3930386c5ed5e9a59..0000000000000000000000000000000000000000
--- a/:q
+++ /dev/null
@@ -1,8 +0,0 @@
-Merge branch 'main' of gitlab.gwdg.de:rhaag/ridepooling_simulations into main
-
-
-# Please enter a commit message to explain why this merge is necessary,
-# especially if it merges an updated upstream into a topic branch.
-#
-# Lines starting with '#' will be ignored, and an empty message aborts
-# the commit.
diff --git a/example/ruben/scripts/script_fmax.jl b/example/ruben/scripts/script_fmax.jl
deleted file mode 100644
index f934b9c218ce789edcfea698ffd53c3816fd5640..0000000000000000000000000000000000000000
--- a/example/ruben/scripts/script_fmax.jl
+++ /dev/null
@@ -1,189 +0,0 @@
-#Julia 1.6.2
-#RidePooling 0.8.2
-
-using RidePooling
-using DelimitedFiles
-
-#error function (to be minimized)
-function f(x,N,target,t0,specs)
-    if x < 0
-        return 1.0
-    end
-
-    model=get_model(;N_bus=N,ν=x/t0,specs...);
-
-    #now comes the initial phase that will be skipped for the statistics
-    run!(model,dropped=10*max(N,100),time=2*t0) #on average, every bus has dropped off >10 users + simulation time 4 times bigger than avrg. direct distance.
-    startindex=length(model.requests)
-
-    run!(model,requested=startindex+20*max(N,100))
-    res=served_percentage(model,startindex=startindex)-target
-
-    if abs(res)>0.5
-        return res
-
-    else
-	run!(model,requested=startindex+50*max(N,100))
-        res=served_percentage(model,startindex=startindex)-target
-        if abs(res)>0.15
-            return res
-
-        else
-	    run!(model,requested=startindex+100*max(N,100))
-            res=served_percentage(model,startindex=startindex)-target
-            if abs(res)>0.05
-                return res
-
-            else
-		run!(model,requested=startindex+200*max(N,100))
-                return served_percentage(model,startindex=startindex)-target
-            end
-        end
-    end
-end
-
-function prnt(x)
-    println(x)
-    flush(stdout)
-end
-
-percentage=eval(Meta.parse(ARGS[1]))
-index=eval(Meta.parse(ARGS[2]))
-
-Ns=unique(Integer.(round.(exp.(range(log(1),log(1000);length=61)))))
-N=Ns[index]
-target=percentage/100
-
-filepath=pwd()*"/../evaluation/f$(percentage)_$(N).txt"
-guesspath=pwd()*"/../evaluation/guess_f$(percentage)_$(N).txt"
-
-map_folder=pwd()*"/../../map/"
-include(map_folder*"map.jl")
-include(pwd()*"/../dispatcher.jl")
-
-#initiate model
-specs=(;
-        map=map,
-        route_matrix=RM,
-        subspaces=:all_edges,
-        routing=:lookup,
-        speed_dict=speed_dict,
-        seed=1
-        )
-specs=merge(specs,dispatcher)
-
-
-
-TEST=false
-init=1.6*N^1.14
-occursin("32",pwd()) ? prnt("map with a 32. init prefactor = 1.6") : nothing
-occursin("64",pwd()) ? (init*=2.6/1.6;prnt("map with a 64. init prefactor = 2.6")) : nothing
-occursin("128",pwd()) ? (init*=5.5/1.6;prnt("map with a 128. init prefactor = 5.5")) : nothing
-
-
-while TEST==false
-    A=init*(0.95+0.1*rand())
-    prnt("################")
-    prnt("N = $(N)")
-    prnt("initial guess A = $(round(A;digits=4))")
-    prnt("################\n")
-    fA=f(A,N,target,t0,specs)
-    prnt("fA=$(round(fA;digits=4))")
-
-    if fA>0
-        prnt("A=$(round(A;digits=4)) too small, B must be larger.")
-        best_positive=A
-        best_negative=false
-        B=A
-        while best_negative==false
-            B*=1.1
-            prnt("Trying B=$(B)")
-            fB=f(B,N,target,t0,specs)
-            prnt("fB=$(fB)")
-            best_negative= fB<0 ? B : false
-            fB>0 ? ((A,fA)=(B,fB)) : nothing
-        end
-
-    else
-        prnt("A too large, B must be smaller.")
-        B,fB=(A,fA)
-        prnt("Setting B=$(round(A;digits=4)) to maintain the convention that A<B")
-        best_negative=B
-        best_positive=false
-        while best_positive==false
-            A/=1.1
-            prnt("Trying A=$(round(A;digits=4))")
-            fA=f(A,N,target,t0,specs)
-            prnt("fA=$(round(fA;digits=4))")
-            best_positive= fA>0 ? A : false
-            fA<0 ? ((B,fB)=(A,fA)) : nothing
-            if A<1e-3
-                prnt("This many buses don't seem to be able to serve $(percentage) percent of any demand. Exiting.")
-                exit()
-            end
-        end
-    end
-
-    iteration=0
-    while true
-        if (fA<0.02 && fB>-0.02)
-            prnt("")
-            prnt("breaking free after $(iteration) iterations with")
-            prnt("A=$(round(A;digits=4)), fA=$(round(fA;digits=4))")
-            prnt("B=$(round(B;digits=4)), fB=$(round(fB;digits=4))")
-            break
-        end
-
-        iteration+=1
-
-        C_mean=(A+B)/2
-        C_secante=B-fB*(B-A)/(fB-fA)
-	    writedlm(guesspath,C_secante);prnt("\n  ..writing $(round(C_secante;digits=4)) (current secante root) to guess_path.")
-        if fA<0.01
-            C=(2*C_secante+B)/3
-        elseif fB>0.01
-            C=(2*C_secante+A)/3
-        else
-            C=(2*C_secante+C_mean)/3
-        end
-        fC=f(C,N,target,t0,specs)
-
-                prnt("iteration $(iteration)")
-                prnt("A=$(round(A;digits=4)), fA=$(round(fA;digits=4))")
-                prnt("B=$(round(B;digits=4)), fB=$(round(fB;digits=4))")
-                prnt("C=$(round(C;digits=4)), fC=$(round(fC;digits=4))")
-
-        if fC>0
-            A,fA=(C,fC)
-        else
-            B,fB=(C,fC)
-        end
-    end
-
-    C=B-fB*(B-A)/(fB-fA)
-	writedlm(guesspath,C);prnt("  ..writing $(round(C;digits=4)) (final secante root) to guess_path.")
-
-    #find root of parabola
-    fC=f(C,N,target,t0,specs)
-    mat=[A^2 A 1;B^2 B 1;C^2 C 1]
-    a,b,c=inv(mat)*[fA,fB,fC]
-    p,q=(b/a,c/a)
-    x1=-p/2-sqrt((p/2)^2-q)
-    x2=-p/2+sqrt((p/2)^2-q)
-    C= abs(x1-C)<abs(x2-C) ? x1 : x2
-    writedlm(guesspath,C);prnt("  ..writing $(round(C;digits=4)) (root of parabola) to guess_path.")
-                prnt("\nFINAL: $(round(C;digits=4))")
-
-    #test served percentage
-    fFINAL=f(C,N,target,t0,specs)
-
-    global TEST=abs(fFINAL)<0.02
-                prnt("TEST: served percentage = $(round(100*(fFINAL+target);digits=2))%\n\n\n")
-    if TEST
-      prnt("test worked.")
-      writedlm(filepath,C)
-    else
-      global init=C
-      prnt("test failed.")
-    end
- end
diff --git a/example/ruben/scripts/script_fmax.sh b/example/ruben/scripts/script_fmax.sh
deleted file mode 100644
index 9ef23730fa466fd587984a01fc283d41fb01a700..0000000000000000000000000000000000000000
--- a/example/ruben/scripts/script_fmax.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-#$ -S /bin/bash
-#$ -cwd
-#$ -q titan.q
-#$ -j yes
-#$ -N earliest_pickup
-#$ -t 1-100
-
-N=20
-SAVE_PATH="./example/ruben/"
-
-
-julia sim.jl $N $SAVE_PATH $SGE_TASK_ID
diff --git a/initialize.jl b/initialize.jl
deleted file mode 100644
index 641ddb9123be0e8d6a3cdee64ef583de3cf16f7f..0000000000000000000000000000000000000000
--- a/initialize.jl
+++ /dev/null
@@ -1,61 +0,0 @@
-export data_functions, save_path, getValues
-import Pkg
-Pkg.activate(".")
-
-using DataFrames
-using DelimitedFiles
-
-
-
-# Dict of the functions used for evaluation
-# QUESTION Calculate Variance for all of these?
-data_type_functions = Dict(
-    :served_percentage => RP.served_percentage,
-    :driven_distance => RP.driven_distance,
-    :requested_distance => RP.requested_distance,
-    :mean_relative_delay => RP.mean_relative_delay,
-   # :mean_occupancy => RP.mean_occupancy, #BUG In Reading TUples from a CSV File
-)
-
-
-save_path = "" #TODO What savepath?
-
-"""
- Converts a given index to a 2D Matrix Index with the given Matrix size
-"""
-function getValue(index, xmin, xmax, xlen, ymin, ymax, ylen)
-    xstep = (xmax-xmin)/xlen
-    ystep = (ymax-ymin)/ylen
-
-
-    x = (index%xlen) * xstep + xmin
-    y = trunc(Int64, index/ylen) * ystep + ymin
-    return x,y
-end
-
-
-"""
- Function for Running a RidePooling simulation with the normalized Frequency x
-"""
-function simulate_rp(paths::Dict, N::Int64, x, y, t0::Float64, specs; served = 10*N, requested=10*N)
-
-    #Make Model
-    model=RP.get_model(;N_bus=N,ν=x/t0,specs...);
-    RP.run!(model;requested=requested, served=served)
-    data = Dict()
-    data[:frequency] = x
-    data[:dt_latest_dropoff] = y
-    for (name, func) in data_type_functions
-        data[name] = func(model)
-    end
-
-    # Save the calculated Data
-    data = DataFrame(data)
-
-    #CSV.write(paths[:data]*"$index.csv", data)
-    open(paths[:data]*"$index.csv", "w") do io
-        writedlm(io, Iterators.flatten(([names(data)], eachrow(data))), ';')
-    end
-    #Save the model for possible later reference
-    RP.savemodel(paths[:model]*"$index.model",model;route_matrix=false)
-end
diff --git a/initialize.sh b/initialize.sh
index 8ea1cf753221dbf569aa9e23e417877fe7e16826..244c7a4e469df216be9f931ce4033c17aaa2dc97 100755
--- a/initialize.sh
+++ b/initialize.sh
@@ -1,12 +1,9 @@
 #!/bin/bash
 
 
-
+./settings.sh
 N=1
-SAVE_PATH="/scratch01.local/rhaag/latest_dropoff_try_2/results/"
 INDEX=1
-DATA_PATH="${SAVE_PATH}data/"
-MODEL_PATH="${SAVE_PATH}model/"
 mkdir -p $DATA_PATH
 mkdir $MODEL_PATH
 
diff --git a/put_together.jl b/put_together.jl
index e0cdb31e2b401e3dbbdc3226533a5049d16fcab4..b89b4565d92d603b87fb8efed18910b4a4044e85 100644
--- a/put_together.jl
+++ b/put_together.jl
@@ -29,7 +29,7 @@ CSV.write(archive_path*"results.csv", df)
 
 
 
-println("Moving Models to $archive_path")
+println("Moving $(length(model_filenames)) Models to $archive_path")
 try
     mkdir("$archive_path/models/")
 catch e
diff --git a/results.csv b/results.csv
deleted file mode 100644
index fa81db3e9990c87754fea916b7c6096edc6e0ed7..0000000000000000000000000000000000000000
--- a/results.csv
+++ /dev/null
@@ -1,1601 +0,0 @@
-driven_distance,dt_earliest_pickup,frequency,mean_relative_delay,requested_distance,served_percentage
-1.0991721360801847e6,0.0,3.0,0.538377133288391,910432.8485585777,1.0
-1.0965555927798413e6,0.0,3.175,0.5399887554429222,910432.8485585777,1.0
-1.0952540482138053e6,0.0,3.35,0.5422661459914241,910432.8485585777,1.0
-1.0921332308955186e6,0.0,3.525,0.5452403288217029,910432.8485585777,1.0
-1.0894436852988864e6,0.0,3.7,0.549368792013096,910432.8485585777,1.0
-1.0880904596009254e6,0.0,3.875,0.5532911664220607,910432.8485585777,1.0
-1.0855898990113027e6,0.0,4.05,0.5518471469501005,910432.8485585777,1.0
-1.0833167969355423e6,0.0,4.225,0.5541446943273914,910432.8485585777,1.0
-1.0829590919295559e6,0.0,4.4,0.55778130803114,910432.8485585777,1.0
-1.0805725791706762e6,0.0,4.575,0.5650214008780762,910432.8485585777,1.0
-1.0797355162295497e6,0.0,4.75,0.5677744437925918,910432.8485585777,1.0
-1.0777827044986275e6,0.0,4.925,0.5688647904266226,910432.8485585777,1.0
-1.0756640845931575e6,0.0,5.1,0.5773239406990094,910432.8485585777,1.0
-1.073198780416792e6,0.0,5.275,0.5727327198342808,910432.8485585777,1.0
-1.0720498219663245e6,0.0,5.449999999999999,0.5780503965291753,910432.8485585777,1.0
-1.070991876275628e6,0.0,5.625,0.5815388725569819,910432.8485585777,1.0
-1.0701884062698826e6,0.0,5.8,0.5863649900179936,910432.8485585777,1.0
-1.068795102190374e6,0.0,5.975,0.5909845148379804,910432.8485585777,1.0
-1.0651932320764847e6,0.0,6.15,0.5928490027715312,910432.8485585777,1.0
-1.063109373302415e6,0.0,6.324999999999999,0.5953879643001248,910432.8485585777,1.0
-1.0630454280113943e6,0.0,6.5,0.5954993196295894,910432.8485585777,1.0
-1.0606280812419697e6,0.0,6.675,0.6037869604893786,910432.8485585777,1.0
-1.059910551292121e6,0.0,6.85,0.6034862811505205,910432.8485585777,1.0
-1.0587868413375611e6,0.0,7.0249999999999995,0.6039978869327232,910432.8485585777,1.0
-1.0570302360003442e6,0.0,7.199999999999999,0.6046776395470302,910432.8485585777,1.0
-1.055115931453769e6,0.0,7.375,0.6054186427460686,910432.8485585777,1.0
-1.0519870449738044e6,0.0,7.55,0.6026156957386806,910432.8485585777,1.0
-1.0516404794314553e6,0.0,7.725,0.6065555732694079,910432.8485585777,1.0
-1.050162293307456e6,0.0,7.8999999999999995,0.6130651718342918,910432.8485585777,1.0
-1.0479698260001731e6,0.0,8.075,0.612272585825717,910432.8485585777,1.0
-1.046532529871613e6,0.0,8.25,0.6159632754074099,910432.8485585777,1.0
-1.0430464426315886e6,0.0,8.425,0.6161944573201086,910432.8485585777,1.0
-1.0426581183614504e6,0.0,8.6,0.6168505447574019,910432.8485585777,1.0
-1.0414689441973072e6,0.0,8.774999999999999,0.6194461049048752,910432.8485585777,1.0
-1.0412290941853836e6,0.0,8.95,0.622242237675406,910432.8485585777,1.0
-1.0399271521156994e6,0.0,9.125,0.6282108050335516,910432.8485585777,1.0
-1.0373996008888792e6,0.0,9.3,0.6256065946899869,910432.8485585777,1.0
-1.0377350496594528e6,0.0,9.475,0.6247434867260864,910432.8485585777,1.0
-1.0349467562368916e6,0.0,9.649999999999999,0.6231092921151824,910432.8485585777,1.0
-1.034995052049499e6,0.0,9.825,0.627664610374121,910432.8485585777,1.0
-1.0991290676709837e6,2.266959517386247,3.0,0.5347285383568038,910432.8485585777,1.0
-1.096640500248441e6,2.266959517386247,3.175,0.5360579675828602,910432.8485585777,1.0
-1.0951939218778415e6,2.266959517386247,3.35,0.5382950683022895,910432.8485585777,1.0
-1.0921821624863145e6,2.266959517386247,3.525,0.5414737652132088,910432.8485585777,1.0
-1.0894436168896789e6,2.266959517386247,3.7,0.5456721703087771,910432.8485585777,1.0
-1.0882633828318943e6,2.266959517386247,3.875,0.5497201036151456,910432.8485585777,1.0
-1.085566806479887e6,2.266959517386247,4.05,0.548080357458357,910432.8485585777,1.0
-1.0831783845106945e6,2.266959517386247,4.225,0.5498967514082828,910432.8485585777,1.0
-1.0828786903170082e6,2.266959517386247,4.4,0.554063456370577,910432.8485585777,1.0
-1.0805738272452028e6,2.266959517386247,4.575,0.5611795955650557,910432.8485585777,1.0
-1.0794134394605225e6,2.266959517386247,4.75,0.5636313456795563,910432.8485585777,1.0
-1.0775793028860763e6,2.266959517386247,4.925,0.5646987060783791,910432.8485585777,1.0
-1.075799179516745e6,2.266959517386247,5.1,0.5738465736271031,910432.8485585777,1.0
-1.0733837120075778e6,2.266959517386247,5.275,0.5694297271737886,910432.8485585777,1.0
-1.0722257535571228e6,2.266959517386247,5.449999999999999,0.5744652889358759,910432.8485585777,1.0
-1.0709728072960237e6,2.266959517386247,5.625,0.5774019423973873,910432.8485585777,1.0
-1.070166329500868e6,2.266959517386247,5.8,0.5826560906596518,910432.8485585777,1.0
-1.0687958852089015e6,2.266959517386247,5.975,0.5869143856332577,910432.8485585777,1.0
-1.0652765998470038e6,2.266959517386247,6.15,0.5890657773102552,910432.8485585777,1.0
-1.0629881501460518e6,2.266959517386247,6.324999999999999,0.591555779772711,910432.8485585777,1.0
-1.063087351242365e6,2.266959517386247,6.5,0.5919962293650972,910432.8485585777,1.0
-1.0605859704388194e6,2.266959517386247,6.675,0.5999766270536329,910432.8485585777,1.0
-1.0599384828829125e6,2.266959517386247,6.85,0.5996811246462536,910432.8485585777,1.0
-1.058854772928356e6,2.266959517386247,7.0249999999999995,0.5998889820038428,910432.8485585777,1.0
-1.0570920577601497e6,2.266959517386247,7.199999999999999,0.6006820050027906,910432.8485585777,1.0
-1.0552107556185755e6,2.266959517386247,7.375,0.6017605088171405,910432.8485585777,1.0
-1.052084002345961e6,2.266959517386247,7.55,0.598694978983249,910432.8485585777,1.0
-1.0511984453973258e6,2.266959517386247,7.725,0.6020523884218959,910432.8485585777,1.0
-1.050172897151266e6,2.266959517386247,7.8999999999999995,0.6100023163112291,910432.8485585777,1.0
-1.0479034239761679e6,2.266959517386247,8.075,0.6082995549513693,910432.8485585777,1.0
-1.0465354958374721e6,2.266959517386247,8.25,0.6119903840983194,910432.8485585777,1.0
-1.0430357722482106e6,2.266959517386247,8.425,0.6118919864707859,910432.8485585777,1.0
-1.042723047876819e6,2.266959517386247,8.6,0.6133906721766427,910432.8485585777,1.0
-1.0417618113749394e6,2.266959517386247,8.774999999999999,0.6154148263816308,910432.8485585777,1.0
-1.0416321715156456e6,2.266959517386247,8.95,0.6190486707619851,910432.8485585777,1.0
-1.0396734199143086e6,2.266959517386247,9.125,0.6248029119465007,910432.8485585777,1.0
-1.0375215481002324e6,2.266959517386247,9.3,0.6218521070505802,910432.8485585777,1.0
-1.0382884349476491e6,2.266959517386247,9.475,0.620452249648801,910432.8485585777,1.0
-1.0350788306720603e6,2.266959517386247,9.649999999999999,0.619446843054882,910432.8485585777,1.0
-1.0354472010429484e6,2.266959517386247,9.825,0.6241725115126526,910432.8485585777,1.0
-1.099135778064556e6,4.533919034772494,3.0,0.5310596972719298,910432.8485585777,1.0
-1.0966610435654556e6,4.533919034772494,3.175,0.5321883580404178,910432.8485585777,1.0
-1.095218467257549e6,4.533919034772494,3.35,0.5345255614530506,910432.8485585777,1.0
-1.0921978728799124e6,4.533919034772494,3.525,0.5375947498873516,910432.8485585777,1.0
-1.0894883272832716e6,4.533919034772494,3.7,0.541824920562828,910432.8485585777,1.0
-1.0882650932254954e6,4.533919034772494,3.875,0.5458158125357778,910432.8485585777,1.0
-1.0854641503028618e6,4.533919034772494,4.05,0.5441424680831272,910432.8485585777,1.0
-1.0831676030725937e6,4.533919034772494,4.225,0.5459280302742832,910432.8485585777,1.0
-1.0828821386946437e6,4.533919034772494,4.4,0.5501861057700553,910432.8485585777,1.0
-1.0805219114557956e6,4.533919034772494,4.575,0.5573226561896056,910432.8485585777,1.0
-1.0794360985126884e6,4.533919034772494,4.75,0.5597793215790816,910432.8485585777,1.0
-1.0776800296406162e6,4.533919034772494,4.925,0.5608787790288348,910432.8485585777,1.0
-1.0756204031962913e6,4.533919034772494,5.1,0.5700542962483854,910432.8485585777,1.0
-1.0735213750372687e6,4.533919034772494,5.275,0.56549155452695,910432.8485585777,1.0
-1.0722254639507094e6,4.533919034772494,5.449999999999999,0.5705536776040052,910432.8485585777,1.0
-1.0710175176896187e6,4.533919034772494,5.625,0.5736737617342766,910432.8485585777,1.0
-1.070141108587327e6,4.533919034772494,5.8,0.5785118667099854,910432.8485585777,1.0
-1.0688365956025054e6,4.533919034772494,5.975,0.5827194127451529,910432.8485585777,1.0
-1.065304203906477e6,4.533919034772494,6.15,0.5853793351367581,910432.8485585777,1.0
-1.0628266161361462e6,4.533919034772494,6.324999999999999,0.5881553942239504,910432.8485585777,1.0
-1.0629210135441213e6,4.533919034772494,6.5,0.5879727180982365,910432.8485585777,1.0
-1.060665680832411e6,4.533919034772494,6.675,0.5961274235027727,910432.8485585777,1.0
-1.0602849786885818e6,4.533919034772494,6.85,0.5959893085079834,910432.8485585777,1.0
-1.0588171322830208e6,4.533919034772494,7.0249999999999995,0.5958177094117131,910432.8485585777,1.0
-1.0571050577601516e6,4.533919034772494,7.199999999999999,0.5967995144279246,910432.8485585777,1.0
-1.0551721484104253e6,4.533919034772494,7.375,0.5976452027113145,910432.8485585777,1.0
-1.0519184968731697e6,4.533919034772494,7.55,0.5948613065206139,910432.8485585777,1.0
-1.0512860145768335e6,4.533919034772494,7.725,0.598478877738286,910432.8485585777,1.0
-1.0502027195129024e6,4.533919034772494,7.8999999999999995,0.6061347531702403,910432.8485585777,1.0
-1.0478954239761782e6,4.533919034772494,8.075,0.6044088652731872,910432.8485585777,1.0
-1.0464511755947556e6,4.533919034772494,8.25,0.6080208539838886,910432.8485585777,1.0
-1.0432143151526928e6,4.533919034772494,8.425,0.6071676035094098,910432.8485585777,1.0
-1.0428846101454706e6,4.533919034772494,8.6,0.6098149894809249,910432.8485585777,1.0
-1.0421863241134734e6,4.533919034772494,8.774999999999999,0.6113811656909612,910432.8485585777,1.0
-1.041709064980187e6,4.533919034772494,8.95,0.6152517383252194,910432.8485585777,1.0
-1.0396037084712178e6,4.533919034772494,9.125,0.6204749735170314,910432.8485585777,1.0
-1.0376511630166139e6,4.533919034772494,9.3,0.6186059888451302,910432.8485585777,1.0
-1.0367977205137447e6,4.533919034772494,9.475,0.6153005680206541,910432.8485585777,1.0
-1.0352227813126752e6,4.533919034772494,9.649999999999999,0.6159999914273999,910432.8485585777,1.0
-1.0352547784021518e6,4.533919034772494,9.825,0.6202062880958311,910432.8485585777,1.0
-1.099264514196352e6,6.800878552158741,3.0,0.5274050323619622,910432.8485585777,1.0
-1.0967082765426945e6,6.800878552158741,3.175,0.5284751509448379,910432.8485585777,1.0
-1.0952916817652395e6,6.800878552158741,3.35,0.5308449547178679,910432.8485585777,1.0
-1.092204035915478e6,6.800878552158741,3.525,0.5342684728520101,910432.8485585777,1.0
-1.0895862795489174e6,6.800878552158741,3.7,0.5377848255851292,910432.8485585777,1.0
-1.0882712906608353e6,6.800878552158741,3.875,0.5416266288563705,910432.8485585777,1.0
-1.0858135694014211e6,6.800878552158741,4.05,0.5405010307956897,910432.8485585777,1.0
-1.083208800507914e6,6.800878552158741,4.225,0.541302817028558,910432.8485585777,1.0
-1.0829970165450328e6,6.800878552158741,4.4,0.5464477399560679,910432.8485585777,1.0
-1.0806779327653712e6,6.800878552158741,4.575,0.5537072572492321,910432.8485585777,1.0
-1.0795535422598731e6,6.800878552158741,4.75,0.555703175065943,910432.8485585777,1.0
-1.077866229673267e6,6.800878552158741,4.925,0.5573593991479942,910432.8485585777,1.0
-1.075842846943455e6,6.800878552158741,5.1,0.5662599177607132,910432.8485585777,1.0
-1.0739838187844465e6,6.800878552158741,5.275,0.5618949143541163,910432.8485585777,1.0
-1.0724552046417187e6,6.800878552158741,5.449999999999999,0.5664874498518438,910432.8485585777,1.0
-1.0709833071799832e6,6.800878552158741,5.625,0.5701937137513537,910432.8485585777,1.0
-1.0700623415645564e6,6.800878552158741,5.8,0.5741862384803682,910432.8485585777,1.0
-1.0689612852495355e6,6.800878552158741,5.975,0.5793743865745472,910432.8485585777,1.0
-1.0654611425432186e6,6.800878552158741,6.15,0.5809148451490563,910432.8485585777,1.0
-1.0632649296984742e6,6.800878552158741,6.324999999999999,0.5839348586723898,910432.8485585777,1.0
-1.0634102278646284e6,6.800878552158741,6.5,0.5842219099014703,910432.8485585777,1.0
-1.060643667497808e6,6.800878552158741,6.675,0.5924682635862781,910432.8485585777,1.0
-1.0604435086096383e6,6.800878552158741,6.85,0.5922612407051885,910432.8485585777,1.0
-1.0589553652602558e6,6.800878552158741,7.0249999999999995,0.5919853746664685,910432.8485585777,1.0
-1.057249496621948e6,6.800878552158741,7.199999999999999,0.5920648166211526,910432.8485585777,1.0
-1.0554896541035715e6,6.800878552158741,7.375,0.5934085852665529,910432.8485585777,1.0
-1.0518511423762243e6,6.800878552158741,7.55,0.590919243297714,910432.8485585777,1.0
-1.0520458783759377e6,6.800878552158741,7.725,0.5949989521038886,910432.8485585777,1.0
-1.050342433529231e6,6.800878552158741,7.8999999999999995,0.6021288363600431,910432.8485585777,1.0
-1.0479916169933651e6,6.800878552158741,8.075,0.5999942628407875,910432.8485585777,1.0
-1.0464283983971345e6,6.800878552158741,8.25,0.6042239029047909,910432.8485585777,1.0
-1.0433004743617685e6,6.800878552158741,8.425,0.6036838598069096,910432.8485585777,1.0
-1.0427413063981091e6,6.800878552158741,8.6,0.6051554452043969,910432.8485585777,1.0
-1.0425119651207848e6,6.800878552158741,8.774999999999999,0.607140346715138,910432.8485585777,1.0
-1.0417952685706837e6,6.800878552158741,8.95,0.6119886882555657,910432.8485585777,1.0
-1.0395690944375801e6,6.800878552158741,9.125,0.6172277419503326,910432.8485585777,1.0
-1.0378846888692359e6,6.800878552158741,9.3,0.61567840536128,910432.8485585777,1.0
-1.0375644209277737e6,6.800878552158741,9.475,0.6123656639876022,910432.8485585777,1.0
-1.0351743745299629e6,6.800878552158741,9.649999999999999,0.612145170663192,910432.8485585777,1.0
-1.0354413083232223e6,6.800878552158741,9.825,0.6164124361979814,910432.8485585777,1.0
-1.0991821591282368e6,9.067838069544988,3.0,0.523256015492427,910432.8485585777,1.0
-1.0967226221288613e6,9.067838069544988,3.175,0.5246494297977881,910432.8485585777,1.0
-1.0952405096857217e6,9.067838069544988,3.35,0.5269358382487664,910432.8485585777,1.0
-1.0922163564491346e6,9.067838069544988,3.525,0.5304424737654161,910432.8485585777,1.0
-1.0895576000825872e6,9.067838069544988,3.7,0.5337970205534698,910432.8485585777,1.0
-1.0882966320480516e6,9.067838069544988,3.875,0.5380717103284015,910432.8485585777,1.0
-1.0860338899350837e6,9.067838069544988,4.05,0.5368440757606673,910432.8485585777,1.0
-1.0832701418039778e6,9.067838069544988,4.225,0.5384316635333839,910432.8485585777,1.0
-1.082996093325609e6,9.067838069544988,4.4,0.5426169285934797,910432.8485585777,1.0
-1.0806479535080197e6,9.067838069544988,4.575,0.5497793267066254,910432.8485585777,1.0
-1.0797849506533456e6,9.067838069544988,4.75,0.551784709575697,910432.8485585777,1.0
-1.0777305744072923e6,9.067838069544988,4.925,0.5536658507834453,910432.8485585777,1.0
-1.0755678899014546e6,9.067838069544988,5.1,0.5625348811978174,910432.8485585777,1.0
-1.0741851643706234e6,9.067838069544988,5.275,0.5579863322457567,910432.8485585777,1.0
-1.0724883924249115e6,9.067838069544988,5.449999999999999,0.5623424942688512,910432.8485585777,1.0
-1.0711293279226301e6,9.067838069544988,5.625,0.5669857704147383,910432.8485585777,1.0
-1.070050283895505e6,9.067838069544988,5.8,0.5702592229958471,910432.8485585777,1.0
-1.0690587934690856e6,9.067838069544988,5.975,0.5758853911721421,910432.8485585777,1.0
-1.065314779219566e6,9.067838069544988,6.15,0.5758967865839395,910432.8485585777,1.0
-1.0637715437514826e6,9.067838069544988,6.324999999999999,0.5803656275276277,910432.8485585777,1.0
-1.0634619261074455e6,9.067838069544988,6.5,0.5808510692284843,910432.8485585777,1.0
-1.0606357337916566e6,9.067838069544988,6.675,0.5885027779810874,910432.8485585777,1.0
-1.0604624239670136e6,9.067838069544988,6.85,0.5880195943791755,910432.8485585777,1.0
-1.0589018712961185e6,9.067838069544988,7.0249999999999995,0.5894591311968234,910432.8485585777,1.0
-1.0571551233663221e6,9.067838069544988,7.199999999999999,0.5886571215609663,910432.8485585777,1.0
-1.0553379552410431e6,9.067838069544988,7.375,0.5889497392470446,910432.8485585777,1.0
-1.052033505256949e6,9.067838069544988,7.55,0.5874930390828711,910432.8485585777,1.0
-1.0522437993907148e6,9.067838069544988,7.725,0.5923677463331403,910432.8485585777,1.0
-1.0502744410964337e6,9.067838069544988,7.8999999999999995,0.5987780766299717,910432.8485585777,1.0
-1.0481029427702446e6,9.067838069544988,8.075,0.5960093273513413,910432.8485585777,1.0
-1.0466308229788695e6,9.067838069544988,8.25,0.6008286554343414,910432.8485585777,1.0
-1.0435735555622777e6,9.067838069544988,8.425,0.6003064068351732,910432.8485585777,1.0
-1.0432648681505525e6,9.067838069544988,8.6,0.6027298167445034,910432.8485585777,1.0
-1.0431862355230408e6,9.067838069544988,8.774999999999999,0.6044569967469935,910432.8485585777,1.0
-1.0418225089403441e6,9.067838069544988,8.95,0.6084232577908196,910432.8485585777,1.0
-1.0395146704290146e6,9.067838069544988,9.125,0.6127100327018519,910432.8485585777,1.0
-1.0383780956512494e6,9.067838069544988,9.3,0.6136609665484055,910432.8485585777,1.0
-1.0376499866518487e6,9.067838069544988,9.475,0.608761829129515,910432.8485585777,1.0
-1.035920603049116e6,9.067838069544988,9.649999999999999,0.6066454642914629,910432.8485585777,1.0
-1.0353267805208147e6,9.067838069544988,9.825,0.6138357622276691,910432.8485585777,1.0
-1.099199159128237e6,11.334797586931236,3.0,0.519335066564343,910432.8485585777,1.0
-1.0967486221288538e6,11.334797586931236,3.175,0.5207487803578461,910432.8485585777,1.0
-1.095167089633775e6,11.334797586931236,3.35,0.5228288213318776,910432.8485585777,1.0
-1.0921994852294119e6,11.334797586931236,3.525,0.5262024481458896,910432.8485585777,1.0
-1.0895227213230075e6,11.334797586931236,3.7,0.5298391500480212,910432.8485585777,1.0
-1.0884412739755202e6,11.334797586931236,3.875,0.5344422536075316,910432.8485585777,1.0
-1.0858201148628495e6,11.334797586931236,4.05,0.5329182952838969,910432.8485585777,1.0
-1.0833181418039785e6,11.334797586931236,4.225,0.5345459753564046,910432.8485585777,1.0
-1.0831380933256128e6,11.334797586931236,4.4,0.5389293650037551,910432.8485585777,1.0
-1.08081845626335e6,11.334797586931236,4.575,0.5459310371741131,910432.8485585777,1.0
-1.0799729506533423e6,11.334797586931236,4.75,0.5482821140771843,910432.8485585777,1.0
-1.0777552288690805e6,11.334797586931236,4.925,0.5499087476981039,910432.8485585777,1.0
-1.0756195308772093e6,11.334797586931236,5.1,0.5588050137074867,910432.8485585777,1.0
-1.0743047956708812e6,11.334797586931236,5.275,0.5540219238344062,910432.8485585777,1.0
-1.0726824799862923e6,11.334797586931236,5.449999999999999,0.5584341286757373,910432.8485585777,1.0
-1.0715353640201981e6,11.334797586931236,5.625,0.563621368300019,910432.8485585777,1.0
-1.0702062874699663e6,11.334797586931236,5.8,0.5666892292091007,910432.8485585777,1.0
-1.0690427934690877e6,11.334797586931236,5.975,0.5721017605329995,910432.8485585777,1.0
-1.0653347792195592e6,11.334797586931236,6.15,0.5720962984317144,910432.8485585777,1.0
-1.0638432515304633e6,11.334797586931236,6.324999999999999,0.5767949745605827,910432.8485585777,1.0
-1.0637719261074497e6,11.334797586931236,6.5,0.5774137647727697,910432.8485585777,1.0
-1.060698733791652e6,11.334797586931236,6.675,0.5849768252815596,910432.8485585777,1.0
-1.060356423967022e6,11.334797586931236,6.85,0.5839646091063986,910432.8485585777,1.0
-1.059164398016748e6,11.334797586931236,7.0249999999999995,0.5858893752594112,910432.8485585777,1.0
-1.0572864621392265e6,11.334797586931236,7.199999999999999,0.5851070766649088,910432.8485585777,1.0
-1.0557242148295876e6,11.334797586931236,7.375,0.5872752211323465,910432.8485585777,1.0
-1.0528101031890044e6,11.334797586931236,7.55,0.5843613193087784,910432.8485585777,1.0
-1.0522619414440717e6,11.334797586931236,7.725,0.5888068704770221,910432.8485585777,1.0
-1.050420338891599e6,11.334797586931236,7.8999999999999995,0.5948997395563034,910432.8485585777,1.0
-1.0478574994083932e6,11.334797586931236,8.075,0.5922760740155096,910432.8485585777,1.0
-1.0467088165339167e6,11.334797586931236,8.25,0.5972065946918098,910432.8485585777,1.0
-1.0440086328032339e6,11.334797586931236,8.425,0.5972880748775387,910432.8485585777,1.0
-1.04362921074675e6,11.334797586931236,8.6,0.5993990896607596,910432.8485585777,1.0
-1.0430832823192981e6,11.334797586931236,8.774999999999999,0.5997975636928266,910432.8485585777,1.0
-1.0418530516021923e6,11.334797586931236,8.95,0.60577823414046,910432.8485585777,1.0
-1.039776744591425e6,11.334797586931236,9.125,0.6095181328909813,910432.8485585777,1.0
-1.038433202568972e6,11.334797586931236,9.3,0.6099529692937787,910432.8485585777,1.0
-1.0371960299427286e6,11.334797586931236,9.475,0.6044084466742444,910432.8485585777,1.0
-1.0360594035230895e6,11.334797586931236,9.649999999999999,0.602211164937231,910432.8485585777,1.0
-1.0348034987803954e6,11.334797586931236,9.825,0.6091029426636388,910432.8485585777,1.0
-1.0991086590994932e6,13.601757104317482,3.0,0.5155250858616212,910432.8485585777,1.0
-1.0967666147133124e6,13.601757104317482,3.175,0.5168226629152134,910432.8485585777,1.0
-1.0952665822469662e6,13.601757104317482,3.35,0.5190116111678592,910432.8485585777,1.0
-1.092394095335031e6,13.601757104317482,3.525,0.5223150828891425,910432.8485585777,1.0
-1.0899200993884765e6,13.601757104317482,3.7,0.52573674849872,910432.8485585777,1.0
-1.0883851834208213e6,13.601757104317482,3.875,0.5303220185241846,910432.8485585777,1.0
-1.0854675778935305e6,13.601757104317482,4.05,0.5287870562179313,910432.8485585777,1.0
-1.083165604834654e6,13.601757104317482,4.225,0.5295980980200278,910432.8485585777,1.0
-1.083009556356279e6,13.601757104317482,4.4,0.5346027936991657,910432.8485585777,1.0
-1.0806869192940255e6,13.601757104317482,4.575,0.5417788576271008,910432.8485585777,1.0
-1.0796401816438518e6,13.601757104317482,4.75,0.5444717900855435,910432.8485585777,1.0
-1.0779081576739703e6,13.601757104317482,4.925,0.5462549083095503,910432.8485585777,1.0
-1.0755969879174994e6,13.601757104317482,5.1,0.5537490381776775,910432.8485585777,1.0
-1.0742172180925019e6,13.601757104317482,5.275,0.5497736956958988,910432.8485585777,1.0
-1.0725873858807785e6,13.601757104317482,5.449999999999999,0.5547031887258528,910432.8485585777,1.0
-1.0716283279226297e6,13.601757104317482,5.625,0.5595505337249796,910432.8485585777,1.0
-1.0704722874699738e6,13.601757104317482,5.8,0.5630719703792026,910432.8485585777,1.0
-1.0690112123707458e6,13.601757104317482,5.975,0.5685107117411692,910432.8485585777,1.0
-1.065564213878359e6,13.601757104317482,6.15,0.5681002114706218,910432.8485585777,1.0
-1.0637366739520733e6,13.601757104317482,6.324999999999999,0.5729495148891226,910432.8485585777,1.0
-1.0641603450091034e6,13.601757104317482,6.5,0.5741481337364622,910432.8485585777,1.0
-1.0604341409041442e6,13.601757104317482,6.675,0.5808571316830607,910432.8485585777,1.0
-1.0605482652903022e6,13.601757104317482,6.85,0.5805289506542121,910432.8485585777,1.0
-1.0594058169184187e6,13.601757104317482,7.0249999999999995,0.5799408937632514,910432.8485585777,1.0
-1.0574886321330946e6,13.601757104317482,7.199999999999999,0.5812047827331321,910432.8485585777,1.0
-1.0554896901706997e6,13.601757104317482,7.375,0.5830964368557978,910432.8485585777,1.0
-1.0529948804193547e6,13.601757104317482,7.55,0.5804154474406962,910432.8485585777,1.0
-1.0521752993560147e6,13.601757104317482,7.725,0.5851180291992889,910432.8485585777,1.0
-1.0501326364702566e6,13.601757104317482,7.8999999999999995,0.5883809260506329,910432.8485585777,1.0
-1.0479433781340736e6,13.601757104317482,8.075,0.5882404861843354,910432.8485585777,1.0
-1.0468194281924258e6,13.601757104317482,8.25,0.593078867606733,910432.8485585777,1.0
-1.0445905002828344e6,13.601757104317482,8.425,0.5927354794154064,910432.8485585777,1.0
-1.0434374788224034e6,13.601757104317482,8.6,0.5952284476691948,910432.8485585777,1.0
-1.0431315846795563e6,13.601757104317482,8.774999999999999,0.5961254635734313,910432.8485585777,1.0
-1.0416090993578138e6,13.601757104317482,8.95,0.6011626387453408,910432.8485585777,1.0
-1.0397886354130291e6,13.601757104317482,9.125,0.6058045772289191,910432.8485585777,1.0
-1.0377575407590969e6,13.601757104317482,9.3,0.6051922464038432,910432.8485585777,1.0
-1.0378461563827865e6,13.601757104317482,9.475,0.60207072278369,910432.8485585777,1.0
-1.0358024912907017e6,13.601757104317482,9.649999999999999,0.5991378565920391,910432.8485585777,1.0
-1.0348210224510544e6,13.601757104317482,9.825,0.6047313574240931,910432.8485585777,1.0
-1.0991459831425468e6,15.86871662170373,3.0,0.5120502628734126,910432.8485585777,1.0
-1.0968249894849507e6,15.86871662170373,3.175,0.512992533879153,910432.8485585777,1.0
-1.0954276398872049e6,15.86871662170373,3.35,0.5154414419136636,910432.8485585777,1.0
-1.0925308291309183e6,15.86871662170373,3.525,0.5186210545737747,910432.8485585777,1.0
-1.089954125522438e6,15.86871662170373,3.7,0.5218428066612836,910432.8485585777,1.0
-1.0884815581924475e6,15.86871662170373,3.875,0.5266126464389199,910432.8485585777,1.0
-1.0855253408484613e6,15.86871662170373,4.05,0.524909399222846,910432.8485585777,1.0
-1.083385398818395e6,15.86871662170373,4.225,0.5256849806979823,910432.8485585777,1.0
-1.0829605054838879e6,15.86871662170373,4.4,0.5305181116407264,910432.8485585777,1.0
-1.0807825832236095e6,15.86871662170373,4.575,0.5381536188082983,910432.8485585777,1.0
-1.0798315294611927e6,15.86871662170373,4.75,0.540926130540761,910432.8485585777,1.0
-1.0779811576739743e6,15.86871662170373,4.925,0.5426731439516048,910432.8485585777,1.0
-1.0756566644163944e6,15.86871662170373,5.1,0.5502323410951049,910432.8485585777,1.0
-1.0743379492868874e6,15.86871662170373,5.275,0.5459211959555957,910432.8485585777,1.0
-1.0725907549103172e6,15.86871662170373,5.449999999999999,0.5508976526565713,910432.8485585777,1.0
-1.071510232163548e6,15.86871662170373,5.625,0.5564492099912433,910432.8485585777,1.0
-1.0707344711394284e6,15.86871662170373,5.8,0.5593100016093361,910432.8485585777,1.0
-1.0689408576524502e6,15.86871662170373,5.975,0.564459661352115,910432.8485585777,1.0
-1.0657475786890173e6,15.86871662170373,6.15,0.5644780860173065,910432.8485585777,1.0
-1.0637036288219015e6,15.86871662170373,6.324999999999999,0.5680173425111358,910432.8485585777,1.0
-1.063951345009111e6,15.86871662170373,6.5,0.5704768903379225,910432.8485585777,1.0
-1.060490473229855e6,15.86871662170373,6.675,0.5759733942725173,910432.8485585777,1.0
-1.0606652494147252e6,15.86871662170373,6.85,0.5767959133219177,910432.8485585777,1.0
-1.0593508169184108e6,15.86871662170373,7.0249999999999995,0.576079187158066,910432.8485585777,1.0
-1.0577096321331132e6,15.86871662170373,7.199999999999999,0.577256599740753,910432.8485585777,1.0
-1.0554404213650806e6,15.86871662170373,7.375,0.5788468270276224,910432.8485585777,1.0
-1.0533616112083655e6,15.86871662170373,7.55,0.5767169820588057,910432.8485585777,1.0
-1.0521618695740814e6,15.86871662170373,7.725,0.5814988820895681,910432.8485585777,1.0
-1.0502356917076865e6,15.86871662170373,7.8999999999999995,0.5842575404721266,910432.8485585777,1.0
-1.0484974548666773e6,15.86871662170373,8.075,0.5836762164750217,910432.8485585777,1.0
-1.0467618252217899e6,15.86871662170373,8.25,0.589465400792729,910432.8485585777,1.0
-1.0446624346505271e6,15.86871662170373,8.425,0.588584280317738,910432.8485585777,1.0
-1.04339298033498e6,15.86871662170373,8.6,0.5910709572117644,910432.8485585777,1.0
-1.0429747939545452e6,15.86871662170373,8.774999999999999,0.592090188579571,910432.8485585777,1.0
-1.041885830552201e6,15.86871662170373,8.95,0.5973224833350107,910432.8485585777,1.0
-1.0403913160601202e6,15.86871662170373,9.125,0.6021378602680467,910432.8485585777,1.0
-1.0378257949644639e6,15.86871662170373,9.3,0.6019128843978371,910432.8485585777,1.0
-1.0379689356914391e6,15.86871662170373,9.475,0.5986231768394564,910432.8485585777,1.0
-1.0354817366039762e6,15.86871662170373,9.649999999999999,0.5943981440055406,910432.8485585777,1.0
-1.0346669027789286e6,15.86871662170373,9.825,0.6048106643587824,910432.8485585777,1.0
-1.0992892354290334e6,18.135676139089977,3.0,0.508502624734094,910432.8485585777,1.0
-1.0969685557601769e6,18.135676139089977,3.175,0.5091494379418569,910432.8485585777,1.0
-1.095482653327588e6,18.135676139089977,3.35,0.5112783738931046,910432.8485585777,1.0
-1.0924553759884431e6,18.135676139089977,3.525,0.5144114553556517,910432.8485585777,1.0
-1.0900146250528335e6,18.135676139089977,3.7,0.5181139346164619,910432.8485585777,1.0
-1.0885348362443787e6,18.135676139089977,3.875,0.5224229652590282,910432.8485585777,1.0
-1.085626142792365e6,18.135676139089977,4.05,0.5208743349970615,910432.8485585777,1.0
-1.0833289456759242e6,18.135676139089977,4.225,0.5222681879702605,910432.8485585777,1.0
-1.0831785978522892e6,18.135676139089977,4.4,0.5264746096645704,910432.8485585777,1.0
-1.0809864196885752e6,18.135676139089977,4.575,0.534459841839797,910432.8485585777,1.0
-1.0798177982667936e6,18.135676139089977,4.75,0.5373105656828892,910432.8485585777,1.0
-1.078110426479592e6,18.135676139089977,4.925,0.5393305762398692,910432.8485585777,1.0
-1.0759521650040592e6,18.135676139089977,5.1,0.546420075288755,910432.8485585777,1.0
-1.0743902180925047e6,18.135676139089977,5.275,0.5423360941709658,910432.8485585777,1.0
-1.0724891780652034e6,18.135676139089977,5.449999999999999,0.5482884593652164,910432.8485585777,1.0
-1.071259500969173e6,18.135676139089977,5.625,0.5523506232108796,910432.8485585777,1.0
-1.0712063524162045e6,18.135676139089977,5.8,0.5557412471713782,910432.8485585777,1.0
-1.0688654045099816e6,18.135676139089977,5.975,0.5608104880230769,910432.8485585777,1.0
-1.0658069662962877e6,18.135676139089977,6.15,0.5608903760571166,910432.8485585777,1.0
-1.0644265130306408e6,18.135676139089977,6.324999999999999,0.5645865296609486,910432.8485585777,1.0
-1.0637286230610206e6,18.135676139089977,6.5,0.5664069797445832,910432.8485585777,1.0
-1.0607364681238765e6,18.135676139089977,6.675,0.5727136343169761,910432.8485585777,1.0
-1.060487857278015e6,18.135676139089977,6.85,0.5734413247561676,910432.8485585777,1.0
-1.0593426043932468e6,18.135676139089977,7.0249999999999995,0.574274463614051,910432.8485585777,1.0
-1.05806801414108e6,18.135676139089977,7.199999999999999,0.5732640113211325,910432.8485585777,1.0
-1.0555774570252507e6,18.135676139089977,7.375,0.5761052208485207,910432.8485585777,1.0
-1.0536628685759453e6,18.135676139089977,7.55,0.5733259844682952,910432.8485585777,1.0
-1.0519228857835114e6,18.135676139089977,7.725,0.5752839067100548,910432.8485585777,1.0
-1.0502606433045513e6,18.135676139089977,7.8999999999999995,0.5815654607125571,910432.8485585777,1.0
-1.0483682329173136e6,18.135676139089977,8.075,0.5786945297110748,910432.8485585777,1.0
-1.047094595187592e6,18.135676139089977,8.25,0.5834965262801198,910432.8485585777,1.0
-1.0449752505702326e6,18.135676139089977,8.425,0.5852122384505949,910432.8485585777,1.0
-1.0438857735324623e6,18.135676139089977,8.6,0.5852844068562082,910432.8485585777,1.0
-1.0435944168851149e6,18.135676139089977,8.774999999999999,0.5870742002232927,910432.8485585777,1.0
-1.0417134610693321e6,18.135676139089977,8.95,0.5942521500462531,910432.8485585777,1.0
-1.0408657847992161e6,18.135676139089977,9.125,0.5973858705000668,910432.8485585777,1.0
-1.0379450869140059e6,18.135676139089977,9.3,0.5972949711223362,910432.8485585777,1.0
-1.0383254820139675e6,18.135676139089977,9.475,0.5966488007403321,910432.8485585777,1.0
-1.0351939907439043e6,18.135676139089977,9.649999999999999,0.5916144151370255,910432.8485585777,1.0
-1.0355980893521019e6,18.135676139089977,9.825,0.6027487858003017,910432.8485585777,1.0
-1.0994616654343538e6,20.402635656476225,3.0,0.5045141854786943,910432.8485585777,1.0
-1.097038985765496e6,20.402635656476225,3.175,0.5051187685586105,910432.8485585777,1.0
-1.0954070833328976e6,20.402635656476225,3.35,0.5073920304354493,910432.8485585777,1.0
-1.0924559266480773e6,20.402635656476225,3.525,0.5106558042790716,910432.8485585777,1.0
-1.0900490550581499e6,20.402635656476225,3.7,0.5144220156995114,910432.8485585777,1.0
-1.0885102662496993e6,20.402635656476225,3.875,0.5183284762463682,910432.8485585777,1.0
-1.0856345727976894e6,20.402635656476225,4.05,0.5169152470909767,910432.8485585777,1.0
-1.08357237568124e6,20.402635656476225,4.225,0.5185170644149277,910432.8485585777,1.0
-1.0831870278576089e6,20.402635656476225,4.4,0.5227793365433485,910432.8485585777,1.0
-1.0810096899159525e6,20.402635656476225,4.575,0.5302490330737601,910432.8485585777,1.0
-1.0800020684941798e6,20.402635656476225,4.75,0.5333889255301197,910432.8485585777,1.0
-1.078046856766849e6,20.402635656476225,4.925,0.5351484075390739,910432.8485585777,1.0
-1.0762327255276565e6,20.402635656476225,5.1,0.5432225683861315,910432.8485585777,1.0
-1.0742974883198796e6,20.402635656476225,5.275,0.5388424918335687,910432.8485585777,1.0
-1.0725704003807767e6,20.402635656476225,5.449999999999999,0.544871789557307,910432.8485585777,1.0
-1.0715371108135723e6,20.402635656476225,5.625,0.5486949127764327,910432.8485585777,1.0
-1.0712317827034744e6,20.402635656476225,5.8,0.5518471542876398,910432.8485585777,1.0
-1.0688066747373608e6,20.402635656476225,5.975,0.5566587910469165,910432.8485585777,1.0
-1.0659273116843472e6,20.402635656476225,6.15,0.5568431871622477,910432.8485585777,1.0
-1.064617815154252e6,20.402635656476225,6.324999999999999,0.5608087324927993,910432.8485585777,1.0
-1.0635810659870228e6,20.402635656476225,6.5,0.562369828932135,910432.8485585777,1.0
-1.0610179153838726e6,20.402635656476225,6.675,0.5694313410406521,910432.8485585777,1.0
-1.0604931401441202e6,20.402635656476225,6.85,0.5693454318858518,910432.8485585777,1.0
-1.0591890766832381e6,20.402635656476225,7.0249999999999995,0.5696449679800434,910432.8485585777,1.0
-1.058217446253353e6,20.402635656476225,7.199999999999999,0.5698212487373664,910432.8485585777,1.0
-1.0549756580032548e6,20.402635656476225,7.375,0.5712432082683936,910432.8485585777,1.0
-1.0534598740114453e6,20.402635656476225,7.55,0.5688505966372625,910432.8485585777,1.0
-1.051894851153052e6,20.402635656476225,7.725,0.573555045426497,910432.8485585777,1.0
-1.050212394876851e6,20.402635656476225,7.8999999999999995,0.5771374964204611,910432.8485585777,1.0
-1.0483735031446975e6,20.402635656476225,8.075,0.5746962299939794,910432.8485585777,1.0
-1.0467178190300926e6,20.402635656476225,8.25,0.5794424830978858,910432.8485585777,1.0
-1.044964702264329e6,20.402635656476225,8.425,0.580789756322409,910432.8485585777,1.0
-1.0441592477493039e6,20.402635656476225,8.6,0.5847752721311816,910432.8485585777,1.0
-1.0435055077304969e6,20.402635656476225,8.774999999999999,0.5842946017856876,910432.8485585777,1.0
-1.0421212465487098e6,20.402635656476225,8.95,0.5902210803273537,910432.8485585777,1.0
-1.0410744069668355e6,20.402635656476225,9.125,0.5945626496463531,910432.8485585777,1.0
-1.0379207702540478e6,20.402635656476225,9.3,0.5929824121520185,910432.8485585777,1.0
-1.0383421519351286e6,20.402635656476225,9.475,0.5934015210364851,910432.8485585777,1.0
-1.0353547955875016e6,20.402635656476225,9.649999999999999,0.5874244742927822,910432.8485585777,1.0
-1.0353322184557511e6,20.402635656476225,9.825,0.5976011258462716,910432.8485585777,1.0
-1.099539771689855e6,22.669595173862472,3.0,0.5008272914887001,910432.8485585777,1.0
-1.097266061984465e6,22.669595173862472,3.175,0.5017005022583079,910432.8485585777,1.0
-1.09580815955184e6,22.669595173862472,3.35,0.5035442329287804,910432.8485585777,1.0
-1.0923460028670162e6,22.669595173862472,3.525,0.5070313095979729,910432.8485585777,1.0
-1.090169147152679e6,22.669595173862472,3.7,0.5103938541751295,910432.8485585777,1.0
-1.0885263424686487e6,22.669595173862472,3.875,0.5147929715739609,910432.8485585777,1.0
-1.0856937167203166e6,22.669595173862472,4.05,0.5131048537135748,910432.8485585777,1.0
-1.0837935595412673e6,22.669595173862472,4.225,0.5152165503208722,910432.8485585777,1.0
-1.083347027857601e6,22.669595173862472,4.4,0.5188861274320465,910432.8485585777,1.0
-1.0810288179630178e6,22.669595173862472,4.575,0.5268474140636233,910432.8485585777,1.0
-1.080012068494191e6,22.669595173862472,4.75,0.5300154471561255,910432.8485585777,1.0
-1.0783468567668411e6,22.669595173862472,4.925,0.5323023637865021,910432.8485585777,1.0
-1.0762357706578297e6,22.669595173862472,5.1,0.5395952584382137,910432.8485585777,1.0
-1.0743554048269775e6,22.669595173862472,5.275,0.5348679541063392,910432.8485585777,1.0
-1.0728344782160143e6,22.669595173862472,5.449999999999999,0.5415823470860107,910432.8485585777,1.0
-1.0716042140867794e6,22.669595173862472,5.625,0.5444740596587668,910432.8485585777,1.0
-1.0712107985790677e6,22.669595173862472,5.8,0.5477480574239261,910432.8485585777,1.0
-1.0689626906129587e6,22.669595173862472,5.975,0.553016580979236,910432.8485585777,1.0
-1.065823799987975e6,22.669595173862472,6.15,0.5534594199530154,910432.8485585777,1.0
-1.064479850049669e6,22.669595173862472,6.324999999999999,0.5574456478898419,910432.8485585777,1.0
-1.063431065987026e6,22.669595173862472,6.5,0.5583376849349145,910432.8485585777,1.0
-1.0609679153838668e6,22.669595173862472,6.675,0.5646654501025079,910432.8485585777,1.0
-1.0605691401441318e6,22.669595173862472,6.85,0.5654619824777876,910432.8485585777,1.0
-1.0592891891336276e6,22.669595173862472,7.0249999999999995,0.566051493359453,910432.8485585777,1.0
-1.0583134462533619e6,22.669595173862472,7.199999999999999,0.5660878696354085,910432.8485585777,1.0
-1.0554387723383373e6,22.669595173862472,7.375,0.5676743094685943,910432.8485585777,1.0
-1.0538159419824712e6,22.669595173862472,7.55,0.5646465156277277,910432.8485585777,1.0
-1.0515981549054584e6,22.669595173862472,7.725,0.5697545097935853,910432.8485585777,1.0
-1.0506665422118711e6,22.669595173862472,7.8999999999999995,0.5718687645914193,910432.8485585777,1.0
-1.0482675482748757e6,22.669595173862472,8.075,0.5749250133215406,910432.8485585777,1.0
-1.0468648190300898e6,22.669595173862472,8.25,0.5755428960962606,910432.8485585777,1.0
-1.0453385970510598e6,22.669595173862472,8.425,0.5776858462722142,910432.8485585777,1.0
-1.0441282928794668e6,22.669595173862472,8.6,0.5802541487361877,910432.8485585777,1.0
-1.043821552860676e6,22.669595173862472,8.774999999999999,0.5804071325960417,910432.8485585777,1.0
-1.0413762916788816e6,22.669595173862472,8.95,0.5846751361836524,910432.8485585777,1.0
-1.0413651554466207e6,22.669595173862472,9.125,0.5903096404778537,910432.8485585777,1.0
-1.0379628183683067e6,22.669595173862472,9.3,0.5884287945106643,910432.8485585777,1.0
-1.0382811519351143e6,22.669595173862472,9.475,0.5893294379296987,910432.8485585777,1.0
-1.0351582822860397e6,22.669595173862472,9.649999999999999,0.5827324706913227,910432.8485585777,1.0
-1.0353202184557552e6,22.669595173862472,9.825,0.5931943716201922,910432.8485585777,1.0
-1.0993837662589801e6,24.93655469124872,3.0,0.4970541998332455,910432.8485585777,1.0
-1.097411056553576e6,24.93655469124872,3.175,0.4977986031603143,910432.8485585777,1.0
-1.0956561457548484e6,24.93655469124872,3.35,0.4990694753885289,910432.8485585777,1.0
-1.0922669164124804e6,24.93655469124872,3.525,0.5030897423053953,910432.8485585777,1.0
-1.0901691417218077e6,24.93655469124872,3.7,0.5064932417215707,910432.8485585777,1.0
-1.0885153370377799e6,24.93655469124872,3.875,0.5107935816279241,910432.8485585777,1.0
-1.0856397112894421e6,24.93655469124872,4.05,0.5088176569148056,910432.8485585777,1.0
-1.0841545541103955e6,24.93655469124872,4.225,0.512599408638821,910432.8485585777,1.0
-1.0836969994121168e6,24.93655469124872,4.4,0.5155041199878448,910432.8485585777,1.0
-1.081113812532135e6,24.93655469124872,4.575,0.5197827716527706,910432.8485585777,1.0
-1.080024970162621e6,24.93655469124872,4.75,0.5257491306439984,910432.8485585777,1.0
-1.0783448513359725e6,24.93655469124872,4.925,0.5279981894014681,910432.8485585777,1.0
-1.0762617706578118e6,24.93655469124872,5.1,0.5358556414132185,910432.8485585777,1.0
-1.0740931375363118e6,24.93655469124872,5.275,0.5317485906953087,910432.8485585777,1.0
-1.0727654421184545e6,24.93655469124872,5.449999999999999,0.5374565963902302,910432.8485585777,1.0
-1.0715482051740168e6,24.93655469124872,5.625,0.5405800775230372,910432.8485585777,1.0
-1.0716537570506157e6,24.93655469124872,5.8,0.5453637798751085,910432.8485585777,1.0
-1.069235519217051e6,24.93655469124872,5.975,0.549085636212267,910432.8485585777,1.0
-1.0657917945571057e6,24.93655469124872,6.15,0.5492595457184196,910432.8485585777,1.0
-1.0639118446187896e6,24.93655469124872,6.324999999999999,0.552365335602871,910432.8485585777,1.0
-1.0635740036048524e6,24.93655469124872,6.5,0.5543228735090311,910432.8485585777,1.0
-1.0612279099529895e6,24.93655469124872,6.675,0.5600854999732177,910432.8485585777,1.0
-1.0608210855833143e6,24.93655469124872,6.85,0.5601346379393685,910432.8485585777,1.0
-1.0590013210099705e6,24.93655469124872,7.0249999999999995,0.5615104516051329,910432.8485585777,1.0
-1.0583761326735592e6,24.93655469124872,7.199999999999999,0.5615019828884975,910432.8485585777,1.0
-1.0555357669074545e6,24.93655469124872,7.375,0.5636315495641319,910432.8485585777,1.0
-1.0535713895729398e6,24.93655469124872,7.55,0.5610196986674532,910432.8485585777,1.0
-1.0519368194991779e6,24.93655469124872,7.725,0.5648121635373599,910432.8485585777,1.0
-1.05134607172649e6,24.93655469124872,7.8999999999999995,0.5691983203961242,910432.8485585777,1.0
-1.0488434901443415e6,24.93655469124872,8.075,0.5672836101423187,910432.8485585777,1.0
-1.0469373825535203e6,24.93655469124872,8.25,0.5715500245421562,910432.8485585777,1.0
-1.0453982460044757e6,24.93655469124872,8.425,0.5746499139925881,910432.8485585777,1.0
-1.0440409448057994e6,24.93655469124872,8.6,0.5757522677076955,910432.8485585777,1.0
-1.0439134211520648e6,24.93655469124872,8.774999999999999,0.5760631373904572,910432.8485585777,1.0
-1.0417111846473132e6,24.93655469124872,8.95,0.5798808991655693,910432.8485585777,1.0
-1.0413779344298884e6,24.93655469124872,9.125,0.5867711749868928,910432.8485585777,1.0
-1.0387317678209883e6,24.93655469124872,9.3,0.5845627266868201,910432.8485585777,1.0
-1.0389794083124787e6,24.93655469124872,9.475,0.5857108150008473,910432.8485585777,1.0
-1.0350242317387285e6,24.93655469124872,9.649999999999999,0.5781761160902642,910432.8485585777,1.0
-1.0344477591311996e6,24.93655469124872,9.825,0.5894869244330169,910432.8485585777,1.0
-1.0995726556506546e6,27.203514208634964,3.0,0.4931578601517007,910432.8485585777,1.0
-1.09728094594527e6,27.203514208634964,3.175,0.49336001690352654,910432.8485585777,1.0
-1.0958830435354868e6,27.203514208634964,3.35,0.4950070359712488,910432.8485585777,1.0
-1.092238805804162e6,27.203514208634964,3.525,0.4991921161354371,910432.8485585777,1.0
-1.0902240311134777e6,27.203514208634964,3.7,0.5027048079254961,910432.8485585777,1.0
-1.0885380847032093e6,27.203514208634964,3.875,0.5069925851455236,910432.8485585777,1.0
-1.0855802041655653e6,27.203514208634964,4.05,0.5056063474106626,910432.8485585777,1.0
-1.0845675892835842e6,27.203514208634964,4.225,0.508912341115221,910432.8485585777,1.0
-1.083935155107844e6,27.203514208634964,4.4,0.5117440616678132,910432.8485585777,1.0
-1.0812557251791426e6,27.203514208634964,4.575,0.5160915591784587,910432.8485585777,1.0
-1.0799923589900893e6,27.203514208634964,4.75,0.5215409477804995,910432.8485585777,1.0
-1.0785399375835715e6,27.203514208634964,4.925,0.5233209587559499,910432.8485585777,1.0
-1.0763426600495023e6,27.203514208634964,5.1,0.5323683389996495,910432.8485585777,1.0
-1.0742271567794443e6,27.203514208634964,5.275,0.5278607513756824,910432.8485585777,1.0
-1.0728537190389764e6,27.203514208634964,5.449999999999999,0.5329805081476849,910432.8485585777,1.0
-1.0713550634477697e6,27.203514208634964,5.625,0.5371968807793203,910432.8485585777,1.0
-1.0719053704940488e6,27.203514208634964,5.8,0.5415533134983779,910432.8485585777,1.0
-1.0688584086087174e6,27.203514208634964,5.975,0.5444797133213635,910432.8485585777,1.0
-1.0661364631018557e6,27.203514208634964,6.15,0.5455407198980574,910432.8485585777,1.0
-1.064440734010457e6,27.203514208634964,6.324999999999999,0.5496804484616225,910432.8485585777,1.0
-1.063733003604838e6,27.203514208634964,6.5,0.5506541029843768,910432.8485585777,1.0
-1.06124290995301e6,27.203514208634964,6.675,0.5568275687208881,910432.8485585777,1.0
-1.060836085583322e6,27.203514208634964,6.85,0.5564408895614362,910432.8485585777,1.0
-1.0587883210099833e6,27.203514208634964,7.0249999999999995,0.5591532903638506,910432.8485585777,1.0
-1.0585331326735546e6,27.203514208634964,7.199999999999999,0.5569353834334425,910432.8485585777,1.0
-1.0557235823423495e6,27.203514208634964,7.375,0.5610862424005914,910432.8485585777,1.0
-1.05346822807256e6,27.203514208634964,7.55,0.5572600472155779,910432.8485585777,1.0
-1.0523304110212217e6,27.203514208634964,7.725,0.5620487570203994,910432.8485585777,1.0
-1.0513407991850628e6,27.203514208634964,7.8999999999999995,0.56680618425719,910432.8485585777,1.0
-1.0488765260247923e6,27.203514208634964,8.075,0.5628550898167695,910432.8485585777,1.0
-1.0464872719451832e6,27.203514208634964,8.25,0.5675253829269981,910432.8485585777,1.0
-1.0452960565122038e6,27.203514208634964,8.425,0.5705025587570471,910432.8485585777,1.0
-1.0441640543634477e6,27.203514208634964,8.6,0.5728756406759058,910432.8485585777,1.0
-1.0434993105437463e6,27.203514208634964,8.774999999999999,0.5743106163843534,910432.8485585777,1.0
-1.0427838391090904e6,27.203514208634964,8.95,0.575608764610812,910432.8485585777,1.0
-1.0414856833805233e6,27.203514208634964,9.125,0.5822191827626512,910432.8485585777,1.0
-1.0392185204127511e6,27.203514208634964,9.3,0.5799852566613283,910432.8485585777,1.0
-1.0390193012843031e6,27.203514208634964,9.475,0.5819562408693656,910432.8485585777,1.0
-1.0354720019002629e6,27.203514208634964,9.649999999999999,0.5764751243262984,910432.8485585777,1.0
-1.0346196485228782e6,27.203514208634964,9.825,0.5853837167835314,910432.8485585777,1.0
-1.0995773741451614e6,29.47047372602121,3.0,0.4893052803026102,910432.8485585777,1.0
-1.097159945945253e6,29.47047372602121,3.175,0.48975751714551563,910432.8485585777,1.0
-1.096025043535497e6,29.47047372602121,3.35,0.49152829765541384,910432.8485585777,1.0
-1.0922048058041472e6,29.47047372602121,3.525,0.49455081265831846,910432.8485585777,1.0
-1.0903878279401585e6,29.47047372602121,3.7,0.49840001008232854,910432.8485585777,1.0
-1.0887468815298998e6,29.47047372602121,3.875,0.503270856570789,910432.8485585777,1.0
-1.085700710330898e6,29.47047372602121,4.05,0.5020777261324876,910432.8485585777,1.0
-1.0848503861102753e6,29.47047372602121,4.225,0.5055196962327776,910432.8485585777,1.0
-1.0843376615759188e6,29.47047372602121,4.4,0.508542306428618,910432.8485585777,1.0
-1.0813727251791444e6,29.47047372602121,4.575,0.5123829736136647,910432.8485585777,1.0
-1.0799203589900832e6,29.47047372602121,4.75,0.5182912216834646,910432.8485585777,1.0
-1.0786829375835692e6,29.47047372602121,4.925,0.5202995924880405,910432.8485585777,1.0
-1.0765091824834046e6,29.47047372602121,5.1,0.5288014415173629,910432.8485585777,1.0
-1.074559500375896e6,29.47047372602121,5.275,0.5240760440125858,910432.8485585777,1.0
-1.0727797190389722e6,29.47047372602121,5.449999999999999,0.5289208063698474,910432.8485585777,1.0
-1.0712690634477816e6,29.47047372602121,5.625,0.5332651745344091,910432.8485585777,1.0
-1.0716093851331747e6,29.47047372602121,5.8,0.5363847054037482,910432.8485585777,1.0
-1.0690554086087216e6,29.47047372602121,5.975,0.5408305287567478,910432.8485585777,1.0
-1.066210463101846e6,29.47047372602121,6.15,0.5419802317727657,910432.8485585777,1.0
-1.0643594843943366e6,29.47047372602121,6.324999999999999,0.5456978144079105,910432.8485585777,1.0
-1.063852003604849e6,29.47047372602121,6.5,0.5475932734033594,910432.8485585777,1.0
-1.061199909952999e6,29.47047372602121,6.675,0.5531050018520497,910432.8485585777,1.0
-1.0610817906811843e6,29.47047372602121,6.85,0.5516968778691288,910432.8485585777,1.0
-1.058948180945247e6,29.47047372602121,7.0249999999999995,0.555386082307756,910432.8485585777,1.0
-1.0585221326735695e6,29.47047372602121,7.199999999999999,0.5545098296250727,910432.8485585777,1.0
-1.0554815199714196e6,29.47047372602121,7.375,0.557865515376601,910432.8485585777,1.0
-1.0533312468235604e6,29.47047372602121,7.55,0.5543710400603933,910432.8485585777,1.0
-1.0524909463012975e6,29.47047372602121,7.725,0.5582488494208788,910432.8485585777,1.0
-1.0513996249019678e6,29.47047372602121,7.8999999999999995,0.5626773129427796,910432.8485585777,1.0
-1.0488708573376674e6,29.47047372602121,8.075,0.5628721252725842,910432.8485585777,1.0
-1.0467188375787811e6,29.47047372602121,8.25,0.5642198059615414,910432.8485585777,1.0
-1.0457225992347659e6,29.47047372602121,8.425,0.5640557968937765,910432.8485585777,1.0
-1.04417661999704e6,29.47047372602121,8.6,0.5696252063449947,910432.8485585777,1.0
-1.0438055732660857e6,29.47047372602121,8.774999999999999,0.5722085839293563,910432.8485585777,1.0
-1.0430103538118687e6,29.47047372602121,8.95,0.5716909718973219,910432.8485585777,1.0
-1.0416829417670848e6,29.47047372602121,9.125,0.5782379571290102,910432.8485585777,1.0
-1.0389035330132605e6,29.47047372602121,9.3,0.5768604193205864,910432.8485585777,1.0
-1.0386600544026438e6,29.47047372602121,9.475,0.5772603523123031,910432.8485585777,1.0
-1.0359439862117113e6,29.47047372602121,9.649999999999999,0.5725293868418743,910432.8485585777,1.0
-1.0340480311396869e6,29.47047372602121,9.825,0.5820478239695261,910432.8485585777,1.0
-1.0997213741451702e6,31.73743324340746,3.0,0.48534601649397974,910432.8485585777,1.0
-1.0971029459452645e6,31.73743324340746,3.175,0.4862583338500611,910432.8485585777,1.0
-1.0960930435354933e6,31.73743324340746,3.35,0.48763756863258123,910432.8485585777,1.0
-1.091861805804157e6,31.73743324340746,3.525,0.4904377159199834,910432.8485585777,1.0
-1.0904948279401772e6,31.73743324340746,3.7,0.4948532822390912,910432.8485585777,1.0
-1.0885165359916806e6,31.73743324340746,3.875,0.49969729684705533,910432.8485585777,1.0
-1.0858877103308993e6,31.73743324340746,4.05,0.4984366004419531,910432.8485585777,1.0
-1.0847560726243143e6,31.73743324340746,4.225,0.5012515467737925,910432.8485585777,1.0
-1.0843416615759276e6,31.73743324340746,4.4,0.5046459638665941,910432.8485585777,1.0
-1.081590725179149e6,31.73743324340746,4.575,0.5079274304797747,910432.8485585777,1.0
-1.0802756776028336e6,31.73743324340746,4.75,0.5145627122292921,910432.8485585777,1.0
-1.0789619375835734e6,31.73743324340746,4.925,0.5169109238999519,910432.8485585777,1.0
-1.0766448369451931e6,31.73743324340746,5.1,0.5243303029455173,910432.8485585777,1.0
-1.0744751548376721e6,31.73743324340746,5.275,0.5206726298375405,910432.8485585777,1.0
-1.0728663735007523e6,31.73743324340746,5.449999999999999,0.5250673361102925,910432.8485585777,1.0
-1.0712057016674702e6,31.73743324340746,5.625,0.5290841501824297,910432.8485585777,1.0
-1.0717573851331687e6,31.73743324340746,5.8,0.5325356047431765,910432.8485585777,1.0
-1.0694384086087244e6,31.73743324340746,5.975,0.5371528529245075,910432.8485585777,1.0
-1.066318463101843e6,31.73743324340746,6.15,0.5378237608156298,910432.8485585777,1.0
-1.0646992890235814e6,31.73743324340746,6.324999999999999,0.541928891801163,910432.8485585777,1.0
-1.0639620036048498e6,31.73743324340746,6.5,0.543706321774705,910432.8485585777,1.0
-1.0614946146102496e6,31.73743324340746,6.675,0.5464387067712033,910432.8485585777,1.0
-1.0609677906811878e6,31.73743324340746,6.85,0.5478850541788018,910432.8485585777,1.0
-1.0589241809452455e6,31.73743324340746,7.0249999999999995,0.5518916314266125,910432.8485585777,1.0
-1.0582144861333899e6,31.73743324340746,7.199999999999999,0.5522393294255012,910432.8485585777,1.0
-1.0552115199714145e6,31.73743324340746,7.375,0.5532501557313299,910432.8485585777,1.0
-1.053527024899252e6,31.73743324340746,7.55,0.5496627651667713,910432.8485585777,1.0
-1.052332482560378e6,31.73743324340746,7.725,0.5548049861115528,910432.8485585777,1.0
-1.051568891515702e6,31.73743324340746,7.8999999999999995,0.5587283482161861,910432.8485585777,1.0
-1.048580511799453e6,31.73743324340746,8.075,0.5592714831306902,910432.8485585777,1.0
-1.0466564920405543e6,31.73743324340746,8.25,0.5596013759568336,910432.8485585777,1.0
-1.0461932536965673e6,31.73743324340746,8.425,0.5615174100529844,910432.8485585777,1.0
-1.0439382744588178e6,31.73743324340746,8.6,0.5655353933999251,910432.8485585777,1.0
-1.0437292636580192e6,31.73743324340746,8.774999999999999,0.5686031144431988,910432.8485585777,1.0
-1.0431573970470021e6,31.73743324340746,8.95,0.5693065828075543,910432.8485585777,1.0
-1.0422058863644045e6,31.73743324340746,9.125,0.5752756760210372,910432.8485585777,1.0
-1.0391012234051925e6,31.73743324340746,9.3,0.5737590107012277,910432.8485585777,1.0
-1.0385828284541687e6,31.73743324340746,9.475,0.5746769382065235,910432.8485585777,1.0
-1.0357652237390997e6,31.73743324340746,9.649999999999999,0.5740399435059707,910432.8485585777,1.0
-1.0347366485228691e6,31.73743324340746,9.825,0.5787856717431099,910432.8485585777,1.0
-1.099749374145176e6,34.004392760793706,3.0,0.4815004233427668,910432.8485585777,1.0
-1.0972349459452685e6,34.004392760793706,3.175,0.4821556220928763,910432.8485585777,1.0
-1.0961440435354905e6,34.004392760793706,3.35,0.4837807587488622,910432.8485585777,1.0
-1.092222805804146e6,34.004392760793706,3.525,0.4866355028635504,910432.8485585777,1.0
-1.0905918279401695e6,34.004392760793706,3.7,0.4909443073858709,910432.8485585777,1.0
-1.0886779756188397e6,34.004392760793706,3.875,0.49591882739908877,910432.8485585777,1.0
-1.086108710330902e6,34.004392760793706,4.05,0.4949159780866718,910432.8485585777,1.0
-1.0847190726243209e6,34.004392760793706,4.225,0.4966067624026201,910432.8485585777,1.0
-1.0842776615759204e6,34.004392760793706,4.4,0.500600960849441,910432.8485585777,1.0
-1.0819517251791498e6,34.004392760793706,4.575,0.5049313575006895,910432.8485585777,1.0
-1.080968711153901e6,34.004392760793706,4.75,0.5111540822926613,910432.8485585777,1.0
-1.078949937583572e6,34.004392760793706,4.925,0.5139693009116943,910432.8485585777,1.0
-1.0767458369451875e6,34.004392760793706,5.1,0.5208440396120997,910432.8485585777,1.0
-1.0745279162870918e6,34.004392760793706,5.275,0.5169814092057675,910432.8485585777,1.0
-1.0731029621054046e6,34.004392760793706,5.449999999999999,0.5218683422700197,910432.8485585777,1.0
-1.0713767016674778e6,34.004392760793706,5.625,0.5253359713964523,910432.8485585777,1.0
-1.0717233851331708e6,34.004392760793706,5.8,0.5285337753397081,910432.8485585777,1.0
-1.0695564086087258e6,34.004392760793706,5.975,0.5325950504912994,910432.8485585777,1.0
-1.0664754631018462e6,34.004392760793706,6.15,0.5338669562118699,910432.8485585777,1.0
-1.0649902890235845e6,34.004392760793706,6.324999999999999,0.5380772404919093,910432.8485585777,1.0
-1.0642890036048451e6,34.004392760793706,6.5,0.5402963943651021,910432.8485585777,1.0
-1.0616976146102422e6,34.004392760793706,6.675,0.5425669442851253,910432.8485585777,1.0
-1.0606127906811747e6,34.004392760793706,6.85,0.5455345243522308,910432.8485585777,1.0
-1.0590790898168772e6,34.004392760793706,7.0249999999999995,0.5457221064865976,910432.8485585777,1.0
-1.058405486133384e6,34.004392760793706,7.199999999999999,0.5482634070721374,910432.8485585777,1.0
-1.0551253327841377e6,34.004392760793706,7.375,0.5499673574504074,910432.8485585777,1.0
-1.0541650248992513e6,34.004392760793706,7.55,0.5472975208015299,910432.8485585777,1.0
-1.0529430740824118e6,34.004392760793706,7.725,0.5519015407979401,910432.8485585777,1.0
-1.051781729098471e6,34.004392760793706,7.8999999999999995,0.5542072735950464,910432.8485585777,1.0
-1.0489126609329458e6,34.004392760793706,8.075,0.5566267202620019,910432.8485585777,1.0
-1.0469235384254591e6,34.004392760793706,8.25,0.5561520366106361,910432.8485585777,1.0
-1.0467802536965655e6,34.004392760793706,8.425,0.5582319012003748,910432.8485585777,1.0
-1.043982868740218e6,34.004392760793706,8.6,0.5605086584338408,910432.8485585777,1.0
-1.0437372636580291e6,34.004392760793706,8.774999999999999,0.5638429301195415,910432.8485585777,1.0
-1.043331638517502e6,34.004392760793706,8.95,0.5650308491087933,910432.8485585777,1.0
-1.042057223906322e6,34.004392760793706,9.125,0.570096352605161,910432.8485585777,1.0
-1.0387992068172777e6,34.004392760793706,9.3,0.5668114669829218,910432.8485585777,1.0
-1.0392745337060872e6,34.004392760793706,9.475,0.571088440481942,910432.8485585777,1.0
-1.0354542237390758e6,34.004392760793706,9.649999999999999,0.5700208368420636,910432.8485585777,1.0
-1.0353535805518298e6,34.004392760793706,9.825,0.5759947624408358,910432.8485585777,1.0
-1.0999988270310727e6,36.271352278179954,3.0,0.4777733425947262,910432.8485585777,1.0
-1.0973123988311577e6,36.271352278179954,3.175,0.4781729914040861,910432.8485585777,1.0
-1.096284496421404e6,36.271352278179954,3.35,0.4801519671857183,910432.8485585777,1.0
-1.0923432586900457e6,36.271352278179954,3.525,0.4827444471349757,910432.8485585777,1.0
-1.0904050742153656e6,36.271352278179954,3.7,0.48729713705535416,910432.8485585777,1.0
-1.0888434285047478e6,36.271352278179954,3.875,0.49220449063506155,910432.8485585777,1.0
-1.0862157762398485e6,36.271352278179954,4.05,0.49149570706351897,910432.8485585777,1.0
-1.0845695255102133e6,36.271352278179954,4.225,0.4940424709536459,910432.8485585777,1.0
-1.0843621144618168e6,36.271352278179954,4.4,0.4968564605993279,910432.8485585777,1.0
-1.082099178065051e6,36.271352278179954,4.575,0.5011759445696982,910432.8485585777,1.0
-1.081284164039804e6,36.271352278179954,4.75,0.5070866230550544,910432.8485585777,1.0
-1.0792043904694712e6,36.271352278179954,4.925,0.5098215232245877,910432.8485585777,1.0
-1.0771362898310905e6,36.271352278179954,5.1,0.5171962137907848,910432.8485585777,1.0
-1.0748637622492723e6,36.271352278179954,5.275,0.5130749766028875,910432.8485585777,1.0
-1.0731784149913033e6,36.271352278179954,5.449999999999999,0.5174470059982195,910432.8485585777,1.0
-1.070935154553374e6,36.271352278179954,5.625,0.5213711159774613,910432.8485585777,1.0
-1.0722198380190732e6,36.271352278179954,5.8,0.5256971094108313,910432.8485585777,1.0
-1.0699278614946194e6,36.271352278179954,5.975,0.5287749557592742,910432.8485585777,1.0
-1.066462343346156e6,36.271352278179954,6.15,0.5307188553017194,910432.8485585777,1.0
-1.064691741909481e6,36.271352278179954,6.324999999999999,0.5339660385469083,910432.8485585777,1.0
-1.0645068711037836e6,36.271352278179954,6.5,0.5371121181584421,910432.8485585777,1.0
-1.0620446146102445e6,36.271352278179954,6.675,0.5386896933592769,910432.8485585777,1.0
-1.0606472435670893e6,36.271352278179954,6.85,0.5427778086306687,910432.8485585777,1.0
-1.0590655427027699e6,36.271352278179954,7.0249999999999995,0.542674272918476,910432.8485585777,1.0
-1.0588339390192893e6,36.271352278179954,7.199999999999999,0.5446585673825668,910432.8485585777,1.0
-1.0556047856700409e6,36.271352278179954,7.375,0.5464151975968963,910432.8485585777,1.0
-1.0543254777851664e6,36.271352278179954,7.55,0.543437954580645,910432.8485585777,1.0
-1.0529872232159043e6,36.271352278179954,7.725,0.5482436810413913,910432.8485585777,1.0
-1.0517826827135924e6,36.271352278179954,7.8999999999999995,0.5506017938906372,910432.8485585777,1.0
-1.0493122203478883e6,36.271352278179954,8.075,0.554026249102023,910432.8485585777,1.0
-1.046641502331028e6,36.271352278179954,8.25,0.554366746892395,910432.8485585777,1.0
-1.0463417745534928e6,36.271352278179954,8.425,0.5534292626468247,910432.8485585777,1.0
-1.0440387273447127e6,36.271352278179954,8.6,0.5568709466485819,910432.8485585777,1.0
-1.0438397165439402e6,36.271352278179954,8.774999999999999,0.5565169382441154,910432.8485585777,1.0
-1.0428125894267159e6,36.271352278179954,8.95,0.5609422755731224,910432.8485585777,1.0
-1.0415239697009404e6,36.271352278179954,9.125,0.5654361770869081,910432.8485585777,1.0
-1.0389713757008235e6,36.271352278179954,9.3,0.5624368042556054,910432.8485585777,1.0
-1.0393485337060972e6,36.271352278179954,9.475,0.5662355917225272,910432.8485585777,1.0
-1.0355622237390741e6,36.271352278179954,9.649999999999999,0.56597890249667,910432.8485585777,1.0
-1.0362591752035217e6,36.271352278179954,9.825,0.5716309219813298,910432.8485585777,1.0
-1.1002081379704468e6,38.5383117955662,3.0,0.4740879700710251,910432.8485585777,1.0
-1.097095543057625e6,38.5383117955662,3.175,0.47409047337061866,910432.8485585777,1.0
-1.0962804964213902e6,38.5383117955662,3.35,0.475694842918281,910432.8485585777,1.0
-1.0923133047938948e6,38.5383117955662,3.525,0.4788021273827659,910432.8485585777,1.0
-1.090583074215349e6,38.5383117955662,3.7,0.4837958526868015,910432.8485585777,1.0
-1.0889224285047487e6,38.5383117955662,3.875,0.4885124008878528,910432.8485585777,1.0
-1.0860131632168014e6,38.5383117955662,4.05,0.4873320546375544,910432.8485585777,1.0
-1.0850655255102182e6,38.5383117955662,4.225,0.4900953648129631,910432.8485585777,1.0
-1.0843296899808873e6,38.5383117955662,4.4,0.4932046500200918,910432.8485585777,1.0
-1.0821291780650485e6,38.5383117955662,4.575,0.49734232425909686,910432.8485585777,1.0
-1.0814521640397932e6,38.5383117955662,4.75,0.5034205917308068,910432.8485585777,1.0
-1.0794573904694736e6,38.5383117955662,4.925,0.5058182925260649,910432.8485585777,1.0
-1.077346289831098e6,38.5383117955662,5.1,0.5128016383103131,910432.8485585777,1.0
-1.0749001220654515e6,38.5383117955662,5.275,0.5088645383079343,910432.8485585777,1.0
-1.0731634149912975e6,38.5383117955662,5.449999999999999,0.513646027825479,910432.8485585777,1.0
-1.0709741545533733e6,38.5383117955662,5.625,0.5177163776568136,910432.8485585777,1.0
-1.0721308380190765e6,38.5383117955662,5.8,0.5223326660779612,910432.8485585777,1.0
-1.070305861494625e6,38.5383117955662,5.975,0.5263104827451507,910432.8485585777,1.0
-1.0665593433461552e6,38.5383117955662,6.15,0.5268500385032682,910432.8485585777,1.0
-1.065163043013332e6,38.5383117955662,6.324999999999999,0.5302567495170015,910432.8485585777,1.0
-1.0645238711037682e6,38.5383117955662,6.5,0.5331785373808976,910432.8485585777,1.0
-1.062131614610241e6,38.5383117955662,6.675,0.5352985919578982,910432.8485585777,1.0
-1.0614913115381105e6,38.5383117955662,6.85,0.5401944103821982,910432.8485585777,1.0
-1.0589586338311615e6,38.5383117955662,7.0249999999999995,0.5389785360707675,910432.8485585777,1.0
-1.0589519153139694e6,38.5383117955662,7.199999999999999,0.541258985942435,910432.8485585777,1.0
-1.0559387856700441e6,38.5383117955662,7.375,0.5432957678986023,910432.8485585777,1.0
-1.0539623286516569e6,38.5383117955662,7.55,0.5406368423914024,910432.8485585777,1.0
-1.0533962232158962e6,38.5383117955662,7.725,0.544818778127457,910432.8485585777,1.0
-1.0521200161115227e6,38.5383117955662,7.8999999999999995,0.5468125962672773,910432.8485585777,1.0
-1.0493940780865322e6,38.5383117955662,8.075,0.5488279950548907,910432.8485585777,1.0
-1.04761967753718e6,38.5383117955662,8.25,0.5505466102792346,910432.8485585777,1.0
-1.0461637745535009e6,38.5383117955662,8.425,0.5500561753662493,910432.8485585777,1.0
-1.0441747273447164e6,38.5383117955662,8.6,0.5557584511827136,910432.8485585777,1.0
-1.0432045674104497e6,38.5383117955662,8.774999999999999,0.5531404068927401,910432.8485585777,1.0
-1.0433135894267018e6,38.5383117955662,8.95,0.5561513451404566,910432.8485585777,1.0
-1.0415629697009486e6,38.5383117955662,9.125,0.5594115929831228,910432.8485585777,1.0
-1.0390703757008123e6,38.5383117955662,9.3,0.5594816916016124,910432.8485585777,1.0
-1.0387123163034546e6,38.5383117955662,9.475,0.5627772612443326,910432.8485585777,1.0
-1.0360632237390855e6,38.5383117955662,9.649999999999999,0.5629363149241609,910432.8485585777,1.0
-1.0355066485228705e6,38.5383117955662,9.825,0.5674208538605097,910432.8485585777,1.0
-1.1003136304492177e6,40.80527131295245,3.0,0.4702650618814479,910432.8485585777,1.0
-1.0971850355363996e6,40.80527131295245,3.175,0.4701003266473018,910432.8485585777,1.0
-1.0961419889001774e6,40.80527131295245,3.35,0.4709215428837663,910432.8485585777,1.0
-1.0923727972726838e6,40.80527131295245,3.525,0.4744203530655328,910432.8485585777,1.0
-1.0908545666941346e6,40.80527131295245,3.7,0.4804394925118185,910432.8485585777,1.0
-1.089118920983533e6,40.80527131295245,3.875,0.48501090419456844,910432.8485585777,1.0
-1.0862389286550574e6,40.80527131295245,4.05,0.48409326865736374,910432.8485585777,1.0
-1.08557129094849e6,40.80527131295245,4.225,0.48685409021349924,910432.8485585777,1.0
-1.084351182459675e6,40.80527131295245,4.4,0.48949416041883487,910432.8485585777,1.0
-1.082538670543828e6,40.80527131295245,4.575,0.4943493127378069,910432.8485585777,1.0
-1.0815746565185895e6,40.80527131295245,4.75,0.499657941151918,910432.8485585777,1.0
-1.0795541559077378e6,40.80527131295245,4.925,0.5019373805378491,910432.8485585777,1.0
-1.0770927823098735e6,40.80527131295245,5.1,0.5084010500645859,910432.8485585777,1.0
-1.0743846366208987e6,40.80527131295245,5.275,0.5059370059507696,910432.8485585777,1.0
-1.0728846909961498e6,40.80527131295245,5.449999999999999,0.5097279583382383,910432.8485585777,1.0
-1.0714234305582144e6,40.80527131295245,5.625,0.5142938093382493,910432.8485585777,1.0
-1.072068114023911e6,40.80527131295245,5.8,0.5175728453971413,910432.8485585777,1.0
-1.070421137499463e6,40.80527131295245,5.975,0.5223215504545362,910432.8485585777,1.0
-1.0673968109695737e6,40.80527131295245,6.15,0.5231601962914207,910432.8485585777,1.0
-1.0653033255151235e6,40.80527131295245,6.324999999999999,0.5271791086004994,910432.8485585777,1.0
-1.0649583635825582e6,40.80527131295245,6.5,0.5299202734070065,910432.8485585777,1.0
-1.0624691070890268e6,40.80527131295245,6.675,0.5322290511065293,910432.8485585777,1.0
-1.0613128040168986e6,40.80527131295245,6.85,0.5358004193565098,910432.8485585777,1.0
-1.0596160351815615e6,40.80527131295245,7.0249999999999995,0.5339851592408096,910432.8485585777,1.0
-1.0590915043294127e6,40.80527131295245,7.199999999999999,0.5362655121143697,910432.8485585777,1.0
-1.0562052781488416e6,40.80527131295245,7.375,0.539774029347441,910432.8485585777,1.0
-1.05393831601425e6,40.80527131295245,7.55,0.5349834575700938,910432.8485585777,1.0
-1.0532027231118262e6,40.80527131295245,7.725,0.5408778316638105,910432.8485585777,1.0
-1.0525390416331035e6,40.80527131295245,7.8999999999999995,0.5437078686330872,910432.8485585777,1.0
-1.0500881729675722e6,40.80527131295245,8.075,0.5454899925855682,910432.8485585777,1.0
-1.0483745385487285e6,40.80527131295245,8.25,0.545038249365046,910432.8485585777,1.0
-1.0456263486758486e6,40.80527131295245,8.425,0.5447623120081349,910432.8485585777,1.0
-1.0444171923458135e6,40.80527131295245,8.6,0.5511456854023934,910432.8485585777,1.0
-1.0424110568438856e6,40.80527131295245,8.774999999999999,0.550486638879455,910432.8485585777,1.0
-1.0432938373896617e6,40.80527131295245,8.95,0.5523209903318076,910432.8485585777,1.0
-1.0416043285071749e6,40.80527131295245,9.125,0.5573050139405004,910432.8485585777,1.0
-1.0390475921747612e6,40.80527131295245,9.3,0.555659305263696,910432.8485585777,1.0
-1.0380111733988372e6,40.80527131295245,9.475,0.5592590176705422,910432.8485585777,1.0
-1.0357647636890966e6,40.80527131295245,9.649999999999999,0.5586293432174635,910432.8485585777,1.0
-1.0359753413080589e6,40.80527131295245,9.825,0.5627370925644626,910432.8485585777,1.0
-1.1004036304492312e6,43.0722308303387,3.0,0.46625973586874037,910432.8485585777,1.0
-1.0975540355364026e6,43.0722308303387,3.175,0.46678265259346513,910432.8485585777,1.0
-1.096396988900189e6,43.0722308303387,3.35,0.46842146185333994,910432.8485585777,1.0
-1.0925687972726761e6,43.0722308303387,3.525,0.47102069056789986,910432.8485585777,1.0
-1.0909725666941407e6,43.0722308303387,3.7,0.4765409310645882,910432.8485585777,1.0
-1.0891199209835387e6,43.0722308303387,3.875,0.48151711227312827,910432.8485585777,1.0
-1.0864679286550586e6,43.0722308303387,4.05,0.48062571832766826,910432.8485585777,1.0
-1.0855192909485002e6,43.0722308303387,4.225,0.48342499506360437,910432.8485585777,1.0
-1.0845231824596745e6,43.0722308303387,4.4,0.4865038488370708,910432.8485585777,1.0
-1.0822666705438322e6,43.0722308303387,4.575,0.4898142033722389,910432.8485585777,1.0
-1.0819016565185862e6,43.0722308303387,4.75,0.4967918804460644,910432.8485585777,1.0
-1.0796901559077518e6,43.0722308303387,4.925,0.4984832823890736,910432.8485585777,1.0
-1.0769317823098747e6,43.0722308303387,5.1,0.5013670389535023,910432.8485585777,1.0
-1.074517636620881e6,43.0722308303387,5.275,0.5014668079746336,910432.8485585777,1.0
-1.0726896909961395e6,43.0722308303387,5.449999999999999,0.5057890527603387,910432.8485585777,1.0
-1.0713444305582182e6,43.0722308303387,5.625,0.5106027566107173,910432.8485585777,1.0
-1.0723271140239069e6,43.0722308303387,5.8,0.5140763190990766,910432.8485585777,1.0
-1.070363137499474e6,43.0722308303387,5.975,0.5183524705124444,910432.8485585777,1.0
-1.067871810969587e6,43.0722308303387,6.15,0.520358903485885,910432.8485585777,1.0
-1.065420340826096e6,43.0722308303387,6.324999999999999,0.5236112725443168,910432.8485585777,1.0
-1.0650233635825522e6,43.0722308303387,6.5,0.5259736595464637,910432.8485585777,1.0
-1.062093107089017e6,43.0722308303387,6.675,0.5291273333774787,910432.8485585777,1.0
-1.0619538040169051e6,43.0722308303387,6.85,0.5321656434949824,910432.8485585777,1.0
-1.059000590001287e6,43.0722308303387,7.0249999999999995,0.5292017968945268,910432.8485585777,1.0
-1.0591545043294257e6,43.0722308303387,7.199999999999999,0.5326241273487752,910432.8485585777,1.0
-1.056402324533721e6,43.0722308303387,7.375,0.5358959298182985,910432.8485585777,1.0
-1.0539043156088667e6,43.0722308303387,7.55,0.5306783803330523,910432.8485585777,1.0
-1.053063249792479e6,43.0722308303387,7.725,0.536301310900857,910432.8485585777,1.0
-1.0526325149524591e6,43.0722308303387,7.8999999999999995,0.5405989879173682,910432.8485585777,1.0
-1.0502301729675645e6,43.0722308303387,8.075,0.5410835816509958,910432.8485585777,1.0
-1.0488025385487329e6,43.0722308303387,8.25,0.5428041957839318,910432.8485585777,1.0
-1.0460482639869337e6,43.0722308303387,8.425,0.5416686171577925,910432.8485585777,1.0
-1.0447511923458241e6,43.0722308303387,8.6,0.5496809415439529,910432.8485585777,1.0
-1.0430260568438863e6,43.0722308303387,8.774999999999999,0.547395350291143,910432.8485585777,1.0
-1.0426559488156738e6,43.0722308303387,8.95,0.5487260550773824,910432.8485585777,1.0
-1.0415787872904583e6,43.0722308303387,9.125,0.5518056330329152,910432.8485585777,1.0
-1.0392006385596483e6,43.0722308303387,9.3,0.5507094344296254,910432.8485585777,1.0
-1.0378751568190714e6,43.0722308303387,9.475,0.5558149972970865,910432.8485585777,1.0
-1.0357007636891139e6,43.0722308303387,9.649999999999999,0.5520618014706254,910432.8485585777,1.0
-1.0353607600098248e6,43.0722308303387,9.825,0.5588275620230461,910432.8485585777,1.0
-1.1003966304492182e6,45.339190347724944,3.0,0.46274168849813535,910432.8485585777,1.0
-1.09769203553641e6,45.339190347724944,3.175,0.46305132343772365,910432.8485585777,1.0
-1.0963249889001767e6,45.339190347724944,3.35,0.4646844613874236,910432.8485585777,1.0
-1.0925737972726899e6,45.339190347724944,3.525,0.4673686082892527,910432.8485585777,1.0
-1.0910125666941435e6,45.339190347724944,3.7,0.47292354512506557,910432.8485585777,1.0
-1.0893369209835283e6,45.339190347724944,3.875,0.47745385867222784,910432.8485585777,1.0
-1.086354928655074e6,45.339190347724944,4.05,0.47644237547750323,910432.8485585777,1.0
-1.0855742909484808e6,45.339190347724944,4.225,0.4786058468613304,910432.8485585777,1.0
-1.0845261824596769e6,45.339190347724944,4.4,0.4825749371537014,910432.8485585777,1.0
-1.0822086705438453e6,45.339190347724944,4.575,0.48591063971112514,910432.8485585777,1.0
-1.0822386565185855e6,45.339190347724944,4.75,0.4936638447539838,910432.8485585777,1.0
-1.0795871559077438e6,45.339190347724944,4.925,0.49407108378024006,910432.8485585777,1.0
-1.076996782309875e6,45.339190347724944,5.1,0.49763482286795435,910432.8485585777,1.0
-1.0740816366208927e6,45.339190347724944,5.275,0.4964317901645216,910432.8485585777,1.0
-1.0729976909961477e6,45.339190347724944,5.449999999999999,0.5025763216305746,910432.8485585777,1.0
-1.071393430558228e6,45.339190347724944,5.625,0.5066908524584293,910432.8485585777,1.0
-1.0722031140239125e6,45.339190347724944,5.8,0.510111843614197,910432.8485585777,1.0
-1.0700961374994596e6,45.339190347724944,5.975,0.5154126856961595,910432.8485585777,1.0
-1.067685810969585e6,45.339190347724944,6.15,0.5163809374253298,910432.8485585777,1.0
-1.0655863408261004e6,45.339190347724944,6.324999999999999,0.5197687676188508,910432.8485585777,1.0
-1.0648403635825596e6,45.339190347724944,6.5,0.5219770438540213,910432.8485585777,1.0
-1.0618761070890257e6,45.339190347724944,6.675,0.5254592196276203,910432.8485585777,1.0
-1.061626804016899e6,45.339190347724944,6.85,0.5273057007042333,910432.8485585777,1.0
-1.058948035181562e6,45.339190347724944,7.0249999999999995,0.5268248707427351,910432.8485585777,1.0
-1.059203480624091e6,45.339190347724944,7.199999999999999,0.5289103827603179,910432.8485585777,1.0
-1.0570343245337117e6,45.339190347724944,7.375,0.5322154662700946,910432.8485585777,1.0
-1.0545133156088712e6,45.339190347724944,7.55,0.5271242489690834,910432.8485585777,1.0
-1.0533157804405715e6,45.339190347724944,7.725,0.5325876638294368,910432.8485585777,1.0
-1.0524283741500909e6,45.339190347724944,7.8999999999999995,0.5365275768364631,910432.8485585777,1.0
-1.0501672409385915e6,45.339190347724944,8.075,0.5373523787649462,910432.8485585777,1.0
-1.0487995385487396e6,45.339190347724944,8.25,0.537993786014853,910432.8485585777,1.0
-1.0463612639869275e6,45.339190347724944,8.425,0.5375979445029685,910432.8485585777,1.0
-1.0444952760054002e6,45.339190347724944,8.6,0.5427456323374366,910432.8485585777,1.0
-1.0433532059773799e6,45.339190347724944,8.774999999999999,0.5428470788729546,910432.8485585777,1.0
-1.0427599488156651e6,45.339190347724944,8.95,0.5451034305929738,910432.8485585777,1.0
-1.0416826381569563e6,45.339190347724944,9.125,0.5483882484386765,910432.8485585777,1.0
-1.0387296385596652e6,45.339190347724944,9.3,0.5473111503956417,910432.8485585777,1.0
-1.0388980888480477e6,45.339190347724944,9.475,0.5528151147840557,910432.8485585777,1.0
-1.0360605884829423e6,45.339190347724944,9.649999999999999,0.5502328592435989,910432.8485585777,1.0
-1.035722286690457e6,45.339190347724944,9.825,0.5554712619158177,910432.8485585777,1.0
-1.1006426304492175e6,47.60614986511119,3.0,0.4590894483819503,910432.8485585777,1.0
-1.0977740355364128e6,47.60614986511119,3.175,0.459040525299781,910432.8485585777,1.0
-1.0963799889001762e6,47.60614986511119,3.35,0.46106774203289985,910432.8485585777,1.0
-1.0929377972726803e6,47.60614986511119,3.525,0.4635487862700837,910432.8485585777,1.0
-1.091098566694152e6,47.60614986511119,3.7,0.46910586015078887,910432.8485585777,1.0
-1.089479920983517e6,47.60614986511119,3.875,0.4743393235953146,910432.8485585777,1.0
-1.0863809286550623e6,47.60614986511119,4.05,0.4729626562841002,910432.8485585777,1.0
-1.085727290948486e6,47.60614986511119,4.225,0.47306841891763707,910432.8485585777,1.0
-1.0850031824596801e6,47.60614986511119,4.4,0.47923305325356436,910432.8485585777,1.0
-1.0824216705438334e6,47.60614986511119,4.575,0.48255265213163995,910432.8485585777,1.0
-1.082258656518577e6,47.60614986511119,4.75,0.4898668912992075,910432.8485585777,1.0
-1.0796191559077452e6,47.60614986511119,4.925,0.4905017649560268,910432.8485585777,1.0
-1.0771927823098642e6,47.60614986511119,5.1,0.493690819756942,910432.8485585777,1.0
-1.0746026366208734e6,47.60614986511119,5.275,0.4931864524907321,910432.8485585777,1.0
-1.0734466909961423e6,47.60614986511119,5.449999999999999,0.4988586288412601,910432.8485585777,1.0
-1.0714164305582265e6,47.60614986511119,5.625,0.501683977621839,910432.8485585777,1.0
-1.0720101140239106e6,47.60614986511119,5.8,0.5061656808084329,910432.8485585777,1.0
-1.0699151374994614e6,47.60614986511119,5.975,0.5108002600664169,910432.8485585777,1.0
-1.0679808573544684e6,47.60614986511119,6.15,0.5129207602701019,910432.8485585777,1.0
-1.0653543408261049e6,47.60614986511119,6.324999999999999,0.5165213300014527,910432.8485585777,1.0
-1.065253363582564e6,47.60614986511119,6.5,0.5194005026389884,910432.8485585777,1.0
-1.061941107089027e6,47.60614986511119,6.675,0.521034350034608,910432.8485585777,1.0
-1.0621838040169026e6,47.60614986511119,6.85,0.5240297049377662,910432.8485585777,1.0
-1.0591470351815647e6,47.60614986511119,7.0249999999999995,0.5225092850446618,910432.8485585777,1.0
-1.0592574806240955e6,47.60614986511119,7.199999999999999,0.5249976880213467,910432.8485585777,1.0
-1.057184324533711e6,47.60614986511119,7.375,0.5287503865196745,910432.8485585777,1.0
-1.0546823156088716e6,47.60614986511119,7.55,0.5247553290928387,910432.8485585777,1.0
-1.053919780440571e6,47.60614986511119,7.725,0.5285871786178641,910432.8485585777,1.0
-1.0524470430920934e6,47.60614986511119,7.8999999999999995,0.5316606470781816,910432.8485585777,1.0
-1.0511982409385974e6,47.60614986511119,8.075,0.5355072258493456,910432.8485585777,1.0
-1.0482755921089395e6,47.60614986511119,8.25,0.536274549582727,910432.8485585777,1.0
-1.0466162639869227e6,47.60614986511119,8.425,0.5352671863791678,910432.8485585777,1.0
-1.0447072760054121e6,47.60614986511119,8.6,0.5419576889263693,910432.8485585777,1.0
-1.0432922059773701e6,47.60614986511119,8.774999999999999,0.5395201498161973,910432.8485585777,1.0
-1.043077995200556e6,47.60614986511119,8.95,0.5424444957674361,910432.8485585777,1.0
-1.0423997218165521e6,47.60614986511119,9.125,0.544765560135209,910432.8485585777,1.0
-1.0393036385596503e6,47.60614986511119,9.3,0.5442571783819234,910432.8485585777,1.0
-1.0394219534673267e6,47.60614986511119,9.475,0.5493587566946332,910432.8485585777,1.0
-1.0370406721425323e6,47.60614986511119,9.649999999999999,0.547037442450251,910432.8485585777,1.0
-1.0361600833387269e6,47.60614986511119,9.825,0.5519602327523575,910432.8485585777,1.0
-1.1006596304492268e6,49.87310938249744,3.0,0.4553023930781383,910432.8485585777,1.0
-1.098080035536411e6,49.87310938249744,3.175,0.4558115176947006,910432.8485585777,1.0
-1.096886988900167e6,49.87310938249744,3.35,0.4575796573040907,910432.8485585777,1.0
-1.0932777972726736e6,49.87310938249744,3.525,0.45981780107923437,910432.8485585777,1.0
-1.091334566694157e6,49.87310938249744,3.7,0.46442314209510827,910432.8485585777,1.0
-1.0893859209835269e6,49.87310938249744,3.875,0.4704959231113098,910432.8485585777,1.0
-1.0869254947563303e6,49.87310938249744,4.05,0.470034505160118,910432.8485585777,1.0
-1.0859172909484785e6,49.87310938249744,4.225,0.4709577889025222,910432.8485585777,1.0
-1.0849531824596722e6,49.87310938249744,4.4,0.47501688776178796,910432.8485585777,1.0
-1.0824736705438318e6,49.87310938249744,4.575,0.47956186427375125,910432.8485585777,1.0
-1.0825676565185867e6,49.87310938249744,4.75,0.4861417768956067,910432.8485585777,1.0
-1.0796641559077573e6,49.87310938249744,4.925,0.48645066358259326,910432.8485585777,1.0
-1.0774167823098707e6,49.87310938249744,5.1,0.4899300970193679,910432.8485585777,1.0
-1.075282636620879e6,49.87310938249744,5.275,0.4894394518263005,910432.8485585777,1.0
-1.073681690996129e6,49.87310938249744,5.449999999999999,0.4952648127855957,910432.8485585777,1.0
-1.0715230430293789e6,49.87310938249744,5.625,0.497958022797549,910432.8485585777,1.0
-1.0721141140239157e6,49.87310938249744,5.8,0.5029358807748664,910432.8485585777,1.0
-1.0699841374994665e6,49.87310938249744,5.975,0.5068639894783324,910432.8485585777,1.0
-1.0679728573544766e6,49.87310938249744,6.15,0.5093027748988951,910432.8485585777,1.0
-1.065663340826106e6,49.87310938249744,6.324999999999999,0.5115749482847582,910432.8485585777,1.0
-1.0644883635825564e6,49.87310938249744,6.5,0.5144463231545336,910432.8485585777,1.0
-1.062087107089025e6,49.87310938249744,6.675,0.5164862899175968,910432.8485585777,1.0
-1.061830804016912e6,49.87310938249744,6.85,0.5219380959825997,910432.8485585777,1.0
-1.0594510351815608e6,49.87310938249744,7.0249999999999995,0.5193744999626375,910432.8485585777,1.0
-1.0589644806240893e6,49.87310938249744,7.199999999999999,0.5207140434964593,910432.8485585777,1.0
-1.0570383245337182e6,49.87310938249744,7.375,0.5244318345554989,910432.8485585777,1.0
-1.0550724651477407e6,49.87310938249744,7.55,0.5222057595387809,910432.8485585777,1.0
-1.0535526331045376e6,49.87310938249744,7.725,0.5256656212604519,910432.8485585777,1.0
-1.052384183894467e6,49.87310938249744,7.8999999999999995,0.5277555136651131,910432.8485585777,1.0
-1.0505232409385887e6,49.87310938249744,8.075,0.529164621631101,910432.8485585777,1.0
-1.0481386526357015e6,49.87310938249744,8.25,0.5326330643793632,910432.8485585777,1.0
-1.0465834131204196e6,49.87310938249744,8.425,0.5329205614828916,910432.8485585777,1.0
-1.0439252760054175e6,49.87310938249744,8.6,0.536408323446134,910432.8485585777,1.0
-1.0436226410086938e6,49.87310938249744,8.774999999999999,0.5355801001511158,910432.8485585777,1.0
-1.0432089952005517e6,49.87310938249744,8.95,0.5380636464182684,910432.8485585777,1.0
-1.0414577218165484e6,49.87310938249744,9.125,0.542667691224263,910432.8485585777,1.0
-1.0398157876931417e6,49.87310938249744,9.3,0.5418608444645073,910432.8485585777,1.0
-1.0397959534673304e6,49.87310938249744,9.475,0.5442333873526664,910432.8485585777,1.0
-1.0379393666441066e6,49.87310938249744,9.649999999999999,0.5430441169079837,910432.8485585777,1.0
-1.0362995566580815e6,49.87310938249744,9.825,0.550372376436932,910432.8485585777,1.0
-1.1005467467541753e6,52.14006889988369,3.0,0.45140543937134137,910432.8485585777,1.0
-1.0983780355364152e6,52.14006889988369,3.175,0.452691947465691,910432.8485585777,1.0
-1.0967659889001746e6,52.14006889988369,3.35,0.45362389914418455,910432.8485585777,1.0
-1.0933152368998586e6,52.14006889988369,3.525,0.4559397571348506,910432.8485585777,1.0
-1.0914725666941365e6,52.14006889988369,3.7,0.46053797448901657,910432.8485585777,1.0
-1.089395633641248e6,52.14006889988369,3.875,0.46621641013128273,910432.8485585777,1.0
-1.0873662310969853e6,52.14006889988369,4.05,0.46581658048756275,910432.8485585777,1.0
-1.0858050304070932e6,52.14006889988369,4.225,0.46757060064478073,910432.8485585777,1.0
-1.085545538589815e6,52.14006889988369,4.4,0.4715563586424021,910432.8485585777,1.0
-1.0829172034767075e6,52.14006889988369,4.575,0.47557056484115884,910432.8485585777,1.0
-1.082791905675267e6,52.14006889988369,4.75,0.4827242380405207,910432.8485585777,1.0
-1.0796384583819278e6,52.14006889988369,4.925,0.4818755410450133,910432.8485585777,1.0
-1.0769335871549896e6,52.14006889988369,5.1,0.48580648646127583,910432.8485585777,1.0
-1.0759302346737909e6,52.14006889988369,5.275,0.4853166717431396,910432.8485585777,1.0
-1.0746466261755559e6,52.14006889988369,5.449999999999999,0.48838903710979764,910432.8485585777,1.0
-1.0722832360949598e6,52.14006889988369,5.625,0.4950229743217312,910432.8485585777,1.0
-1.0720241960389658e6,52.14006889988369,5.8,0.4988611902489209,910432.8485585777,1.0
-1.0698927844226097e6,52.14006889988369,5.975,0.5023684462649556,910432.8485585777,1.0
-1.068149281449018e6,52.14006889988369,6.15,0.5047184531299794,910432.8485585777,1.0
-1.0657612574576528e6,52.14006889988369,6.324999999999999,0.5089303966555576,910432.8485585777,1.0
-1.0652302327790884e6,52.14006889988369,6.5,0.5114257849538261,910432.8485585777,1.0
-1.0625471529840557e6,52.14006889988369,6.675,0.5135504893872076,910432.8485585777,1.0
-1.0618908040169028e6,52.14006889988369,6.85,0.5172942168868154,910432.8485585777,1.0
-1.0593540351815715e6,52.14006889988369,7.0249999999999995,0.5185610273603048,910432.8485585777,1.0
-1.0589904806240967e6,52.14006889988369,7.199999999999999,0.5151926924887175,910432.8485585777,1.0
-1.0573682777434501e6,52.14006889988369,7.375,0.5213020794690019,910432.8485585777,1.0
-1.0553404479805294e6,52.14006889988369,7.55,0.5184295145564864,910432.8485585777,1.0
-1.0532616331045385e6,52.14006889988369,7.725,0.5222273560964401,910432.8485585777,1.0
-1.0525578063473054e6,52.14006889988369,7.8999999999999995,0.5266466101838023,910432.8485585777,1.0
-1.050766126329216e6,52.14006889988369,8.075,0.5247428445967224,910432.8485585777,1.0
-1.0479623102635256e6,52.14006889988369,8.25,0.5288850725863525,910432.8485585777,1.0
-1.046423616443241e6,52.14006889988369,8.425,0.5288045285230373,910432.8485585777,1.0
-1.0444161612039956e6,52.14006889988369,8.6,0.5338316870876426,910432.8485585777,1.0
-1.0441085326454731e6,52.14006889988369,8.774999999999999,0.5336042909579419,910432.8485585777,1.0
-1.0436489952005553e6,52.14006889988369,8.95,0.5351642204585613,910432.8485585777,1.0
-1.0417451225638478e6,52.14006889988369,9.125,0.539048610709847,910432.8485585777,1.0
-1.0403085756710379e6,52.14006889988369,9.3,0.5382872380152119,910432.8485585777,1.0
-1.0392009124893368e6,52.14006889988369,9.475,0.5399042843656323,910432.8485585777,1.0
-1.0377720171679587e6,52.14006889988369,9.649999999999999,0.5406775604916758,910432.8485585777,1.0
-1.0359172413129129e6,52.14006889988369,9.825,0.5438152901551666,910432.8485585777,1.0
-1.100576746754174e6,54.40702841726993,3.0,0.44705085299459985,910432.8485585777,1.0
-1.0986422022493107e6,54.40702841726993,3.175,0.44861390711520627,910432.8485585777,1.0
-1.0969499889001842e6,54.40702841726993,3.35,0.45069027604942746,910432.8485585777,1.0
-1.093523236899837e6,54.40702841726993,3.525,0.4529422662725091,910432.8485585777,1.0
-1.0915446127979816e6,54.40702841726993,3.7,0.4574917564899953,910432.8485585777,1.0
-1.0894806336412397e6,54.40702841726993,3.875,0.46308346876780765,910432.8485585777,1.0
-1.0875322310969622e6,54.40702841726993,4.05,0.4616236617319017,910432.8485585777,1.0
-1.086113030407105e6,54.40702841726993,4.225,0.4623411353599896,910432.8485585777,1.0
-1.0857255385898084e6,54.40702841726993,4.4,0.46692469419602634,910432.8485585777,1.0
-1.0831422034767172e6,54.40702841726993,4.575,0.4718383548424412,910432.8485585777,1.0
-1.0831489056752527e6,54.40702841726993,4.75,0.4783927355773095,910432.8485585777,1.0
-1.0798804583819194e6,54.40702841726993,4.925,0.4786549758499005,910432.8485585777,1.0
-1.0771845871549875e6,54.40702841726993,5.1,0.4824924100894164,910432.8485585777,1.0
-1.0763632346737778e6,54.40702841726993,5.275,0.4818928811683786,910432.8485585777,1.0
-1.0746366261755368e6,54.40702841726993,5.449999999999999,0.48483073670413496,910432.8485585777,1.0
-1.0726522360949526e6,54.40702841726993,5.625,0.49181229935238685,910432.8485585777,1.0
-1.0722071960389728e6,54.40702841726993,5.8,0.49558243856559564,910432.8485585777,1.0
-1.0705577844226006e6,54.40702841726993,5.975,0.5001302200539051,910432.8485585777,1.0
-1.0683190767597982e6,54.40702841726993,6.15,0.5003096590578108,910432.8485585777,1.0
-1.0657092574576447e6,54.40702841726993,6.324999999999999,0.5050811907492954,910432.8485585777,1.0
-1.0653032327790856e6,54.40702841726993,6.5,0.5069304490208916,910432.8485585777,1.0
-1.062955152984055e6,54.40702841726993,6.675,0.5096637983191653,910432.8485585777,1.0
-1.0617008040168905e6,54.40702841726993,6.85,0.5124244758661437,910432.8485585777,1.0
-1.0604280351815594e6,54.40702841726993,7.0249999999999995,0.5134619203835986,910432.8485585777,1.0
-1.0593450429814486e6,54.40702841726993,7.199999999999999,0.512025064234595,910432.8485585777,1.0
-1.0575612777434671e6,54.40702841726993,7.375,0.5174045781629683,910432.8485585777,1.0
-1.0553893160142335e6,54.40702841726993,7.55,0.5144843879867668,910432.8485585777,1.0
-1.053690633104535e6,54.40702841726993,7.725,0.5188958815372593,910432.8485585777,1.0
-1.0528121282899221e6,54.40702841726993,7.8999999999999995,0.5221580589109536,910432.8485585777,1.0
-1.051497126329208e6,54.40702841726993,8.075,0.5212861817996985,910432.8485585777,1.0
-1.0485541937059854e6,54.40702841726993,8.25,0.5233208413627555,910432.8485585777,1.0
-1.0465496164432352e6,54.40702841726993,8.425,0.5223000199913665,910432.8485585777,1.0
-1.0449640775444013e6,54.40702841726993,8.6,0.5306719767753151,910432.8485585777,1.0
-1.0443855326454679e6,54.40702841726993,8.774999999999999,0.5325082383053821,910432.8485585777,1.0
-1.0432769169948036e6,54.40702841726993,8.95,0.5320899180710871,910432.8485585777,1.0
-1.0417280545928075e6,54.40702841726993,9.125,0.5326497668186063,910432.8485585777,1.0
-1.0396143723192832e6,54.40702841726993,9.3,0.5393763479076343,910432.8485585777,1.0
-1.03979362848699e6,54.40702841726993,9.475,0.5361881375989145,910432.8485585777,1.0
-1.0382331087145325e6,54.40702841726993,9.649999999999999,0.5379644371369603,910432.8485585777,1.0
-1.0368318617520457e6,54.40702841726993,9.825,0.5426702839536542,910432.8485585777,1.0
-1.1013467467541746e6,56.673987934656175,3.0,0.44337802882740646,910432.8485585777,1.0
-1.0993332022493307e6,56.673987934656175,3.175,0.4449410127794414,910432.8485585777,1.0
-1.0973469889001804e6,56.673987934656175,3.35,0.446849147689741,910432.8485585777,1.0
-1.0937542368998474e6,56.673987934656175,3.525,0.44913831117951974,910432.8485585777,1.0
-1.0917530524251484e6,56.673987934656175,3.7,0.4540370502639978,910432.8485585777,1.0
-1.0894401940140924e6,56.673987934656175,3.875,0.45928694530046443,910432.8485585777,1.0
-1.0878072310969746e6,56.673987934656175,4.05,0.4588345411673203,910432.8485585777,1.0
-1.086322590779922e6,56.673987934656175,4.225,0.4588636440174989,910432.8485585777,1.0
-1.0861805385898193e6,56.673987934656175,4.4,0.4650077086771639,910432.8485585777,1.0
-1.0835322034767205e6,56.673987934656175,4.575,0.46939264440688555,910432.8485585777,1.0
-1.0833779056752531e6,56.673987934656175,4.75,0.47449223774982346,910432.8485585777,1.0
-1.080077458381925e6,56.673987934656175,4.925,0.4752914553596121,910432.8485585777,1.0
-1.077267587154982e6,56.673987934656175,5.1,0.47868945381617284,910432.8485585777,1.0
-1.0759162346737797e6,56.673987934656175,5.275,0.4821978231136183,910432.8485585777,1.0
-1.0746716725604339e6,56.673987934656175,5.449999999999999,0.48159722907963837,910432.8485585777,1.0
-1.0726442360949493e6,56.673987934656175,5.625,0.4880443772337649,910432.8485585777,1.0
-1.0730398310948114e6,56.673987934656175,5.8,0.49329929156232055,910432.8485585777,1.0
-1.070624406582299e6,56.673987934656175,5.975,0.4952125570593049,910432.8485585777,1.0
-1.0688230601262585e6,56.673987934656175,6.15,0.49696997431892304,910432.8485585777,1.0
-1.06661825745764e6,56.673987934656175,6.324999999999999,0.5015604858336125,910432.8485585777,1.0
-1.0647712327790775e6,56.673987934656175,6.5,0.5015001351616061,910432.8485585777,1.0
-1.0641985325336002e6,56.673987934656175,6.675,0.5073858565224735,910432.8485585777,1.0
-1.062029804016901e6,56.673987934656175,6.85,0.50852295728347,910432.8485585777,1.0
-1.0603150351815647e6,56.673987934656175,7.0249999999999995,0.50845126622668,910432.8485585777,1.0
-1.059999042981446e6,56.673987934656175,7.199999999999999,0.508948858267763,910432.8485585777,1.0
-1.0579956192685834e6,56.673987934656175,7.375,0.5130039447051542,910432.8485585777,1.0
-1.0559383160142566e6,56.673987934656175,7.55,0.5119015693706946,910432.8485585777,1.0
-1.0550716331045397e6,56.673987934656175,7.725,0.5170320339031762,910432.8485585777,1.0
-1.0538981282899207e6,56.673987934656175,7.8999999999999995,0.5188419245610266,910432.8485585777,1.0
-1.0523379771957188e6,56.673987934656175,8.075,0.5199213849648096,910432.8485585777,1.0
-1.0492543428394697e6,56.673987934656175,8.25,0.5197862884329923,910432.8485585777,1.0
-1.0459583817440014e6,56.673987934656175,8.425,0.5212898795763635,910432.8485585777,1.0
-1.0450102075888795e6,56.673987934656175,8.6,0.5274269832752527,910432.8485585777,1.0
-1.0447587022744747e6,56.673987934656175,8.774999999999999,0.5267066021210278,910432.8485585777,1.0
-1.0442549169948021e6,56.673987934656175,8.95,0.5240560338564677,910432.8485585777,1.0
-1.0432417983779715e6,56.673987934656175,9.125,0.5313597292387754,910432.8485585777,1.0
-1.0410549182703313e6,56.673987934656175,9.3,0.5339889676232814,910432.8485585777,1.0
-1.0397290655248921e6,56.673987934656175,9.475,0.5317655315865973,910432.8485585777,1.0
-1.0382624194032282e6,56.673987934656175,9.649999999999999,0.5328743205210343,910432.8485585777,1.0
-1.0368493008957617e6,56.673987934656175,9.825,0.5387614167744432,910432.8485585777,1.0
-1.1017067467541627e6,58.94094745204242,3.0,0.43959316963500966,910432.8485585777,1.0
-1.0993722122063611e6,58.94094745204242,3.175,0.44159948420992984,910432.8485585777,1.0
-1.0976359889001804e6,58.94094745204242,3.35,0.44381066598677704,910432.8485585777,1.0
-1.0936692368998465e6,58.94094745204242,3.525,0.4453252057109949,910432.8485585777,1.0
-1.0918290524251629e6,58.94094745204242,3.7,0.45021006989589063,910432.8485585777,1.0
-1.0896171940140831e6,58.94094745204242,3.875,0.45708870208042685,910432.8485585777,1.0
-1.0882742310969688e6,58.94094745204242,4.05,0.4550981112446047,910432.8485585777,1.0
-1.086407590779938e6,58.94094745204242,4.225,0.4545354971855536,910432.8485585777,1.0
-1.0860065385898282e6,58.94094745204242,4.4,0.4594627625555482,910432.8485585777,1.0
-1.0838041124538528e6,58.94094745204242,4.575,0.46582780933229784,910432.8485585777,1.0
-1.083239905675262e6,58.94094745204242,4.75,0.4714762555037766,910432.8485585777,1.0
-1.0807954583819022e6,58.94094745204242,4.925,0.47241215903769396,910432.8485585777,1.0
-1.0774630023884033e6,58.94094745204242,5.1,0.4749672953018923,910432.8485585777,1.0
-1.0761711882889005e6,58.94094745204242,5.275,0.47642199232504456,910432.8485585777,1.0
-1.075026955557583e6,58.94094745204242,5.449999999999999,0.47847450174695144,910432.8485585777,1.0
-1.0733172360949637e6,58.94094745204242,5.625,0.48454171262961254,910432.8485585777,1.0
-1.073851494571914e6,58.94094745204242,5.8,0.49004295784650376,910432.8485585777,1.0
-1.0722555734843616e6,58.94094745204242,5.975,0.49279452925495365,910432.8485585777,1.0
-1.0695540601262515e6,58.94094745204242,6.15,0.49401638497361877,910432.8485585777,1.0
-1.0674611259238909e6,58.94094745204242,6.324999999999999,0.4997343447915949,910432.8485585777,1.0
-1.0654132327790922e6,58.94094745204242,6.5,0.49870732982284083,910432.8485585777,1.0
-1.0649785325336054e6,58.94094745204242,6.675,0.5026701284890166,910432.8485585777,1.0
-1.0624218040168993e6,58.94094745204242,6.85,0.5061448565359745,910432.8485585777,1.0
-1.0604850351815647e6,58.94094745204242,7.0249999999999995,0.5039689446718356,910432.8485585777,1.0
-1.0603920429814507e6,58.94094745204242,7.199999999999999,0.50721588170541,910432.8485585777,1.0
-1.0573796192685838e6,58.94094745204242,7.375,0.5100154298133459,910432.8485585777,1.0
-1.0566674479805336e6,58.94094745204242,7.55,0.5086402180776195,910432.8485585777,1.0
-1.0545237804405733e6,58.94094745204242,7.725,0.5148298909916884,910432.8485585777,1.0
-1.053230333027945e6,58.94094745204242,7.8999999999999995,0.5145106243454352,910432.8485585777,1.0
-1.0526493124085523e6,58.94094745204242,8.075,0.5165824178074896,910432.8485585777,1.0
-1.0496624593970266e6,58.94094745204242,8.25,0.5172524051548876,910432.8485585777,1.0
-1.0464546164432414e6,58.94094745204242,8.425,0.518697884994007,910432.8485585777,1.0
-1.0462231239292779e6,58.94094745204242,8.6,0.5255157519014019,910432.8485585777,1.0
-1.044227486260592e6,58.94094745204242,8.774999999999999,0.5221939235638121,910432.8485585777,1.0
-1.0430859169948025e6,58.94094745204242,8.95,0.5208640608391248,910432.8485585777,1.0
-1.0431508827866177e6,58.94094745204242,9.125,0.5269400896127424,910432.8485585777,1.0
-1.041994680742935e6,58.94094745204242,9.3,0.5286352235370028,910432.8485585777,1.0
-1.0397056500731212e6,58.94094745204242,9.475,0.5293452857179672,910432.8485585777,1.0
-1.0387491024265896e6,58.94094745204242,9.649999999999999,0.5301288243055599,910432.8485585777,1.0
-1.037242065103801e6,58.94094745204242,9.825,0.5348145637788646,910432.8485585777,1.0
-1.1023067467541585e6,61.20790696942867,3.0,0.43607636520589715,910432.8485585777,1.0
-1.0995422122063632e6,61.20790696942867,3.175,0.43844974037439405,910432.8485585777,1.0
-1.0978339889001676e6,61.20790696942867,3.35,0.44054150705061773,910432.8485585777,1.0
-1.0941852368998523e6,61.20790696942867,3.525,0.4430060031782082,910432.8485585777,1.0
-1.0924010524251673e6,61.20790696942867,3.7,0.44927415615883054,910432.8485585777,1.0
-1.089571194014086e6,61.20790696942867,3.875,0.45316447557215833,910432.8485585777,1.0
-1.0884152310969625e6,61.20790696942867,4.05,0.4529166857394193,910432.8485585777,1.0
-1.0865388341323405e6,61.20790696942867,4.225,0.45214006695662634,910432.8485585777,1.0
-1.0862255385898252e6,61.20790696942867,4.4,0.4571349504538846,910432.8485585777,1.0
-1.0841956373854838e6,61.20790696942867,4.575,0.4605973542061465,910432.8485585777,1.0
-1.0838137556097677e6,61.20790696942867,4.75,0.46740422775384866,910432.8485585777,1.0
-1.0808990804773758e6,61.20790696942867,4.925,0.4677976423019109,910432.8485585777,1.0
-1.0779226307848094e6,61.20790696942867,5.1,0.47107025517898576,910432.8485585777,1.0
-1.0766184276430903e6,61.20790696942867,5.275,0.4736427600226117,910432.8485585777,1.0
-1.075020148526884e6,61.20790696942867,5.449999999999999,0.47411132060494793,910432.8485585777,1.0
-1.0733887565554294e6,61.20790696942867,5.625,0.48126291337291205,910432.8485585777,1.0
-1.074021239974716e6,61.20790696942867,5.8,0.48634131285251786,910432.8485585777,1.0
-1.0719147177161316e6,61.20790696942867,5.975,0.4874060900942508,910432.8485585777,1.0
-1.070033299480443e6,61.20790696942867,6.15,0.4898810988965121,910432.8485585777,1.0
-1.0683193652780792e6,61.20790696942867,6.324999999999999,0.49630220122974855,910432.8485585777,1.0
-1.065866962352521e6,61.20790696942867,6.5,0.49275521542258116,910432.8485585777,1.0
-1.0639615293128504e6,61.20790696942867,6.675,0.4975652691346978,910432.8485585777,1.0
-1.063067450449738e6,61.20790696942867,6.85,0.5027916924827428,910432.8485585777,1.0
-1.060421317364295e6,61.20790696942867,7.0249999999999995,0.5026600494768905,910432.8485585777,1.0
-1.0607610429814493e6,61.20790696942867,7.199999999999999,0.5032486535201897,910432.8485585777,1.0
-1.0579849195269227e6,61.20790696942867,7.375,0.505024691656057,910432.8485585777,1.0
-1.056790316014256e6,61.20790696942867,7.55,0.5052575930586736,910432.8485585777,1.0
-1.0551769870007148e6,61.20790696942867,7.725,0.5110974668875274,910432.8485585777,1.0
-1.0531039238111305e6,61.20790696942867,7.8999999999999995,0.5114860760927664,910432.8485585777,1.0
-1.052471977195719e6,61.20790696942867,8.075,0.5134582146650865,910432.8485585777,1.0
-1.0497043102635264e6,61.20790696942867,8.25,0.512067515295011,910432.8485585777,1.0
-1.0472448935996944e6,61.20790696942867,8.425,0.5138097400062512,910432.8485585777,1.0
-1.0470840346060875e6,61.20790696942867,8.6,0.5202020200592151,910432.8485585777,1.0
-1.0461007404659684e6,61.20790696942867,8.774999999999999,0.5196669341553173,910432.8485585777,1.0
-1.0429769952005524e6,61.20790696942867,8.95,0.5164156412013616,910432.8485585777,1.0
-1.0425917842061849e6,61.20790696942867,9.125,0.5242736584097915,910432.8485585777,1.0
-1.0417479770836445e6,61.20790696942867,9.3,0.5268552901581562,910432.8485585777,1.0
-1.0412660163662513e6,61.20790696942867,9.475,0.5283099413517128,910432.8485585777,1.0
-1.0386363814876113e6,61.20790696942867,9.649999999999999,0.527939730857922,910432.8485585777,1.0
-1.0374187671735361e6,61.20790696942867,9.825,0.5296235186778331,910432.8485585777,1.0
-1.1021217467541713e6,63.47486648681492,3.0,0.43277061940832856,910432.8485585777,1.0
-1.099981212206379e6,63.47486648681492,3.175,0.4352461125648498,910432.8485585777,1.0
-1.0983949889001902e6,63.47486648681492,3.35,0.4366590114431685,910432.8485585777,1.0
-1.0945482368998593e6,63.47486648681492,3.525,0.43918742317336,910432.8485585777,1.0
-1.092718052425167e6,63.47486648681492,3.7,0.445100822023117,910432.8485585777,1.0
-1.0900351940140931e6,63.47486648681492,3.875,0.4496748709241756,910432.8485585777,1.0
-1.0891172310969704e6,63.47486648681492,4.05,0.44969553040888954,910432.8485585777,1.0
-1.087194865404202e6,63.47486648681492,4.225,0.4488584950051679,910432.8485585777,1.0
-1.0864145385898205e6,63.47486648681492,4.4,0.45364571329546804,910432.8485585777,1.0
-1.084459637385487e6,63.47486648681492,4.575,0.4585611440985399,910432.8485585777,1.0
-1.0840874531355968e6,63.47486648681492,4.75,0.46452575803794455,910432.8485585777,1.0
-1.0807590804773653e6,63.47486648681492,4.925,0.46283984644572723,910432.8485585777,1.0
-1.0781946307848033e6,63.47486648681492,5.1,0.46676742418229106,910432.8485585777,1.0
-1.0762004276430965e6,63.47486648681492,5.275,0.46839677400286583,910432.8485585777,1.0
-1.076088148526886e6,63.47486648681492,5.449999999999999,0.4712980300928621,910432.8485585777,1.0
-1.0737963945239638e6,63.47486648681492,5.625,0.47720449788133124,910432.8485585777,1.0
-1.0742076275035557e6,63.47486648681492,5.8,0.4827410643043933,910432.8485585777,1.0
-1.071843649668073e6,63.47486648681492,5.975,0.48345332532824226,910432.8485585777,1.0
-1.0698362994804464e6,63.47486648681492,6.15,0.4874117933720954,910432.8485585777,1.0
-1.0683823652780985e6,63.47486648681492,6.324999999999999,0.494504720401878,910432.8485585777,1.0
-1.0674759623525008e6,63.47486648681492,6.5,0.48989058382500544,910432.8485585777,1.0
-1.0647575293128295e6,63.47486648681492,6.675,0.4930973341095953,910432.8485585777,1.0
-1.0632274504497305e6,63.47486648681492,6.85,0.4999501769034125,910432.8485585777,1.0
-1.0612603173643006e6,63.47486648681492,7.0249999999999995,0.49800933825446153,910432.8485585777,1.0
-1.0613471760025667e6,63.47486648681492,7.199999999999999,0.49927886297558105,910432.8485585777,1.0
-1.059151770798813e6,63.47486648681492,7.375,0.502184524988725,910432.8485585777,1.0
-1.057004298847026e6,63.47486648681492,7.55,0.5016792507323734,910432.8485585777,1.0
-1.055054215015405e6,63.47486648681492,7.725,0.5075022331336035,910432.8485585777,1.0
-1.0534919238111316e6,63.47486648681492,7.8999999999999995,0.5083363212288184,910432.8485585777,1.0
-1.0521559687133005e6,63.47486648681492,8.075,0.5096254257925449,910432.8485585777,1.0
-1.0501809495417906e6,63.47486648681492,8.25,0.5063255705762938,910432.8485585777,1.0
-1.0471678935997019e6,63.47486648681492,8.425,0.5127390245454431,910432.8485585777,1.0
-1.0474200584553858e6,63.47486648681492,8.6,0.5170046218092076,910432.8485585777,1.0
-1.0458409564798664e6,63.47486648681492,8.774999999999999,0.5156953874488984,910432.8485585777,1.0
-1.0444781443340394e6,63.47486648681492,8.95,0.5140871493693735,910432.8485585777,1.0
-1.0441285671016701e6,63.47486648681492,9.125,0.520340458260243,910432.8485585777,1.0
-1.042357544037878e6,63.47486648681492,9.3,0.5213333016166225,910432.8485585777,1.0
-1.0397641455658574e6,63.47486648681492,9.475,0.5213742377161911,910432.8485585777,1.0
-1.0388313188533175e6,63.47486648681492,9.649999999999999,0.5271232835868934,910432.8485585777,1.0
-1.0387175896048702e6,63.47486648681492,9.825,0.5291628813787903,910432.8485585777,1.0
-1.1021287467541646e6,65.74182600420117,3.0,0.4302560076937582,910432.8485585777,1.0
-1.1001649597110592e6,65.74182600420117,3.175,0.43169870747491673,910432.8485585777,1.0
-1.0983399889001737e6,65.74182600420117,3.35,0.433153180477691,910432.8485585777,1.0
-1.094802236899849e6,65.74182600420117,3.525,0.4350374484133447,910432.8485585777,1.0
-1.0932576127979995e6,65.74182600420117,3.7,0.4417578081893142,910432.8485585777,1.0
-1.0905761940140845e6,65.74182600420117,3.875,0.4459512952959563,910432.8485585777,1.0
-1.088911231096968e6,65.74182600420117,4.05,0.4448586572809874,910432.8485585777,1.0
-1.0878333050313748e6,65.74182600420117,4.225,0.44545910716776493,910432.8485585777,1.0
-1.0865465385898277e6,65.74182600420117,4.4,0.4491362965976277,910432.8485585777,1.0
-1.0838336373854761e6,65.74182600420117,4.575,0.4531592605409299,910432.8485585777,1.0
-1.0838124531355875e6,65.74182600420117,4.75,0.46111542287720547,910432.8485585777,1.0
-1.0804770804773828e6,65.74182600420117,4.925,0.45789971290363274,910432.8485585777,1.0
-1.0786556307847975e6,65.74182600420117,5.1,0.4633300854319436,910432.8485585777,1.0
-1.0768294276430989e6,65.74182600420117,5.275,0.4686396898565681,910432.8485585777,1.0
-1.0767801485268977e6,65.74182600420117,5.449999999999999,0.4685796807575887,910432.8485585777,1.0
-1.0738940069951247e6,65.74182600420117,5.625,0.47480049063483604,910432.8485585777,1.0
-1.074242005408089e6,65.74182600420117,5.8,0.47809290873425303,910432.8485585777,1.0
-1.0722908799560326e6,65.74182600420117,5.975,0.4802717633240241,910432.8485585777,1.0
-1.0701704806866054e6,65.74182600420117,6.15,0.48400566951133867,910432.8485585777,1.0
-1.0686803652780883e6,65.74182600420117,6.324999999999999,0.48949481441733705,910432.8485585777,1.0
-1.0676712198555148e6,65.74182600420117,6.5,0.4881175933877928,910432.8485585777,1.0
-1.0648745293128332e6,65.74182600420117,6.675,0.49204829995561694,910432.8485585777,1.0
-1.0640675200316056e6,65.74182600420117,6.85,0.4938627036971896,910432.8485585777,1.0
-1.0620939377331394e6,65.74182600420117,7.0249999999999995,0.4953527709840423,910432.8485585777,1.0
-1.0619734193549866e6,65.74182600420117,7.199999999999999,0.49646365350590466,910432.8485585777,1.0
-1.058793770798817e6,65.74182600420117,7.375,0.49871283281988005,910432.8485585777,1.0
-1.0555884461830757e6,65.74182600420117,7.55,0.4968317250980193,910432.8485585777,1.0
-1.0555737804405729e6,65.74182600420117,7.725,0.5033644130216336,910432.8485585777,1.0
-1.0536880729446406e6,65.74182600420117,7.8999999999999995,0.5026142153996556,910432.8485585777,1.0
-1.0521123124085672e6,65.74182600420117,8.075,0.5065518752095528,910432.8485585777,1.0
-1.0501490607303134e6,65.74182600420117,8.25,0.5039917937227302,910432.8485585777,1.0
-1.0482525569670955e6,65.74182600420117,8.425,0.5096643716114951,910432.8485585777,1.0
-1.0474304153714692e6,65.74182600420117,8.6,0.512198873755052,910432.8485585777,1.0
-1.0452633371270834e6,65.74182600420117,8.774999999999999,0.5107097495172696,910432.8485585777,1.0
-1.0440452537012366e6,65.74182600420117,8.95,0.513245294676794,910432.8485585777,1.0
-1.043464716235158e6,65.74182600420117,9.125,0.5159045796505739,910432.8485585777,1.0
-1.0418329143442229e6,65.74182600420117,9.3,0.5180926838732285,910432.8485585777,1.0
-1.0402508345732065e6,65.74182600420117,9.475,0.5199370091285853,910432.8485585777,1.0
-1.0395103389057885e6,65.74182600420117,9.649999999999999,0.5255779715083463,910432.8485585777,1.0
-1.0389359046305611e6,65.74182600420117,9.825,0.5286274221646993,910432.8485585777,1.0
-1.102320746754164e6,68.00878552158741,3.0,0.4271884796005361,910432.8485585777,1.0
-1.1004009597110648e6,68.00878552158741,3.175,0.4294680897925539,910432.8485585777,1.0
-1.098783988900178e6,68.00878552158741,3.35,0.4304381919514107,910432.8485585777,1.0
-1.0957182368998383e6,68.00878552158741,3.525,0.43384851222255605,910432.8485585777,1.0
-1.0936370524251563e6,68.00878552158741,3.7,0.4370751871072908,910432.8485585777,1.0
-1.0911714437725584e6,68.00878552158741,3.875,0.44272596541822773,910432.8485585777,1.0
-1.0898925853998924e6,68.00878552158741,4.05,0.4429468670952833,910432.8485585777,1.0
-1.0886488654042035e6,68.00878552158741,4.225,0.4425472982233966,910432.8485585777,1.0
-1.087532504948691e6,68.00878552158741,4.4,0.4465620061918598,910432.8485585777,1.0
-1.0842514631554035e6,68.00878552158741,4.575,0.4488355351965463,910432.8485585777,1.0
-1.0836374531355808e6,68.00878552158741,4.75,0.456663076743758,910432.8485585777,1.0
-1.080195727983606e6,68.00878552158741,4.925,0.45361258270806615,910432.8485585777,1.0
-1.079219630784803e6,68.00878552158741,5.1,0.4626778757025592,910432.8485585777,1.0
-1.0777884276430989e6,68.00878552158741,5.275,0.4656644491574462,910432.8485585777,1.0
-1.0764005684746807e6,68.00878552158741,5.449999999999999,0.4645506128766327,910432.8485585777,1.0
-1.073192163995814e6,68.00878552158741,5.625,0.4695805156902,910432.8485585777,1.0
-1.0749276275035548e6,68.00878552158741,5.8,0.4741079648671919,910432.8485585777,1.0
-1.0729598799560447e6,68.00878552158741,5.975,0.47788097287094033,910432.8485585777,1.0
-1.0711229658849882e6,68.00878552158741,6.15,0.4809480436019069,910432.8485585777,1.0
-1.0685524968118442e6,68.00878552158741,6.324999999999999,0.48399969598316195,910432.8485585777,1.0
-1.068301219855506e6,68.00878552158741,6.5,0.47975469431737483,910432.8485585777,1.0
-1.0652015293128276e6,68.00878552158741,6.675,0.48880141759135776,910432.8485585777,1.0
-1.0633035200316205e6,68.00878552158741,6.85,0.4893940178354483,910432.8485585777,1.0
-1.062271937733135e6,68.00878552158741,7.0249999999999995,0.4926371951739182,910432.8485585777,1.0
-1.0625894193549827e6,68.00878552158741,7.199999999999999,0.49299937668955707,910432.8485585777,1.0
-1.0589557429286924e6,68.00878552158741,7.375,0.4942984312157443,910432.8485585777,1.0
-1.0572944461830887e6,68.00878552158741,7.55,0.4919613945304487,910432.8485585777,1.0
-1.056950952223636e6,68.00878552158741,7.725,0.4997222044544847,910432.8485585777,1.0
-1.0540030222503303e6,68.00878552158741,7.8999999999999995,0.5010083843742466,910432.8485585777,1.0
-1.0519239247910539e6,68.00878552158741,8.075,0.5016419365960477,910432.8485585777,1.0
-1.0508770607303134e6,68.00878552158741,8.25,0.5035003962718853,910432.8485585777,1.0
-1.0472706249381285e6,68.00878552158741,8.425,0.5033224263829951,910432.8485585777,1.0
-1.047233322134503e6,68.00878552158741,8.6,0.5081783951993859,910432.8485585777,1.0
-1.0473862562007069e6,68.00878552158741,8.774999999999999,0.51052193699022,910432.8485585777,1.0
-1.0447032537012236e6,68.00878552158741,8.95,0.5116849354356213,910432.8485585777,1.0
-1.0446561342671551e6,68.00878552158741,9.125,0.5119802432480728,910432.8485585777,1.0
-1.0419976751116998e6,68.00878552158741,9.3,0.5143073180970748,910432.8485585777,1.0
-1.0401674967785612e6,68.00878552158741,9.475,0.5161885025488937,910432.8485585777,1.0
-1.0393650433428806e6,68.00878552158741,9.649999999999999,0.5152834354626848,910432.8485585777,1.0
-1.0383317859677318e6,68.00878552158741,9.825,0.5235915649445846,910432.8485585777,1.0
-1.103014438166778e6,70.27574503897367,3.0,0.42326387178452646,910432.8485585777,1.0
-1.1011146262247036e6,70.27574503897367,3.175,0.4264655723906048,910432.8485585777,1.0
-1.099559263869205e6,70.27574503897367,3.35,0.4279395658941012,910432.8485585777,1.0
-1.0963308731692669e6,70.27574503897367,3.525,0.4307437510003205,910432.8485585777,1.0
-1.0943534038568644e6,70.27574503897367,3.7,0.4342922347390186,910432.8485585777,1.0
-1.09145803170761e6,70.27574503897367,3.875,0.43927510754232774,910432.8485585777,1.0
-1.0902106659489872e6,70.27574503897367,4.05,0.43920653945080385,910432.8485585777,1.0
-1.089002865404212e6,70.27574503897367,4.225,0.43987599946582234,910432.8485585777,1.0
-1.0880835049486752e6,70.27574503897367,4.4,0.4430689840869458,910432.8485585777,1.0
-1.0845524631553907e6,70.27574503897367,4.575,0.44570612328398235,910432.8485585777,1.0
-1.0844174531355775e6,70.27574503897367,4.75,0.45302065595169755,910432.8485585777,1.0
-1.0812832463180323e6,70.27574503897367,4.925,0.4521038989621699,910432.8485585777,1.0
-1.079511244926655e6,70.27574503897367,5.1,0.45573479042671766,910432.8485585777,1.0
-1.078445438522734e6,70.27574503897367,5.275,0.45863405599629753,910432.8485585777,1.0
-1.0773643771273694e6,70.27574503897367,5.449999999999999,0.4610858331707704,910432.8485585777,1.0
-1.0742210183031298e6,70.27574503897367,5.625,0.4676264890419199,910432.8485585777,1.0
-1.0757140453955205e6,70.27574503897367,5.8,0.47072583232310367,910432.8485585777,1.0
-1.0730954205859702e6,70.27574503897367,5.975,0.4710171563096716,910432.8485585777,1.0
-1.0710287474193198e6,70.27574503897367,6.15,0.4777806448664223,910432.8485585777,1.0
-1.0690379262189704e6,70.27574503897367,6.324999999999999,0.4805512435728864,910432.8485585777,1.0
-1.0684818658346317e6,70.27574503897367,6.5,0.475139012030693,910432.8485585777,1.0
-1.0661679587199583e6,70.27574503897367,6.675,0.4871429198493532,910432.8485585777,1.0
-1.0652294540164121e6,70.27574503897367,6.85,0.4870425912287344,910432.8485585777,1.0
-1.0627399815197166e6,70.27574503897367,7.0249999999999995,0.4872786587495969,910432.8485585777,1.0
-1.0633860017075618e6,70.27574503897367,7.199999999999999,0.4914247622036193,910432.8485585777,1.0
-1.0599471723358007e6,70.27574503897367,7.375,0.4904282146957602,910432.8485585777,1.0
-1.057152201573542e6,70.27574503897367,7.55,0.4885009164321281,910432.8485585777,1.0
-1.0569821080182155e6,70.27574503897367,7.725,0.4974566367123136,910432.8485585777,1.0
-1.054633360090406e6,70.27574503897367,7.8999999999999995,0.4982757578094344,910432.8485585777,1.0
-1.0534123800074433e6,70.27574503897367,8.075,0.49847684196669634,910432.8485585777,1.0
-1.0517960607303155e6,70.27574503897367,8.25,0.5009160562522,910432.8485585777,1.0
-1.0478771605689158e6,70.27574503897367,8.425,0.4999273061434149,910432.8485585777,1.0
-1.0489516680165909e6,70.27574503897367,8.6,0.5052347699824183,910432.8485585777,1.0
-1.0473622998523947e6,70.27574503897367,8.774999999999999,0.5042805747875991,910432.8485585777,1.0
-1.045572893650718e6,70.27574503897367,8.95,0.5076134691716548,910432.8485585777,1.0
-1.0466287334710176e6,70.27574503897367,9.125,0.5109188943389148,910432.8485585777,1.0
-1.0432699392396823e6,70.27574503897367,9.3,0.5080218603580979,910432.8485585777,1.0
-1.0416425916908727e6,70.27574503897367,9.475,0.5135765090338386,910432.8485585777,1.0
-1.0398203175588779e6,70.27574503897367,9.649999999999999,0.515431579619856,910432.8485585777,1.0
-1.0393140977837024e6,70.27574503897367,9.825,0.5198750924164102,910432.8485585777,1.0
-1.103760438166788e6,72.54270455635991,3.0,0.42114948981753797,910432.8485585777,1.0
-1.1016606262246964e6,72.54270455635991,3.175,0.42321722988310745,910432.8485585777,1.0
-1.1001102638692183e6,72.54270455635991,3.35,0.42443183273292545,910432.8485585777,1.0
-1.0972375596664175e6,72.54270455635991,3.525,0.42684788859392636,910432.8485585777,1.0
-1.0951621856770338e6,72.54270455635991,3.7,0.4324955639605394,910432.8485585777,1.0
-1.0918670317076198e6,72.54270455635991,3.875,0.43544237494557764,910432.8485585777,1.0
-1.0900383895177161e6,72.54270455635991,4.05,0.4363278746606499,910432.8485585777,1.0
-1.0898733050313785e6,72.54270455635991,4.225,0.4366498439636846,910432.8485585777,1.0
-1.0884181527832698e6,72.54270455635991,4.4,0.4389690226265407,910432.8485585777,1.0
-1.0845088069336112e6,72.54270455635991,4.575,0.4422187139072584,910432.8485585777,1.0
-1.0844697969137963e6,72.54270455635991,4.75,0.44827403629013457,910432.8485585777,1.0
-1.0819461627574756e6,72.54270455635991,4.925,0.44976901703687705,910432.8485585777,1.0
-1.079855630784804e6,72.54270455635991,5.1,0.45307647514154076,910432.8485585777,1.0
-1.079119445149432e6,72.54270455635991,5.275,0.4556260917917112,910432.8485585777,1.0
-1.0773217392874295e6,72.54270455635991,5.449999999999999,0.4579554535489413,910432.8485585777,1.0
-1.074929177589132e6,72.54270455635991,5.625,0.46456653270791903,910432.8485585777,1.0
-1.0760877204829163e6,72.54270455635991,5.8,0.4687579280252503,910432.8485585777,1.0
-1.0738473093631817e6,72.54270455635991,5.975,0.47141702708848415,910432.8485585777,1.0
-1.0718117474193184e6,72.54270455635991,6.15,0.4752051919124089,910432.8485585777,1.0
-1.0697008264161851e6,72.54270455635991,6.324999999999999,0.4776603470208572,910432.8485585777,1.0
-1.0692698658346385e6,72.54270455635991,6.5,0.47476310287300977,910432.8485585777,1.0
-1.067222958719967e6,72.54270455635991,6.675,0.48461598522852795,910432.8485585777,1.0
-1.0646104540164138e6,72.54270455635991,6.85,0.4811056412637341,910432.8485585777,1.0
-1.0629614791342947e6,72.54270455635991,7.0249999999999995,0.48337118849162214,910432.8485585777,1.0
-1.0633131619071467e6,72.54270455635991,7.199999999999999,0.48643182463133094,910432.8485585777,1.0
-1.0599068995422197e6,72.54270455635991,7.375,0.48726028277391303,910432.8485585777,1.0
-1.0577237282541792e6,72.54270455635991,7.55,0.4856356441324628,910432.8485585777,1.0
-1.0568752098477003e6,72.54270455635991,7.725,0.4945606669226599,910432.8485585777,1.0
-1.0542564516574496e6,72.54270455635991,7.8999999999999995,0.49224806067599186,910432.8485585777,1.0
-1.0542969539259034e6,72.54270455635991,8.075,0.4954547911917798,910432.8485585777,1.0
-1.052432060730315e6,72.54270455635991,8.25,0.4980586118767728,910432.8485585777,1.0
-1.0491321605689102e6,72.54270455635991,8.425,0.49606731631227163,910432.8485585777,1.0
-1.0498728438709027e6,72.54270455635991,8.6,0.5026817305359622,910432.8485585777,1.0
-1.0484694322718901e6,72.54270455635991,8.774999999999999,0.5005697724527313,910432.8485585777,1.0
-1.0460913020870743e6,72.54270455635991,8.95,0.5047297071249012,910432.8485585777,1.0
-1.0462015779381879e6,72.54270455635991,9.125,0.5053428961461984,910432.8485585777,1.0
-1.0439580035930511e6,72.54270455635991,9.3,0.5093746552509236,910432.8485585777,1.0
-1.0421444992721181e6,72.54270455635991,9.475,0.5106474612862013,910432.8485585777,1.0
-1.0414427751896676e6,72.54270455635991,9.649999999999999,0.5129366363025241,910432.8485585777,1.0
-1.0411809412092626e6,72.54270455635991,9.825,0.5155724436644702,910432.8485585777,1.0
-1.1041344381667834e6,74.80966407374615,3.0,0.41819086585310933,910432.8485585777,1.0
-1.1024394595117962e6,74.80966407374615,3.175,0.41942814265968936,910432.8485585777,1.0
-1.1009092638692132e6,74.80966407374615,3.35,0.4216581288563132,910432.8485585777,1.0
-1.097901559666419e6,74.80966407374615,3.525,0.4247634988711841,910432.8485585777,1.0
-1.0950714038568733e6,74.80966407374615,3.7,0.42823709017972467,910432.8485585777,1.0
-1.0922639470186958e6,74.80966407374615,3.875,0.43050347333422534,910432.8485585777,1.0
-1.090586292719622e6,74.80966407374615,4.05,0.4338816964194077,910432.8485585777,1.0
-1.0902783050313804e6,74.80966407374615,4.225,0.433528604492434,910432.8485585777,1.0
-1.0890885614482292e6,74.80966407374615,4.4,0.43619424952339103,910432.8485585777,1.0
-1.0843668069336165e6,74.80966407374615,4.575,0.43692808311618875,910432.8485585777,1.0
-1.0849740409190312e6,74.80966407374615,4.75,0.44569479399596323,910432.8485585777,1.0
-1.0829033219909107e6,74.80966407374615,4.925,0.44583142989071967,910432.8485585777,1.0
-1.0803296307847954e6,74.80966407374615,5.1,0.44992556199840633,910432.8485585777,1.0
-1.0792964451494091e6,74.80966407374615,5.275,0.45060988791947026,910432.8485585777,1.0
-1.0774383517585911e6,74.80966407374615,5.449999999999999,0.45577802787419364,910432.8485585777,1.0
-1.0756203093112241e6,74.80966407374615,5.625,0.4629000075090965,910432.8485585777,1.0
-1.0760101478945354e6,74.80966407374615,5.8,0.4648543410694239,910432.8485585777,1.0
-1.0740663093631717e6,74.80966407374615,5.975,0.46831294517541294,910432.8485585777,1.0
-1.0722787288875764e6,74.80966407374615,6.15,0.4705326586292186,910432.8485585777,1.0
-1.0690589174454946e6,74.80966407374615,6.324999999999999,0.4742613565654535,910432.8485585777,1.0
-1.0692798658346354e6,74.80966407374615,6.5,0.47014343604003644,910432.8485585777,1.0
-1.0676469587199658e6,74.80966407374615,6.675,0.48013879944806526,910432.8485585777,1.0
-1.0655834725481411e6,74.80966407374615,6.85,0.47909578449554735,910432.8485585777,1.0
-1.0638505302272816e6,74.80966407374615,7.0249999999999995,0.47957709168924156,910432.8485585777,1.0
-1.063202289212633e6,74.80966407374615,7.199999999999999,0.4829492774008773,910432.8485585777,1.0
-1.0607424298985638e6,74.80966407374615,7.375,0.4844450814278011,910432.8485585777,1.0
-1.0582572015735419e6,74.80966407374615,7.55,0.4820531664487547,910432.8485585777,1.0
-1.0579653380295574e6,74.80966407374615,7.725,0.49257912023491945,910432.8485585777,1.0
-1.0547524942033573e6,74.80966407374615,7.8999999999999995,0.4929400892719646,910432.8485585777,1.0
-1.0543495215744164e6,74.80966407374615,8.075,0.4941824347789443,910432.8485585777,1.0
-1.0526914797088096e6,74.80966407374615,8.25,0.4930132823843134,910432.8485585777,1.0
-1.0494829717475118e6,74.80966407374615,8.425,0.49535085392605505,910432.8485585777,1.0
-1.0496886369960068e6,74.80966407374615,8.6,0.5023154786529319,910432.8485585777,1.0
-1.0487717999813645e6,74.80966407374615,8.774999999999999,0.49945566259798974,910432.8485585777,1.0
-1.0473228070445493e6,74.80966407374615,8.95,0.5021328790547149,910432.8485585777,1.0
-1.0476706014549219e6,74.80966407374615,9.125,0.5067010860164108,910432.8485585777,1.0
-1.0441081741388512e6,74.80966407374615,9.3,0.5057246192031729,910432.8485585777,1.0
-1.0425212664621981e6,74.80966407374615,9.475,0.5059335414371157,910432.8485585777,1.0
-1.0409304414470016e6,74.80966407374615,9.649999999999999,0.5045846158794308,910432.8485585777,1.0
-1.041354897931036e6,74.80966407374615,9.825,0.51205933639341,910432.8485585777,1.0
-1.1047084381667734e6,77.0766235911324,3.0,0.41452184399278813,910432.8485585777,1.0
-1.1026894595117834e6,77.0766235911324,3.175,0.4159496974551388,910432.8485585777,1.0
-1.1008697192414806e6,77.0766235911324,3.35,0.4180963896117601,910432.8485585777,1.0
-1.0980380761820092e6,77.0766235911324,3.525,0.4207433691627351,910432.8485585777,1.0
-1.0961084038568668e6,77.0766235911324,3.7,0.4234325511844202,910432.8485585777,1.0
-1.0927939470187011e6,77.0766235911324,3.875,0.42803039400515086,910432.8485585777,1.0
-1.0909176435912668e6,77.0766235911324,4.05,0.43166209092542596,910432.8485585777,1.0
-1.090694305031377e6,77.0766235911324,4.225,0.43087028643864184,910432.8485585777,1.0
-1.089313561448232e6,77.0766235911324,4.4,0.4337169655778264,910432.8485585777,1.0
-1.0857558069336077e6,77.0766235911324,4.575,0.4345375427590775,910432.8485585777,1.0
-1.0852879632367278e6,77.0766235911324,4.75,0.44277120090016864,910432.8485585777,1.0
-1.0834983219909035e6,77.0766235911324,4.925,0.4425778700190474,910432.8485585777,1.0
-1.0808406307848056e6,77.0766235911324,5.1,0.44829407505489044,910432.8485585777,1.0
-1.0795861040054818e6,77.0766235911324,5.275,0.44881081221981567,910432.8485585777,1.0
-1.077434082849638e6,77.0766235911324,5.449999999999999,0.45009186086407665,910432.8485585777,1.0
-1.0764217029857882e6,77.0766235911324,5.625,0.4588147004867915,910432.8485585777,1.0
-1.0772542433792017e6,77.0766235911324,5.8,0.4639240691078741,910432.8485585777,1.0
-1.0749640906545995e6,77.0766235911324,5.975,0.4620691424427943,910432.8485585777,1.0
-1.0723407288875757e6,77.0766235911324,6.15,0.4665790860728805,910432.8485585777,1.0
-1.0695619174454939e6,77.0766235911324,6.324999999999999,0.46883751214154223,910432.8485585777,1.0
-1.0693438658346385e6,77.0766235911324,6.5,0.46820112494437827,910432.8485585777,1.0
-1.068120095052459e6,77.0766235911324,6.675,0.47782875904675837,910432.8485585777,1.0
-1.0668139679704662e6,77.0766235911324,6.85,0.4787909244605554,910432.8485585777,1.0
-1.0642795302272907e6,77.0766235911324,7.0249999999999995,0.4779077696062806,910432.8485585777,1.0
-1.064303289212618e6,77.0766235911324,7.199999999999999,0.4820621353080696,910432.8485585777,1.0
-1.0602032546924145e6,77.0766235911324,7.375,0.4789404537234573,910432.8485585777,1.0
-1.0594393507070262e6,77.0766235911324,7.55,0.48051571846467694,910432.8485585777,1.0
-1.05885433802955e6,77.0766235911324,7.725,0.48902488852543025,910432.8485585777,1.0
-1.0560034752972838e6,77.0766235911324,7.8999999999999995,0.4921826744712661,910432.8485585777,1.0
-1.0550204806065594e6,77.0766235911324,8.075,0.4916957368087478,910432.8485585777,1.0
-1.0540575205617498e6,77.0766235911324,8.25,0.489987877378907,910432.8485585777,1.0
-1.0493472285399463e6,77.0766235911324,8.425,0.48996137070446705,910432.8485585777,1.0
-1.0497086680165897e6,77.0766235911324,8.6,0.49630355619430244,910432.8485585777,1.0
-1.0479800778765774e6,77.0766235911324,8.774999999999999,0.4956169063549488,910432.8485585777,1.0
-1.047777482913032e6,77.0766235911324,8.95,0.4969183485884276,910432.8485585777,1.0
-1.0470902228970113e6,77.0766235911324,9.125,0.5015998624257625,910432.8485585777,1.0
-1.0433328633017368e6,77.0766235911324,9.3,0.5017932595617406,910432.8485585777,1.0
-1.0433113569794198e6,77.0766235911324,9.475,0.5075130224067199,910432.8485585777,1.0
-1.0418606500645907e6,77.0766235911324,9.649999999999999,0.5056521058241891,910432.8485585777,1.0
-1.040450335105204e6,77.0766235911324,9.825,0.5065575084352123,910432.8485585777,1.0
-1.1053072265316271e6,79.34358310851864,3.0,0.4103288902174047,910432.8485585777,1.0
-1.1034364595117674e6,79.34358310851864,3.175,0.41211266961646764,910432.8485585777,1.0
-1.1015040722416989e6,79.34358310851864,3.35,0.4146582886272485,910432.8485585777,1.0
-1.0981650761819887e6,79.34358310851864,3.525,0.4171183728758588,910432.8485585777,1.0
-1.0958254038568796e6,79.34358310851864,3.7,0.4201442000993167,910432.8485585777,1.0
-1.0933649470186883e6,79.34358310851864,3.875,0.4241621044740591,910432.8485585777,1.0
-1.0911976435912445e6,79.34358310851864,4.05,0.4270064268678012,910432.8485585777,1.0
-1.0912093238269417e6,79.34358310851864,4.225,0.4263525378852054,910432.8485585777,1.0
-1.0901745614482174e6,79.34358310851864,4.4,0.43158829337166393,910432.8485585777,1.0
-1.0863244908088997e6,79.34358310851864,4.575,0.4322329020345457,910432.8485585777,1.0
-1.085603751314005e6,79.34358310851864,4.75,0.4412139928879029,910432.8485585777,1.0
-1.0834277138283136e6,79.34358310851864,4.925,0.43910152803616687,910432.8485585777,1.0
-1.081820630784796e6,79.34358310851864,5.1,0.44582150925214875,910432.8485585777,1.0
-1.0795360576205866e6,79.34358310851864,5.275,0.44463993343350605,910432.8485585777,1.0
-1.0782570828496434e6,79.34358310851864,5.449999999999999,0.44744692234520167,910432.8485585777,1.0
-1.0770787493706795e6,79.34358310851864,5.625,0.4558874924733437,910432.8485585777,1.0
-1.0771222433792048e6,79.34358310851864,5.8,0.45864505238997916,910432.8485585777,1.0
-1.0748290906545857e6,79.34358310851864,5.975,0.45950677885293706,910432.8485585777,1.0
-1.0729487288875803e6,79.34358310851864,6.15,0.4636506762712099,910432.8485585777,1.0
-1.0701987691910246e6,79.34358310851864,6.324999999999999,0.46561554426127566,910432.8485585777,1.0
-1.0700733087092845e6,79.34358310851864,6.5,0.4655530204549559,910432.8485585777,1.0
-1.0681070950524611e6,79.34358310851864,6.675,0.47486585317793,910432.8485585777,1.0
-1.0673712712749098e6,79.34358310851864,6.85,0.4756452909569162,910432.8485585777,1.0
-1.064085530227289e6,79.34358310851864,7.0249999999999995,0.4760043756528243,910432.8485585777,1.0
-1.0646417180618993e6,79.34358310851864,7.199999999999999,0.47841555844851424,910432.8485585777,1.0
-1.0608493065305683e6,79.34358310851864,7.375,0.4766561268188793,910432.8485585777,1.0
-1.0590014929683728e6,79.34358310851864,7.55,0.4763632059399717,910432.8485585777,1.0
-1.0598491011460957e6,79.34358310851864,7.725,0.48839254767407175,910432.8485585777,1.0
-1.0566950908779996e6,79.34358310851864,7.8999999999999995,0.48519720099384767,910432.8485585777,1.0
-1.05670435433843e6,79.34358310851864,8.075,0.4874580610438524,910432.8485585777,1.0
-1.0536335567868666e6,79.34358310851864,8.25,0.4873892682856292,910432.8485585777,1.0
-1.0502462285399553e6,79.34358310851864,8.425,0.4896437171402472,910432.8485585777,1.0
-1.0491226680165858e6,79.34358310851864,8.6,0.4912957068046099,910432.8485585777,1.0
-1.0484224822935119e6,79.34358310851864,8.774999999999999,0.4945254124035279,910432.8485585777,1.0
-1.0478809669074747e6,79.34358310851864,8.95,0.4964974964298126,910432.8485585777,1.0
-1.0486034231356585e6,79.34358310851864,9.125,0.49980522668233457,910432.8485585777,1.0
-1.0452514599847498e6,79.34358310851864,9.3,0.4986330636457221,910432.8485585777,1.0
-1.0450513569794373e6,79.34358310851864,9.475,0.5062346652859689,910432.8485585777,1.0
-1.0426013821453507e6,79.34358310851864,9.649999999999999,0.5007112214208478,910432.8485585777,1.0
-1.0414486825810111e6,79.34358310851864,9.825,0.5050720762120063,910432.8485585777,1.0
-1.105869438166787e6,81.6105426259049,3.0,0.40720800136286933,910432.8485585777,1.0
-1.1037814595117772e6,81.6105426259049,3.175,0.40682682493439737,910432.8485585777,1.0
-1.1019900722417028e6,81.6105426259049,3.35,0.41041977030196786,910432.8485585777,1.0
-1.0987842575769222e6,81.6105426259049,3.525,0.4150356964465594,910432.8485585777,1.0
-1.096085426739839e6,81.6105426259049,3.7,0.4171287295123489,910432.8485585777,1.0
-1.0947965387323024e6,81.6105426259049,3.875,0.42099893388427234,910432.8485585777,1.0
-1.0921122927196303e6,81.6105426259049,4.05,0.4252014858950848,910432.8485585777,1.0
-1.0911562687703604e6,81.6105426259049,4.225,0.4230967805295652,910432.8485585777,1.0
-1.0908968837466757e6,81.6105426259049,4.4,0.4276273111124253,910432.8485585777,1.0
-1.0871554908089032e6,81.6105426259049,4.575,0.4296594386425234,910432.8485585777,1.0
-1.0860997513140005e6,81.6105426259049,4.75,0.4363439648451929,910432.8485585777,1.0
-1.0839767106075585e6,81.6105426259049,4.925,0.43715785398261237,910432.8485585777,1.0
-1.081623630784814e6,81.6105426259049,5.1,0.44109908136082954,910432.8485585777,1.0
-1.080733445149428e6,81.6105426259049,5.275,0.4409603215661331,910432.8485585777,1.0
-1.07796284182374e6,81.6105426259049,5.449999999999999,0.4438203169132925,910432.8485585777,1.0
-1.0773341368995172e6,81.6105426259049,5.625,0.45141523219498597,910432.8485585777,1.0
-1.077803720482919e6,81.6105426259049,5.8,0.4584681122781193,910432.8485585777,1.0
-1.0759540906546055e6,81.6105426259049,5.975,0.4573808540200627,910432.8485585777,1.0
-1.0736317288875831e6,81.6105426259049,6.15,0.462003095388537,910432.8485585777,1.0
-1.0714037691910304e6,81.6105426259049,6.324999999999999,0.4609531878643391,910432.8485585777,1.0
-1.0704793087092757e6,81.6105426259049,6.5,0.4619741577875767,910432.8485585777,1.0
-1.0683975696827408e6,81.6105426259049,6.675,0.47007638878345004,910432.8485585777,1.0
-1.0666234028086863e6,81.6105426259049,6.85,0.47304985213465406,910432.8485585777,1.0
-1.0640905423464223e6,81.6105426259049,7.0249999999999995,0.47077029957684224,910432.8485585777,1.0
-1.0657918609051907e6,81.6105426259049,7.199999999999999,0.474214282821571,910432.8485585777,1.0
-1.0609557117501823e6,81.6105426259049,7.375,0.47174101941318175,910432.8485585777,1.0
-1.0605458788420183e6,81.6105426259049,7.55,0.47390864657089,910432.8485585777,1.0
-1.0588148989926702e6,81.6105426259049,7.725,0.4838383830705007,910432.8485585777,1.0
-1.057301967522719e6,81.6105426259049,7.8999999999999995,0.48184982773057894,910432.8485585777,1.0
-1.0571029948937695e6,81.6105426259049,8.075,0.48604108609539975,910432.8485585777,1.0
-1.0554615104019695e6,81.6105426259049,8.25,0.48278301725474926,910432.8485585777,1.0
-1.050961286358262e6,81.6105426259049,8.425,0.48723340586261943,910432.8485585777,1.0
-1.050495047662304e6,81.6105426259049,8.6,0.48899011079200827,910432.8485585777,1.0
-1.0502756225084537e6,81.6105426259049,8.774999999999999,0.4911332651211947,910432.8485585777,1.0
-1.049098016435267e6,81.6105426259049,8.95,0.4921187410000892,910432.8485585777,1.0
-1.0485404564391511e6,81.6105426259049,9.125,0.49594522571087596,910432.8485585777,1.0
-1.0462741111795572e6,81.6105426259049,9.3,0.497696209820142,910432.8485585777,1.0
-1.0444476316877126e6,81.6105426259049,9.475,0.5022268978652674,910432.8485585777,1.0
-1.044082593006735e6,81.6105426259049,9.649999999999999,0.5013604488429426,910432.8485585777,1.0
-1.042361586457734e6,81.6105426259049,9.825,0.5017948402712188,910432.8485585777,1.0
-1.106371271453865e6,83.87750214329114,3.0,0.4043488553216392,910432.8485585777,1.0
-1.1043524595117734e6,83.87750214329114,3.175,0.4037193793350655,910432.8485585777,1.0
-1.1029779055288085e6,83.87750214329114,3.35,0.40779157527059007,910432.8485585777,1.0
-1.099525257576913e6,83.87750214329114,3.525,0.41247250143831193,910432.8485585777,1.0
-1.0966364267398228e6,83.87750214329114,3.7,0.4153718936392453,910432.8485585777,1.0
-1.0949569783594564e6,83.87750214329114,3.875,0.4184292587537549,910432.8485585777,1.0
-1.0920422927196254e6,83.87750214329114,4.05,0.42158308561696056,910432.8485585777,1.0
-1.0919642687703823e6,83.87750214329114,4.225,0.42160891528850347,910432.8485585777,1.0
-1.0907968837466852e6,83.87750214329114,4.4,0.42515755183585674,910432.8485585777,1.0
-1.0875953462556635e6,83.87750214329114,4.575,0.42529326389712335,910432.8485585777,1.0
-1.0869326398943171e6,83.87750214329114,4.75,0.43258923879221245,910432.8485585777,1.0
-1.0851371734110871e6,83.87750214329114,4.925,0.43534412293974356,910432.8485585777,1.0
-1.0832185193651284e6,83.87750214329114,5.1,0.43763712585216186,910432.8485585777,1.0
-1.0809893337297316e6,83.87750214329114,5.275,0.43821421109323944,910432.8485585777,1.0
-1.078801973357499e6,83.87750214329114,5.449999999999999,0.4413605535267907,910432.8485585777,1.0
-1.077774580333958e6,83.87750214329114,5.625,0.4489102248996376,910432.8485585777,1.0
-1.0783282593142171e6,83.87750214329114,5.8,0.454543597957875,910432.8485585777,1.0
-1.0760493093631766e6,83.87750214329114,5.975,0.45280749278807486,910432.8485585777,1.0
-1.0739996952432015e6,83.87750214329114,6.15,0.45900542047555254,910432.8485585777,1.0
-1.071877829636951e6,83.87750214329114,6.324999999999999,0.4614472551911772,910432.8485585777,1.0
-1.0706223087092892e6,83.87750214329114,6.5,0.46422807788788384,910432.8485585777,1.0
-1.0689925603089728e6,83.87750214329114,6.675,0.46843319114646,910432.8485585777,1.0
-1.0672380981109778e6,83.87750214329114,6.85,0.46522180299290306,910432.8485585777,1.0
-1.0665205532676203e6,83.87750214329114,7.0249999999999995,0.4691976891575634,910432.8485585777,1.0
-1.0657787135691685e6,83.87750214329114,7.199999999999999,0.4715595412709467,910432.8485585777,1.0
-1.0615515365440007e6,83.87750214329114,7.375,0.47014615153622463,910432.8485585777,1.0
-1.0604752213362085e6,83.87750214329114,7.55,0.47070652864970175,910432.8485585777,1.0
-1.0606029431461473e6,83.87750214329114,7.725,0.48159825696660574,910432.8485585777,1.0
-1.0582116175586288e6,83.87750214329114,7.8999999999999995,0.47879381480038086,910432.8485585777,1.0
-1.0589669948937695e6,83.87750214329114,8.075,0.4850157084082079,910432.8485585777,1.0
-1.0548785104019777e6,83.87750214329114,8.25,0.47886066654170484,910432.8485585777,1.0
-1.052171782396886e6,83.87750214329114,8.425,0.48379309505342705,910432.8485585777,1.0
-1.0507075469829612e6,83.87750214329114,8.6,0.4867589553680935,910432.8485585777,1.0
-1.0517307061680374e6,83.87750214329114,8.774999999999999,0.49129774211584754,910432.8485585777,1.0
-1.0494517789078818e6,83.87750214329114,8.95,0.4893790511424973,910432.8485585777,1.0
-1.0493933560711744e6,83.87750214329114,9.125,0.4921553218293933,910432.8485585777,1.0
-1.0469020745553758e6,83.87750214329114,9.3,0.4928280956322275,910432.8485585777,1.0
-1.0469709506117644e6,83.87750214329114,9.475,0.5003895213658908,910432.8485585777,1.0
-1.0445431769145621e6,83.87750214329114,9.649999999999999,0.49915488573807404,910432.8485585777,1.0
-1.0431385886861143e6,83.87750214329114,9.825,0.49576051448675584,910432.8485585777,1.0
-1.1067978355522132e6,86.1444616606774,3.0,0.40085198413710493,910432.8485585777,1.0
-1.1051674595117883e6,86.1444616606774,3.175,0.4029180645304693,910432.8485585777,1.0
-1.1041509055287926e6,86.1444616606774,3.35,0.4054184127665099,910432.8485585777,1.0
-1.1005852575769217e6,86.1444616606774,3.525,0.41206785318895395,910432.8485585777,1.0
-1.0981864267398338e6,86.1444616606774,3.7,0.41297345684505654,910432.8485585777,1.0
-1.0954919783594578e6,86.1444616606774,3.875,0.4158111193012796,910432.8485585777,1.0
-1.0947332927196305e6,86.1444616606774,4.05,0.42140971437214253,910432.8485585777,1.0
-1.0929982687703709e6,86.1444616606774,4.225,0.4214385936611921,910432.8485585777,1.0
-1.0922058837466848e6,86.1444616606774,4.4,0.42090484929934446,910432.8485585777,1.0
-1.088414346255647e6,86.1444616606774,4.575,0.42479584989436087,910432.8485585777,1.0
-1.0877076398943171e6,86.1444616606774,4.75,0.4303518359662325,910432.8485585777,1.0
-1.0859036696636975e6,86.1444616606774,4.925,0.4322155102156282,910432.8485585777,1.0
-1.0839675193651211e6,86.1444616606774,5.1,0.4356619859791431,910432.8485585777,1.0
-1.0823259925857808e6,86.1444616606774,5.275,0.4354020683864683,910432.8485585777,1.0
-1.0799419269726162e6,86.1444616606774,5.449999999999999,0.4404699926900395,910432.8485585777,1.0
-1.0783267707504656e6,86.1444616606774,5.625,0.44341377968649687,910432.8485585777,1.0
-1.07841587828749e6,86.1444616606774,5.8,0.4505771308780267,910432.8485585777,1.0
-1.0766542020742781e6,86.1444616606774,5.975,0.45102604410080094,910432.8485585777,1.0
-1.0747726952431973e6,86.1444616606774,6.15,0.45564331511521006,910432.8485585777,1.0
-1.0720248296369445e6,86.1444616606774,6.324999999999999,0.45732708825255675,910432.8485585777,1.0
-1.0707103728027872e6,86.1444616606774,6.5,0.45949038462884473,910432.8485585777,1.0
-1.0698290060315446e6,86.1444616606774,6.675,0.4652613225945781,910432.8485585777,1.0
-1.068356593533304e6,86.1444616606774,6.85,0.46371376754217797,910432.8485585777,1.0
-1.0665513709353718e6,86.1444616606774,7.0249999999999995,0.46497788265525253,910432.8485585777,1.0
-1.0662236001085516e6,86.1444616606774,7.199999999999999,0.46837653026287707,910432.8485585777,1.0
-1.062835306530572e6,86.1444616606774,7.375,0.4681370017947529,910432.8485585777,1.0
-1.0611492213362146e6,86.1444616606774,7.55,0.4693646573973814,910432.8485585777,1.0
-1.0613640941508256e6,86.1444616606774,7.725,0.4764415994988635,910432.8485585777,1.0
-1.0608644684251486e6,86.1444616606774,7.8999999999999995,0.47524745079349157,910432.8485585777,1.0
-1.0596541440272576e6,86.1444616606774,8.075,0.4805722870460452,910432.8485585777,1.0
-1.053758556786856e6,86.1444616606774,8.25,0.4812562660337425,910432.8485585777,1.0
-1.0528387823968735e6,86.1444616606774,8.425,0.4813754406104526,910432.8485585777,1.0
-1.05236230152346e6,86.1444616606774,8.6,0.48480926169562716,910432.8485585777,1.0
-1.0529826294355814e6,86.1444616606774,8.774999999999999,0.48604736537126303,910432.8485585777,1.0
-1.052435778907882e6,86.1444616606774,8.95,0.4930225272078188,910432.8485585777,1.0
-1.0505643935179072e6,86.1444616606774,9.125,0.49065179827399136,910432.8485585777,1.0
-1.049216312082756e6,86.1444616606774,9.3,0.4894782416973053,910432.8485585777,1.0
-1.0481159378487472e6,86.1444616606774,9.475,0.4978100262028024,910432.8485585777,1.0
-1.0457394631926613e6,86.1444616606774,9.649999999999999,0.49644609115667526,910432.8485585777,1.0
-1.0437621958291046e6,86.1444616606774,9.825,0.49836056752156893,910432.8485585777,1.0
-1.1074918355522037e6,88.41142117806363,3.0,0.3987498605727605,910432.8485585777,1.0
-1.1056224595117893e6,88.41142117806363,3.175,0.3997075889840179,910432.8485585777,1.0
-1.103959905528796e6,88.41142117806363,3.35,0.40177672106236434,910432.8485585777,1.0
-1.1012462575769166e6,88.41142117806363,3.525,0.40930721199292736,910432.8485585777,1.0
-1.0988539871126735e6,88.41142117806363,3.7,0.4108440296418956,910432.8485585777,1.0
-1.0966031441075979e6,88.41142117806363,3.875,0.41340458220609355,910432.8485585777,1.0
-1.0950541843018914e6,88.41142117806363,4.05,0.4188323771661908,910432.8485585777,1.0
-1.0932862687703664e6,88.41142117806363,4.225,0.41780908559493246,910432.8485585777,1.0
-1.0930768705212954e6,88.41142117806363,4.4,0.4202715247156678,910432.8485585777,1.0
-1.0894756668729105e6,88.41142117806363,4.575,0.42266151519464773,910432.8485585777,1.0
-1.0883539736285808e6,88.41142117806363,4.75,0.42850069112943817,910432.8485585777,1.0
-1.085281670737101e6,88.41142117806363,4.925,0.4281723249609871,910432.8485585777,1.0
-1.0844815193651041e6,88.41142117806363,5.1,0.43250798322624256,910432.8485585777,1.0
-1.082895616397792e6,88.41142117806363,5.275,0.43132182734133967,910432.8485585777,1.0
-1.0796604079100043e6,88.41142117806363,5.449999999999999,0.4369366341176748,910432.8485585777,1.0
-1.0797091928051056e6,88.41142117806363,5.625,0.44273890280261835,910432.8485585777,1.0
-1.0795332147152515e6,88.41142117806363,5.8,0.4458259552005657,910432.8485585777,1.0
-1.0779662585429356e6,88.41142117806363,5.975,0.4496115719492523,910432.8485585777,1.0
-1.0753287137749202e6,88.41142117806363,6.15,0.45315411762659835,910432.8485585777,1.0
-1.0728557355466422e6,88.41142117806363,6.324999999999999,0.4561346057017772,910432.8485585777,1.0
-1.0713933728027884e6,88.41142117806363,6.5,0.45613195431139897,910432.8485585777,1.0
-1.0709070564383578e6,88.41142117806363,6.675,0.45971143857492947,910432.8485585777,1.0
-1.069486373885935e6,88.41142117806363,6.85,0.4611533969079534,910432.8485585777,1.0
-1.0679143406426485e6,88.41142117806363,7.0249999999999995,0.4621409567182099,910432.8485585777,1.0
-1.0672718317898363e6,88.41142117806363,7.199999999999999,0.4645603549849398,910432.8485585777,1.0
-1.0641083242108019e6,88.41142117806363,7.375,0.46503933908443384,910432.8485585777,1.0
-1.0622062319743736e6,88.41142117806363,7.55,0.46594180747650016,910432.8485585777,1.0
-1.0619442257113305e6,88.41142117806363,7.725,0.4771272281857102,910432.8485585777,1.0
-1.0603072875837674e6,88.41142117806363,7.8999999999999995,0.47306024940990904,910432.8485585777,1.0
-1.0586908526324166e6,88.41142117806363,8.075,0.4783063761774301,910432.8485585777,1.0
-1.0554732239304895e6,88.41142117806363,8.25,0.47672587468930244,910432.8485585777,1.0
-1.0547622705931887e6,88.41142117806363,8.425,0.48023188488759444,910432.8485585777,1.0
-1.0533729088964732e6,88.41142117806363,8.6,0.4831034064095329,910432.8485585777,1.0
-1.0536187061680488e6,88.41142117806363,8.774999999999999,0.48501971319865567,910432.8485585777,1.0
-1.0518310164352653e6,88.41142117806363,8.95,0.4884131062682137,910432.8485585777,1.0
-1.0508674804237047e6,88.41142117806363,9.125,0.4893275131737148,910432.8485585777,1.0
-1.049194212150876e6,88.41142117806363,9.3,0.4874201988277618,910432.8485585777,1.0
-1.0489537719236747e6,88.41142117806363,9.475,0.4951234038465295,910432.8485585777,1.0
-1.0463053882639668e6,88.41142117806363,9.649999999999999,0.491653540450397,910432.8485585777,1.0
-1.0449087531425923e6,88.41142117806363,9.825,0.4941132245405685,910432.8485585777,1.0
diff --git a/results/example_map/delays_wt1reldelta1/dispatcher.jl b/results/example_map/delays_wt1reldelta1/dispatcher.jl
deleted file mode 100644
index e569b48fc6901beb694db54be6e0f4534d96d179..0000000000000000000000000000000000000000
--- a/results/example_map/delays_wt1reldelta1/dispatcher.jl
+++ /dev/null
@@ -1,7 +0,0 @@
-max_waiting_time=t0
-max_relative_detour=1.0
-
-dispatcher=(;
-        cost=:delays,
-        rejection_criterion=((:any_relative_detour,max_relative_detour),)
-        )
diff --git a/results/example_map/map/map.jl b/results/example_map/map/map.jl
deleted file mode 100644
index 023c353794707806816ebdf1b9ff156acc7a16ea..0000000000000000000000000000000000000000
--- a/results/example_map/map/map.jl
+++ /dev/null
@@ -1,9 +0,0 @@
-map_specs=(:star_grid_map,(64,16))
-#t0=readdlm(map_folder*"timescale.txt")[1]
-
-#map
-speed_dict=Dict(1=>3.6)
-mymap=RP.get_map(map_specs)
-RM=RP.get_route_matrix(map_folder)
-using DelimitedFiles
-t0=readdlm(map_folder*"timescale.txt")[1]
diff --git a/results/example_map/map/route_matrix b/results/example_map/map/route_matrix
deleted file mode 100644
index b590c68ad786897b728e9b4d91160db7eb8d98fa..0000000000000000000000000000000000000000
Binary files a/results/example_map/map/route_matrix and /dev/null differ
diff --git a/results/example_map/map/timescale.txt b/results/example_map/map/timescale.txt
deleted file mode 100644
index bcf95bcf36864c90155098a098f4a645351df836..0000000000000000000000000000000000000000
--- a/results/example_map/map/timescale.txt
+++ /dev/null
@@ -1 +0,0 @@
-45.339190347724944
diff --git a/route_matrix b/route_matrix
deleted file mode 100644
index 064edff510a9f69ade17af75d2560633d538cd60..0000000000000000000000000000000000000000
Binary files a/route_matrix and /dev/null differ
diff --git a/run_1d.sh b/run_1d.sh
deleted file mode 100644
index 472899dac10cc448665d97994e9b6a3869dac4cc..0000000000000000000000000000000000000000
--- a/run_1d.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-#$ -S /bin/bash
-#$ -cwd
-#$ -q titan.q
-#$ -j yes
-#$ -N myBunchOfSimulations
-#$ -t 1-2082
-
-/usr/dcf/julia-1.5.2/bin/julia scripts/myJuliaScript.jl $SGE_TASK_ID
diff --git a/settings.sh b/settings.sh
new file mode 100644
index 0000000000000000000000000000000000000000..48b0179b2413584da036d7ed026d30436767d5eb
--- /dev/null
+++ b/settings.sh
@@ -0,0 +1,6 @@
+N=20
+REQUEST_TYPE="earliest_pickup"
+NAME="newSystem_try1"
+SAVE_PATH="/scratch01.local/rhaag/${REQUEST_TYPE}/${NAME}/results/"
+DATA_PATH="${SAVE_PATH}data/"
+MODEL_PATH="${SAVE_PATH}model/"
diff --git a/sim.jl b/sim.jl
index f2ef1534051da158e8ad416009924cad88316d26..227989021e42d2fe9560aa1c47eb097ae0c8ed55 100644
--- a/sim.jl
+++ b/sim.jl
@@ -1,8 +1,8 @@
 using Pkg
 Pkg.activate(".")
 
-#Pkg.add(url="https://gitlab.gwdg.de/smuehle1/RidePooling/", rev="planned_pickup")
-#Pkg.instantiate()   #there may be an error here concerning PyCall. The dependencies assume Python to be installed on your system, with package 'matplotlib' installed.
+Pkg.add(url="https://gitlab.gwdg.de/smuehle1/RidePooling/", rev="planned_pickup")
+Pkg.instantiate()   #there may be an error here concerning PyCall. The dependencies assume Python to be installed on your system, with package 'matplotlib' installed.
                     #Either just run 'conda install -c conda-forge matplotlib' in your system shell, or follow instructions below (after running this cell and getting an error) to solve everything from within Julia.
 import RidePooling
 
@@ -18,34 +18,44 @@ include("./initialize.jl")
 index=1
 save_path = pwd()*"/example/ruben/"
 N=10
-
+request_type = :now
 # Get Parameters from commandline
 println(ARGS)
+
+
+try
+    global N = eval(Meta.parse(ARGS[1]))
+    global save_path = ARGS[2]
+    global index = eval(Meta.parse(ARGS[3]))
+    global request_type = Symbol(Meta.parse(ARGS[3]))
+    println("Using Command line parameters \n\tN = $N\n\tsave_path = $save_path\n\tindex = $index\n\trequest_type=$request_type")
+catch e
+    println(e)
 try
     global N = eval(Meta.parse(ARGS[1]))
     global save_path = ARGS[2]
     global index = eval(Meta.parse(ARGS[3]))
-    println("Using Command line parameters \n\tN = $N\n\tsave_path = $save_path\n\tindex = $index")
+    println("Using Command line parameters \n\tN = $N\n\tsave_path = $save_path\n\tindex = $index\n\trequest_type=$request_type")
 catch e
     println(e)
 try
     global N=10
     global save_path = Meta.parse(ARGS[1])
     global index = eval(Meta.parse(ARGS[2]))
-    println("No N found. Falling back to standart value:\n\tN=$N")
+    println("No N found. Falling back to standart value:\n\tN=$N\n\trequest_type=$request_type")
 catch e
     println(e)
 try
     global save_path = pwd()*"/results/"
     global N=10
     global index=eval(Meta.parse(ARGS[1]))
-    println("No Savepath or N found. Falling back to standart values:\n\tN=$N\n\tfilepath=$save_path")
+    println("No Savepath or N found. Falling back to standart values:\n\tN=$N\n\tfilepath=$save_path\n\trequest_type=$request_type")
 catch e
     println(e)
     global index=1
     global save_path = pwd()*"/results/"
     global N=10
-    println("No Filepath and no Index found. Falling back to standart values:\n\tindex = $index\n\tSave Path = $save_path")
+    println("No Filepath and no Index found. Falling back to standart values:\n\tindex = $index\n\tSave Path = $save_path\n\trequest_type=$request_type")
 end
 end
 end
@@ -83,7 +93,7 @@ include(paths[:dispatcher]*"dispatcher.jl")
 x, y = getValue(index-1, 4, 60, 40, 0.2, 2.5, 60)
 
 println("$x\t$y")
-random_gens = Dict(:dropoff => [:notRandom, y*t0])
+random_gens = Dict(request_type => [:notRandom, y*t0])
 specs=(;
         map=mymap,
         route_matrix=RM,
@@ -91,7 +101,7 @@ specs=(;
         routing=:lookup,
         speed_dict = speed_dict,
         seed = 1,
-        request_type= :latest_dropoff,
+        request_type = request_type,
         random_gens = random_gens)
 
 specs = merge(specs, dispatcher)
diff --git a/submit.sh b/submit.sh
index e336ce3a9afa59ec251eefc953fe6ffb056c0742..e5364f319be050936306a793e8ba113790f6145a 100644
--- a/submit.sh
+++ b/submit.sh
@@ -7,12 +7,8 @@
 #$ -N latest_dropoff
 #$ -t 1-2400
 
-N=20
-SAVE_PATH="/scratch01.local/rhaag/latest_dropoff/results/"
-INDEX=1
-DATA_PATH="${SAVE_PATH}data/"
-MODEL_PATH="${SAVE_PATH}model/"
+./settings.sh
 
 
 
-/usr/ds/bin/julia sim.jl $N $SAVE_PATH $SGE_TASK_ID
+/usr/ds/bin/julia sim.jl $N $SAVE_PATH $SGE_TASK_ID $REQUEST_TYPE